Merge tag 'xtensa-20211105' of git://github.com/jcmvbkbc/linux-xtensa
[linux-2.6-microblaze.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L:      linux-bluetooth@vger.kernel.org
176 L:      linux-wpan@vger.kernel.org
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L:      linux-hams@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <johannes@sipsolutions.net>
190 L:      linux-wireless@vger.kernel.org
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 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 R:      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 R:      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 FOR ARM64 (ACPI/arm64)
382 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
383 M:      Hanjun Guo <guohanjun@huawei.com>
384 M:      Sudeep Holla <sudeep.holla@arm.com>
385 L:      linux-acpi@vger.kernel.org
386 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
387 S:      Maintained
388 F:      drivers/acpi/arm64
389
390 ACPI I2C MULTI INSTANTIATE DRIVER
391 M:      Hans de Goede <hdegoede@redhat.com>
392 L:      platform-driver-x86@vger.kernel.org
393 S:      Maintained
394 F:      drivers/platform/x86/i2c-multi-instantiate.c
395
396 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
397 M:      Sudeep Holla <sudeep.holla@arm.com>
398 L:      linux-acpi@vger.kernel.org
399 S:      Supported
400 F:      drivers/mailbox/pcc.c
401
402 ACPI PMIC DRIVERS
403 M:      "Rafael J. Wysocki" <rafael@kernel.org>
404 M:      Len Brown <lenb@kernel.org>
405 R:      Andy Shevchenko <andy@kernel.org>
406 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
407 L:      linux-acpi@vger.kernel.org
408 S:      Supported
409 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
410 B:      https://bugzilla.kernel.org
411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
412 F:      drivers/acpi/pmic/
413
414 ACPI THERMAL DRIVER
415 M:      Rafael J. Wysocki <rafael@kernel.org>
416 R:      Zhang Rui <rui.zhang@intel.com>
417 L:      linux-acpi@vger.kernel.org
418 S:      Supported
419 W:      https://01.org/linux-acpi
420 B:      https://bugzilla.kernel.org
421 F:      drivers/acpi/*thermal*
422
423 ACPI VIOT DRIVER
424 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
425 L:      linux-acpi@vger.kernel.org
426 L:      iommu@lists.linux-foundation.org
427 S:      Maintained
428 F:      drivers/acpi/viot.c
429 F:      include/linux/acpi_viot.h
430
431 ACPI WMI DRIVER
432 L:      platform-driver-x86@vger.kernel.org
433 S:      Orphan
434 F:      drivers/platform/x86/wmi.c
435 F:      include/uapi/linux/wmi.h
436
437 ACRN HYPERVISOR SERVICE MODULE
438 M:      Fei Li <fei1.li@intel.com>
439 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
440 S:      Supported
441 W:      https://projectacrn.org
442 F:      Documentation/virt/acrn/
443 F:      drivers/virt/acrn/
444 F:      include/uapi/linux/acrn.h
445
446 AD1889 ALSA SOUND DRIVER
447 L:      linux-parisc@vger.kernel.org
448 S:      Maintained
449 W:      https://parisc.wiki.kernel.org/index.php/AD1889
450 F:      sound/pci/ad1889.*
451
452 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
453 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
454 L:      linux-iio@vger.kernel.org
455 S:      Supported
456 F:      drivers/iio/potentiometer/ad5110.c
457
458 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
459 M:      Michael Hennerich <michael.hennerich@analog.com>
460 S:      Supported
461 W:      http://wiki.analog.com/AD5254
462 W:      http://ez.analog.com/community/linux-device-drivers
463 F:      drivers/misc/ad525x_dpot.c
464
465 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
466 M:      Michael Hennerich <michael.hennerich@analog.com>
467 S:      Supported
468 W:      http://wiki.analog.com/AD5398
469 W:      http://ez.analog.com/community/linux-device-drivers
470 F:      drivers/regulator/ad5398.c
471
472 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
473 M:      Michael Hennerich <michael.hennerich@analog.com>
474 S:      Supported
475 W:      http://wiki.analog.com/AD7142
476 W:      http://ez.analog.com/community/linux-device-drivers
477 F:      drivers/input/misc/ad714x.c
478
479 AD7877 TOUCHSCREEN DRIVER
480 M:      Michael Hennerich <michael.hennerich@analog.com>
481 S:      Supported
482 W:      http://wiki.analog.com/AD7877
483 W:      http://ez.analog.com/community/linux-device-drivers
484 F:      drivers/input/touchscreen/ad7877.c
485
486 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
487 M:      Michael Hennerich <michael.hennerich@analog.com>
488 S:      Supported
489 W:      http://wiki.analog.com/AD7879
490 W:      http://ez.analog.com/community/linux-device-drivers
491 F:      drivers/input/touchscreen/ad7879.c
492
493 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
494 M:      Jiri Kosina <jikos@kernel.org>
495 S:      Maintained
496
497 ADF7242 IEEE 802.15.4 RADIO DRIVER
498 M:      Michael Hennerich <michael.hennerich@analog.com>
499 L:      linux-wpan@vger.kernel.org
500 S:      Supported
501 W:      https://wiki.analog.com/ADF7242
502 W:      http://ez.analog.com/community/linux-device-drivers
503 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
504 F:      drivers/net/ieee802154/adf7242.c
505
506 ADM1025 HARDWARE MONITOR DRIVER
507 M:      Jean Delvare <jdelvare@suse.com>
508 L:      linux-hwmon@vger.kernel.org
509 S:      Maintained
510 F:      Documentation/hwmon/adm1025.rst
511 F:      drivers/hwmon/adm1025.c
512
513 ADM1029 HARDWARE MONITOR DRIVER
514 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
515 L:      linux-hwmon@vger.kernel.org
516 S:      Maintained
517 F:      drivers/hwmon/adm1029.c
518
519 ADM8211 WIRELESS DRIVER
520 L:      linux-wireless@vger.kernel.org
521 S:      Orphan
522 W:      https://wireless.wiki.kernel.org/
523 F:      drivers/net/wireless/admtek/adm8211.*
524
525 ADP1653 FLASH CONTROLLER DRIVER
526 M:      Sakari Ailus <sakari.ailus@iki.fi>
527 L:      linux-media@vger.kernel.org
528 S:      Maintained
529 F:      drivers/media/i2c/adp1653.c
530 F:      include/media/i2c/adp1653.h
531
532 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
533 M:      Michael Hennerich <michael.hennerich@analog.com>
534 S:      Supported
535 W:      http://wiki.analog.com/ADP5520
536 W:      http://ez.analog.com/community/linux-device-drivers
537 F:      drivers/gpio/gpio-adp5520.c
538 F:      drivers/input/keyboard/adp5520-keys.c
539 F:      drivers/leds/leds-adp5520.c
540 F:      drivers/mfd/adp5520.c
541 F:      drivers/video/backlight/adp5520_bl.c
542
543 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
544 M:      Michael Hennerich <michael.hennerich@analog.com>
545 S:      Supported
546 W:      http://wiki.analog.com/ADP5588
547 W:      http://ez.analog.com/community/linux-device-drivers
548 F:      drivers/gpio/gpio-adp5588.c
549 F:      drivers/input/keyboard/adp5588-keys.c
550
551 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
552 M:      Michael Hennerich <michael.hennerich@analog.com>
553 S:      Supported
554 W:      http://wiki.analog.com/ADP8860
555 W:      http://ez.analog.com/community/linux-device-drivers
556 F:      drivers/video/backlight/adp8860_bl.c
557
558 ADT746X FAN DRIVER
559 M:      Colin Leroy <colin@colino.net>
560 S:      Maintained
561 F:      drivers/macintosh/therm_adt746x.c
562
563 ADT7475 HARDWARE MONITOR DRIVER
564 M:      Jean Delvare <jdelvare@suse.com>
565 L:      linux-hwmon@vger.kernel.org
566 S:      Maintained
567 F:      Documentation/hwmon/adt7475.rst
568 F:      drivers/hwmon/adt7475.c
569
570 ADVANSYS SCSI DRIVER
571 M:      Matthew Wilcox <willy@infradead.org>
572 M:      Hannes Reinecke <hare@suse.com>
573 L:      linux-scsi@vger.kernel.org
574 S:      Maintained
575 F:      Documentation/scsi/advansys.rst
576 F:      drivers/scsi/advansys.c
577
578 ADVANTECH SWBTN DRIVER
579 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
580 L:      platform-driver-x86@vger.kernel.org
581 S:      Maintained
582 F:      drivers/platform/x86/adv_swbutton.c
583
584 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
585 M:      Lucas Stankus <lucas.p.stankus@gmail.com>
586 S:      Supported
587 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
588 F:      drivers/iio/accel/adxl313*
589
590 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
591 M:      Michael Hennerich <michael.hennerich@analog.com>
592 S:      Supported
593 W:      http://wiki.analog.com/ADXL345
594 W:      http://ez.analog.com/community/linux-device-drivers
595 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
596 F:      drivers/input/misc/adxl34x.c
597
598 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
599 M:      Puranjay Mohan <puranjay12@gmail.com>
600 L:      linux-iio@vger.kernel.org
601 S:      Supported
602 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
603 F:      drivers/iio/accel/adxl355.h
604 F:      drivers/iio/accel/adxl355_core.c
605 F:      drivers/iio/accel/adxl355_i2c.c
606 F:      drivers/iio/accel/adxl355_spi.c
607
608 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
609 M:      Michael Hennerich <michael.hennerich@analog.com>
610 S:      Supported
611 W:      http://ez.analog.com/community/linux-device-drivers
612 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
613 F:      drivers/iio/accel/adxl372.c
614 F:      drivers/iio/accel/adxl372_i2c.c
615 F:      drivers/iio/accel/adxl372_spi.c
616
617 AF9013 MEDIA DRIVER
618 M:      Antti Palosaari <crope@iki.fi>
619 L:      linux-media@vger.kernel.org
620 S:      Maintained
621 W:      https://linuxtv.org
622 W:      http://palosaari.fi/linux/
623 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
624 T:      git git://linuxtv.org/anttip/media_tree.git
625 F:      drivers/media/dvb-frontends/af9013*
626
627 AF9033 MEDIA DRIVER
628 M:      Antti Palosaari <crope@iki.fi>
629 L:      linux-media@vger.kernel.org
630 S:      Maintained
631 W:      https://linuxtv.org
632 W:      http://palosaari.fi/linux/
633 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
634 T:      git git://linuxtv.org/anttip/media_tree.git
635 F:      drivers/media/dvb-frontends/af9033*
636
637 AFFS FILE SYSTEM
638 M:      David Sterba <dsterba@suse.com>
639 L:      linux-fsdevel@vger.kernel.org
640 S:      Odd Fixes
641 F:      Documentation/filesystems/affs.rst
642 F:      fs/affs/
643
644 AFS FILESYSTEM
645 M:      David Howells <dhowells@redhat.com>
646 M:      Marc Dionne <marc.dionne@auristor.com>
647 L:      linux-afs@lists.infradead.org
648 S:      Supported
649 W:      https://www.infradead.org/~dhowells/kafs/
650 F:      Documentation/filesystems/afs.rst
651 F:      fs/afs/
652 F:      include/trace/events/afs.h
653
654 AGPGART DRIVER
655 M:      David Airlie <airlied@linux.ie>
656 S:      Maintained
657 T:      git git://anongit.freedesktop.org/drm/drm
658 F:      drivers/char/agp/
659 F:      include/linux/agp*
660 F:      include/uapi/linux/agp*
661
662 AHA152X SCSI DRIVER
663 M:      "Juergen E. Fischer" <fischer@norbit.de>
664 L:      linux-scsi@vger.kernel.org
665 S:      Maintained
666 F:      drivers/scsi/aha152x*
667 F:      drivers/scsi/pcmcia/aha152x*
668
669 AIC7XXX / AIC79XX SCSI DRIVER
670 M:      Hannes Reinecke <hare@suse.com>
671 L:      linux-scsi@vger.kernel.org
672 S:      Maintained
673 F:      drivers/scsi/aic7xxx/
674
675 AIMSLAB FM RADIO RECEIVER DRIVER
676 M:      Hans Verkuil <hverkuil@xs4all.nl>
677 L:      linux-media@vger.kernel.org
678 S:      Maintained
679 W:      https://linuxtv.org
680 T:      git git://linuxtv.org/media_tree.git
681 F:      drivers/media/radio/radio-aimslab*
682
683 AIO
684 M:      Benjamin LaHaise <bcrl@kvack.org>
685 L:      linux-aio@kvack.org
686 S:      Supported
687 F:      fs/aio.c
688 F:      include/linux/*aio*.h
689
690 AIRSPY MEDIA DRIVER
691 M:      Antti Palosaari <crope@iki.fi>
692 L:      linux-media@vger.kernel.org
693 S:      Maintained
694 W:      https://linuxtv.org
695 W:      http://palosaari.fi/linux/
696 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
697 T:      git git://linuxtv.org/anttip/media_tree.git
698 F:      drivers/media/usb/airspy/
699
700 ALACRITECH GIGABIT ETHERNET DRIVER
701 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
702 S:      Maintained
703 F:      drivers/net/ethernet/alacritech/*
704
705 ALCATEL SPEEDTOUCH USB DRIVER
706 M:      Duncan Sands <duncan.sands@free.fr>
707 L:      linux-usb@vger.kernel.org
708 S:      Maintained
709 W:      http://www.linux-usb.org/SpeedTouch/
710 F:      drivers/usb/atm/speedtch.c
711 F:      drivers/usb/atm/usbatm.c
712
713 ALCHEMY AU1XX0 MMC DRIVER
714 M:      Manuel Lauss <manuel.lauss@gmail.com>
715 S:      Maintained
716 F:      drivers/mmc/host/au1xmmc.c
717
718 ALI1563 I2C DRIVER
719 M:      Rudolf Marek <r.marek@assembler.cz>
720 L:      linux-i2c@vger.kernel.org
721 S:      Maintained
722 F:      Documentation/i2c/busses/i2c-ali1563.rst
723 F:      drivers/i2c/busses/i2c-ali1563.c
724
725 ALIENWARE WMI DRIVER
726 L:      Dell.Client.Kernel@dell.com
727 S:      Maintained
728 F:      drivers/platform/x86/dell/alienware-wmi.c
729
730 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
731 M:      Tomislav Denis <tomislav.denis@avl.com>
732 L:      linux-iio@vger.kernel.org
733 S:      Maintained
734 W:      http://www.allsensors.com/
735 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
736 F:      drivers/iio/pressure/dlhl60d.c
737
738 ALLEGRO DVT VIDEO IP CORE DRIVER
739 M:      Michael Tretter <m.tretter@pengutronix.de>
740 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
741 L:      linux-media@vger.kernel.org
742 S:      Maintained
743 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
744 F:      drivers/media/platform/allegro-dvt/
745
746 ALLWINNER A10 CSI DRIVER
747 M:      Maxime Ripard <mripard@kernel.org>
748 L:      linux-media@vger.kernel.org
749 S:      Maintained
750 T:      git git://linuxtv.org/media_tree.git
751 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
752 F:      drivers/media/platform/sunxi/sun4i-csi/
753
754 ALLWINNER CPUFREQ DRIVER
755 M:      Yangtao Li <tiny.windzz@gmail.com>
756 L:      linux-pm@vger.kernel.org
757 S:      Maintained
758 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
759 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
760
761 ALLWINNER CRYPTO DRIVERS
762 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
763 L:      linux-crypto@vger.kernel.org
764 S:      Maintained
765 F:      drivers/crypto/allwinner/
766
767 ALLWINNER HARDWARE SPINLOCK SUPPORT
768 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
769 S:      Maintained
770 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-hwspinlock.yaml
771 F:      drivers/hwspinlock/sun6i_hwspinlock.c
772
773 ALLWINNER THERMAL DRIVER
774 M:      Vasily Khoruzhick <anarsoul@gmail.com>
775 M:      Yangtao Li <tiny.windzz@gmail.com>
776 L:      linux-pm@vger.kernel.org
777 S:      Maintained
778 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
779 F:      drivers/thermal/sun8i_thermal.c
780
781 ALLWINNER VPU DRIVER
782 M:      Maxime Ripard <mripard@kernel.org>
783 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
784 L:      linux-media@vger.kernel.org
785 S:      Maintained
786 F:      drivers/staging/media/sunxi/cedrus/
787
788 ALPHA PORT
789 M:      Richard Henderson <rth@twiddle.net>
790 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
791 M:      Matt Turner <mattst88@gmail.com>
792 L:      linux-alpha@vger.kernel.org
793 S:      Odd Fixes
794 F:      arch/alpha/
795
796 ALPS PS/2 TOUCHPAD DRIVER
797 R:      Pali Rohár <pali@kernel.org>
798 F:      drivers/input/mouse/alps.*
799
800 ALTERA I2C CONTROLLER DRIVER
801 M:      Thor Thayer <thor.thayer@linux.intel.com>
802 S:      Maintained
803 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
804 F:      drivers/i2c/busses/i2c-altera.c
805
806 ALTERA MAILBOX DRIVER
807 M:      Mun Yew Tham <mun.yew.tham@intel.com>
808 S:      Maintained
809 F:      drivers/mailbox/mailbox-altera.c
810
811 ALTERA MSGDMA IP CORE DRIVER
812 M:      Olivier Dautricourt <olivier.dautricourt@orolia.com>
813 R:      Stefan Roese <sr@denx.de>
814 L:      dmaengine@vger.kernel.org
815 S:      Odd Fixes
816 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
817 F:      drivers/dma/altera-msgdma.c
818
819 ALTERA PIO DRIVER
820 M:      Mun Yew Tham <mun.yew.tham@intel.com>
821 L:      linux-gpio@vger.kernel.org
822 S:      Maintained
823 F:      drivers/gpio/gpio-altera.c
824
825 ALTERA SYSTEM MANAGER DRIVER
826 M:      Thor Thayer <thor.thayer@linux.intel.com>
827 S:      Maintained
828 F:      drivers/mfd/altera-sysmgr.c
829 F:      include/linux/mfd/altera-sysmgr.h
830
831 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
832 M:      Thor Thayer <thor.thayer@linux.intel.com>
833 S:      Maintained
834 F:      drivers/gpio/gpio-altera-a10sr.c
835 F:      drivers/mfd/altera-a10sr.c
836 F:      drivers/reset/reset-a10sr.c
837 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
838 F:      include/linux/mfd/altera-a10sr.h
839
840 ALTERA TRIPLE SPEED ETHERNET DRIVER
841 M:      Joyce Ooi <joyce.ooi@intel.com>
842 L:      netdev@vger.kernel.org
843 S:      Maintained
844 F:      drivers/net/ethernet/altera/
845
846 ALTERA UART/JTAG UART SERIAL DRIVERS
847 M:      Tobias Klauser <tklauser@distanz.ch>
848 L:      linux-serial@vger.kernel.org
849 S:      Maintained
850 F:      drivers/tty/serial/altera_jtaguart.c
851 F:      drivers/tty/serial/altera_uart.c
852 F:      include/linux/altera_jtaguart.h
853 F:      include/linux/altera_uart.h
854
855 AMAZON ANNAPURNA LABS FIC DRIVER
856 M:      Talel Shenhar <talel@amazon.com>
857 S:      Maintained
858 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
859 F:      drivers/irqchip/irq-al-fic.c
860
861 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
862 M:      Talel Shenhar <talel@amazon.com>
863 M:      Talel Shenhar <talelshenhar@gmail.com>
864 S:      Maintained
865 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
866 F:      drivers/edac/al_mc_edac.c
867
868 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
869 M:      Talel Shenhar <talel@amazon.com>
870 S:      Maintained
871 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
872 F:      drivers/thermal/thermal_mmio.c
873
874 AMAZON ETHERNET DRIVERS
875 M:      Netanel Belgazal <netanel@amazon.com>
876 M:      Arthur Kiyanovski <akiyano@amazon.com>
877 R:      Guy Tzalik <gtzalik@amazon.com>
878 R:      Saeed Bishara <saeedb@amazon.com>
879 L:      netdev@vger.kernel.org
880 S:      Supported
881 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
882 F:      drivers/net/ethernet/amazon/
883
884 AMAZON RDMA EFA DRIVER
885 M:      Gal Pressman <galpress@amazon.com>
886 R:      Yossi Leybovich <sleybo@amazon.com>
887 L:      linux-rdma@vger.kernel.org
888 S:      Supported
889 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
890 F:      drivers/infiniband/hw/efa/
891 F:      include/uapi/rdma/efa-abi.h
892
893 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
894 M:      Tom Lendacky <thomas.lendacky@amd.com>
895 M:      John Allen <john.allen@amd.com>
896 L:      linux-crypto@vger.kernel.org
897 S:      Supported
898 F:      drivers/crypto/ccp/
899 F:      include/linux/ccp.h
900
901 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
902 M:      Brijesh Singh <brijesh.singh@amd.com>
903 M:      Tom Lendacky <thomas.lendacky@amd.com>
904 L:      linux-crypto@vger.kernel.org
905 S:      Supported
906 F:      drivers/crypto/ccp/sev*
907 F:      include/uapi/linux/psp-sev.h
908
909 AMD DISPLAY CORE
910 M:      Harry Wentland <harry.wentland@amd.com>
911 M:      Leo Li <sunpeng.li@amd.com>
912 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
913 L:      amd-gfx@lists.freedesktop.org
914 S:      Supported
915 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
916 F:      drivers/gpu/drm/amd/display/
917
918 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
919 M:      Huang Rui <ray.huang@amd.com>
920 L:      linux-hwmon@vger.kernel.org
921 S:      Supported
922 F:      Documentation/hwmon/fam15h_power.rst
923 F:      drivers/hwmon/fam15h_power.c
924
925 AMD FCH GPIO DRIVER
926 M:      Enrico Weigelt, metux IT consult <info@metux.net>
927 L:      linux-gpio@vger.kernel.org
928 S:      Maintained
929 F:      drivers/gpio/gpio-amd-fch.c
930 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
931
932 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
933 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
934 S:      Orphan
935 F:      drivers/usb/gadget/udc/amd5536udc.*
936
937 AMD GEODE PROCESSOR/CHIPSET SUPPORT
938 M:      Andres Salomon <dilinger@queued.net>
939 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
940 S:      Supported
941 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
942 F:      arch/x86/include/asm/geode.h
943 F:      drivers/char/hw_random/geode-rng.c
944 F:      drivers/crypto/geode*
945 F:      drivers/video/fbdev/geode/
946
947 AMD IOMMU (AMD-VI)
948 M:      Joerg Roedel <joro@8bytes.org>
949 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
950 L:      iommu@lists.linux-foundation.org
951 S:      Maintained
952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
953 F:      drivers/iommu/amd/
954 F:      include/linux/amd-iommu.h
955
956 AMD KFD
957 M:      Felix Kuehling <Felix.Kuehling@amd.com>
958 L:      amd-gfx@lists.freedesktop.org
959 S:      Supported
960 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
961 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
962 F:      drivers/gpu/drm/amd/amdkfd/
963 F:      drivers/gpu/drm/amd/include/cik_structs.h
964 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
965 F:      drivers/gpu/drm/amd/include/v9_structs.h
966 F:      drivers/gpu/drm/amd/include/vi_structs.h
967 F:      include/uapi/linux/kfd_ioctl.h
968
969 AMD SPI DRIVER
970 M:      Sanjay R Mehta <sanju.mehta@amd.com>
971 S:      Maintained
972 F:      drivers/spi/spi-amd.c
973
974 AMD MP2 I2C DRIVER
975 M:      Elie Morisse <syniurge@gmail.com>
976 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
977 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
978 L:      linux-i2c@vger.kernel.org
979 S:      Maintained
980 F:      drivers/i2c/busses/i2c-amd-mp2*
981
982 AMD PMC DRIVER
983 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
984 L:      platform-driver-x86@vger.kernel.org
985 S:      Maintained
986 F:      drivers/platform/x86/amd-pmc.*
987
988 AMD POWERPLAY AND SWSMU
989 M:      Evan Quan <evan.quan@amd.com>
990 L:      amd-gfx@lists.freedesktop.org
991 S:      Supported
992 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
993 F:      drivers/gpu/drm/amd/pm/
994
995 AMD PTDMA DRIVER
996 M:      Sanjay R Mehta <sanju.mehta@amd.com>
997 L:      dmaengine@vger.kernel.org
998 S:      Maintained
999 F:      drivers/dma/ptdma/
1000
1001 AMD SEATTLE DEVICE TREE SUPPORT
1002 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
1003 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1004 M:      Tom Lendacky <thomas.lendacky@amd.com>
1005 S:      Supported
1006 F:      arch/arm64/boot/dts/amd/
1007
1008 AMD XGBE DRIVER
1009 M:      Tom Lendacky <thomas.lendacky@amd.com>
1010 L:      netdev@vger.kernel.org
1011 S:      Supported
1012 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1013 F:      drivers/net/ethernet/amd/xgbe/
1014
1015 AMD SENSOR FUSION HUB DRIVER
1016 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
1017 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1018 L:      linux-input@vger.kernel.org
1019 S:      Maintained
1020 F:      Documentation/hid/amd-sfh*
1021 F:      drivers/hid/amd-sfh-hid/
1022
1023 AMS AS73211 DRIVER
1024 M:      Christian Eggers <ceggers@arri.de>
1025 L:      linux-iio@vger.kernel.org
1026 S:      Maintained
1027 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1028 F:      drivers/iio/light/as73211.c
1029
1030 AMT (Automatic Multicast Tunneling)
1031 M:      Taehee Yoo <ap420073@gmail.com>
1032 L:      netdev@vger.kernel.org
1033 S:      Maintained
1034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1036 F:      drivers/net/amt.c
1037
1038 ANALOG DEVICES INC AD7192 DRIVER
1039 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1040 L:      linux-iio@vger.kernel.org
1041 S:      Supported
1042 W:      http://ez.analog.com/community/linux-device-drivers
1043 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1044 F:      drivers/iio/adc/ad7192.c
1045
1046 ANALOG DEVICES INC AD7292 DRIVER
1047 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1048 L:      linux-iio@vger.kernel.org
1049 S:      Supported
1050 W:      http://ez.analog.com/community/linux-device-drivers
1051 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1052 F:      drivers/iio/adc/ad7292.c
1053
1054 ANALOG DEVICES INC AD7768-1 DRIVER
1055 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1056 L:      linux-iio@vger.kernel.org
1057 S:      Supported
1058 W:      http://ez.analog.com/community/linux-device-drivers
1059 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1060 F:      drivers/iio/adc/ad7768-1.c
1061
1062 ANALOG DEVICES INC AD7780 DRIVER
1063 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1064 M:      Renato Lui Geh <renatogeh@gmail.com>
1065 L:      linux-iio@vger.kernel.org
1066 S:      Supported
1067 W:      http://ez.analog.com/community/linux-device-drivers
1068 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1069 F:      drivers/iio/adc/ad7780.c
1070
1071 ANALOG DEVICES INC AD9389B DRIVER
1072 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1073 L:      linux-media@vger.kernel.org
1074 S:      Maintained
1075 F:      drivers/media/i2c/ad9389b*
1076
1077 ANALOG DEVICES INC ADGS1408 DRIVER
1078 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1079 S:      Supported
1080 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1081 F:      drivers/mux/adgs1408.c
1082
1083 ANALOG DEVICES INC ADIN DRIVER
1084 M:      Michael Hennerich <michael.hennerich@analog.com>
1085 L:      netdev@vger.kernel.org
1086 S:      Supported
1087 W:      http://ez.analog.com/community/linux-device-drivers
1088 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1089 F:      drivers/net/phy/adin.c
1090
1091 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1092 M:      Nuno Sa <nuno.sa@analog.com>
1093 L:      linux-iio@vger.kernel.org
1094 S:      Supported
1095 F:      drivers/iio/imu/adis.c
1096 F:      include/linux/iio/imu/adis.h
1097
1098 ANALOG DEVICES INC ADIS16460 DRIVER
1099 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1100 L:      linux-iio@vger.kernel.org
1101 S:      Supported
1102 W:      http://ez.analog.com/community/linux-device-drivers
1103 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1104 F:      drivers/iio/imu/adis16460.c
1105
1106 ANALOG DEVICES INC ADIS16475 DRIVER
1107 M:      Nuno Sa <nuno.sa@analog.com>
1108 L:      linux-iio@vger.kernel.org
1109 W:      http://ez.analog.com/community/linux-device-drivers
1110 S:      Supported
1111 F:      drivers/iio/imu/adis16475.c
1112 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1113
1114 ANALOG DEVICES INC ADM1177 DRIVER
1115 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1116 L:      linux-hwmon@vger.kernel.org
1117 S:      Supported
1118 W:      http://ez.analog.com/community/linux-device-drivers
1119 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1120 F:      drivers/hwmon/adm1177.c
1121
1122 ANALOG DEVICES INC ADP5061 DRIVER
1123 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1124 L:      linux-pm@vger.kernel.org
1125 S:      Supported
1126 W:      http://ez.analog.com/community/linux-device-drivers
1127 F:      drivers/power/supply/adp5061.c
1128
1129 ANALOG DEVICES INC ADV7180 DRIVER
1130 M:      Lars-Peter Clausen <lars@metafoo.de>
1131 L:      linux-media@vger.kernel.org
1132 S:      Supported
1133 W:      http://ez.analog.com/community/linux-device-drivers
1134 F:      drivers/media/i2c/adv7180.c
1135 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1136
1137 ANALOG DEVICES INC ADV748X DRIVER
1138 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1139 L:      linux-media@vger.kernel.org
1140 S:      Maintained
1141 F:      drivers/media/i2c/adv748x/*
1142
1143 ANALOG DEVICES INC ADV7511 DRIVER
1144 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1145 L:      linux-media@vger.kernel.org
1146 S:      Maintained
1147 F:      drivers/media/i2c/adv7511*
1148
1149 ANALOG DEVICES INC ADV7604 DRIVER
1150 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1151 L:      linux-media@vger.kernel.org
1152 S:      Maintained
1153 F:      drivers/media/i2c/adv7604*
1154 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1155
1156 ANALOG DEVICES INC ADV7842 DRIVER
1157 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1158 L:      linux-media@vger.kernel.org
1159 S:      Maintained
1160 F:      drivers/media/i2c/adv7842*
1161
1162 ANALOG DEVICES INC ADXRS290 DRIVER
1163 M:      Nishant Malpani <nish.malpani25@gmail.com>
1164 L:      linux-iio@vger.kernel.org
1165 S:      Supported
1166 F:      drivers/iio/gyro/adxrs290.c
1167 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1168
1169 ANALOG DEVICES INC ASOC CODEC DRIVERS
1170 M:      Lars-Peter Clausen <lars@metafoo.de>
1171 M:      Nuno Sá <nuno.sa@analog.com>
1172 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1173 S:      Supported
1174 W:      http://wiki.analog.com/
1175 W:      http://ez.analog.com/community/linux-device-drivers
1176 F:      sound/soc/codecs/ad1*
1177 F:      sound/soc/codecs/ad7*
1178 F:      sound/soc/codecs/adau*
1179 F:      sound/soc/codecs/adav*
1180 F:      sound/soc/codecs/sigmadsp.*
1181 F:      sound/soc/codecs/ssm*
1182
1183 ANALOG DEVICES INC DMA DRIVERS
1184 M:      Lars-Peter Clausen <lars@metafoo.de>
1185 S:      Supported
1186 W:      http://ez.analog.com/community/linux-device-drivers
1187 F:      drivers/dma/dma-axi-dmac.c
1188
1189 ANALOG DEVICES INC IIO DRIVERS
1190 M:      Lars-Peter Clausen <lars@metafoo.de>
1191 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1192 S:      Supported
1193 W:      http://wiki.analog.com/
1194 W:      http://ez.analog.com/community/linux-device-drivers
1195 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1196 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1197 F:      Documentation/devicetree/bindings/iio/*/adi,*
1198 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1199 F:      drivers/iio/*/ad*
1200 F:      drivers/iio/adc/ltc249*
1201 F:      drivers/iio/amplifiers/hmc425a.c
1202 F:      drivers/staging/iio/*/ad*
1203 X:      drivers/iio/*/adjd*
1204
1205 ANALOGBITS PLL LIBRARIES
1206 M:      Paul Walmsley <paul.walmsley@sifive.com>
1207 S:      Supported
1208 F:      drivers/clk/analogbits/*
1209 F:      include/linux/clk/analogbits*
1210
1211 ANDES ARCHITECTURE
1212 M:      Nick Hu <nickhu@andestech.com>
1213 M:      Greentime Hu <green.hu@gmail.com>
1214 M:      Vincent Chen <deanbo422@gmail.com>
1215 S:      Supported
1216 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1217 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1218 F:      Documentation/devicetree/bindings/nds32/
1219 F:      arch/nds32/
1220 N:      nds32
1221 K:      nds32
1222
1223 ANDROID CONFIG FRAGMENTS
1224 M:      Rob Herring <robh@kernel.org>
1225 S:      Supported
1226 F:      kernel/configs/android*
1227
1228 ANDROID DRIVERS
1229 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1230 M:      Arve Hjønnevåg <arve@android.com>
1231 M:      Todd Kjos <tkjos@android.com>
1232 M:      Martijn Coenen <maco@android.com>
1233 M:      Joel Fernandes <joel@joelfernandes.org>
1234 M:      Christian Brauner <christian@brauner.io>
1235 M:      Hridya Valsaraju <hridya@google.com>
1236 M:      Suren Baghdasaryan <surenb@google.com>
1237 L:      linux-kernel@vger.kernel.org
1238 S:      Supported
1239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1240 F:      drivers/android/
1241 F:      drivers/staging/android/
1242
1243 ANDROID GOLDFISH PIC DRIVER
1244 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1245 S:      Supported
1246 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1247 F:      drivers/irqchip/irq-goldfish-pic.c
1248
1249 ANDROID GOLDFISH RTC DRIVER
1250 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1251 S:      Supported
1252 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1253 F:      drivers/rtc/rtc-goldfish.c
1254
1255 AOA (Apple Onboard Audio) ALSA DRIVER
1256 M:      Johannes Berg <johannes@sipsolutions.net>
1257 L:      linuxppc-dev@lists.ozlabs.org
1258 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1259 S:      Maintained
1260 F:      sound/aoa/
1261
1262 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1263 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1264 L:      linux-iio@vger.kernel.org
1265 S:      Maintained
1266 F:      drivers/iio/adc/stx104.c
1267
1268 APM DRIVER
1269 M:      Jiri Kosina <jikos@kernel.org>
1270 S:      Odd fixes
1271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1272 F:      arch/x86/kernel/apm_32.c
1273 F:      drivers/char/apm-emulation.c
1274 F:      include/linux/apm_bios.h
1275 F:      include/uapi/linux/apm_bios.h
1276
1277 APPARMOR SECURITY MODULE
1278 M:      John Johansen <john.johansen@canonical.com>
1279 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1280 S:      Supported
1281 W:      wiki.apparmor.net
1282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1283 F:      Documentation/admin-guide/LSM/apparmor.rst
1284 F:      security/apparmor/
1285
1286 APPLE BCM5974 MULTITOUCH DRIVER
1287 M:      Henrik Rydberg <rydberg@bitmath.org>
1288 L:      linux-input@vger.kernel.org
1289 S:      Odd fixes
1290 F:      drivers/input/mouse/bcm5974.c
1291
1292 APPLE DART IOMMU DRIVER
1293 M:      Sven Peter <sven@svenpeter.dev>
1294 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1295 L:      iommu@lists.linux-foundation.org
1296 S:      Maintained
1297 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1298 F:      drivers/iommu/apple-dart.c
1299
1300 APPLE PCIE CONTROLLER DRIVER
1301 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1302 M:      Marc Zyngier <maz@kernel.org>
1303 L:      linux-pci@vger.kernel.org
1304 S:      Maintained
1305 F:      drivers/pci/controller/pcie-apple.c
1306
1307 APPLE SMC DRIVER
1308 M:      Henrik Rydberg <rydberg@bitmath.org>
1309 L:      linux-hwmon@vger.kernel.org
1310 S:      Odd fixes
1311 F:      drivers/hwmon/applesmc.c
1312
1313 APPLETALK NETWORK LAYER
1314 L:      netdev@vger.kernel.org
1315 S:      Odd fixes
1316 F:      drivers/net/appletalk/
1317 F:      include/linux/atalk.h
1318 F:      include/uapi/linux/atalk.h
1319 F:      net/appletalk/
1320
1321 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1322 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1323 S:      Supported
1324 F:      arch/arm64/boot/dts/apm/
1325
1326 APPLIED MICRO (APM) X-GENE SOC EDAC
1327 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1328 S:      Supported
1329 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1330 F:      drivers/edac/xgene_edac.c
1331
1332 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1333 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1334 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1335 S:      Supported
1336 F:      drivers/net/ethernet/apm/xgene-v2/
1337
1338 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1339 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1340 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1341 M:      Quan Nguyen <quan@os.amperecomputing.com>
1342 S:      Supported
1343 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1344 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1345 F:      drivers/net/ethernet/apm/xgene/
1346 F:      drivers/net/mdio/mdio-xgene.c
1347
1348 APPLIED MICRO (APM) X-GENE SOC PMU
1349 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1350 S:      Supported
1351 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1352 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1353 F:      drivers/perf/xgene_pmu.c
1354
1355 APTINA CAMERA SENSOR PLL
1356 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1357 L:      linux-media@vger.kernel.org
1358 S:      Maintained
1359 F:      drivers/media/i2c/aptina-pll.*
1360
1361 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1362 M:      Aleksa Savic <savicaleksa83@gmail.com>
1363 L:      linux-hwmon@vger.kernel.org
1364 S:      Maintained
1365 F:      Documentation/hwmon/aquacomputer_d5next.rst
1366 F:      drivers/hwmon/aquacomputer_d5next.c
1367
1368 AQUANTIA ETHERNET DRIVER (atlantic)
1369 M:      Igor Russkikh <irusskikh@marvell.com>
1370 L:      netdev@vger.kernel.org
1371 S:      Supported
1372 W:      https://www.marvell.com/
1373 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1374 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1375 F:      drivers/net/ethernet/aquantia/atlantic/
1376
1377 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1378 M:      Egor Pomozov <epomozov@marvell.com>
1379 L:      netdev@vger.kernel.org
1380 S:      Supported
1381 W:      http://www.aquantia.com
1382 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1383
1384 ARASAN NAND CONTROLLER DRIVER
1385 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1386 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1387 L:      linux-mtd@lists.infradead.org
1388 S:      Maintained
1389 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1390 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1391
1392 ARC FRAMEBUFFER DRIVER
1393 M:      Jaya Kumar <jayalk@intworks.biz>
1394 S:      Maintained
1395 F:      drivers/video/fbdev/arcfb.c
1396 F:      drivers/video/fbdev/core/fb_defio.c
1397
1398 ARC PGU DRM DRIVER
1399 M:      Alexey Brodkin <abrodkin@synopsys.com>
1400 S:      Supported
1401 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1402 F:      drivers/gpu/drm/tiny/arcpgu.c
1403
1404 ARCNET NETWORK LAYER
1405 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1406 L:      netdev@vger.kernel.org
1407 S:      Maintained
1408 F:      drivers/net/arcnet/
1409 F:      include/uapi/linux/if_arcnet.h
1410
1411 ARM ARCHITECTED TIMER DRIVER
1412 M:      Mark Rutland <mark.rutland@arm.com>
1413 M:      Marc Zyngier <maz@kernel.org>
1414 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1415 S:      Maintained
1416 F:      arch/arm/include/asm/arch_timer.h
1417 F:      arch/arm64/include/asm/arch_timer.h
1418 F:      drivers/clocksource/arm_arch_timer.c
1419
1420 ARM HDLCD DRM DRIVER
1421 M:      Liviu Dudau <liviu.dudau@arm.com>
1422 S:      Supported
1423 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1424 F:      drivers/gpu/drm/arm/hdlcd_*
1425
1426 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1427 M:      Linus Walleij <linus.walleij@linaro.org>
1428 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1429 S:      Maintained
1430 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1431 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1432 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1433 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1434 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1435 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1436 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1437 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1438 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1439 F:      arch/arm/boot/dts/arm-realview-*
1440 F:      arch/arm/boot/dts/integrator*
1441 F:      arch/arm/boot/dts/versatile*
1442 F:      arch/arm/mach-integrator/
1443 F:      arch/arm/mach-realview/
1444 F:      arch/arm/mach-versatile/
1445 F:      arch/arm/plat-versatile/
1446 F:      drivers/bus/arm-integrator-lm.c
1447 F:      drivers/clk/versatile/
1448 F:      drivers/i2c/busses/i2c-versatile.c
1449 F:      drivers/irqchip/irq-versatile-fpga.c
1450 F:      drivers/mtd/maps/physmap-versatile.*
1451 F:      drivers/power/reset/arm-versatile-reboot.c
1452 F:      drivers/soc/versatile/
1453
1454 ARM KOMEDA DRM-KMS DRIVER
1455 M:      James (Qian) Wang <james.qian.wang@arm.com>
1456 M:      Liviu Dudau <liviu.dudau@arm.com>
1457 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1458 L:      Mali DP Maintainers <malidp@foss.arm.com>
1459 S:      Supported
1460 T:      git git://anongit.freedesktop.org/drm/drm-misc
1461 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1462 F:      Documentation/gpu/komeda-kms.rst
1463 F:      drivers/gpu/drm/arm/display/include/
1464 F:      drivers/gpu/drm/arm/display/komeda/
1465
1466 ARM MALI PANFROST DRM DRIVER
1467 M:      Rob Herring <robh@kernel.org>
1468 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1469 R:      Steven Price <steven.price@arm.com>
1470 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1471 L:      dri-devel@lists.freedesktop.org
1472 S:      Supported
1473 T:      git git://anongit.freedesktop.org/drm/drm-misc
1474 F:      drivers/gpu/drm/panfrost/
1475 F:      include/uapi/drm/panfrost_drm.h
1476
1477 ARM MALI-DP DRM DRIVER
1478 M:      Liviu Dudau <liviu.dudau@arm.com>
1479 M:      Brian Starkey <brian.starkey@arm.com>
1480 L:      Mali DP Maintainers <malidp@foss.arm.com>
1481 S:      Supported
1482 T:      git git://anongit.freedesktop.org/drm/drm-misc
1483 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1484 F:      Documentation/gpu/afbc.rst
1485 F:      drivers/gpu/drm/arm/
1486
1487 ARM MFM AND FLOPPY DRIVERS
1488 M:      Ian Molton <spyro@f2s.com>
1489 S:      Maintained
1490 F:      arch/arm/include/asm/floppy.h
1491 F:      arch/arm/mach-rpc/floppydma.S
1492
1493 ARM PMU PROFILING AND DEBUGGING
1494 M:      Will Deacon <will@kernel.org>
1495 M:      Mark Rutland <mark.rutland@arm.com>
1496 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1497 S:      Maintained
1498 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1499 F:      Documentation/devicetree/bindings/perf/
1500 F:      arch/arm*/include/asm/hw_breakpoint.h
1501 F:      arch/arm*/include/asm/perf_event.h
1502 F:      arch/arm*/kernel/hw_breakpoint.c
1503 F:      arch/arm*/kernel/perf_*
1504 F:      drivers/perf/
1505 F:      include/linux/perf/arm_pmu.h
1506
1507 ARM PORT
1508 M:      Russell King <linux@armlinux.org.uk>
1509 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1510 S:      Odd Fixes
1511 W:      http://www.armlinux.org.uk/
1512 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1513 F:      arch/arm/
1514 X:      arch/arm/boot/dts/
1515
1516 ARM PRIMECELL AACI PL041 DRIVER
1517 M:      Russell King <linux@armlinux.org.uk>
1518 S:      Odd Fixes
1519 F:      sound/arm/aaci.*
1520
1521 ARM PRIMECELL BUS SUPPORT
1522 M:      Russell King <linux@armlinux.org.uk>
1523 S:      Odd Fixes
1524 F:      drivers/amba/
1525 F:      include/linux/amba/bus.h
1526
1527 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1528 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1529 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1530 L:      linux-mtd@lists.infradead.org
1531 S:      Maintained
1532 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1533 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1534
1535 ARM PRIMECELL PL35X SMC DRIVER
1536 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1537 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1538 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1539 S:      Maintained
1540 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1541 F:      drivers/memory/pl353-smc.c
1542
1543 ARM PRIMECELL CLCD PL110 DRIVER
1544 M:      Russell King <linux@armlinux.org.uk>
1545 S:      Odd Fixes
1546 F:      drivers/video/fbdev/amba-clcd.*
1547
1548 ARM PRIMECELL KMI PL050 DRIVER
1549 M:      Russell King <linux@armlinux.org.uk>
1550 S:      Odd Fixes
1551 F:      drivers/input/serio/ambakmi.*
1552 F:      include/linux/amba/kmi.h
1553
1554 ARM PRIMECELL MMCI PL180/1 DRIVER
1555 M:      Russell King <linux@armlinux.org.uk>
1556 S:      Odd Fixes
1557 F:      drivers/mmc/host/mmci.*
1558 F:      include/linux/amba/mmci.h
1559
1560 ARM PRIMECELL SSP PL022 SPI DRIVER
1561 M:      Linus Walleij <linus.walleij@linaro.org>
1562 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1563 S:      Maintained
1564 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1565 F:      drivers/spi/spi-pl022.c
1566
1567 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1568 M:      Russell King <linux@armlinux.org.uk>
1569 S:      Odd Fixes
1570 F:      drivers/tty/serial/amba-pl01*.c
1571 F:      include/linux/amba/serial.h
1572
1573 ARM PRIMECELL VIC PL190/PL192 DRIVER
1574 M:      Linus Walleij <linus.walleij@linaro.org>
1575 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1576 S:      Maintained
1577 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1578 F:      drivers/irqchip/irq-vic.c
1579
1580 ARM SMC WATCHDOG DRIVER
1581 M:      Julius Werner <jwerner@chromium.org>
1582 R:      Evan Benn <evanbenn@chromium.org>
1583 S:      Maintained
1584 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1585 F:      drivers/watchdog/arm_smc_wdt.c
1586
1587 ARM SMMU DRIVERS
1588 M:      Will Deacon <will@kernel.org>
1589 R:      Robin Murphy <robin.murphy@arm.com>
1590 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1591 S:      Maintained
1592 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1593 F:      drivers/iommu/arm/
1594 F:      drivers/iommu/io-pgtable-arm*
1595
1596 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1597 M:      Arnd Bergmann <arnd@arndb.de>
1598 M:      Olof Johansson <olof@lixom.net>
1599 M:      soc@kernel.org
1600 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1601 S:      Maintained
1602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1603 F:      arch/arm/boot/dts/Makefile
1604 F:      arch/arm64/boot/dts/Makefile
1605
1606 ARM SUB-ARCHITECTURES
1607 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1608 S:      Maintained
1609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1610 F:      arch/arm/mach-*/
1611 F:      arch/arm/plat-*/
1612
1613 ARM/ACTIONS SEMI ARCHITECTURE
1614 M:      Andreas Färber <afaerber@suse.de>
1615 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1616 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1617 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1618 S:      Maintained
1619 F:      Documentation/devicetree/bindings/arm/actions.yaml
1620 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1621 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1622 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1623 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1624 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1625 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1626 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1627 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1628 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1629 F:      arch/arm/boot/dts/owl-*
1630 F:      arch/arm/mach-actions/
1631 F:      arch/arm64/boot/dts/actions/
1632 F:      drivers/clk/actions/
1633 F:      drivers/clocksource/timer-owl*
1634 F:      drivers/dma/owl-dma.c
1635 F:      drivers/i2c/busses/i2c-owl.c
1636 F:      drivers/irqchip/irq-owl-sirq.c
1637 F:      drivers/mmc/host/owl-mmc.c
1638 F:      drivers/net/ethernet/actions/
1639 F:      drivers/pinctrl/actions/*
1640 F:      drivers/soc/actions/
1641 F:      include/dt-bindings/power/owl-*
1642 F:      include/dt-bindings/reset/actions,*
1643 F:      include/linux/soc/actions/
1644 N:      owl
1645
1646 ARM/ADS SPHERE MACHINE SUPPORT
1647 M:      Lennert Buytenhek <kernel@wantstofly.org>
1648 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1649 S:      Maintained
1650
1651 ARM/AFEB9260 MACHINE SUPPORT
1652 M:      Sergey Lapin <slapin@ossfans.org>
1653 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1654 S:      Maintained
1655
1656 ARM/AJECO 1ARM MACHINE SUPPORT
1657 M:      Lennert Buytenhek <kernel@wantstofly.org>
1658 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1659 S:      Maintained
1660
1661 ARM/Allwinner SoC Clock Support
1662 M:      Emilio López <emilio@elopez.com.ar>
1663 S:      Maintained
1664 F:      drivers/clk/sunxi/
1665
1666 ARM/Allwinner sunXi SoC support
1667 M:      Maxime Ripard <mripard@kernel.org>
1668 M:      Chen-Yu Tsai <wens@csie.org>
1669 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
1670 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1671 S:      Maintained
1672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1673 L:      linux-sunxi@lists.linux.dev
1674 F:      arch/arm/mach-sunxi/
1675 F:      arch/arm64/boot/dts/allwinner/
1676 F:      drivers/clk/sunxi-ng/
1677 F:      drivers/pinctrl/sunxi/
1678 F:      drivers/soc/sunxi/
1679 N:      allwinner
1680 N:      sun[x456789]i
1681 N:      sun50i
1682
1683 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1684 M:      Neil Armstrong <narmstrong@baylibre.com>
1685 M:      Jerome Brunet <jbrunet@baylibre.com>
1686 L:      linux-amlogic@lists.infradead.org
1687 S:      Maintained
1688 F:      Documentation/devicetree/bindings/clock/amlogic*
1689 F:      drivers/clk/meson/
1690 F:      include/dt-bindings/clock/gxbb*
1691 F:      include/dt-bindings/clock/meson*
1692
1693 ARM/Amlogic Meson SoC Crypto Drivers
1694 M:      Corentin Labbe <clabbe@baylibre.com>
1695 L:      linux-crypto@vger.kernel.org
1696 L:      linux-amlogic@lists.infradead.org
1697 S:      Maintained
1698 F:      Documentation/devicetree/bindings/crypto/amlogic*
1699 F:      drivers/crypto/amlogic/
1700
1701 ARM/Amlogic Meson SoC Sound Drivers
1702 M:      Jerome Brunet <jbrunet@baylibre.com>
1703 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1704 S:      Maintained
1705 F:      Documentation/devicetree/bindings/sound/amlogic*
1706 F:      sound/soc/meson/
1707
1708 ARM/Amlogic Meson SoC support
1709 M:      Neil Armstrong <narmstrong@baylibre.com>
1710 M:      Kevin Hilman <khilman@baylibre.com>
1711 R:      Jerome Brunet <jbrunet@baylibre.com>
1712 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1713 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1714 L:      linux-amlogic@lists.infradead.org
1715 S:      Maintained
1716 W:      http://linux-meson.com/
1717 F:      arch/arm/boot/dts/meson*
1718 F:      arch/arm/mach-meson/
1719 F:      arch/arm64/boot/dts/amlogic/
1720 F:      drivers/mmc/host/meson*
1721 F:      drivers/pinctrl/meson/
1722 F:      drivers/rtc/rtc-meson*
1723 F:      drivers/soc/amlogic/
1724 N:      meson
1725
1726 ARM/Annapurna Labs ALPINE ARCHITECTURE
1727 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1728 M:      Antoine Tenart <atenart@kernel.org>
1729 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1730 S:      Maintained
1731 F:      arch/arm/boot/dts/alpine*
1732 F:      arch/arm/mach-alpine/
1733 F:      arch/arm64/boot/dts/amazon/
1734 F:      drivers/*/*alpine*
1735
1736 ARM/APPLE MACHINE SUPPORT
1737 M:      Hector Martin <marcan@marcan.st>
1738 M:      Sven Peter <sven@svenpeter.dev>
1739 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1740 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1741 S:      Maintained
1742 W:      https://asahilinux.org
1743 B:      https://github.com/AsahiLinux/linux/issues
1744 C:      irc://irc.oftc.net/asahi-dev
1745 T:      git https://github.com/AsahiLinux/linux.git
1746 F:      Documentation/devicetree/bindings/arm/apple.yaml
1747 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1748 F:      Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1749 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1750 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1751 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1752 F:      arch/arm64/boot/dts/apple/
1753 F:      drivers/i2c/busses/i2c-pasemi-core.c
1754 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1755 F:      drivers/irqchip/irq-apple-aic.c
1756 F:      drivers/mailbox/apple-mailbox.c
1757 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1758 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1759 F:      include/dt-bindings/pinctrl/apple.h
1760 F:      include/linux/apple-mailbox.h
1761
1762 ARM/ARTPEC MACHINE SUPPORT
1763 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1764 M:      Lars Persson <lars.persson@axis.com>
1765 L:      linux-arm-kernel@axis.com
1766 S:      Maintained
1767 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1768 F:      arch/arm/boot/dts/artpec6*
1769 F:      arch/arm/mach-artpec
1770 F:      drivers/clk/axis
1771 F:      drivers/crypto/axis
1772 F:      drivers/mmc/host/usdhi6rol0.c
1773 F:      drivers/pinctrl/pinctrl-artpec*
1774
1775 ARM/ASPEED I2C DRIVER
1776 M:      Brendan Higgins <brendanhiggins@google.com>
1777 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1778 R:      Joel Stanley <joel@jms.id.au>
1779 L:      linux-i2c@vger.kernel.org
1780 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1781 S:      Maintained
1782 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
1783 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1784 F:      drivers/i2c/busses/i2c-aspeed.c
1785 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1786
1787 ARM/ASPEED MACHINE SUPPORT
1788 M:      Joel Stanley <joel@jms.id.au>
1789 R:      Andrew Jeffery <andrew@aj.id.au>
1790 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1791 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1792 S:      Supported
1793 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1795 F:      arch/arm/boot/dts/aspeed-*
1796 F:      arch/arm/mach-aspeed/
1797 N:      aspeed
1798
1799 ARM/BITMAIN ARCHITECTURE
1800 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1801 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1802 S:      Maintained
1803 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1804 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1805 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1806 F:      arch/arm64/boot/dts/bitmain/
1807 F:      drivers/clk/clk-bm1880.c
1808 F:      drivers/pinctrl/pinctrl-bm1880.c
1809
1810 ARM/CALXEDA HIGHBANK ARCHITECTURE
1811 M:      Andre Przywara <andre.przywara@arm.com>
1812 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1813 S:      Maintained
1814 F:      arch/arm/boot/dts/ecx-*.dts*
1815 F:      arch/arm/boot/dts/highbank.dts
1816 F:      arch/arm/mach-highbank/
1817
1818 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1819 M:      Krzysztof Halasa <khalasa@piap.pl>
1820 S:      Maintained
1821 F:      arch/arm/mach-cns3xxx/
1822
1823 ARM/CAVIUM THUNDER NETWORK DRIVER
1824 M:      Sunil Goutham <sgoutham@marvell.com>
1825 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1826 S:      Supported
1827 F:      drivers/net/ethernet/cavium/thunder/
1828
1829 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1830 M:      Lukasz Majewski <lukma@denx.de>
1831 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1832 S:      Maintained
1833 F:      arch/arm/mach-ep93xx/ts72xx.c
1834
1835 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1836 M:      Alexander Shiyan <shc_work@mail.ru>
1837 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1838 S:      Odd Fixes
1839 N:      clps711x
1840
1841 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1842 M:      Lennert Buytenhek <kernel@wantstofly.org>
1843 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1844 S:      Maintained
1845
1846 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1847 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1848 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1849 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1850 S:      Maintained
1851 F:      arch/arm/mach-ep93xx/
1852 F:      arch/arm/mach-ep93xx/include/mach/
1853
1854 ARM/CLKDEV SUPPORT
1855 M:      Russell King <linux@armlinux.org.uk>
1856 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1857 S:      Maintained
1858 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1859 F:      drivers/clk/clkdev.c
1860
1861 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1862 M:      Baruch Siach <baruch@tkos.co.il>
1863 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1864 S:      Maintained
1865 F:      arch/arm/boot/dts/cx92755*
1866 N:      digicolor
1867
1868 ARM/CONTEC MICRO9 MACHINE SUPPORT
1869 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1870 S:      Maintained
1871 F:      arch/arm/mach-ep93xx/micro9.c
1872
1873 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1874 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1875 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1876 R:      Mike Leach <mike.leach@linaro.org>
1877 R:      Leo Yan <leo.yan@linaro.org>
1878 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1879 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1880 S:      Maintained
1881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1882 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1883 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1884 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1885 F:      Documentation/devicetree/bindings/arm/coresight.txt
1886 F:      Documentation/devicetree/bindings/arm/ete.yaml
1887 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1888 F:      Documentation/trace/coresight/*
1889 F:      drivers/hwtracing/coresight/*
1890 F:      include/dt-bindings/arm/coresight-cti-dt.h
1891 F:      include/linux/coresight*
1892 F:      tools/perf/arch/arm/util/auxtrace.c
1893 F:      tools/perf/arch/arm/util/cs-etm.c
1894 F:      tools/perf/arch/arm/util/cs-etm.h
1895 F:      tools/perf/arch/arm/util/pmu.c
1896 F:      tools/perf/util/cs-etm-decoder/*
1897 F:      tools/perf/util/cs-etm.*
1898
1899 ARM/CORGI MACHINE SUPPORT
1900 M:      Richard Purdie <rpurdie@rpsys.net>
1901 S:      Maintained
1902
1903 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1904 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1905 M:      Linus Walleij <linus.walleij@linaro.org>
1906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1907 S:      Maintained
1908 T:      git git://github.com/ulli-kroll/linux.git
1909 F:      Documentation/devicetree/bindings/arm/gemini.yaml
1910 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1911 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1912 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
1913 F:      arch/arm/boot/dts/gemini*
1914 F:      arch/arm/mach-gemini/
1915 F:      drivers/crypto/gemini/
1916 F:      drivers/net/ethernet/cortina/
1917 F:      drivers/pinctrl/pinctrl-gemini.c
1918 F:      drivers/rtc/rtc-ftrtc010.c
1919
1920 ARM/CZ.NIC TURRIS SUPPORT
1921 M:      Marek Behún <kabel@kernel.org>
1922 S:      Maintained
1923 W:      https://www.turris.cz/
1924 F:      Documentation/ABI/testing/debugfs-moxtet
1925 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1926 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1927 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1928 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1929 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1930 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1931 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1932 F:      drivers/bus/moxtet.c
1933 F:      drivers/firmware/turris-mox-rwtm.c
1934 F:      drivers/leds/leds-turris-omnia.c
1935 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
1936 F:      drivers/gpio/gpio-moxtet.c
1937 F:      drivers/watchdog/armada_37xx_wdt.c
1938 F:      include/dt-bindings/bus/moxtet.h
1939 F:      include/linux/armada-37xx-rwtm-mailbox.h
1940 F:      include/linux/moxtet.h
1941
1942 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1943 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1944 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1945 S:      Maintained
1946 F:      arch/arm/mach-pxa/ezx.c
1947
1948 ARM/FARADAY FA526 PORT
1949 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1950 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1951 S:      Maintained
1952 T:      git git://git.berlios.de/gemini-board
1953 F:      arch/arm/mm/*-fa*
1954
1955 ARM/FOOTBRIDGE ARCHITECTURE
1956 M:      Russell King <linux@armlinux.org.uk>
1957 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1958 S:      Maintained
1959 W:      http://www.armlinux.org.uk/
1960 F:      arch/arm/include/asm/hardware/dec21285.h
1961 F:      arch/arm/mach-footbridge/
1962
1963 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1964 M:      Shawn Guo <shawnguo@kernel.org>
1965 M:      Sascha Hauer <s.hauer@pengutronix.de>
1966 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1967 R:      Fabio Estevam <festevam@gmail.com>
1968 R:      NXP Linux Team <linux-imx@nxp.com>
1969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1970 S:      Maintained
1971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1972 X:      drivers/media/i2c/
1973 N:      imx
1974 N:      mxs
1975
1976 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1977 M:      Shawn Guo <shawnguo@kernel.org>
1978 M:      Li Yang <leoyang.li@nxp.com>
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/ls1021a*
1983 F:      arch/arm64/boot/dts/freescale/fsl-*
1984 F:      arch/arm64/boot/dts/freescale/qoriq-*
1985
1986 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1987 M:      Shawn Guo <shawnguo@kernel.org>
1988 M:      Sascha Hauer <s.hauer@pengutronix.de>
1989 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1990 R:      Stefan Agner <stefan@agner.ch>
1991 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1992 S:      Maintained
1993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1994 F:      arch/arm/boot/dts/vf*
1995 F:      arch/arm/mach-imx/*vf610*
1996
1997 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1998 M:      Lennert Buytenhek <kernel@wantstofly.org>
1999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2000 S:      Maintained
2001
2002 ARM/GUMSTIX MACHINE SUPPORT
2003 M:      Steve Sakoman <sakoman@gmail.com>
2004 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2005 S:      Maintained
2006
2007 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
2008 M:      Philipp Zabel <philipp.zabel@gmail.com>
2009 M:      Paul Parsons <lost.distance@yahoo.com>
2010 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2011 S:      Maintained
2012 F:      arch/arm/mach-pxa/hx4700.c
2013 F:      arch/arm/mach-pxa/include/mach/hx4700.h
2014 F:      sound/soc/pxa/hx4700.c
2015
2016 ARM/HISILICON SOC SUPPORT
2017 M:      Wei Xu <xuwei5@hisilicon.com>
2018 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2019 S:      Supported
2020 W:      http://www.hisilicon.com
2021 T:      git git://github.com/hisilicon/linux-hisi.git
2022 F:      arch/arm/boot/dts/hi3*
2023 F:      arch/arm/boot/dts/hip*
2024 F:      arch/arm/boot/dts/hisi*
2025 F:      arch/arm/mach-hisi/
2026 F:      arch/arm64/boot/dts/hisilicon/
2027
2028 ARM/HP JORNADA 7XX MACHINE SUPPORT
2029 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2030 S:      Maintained
2031 W:      www.jlime.com
2032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2033 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2034 F:      arch/arm/mach-sa1100/jornada720.c
2035
2036 ARM/IGEP MACHINE SUPPORT
2037 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2038 M:      Javier Martinez Canillas <javier@dowhile0.org>
2039 L:      linux-omap@vger.kernel.org
2040 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2041 S:      Maintained
2042 F:      arch/arm/boot/dts/omap3-igep*
2043
2044 ARM/INCOME PXA270 SUPPORT
2045 M:      Marek Vasut <marek.vasut@gmail.com>
2046 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2047 S:      Maintained
2048 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2049
2050 ARM/INTEL IOP32X ARM ARCHITECTURE
2051 M:      Lennert Buytenhek <kernel@wantstofly.org>
2052 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2053 S:      Maintained
2054
2055 ARM/INTEL IQ81342EX MACHINE SUPPORT
2056 M:      Lennert Buytenhek <kernel@wantstofly.org>
2057 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2058 S:      Maintained
2059
2060 ARM/INTEL IXDP2850 MACHINE SUPPORT
2061 M:      Lennert Buytenhek <kernel@wantstofly.org>
2062 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2063 S:      Maintained
2064
2065 ARM/INTEL IXP4XX ARM ARCHITECTURE
2066 M:      Linus Walleij <linusw@kernel.org>
2067 M:      Imre Kaloz <kaloz@openwrt.org>
2068 M:      Krzysztof Halasa <khalasa@piap.pl>
2069 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2070 S:      Maintained
2071 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2072 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2073 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2074 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2075 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2076 F:      arch/arm/mach-ixp4xx/
2077 F:      drivers/bus/intel-ixp4xx-eb.c
2078 F:      drivers/clocksource/timer-ixp4xx.c
2079 F:      drivers/crypto/ixp4xx_crypto.c
2080 F:      drivers/gpio/gpio-ixp4xx.c
2081 F:      drivers/irqchip/irq-ixp4xx.c
2082 F:      include/linux/irqchip/irq-ixp4xx.h
2083 F:      include/linux/platform_data/timer-ixp4xx.h
2084
2085 ARM/INTEL KEEMBAY ARCHITECTURE
2086 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2087 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2088 S:      Maintained
2089 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2090 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2091 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2092
2093 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
2094 M:      Jonathan Cameron <jic23@cam.ac.uk>
2095 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2096 S:      Maintained
2097 F:      arch/arm/mach-pxa/stargate2.c
2098 F:      drivers/pcmcia/pxa2xx_stargate2.c
2099
2100 ARM/INTEL XSC3 (MANZANO) ARM CORE
2101 M:      Lennert Buytenhek <kernel@wantstofly.org>
2102 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2103 S:      Maintained
2104
2105 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2106 M:      Lennert Buytenhek <kernel@wantstofly.org>
2107 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2108 S:      Maintained
2109
2110 ARM/LG1K ARCHITECTURE
2111 M:      Chanho Min <chanho.min@lge.com>
2112 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2113 S:      Maintained
2114 F:      arch/arm64/boot/dts/lg/
2115
2116 ARM/LOGICPD PXA270 MACHINE SUPPORT
2117 M:      Lennert Buytenhek <kernel@wantstofly.org>
2118 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2119 S:      Maintained
2120
2121 ARM/LPC18XX ARCHITECTURE
2122 M:      Vladimir Zapolskiy <vz@mleia.com>
2123 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2124 S:      Maintained
2125 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2126 F:      arch/arm/boot/dts/lpc43*
2127 F:      drivers/i2c/busses/i2c-lpc2k.c
2128 F:      drivers/memory/pl172.c
2129 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2130 F:      drivers/rtc/rtc-lpc24xx.c
2131 N:      lpc18xx
2132
2133 ARM/LPC32XX SOC SUPPORT
2134 M:      Vladimir Zapolskiy <vz@mleia.com>
2135 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2136 S:      Maintained
2137 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2138 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2139 F:      arch/arm/boot/dts/lpc32*
2140 F:      arch/arm/mach-lpc32xx/
2141 F:      drivers/i2c/busses/i2c-pnx.c
2142 F:      drivers/net/ethernet/nxp/lpc_eth.c
2143 F:      drivers/usb/host/ohci-nxp.c
2144 F:      drivers/watchdog/pnx4008_wdt.c
2145 N:      lpc32xx
2146
2147 ARM/MAGICIAN MACHINE SUPPORT
2148 M:      Philipp Zabel <philipp.zabel@gmail.com>
2149 S:      Maintained
2150
2151 ARM/Marvell Dove/MV78xx0/Orion SOC support
2152 M:      Andrew Lunn <andrew@lunn.ch>
2153 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2154 M:      Gregory Clement <gregory.clement@bootlin.com>
2155 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2156 S:      Maintained
2157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2158 F:      Documentation/devicetree/bindings/soc/dove/
2159 F:      arch/arm/boot/dts/dove*
2160 F:      arch/arm/boot/dts/orion5x*
2161 F:      arch/arm/mach-dove/
2162 F:      arch/arm/mach-mv78xx0/
2163 F:      arch/arm/mach-orion5x/
2164 F:      arch/arm/plat-orion/
2165 F:      drivers/soc/dove/
2166
2167 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2168 M:      Andrew Lunn <andrew@lunn.ch>
2169 M:      Gregory Clement <gregory.clement@bootlin.com>
2170 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2171 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2172 S:      Maintained
2173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2174 F:      arch/arm/boot/dts/armada*
2175 F:      arch/arm/boot/dts/kirkwood*
2176 F:      arch/arm/configs/mvebu_*_defconfig
2177 F:      arch/arm/mach-mvebu/
2178 F:      arch/arm64/boot/dts/marvell/armada*
2179 F:      arch/arm64/boot/dts/marvell/cn913*
2180 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2181 F:      drivers/cpufreq/armada-8k-cpufreq.c
2182 F:      drivers/cpufreq/mvebu-cpufreq.c
2183 F:      drivers/irqchip/irq-armada-370-xp.c
2184 F:      drivers/irqchip/irq-mvebu-*
2185 F:      drivers/pinctrl/mvebu/
2186 F:      drivers/rtc/rtc-armada38x.c
2187
2188 ARM/Mediatek RTC DRIVER
2189 M:      Eddie Huang <eddie.huang@mediatek.com>
2190 M:      Sean Wang <sean.wang@mediatek.com>
2191 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2192 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2193 S:      Maintained
2194 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2195 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2196 F:      drivers/rtc/rtc-mt2712.c
2197 F:      drivers/rtc/rtc-mt6397.c
2198 F:      drivers/rtc/rtc-mt7622.c
2199
2200 ARM/Mediatek SoC support
2201 M:      Matthias Brugger <matthias.bgg@gmail.com>
2202 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2203 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2204 S:      Maintained
2205 W:      https://mtk.wiki.kernel.org/
2206 C:      irc://chat.freenode.net/linux-mediatek
2207 F:      arch/arm/boot/dts/mt6*
2208 F:      arch/arm/boot/dts/mt7*
2209 F:      arch/arm/boot/dts/mt8*
2210 F:      arch/arm/mach-mediatek/
2211 F:      arch/arm64/boot/dts/mediatek/
2212 F:      drivers/soc/mediatek/
2213 N:      mtk
2214 N:      mt[678]
2215 K:      mediatek
2216
2217 ARM/Mediatek USB3 PHY DRIVER
2218 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2219 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2220 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2221 S:      Maintained
2222 F:      Documentation/devicetree/bindings/phy/mediatek,*
2223 F:      drivers/phy/mediatek/
2224
2225 ARM/Microchip (AT91) SoC support
2226 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2227 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2228 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2229 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2230 S:      Supported
2231 W:      http://www.linux4sam.org
2232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2233 F:      arch/arm/boot/dts/at91*.dts
2234 F:      arch/arm/boot/dts/at91*.dtsi
2235 F:      arch/arm/boot/dts/sama*.dts
2236 F:      arch/arm/boot/dts/sama*.dtsi
2237 F:      arch/arm/include/debug/at91.S
2238 F:      arch/arm/mach-at91/
2239 F:      drivers/memory/atmel*
2240 F:      drivers/watchdog/sama5d4_wdt.c
2241 F:      include/soc/at91/
2242 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2243 X:      drivers/net/wireless/atmel/
2244 N:      at91
2245 N:      atmel
2246
2247 ARM/Microchip Sparx5 SoC support
2248 M:      Lars Povlsen <lars.povlsen@microchip.com>
2249 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2250 M:      UNGLinuxDriver@microchip.com
2251 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2252 S:      Supported
2253 T:      git git://github.com/microchip-ung/linux-upstream.git
2254 F:      arch/arm64/boot/dts/microchip/
2255 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2256 N:      sparx5
2257
2258 Microchip Timer Counter Block (TCB) Capture Driver
2259 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2260 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2261 L:      linux-iio@vger.kernel.org
2262 S:      Maintained
2263 F:      drivers/counter/microchip-tcb-capture.c
2264
2265 ARM/MIOA701 MACHINE SUPPORT
2266 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2267 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2268 S:      Maintained
2269 F:      arch/arm/mach-pxa/mioa701.c
2270
2271 ARM/MStar/Sigmastar Armv7 SoC support
2272 M:      Daniel Palmer <daniel@thingy.jp>
2273 M:      Romain Perier <romain.perier@gmail.com>
2274 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2275 S:      Maintained
2276 W:      http://linux-chenxing.org/
2277 T:      git git://github.com/linux-chenxing/linux.git
2278 F:      Documentation/devicetree/bindings/arm/mstar/*
2279 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2280 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2281 F:      arch/arm/boot/dts/mstar-*
2282 F:      arch/arm/mach-mstar/
2283 F:      drivers/clk/mstar/
2284 F:      drivers/gpio/gpio-msc313.c
2285 F:      drivers/watchdog/msc313e_wdt.c
2286 F:      include/dt-bindings/clock/mstar-*
2287 F:      include/dt-bindings/gpio/msc313-gpio.h
2288
2289 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2290 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2291 S:      Maintained
2292
2293 ARM/NOMADIK/Ux500 ARCHITECTURES
2294 M:      Linus Walleij <linus.walleij@linaro.org>
2295 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2296 S:      Maintained
2297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2298 F:      Documentation/devicetree/bindings/arm/ste-*
2299 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2300 F:      Documentation/devicetree/bindings/arm/ux500/
2301 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2302 F:      arch/arm/boot/dts/ste-*
2303 F:      arch/arm/mach-nomadik/
2304 F:      arch/arm/mach-ux500/
2305 F:      drivers/clk/clk-nomadik.c
2306 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2307 F:      drivers/dma/ste_dma40*
2308 F:      drivers/hwspinlock/u8500_hsem.c
2309 F:      drivers/i2c/busses/i2c-nomadik.c
2310 F:      drivers/iio/adc/ab8500-gpadc.c
2311 F:      drivers/mfd/ab8500*
2312 F:      drivers/mfd/abx500*
2313 F:      drivers/mfd/db8500*
2314 F:      drivers/pinctrl/nomadik/
2315 F:      drivers/rtc/rtc-ab8500.c
2316 F:      drivers/rtc/rtc-pl031.c
2317 F:      drivers/soc/ux500/
2318
2319 ARM/NUVOTON NPCM ARCHITECTURE
2320 M:      Avi Fishman <avifishman70@gmail.com>
2321 M:      Tomer Maimon <tmaimon77@gmail.com>
2322 M:      Tali Perry <tali.perry1@gmail.com>
2323 R:      Patrick Venture <venture@google.com>
2324 R:      Nancy Yuen <yuenn@google.com>
2325 R:      Benjamin Fair <benjaminfair@google.com>
2326 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2327 S:      Supported
2328 F:      Documentation/devicetree/bindings/*/*/*npcm*
2329 F:      Documentation/devicetree/bindings/*/*npcm*
2330 F:      arch/arm/boot/dts/nuvoton-npcm*
2331 F:      arch/arm/mach-npcm/
2332 F:      drivers/*/*npcm*
2333 F:      drivers/*/*/*npcm*
2334 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2335
2336 ARM/NUVOTON WPCM450 ARCHITECTURE
2337 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2338 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2339 S:      Maintained
2340 F:      Documentation/devicetree/bindings/*/*wpcm*
2341 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2342 F:      arch/arm/mach-npcm/wpcm450.c
2343 F:      drivers/*/*wpcm*
2344
2345 ARM/NXP S32G ARCHITECTURE
2346 M:      Chester Lin <clin@suse.com>
2347 R:      Andreas Färber <afaerber@suse.de>
2348 R:      Matthias Brugger <mbrugger@suse.com>
2349 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2350 S:      Maintained
2351 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2352
2353 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2354 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2355 S:      Orphan
2356 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2357 F:      arch/arm/mach-s3c/gta02.h
2358 F:      arch/arm/mach-s3c/mach-gta02.c
2359
2360 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2361 M:      Alexander Clouter <alex@digriz.org.uk>
2362 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2363 S:      Maintained
2364 W:      http://www.digriz.org.uk/ts78xx/kernel
2365 F:      arch/arm/mach-orion5x/ts78xx-*
2366
2367 ARM/OXNAS platform support
2368 M:      Neil Armstrong <narmstrong@baylibre.com>
2369 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2370 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2371 S:      Maintained
2372 F:      arch/arm/boot/dts/ox8*.dts*
2373 F:      arch/arm/mach-oxnas/
2374 F:      drivers/power/reset/oxnas-restart.c
2375 N:      oxnas
2376
2377 ARM/PALM TREO SUPPORT
2378 M:      Tomas Cech <sleep_walker@suse.com>
2379 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2380 S:      Maintained
2381 W:      http://hackndev.com
2382 F:      arch/arm/mach-pxa/palmtreo.*
2383
2384 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2385 M:      Marek Vasut <marek.vasut@gmail.com>
2386 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2387 S:      Maintained
2388 W:      http://hackndev.com
2389 F:      arch/arm/mach-pxa/include/mach/palmld.h
2390 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2391 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2392 F:      arch/arm/mach-pxa/palmld.c
2393 F:      arch/arm/mach-pxa/palmt5.*
2394 F:      arch/arm/mach-pxa/palmtc.c
2395 F:      arch/arm/mach-pxa/palmte2.*
2396 F:      arch/arm/mach-pxa/palmtx.c
2397
2398 ARM/PALMZ72 SUPPORT
2399 M:      Sergey Lapin <slapin@ossfans.org>
2400 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2401 S:      Maintained
2402 W:      http://hackndev.com
2403 F:      arch/arm/mach-pxa/palmz72.*
2404
2405 ARM/PLEB SUPPORT
2406 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2407 S:      Maintained
2408 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2409
2410 ARM/PT DIGITAL BOARD PORT
2411 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2412 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2413 S:      Maintained
2414 W:      http://www.armlinux.org.uk/
2415
2416 ARM/QUALCOMM SUPPORT
2417 M:      Andy Gross <agross@kernel.org>
2418 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2419 L:      linux-arm-msm@vger.kernel.org
2420 S:      Maintained
2421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2422 F:      Documentation/devicetree/bindings/*/qcom*
2423 F:      Documentation/devicetree/bindings/soc/qcom/
2424 F:      arch/arm/boot/dts/qcom-*.dts
2425 F:      arch/arm/boot/dts/qcom-*.dtsi
2426 F:      arch/arm/mach-qcom/
2427 F:      arch/arm64/boot/dts/qcom/
2428 F:      drivers/*/*/qcom*
2429 F:      drivers/*/*/qcom/
2430 F:      drivers/*/pm8???-*
2431 F:      drivers/*/qcom*
2432 F:      drivers/*/qcom/
2433 F:      drivers/bluetooth/btqcomsmd.c
2434 F:      drivers/clocksource/timer-qcom.c
2435 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2436 F:      drivers/extcon/extcon-qcom*
2437 F:      drivers/i2c/busses/i2c-qcom-geni.c
2438 F:      drivers/i2c/busses/i2c-qup.c
2439 F:      drivers/iommu/msm*
2440 F:      drivers/mfd/ssbi.c
2441 F:      drivers/mmc/host/mmci_qcom*
2442 F:      drivers/mmc/host/sdhci-msm.c
2443 F:      drivers/pci/controller/dwc/pcie-qcom.c
2444 F:      drivers/phy/qualcomm/
2445 F:      drivers/power/*/msm*
2446 F:      drivers/reset/reset-qcom-*
2447 F:      drivers/scsi/ufs/ufs-qcom*
2448 F:      drivers/spi/spi-geni-qcom.c
2449 F:      drivers/spi/spi-qcom-qspi.c
2450 F:      drivers/spi/spi-qup.c
2451 F:      drivers/tty/serial/msm_serial.c
2452 F:      drivers/usb/dwc3/dwc3-qcom.c
2453 F:      include/dt-bindings/*/qcom*
2454 F:      include/linux/*/qcom*
2455 F:      include/linux/soc/qcom/
2456
2457 ARM/RADISYS ENP2611 MACHINE SUPPORT
2458 M:      Lennert Buytenhek <kernel@wantstofly.org>
2459 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2460 S:      Maintained
2461
2462 ARM/RDA MICRO ARCHITECTURE
2463 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2464 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2465 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2466 S:      Maintained
2467 F:      Documentation/devicetree/bindings/arm/rda.yaml
2468 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2469 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2470 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2471 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2472 F:      arch/arm/boot/dts/rda8810pl-*
2473 F:      drivers/clocksource/timer-rda.c
2474 F:      drivers/gpio/gpio-rda.c
2475 F:      drivers/irqchip/irq-rda-intc.c
2476 F:      drivers/tty/serial/rda-uart.c
2477
2478 ARM/REALTEK ARCHITECTURE
2479 M:      Andreas Färber <afaerber@suse.de>
2480 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2481 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2482 S:      Maintained
2483 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2484 F:      arch/arm/boot/dts/rtd*
2485 F:      arch/arm/mach-realtek/
2486 F:      arch/arm64/boot/dts/realtek/
2487
2488 ARM/RENESAS ARM64 ARCHITECTURE
2489 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2490 M:      Magnus Damm <magnus.damm@gmail.com>
2491 L:      linux-renesas-soc@vger.kernel.org
2492 S:      Supported
2493 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2495 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2496 F:      arch/arm64/boot/dts/renesas/
2497 F:      drivers/soc/renesas/
2498 F:      include/linux/soc/renesas/
2499
2500 ARM/RISCPC ARCHITECTURE
2501 M:      Russell King <linux@armlinux.org.uk>
2502 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2503 S:      Maintained
2504 W:      http://www.armlinux.org.uk/
2505 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2506 F:      arch/arm/include/asm/hardware/ioc.h
2507 F:      arch/arm/include/asm/hardware/iomd.h
2508 F:      arch/arm/include/asm/hardware/memc.h
2509 F:      arch/arm/mach-rpc/
2510 F:      drivers/net/ethernet/8390/etherh.c
2511 F:      drivers/net/ethernet/i825xx/ether1*
2512 F:      drivers/net/ethernet/seeq/ether3*
2513 F:      drivers/scsi/arm/
2514
2515 ARM/Rockchip SoC support
2516 M:      Heiko Stuebner <heiko@sntech.de>
2517 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2518 L:      linux-rockchip@lists.infradead.org
2519 S:      Maintained
2520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2521 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2522 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2523 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2524 F:      arch/arm/boot/dts/rk3*
2525 F:      arch/arm/boot/dts/rv1108*
2526 F:      arch/arm/mach-rockchip/
2527 F:      drivers/*/*/*rockchip*
2528 F:      drivers/*/*rockchip*
2529 F:      drivers/clk/rockchip/
2530 F:      drivers/i2c/busses/i2c-rk3x.c
2531 F:      sound/soc/rockchip/
2532 N:      rockchip
2533
2534 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2535 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
2536 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2537 L:      linux-samsung-soc@vger.kernel.org
2538 S:      Maintained
2539 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2540 F:      Documentation/arm/samsung/
2541 F:      Documentation/devicetree/bindings/arm/samsung/
2542 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2543 F:      arch/arm/boot/dts/exynos*
2544 F:      arch/arm/boot/dts/s3c*
2545 F:      arch/arm/boot/dts/s5p*
2546 F:      arch/arm/mach-exynos*/
2547 F:      arch/arm/mach-s3c/
2548 F:      arch/arm/mach-s5p*/
2549 F:      arch/arm64/boot/dts/exynos/
2550 F:      drivers/*/*/*s3c24*
2551 F:      drivers/*/*s3c24*
2552 F:      drivers/*/*s3c64xx*
2553 F:      drivers/*/*s5pv210*
2554 F:      drivers/clocksource/samsung_pwm_timer.c
2555 F:      drivers/memory/samsung/
2556 F:      drivers/pwm/pwm-samsung.c
2557 F:      drivers/soc/samsung/
2558 F:      drivers/tty/serial/samsung*
2559 F:      include/clocksource/samsung_pwm.h
2560 F:      include/linux/platform_data/*s3c*
2561 F:      include/linux/serial_s3c.h
2562 F:      include/linux/soc/samsung/
2563 N:      exynos
2564 N:      s3c2410
2565 N:      s3c64xx
2566 N:      s5pv210
2567
2568 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2569 M:      Andrzej Hajda <a.hajda@samsung.com>
2570 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2571 L:      linux-media@vger.kernel.org
2572 S:      Maintained
2573 F:      drivers/media/platform/s5p-g2d/
2574
2575 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2576 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2577 L:      linux-samsung-soc@vger.kernel.org
2578 L:      linux-media@vger.kernel.org
2579 S:      Maintained
2580 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2581 F:      drivers/media/cec/platform/s5p/
2582
2583 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2584 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2585 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2586 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2587 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2588 L:      linux-media@vger.kernel.org
2589 S:      Maintained
2590 F:      drivers/media/platform/s5p-jpeg/
2591
2592 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2593 M:      Andrzej Hajda <a.hajda@samsung.com>
2594 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2595 L:      linux-media@vger.kernel.org
2596 S:      Maintained
2597 F:      drivers/media/platform/s5p-mfc/
2598
2599 ARM/SHMOBILE ARM ARCHITECTURE
2600 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2601 M:      Magnus Damm <magnus.damm@gmail.com>
2602 L:      linux-renesas-soc@vger.kernel.org
2603 S:      Supported
2604 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2606 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2607 F:      arch/arm/boot/dts/emev2*
2608 F:      arch/arm/boot/dts/gr-peach*
2609 F:      arch/arm/boot/dts/iwg20d-q7*
2610 F:      arch/arm/boot/dts/r7s*
2611 F:      arch/arm/boot/dts/r8a*
2612 F:      arch/arm/boot/dts/r9a*
2613 F:      arch/arm/boot/dts/sh*
2614 F:      arch/arm/configs/shmobile_defconfig
2615 F:      arch/arm/include/debug/renesas-scif.S
2616 F:      arch/arm/mach-shmobile/
2617 F:      drivers/soc/renesas/
2618 F:      include/linux/soc/renesas/
2619
2620 ARM/SOCFPGA ARCHITECTURE
2621 M:      Dinh Nguyen <dinguyen@kernel.org>
2622 S:      Maintained
2623 W:      http://www.rocketboards.org
2624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2625 F:      arch/arm/boot/dts/socfpga*
2626 F:      arch/arm/configs/socfpga_defconfig
2627 F:      arch/arm/mach-socfpga/
2628 F:      arch/arm64/boot/dts/altera/
2629 F:      arch/arm64/boot/dts/intel/
2630
2631 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2632 M:      Dinh Nguyen <dinguyen@kernel.org>
2633 S:      Maintained
2634 F:      drivers/clk/socfpga/
2635
2636 ARM/SOCFPGA EDAC SUPPORT
2637 M:      Dinh Nguyen <dinguyen@kernel.org>
2638 S:      Maintained
2639 F:      drivers/edac/altera_edac.[ch]
2640
2641 ARM/SPREADTRUM SoC SUPPORT
2642 M:      Orson Zhai <orsonzhai@gmail.com>
2643 M:      Baolin Wang <baolin.wang7@gmail.com>
2644 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2645 S:      Maintained
2646 F:      arch/arm64/boot/dts/sprd
2647 N:      sprd
2648 N:      sc27xx
2649 N:      sc2731
2650
2651 ARM/STI ARCHITECTURE
2652 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2653 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2654 S:      Maintained
2655 W:      http://www.stlinux.com
2656 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2657 F:      arch/arm/boot/dts/sti*
2658 F:      arch/arm/mach-sti/
2659 F:      drivers/ata/ahci_st.c
2660 F:      drivers/char/hw_random/st-rng.c
2661 F:      drivers/clocksource/arm_global_timer.c
2662 F:      drivers/clocksource/clksrc_st_lpc.c
2663 F:      drivers/cpufreq/sti-cpufreq.c
2664 F:      drivers/dma/st_fdma*
2665 F:      drivers/i2c/busses/i2c-st.c
2666 F:      drivers/media/platform/sti/c8sectpfe/
2667 F:      drivers/media/rc/st_rc.c
2668 F:      drivers/mmc/host/sdhci-st.c
2669 F:      drivers/phy/st/phy-miphy28lp.c
2670 F:      drivers/phy/st/phy-stih407-usb.c
2671 F:      drivers/pinctrl/pinctrl-st.c
2672 F:      drivers/remoteproc/st_remoteproc.c
2673 F:      drivers/remoteproc/st_slim_rproc.c
2674 F:      drivers/reset/sti/
2675 F:      drivers/rtc/rtc-st-lpc.c
2676 F:      drivers/tty/serial/st-asc.c
2677 F:      drivers/usb/dwc3/dwc3-st.c
2678 F:      drivers/usb/host/ehci-st.c
2679 F:      drivers/usb/host/ohci-st.c
2680 F:      drivers/watchdog/st_lpc_wdt.c
2681 F:      include/linux/remoteproc/st_slim_rproc.h
2682
2683 ARM/STM32 ARCHITECTURE
2684 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2685 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2686 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2687 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2688 S:      Maintained
2689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2690 F:      arch/arm/boot/dts/stm32*
2691 F:      arch/arm/mach-stm32/
2692 F:      drivers/clocksource/armv7m_systick.c
2693 N:      stm32
2694 N:      stm
2695
2696 ARM/Synaptics SoC support
2697 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2698 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2699 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2700 S:      Maintained
2701 F:      arch/arm/boot/dts/berlin*
2702 F:      arch/arm/mach-berlin/
2703 F:      arch/arm64/boot/dts/synaptics/
2704
2705 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2706 M:      Lennert Buytenhek <kernel@wantstofly.org>
2707 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2708 S:      Maintained
2709
2710 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2711 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2712 L:      linux-tegra@vger.kernel.org
2713 L:      linux-media@vger.kernel.org
2714 S:      Maintained
2715 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2716 F:      drivers/media/cec/platform/tegra/
2717
2718 ARM/TETON BGA MACHINE SUPPORT
2719 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2720 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2721 S:      Maintained
2722
2723 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2724 M:      Santosh Shilimkar <ssantosh@kernel.org>
2725 L:      linux-kernel@vger.kernel.org
2726 S:      Maintained
2727 F:      drivers/memory/*emif*
2728
2729 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2730 M:      Santosh Shilimkar <ssantosh@kernel.org>
2731 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2732 S:      Maintained
2733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2734 F:      arch/arm/boot/dts/keystone-*
2735 F:      arch/arm/mach-keystone/
2736
2737 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2738 M:      Santosh Shilimkar <ssantosh@kernel.org>
2739 L:      linux-kernel@vger.kernel.org
2740 S:      Maintained
2741 F:      drivers/clk/keystone/
2742
2743 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2744 M:      Santosh Shilimkar <ssantosh@kernel.org>
2745 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2746 L:      linux-kernel@vger.kernel.org
2747 S:      Maintained
2748 F:      drivers/clocksource/timer-keystone.c
2749
2750 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2751 M:      Santosh Shilimkar <ssantosh@kernel.org>
2752 L:      linux-kernel@vger.kernel.org
2753 S:      Maintained
2754 F:      drivers/power/reset/keystone-reset.c
2755
2756 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2757 M:      Nishanth Menon <nm@ti.com>
2758 M:      Vignesh Raghavendra <vigneshr@ti.com>
2759 M:      Tero Kristo <kristo@kernel.org>
2760 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2761 S:      Supported
2762 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2763 F:      arch/arm64/boot/dts/ti/Makefile
2764 F:      arch/arm64/boot/dts/ti/k3-*
2765 F:      include/dt-bindings/pinctrl/k3.h
2766
2767 ARM/THECUS N2100 MACHINE SUPPORT
2768 M:      Lennert Buytenhek <kernel@wantstofly.org>
2769 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2770 S:      Maintained
2771
2772 ARM/TOSA MACHINE SUPPORT
2773 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2774 M:      Dirk Opfer <dirk@opfer-online.de>
2775 S:      Maintained
2776
2777 ARM/TOSHIBA VISCONTI ARCHITECTURE
2778 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2779 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2780 S:      Supported
2781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2782 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2783 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2784 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2785 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2786 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2787 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2788 F:      arch/arm64/boot/dts/toshiba/
2789 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2790 F:      drivers/gpio/gpio-visconti.c
2791 F:      drivers/pci/controller/dwc/pcie-visconti.c
2792 F:      drivers/pinctrl/visconti/
2793 F:      drivers/watchdog/visconti_wdt.c
2794 N:      visconti
2795
2796 ARM/UNIPHIER ARCHITECTURE
2797 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2798 M:      Masami Hiramatsu <mhiramat@kernel.org>
2799 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2800 S:      Maintained
2801 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2802 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2803 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2804 F:      arch/arm/boot/dts/uniphier*
2805 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2806 F:      arch/arm/mach-uniphier/
2807 F:      arch/arm/mm/cache-uniphier.c
2808 F:      arch/arm64/boot/dts/socionext/uniphier*
2809 F:      drivers/bus/uniphier-system-bus.c
2810 F:      drivers/clk/uniphier/
2811 F:      drivers/dma/uniphier-mdmac.c
2812 F:      drivers/gpio/gpio-uniphier.c
2813 F:      drivers/i2c/busses/i2c-uniphier*
2814 F:      drivers/irqchip/irq-uniphier-aidet.c
2815 F:      drivers/mmc/host/uniphier-sd.c
2816 F:      drivers/pinctrl/uniphier/
2817 F:      drivers/reset/reset-uniphier.c
2818 F:      drivers/tty/serial/8250/8250_uniphier.c
2819 N:      uniphier
2820
2821 ARM/VERSATILE EXPRESS PLATFORM
2822 M:      Liviu Dudau <liviu.dudau@arm.com>
2823 M:      Sudeep Holla <sudeep.holla@arm.com>
2824 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2825 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2826 S:      Maintained
2827 F:      */*/*/vexpress*
2828 F:      */*/vexpress*
2829 F:      arch/arm/boot/dts/vexpress*
2830 F:      arch/arm/mach-vexpress/
2831 F:      arch/arm64/boot/dts/arm/
2832 F:      drivers/clk/versatile/clk-vexpress-osc.c
2833 F:      drivers/clocksource/timer-versatile.c
2834 N:      mps2
2835
2836 ARM/VFP SUPPORT
2837 M:      Russell King <linux@armlinux.org.uk>
2838 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2839 S:      Maintained
2840 W:      http://www.armlinux.org.uk/
2841 F:      arch/arm/vfp/
2842
2843 ARM/VOIPAC PXA270 SUPPORT
2844 M:      Marek Vasut <marek.vasut@gmail.com>
2845 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2846 S:      Maintained
2847 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2848 F:      arch/arm/mach-pxa/vpac270.c
2849
2850 ARM/VT8500 ARM ARCHITECTURE
2851 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2852 S:      Orphan
2853 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2854 F:      arch/arm/mach-vt8500/
2855 F:      drivers/clocksource/timer-vt8500.c
2856 F:      drivers/i2c/busses/i2c-wmt.c
2857 F:      drivers/mmc/host/wmt-sdmmc.c
2858 F:      drivers/pwm/pwm-vt8500.c
2859 F:      drivers/rtc/rtc-vt8500.c
2860 F:      drivers/tty/serial/vt8500_serial.c
2861 F:      drivers/usb/host/ehci-platform.c
2862 F:      drivers/usb/host/uhci-platform.c
2863 F:      drivers/video/fbdev/vt8500lcdfb.*
2864 F:      drivers/video/fbdev/wm8505fb*
2865 F:      drivers/video/fbdev/wmt_ge_rops.*
2866
2867 ARM/ZIPIT Z2 SUPPORT
2868 M:      Marek Vasut <marek.vasut@gmail.com>
2869 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2870 S:      Maintained
2871 F:      arch/arm/mach-pxa/include/mach/z2.h
2872 F:      arch/arm/mach-pxa/z2.c
2873
2874 ARM/ZYNQ ARCHITECTURE
2875 M:      Michal Simek <michal.simek@xilinx.com>
2876 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2877 S:      Supported
2878 W:      http://wiki.xilinx.com
2879 T:      git https://github.com/Xilinx/linux-xlnx.git
2880 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2881 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2882 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2883 F:      arch/arm/mach-zynq/
2884 F:      drivers/clocksource/timer-cadence-ttc.c
2885 F:      drivers/cpuidle/cpuidle-zynq.c
2886 F:      drivers/edac/synopsys_edac.c
2887 F:      drivers/i2c/busses/i2c-cadence.c
2888 F:      drivers/i2c/busses/i2c-xiic.c
2889 F:      drivers/mmc/host/sdhci-of-arasan.c
2890 N:      zynq
2891 N:      xilinx
2892
2893 ARM64 PORT (AARCH64 ARCHITECTURE)
2894 M:      Catalin Marinas <catalin.marinas@arm.com>
2895 M:      Will Deacon <will@kernel.org>
2896 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2897 S:      Maintained
2898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2899 F:      Documentation/arm64/
2900 F:      arch/arm64/
2901 F:      tools/testing/selftests/arm64/
2902 X:      arch/arm64/boot/dts/
2903
2904 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2905 M:      George McCollister <george.mccollister@gmail.com>
2906 L:      netdev@vger.kernel.org
2907 S:      Maintained
2908 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2909 F:      drivers/net/dsa/xrs700x/*
2910 F:      net/dsa/tag_xrs700x.c
2911
2912 AS3645A LED FLASH CONTROLLER DRIVER
2913 M:      Sakari Ailus <sakari.ailus@iki.fi>
2914 L:      linux-leds@vger.kernel.org
2915 S:      Maintained
2916 F:      drivers/leds/flash/leds-as3645a.c
2917
2918 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2919 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2920 L:      linux-media@vger.kernel.org
2921 S:      Maintained
2922 T:      git git://linuxtv.org/media_tree.git
2923 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2924 F:      drivers/media/i2c/ak7375.c
2925
2926 ASAHI KASEI AK8974 DRIVER
2927 M:      Linus Walleij <linus.walleij@linaro.org>
2928 L:      linux-iio@vger.kernel.org
2929 S:      Supported
2930 W:      http://www.akm.com/
2931 F:      drivers/iio/magnetometer/ak8974.c
2932
2933 ASC7621 HARDWARE MONITOR DRIVER
2934 M:      George Joseph <george.joseph@fairview5.com>
2935 L:      linux-hwmon@vger.kernel.org
2936 S:      Maintained
2937 F:      Documentation/hwmon/asc7621.rst
2938 F:      drivers/hwmon/asc7621.c
2939
2940 ASIX AX88796C SPI ETHERNET ADAPTER
2941 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2942 S:      Maintained
2943 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
2944 F:      drivers/net/ethernet/asix/ax88796c_*
2945
2946 ASPEED PINCTRL DRIVERS
2947 M:      Andrew Jeffery <andrew@aj.id.au>
2948 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2949 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2950 L:      linux-gpio@vger.kernel.org
2951 S:      Maintained
2952 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2953 F:      drivers/pinctrl/aspeed/
2954
2955 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2956 M:      Eddie James <eajames@linux.ibm.com>
2957 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2958 S:      Maintained
2959 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2960 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2961 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2962
2963 ASPEED SD/MMC DRIVER
2964 M:      Andrew Jeffery <andrew@aj.id.au>
2965 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2966 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2967 L:      linux-mmc@vger.kernel.org
2968 S:      Maintained
2969 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2970 F:      drivers/mmc/host/sdhci-of-aspeed*
2971
2972 ASPEED VIDEO ENGINE DRIVER
2973 M:      Eddie James <eajames@linux.ibm.com>
2974 L:      linux-media@vger.kernel.org
2975 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2976 S:      Maintained
2977 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2978 F:      drivers/media/platform/aspeed-video.c
2979
2980 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2981 M:      Corentin Chary <corentin.chary@gmail.com>
2982 L:      acpi4asus-user@lists.sourceforge.net
2983 L:      platform-driver-x86@vger.kernel.org
2984 S:      Maintained
2985 W:      http://acpi4asus.sf.net
2986 F:      drivers/platform/x86/asus*.c
2987 F:      drivers/platform/x86/eeepc*.c
2988
2989 ASUS WIRELESS RADIO CONTROL DRIVER
2990 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2991 L:      platform-driver-x86@vger.kernel.org
2992 S:      Maintained
2993 F:      drivers/platform/x86/asus-wireless.c
2994
2995 ASYMMETRIC KEYS
2996 M:      David Howells <dhowells@redhat.com>
2997 L:      keyrings@vger.kernel.org
2998 S:      Maintained
2999 F:      Documentation/crypto/asymmetric-keys.rst
3000 F:      crypto/asymmetric_keys/
3001 F:      include/crypto/pkcs7.h
3002 F:      include/crypto/public_key.h
3003 F:      include/linux/verification.h
3004
3005 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3006 R:      Dan Williams <dan.j.williams@intel.com>
3007 S:      Odd fixes
3008 W:      http://sourceforge.net/projects/xscaleiop
3009 F:      Documentation/crypto/async-tx-api.rst
3010 F:      crypto/async_tx/
3011 F:      include/linux/async_tx.h
3012
3013 AT24 EEPROM DRIVER
3014 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3015 L:      linux-i2c@vger.kernel.org
3016 S:      Maintained
3017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3018 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3019 F:      drivers/misc/eeprom/at24.c
3020
3021 ATA OVER ETHERNET (AOE) DRIVER
3022 M:      "Justin Sanders" <justin@coraid.com>
3023 S:      Supported
3024 W:      http://www.openaoe.org/
3025 F:      Documentation/admin-guide/aoe/
3026 F:      drivers/block/aoe/
3027
3028 ATC260X PMIC MFD DRIVER
3029 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3030 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3031 L:      linux-actions@lists.infradead.org
3032 S:      Maintained
3033 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3034 F:      drivers/input/misc/atc260x-onkey.c
3035 F:      drivers/mfd/atc260*
3036 F:      drivers/power/reset/atc260x-poweroff.c
3037 F:      drivers/regulator/atc260x-regulator.c
3038 F:      include/linux/mfd/atc260x/*
3039
3040 ATHEROS 71XX/9XXX GPIO DRIVER
3041 M:      Alban Bedel <albeu@free.fr>
3042 S:      Maintained
3043 W:      https://github.com/AlbanBedel/linux
3044 T:      git git://github.com/AlbanBedel/linux
3045 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3046 F:      drivers/gpio/gpio-ath79.c
3047
3048 ATHEROS 71XX/9XXX USB PHY DRIVER
3049 M:      Alban Bedel <albeu@free.fr>
3050 S:      Maintained
3051 W:      https://github.com/AlbanBedel/linux
3052 T:      git git://github.com/AlbanBedel/linux
3053 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3054 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3055
3056 ATHEROS ATH GENERIC UTILITIES
3057 M:      Kalle Valo <kvalo@codeaurora.org>
3058 L:      linux-wireless@vger.kernel.org
3059 S:      Supported
3060 F:      drivers/net/wireless/ath/*
3061
3062 ATHEROS ATH5K WIRELESS DRIVER
3063 M:      Jiri Slaby <jirislaby@kernel.org>
3064 M:      Nick Kossifidis <mickflemm@gmail.com>
3065 M:      Luis Chamberlain <mcgrof@kernel.org>
3066 L:      linux-wireless@vger.kernel.org
3067 S:      Maintained
3068 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3069 F:      drivers/net/wireless/ath/ath5k/
3070
3071 ATHEROS ATH6KL WIRELESS DRIVER
3072 M:      Kalle Valo <kvalo@codeaurora.org>
3073 L:      linux-wireless@vger.kernel.org
3074 S:      Supported
3075 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
3077 F:      drivers/net/wireless/ath/ath6kl/
3078
3079 ATI_REMOTE2 DRIVER
3080 M:      Ville Syrjala <syrjala@sci.fi>
3081 S:      Maintained
3082 F:      drivers/input/misc/ati_remote2.c
3083
3084 ATK0110 HWMON DRIVER
3085 M:      Luca Tettamanti <kronos.it@gmail.com>
3086 L:      linux-hwmon@vger.kernel.org
3087 S:      Maintained
3088 F:      drivers/hwmon/asus_atk0110.c
3089
3090 ATLX ETHERNET DRIVERS
3091 M:      Chris Snook <chris.snook@gmail.com>
3092 L:      netdev@vger.kernel.org
3093 S:      Maintained
3094 W:      http://sourceforge.net/projects/atl1
3095 W:      http://atl1.sourceforge.net
3096 F:      drivers/net/ethernet/atheros/
3097
3098 ATM
3099 M:      Chas Williams <3chas3@gmail.com>
3100 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3101 L:      netdev@vger.kernel.org
3102 S:      Maintained
3103 W:      http://linux-atm.sourceforge.net
3104 F:      drivers/atm/
3105 F:      include/linux/atm*
3106 F:      include/uapi/linux/atm*
3107
3108 ATMEL MACB ETHERNET DRIVER
3109 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3110 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3111 S:      Supported
3112 F:      drivers/net/ethernet/cadence/
3113
3114 ATMEL MAXTOUCH DRIVER
3115 M:      Nick Dyer <nick@shmanahar.org>
3116 S:      Maintained
3117 T:      git git://github.com/ndyer/linux.git
3118 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3119 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3120
3121 ATMEL WIRELESS DRIVER
3122 M:      Simon Kelley <simon@thekelleys.org.uk>
3123 L:      linux-wireless@vger.kernel.org
3124 S:      Maintained
3125 W:      http://www.thekelleys.org.uk/atmel
3126 W:      http://atmelwlandriver.sourceforge.net/
3127 F:      drivers/net/wireless/atmel/atmel*
3128
3129 ATOMIC INFRASTRUCTURE
3130 M:      Will Deacon <will@kernel.org>
3131 M:      Peter Zijlstra <peterz@infradead.org>
3132 R:      Boqun Feng <boqun.feng@gmail.com>
3133 L:      linux-kernel@vger.kernel.org
3134 S:      Maintained
3135 F:      arch/*/include/asm/atomic*.h
3136 F:      include/*/atomic*.h
3137 F:      include/linux/refcount.h
3138 F:      Documentation/atomic_*.txt
3139 F:      scripts/atomic/
3140
3141 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3142 M:      Bradley Grove <linuxdrivers@attotech.com>
3143 L:      linux-scsi@vger.kernel.org
3144 S:      Supported
3145 W:      http://www.attotech.com
3146 F:      drivers/scsi/esas2r
3147
3148 ATUSB IEEE 802.15.4 RADIO DRIVER
3149 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3150 L:      linux-wpan@vger.kernel.org
3151 S:      Maintained
3152 F:      drivers/net/ieee802154/at86rf230.h
3153 F:      drivers/net/ieee802154/atusb.c
3154 F:      drivers/net/ieee802154/atusb.h
3155
3156 AUDIT SUBSYSTEM
3157 M:      Paul Moore <paul@paul-moore.com>
3158 M:      Eric Paris <eparis@redhat.com>
3159 L:      linux-audit@redhat.com (moderated for non-subscribers)
3160 S:      Supported
3161 W:      https://github.com/linux-audit
3162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3163 F:      include/asm-generic/audit_*.h
3164 F:      include/linux/audit.h
3165 F:      include/linux/audit_arch.h
3166 F:      include/uapi/linux/audit.h
3167 F:      kernel/audit*
3168 F:      lib/*audit.c
3169
3170 AUXILIARY DISPLAY DRIVERS
3171 M:      Miguel Ojeda <ojeda@kernel.org>
3172 S:      Maintained
3173 F:      drivers/auxdisplay/
3174 F:      include/linux/cfag12864b.h
3175
3176 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3177 M:      Andreas Klinger <ak@it-klinger.de>
3178 L:      linux-iio@vger.kernel.org
3179 S:      Maintained
3180 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3181 F:      drivers/iio/adc/hx711.c
3182
3183 AX.25 NETWORK LAYER
3184 M:      Ralf Baechle <ralf@linux-mips.org>
3185 L:      linux-hams@vger.kernel.org
3186 S:      Maintained
3187 W:      http://www.linux-ax25.org/
3188 F:      include/net/ax25.h
3189 F:      include/uapi/linux/ax25.h
3190 F:      net/ax25/
3191
3192 AXENTIA ARM DEVICES
3193 M:      Peter Rosin <peda@axentia.se>
3194 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3195 S:      Maintained
3196 F:      arch/arm/boot/dts/at91-linea.dtsi
3197 F:      arch/arm/boot/dts/at91-natte.dtsi
3198 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3199 F:      arch/arm/boot/dts/at91-tse850-3.dts
3200
3201 AXENTIA ASOC DRIVERS
3202 M:      Peter Rosin <peda@axentia.se>
3203 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3204 S:      Maintained
3205 F:      Documentation/devicetree/bindings/sound/axentia,*
3206 F:      sound/soc/atmel/tse850-pcm5142.c
3207
3208 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3209 M:      Nuno Sá <nuno.sa@analog.com>
3210 L:      linux-hwmon@vger.kernel.org
3211 S:      Supported
3212 W:      http://ez.analog.com/community/linux-device-drivers
3213 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3214 F:      drivers/hwmon/axi-fan-control.c
3215
3216 AXXIA I2C CONTROLLER
3217 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3218 L:      linux-i2c@vger.kernel.org
3219 S:      Maintained
3220 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3221 F:      drivers/i2c/busses/i2c-axxia.c
3222
3223 AZ6007 DVB DRIVER
3224 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3225 L:      linux-media@vger.kernel.org
3226 S:      Maintained
3227 W:      https://linuxtv.org
3228 T:      git git://linuxtv.org/media_tree.git
3229 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3230
3231 AZTECH FM RADIO RECEIVER DRIVER
3232 M:      Hans Verkuil <hverkuil@xs4all.nl>
3233 L:      linux-media@vger.kernel.org
3234 S:      Maintained
3235 W:      https://linuxtv.org
3236 T:      git git://linuxtv.org/media_tree.git
3237 F:      drivers/media/radio/radio-aztech*
3238
3239 B43 WIRELESS DRIVER
3240 L:      linux-wireless@vger.kernel.org
3241 L:      b43-dev@lists.infradead.org
3242 S:      Odd Fixes
3243 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3244 F:      drivers/net/wireless/broadcom/b43/
3245
3246 B43LEGACY WIRELESS DRIVER
3247 M:      Larry Finger <Larry.Finger@lwfinger.net>
3248 L:      linux-wireless@vger.kernel.org
3249 L:      b43-dev@lists.infradead.org
3250 S:      Maintained
3251 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3252 F:      drivers/net/wireless/broadcom/b43legacy/
3253
3254 BACKLIGHT CLASS/SUBSYSTEM
3255 M:      Lee Jones <lee.jones@linaro.org>
3256 M:      Daniel Thompson <daniel.thompson@linaro.org>
3257 M:      Jingoo Han <jingoohan1@gmail.com>
3258 L:      dri-devel@lists.freedesktop.org
3259 S:      Maintained
3260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3261 F:      Documentation/ABI/stable/sysfs-class-backlight
3262 F:      Documentation/ABI/testing/sysfs-class-backlight
3263 F:      Documentation/devicetree/bindings/leds/backlight
3264 F:      drivers/video/backlight/
3265 F:      include/linux/backlight.h
3266 F:      include/linux/pwm_backlight.h
3267
3268 BARCO P50 GPIO DRIVER
3269 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3270 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3271 S:      Maintained
3272 F:      drivers/platform/x86/barco-p50-gpio.c
3273
3274 BATMAN ADVANCED
3275 M:      Marek Lindner <mareklindner@neomailbox.ch>
3276 M:      Simon Wunderlich <sw@simonwunderlich.de>
3277 M:      Antonio Quartulli <a@unstable.cc>
3278 M:      Sven Eckelmann <sven@narfation.org>
3279 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3280 S:      Maintained
3281 W:      https://www.open-mesh.org/
3282 Q:      https://patchwork.open-mesh.org/project/batman/list/
3283 B:      https://www.open-mesh.org/projects/batman-adv/issues
3284 C:      ircs://irc.hackint.org/batadv
3285 T:      git https://git.open-mesh.org/linux-merge.git
3286 F:      Documentation/networking/batman-adv.rst
3287 F:      include/uapi/linux/batadv_packet.h
3288 F:      include/uapi/linux/batman_adv.h
3289 F:      net/batman-adv/
3290
3291 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3292 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3293 L:      linux-hams@vger.kernel.org
3294 S:      Maintained
3295 W:      http://www.baycom.org/~tom/ham/ham.html
3296 F:      drivers/net/hamradio/baycom*
3297
3298 BCACHE (BLOCK LAYER CACHE)
3299 M:      Coly Li <colyli@suse.de>
3300 M:      Kent Overstreet <kent.overstreet@gmail.com>
3301 L:      linux-bcache@vger.kernel.org
3302 S:      Maintained
3303 W:      http://bcache.evilpiepirate.org
3304 C:      irc://irc.oftc.net/bcache
3305 F:      drivers/md/bcache/
3306
3307 BDISP ST MEDIA DRIVER
3308 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3309 L:      linux-media@vger.kernel.org
3310 S:      Supported
3311 W:      https://linuxtv.org
3312 T:      git git://linuxtv.org/media_tree.git
3313 F:      drivers/media/platform/sti/bdisp
3314
3315 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3316 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3317 L:      netdev@vger.kernel.org
3318 S:      Maintained
3319 F:      drivers/net/ethernet/ec_bhf.c
3320
3321 BEFS FILE SYSTEM
3322 M:      Luis de Bethencourt <luisbg@kernel.org>
3323 M:      Salah Triki <salah.triki@gmail.com>
3324 S:      Maintained
3325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3326 F:      Documentation/filesystems/befs.rst
3327 F:      fs/befs/
3328
3329 BFQ I/O SCHEDULER
3330 M:      Paolo Valente <paolo.valente@linaro.org>
3331 M:      Jens Axboe <axboe@kernel.dk>
3332 L:      linux-block@vger.kernel.org
3333 S:      Maintained
3334 F:      Documentation/block/bfq-iosched.rst
3335 F:      block/bfq-*
3336
3337 BFS FILE SYSTEM
3338 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3339 S:      Maintained
3340 F:      Documentation/filesystems/bfs.rst
3341 F:      fs/bfs/
3342 F:      include/uapi/linux/bfs_fs.h
3343
3344 BITMAP API
3345 M:      Yury Norov <yury.norov@gmail.com>
3346 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3347 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3348 S:      Maintained
3349 F:      include/asm-generic/bitops/find.h
3350 F:      include/linux/bitmap.h
3351 F:      lib/bitmap.c
3352 F:      lib/find_bit.c
3353 F:      lib/find_bit_benchmark.c
3354 F:      lib/test_bitmap.c
3355 F:      tools/include/asm-generic/bitops/find.h
3356 F:      tools/include/linux/bitmap.h
3357 F:      tools/lib/bitmap.c
3358 F:      tools/lib/find_bit.c
3359
3360 BLINKM RGB LED DRIVER
3361 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3362 S:      Maintained
3363 F:      drivers/leds/leds-blinkm.c
3364
3365 BLOCK LAYER
3366 M:      Jens Axboe <axboe@kernel.dk>
3367 L:      linux-block@vger.kernel.org
3368 S:      Maintained
3369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3370 F:      block/
3371 F:      drivers/block/
3372 F:      include/linux/blk*
3373 F:      kernel/trace/blktrace.c
3374 F:      lib/sbitmap.c
3375
3376 BLOCK2MTD DRIVER
3377 M:      Joern Engel <joern@lazybastard.org>
3378 L:      linux-mtd@lists.infradead.org
3379 S:      Maintained
3380 F:      drivers/mtd/devices/block2mtd.c
3381
3382 BLUETOOTH DRIVERS
3383 M:      Marcel Holtmann <marcel@holtmann.org>
3384 M:      Johan Hedberg <johan.hedberg@gmail.com>
3385 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3386 L:      linux-bluetooth@vger.kernel.org
3387 S:      Supported
3388 W:      http://www.bluez.org/
3389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3391 F:      drivers/bluetooth/
3392
3393 BLUETOOTH SUBSYSTEM
3394 M:      Marcel Holtmann <marcel@holtmann.org>
3395 M:      Johan Hedberg <johan.hedberg@gmail.com>
3396 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3397 L:      linux-bluetooth@vger.kernel.org
3398 S:      Supported
3399 W:      http://www.bluez.org/
3400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3402 F:      include/net/bluetooth/
3403 F:      net/bluetooth/
3404
3405 BONDING DRIVER
3406 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3407 M:      Veaceslav Falico <vfalico@gmail.com>
3408 M:      Andy Gospodarek <andy@greyhouse.net>
3409 L:      netdev@vger.kernel.org
3410 S:      Supported
3411 W:      http://sourceforge.net/projects/bonding/
3412 F:      drivers/net/bonding/
3413 F:      include/net/bonding.h
3414 F:      include/uapi/linux/if_bonding.h
3415
3416 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3417 M:      Dan Robertson <dan@dlrobertson.com>
3418 L:      linux-iio@vger.kernel.org
3419 S:      Maintained
3420 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3421 F:      drivers/iio/accel/bma400*
3422
3423 BPF (Safe dynamic programs and tools)
3424 M:      Alexei Starovoitov <ast@kernel.org>
3425 M:      Daniel Borkmann <daniel@iogearbox.net>
3426 M:      Andrii Nakryiko <andrii@kernel.org>
3427 R:      Martin KaFai Lau <kafai@fb.com>
3428 R:      Song Liu <songliubraving@fb.com>
3429 R:      Yonghong Song <yhs@fb.com>
3430 R:      John Fastabend <john.fastabend@gmail.com>
3431 R:      KP Singh <kpsingh@kernel.org>
3432 L:      netdev@vger.kernel.org
3433 L:      bpf@vger.kernel.org
3434 S:      Supported
3435 W:      https://bpf.io/
3436 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3439 F:      Documentation/bpf/
3440 F:      Documentation/networking/filter.rst
3441 F:      Documentation/userspace-api/ebpf/
3442 F:      arch/*/net/*
3443 F:      include/linux/bpf*
3444 F:      include/linux/btf*
3445 F:      include/linux/filter.h
3446 F:      include/trace/events/xdp.h
3447 F:      include/uapi/linux/bpf*
3448 F:      include/uapi/linux/btf*
3449 F:      include/uapi/linux/filter.h
3450 F:      kernel/bpf/
3451 F:      kernel/trace/bpf_trace.c
3452 F:      lib/test_bpf.c
3453 F:      net/bpf/
3454 F:      net/core/filter.c
3455 F:      net/sched/act_bpf.c
3456 F:      net/sched/cls_bpf.c
3457 F:      samples/bpf/
3458 F:      scripts/bpf_doc.py
3459 F:      tools/bpf/
3460 F:      tools/lib/bpf/
3461 F:      tools/testing/selftests/bpf/
3462 N:      bpf
3463 K:      bpf
3464
3465 BPF JIT for ARM
3466 M:      Shubham Bansal <illusionist.neo@gmail.com>
3467 L:      netdev@vger.kernel.org
3468 L:      bpf@vger.kernel.org
3469 S:      Maintained
3470 F:      arch/arm/net/
3471
3472 BPF JIT for ARM64
3473 M:      Daniel Borkmann <daniel@iogearbox.net>
3474 M:      Alexei Starovoitov <ast@kernel.org>
3475 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3476 L:      netdev@vger.kernel.org
3477 L:      bpf@vger.kernel.org
3478 S:      Supported
3479 F:      arch/arm64/net/
3480
3481 BPF JIT for MIPS (32-BIT AND 64-BIT)
3482 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3483 M:      Paul Burton <paulburton@kernel.org>
3484 L:      netdev@vger.kernel.org
3485 L:      bpf@vger.kernel.org
3486 S:      Maintained
3487 F:      arch/mips/net/
3488
3489 BPF JIT for NFP NICs
3490 M:      Jakub Kicinski <kuba@kernel.org>
3491 L:      netdev@vger.kernel.org
3492 L:      bpf@vger.kernel.org
3493 S:      Supported
3494 F:      drivers/net/ethernet/netronome/nfp/bpf/
3495
3496 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3497 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3498 L:      netdev@vger.kernel.org
3499 L:      bpf@vger.kernel.org
3500 S:      Maintained
3501 F:      arch/powerpc/net/
3502
3503 BPF JIT for RISC-V (32-bit)
3504 M:      Luke Nelson <luke.r.nels@gmail.com>
3505 M:      Xi Wang <xi.wang@gmail.com>
3506 L:      netdev@vger.kernel.org
3507 L:      bpf@vger.kernel.org
3508 S:      Maintained
3509 F:      arch/riscv/net/
3510 X:      arch/riscv/net/bpf_jit_comp64.c
3511
3512 BPF JIT for RISC-V (64-bit)
3513 M:      Björn Töpel <bjorn@kernel.org>
3514 L:      netdev@vger.kernel.org
3515 L:      bpf@vger.kernel.org
3516 S:      Maintained
3517 F:      arch/riscv/net/
3518 X:      arch/riscv/net/bpf_jit_comp32.c
3519
3520 BPF JIT for S390
3521 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3522 M:      Heiko Carstens <hca@linux.ibm.com>
3523 M:      Vasily Gorbik <gor@linux.ibm.com>
3524 L:      netdev@vger.kernel.org
3525 L:      bpf@vger.kernel.org
3526 S:      Maintained
3527 F:      arch/s390/net/
3528 X:      arch/s390/net/pnet.c
3529
3530 BPF JIT for SPARC (32-BIT AND 64-BIT)
3531 M:      David S. Miller <davem@davemloft.net>
3532 L:      netdev@vger.kernel.org
3533 L:      bpf@vger.kernel.org
3534 S:      Maintained
3535 F:      arch/sparc/net/
3536
3537 BPF JIT for X86 32-BIT
3538 M:      Wang YanQing <udknight@gmail.com>
3539 L:      netdev@vger.kernel.org
3540 L:      bpf@vger.kernel.org
3541 S:      Maintained
3542 F:      arch/x86/net/bpf_jit_comp32.c
3543
3544 BPF JIT for X86 64-BIT
3545 M:      Alexei Starovoitov <ast@kernel.org>
3546 M:      Daniel Borkmann <daniel@iogearbox.net>
3547 L:      netdev@vger.kernel.org
3548 L:      bpf@vger.kernel.org
3549 S:      Supported
3550 F:      arch/x86/net/
3551 X:      arch/x86/net/bpf_jit_comp32.c
3552
3553 BPF LSM (Security Audit and Enforcement using BPF)
3554 M:      KP Singh <kpsingh@kernel.org>
3555 R:      Florent Revest <revest@chromium.org>
3556 R:      Brendan Jackman <jackmanb@chromium.org>
3557 L:      bpf@vger.kernel.org
3558 S:      Maintained
3559 F:      Documentation/bpf/bpf_lsm.rst
3560 F:      include/linux/bpf_lsm.h
3561 F:      kernel/bpf/bpf_lsm.c
3562 F:      security/bpf/
3563
3564 BROADCOM B44 10/100 ETHERNET DRIVER
3565 M:      Michael Chan <michael.chan@broadcom.com>
3566 L:      netdev@vger.kernel.org
3567 S:      Supported
3568 F:      drivers/net/ethernet/broadcom/b44.*
3569
3570 BROADCOM B53 ETHERNET SWITCH DRIVER
3571 M:      Florian Fainelli <f.fainelli@gmail.com>
3572 L:      netdev@vger.kernel.org
3573 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3574 S:      Supported
3575 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3576 F:      drivers/net/dsa/b53/*
3577 F:      include/linux/dsa/brcm.h
3578 F:      include/linux/platform_data/b53.h
3579
3580 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3581 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3582 L:      bcm-kernel-feedback-list@broadcom.com
3583 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3584 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3585 S:      Maintained
3586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3587 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3588 F:      drivers/pci/controller/pcie-brcmstb.c
3589 F:      drivers/staging/vc04_services
3590 N:      bcm2711
3591 N:      bcm283*
3592
3593 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3594 M:      Florian Fainelli <f.fainelli@gmail.com>
3595 M:      Ray Jui <rjui@broadcom.com>
3596 M:      Scott Branden <sbranden@broadcom.com>
3597 M:      bcm-kernel-feedback-list@broadcom.com
3598 S:      Maintained
3599 T:      git git://github.com/broadcom/mach-bcm
3600 F:      arch/arm/mach-bcm/
3601 N:      bcm281*
3602 N:      bcm113*
3603 N:      bcm216*
3604 N:      kona
3605
3606 BROADCOM BCM47XX MIPS ARCHITECTURE
3607 M:      Hauke Mehrtens <hauke@hauke-m.de>
3608 M:      Rafał Miłecki <zajec5@gmail.com>
3609 L:      linux-mips@vger.kernel.org
3610 S:      Maintained
3611 F:      Documentation/devicetree/bindings/mips/brcm/
3612 F:      arch/mips/bcm47xx/*
3613 F:      arch/mips/include/asm/mach-bcm47xx/*
3614
3615 BROADCOM BCM4908 ETHERNET DRIVER
3616 M:      Rafał Miłecki <rafal@milecki.pl>
3617 M:      bcm-kernel-feedback-list@broadcom.com
3618 L:      netdev@vger.kernel.org
3619 S:      Maintained
3620 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3621 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3622 F:      drivers/net/ethernet/broadcom/unimac.h
3623
3624 BROADCOM BCM5301X ARM ARCHITECTURE
3625 M:      Hauke Mehrtens <hauke@hauke-m.de>
3626 M:      Rafał Miłecki <zajec5@gmail.com>
3627 M:      bcm-kernel-feedback-list@broadcom.com
3628 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3629 S:      Maintained
3630 F:      arch/arm/boot/dts/bcm470*
3631 F:      arch/arm/boot/dts/bcm5301*
3632 F:      arch/arm/boot/dts/bcm953012*
3633 F:      arch/arm/mach-bcm/bcm_5301x.c
3634
3635 BROADCOM BCM53573 ARM ARCHITECTURE
3636 M:      Rafał Miłecki <rafal@milecki.pl>
3637 L:      bcm-kernel-feedback-list@broadcom.com
3638 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3639 S:      Maintained
3640 F:      arch/arm/boot/dts/bcm47189*
3641 F:      arch/arm/boot/dts/bcm53573*
3642
3643 BROADCOM BCM63XX ARM ARCHITECTURE
3644 M:      Florian Fainelli <f.fainelli@gmail.com>
3645 M:      bcm-kernel-feedback-list@broadcom.com
3646 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3647 S:      Maintained
3648 T:      git git://github.com/broadcom/stblinux.git
3649 N:      bcm63xx
3650
3651 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3652 M:      Kevin Cernekee <cernekee@gmail.com>
3653 L:      linux-usb@vger.kernel.org
3654 S:      Maintained
3655 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3656
3657 BROADCOM BCM7XXX ARM ARCHITECTURE
3658 M:      Florian Fainelli <f.fainelli@gmail.com>
3659 M:      bcm-kernel-feedback-list@broadcom.com
3660 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3661 S:      Maintained
3662 T:      git git://github.com/broadcom/stblinux.git
3663 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3664 F:      arch/arm/boot/dts/bcm7*.dts*
3665 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3666 F:      arch/arm/mach-bcm/*brcmstb*
3667 F:      arch/arm/mm/cache-b15-rac.c
3668 F:      drivers/bus/brcmstb_gisb.c
3669 F:      drivers/pci/controller/pcie-brcmstb.c
3670 N:      brcmstb
3671 N:      bcm7038
3672 N:      bcm7120
3673
3674 BROADCOM BDC DRIVER
3675 M:      Al Cooper <alcooperx@gmail.com>
3676 L:      linux-usb@vger.kernel.org
3677 L:      bcm-kernel-feedback-list@broadcom.com
3678 S:      Maintained
3679 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3680 F:      drivers/usb/gadget/udc/bdc/
3681
3682 BROADCOM BMIPS CPUFREQ DRIVER
3683 M:      Markus Mayer <mmayer@broadcom.com>
3684 M:      bcm-kernel-feedback-list@broadcom.com
3685 L:      linux-pm@vger.kernel.org
3686 S:      Maintained
3687 F:      drivers/cpufreq/bmips-cpufreq.c
3688
3689 BROADCOM BMIPS MIPS ARCHITECTURE
3690 M:      Florian Fainelli <f.fainelli@gmail.com>
3691 L:      bcm-kernel-feedback-list@broadcom.com
3692 L:      linux-mips@vger.kernel.org
3693 S:      Maintained
3694 T:      git git://github.com/broadcom/stblinux.git
3695 F:      arch/mips/bmips/*
3696 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3697 F:      arch/mips/include/asm/mach-bmips/*
3698 F:      arch/mips/kernel/*bmips*
3699 F:      drivers/soc/bcm/bcm63xx
3700 F:      drivers/irqchip/irq-bcm63*
3701 F:      drivers/irqchip/irq-bcm7*
3702 F:      drivers/irqchip/irq-brcmstb*
3703 F:      include/linux/bcm963xx_nvram.h
3704 F:      include/linux/bcm963xx_tag.h
3705
3706 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3707 M:      Rasesh Mody <rmody@marvell.com>
3708 M:      GR-Linux-NIC-Dev@marvell.com
3709 L:      netdev@vger.kernel.org
3710 S:      Supported
3711 F:      drivers/net/ethernet/broadcom/bnx2.*
3712 F:      drivers/net/ethernet/broadcom/bnx2_*
3713
3714 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3715 M:      Saurav Kashyap <skashyap@marvell.com>
3716 M:      Javed Hasan <jhasan@marvell.com>
3717 M:      GR-QLogic-Storage-Upstream@marvell.com
3718 L:      linux-scsi@vger.kernel.org
3719 S:      Supported
3720 F:      drivers/scsi/bnx2fc/
3721
3722 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3723 M:      Nilesh Javali <njavali@marvell.com>
3724 M:      Manish Rangankar <mrangankar@marvell.com>
3725 M:      GR-QLogic-Storage-Upstream@marvell.com
3726 L:      linux-scsi@vger.kernel.org
3727 S:      Supported
3728 F:      drivers/scsi/bnx2i/
3729
3730 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3731 M:      Ariel Elior <aelior@marvell.com>
3732 M:      Sudarsana Kalluru <skalluru@marvell.com>
3733 M:      GR-everest-linux-l2@marvell.com
3734 L:      netdev@vger.kernel.org
3735 S:      Supported
3736 F:      drivers/net/ethernet/broadcom/bnx2x/
3737
3738 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3739 M:      Michael Chan <michael.chan@broadcom.com>
3740 L:      netdev@vger.kernel.org
3741 S:      Supported
3742 F:      drivers/net/ethernet/broadcom/bnxt/
3743
3744 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3745 M:      Arend van Spriel <aspriel@gmail.com>
3746 M:      Franky Lin <franky.lin@broadcom.com>
3747 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3748 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3749 M:      Wright Feng <wright.feng@infineon.com>
3750 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3751 L:      linux-wireless@vger.kernel.org
3752 L:      brcm80211-dev-list.pdl@broadcom.com
3753 L:      SHA-cyfmac-dev-list@infineon.com
3754 S:      Supported
3755 F:      drivers/net/wireless/broadcom/brcm80211/
3756
3757 BROADCOM BRCMSTB GPIO DRIVER
3758 M:      Gregory Fong <gregory.0xf0@gmail.com>
3759 L:      bcm-kernel-feedback-list@broadcom.com
3760 S:      Supported
3761 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3762 F:      drivers/gpio/gpio-brcmstb.c
3763
3764 BROADCOM BRCMSTB I2C DRIVER
3765 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3766 L:      linux-i2c@vger.kernel.org
3767 L:      bcm-kernel-feedback-list@broadcom.com
3768 S:      Supported
3769 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3770 F:      drivers/i2c/busses/i2c-brcmstb.c
3771
3772 BROADCOM BRCMSTB UART DRIVER
3773 M:      Al Cooper <alcooperx@gmail.com>
3774 L:      linux-serial@vger.kernel.org
3775 L:      bcm-kernel-feedback-list@broadcom.com
3776 S:      Maintained
3777 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3778 F:      drivers/tty/serial/8250/8250_bcm7271.c
3779
3780 BROADCOM BRCMSTB USB EHCI DRIVER
3781 M:      Al Cooper <alcooperx@gmail.com>
3782 L:      linux-usb@vger.kernel.org
3783 L:      bcm-kernel-feedback-list@broadcom.com
3784 S:      Maintained
3785 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3786 F:      drivers/usb/host/ehci-brcm.*
3787
3788 BROADCOM BRCMSTB USB PIN MAP DRIVER
3789 M:      Al Cooper <alcooperx@gmail.com>
3790 L:      linux-usb@vger.kernel.org
3791 L:      bcm-kernel-feedback-list@broadcom.com
3792 S:      Maintained
3793 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3794 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3795
3796 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3797 M:      Al Cooper <alcooperx@gmail.com>
3798 L:      linux-kernel@vger.kernel.org
3799 L:      bcm-kernel-feedback-list@broadcom.com
3800 S:      Maintained
3801 F:      drivers/phy/broadcom/phy-brcm-usb*
3802
3803 BROADCOM ETHERNET PHY DRIVERS
3804 M:      Florian Fainelli <f.fainelli@gmail.com>
3805 L:      bcm-kernel-feedback-list@broadcom.com
3806 L:      netdev@vger.kernel.org
3807 S:      Supported
3808 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3809 F:      drivers/net/phy/bcm*.[ch]
3810 F:      drivers/net/phy/broadcom.c
3811 F:      include/linux/brcmphy.h
3812
3813 BROADCOM GENET ETHERNET DRIVER
3814 M:      Doug Berger <opendmb@gmail.com>
3815 M:      Florian Fainelli <f.fainelli@gmail.com>
3816 L:      bcm-kernel-feedback-list@broadcom.com
3817 L:      netdev@vger.kernel.org
3818 S:      Supported
3819 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3820 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
3821 F:      drivers/net/ethernet/broadcom/genet/
3822 F:      drivers/net/ethernet/broadcom/unimac.h
3823 F:      drivers/net/mdio/mdio-bcm-unimac.c
3824 F:      include/linux/platform_data/bcmgenet.h
3825 F:      include/linux/platform_data/mdio-bcm-unimac.h
3826
3827 BROADCOM IPROC ARM ARCHITECTURE
3828 M:      Ray Jui <rjui@broadcom.com>
3829 M:      Scott Branden <sbranden@broadcom.com>
3830 M:      bcm-kernel-feedback-list@broadcom.com
3831 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3832 S:      Maintained
3833 T:      git git://github.com/broadcom/cygnus-linux.git
3834 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3835 F:      arch/arm64/boot/dts/broadcom/stingray/*
3836 F:      drivers/clk/bcm/clk-ns*
3837 F:      drivers/clk/bcm/clk-sr*
3838 F:      drivers/pinctrl/bcm/pinctrl-ns*
3839 F:      include/dt-bindings/clock/bcm-sr*
3840 N:      iproc
3841 N:      cygnus
3842 N:      bcm[-_]nsp
3843 N:      bcm9113*
3844 N:      bcm9583*
3845 N:      bcm9585*
3846 N:      bcm9586*
3847 N:      bcm988312
3848 N:      bcm113*
3849 N:      bcm583*
3850 N:      bcm585*
3851 N:      bcm586*
3852 N:      bcm88312
3853 N:      hr2
3854 N:      stingray
3855
3856 BROADCOM IPROC GBIT ETHERNET DRIVER
3857 M:      Rafał Miłecki <rafal@milecki.pl>
3858 M:      bcm-kernel-feedback-list@broadcom.com
3859 L:      netdev@vger.kernel.org
3860 S:      Maintained
3861 F:      Documentation/devicetree/bindings/net/brcm,amac.txt
3862 F:      drivers/net/ethernet/broadcom/bgmac*
3863 F:      drivers/net/ethernet/broadcom/unimac.h
3864
3865 BROADCOM KONA GPIO DRIVER
3866 M:      Ray Jui <rjui@broadcom.com>
3867 L:      bcm-kernel-feedback-list@broadcom.com
3868 S:      Supported
3869 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3870 F:      drivers/gpio/gpio-bcm-kona.c
3871
3872 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
3873 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
3874 M:      Kashyap Desai <kashyap.desai@broadcom.com>
3875 M:      Sumit Saxena <sumit.saxena@broadcom.com>
3876 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
3877 L:      mpi3mr-linuxdrv.pdl@broadcom.com
3878 L:      linux-scsi@vger.kernel.org
3879 S:      Supported
3880 W:      https://www.broadcom.com/support/storage
3881 F:      drivers/scsi/mpi3mr/
3882
3883 BROADCOM NETXTREME-E ROCE DRIVER
3884 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3885 L:      linux-rdma@vger.kernel.org
3886 S:      Supported
3887 W:      http://www.broadcom.com
3888 F:      drivers/infiniband/hw/bnxt_re/
3889 F:      include/uapi/rdma/bnxt_re-abi.h
3890
3891 BROADCOM NVRAM DRIVER
3892 M:      Rafał Miłecki <zajec5@gmail.com>
3893 L:      linux-mips@vger.kernel.org
3894 S:      Maintained
3895 F:      drivers/firmware/broadcom/*
3896
3897 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3898 M:      Rafał Miłecki <rafal@milecki.pl>
3899 M:      Florian Fainelli <f.fainelli@gmail.com>
3900 M:      bcm-kernel-feedback-list@broadcom.com
3901 L:      linux-pm@vger.kernel.org
3902 S:      Maintained
3903 T:      git git://github.com/broadcom/stblinux.git
3904 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
3905 F:      include/dt-bindings/soc/bcm-pmb.h
3906
3907 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3908 M:      Rafał Miłecki <zajec5@gmail.com>
3909 L:      linux-wireless@vger.kernel.org
3910 S:      Maintained
3911 F:      drivers/bcma/
3912 F:      include/linux/bcma/
3913
3914 BROADCOM SPI DRIVER
3915 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3916 M:      bcm-kernel-feedback-list@broadcom.com
3917 S:      Maintained
3918 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3919 F:      drivers/spi/spi-bcm-qspi.*
3920 F:      drivers/spi/spi-brcmstb-qspi.c
3921 F:      drivers/spi/spi-iproc-qspi.c
3922
3923 BROADCOM STB AVS CPUFREQ DRIVER
3924 M:      Markus Mayer <mmayer@broadcom.com>
3925 M:      bcm-kernel-feedback-list@broadcom.com
3926 L:      linux-pm@vger.kernel.org
3927 S:      Maintained
3928 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3929 F:      drivers/cpufreq/brcmstb*
3930
3931 BROADCOM STB AVS TMON DRIVER
3932 M:      Markus Mayer <mmayer@broadcom.com>
3933 M:      bcm-kernel-feedback-list@broadcom.com
3934 L:      linux-pm@vger.kernel.org
3935 S:      Maintained
3936 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3937 F:      drivers/thermal/broadcom/brcmstb*
3938
3939 BROADCOM STB DPFE DRIVER
3940 M:      Markus Mayer <mmayer@broadcom.com>
3941 M:      bcm-kernel-feedback-list@broadcom.com
3942 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3943 S:      Maintained
3944 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
3945 F:      drivers/memory/brcmstb_dpfe.c
3946
3947 BROADCOM STB NAND FLASH DRIVER
3948 M:      Brian Norris <computersforpeace@gmail.com>
3949 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3950 L:      linux-mtd@lists.infradead.org
3951 L:      bcm-kernel-feedback-list@broadcom.com
3952 S:      Maintained
3953 F:      drivers/mtd/nand/raw/brcmnand/
3954
3955 BROADCOM STB PCIE DRIVER
3956 M:      Jim Quinlan <jim2101024@gmail.com>
3957 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3958 M:      Florian Fainelli <f.fainelli@gmail.com>
3959 M:      bcm-kernel-feedback-list@broadcom.com
3960 L:      linux-pci@vger.kernel.org
3961 S:      Maintained
3962 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3963 F:      drivers/pci/controller/pcie-brcmstb.c
3964
3965 BROADCOM SYSTEMPORT ETHERNET DRIVER
3966 M:      Florian Fainelli <f.fainelli@gmail.com>
3967 L:      bcm-kernel-feedback-list@broadcom.com
3968 L:      netdev@vger.kernel.org
3969 S:      Supported
3970 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3971 F:      drivers/net/ethernet/broadcom/unimac.h
3972
3973 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3974 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3975 M:      Prashant Sreedharan <prashant@broadcom.com>
3976 M:      Michael Chan <mchan@broadcom.com>
3977 L:      netdev@vger.kernel.org
3978 S:      Supported
3979 F:      drivers/net/ethernet/broadcom/tg3.*
3980
3981 BROADCOM VK DRIVER
3982 M:      Scott Branden <scott.branden@broadcom.com>
3983 L:      bcm-kernel-feedback-list@broadcom.com
3984 S:      Supported
3985 F:      drivers/misc/bcm-vk/
3986 F:      include/uapi/linux/misc/bcm_vk.h
3987
3988 BROCADE BFA FC SCSI DRIVER
3989 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3990 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3991 L:      linux-scsi@vger.kernel.org
3992 S:      Supported
3993 F:      drivers/scsi/bfa/
3994
3995 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3996 M:      Rasesh Mody <rmody@marvell.com>
3997 M:      Sudarsana Kalluru <skalluru@marvell.com>
3998 M:      GR-Linux-NIC-Dev@marvell.com
3999 L:      netdev@vger.kernel.org
4000 S:      Supported
4001 F:      drivers/net/ethernet/brocade/bna/
4002
4003 BSG (block layer generic sg v4 driver)
4004 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4005 L:      linux-scsi@vger.kernel.org
4006 S:      Supported
4007 F:      block/bsg.c
4008 F:      include/linux/bsg.h
4009 F:      include/uapi/linux/bsg.h
4010
4011 BT87X AUDIO DRIVER
4012 M:      Clemens Ladisch <clemens@ladisch.de>
4013 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4014 S:      Maintained
4015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4016 F:      Documentation/sound/cards/bt87x.rst
4017 F:      sound/pci/bt87x.c
4018
4019 BT8XXGPIO DRIVER
4020 M:      Michael Buesch <m@bues.ch>
4021 S:      Maintained
4022 W:      http://bu3sch.de/btgpio.php
4023 F:      drivers/gpio/gpio-bt8xx.c
4024
4025 BTRFS FILE SYSTEM
4026 M:      Chris Mason <clm@fb.com>
4027 M:      Josef Bacik <josef@toxicpanda.com>
4028 M:      David Sterba <dsterba@suse.com>
4029 L:      linux-btrfs@vger.kernel.org
4030 S:      Maintained
4031 W:      http://btrfs.wiki.kernel.org/
4032 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4033 C:      irc://irc.libera.chat/btrfs
4034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4035 F:      Documentation/filesystems/btrfs.rst
4036 F:      fs/btrfs/
4037 F:      include/linux/btrfs*
4038 F:      include/uapi/linux/btrfs*
4039
4040 BTTV VIDEO4LINUX DRIVER
4041 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4042 L:      linux-media@vger.kernel.org
4043 S:      Odd fixes
4044 W:      https://linuxtv.org
4045 T:      git git://linuxtv.org/media_tree.git
4046 F:      Documentation/driver-api/media/drivers/bttv*
4047 F:      drivers/media/pci/bt8xx/bttv*
4048
4049 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4050 M:      Chanwoo Choi <cw00.choi@samsung.com>
4051 L:      linux-pm@vger.kernel.org
4052 L:      linux-samsung-soc@vger.kernel.org
4053 S:      Maintained
4054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4055 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4056 F:      drivers/devfreq/exynos-bus.c
4057
4058 BUSLOGIC SCSI DRIVER
4059 M:      Khalid Aziz <khalid@gonehiking.org>
4060 L:      linux-scsi@vger.kernel.org
4061 S:      Maintained
4062 F:      drivers/scsi/BusLogic.*
4063 F:      drivers/scsi/FlashPoint.*
4064
4065 C-MEDIA CMI8788 DRIVER
4066 M:      Clemens Ladisch <clemens@ladisch.de>
4067 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4068 S:      Maintained
4069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4070 F:      sound/pci/oxygen/
4071
4072 C-SKY ARCHITECTURE
4073 M:      Guo Ren <guoren@kernel.org>
4074 L:      linux-csky@vger.kernel.org
4075 S:      Supported
4076 T:      git https://github.com/c-sky/csky-linux.git
4077 F:      Documentation/devicetree/bindings/csky/
4078 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4079 F:      Documentation/devicetree/bindings/timer/csky,*
4080 F:      arch/csky/
4081 F:      drivers/clocksource/timer-gx6605s.c
4082 F:      drivers/clocksource/timer-mp-csky.c
4083 F:      drivers/irqchip/irq-csky-*
4084 N:      csky
4085 K:      csky
4086
4087 CA8210 IEEE-802.15.4 RADIO DRIVER
4088 M:      Harry Morris <h.morris@cascoda.com>
4089 L:      linux-wpan@vger.kernel.org
4090 S:      Maintained
4091 W:      https://github.com/Cascoda/ca8210-linux.git
4092 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4093 F:      drivers/net/ieee802154/ca8210.c
4094
4095 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4096 M:      Damien Le Moal <damien.lemoal@wdc.com>
4097 L:      linux-riscv@lists.infradead.org
4098 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4099 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4100 F:      drivers/pinctrl/pinctrl-k210.c
4101
4102 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4103 M:      Damien Le Moal <damien.lemoal@wdc.com>
4104 L:      linux-kernel@vger.kernel.org
4105 L:      linux-riscv@lists.infradead.org
4106 S:      Maintained
4107 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4108 F:      drivers/reset/reset-k210.c
4109
4110 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4111 M:      Damien Le Moal <damien.lemoal@wdc.com>
4112 L:      linux-riscv@lists.infradead.org
4113 S:      Maintained
4114 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4115 F:      drivers/soc/canaan/
4116 F:      include/soc/canaan/
4117
4118 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4119 M:      David Howells <dhowells@redhat.com>
4120 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4121 S:      Supported
4122 F:      Documentation/filesystems/caching/cachefiles.rst
4123 F:      fs/cachefiles/
4124
4125 CADENCE MIPI-CSI2 BRIDGES
4126 M:      Maxime Ripard <mripard@kernel.org>
4127 L:      linux-media@vger.kernel.org
4128 S:      Maintained
4129 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4130 F:      drivers/media/platform/cadence/cdns-csi2*
4131
4132 CADENCE NAND DRIVER
4133 L:      linux-mtd@lists.infradead.org
4134 S:      Orphan
4135 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4136 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4137
4138 CADENCE USB3 DRD IP DRIVER
4139 M:      Peter Chen <peter.chen@kernel.org>
4140 M:      Pawel Laszczak <pawell@cadence.com>
4141 R:      Roger Quadros <rogerq@kernel.org>
4142 R:      Aswath Govindraju <a-govindraju@ti.com>
4143 L:      linux-usb@vger.kernel.org
4144 S:      Maintained
4145 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4146 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4147 F:      drivers/usb/cdns3/
4148 X:      drivers/usb/cdns3/cdnsp*
4149
4150 CADENCE USBSSP DRD IP DRIVER
4151 M:      Pawel Laszczak <pawell@cadence.com>
4152 L:      linux-usb@vger.kernel.org
4153 S:      Maintained
4154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4155 F:      drivers/usb/cdns3/
4156 X:      drivers/usb/cdns3/cdns3*
4157
4158 CADET FM/AM RADIO RECEIVER DRIVER
4159 M:      Hans Verkuil <hverkuil@xs4all.nl>
4160 L:      linux-media@vger.kernel.org
4161 S:      Maintained
4162 W:      https://linuxtv.org
4163 T:      git git://linuxtv.org/media_tree.git
4164 F:      drivers/media/radio/radio-cadet*
4165
4166 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4167 L:      linux-media@vger.kernel.org
4168 S:      Orphan
4169 T:      git git://linuxtv.org/media_tree.git
4170 F:      Documentation/admin-guide/media/cafe_ccic*
4171 F:      drivers/media/platform/marvell-ccic/
4172
4173 CAIF NETWORK LAYER
4174 L:      netdev@vger.kernel.org
4175 S:      Orphan
4176 F:      Documentation/networking/caif/
4177 F:      drivers/net/caif/
4178 F:      include/net/caif/
4179 F:      include/uapi/linux/caif/
4180 F:      net/caif/
4181
4182 CAKE QDISC
4183 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4184 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4185 S:      Maintained
4186 F:      net/sched/sch_cake.c
4187
4188 CAN NETWORK DRIVERS
4189 M:      Wolfgang Grandegger <wg@grandegger.com>
4190 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4191 L:      linux-can@vger.kernel.org
4192 S:      Maintained
4193 W:      https://github.com/linux-can
4194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4196 F:      Documentation/devicetree/bindings/net/can/
4197 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4198 F:      drivers/net/can/
4199 F:      drivers/phy/phy-can-transceiver.c
4200 F:      include/linux/can/bittiming.h
4201 F:      include/linux/can/dev.h
4202 F:      include/linux/can/led.h
4203 F:      include/linux/can/length.h
4204 F:      include/linux/can/platform/
4205 F:      include/linux/can/rx-offload.h
4206 F:      include/uapi/linux/can/error.h
4207 F:      include/uapi/linux/can/netlink.h
4208 F:      include/uapi/linux/can/vxcan.h
4209
4210 CAN NETWORK LAYER
4211 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4212 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4213 L:      linux-can@vger.kernel.org
4214 S:      Maintained
4215 W:      https://github.com/linux-can
4216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4218 F:      Documentation/networking/can.rst
4219 F:      include/linux/can/can-ml.h
4220 F:      include/linux/can/core.h
4221 F:      include/linux/can/skb.h
4222 F:      include/net/netns/can.h
4223 F:      include/uapi/linux/can.h
4224 F:      include/uapi/linux/can/bcm.h
4225 F:      include/uapi/linux/can/gw.h
4226 F:      include/uapi/linux/can/isotp.h
4227 F:      include/uapi/linux/can/raw.h
4228 F:      net/can/
4229
4230 CAN-J1939 NETWORK LAYER
4231 M:      Robin van der Gracht <robin@protonic.nl>
4232 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4233 R:      kernel@pengutronix.de
4234 L:      linux-can@vger.kernel.org
4235 S:      Maintained
4236 F:      Documentation/networking/j1939.rst
4237 F:      include/uapi/linux/can/j1939.h
4238 F:      net/can/j1939/
4239
4240 CAPABILITIES
4241 M:      Serge Hallyn <serge@hallyn.com>
4242 L:      linux-security-module@vger.kernel.org
4243 S:      Supported
4244 F:      include/linux/capability.h
4245 F:      include/uapi/linux/capability.h
4246 F:      kernel/capability.c
4247 F:      security/commoncap.c
4248
4249 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4250 M:      Kevin Tsai <ktsai@capellamicro.com>
4251 S:      Maintained
4252 F:      drivers/iio/light/cm*
4253
4254 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4255 M:      Christian Lamparter <chunkeey@googlemail.com>
4256 L:      linux-wireless@vger.kernel.org
4257 S:      Maintained
4258 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4259 F:      drivers/net/wireless/ath/carl9170/
4260
4261 CAVIUM I2C DRIVER
4262 M:      Robert Richter <rric@kernel.org>
4263 S:      Odd Fixes
4264 W:      http://www.marvell.com
4265 F:      drivers/i2c/busses/i2c-octeon*
4266 F:      drivers/i2c/busses/i2c-thunderx*
4267
4268 CAVIUM LIQUIDIO NETWORK DRIVER
4269 M:      Derek Chickles <dchickles@marvell.com>
4270 M:      Satanand Burla <sburla@marvell.com>
4271 M:      Felix Manlunas <fmanlunas@marvell.com>
4272 L:      netdev@vger.kernel.org
4273 S:      Supported
4274 W:      http://www.marvell.com
4275 F:      drivers/net/ethernet/cavium/liquidio/
4276
4277 CAVIUM MMC DRIVER
4278 M:      Robert Richter <rric@kernel.org>
4279 S:      Odd Fixes
4280 W:      http://www.marvell.com
4281 F:      drivers/mmc/host/cavium*
4282
4283 CAVIUM OCTEON-TX CRYPTO DRIVER
4284 M:      George Cherian <gcherian@marvell.com>
4285 L:      linux-crypto@vger.kernel.org
4286 S:      Supported
4287 W:      http://www.marvell.com
4288 F:      drivers/crypto/cavium/cpt/
4289
4290 CAVIUM THUNDERX2 ARM64 SOC
4291 M:      Robert Richter <rric@kernel.org>
4292 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4293 S:      Odd Fixes
4294 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4295 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4296
4297 CBS/ETF/TAPRIO QDISCS
4298 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4299 S:      Maintained
4300 L:      netdev@vger.kernel.org
4301 F:      net/sched/sch_cbs.c
4302 F:      net/sched/sch_etf.c
4303 F:      net/sched/sch_taprio.c
4304
4305 CC2520 IEEE-802.15.4 RADIO DRIVER
4306 M:      Varka Bhadram <varkabhadram@gmail.com>
4307 L:      linux-wpan@vger.kernel.org
4308 S:      Maintained
4309 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4310 F:      drivers/net/ieee802154/cc2520.c
4311 F:      include/linux/spi/cc2520.h
4312
4313 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4314 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4315 L:      linux-crypto@vger.kernel.org
4316 S:      Supported
4317 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4318 F:      drivers/crypto/ccree/
4319
4320 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4321 M:      Hadar Gat <hadar.gat@arm.com>
4322 L:      linux-crypto@vger.kernel.org
4323 S:      Supported
4324 F:      drivers/char/hw_random/cctrng.c
4325 F:      drivers/char/hw_random/cctrng.h
4326 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4327 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4328
4329 CEC FRAMEWORK
4330 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4331 L:      linux-media@vger.kernel.org
4332 S:      Supported
4333 W:      http://linuxtv.org
4334 T:      git git://linuxtv.org/media_tree.git
4335 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4336 F:      Documentation/devicetree/bindings/media/cec.txt
4337 F:      Documentation/driver-api/media/cec-core.rst
4338 F:      Documentation/userspace-api/media/cec
4339 F:      drivers/media/cec/
4340 F:      drivers/media/rc/keymaps/rc-cec.c
4341 F:      include/media/cec-notifier.h
4342 F:      include/media/cec.h
4343 F:      include/uapi/linux/cec-funcs.h
4344 F:      include/uapi/linux/cec.h
4345
4346 CEC GPIO DRIVER
4347 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4348 L:      linux-media@vger.kernel.org
4349 S:      Supported
4350 W:      http://linuxtv.org
4351 T:      git git://linuxtv.org/media_tree.git
4352 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4353 F:      drivers/media/cec/platform/cec-gpio/
4354
4355 CELL BROADBAND ENGINE ARCHITECTURE
4356 M:      Arnd Bergmann <arnd@arndb.de>
4357 L:      linuxppc-dev@lists.ozlabs.org
4358 S:      Supported
4359 W:      http://www.ibm.com/developerworks/power/cell/
4360 F:      arch/powerpc/include/asm/cell*.h
4361 F:      arch/powerpc/include/asm/spu*.h
4362 F:      arch/powerpc/include/uapi/asm/spu*.h
4363 F:      arch/powerpc/platforms/cell/
4364
4365 CELLWISE CW2015 BATTERY DRIVER
4366 M:      Tobias Schrammm <t.schramm@manjaro.org>
4367 S:      Maintained
4368 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4369 F:      drivers/power/supply/cw2015_battery.c
4370
4371 CEPH COMMON CODE (LIBCEPH)
4372 M:      Ilya Dryomov <idryomov@gmail.com>
4373 M:      Jeff Layton <jlayton@kernel.org>
4374 L:      ceph-devel@vger.kernel.org
4375 S:      Supported
4376 W:      http://ceph.com/
4377 T:      git git://github.com/ceph/ceph-client.git
4378 F:      include/linux/ceph/
4379 F:      include/linux/crush/
4380 F:      net/ceph/
4381
4382 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4383 M:      Jeff Layton <jlayton@kernel.org>
4384 M:      Ilya Dryomov <idryomov@gmail.com>
4385 L:      ceph-devel@vger.kernel.org
4386 S:      Supported
4387 W:      http://ceph.com/
4388 T:      git git://github.com/ceph/ceph-client.git
4389 F:      Documentation/filesystems/ceph.rst
4390 F:      fs/ceph/
4391
4392 CERTIFICATE HANDLING
4393 M:      David Howells <dhowells@redhat.com>
4394 M:      David Woodhouse <dwmw2@infradead.org>
4395 L:      keyrings@vger.kernel.org
4396 S:      Maintained
4397 F:      Documentation/admin-guide/module-signing.rst
4398 F:      certs/
4399 F:      scripts/extract-cert.c
4400 F:      scripts/sign-file.c
4401
4402 CFAG12864B LCD DRIVER
4403 M:      Miguel Ojeda <ojeda@kernel.org>
4404 S:      Maintained
4405 F:      drivers/auxdisplay/cfag12864b.c
4406 F:      include/linux/cfag12864b.h
4407
4408 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4409 M:      Miguel Ojeda <ojeda@kernel.org>
4410 S:      Maintained
4411 F:      drivers/auxdisplay/cfag12864bfb.c
4412 F:      include/linux/cfag12864b.h
4413
4414 CHAR and MISC DRIVERS
4415 M:      Arnd Bergmann <arnd@arndb.de>
4416 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4417 S:      Supported
4418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4419 F:      drivers/char/
4420 F:      drivers/misc/
4421 F:      include/linux/miscdevice.h
4422 X:      drivers/char/agp/
4423 X:      drivers/char/hw_random/
4424 X:      drivers/char/ipmi/
4425 X:      drivers/char/random.c
4426 X:      drivers/char/tpm/
4427
4428 CHECKPATCH
4429 M:      Andy Whitcroft <apw@canonical.com>
4430 M:      Joe Perches <joe@perches.com>
4431 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4432 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4433 S:      Maintained
4434 F:      scripts/checkpatch.pl
4435
4436 CHECKPATCH DOCUMENTATION
4437 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4438 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4439 R:      Joe Perches <joe@perches.com>
4440 S:      Maintained
4441 F:      Documentation/dev-tools/checkpatch.rst
4442
4443 CHINESE DOCUMENTATION
4444 M:      Alex Shi <alexs@kernel.org>
4445 S:      Maintained
4446 F:      Documentation/translations/zh_CN/
4447
4448 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4449 M:      Peter Chen <peter.chen@kernel.org>
4450 L:      linux-usb@vger.kernel.org
4451 S:      Maintained
4452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4453 F:      drivers/usb/chipidea/
4454
4455 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4456 M:      Hans de Goede <hdegoede@redhat.com>
4457 L:      linux-input@vger.kernel.org
4458 S:      Maintained
4459 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4460 F:      drivers/input/touchscreen/chipone_icn8318.c
4461
4462 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4463 M:      Hans de Goede <hdegoede@redhat.com>
4464 L:      linux-input@vger.kernel.org
4465 S:      Maintained
4466 F:      drivers/input/touchscreen/chipone_icn8505.c
4467
4468 CHROME HARDWARE PLATFORM SUPPORT
4469 M:      Benson Leung <bleung@chromium.org>
4470 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4471 S:      Maintained
4472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4473 F:      drivers/platform/chrome/
4474
4475 CHROMEOS EC CODEC DRIVER
4476 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4477 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4478 R:      Guenter Roeck <groeck@chromium.org>
4479 S:      Maintained
4480 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4481 F:      sound/soc/codecs/cros_ec_codec.*
4482
4483 CHROMEOS EC SUBDRIVERS
4484 M:      Benson Leung <bleung@chromium.org>
4485 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4486 R:      Guenter Roeck <groeck@chromium.org>
4487 S:      Maintained
4488 F:      drivers/power/supply/cros_usbpd-charger.c
4489 N:      cros_ec
4490 N:      cros-ec
4491
4492 CHRONTEL CH7322 CEC DRIVER
4493 M:      Joe Tessler <jrt@google.com>
4494 L:      linux-media@vger.kernel.org
4495 S:      Maintained
4496 T:      git git://linuxtv.org/media_tree.git
4497 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4498 F:      drivers/media/cec/i2c/ch7322.c
4499
4500 CIRRUS LOGIC AUDIO CODEC DRIVERS
4501 M:      James Schulman <james.schulman@cirrus.com>
4502 M:      David Rhodes <david.rhodes@cirrus.com>
4503 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4504 L:      patches@opensource.cirrus.com
4505 S:      Maintained
4506 F:      sound/soc/codecs/cs*
4507
4508 CIRRUS LOGIC DSP FIRMWARE DRIVER
4509 M:      Simon Trimmer <simont@opensource.cirrus.com>
4510 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4511 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4512 L:      patches@opensource.cirrus.com
4513 S:      Supported
4514 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4515 T:      git https://github.com/CirrusLogic/linux-drivers.git
4516 F:      drivers/firmware/cirrus/*
4517 F:      include/linux/firmware/cirrus/*
4518
4519 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4520 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4521 L:      netdev@vger.kernel.org
4522 S:      Maintained
4523 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4524
4525 CIRRUS LOGIC LOCHNAGAR DRIVER
4526 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4527 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4528 L:      patches@opensource.cirrus.com
4529 S:      Supported
4530 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4531 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4532 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4533 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4534 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4535 F:      Documentation/hwmon/lochnagar.rst
4536 F:      drivers/clk/clk-lochnagar.c
4537 F:      drivers/hwmon/lochnagar-hwmon.c
4538 F:      drivers/mfd/lochnagar-i2c.c
4539 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4540 F:      drivers/regulator/lochnagar-regulator.c
4541 F:      include/dt-bindings/clk/lochnagar.h
4542 F:      include/dt-bindings/pinctrl/lochnagar.h
4543 F:      include/linux/mfd/lochnagar*
4544 F:      sound/soc/codecs/lochnagar-sc.c
4545
4546 CIRRUS LOGIC MADERA CODEC DRIVERS
4547 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4548 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4549 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4550 L:      patches@opensource.cirrus.com
4551 S:      Supported
4552 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4553 T:      git https://github.com/CirrusLogic/linux-drivers.git
4554 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4555 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4556 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4557 F:      drivers/gpio/gpio-madera*
4558 F:      drivers/irqchip/irq-madera*
4559 F:      drivers/mfd/cs47l*
4560 F:      drivers/mfd/madera*
4561 F:      drivers/pinctrl/cirrus/*
4562 F:      include/dt-bindings/sound/madera*
4563 F:      include/linux/irqchip/irq-madera*
4564 F:      include/linux/mfd/madera/*
4565 F:      include/sound/madera*
4566 F:      sound/soc/codecs/cs47l*
4567 F:      sound/soc/codecs/madera*
4568
4569 CISCO FCOE HBA DRIVER
4570 M:      Satish Kharat <satishkh@cisco.com>
4571 M:      Sesidhar Baddela <sebaddel@cisco.com>
4572 M:      Karan Tilak Kumar <kartilak@cisco.com>
4573 L:      linux-scsi@vger.kernel.org
4574 S:      Supported
4575 F:      drivers/scsi/fnic/
4576
4577 CISCO SCSI HBA DRIVER
4578 M:      Karan Tilak Kumar <kartilak@cisco.com>
4579 M:      Sesidhar Baddela <sebaddel@cisco.com>
4580 L:      linux-scsi@vger.kernel.org
4581 S:      Supported
4582 F:      drivers/scsi/snic/
4583
4584 CISCO VIC ETHERNET NIC DRIVER
4585 M:      Christian Benvenuti <benve@cisco.com>
4586 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4587 S:      Supported
4588 F:      drivers/net/ethernet/cisco/enic/
4589
4590 CISCO VIC LOW LATENCY NIC DRIVER
4591 M:      Christian Benvenuti <benve@cisco.com>
4592 M:      Nelson Escobar <neescoba@cisco.com>
4593 S:      Supported
4594 F:      drivers/infiniband/hw/usnic/
4595
4596 CLANG-FORMAT FILE
4597 M:      Miguel Ojeda <ojeda@kernel.org>
4598 S:      Maintained
4599 F:      .clang-format
4600
4601 CLANG/LLVM BUILD SUPPORT
4602 M:      Nathan Chancellor <nathan@kernel.org>
4603 M:      Nick Desaulniers <ndesaulniers@google.com>
4604 L:      llvm@lists.linux.dev
4605 S:      Supported
4606 W:      https://clangbuiltlinux.github.io/
4607 B:      https://github.com/ClangBuiltLinux/linux/issues
4608 C:      irc://irc.libera.chat/clangbuiltlinux
4609 F:      Documentation/kbuild/llvm.rst
4610 F:      include/linux/compiler-clang.h
4611 F:      scripts/Makefile.clang
4612 F:      scripts/clang-tools/
4613 K:      \b(?i:clang|llvm)\b
4614
4615 CLANG CONTROL FLOW INTEGRITY SUPPORT
4616 M:      Sami Tolvanen <samitolvanen@google.com>
4617 M:      Kees Cook <keescook@chromium.org>
4618 R:      Nathan Chancellor <nathan@kernel.org>
4619 R:      Nick Desaulniers <ndesaulniers@google.com>
4620 L:      llvm@lists.linux.dev
4621 S:      Supported
4622 B:      https://github.com/ClangBuiltLinux/linux/issues
4623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4624 F:      include/linux/cfi.h
4625 F:      kernel/cfi.c
4626
4627 CLEANCACHE API
4628 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4629 L:      linux-kernel@vger.kernel.org
4630 S:      Maintained
4631 F:      include/linux/cleancache.h
4632 F:      mm/cleancache.c
4633
4634 CLK API
4635 M:      Russell King <linux@armlinux.org.uk>
4636 L:      linux-clk@vger.kernel.org
4637 S:      Maintained
4638 F:      include/linux/clk.h
4639
4640 CLOCKSOURCE, CLOCKEVENT DRIVERS
4641 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4642 M:      Thomas Gleixner <tglx@linutronix.de>
4643 L:      linux-kernel@vger.kernel.org
4644 S:      Supported
4645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4646 F:      Documentation/devicetree/bindings/timer/
4647 F:      drivers/clocksource/
4648
4649 CMPC ACPI DRIVER
4650 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4651 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4652 L:      platform-driver-x86@vger.kernel.org
4653 S:      Supported
4654 F:      drivers/platform/x86/classmate-laptop.c
4655
4656 COBALT MEDIA DRIVER
4657 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4658 L:      linux-media@vger.kernel.org
4659 S:      Supported
4660 W:      https://linuxtv.org
4661 T:      git git://linuxtv.org/media_tree.git
4662 F:      drivers/media/pci/cobalt/
4663
4664 COCCINELLE/Semantic Patches (SmPL)
4665 M:      Julia Lawall <Julia.Lawall@inria.fr>
4666 M:      Gilles Muller <Gilles.Muller@inria.fr>
4667 M:      Nicolas Palix <nicolas.palix@imag.fr>
4668 M:      Michal Marek <michal.lkml@markovi.net>
4669 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4670 S:      Supported
4671 W:      http://coccinelle.lip6.fr/
4672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4673 F:      Documentation/dev-tools/coccinelle.rst
4674 F:      scripts/coccicheck
4675 F:      scripts/coccinelle/
4676
4677 CODA FILE SYSTEM
4678 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4679 M:      coda@cs.cmu.edu
4680 L:      codalist@coda.cs.cmu.edu
4681 S:      Maintained
4682 W:      http://www.coda.cs.cmu.edu/
4683 F:      Documentation/filesystems/coda.rst
4684 F:      fs/coda/
4685 F:      include/linux/coda*.h
4686 F:      include/uapi/linux/coda*.h
4687
4688 CODA V4L2 MEM2MEM DRIVER
4689 M:      Philipp Zabel <p.zabel@pengutronix.de>
4690 L:      linux-media@vger.kernel.org
4691 S:      Maintained
4692 F:      Documentation/devicetree/bindings/media/coda.yaml
4693 F:      drivers/media/platform/coda/
4694
4695 CODE OF CONDUCT
4696 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4697 S:      Supported
4698 F:      Documentation/process/code-of-conduct-interpretation.rst
4699 F:      Documentation/process/code-of-conduct.rst
4700
4701 COMEDI DRIVERS
4702 M:      Ian Abbott <abbotti@mev.co.uk>
4703 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4704 S:      Odd Fixes
4705 F:      drivers/comedi/
4706
4707 COMMON CLK FRAMEWORK
4708 M:      Michael Turquette <mturquette@baylibre.com>
4709 M:      Stephen Boyd <sboyd@kernel.org>
4710 L:      linux-clk@vger.kernel.org
4711 S:      Maintained
4712 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4714 F:      Documentation/devicetree/bindings/clock/
4715 F:      drivers/clk/
4716 F:      include/linux/clk-pr*
4717 F:      include/linux/clk/
4718 F:      include/linux/of_clk.h
4719 X:      drivers/clk/clkdev.c
4720
4721 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4722 M:      Steve French <sfrench@samba.org>
4723 L:      linux-cifs@vger.kernel.org
4724 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4725 S:      Supported
4726 W:      http://linux-cifs.samba.org/
4727 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4728 F:      Documentation/admin-guide/cifs/
4729 F:      fs/cifs/
4730 F:      fs/smbfs_common/
4731
4732 COMPACTPCI HOTPLUG CORE
4733 M:      Scott Murray <scott@spiteful.org>
4734 L:      linux-pci@vger.kernel.org
4735 S:      Maintained
4736 F:      drivers/pci/hotplug/cpci_hotplug*
4737
4738 COMPACTPCI HOTPLUG GENERIC DRIVER
4739 M:      Scott Murray <scott@spiteful.org>
4740 L:      linux-pci@vger.kernel.org
4741 S:      Maintained
4742 F:      drivers/pci/hotplug/cpcihp_generic.c
4743
4744 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4745 M:      Scott Murray <scott@spiteful.org>
4746 L:      linux-pci@vger.kernel.org
4747 S:      Maintained
4748 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4749
4750 COMPAL LAPTOP SUPPORT
4751 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4752 L:      platform-driver-x86@vger.kernel.org
4753 S:      Maintained
4754 F:      drivers/platform/x86/compal-laptop.c
4755
4756 COMPILER ATTRIBUTES
4757 M:      Miguel Ojeda <ojeda@kernel.org>
4758 R:      Nick Desaulniers <ndesaulniers@google.com>
4759 S:      Maintained
4760 F:      include/linux/compiler_attributes.h
4761
4762 COMPUTE EXPRESS LINK (CXL)
4763 M:      Alison Schofield <alison.schofield@intel.com>
4764 M:      Vishal Verma <vishal.l.verma@intel.com>
4765 M:      Ira Weiny <ira.weiny@intel.com>
4766 M:      Ben Widawsky <ben.widawsky@intel.com>
4767 M:      Dan Williams <dan.j.williams@intel.com>
4768 L:      linux-cxl@vger.kernel.org
4769 S:      Maintained
4770 F:      drivers/cxl/
4771 F:      include/uapi/linux/cxl_mem.h
4772
4773 CONEXANT ACCESSRUNNER USB DRIVER
4774 L:      accessrunner-general@lists.sourceforge.net
4775 S:      Orphan
4776 W:      http://accessrunner.sourceforge.net/
4777 F:      drivers/usb/atm/cxacru.c
4778
4779 CONFIGFS
4780 M:      Joel Becker <jlbec@evilplan.org>
4781 M:      Christoph Hellwig <hch@lst.de>
4782 S:      Supported
4783 T:      git git://git.infradead.org/users/hch/configfs.git
4784 F:      fs/configfs/
4785 F:      include/linux/configfs.h
4786 F:      samples/configfs/
4787
4788 CONSOLE SUBSYSTEM
4789 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4790 S:      Supported
4791 F:      drivers/video/console/
4792 F:      include/linux/console*
4793
4794 CONTEXT TRACKING
4795 M:      Frederic Weisbecker <frederic@kernel.org>
4796 S:      Maintained
4797 F:      kernel/context_tracking.c
4798 F:      include/linux/context_tracking*
4799
4800 CONTROL GROUP (CGROUP)
4801 M:      Tejun Heo <tj@kernel.org>
4802 M:      Zefan Li <lizefan.x@bytedance.com>
4803 M:      Johannes Weiner <hannes@cmpxchg.org>
4804 L:      cgroups@vger.kernel.org
4805 S:      Maintained
4806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4807 F:      Documentation/admin-guide/cgroup-v1/
4808 F:      Documentation/admin-guide/cgroup-v2.rst
4809 F:      include/linux/cgroup*
4810 F:      kernel/cgroup/
4811
4812 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4813 M:      Tejun Heo <tj@kernel.org>
4814 M:      Jens Axboe <axboe@kernel.dk>
4815 L:      cgroups@vger.kernel.org
4816 L:      linux-block@vger.kernel.org
4817 T:      git git://git.kernel.dk/linux-block
4818 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4819 F:      block/bfq-cgroup.c
4820 F:      block/blk-cgroup.c
4821 F:      block/blk-iolatency.c
4822 F:      block/blk-throttle.c
4823 F:      include/linux/blk-cgroup.h
4824
4825 CONTROL GROUP - CPUSET
4826 M:      Zefan Li <lizefan.x@bytedance.com>
4827 L:      cgroups@vger.kernel.org
4828 S:      Maintained
4829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4830 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4831 F:      include/linux/cpuset.h
4832 F:      kernel/cgroup/cpuset.c
4833
4834 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4835 M:      Johannes Weiner <hannes@cmpxchg.org>
4836 M:      Michal Hocko <mhocko@kernel.org>
4837 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4838 L:      cgroups@vger.kernel.org
4839 L:      linux-mm@kvack.org
4840 S:      Maintained
4841 F:      mm/memcontrol.c
4842 F:      mm/swap_cgroup.c
4843
4844 CORETEMP HARDWARE MONITORING DRIVER
4845 M:      Fenghua Yu <fenghua.yu@intel.com>
4846 L:      linux-hwmon@vger.kernel.org
4847 S:      Maintained
4848 F:      Documentation/hwmon/coretemp.rst
4849 F:      drivers/hwmon/coretemp.c
4850
4851 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4852 M:      Marius Zachmann <mail@mariuszachmann.de>
4853 L:      linux-hwmon@vger.kernel.org
4854 S:      Maintained
4855 F:      drivers/hwmon/corsair-cpro.c
4856
4857 CORSAIR-PSU HARDWARE MONITOR DRIVER
4858 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4859 L:      linux-hwmon@vger.kernel.org
4860 S:      Maintained
4861 F:      Documentation/hwmon/corsair-psu.rst
4862 F:      drivers/hwmon/corsair-psu.c
4863
4864 COSA/SRP SYNC SERIAL DRIVER
4865 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4866 S:      Maintained
4867 W:      http://www.fi.muni.cz/~kas/cosa/
4868 F:      drivers/net/wan/cosa*
4869
4870 COUNTER SUBSYSTEM
4871 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4872 L:      linux-iio@vger.kernel.org
4873 S:      Maintained
4874 F:      Documentation/ABI/testing/sysfs-bus-counter
4875 F:      Documentation/driver-api/generic-counter.rst
4876 F:      drivers/counter/
4877 F:      include/linux/counter.h
4878 F:      include/uapi/linux/counter.h
4879 F:      tools/counter/
4880
4881 CP2615 I2C DRIVER
4882 M:      Bence Csókás <bence98@sch.bme.hu>
4883 S:      Maintained
4884 F:      drivers/i2c/busses/i2c-cp2615.c
4885
4886 CPMAC ETHERNET DRIVER
4887 M:      Florian Fainelli <f.fainelli@gmail.com>
4888 L:      netdev@vger.kernel.org
4889 S:      Maintained
4890 F:      drivers/net/ethernet/ti/cpmac.c
4891
4892 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4893 M:      Viresh Kumar <viresh.kumar@linaro.org>
4894 M:      Sudeep Holla <sudeep.holla@arm.com>
4895 L:      linux-pm@vger.kernel.org
4896 S:      Maintained
4897 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4898 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4899
4900 CPU FREQUENCY SCALING FRAMEWORK
4901 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4902 M:      Viresh Kumar <viresh.kumar@linaro.org>
4903 L:      linux-pm@vger.kernel.org
4904 S:      Maintained
4905 B:      https://bugzilla.kernel.org
4906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4908 F:      Documentation/admin-guide/pm/cpufreq.rst
4909 F:      Documentation/admin-guide/pm/intel_pstate.rst
4910 F:      Documentation/cpu-freq/
4911 F:      Documentation/devicetree/bindings/cpufreq/
4912 F:      drivers/cpufreq/
4913 F:      include/linux/cpufreq.h
4914 F:      include/linux/sched/cpufreq.h
4915 F:      kernel/sched/cpufreq*.c
4916 F:      tools/testing/selftests/cpufreq/
4917
4918 CPU IDLE TIME MANAGEMENT FRAMEWORK
4919 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4920 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4921 L:      linux-pm@vger.kernel.org
4922 S:      Maintained
4923 B:      https://bugzilla.kernel.org
4924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4925 F:      Documentation/admin-guide/pm/cpuidle.rst
4926 F:      Documentation/driver-api/pm/cpuidle.rst
4927 F:      drivers/cpuidle/
4928 F:      include/linux/cpuidle.h
4929
4930 CPU POWER MONITORING SUBSYSTEM
4931 M:      Thomas Renninger <trenn@suse.com>
4932 M:      Shuah Khan <shuah@kernel.org>
4933 M:      Shuah Khan <skhan@linuxfoundation.org>
4934 L:      linux-pm@vger.kernel.org
4935 S:      Maintained
4936 F:      tools/power/cpupower/
4937
4938 CPUID/MSR DRIVER
4939 M:      "H. Peter Anvin" <hpa@zytor.com>
4940 S:      Maintained
4941 F:      arch/x86/kernel/cpuid.c
4942 F:      arch/x86/kernel/msr.c
4943
4944 CPUIDLE DRIVER - ARM BIG LITTLE
4945 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4946 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4947 L:      linux-pm@vger.kernel.org
4948 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4949 S:      Maintained
4950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4951 F:      drivers/cpuidle/cpuidle-big_little.c
4952
4953 CPUIDLE DRIVER - ARM EXYNOS
4954 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4955 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4956 M:      Kukjin Kim <kgene@kernel.org>
4957 L:      linux-pm@vger.kernel.org
4958 L:      linux-samsung-soc@vger.kernel.org
4959 S:      Supported
4960 F:      arch/arm/mach-exynos/pm.c
4961 F:      drivers/cpuidle/cpuidle-exynos.c
4962 F:      include/linux/platform_data/cpuidle-exynos.h
4963
4964 CPUIDLE DRIVER - ARM PSCI
4965 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4966 M:      Sudeep Holla <sudeep.holla@arm.com>
4967 L:      linux-pm@vger.kernel.org
4968 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4969 S:      Supported
4970 F:      drivers/cpuidle/cpuidle-psci.c
4971
4972 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4973 M:      Ulf Hansson <ulf.hansson@linaro.org>
4974 L:      linux-pm@vger.kernel.org
4975 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4976 S:      Supported
4977 F:      drivers/cpuidle/cpuidle-psci.h
4978 F:      drivers/cpuidle/cpuidle-psci-domain.c
4979
4980 CRAMFS FILESYSTEM
4981 M:      Nicolas Pitre <nico@fluxnic.net>
4982 S:      Maintained
4983 F:      Documentation/filesystems/cramfs.rst
4984 F:      fs/cramfs/
4985
4986 CREATIVE SB0540
4987 M:      Bastien Nocera <hadess@hadess.net>
4988 L:      linux-input@vger.kernel.org
4989 S:      Maintained
4990 F:      drivers/hid/hid-creative-sb0540.c
4991
4992 CRYPTO API
4993 M:      Herbert Xu <herbert@gondor.apana.org.au>
4994 M:      "David S. Miller" <davem@davemloft.net>
4995 L:      linux-crypto@vger.kernel.org
4996 S:      Maintained
4997 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4999 F:      Documentation/crypto/
5000 F:      Documentation/devicetree/bindings/crypto/
5001 F:      arch/*/crypto/
5002 F:      crypto/
5003 F:      drivers/crypto/
5004 F:      include/crypto/
5005 F:      include/linux/crypto*
5006 F:      lib/crypto/
5007
5008 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5009 M:      Neil Horman <nhorman@tuxdriver.com>
5010 L:      linux-crypto@vger.kernel.org
5011 S:      Maintained
5012 F:      crypto/ansi_cprng.c
5013 F:      crypto/rng.c
5014
5015 CS3308 MEDIA DRIVER
5016 M:      Hans Verkuil <hverkuil@xs4all.nl>
5017 L:      linux-media@vger.kernel.org
5018 S:      Odd Fixes
5019 W:      http://linuxtv.org
5020 T:      git git://linuxtv.org/media_tree.git
5021 F:      drivers/media/i2c/cs3308.c
5022
5023 CS5535 Audio ALSA driver
5024 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5025 S:      Maintained
5026 F:      sound/pci/cs5535audio/
5027
5028 CSI DRIVERS FOR ALLWINNER V3s
5029 M:      Yong Deng <yong.deng@magewell.com>
5030 L:      linux-media@vger.kernel.org
5031 S:      Maintained
5032 T:      git git://linuxtv.org/media_tree.git
5033 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5034 F:      drivers/media/platform/sunxi/sun6i-csi/
5035
5036 CW1200 WLAN driver
5037 M:      Solomon Peachy <pizza@shaftnet.org>
5038 S:      Maintained
5039 F:      drivers/net/wireless/st/cw1200/
5040
5041 CX18 VIDEO4LINUX DRIVER
5042 M:      Andy Walls <awalls@md.metrocast.net>
5043 L:      linux-media@vger.kernel.org
5044 S:      Maintained
5045 W:      https://linuxtv.org
5046 T:      git git://linuxtv.org/media_tree.git
5047 F:      drivers/media/pci/cx18/
5048 F:      include/uapi/linux/ivtv*
5049
5050 CX2341X MPEG ENCODER HELPER MODULE
5051 M:      Hans Verkuil <hverkuil@xs4all.nl>
5052 L:      linux-media@vger.kernel.org
5053 S:      Maintained
5054 W:      https://linuxtv.org
5055 T:      git git://linuxtv.org/media_tree.git
5056 F:      drivers/media/common/cx2341x*
5057 F:      include/media/drv-intf/cx2341x.h
5058
5059 CX24120 MEDIA DRIVER
5060 M:      Jemma Denson <jdenson@gmail.com>
5061 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5062 L:      linux-media@vger.kernel.org
5063 S:      Maintained
5064 W:      https://linuxtv.org
5065 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5066 F:      drivers/media/dvb-frontends/cx24120*
5067
5068 CX88 VIDEO4LINUX DRIVER
5069 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5070 L:      linux-media@vger.kernel.org
5071 S:      Odd fixes
5072 W:      https://linuxtv.org
5073 T:      git git://linuxtv.org/media_tree.git
5074 F:      Documentation/driver-api/media/drivers/cx88*
5075 F:      drivers/media/pci/cx88/
5076
5077 CXD2820R MEDIA DRIVER
5078 M:      Antti Palosaari <crope@iki.fi>
5079 L:      linux-media@vger.kernel.org
5080 S:      Maintained
5081 W:      https://linuxtv.org
5082 W:      http://palosaari.fi/linux/
5083 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5084 T:      git git://linuxtv.org/anttip/media_tree.git
5085 F:      drivers/media/dvb-frontends/cxd2820r*
5086
5087 CXGB3 ETHERNET DRIVER (CXGB3)
5088 M:      Raju Rangoju <rajur@chelsio.com>
5089 L:      netdev@vger.kernel.org
5090 S:      Supported
5091 W:      http://www.chelsio.com
5092 F:      drivers/net/ethernet/chelsio/cxgb3/
5093
5094 CXGB3 ISCSI DRIVER (CXGB3I)
5095 M:      Karen Xie <kxie@chelsio.com>
5096 L:      linux-scsi@vger.kernel.org
5097 S:      Supported
5098 W:      http://www.chelsio.com
5099 F:      drivers/scsi/cxgbi/cxgb3i
5100
5101 CXGB4 CRYPTO DRIVER (chcr)
5102 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5103 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5104 M:      Rohit Maheshwari <rohitm@chelsio.com>
5105 L:      linux-crypto@vger.kernel.org
5106 S:      Supported
5107 W:      http://www.chelsio.com
5108 F:      drivers/crypto/chelsio
5109
5110 CXGB4 INLINE CRYPTO DRIVER
5111 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5112 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5113 M:      Rohit Maheshwari <rohitm@chelsio.com>
5114 L:      netdev@vger.kernel.org
5115 S:      Supported
5116 W:      http://www.chelsio.com
5117 F:      drivers/net/ethernet/chelsio/inline_crypto/
5118
5119 CXGB4 ETHERNET DRIVER (CXGB4)
5120 M:      Raju Rangoju <rajur@chelsio.com>
5121 L:      netdev@vger.kernel.org
5122 S:      Supported
5123 W:      http://www.chelsio.com
5124 F:      drivers/net/ethernet/chelsio/cxgb4/
5125
5126 CXGB4 ISCSI DRIVER (CXGB4I)
5127 M:      Karen Xie <kxie@chelsio.com>
5128 L:      linux-scsi@vger.kernel.org
5129 S:      Supported
5130 W:      http://www.chelsio.com
5131 F:      drivers/scsi/cxgbi/cxgb4i
5132
5133 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5134 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5135 L:      linux-rdma@vger.kernel.org
5136 S:      Supported
5137 W:      http://www.openfabrics.org
5138 F:      drivers/infiniband/hw/cxgb4/
5139 F:      include/uapi/rdma/cxgb4-abi.h
5140
5141 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5142 M:      Raju Rangoju <rajur@chelsio.com>
5143 L:      netdev@vger.kernel.org
5144 S:      Supported
5145 W:      http://www.chelsio.com
5146 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5147
5148 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5149 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5150 M:      Andrew Donnellan <ajd@linux.ibm.com>
5151 L:      linuxppc-dev@lists.ozlabs.org
5152 S:      Supported
5153 F:      Documentation/ABI/testing/sysfs-class-cxl
5154 F:      Documentation/powerpc/cxl.rst
5155 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5156 F:      drivers/misc/cxl/
5157 F:      include/misc/cxl*
5158 F:      include/uapi/misc/cxl.h
5159
5160 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5161 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5162 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5163 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5164 L:      linux-scsi@vger.kernel.org
5165 S:      Supported
5166 F:      Documentation/powerpc/cxlflash.rst
5167 F:      drivers/scsi/cxlflash/
5168 F:      include/uapi/scsi/cxlflash_ioctl.h
5169
5170 CYBERPRO FB DRIVER
5171 M:      Russell King <linux@armlinux.org.uk>
5172 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5173 S:      Maintained
5174 W:      http://www.armlinux.org.uk/
5175 F:      drivers/video/fbdev/cyber2000fb.*
5176
5177 CYCLADES PC300 DRIVER
5178 S:      Orphan
5179 F:      drivers/net/wan/pc300*
5180
5181 CYPRESS_FIRMWARE MEDIA DRIVER
5182 M:      Antti Palosaari <crope@iki.fi>
5183 L:      linux-media@vger.kernel.org
5184 S:      Maintained
5185 W:      https://linuxtv.org
5186 W:      http://palosaari.fi/linux/
5187 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5188 T:      git git://linuxtv.org/anttip/media_tree.git
5189 F:      drivers/media/common/cypress_firmware*
5190
5191 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5192 M:      Linus Walleij <linus.walleij@linaro.org>
5193 L:      linux-input@vger.kernel.org
5194 S:      Maintained
5195 F:      drivers/input/touchscreen/cy8ctma140.c
5196
5197 CYTTSP TOUCHSCREEN DRIVER
5198 M:      Linus Walleij <linus.walleij@linaro.org>
5199 L:      linux-input@vger.kernel.org
5200 S:      Maintained
5201 F:      drivers/input/touchscreen/cyttsp*
5202
5203 D-LINK DIR-685 TOUCHKEYS DRIVER
5204 M:      Linus Walleij <linus.walleij@linaro.org>
5205 L:      linux-input@vger.kernel.org
5206 S:      Supported
5207 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5208
5209 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5210 M:      Joshua Kinard <kumba@gentoo.org>
5211 S:      Maintained
5212 F:      drivers/rtc/rtc-ds1685.c
5213 F:      include/linux/rtc/ds1685.h
5214
5215 DAMA SLAVE for AX.25
5216 M:      Joerg Reuter <jreuter@yaina.de>
5217 L:      linux-hams@vger.kernel.org
5218 S:      Maintained
5219 W:      http://yaina.de/jreuter/
5220 W:      http://www.qsl.net/dl1bke/
5221 F:      net/ax25/af_ax25.c
5222 F:      net/ax25/ax25_dev.c
5223 F:      net/ax25/ax25_ds_*
5224 F:      net/ax25/ax25_in.c
5225 F:      net/ax25/ax25_out.c
5226 F:      net/ax25/ax25_timer.c
5227 F:      net/ax25/sysctl_net_ax25.c
5228
5229 DATA ACCESS MONITOR
5230 M:      SeongJae Park <sj@kernel.org>
5231 L:      linux-mm@kvack.org
5232 S:      Maintained
5233 F:      Documentation/admin-guide/mm/damon/
5234 F:      Documentation/vm/damon/
5235 F:      include/linux/damon.h
5236 F:      include/trace/events/damon.h
5237 F:      mm/damon/
5238 F:      tools/testing/selftests/damon/
5239
5240 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5241 L:      netdev@vger.kernel.org
5242 S:      Orphan
5243 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5244 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5245
5246 DC390/AM53C974 SCSI driver
5247 M:      Hannes Reinecke <hare@suse.com>
5248 L:      linux-scsi@vger.kernel.org
5249 S:      Maintained
5250 F:      drivers/scsi/am53c974.c
5251
5252 DC395x SCSI driver
5253 M:      Oliver Neukum <oliver@neukum.org>
5254 M:      Ali Akcaagac <aliakc@web.de>
5255 M:      Jamie Lenehan <lenehan@twibble.org>
5256 L:      dc395x@twibble.org
5257 S:      Maintained
5258 W:      http://twibble.org/dist/dc395x/
5259 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5260 F:      Documentation/scsi/dc395x.rst
5261 F:      drivers/scsi/dc395x.*
5262
5263 DCCP PROTOCOL
5264 L:      dccp@vger.kernel.org
5265 S:      Orphan
5266 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5267 F:      include/linux/dccp.h
5268 F:      include/linux/tfrc.h
5269 F:      include/uapi/linux/dccp.h
5270 F:      net/dccp/
5271
5272 DECnet NETWORK LAYER
5273 L:      linux-decnet-user@lists.sourceforge.net
5274 S:      Orphan
5275 W:      http://linux-decnet.sourceforge.net
5276 F:      Documentation/networking/decnet.rst
5277 F:      net/decnet/
5278
5279 DECSTATION PLATFORM SUPPORT
5280 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5281 L:      linux-mips@vger.kernel.org
5282 S:      Maintained
5283 W:      http://www.linux-mips.org/wiki/DECstation
5284 F:      arch/mips/dec/
5285 F:      arch/mips/include/asm/dec/
5286 F:      arch/mips/include/asm/mach-dec/
5287
5288 DEFXX FDDI NETWORK DRIVER
5289 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5290 S:      Maintained
5291 F:      drivers/net/fddi/defxx.*
5292
5293 DEFZA FDDI NETWORK DRIVER
5294 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5295 S:      Maintained
5296 F:      drivers/net/fddi/defza.*
5297
5298 DEINTERLACE DRIVERS FOR ALLWINNER H3
5299 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5300 L:      linux-media@vger.kernel.org
5301 S:      Maintained
5302 T:      git git://linuxtv.org/media_tree.git
5303 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5304 F:      drivers/media/platform/sunxi/sun8i-di/
5305
5306 DELL LAPTOP DRIVER
5307 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5308 M:      Pali Rohár <pali@kernel.org>
5309 L:      platform-driver-x86@vger.kernel.org
5310 S:      Maintained
5311 F:      drivers/platform/x86/dell/dell-laptop.c
5312
5313 DELL LAPTOP FREEFALL DRIVER
5314 M:      Pali Rohár <pali@kernel.org>
5315 S:      Maintained
5316 F:      drivers/platform/x86/dell/dell-smo8800.c
5317
5318 DELL LAPTOP RBTN DRIVER
5319 M:      Pali Rohár <pali@kernel.org>
5320 S:      Maintained
5321 F:      drivers/platform/x86/dell/dell-rbtn.*
5322
5323 DELL LAPTOP SMM DRIVER
5324 M:      Pali Rohár <pali@kernel.org>
5325 S:      Maintained
5326 F:      drivers/hwmon/dell-smm-hwmon.c
5327 F:      include/uapi/linux/i8k.h
5328
5329 DELL REMOTE BIOS UPDATE DRIVER
5330 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5331 L:      platform-driver-x86@vger.kernel.org
5332 S:      Maintained
5333 F:      drivers/platform/x86/dell/dell_rbu.c
5334
5335 DELL SMBIOS DRIVER
5336 M:      Pali Rohár <pali@kernel.org>
5337 L:      Dell.Client.Kernel@dell.com
5338 L:      platform-driver-x86@vger.kernel.org
5339 S:      Maintained
5340 F:      drivers/platform/x86/dell/dell-smbios.*
5341
5342 DELL SMBIOS SMM DRIVER
5343 L:      Dell.Client.Kernel@dell.com
5344 L:      platform-driver-x86@vger.kernel.org
5345 S:      Maintained
5346 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5347
5348 DELL SMBIOS WMI DRIVER
5349 L:      Dell.Client.Kernel@dell.com
5350 L:      platform-driver-x86@vger.kernel.org
5351 S:      Maintained
5352 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5353 F:      tools/wmi/dell-smbios-example.c
5354
5355 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5356 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5357 L:      platform-driver-x86@vger.kernel.org
5358 S:      Maintained
5359 F:      Documentation/driver-api/dcdbas.rst
5360 F:      drivers/platform/x86/dell/dcdbas.*
5361
5362 DELL WMI DESCRIPTOR DRIVER
5363 L:      Dell.Client.Kernel@dell.com
5364 S:      Maintained
5365 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5366
5367 DELL WMI SYSMAN DRIVER
5368 M:      Divya Bharathi <divya.bharathi@dell.com>
5369 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5370 L:      Dell.Client.Kernel@dell.com
5371 L:      platform-driver-x86@vger.kernel.org
5372 S:      Maintained
5373 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5374 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5375
5376 DELL WMI NOTIFICATIONS DRIVER
5377 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5378 M:      Pali Rohár <pali@kernel.org>
5379 S:      Maintained
5380 F:      drivers/platform/x86/dell/dell-wmi-base.c
5381
5382 DELL WMI HARDWARE PRIVACY SUPPORT
5383 M:      Perry Yuan <Perry.Yuan@dell.com>
5384 L:      Dell.Client.Kernel@dell.com
5385 L:      platform-driver-x86@vger.kernel.org
5386 S:      Maintained
5387 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5388
5389 DELTA ST MEDIA DRIVER
5390 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5391 L:      linux-media@vger.kernel.org
5392 S:      Supported
5393 W:      https://linuxtv.org
5394 T:      git git://linuxtv.org/media_tree.git
5395 F:      drivers/media/platform/sti/delta
5396
5397 DELTA DPS920AB PSU DRIVER
5398 M:      Robert Marko <robert.marko@sartura.hr>
5399 L:      linux-hwmon@vger.kernel.org
5400 S:      Maintained
5401 F:      Documentation/hwmon/dps920ab.rst
5402 F:      drivers/hwmon/pmbus/dps920ab.c
5403
5404 DENALI NAND DRIVER
5405 L:      linux-mtd@lists.infradead.org
5406 S:      Orphan
5407 F:      drivers/mtd/nand/raw/denali*
5408
5409 DESIGNWARE EDMA CORE IP DRIVER
5410 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5411 L:      dmaengine@vger.kernel.org
5412 S:      Maintained
5413 F:      drivers/dma/dw-edma/
5414 F:      include/linux/dma/edma.h
5415
5416 DESIGNWARE XDATA IP DRIVER
5417 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5418 L:      linux-pci@vger.kernel.org
5419 S:      Maintained
5420 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5421 F:      drivers/misc/dw-xdata-pcie.c
5422
5423 DESIGNWARE USB2 DRD IP DRIVER
5424 M:      Minas Harutyunyan <hminas@synopsys.com>
5425 L:      linux-usb@vger.kernel.org
5426 S:      Maintained
5427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5428 F:      drivers/usb/dwc2/
5429
5430 DESIGNWARE USB3 DRD IP DRIVER
5431 M:      Felipe Balbi <balbi@kernel.org>
5432 L:      linux-usb@vger.kernel.org
5433 S:      Maintained
5434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5435 F:      drivers/usb/dwc3/
5436
5437 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5438 M:      Andreas Klinger <ak@it-klinger.de>
5439 L:      linux-iio@vger.kernel.org
5440 S:      Maintained
5441 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5442 F:      drivers/iio/proximity/srf*.c
5443
5444 DEVICE COREDUMP (DEV_COREDUMP)
5445 M:      Johannes Berg <johannes@sipsolutions.net>
5446 L:      linux-kernel@vger.kernel.org
5447 S:      Maintained
5448 F:      drivers/base/devcoredump.c
5449 F:      include/linux/devcoredump.h
5450
5451 DEVICE DEPENDENCY HELPER SCRIPT
5452 M:      Saravana Kannan <saravanak@google.com>
5453 L:      linux-kernel@vger.kernel.org
5454 S:      Maintained
5455 F:      scripts/dev-needs.sh
5456
5457 DEVICE DIRECT ACCESS (DAX)
5458 M:      Dan Williams <dan.j.williams@intel.com>
5459 M:      Vishal Verma <vishal.l.verma@intel.com>
5460 M:      Dave Jiang <dave.jiang@intel.com>
5461 L:      nvdimm@lists.linux.dev
5462 S:      Supported
5463 F:      drivers/dax/
5464
5465 DEVICE FREQUENCY (DEVFREQ)
5466 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5467 M:      Kyungmin Park <kyungmin.park@samsung.com>
5468 M:      Chanwoo Choi <cw00.choi@samsung.com>
5469 L:      linux-pm@vger.kernel.org
5470 S:      Maintained
5471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5472 F:      Documentation/devicetree/bindings/devfreq/
5473 F:      drivers/devfreq/
5474 F:      include/linux/devfreq.h
5475 F:      include/trace/events/devfreq.h
5476
5477 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5478 M:      Chanwoo Choi <cw00.choi@samsung.com>
5479 L:      linux-pm@vger.kernel.org
5480 S:      Supported
5481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5482 F:      Documentation/devicetree/bindings/devfreq/event/
5483 F:      drivers/devfreq/devfreq-event.c
5484 F:      drivers/devfreq/event/
5485 F:      include/dt-bindings/pmu/exynos_ppmu.h
5486 F:      include/linux/devfreq-event.h
5487
5488 DEVICE NUMBER REGISTRY
5489 M:      Torben Mathiasen <device@lanana.org>
5490 S:      Maintained
5491 W:      http://lanana.org/docs/device-list/index.html
5492
5493 DEVICE RESOURCE MANAGEMENT HELPERS
5494 M:      Hans de Goede <hdegoede@redhat.com>
5495 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5496 S:      Maintained
5497 F:      include/linux/devm-helpers.h
5498
5499 DEVICE-MAPPER  (LVM)
5500 M:      Alasdair Kergon <agk@redhat.com>
5501 M:      Mike Snitzer <snitzer@redhat.com>
5502 M:      dm-devel@redhat.com
5503 L:      dm-devel@redhat.com
5504 S:      Maintained
5505 W:      http://sources.redhat.com/dm
5506 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5508 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5509 F:      Documentation/admin-guide/device-mapper/
5510 F:      drivers/md/Kconfig
5511 F:      drivers/md/Makefile
5512 F:      drivers/md/dm*
5513 F:      drivers/md/persistent-data/
5514 F:      include/linux/device-mapper.h
5515 F:      include/linux/dm-*.h
5516 F:      include/uapi/linux/dm-*.h
5517
5518 DEVLINK
5519 M:      Jiri Pirko <jiri@nvidia.com>
5520 L:      netdev@vger.kernel.org
5521 S:      Supported
5522 F:      Documentation/networking/devlink
5523 F:      include/net/devlink.h
5524 F:      include/uapi/linux/devlink.h
5525 F:      net/core/devlink.c
5526
5527 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5528 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5529 L:      kernel@dh-electronics.com
5530 S:      Maintained
5531 F:      arch/arm/boot/dts/imx6*-dhcom-*
5532
5533 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5534 M:      Marek Vasut <marex@denx.de>
5535 L:      kernel@dh-electronics.com
5536 S:      Maintained
5537 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5538 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5539
5540 DIALOG SEMICONDUCTOR DRIVERS
5541 M:      Support Opensource <support.opensource@diasemi.com>
5542 S:      Supported
5543 W:      http://www.dialog-semiconductor.com/products
5544 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5545 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5546 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5547 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5548 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5549 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5550 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5551 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5552 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5553 F:      Documentation/hwmon/da90??.rst
5554 F:      drivers/gpio/gpio-da90??.c
5555 F:      drivers/hwmon/da90??-hwmon.c
5556 F:      drivers/iio/adc/da91??-*.c
5557 F:      drivers/input/misc/da72??.[ch]
5558 F:      drivers/input/misc/da90??_onkey.c
5559 F:      drivers/input/touchscreen/da9052_tsi.c
5560 F:      drivers/leds/leds-da90??.c
5561 F:      drivers/mfd/da903x.c
5562 F:      drivers/mfd/da90??-*.c
5563 F:      drivers/mfd/da91??-*.c
5564 F:      drivers/pinctrl/pinctrl-da90??.c
5565 F:      drivers/power/supply/da9052-battery.c
5566 F:      drivers/power/supply/da91??-*.c
5567 F:      drivers/regulator/da9???-regulator.[ch]
5568 F:      drivers/regulator/slg51000-regulator.[ch]
5569 F:      drivers/rtc/rtc-da90??.c
5570 F:      drivers/thermal/da90??-thermal.c
5571 F:      drivers/video/backlight/da90??_bl.c
5572 F:      drivers/watchdog/da90??_wdt.c
5573 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5574 F:      include/linux/mfd/da903x.h
5575 F:      include/linux/mfd/da9052/
5576 F:      include/linux/mfd/da9055/
5577 F:      include/linux/mfd/da9062/
5578 F:      include/linux/mfd/da9063/
5579 F:      include/linux/mfd/da9150/
5580 F:      include/linux/regulator/da9211.h
5581 F:      include/sound/da[79]*.h
5582 F:      sound/soc/codecs/da[79]*.[ch]
5583
5584 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5585 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5586 L:      linux-gpio@vger.kernel.org
5587 S:      Maintained
5588 F:      drivers/gpio/gpio-gpio-mm.c
5589
5590 DIOLAN U2C-12 I2C DRIVER
5591 M:      Guenter Roeck <linux@roeck-us.net>
5592 L:      linux-i2c@vger.kernel.org
5593 S:      Maintained
5594 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5595
5596 DIRECTORY NOTIFICATION (DNOTIFY)
5597 M:      Jan Kara <jack@suse.cz>
5598 R:      Amir Goldstein <amir73il@gmail.com>
5599 L:      linux-fsdevel@vger.kernel.org
5600 S:      Maintained
5601 F:      Documentation/filesystems/dnotify.rst
5602 F:      fs/notify/dnotify/
5603 F:      include/linux/dnotify.h
5604
5605 DISK GEOMETRY AND PARTITION HANDLING
5606 M:      Andries Brouwer <aeb@cwi.nl>
5607 S:      Maintained
5608 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5609 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5610 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5611
5612 DISKQUOTA
5613 M:      Jan Kara <jack@suse.com>
5614 S:      Maintained
5615 F:      Documentation/filesystems/quota.rst
5616 F:      fs/quota/
5617 F:      include/linux/quota*.h
5618 F:      include/uapi/linux/quota*.h
5619
5620 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5621 M:      Bernie Thompson <bernie@plugable.com>
5622 L:      linux-fbdev@vger.kernel.org
5623 S:      Maintained
5624 W:      http://plugable.com/category/projects/udlfb/
5625 F:      Documentation/fb/udlfb.rst
5626 F:      drivers/video/fbdev/udlfb.c
5627 F:      include/video/udlfb.h
5628
5629 DISTRIBUTED LOCK MANAGER (DLM)
5630 M:      Christine Caulfield <ccaulfie@redhat.com>
5631 M:      David Teigland <teigland@redhat.com>
5632 L:      cluster-devel@redhat.com
5633 S:      Supported
5634 W:      http://sources.redhat.com/cluster/
5635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5636 F:      fs/dlm/
5637
5638 DMA BUFFER SHARING FRAMEWORK
5639 M:      Sumit Semwal <sumit.semwal@linaro.org>
5640 M:      Christian König <christian.koenig@amd.com>
5641 L:      linux-media@vger.kernel.org
5642 L:      dri-devel@lists.freedesktop.org
5643 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5644 S:      Maintained
5645 T:      git git://anongit.freedesktop.org/drm/drm-misc
5646 F:      Documentation/driver-api/dma-buf.rst
5647 F:      drivers/dma-buf/
5648 F:      include/linux/*fence.h
5649 F:      include/linux/dma-buf*
5650 F:      include/linux/dma-resv.h
5651 K:      \bdma_(?:buf|fence|resv)\b
5652
5653 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5654 M:      Vinod Koul <vkoul@kernel.org>
5655 L:      dmaengine@vger.kernel.org
5656 S:      Maintained
5657 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5659 F:      Documentation/devicetree/bindings/dma/
5660 F:      Documentation/driver-api/dmaengine/
5661 F:      drivers/dma/
5662 F:      include/linux/dma/
5663 F:      include/linux/dmaengine.h
5664 F:      include/linux/of_dma.h
5665
5666 DMA MAPPING HELPERS
5667 M:      Christoph Hellwig <hch@lst.de>
5668 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5669 R:      Robin Murphy <robin.murphy@arm.com>
5670 L:      iommu@lists.linux-foundation.org
5671 S:      Supported
5672 W:      http://git.infradead.org/users/hch/dma-mapping.git
5673 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5674 F:      include/asm-generic/dma-mapping.h
5675 F:      include/linux/dma-direct.h
5676 F:      include/linux/dma-mapping.h
5677 F:      include/linux/dma-map-ops.h
5678 F:      kernel/dma/
5679
5680 DMA MAPPING BENCHMARK
5681 M:      Barry Song <song.bao.hua@hisilicon.com>
5682 L:      iommu@lists.linux-foundation.org
5683 F:      kernel/dma/map_benchmark.c
5684 F:      tools/testing/selftests/dma/
5685
5686 DMA-BUF HEAPS FRAMEWORK
5687 M:      Sumit Semwal <sumit.semwal@linaro.org>
5688 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5689 R:      Liam Mark <lmark@codeaurora.org>
5690 R:      Laura Abbott <labbott@redhat.com>
5691 R:      Brian Starkey <Brian.Starkey@arm.com>
5692 R:      John Stultz <john.stultz@linaro.org>
5693 L:      linux-media@vger.kernel.org
5694 L:      dri-devel@lists.freedesktop.org
5695 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5696 S:      Maintained
5697 T:      git git://anongit.freedesktop.org/drm/drm-misc
5698 F:      drivers/dma-buf/dma-heap.c
5699 F:      drivers/dma-buf/heaps/*
5700 F:      include/linux/dma-heap.h
5701 F:      include/uapi/linux/dma-heap.h
5702
5703 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5704 M:      Lukasz Luba <lukasz.luba@arm.com>
5705 L:      linux-pm@vger.kernel.org
5706 L:      linux-samsung-soc@vger.kernel.org
5707 S:      Maintained
5708 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5709 F:      drivers/memory/samsung/exynos5422-dmc.c
5710
5711 DME1737 HARDWARE MONITOR DRIVER
5712 M:      Juerg Haefliger <juergh@gmail.com>
5713 L:      linux-hwmon@vger.kernel.org
5714 S:      Maintained
5715 F:      Documentation/hwmon/dme1737.rst
5716 F:      drivers/hwmon/dme1737.c
5717
5718 DMI/SMBIOS SUPPORT
5719 M:      Jean Delvare <jdelvare@suse.com>
5720 S:      Maintained
5721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5722 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5723 F:      drivers/firmware/dmi-id.c
5724 F:      drivers/firmware/dmi_scan.c
5725 F:      include/linux/dmi.h
5726
5727 DOCUMENTATION
5728 M:      Jonathan Corbet <corbet@lwn.net>
5729 L:      linux-doc@vger.kernel.org
5730 S:      Maintained
5731 P:      Documentation/doc-guide/maintainer-profile.rst
5732 T:      git git://git.lwn.net/linux.git docs-next
5733 F:      Documentation/
5734 F:      scripts/documentation-file-ref-check
5735 F:      scripts/kernel-doc
5736 F:      scripts/sphinx-pre-install
5737 X:      Documentation/ABI/
5738 X:      Documentation/admin-guide/media/
5739 X:      Documentation/devicetree/
5740 X:      Documentation/driver-api/media/
5741 X:      Documentation/firmware-guide/acpi/
5742 X:      Documentation/i2c/
5743 X:      Documentation/power/
5744 X:      Documentation/spi/
5745 X:      Documentation/userspace-api/media/
5746
5747 DOCUMENTATION REPORTING ISSUES
5748 M:      Thorsten Leemhuis <linux@leemhuis.info>
5749 L:      linux-doc@vger.kernel.org
5750 S:      Maintained
5751 F:      Documentation/admin-guide/reporting-issues.rst
5752
5753 DOCUMENTATION SCRIPTS
5754 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5755 L:      linux-doc@vger.kernel.org
5756 S:      Maintained
5757 F:      Documentation/sphinx/parse-headers.pl
5758 F:      scripts/documentation-file-ref-check
5759 F:      scripts/sphinx-pre-install
5760
5761 DOCUMENTATION/ITALIAN
5762 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5763 L:      linux-doc@vger.kernel.org
5764 S:      Maintained
5765 F:      Documentation/translations/it_IT
5766
5767 DONGWOON DW9714 LENS VOICE COIL DRIVER
5768 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5769 L:      linux-media@vger.kernel.org
5770 S:      Maintained
5771 T:      git git://linuxtv.org/media_tree.git
5772 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5773 F:      drivers/media/i2c/dw9714.c
5774
5775 DONGWOON DW9768 LENS VOICE COIL DRIVER
5776 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5777 L:      linux-media@vger.kernel.org
5778 S:      Maintained
5779 T:      git git://linuxtv.org/media_tree.git
5780 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5781 F:      drivers/media/i2c/dw9768.c
5782
5783 DONGWOON DW9807 LENS VOICE COIL DRIVER
5784 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5785 L:      linux-media@vger.kernel.org
5786 S:      Maintained
5787 T:      git git://linuxtv.org/media_tree.git
5788 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5789 F:      drivers/media/i2c/dw9807-vcm.c
5790
5791 DOUBLETALK DRIVER
5792 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5793 L:      blinux-list@redhat.com
5794 S:      Maintained
5795 F:      drivers/char/dtlk.c
5796 F:      include/linux/dtlk.h
5797
5798 DPAA2 DATAPATH I/O (DPIO) DRIVER
5799 M:      Roy Pledge <Roy.Pledge@nxp.com>
5800 L:      linux-kernel@vger.kernel.org
5801 S:      Maintained
5802 F:      drivers/soc/fsl/dpio
5803
5804 DPAA2 ETHERNET DRIVER
5805 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5806 L:      netdev@vger.kernel.org
5807 S:      Maintained
5808 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5809 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5810 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5811 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5812 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5813 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5814 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5815 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5816 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5817
5818 DPAA2 ETHERNET SWITCH DRIVER
5819 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5820 L:      netdev@vger.kernel.org
5821 S:      Maintained
5822 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
5823 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5824 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
5825
5826 DPT_I2O SCSI RAID DRIVER
5827 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5828 L:      linux-scsi@vger.kernel.org
5829 S:      Maintained
5830 W:      http://www.adaptec.com/
5831 F:      drivers/scsi/dpt*
5832 F:      drivers/scsi/dpt/
5833
5834 DRBD DRIVER
5835 M:      Philipp Reisner <philipp.reisner@linbit.com>
5836 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5837 L:      drbd-dev@lists.linbit.com
5838 S:      Supported
5839 W:      http://www.drbd.org
5840 T:      git git://git.linbit.com/linux-drbd.git
5841 T:      git git://git.linbit.com/drbd-8.4.git
5842 F:      Documentation/admin-guide/blockdev/
5843 F:      drivers/block/drbd/
5844 F:      lib/lru_cache.c
5845
5846 DRIVER COMPONENT FRAMEWORK
5847 L:      dri-devel@lists.freedesktop.org
5848 F:      drivers/base/component.c
5849 F:      include/linux/component.h
5850
5851 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5852 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5853 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5854 S:      Supported
5855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5856 F:      Documentation/core-api/kobject.rst
5857 F:      drivers/base/
5858 F:      fs/debugfs/
5859 F:      fs/sysfs/
5860 F:      include/linux/debugfs.h
5861 F:      include/linux/kobj*
5862 F:      lib/kobj*
5863
5864 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5865 M:      Nishanth Menon <nm@ti.com>
5866 L:      linux-pm@vger.kernel.org
5867 S:      Maintained
5868 F:      drivers/soc/ti/smartreflex.c
5869 F:      include/linux/power/smartreflex.h
5870
5871 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5872 M:      Maxime Ripard <mripard@kernel.org>
5873 M:      Chen-Yu Tsai <wens@csie.org>
5874 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
5875 L:      dri-devel@lists.freedesktop.org
5876 S:      Supported
5877 T:      git git://anongit.freedesktop.org/drm/drm-misc
5878 F:      drivers/gpu/drm/sun4i/sun8i*
5879
5880 DRM DRIVER FOR ARM PL111 CLCD
5881 M:      Emma Anholt <emma@anholt.net>
5882 S:      Supported
5883 T:      git git://anongit.freedesktop.org/drm/drm-misc
5884 F:      drivers/gpu/drm/pl111/
5885
5886 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5887 M:      Linus Walleij <linus.walleij@linaro.org>
5888 S:      Maintained
5889 T:      git git://anongit.freedesktop.org/drm/drm-misc
5890 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5891 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5892
5893 DRM DRIVER FOR ASPEED BMC GFX
5894 M:      Joel Stanley <joel@jms.id.au>
5895 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5896 S:      Supported
5897 T:      git git://anongit.freedesktop.org/drm/drm-misc
5898 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5899 F:      drivers/gpu/drm/aspeed/
5900
5901 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5902 M:      Dave Airlie <airlied@redhat.com>
5903 R:      Thomas Zimmermann <tzimmermann@suse.de>
5904 L:      dri-devel@lists.freedesktop.org
5905 S:      Supported
5906 T:      git git://anongit.freedesktop.org/drm/drm-misc
5907 F:      drivers/gpu/drm/ast/
5908
5909 DRM DRIVER FOR BOCHS VIRTUAL GPU
5910 M:      Gerd Hoffmann <kraxel@redhat.com>
5911 L:      virtualization@lists.linux-foundation.org
5912 S:      Maintained
5913 T:      git git://anongit.freedesktop.org/drm/drm-misc
5914 F:      drivers/gpu/drm/tiny/bochs.c
5915
5916 DRM DRIVER FOR BOE HIMAX8279D PANELS
5917 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5918 S:      Maintained
5919 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5920 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5921
5922 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5923 M:      Jagan Teki <jagan@amarulasolutions.com>
5924 S:      Maintained
5925 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5926 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
5927
5928 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5929 M:      Linus Walleij <linus.walleij@linaro.org>
5930 S:      Maintained
5931 T:      git git://anongit.freedesktop.org/drm/drm-misc
5932 F:      drivers/gpu/drm/tve200/
5933
5934 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5935 M:      Icenowy Zheng <icenowy@aosc.io>
5936 S:      Maintained
5937 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5938 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5939
5940 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5941 M:      Jagan Teki <jagan@amarulasolutions.com>
5942 S:      Maintained
5943 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5944 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5945
5946 DRM DRIVER FOR GENERIC USB DISPLAY
5947 M:      Noralf Trønnes <noralf@tronnes.org>
5948 S:      Maintained
5949 W:      https://github.com/notro/gud/wiki
5950 T:      git git://anongit.freedesktop.org/drm/drm-misc
5951 F:      drivers/gpu/drm/gud/
5952 F:      include/drm/gud.h
5953
5954 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5955 M:      Hans de Goede <hdegoede@redhat.com>
5956 S:      Maintained
5957 T:      git git://anongit.freedesktop.org/drm/drm-misc
5958 F:      drivers/gpu/drm/tiny/gm12u320.c
5959
5960 DRM DRIVER FOR HX8357D PANELS
5961 M:      Emma Anholt <emma@anholt.net>
5962 S:      Maintained
5963 T:      git git://anongit.freedesktop.org/drm/drm-misc
5964 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5965 F:      drivers/gpu/drm/tiny/hx8357d.c
5966
5967 DRM DRIVER FOR ILITEK ILI9225 PANELS
5968 M:      David Lechner <david@lechnology.com>
5969 S:      Maintained
5970 T:      git git://anongit.freedesktop.org/drm/drm-misc
5971 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5972 F:      drivers/gpu/drm/tiny/ili9225.c
5973
5974 DRM DRIVER FOR ILITEK ILI9486 PANELS
5975 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5976 S:      Maintained
5977 T:      git git://anongit.freedesktop.org/drm/drm-misc
5978 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5979 F:      drivers/gpu/drm/tiny/ili9486.c
5980
5981 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5982 S:      Orphan / Obsolete
5983 F:      drivers/gpu/drm/i810/
5984 F:      include/uapi/drm/i810_drm.h
5985
5986 DRM DRIVER FOR LVDS PANELS
5987 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5988 L:      dri-devel@lists.freedesktop.org
5989 T:      git git://anongit.freedesktop.org/drm/drm-misc
5990 S:      Maintained
5991 F:      drivers/gpu/drm/panel/panel-lvds.c
5992 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5993
5994 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5995 M:      Guido Günther <agx@sigxcpu.org>
5996 R:      Purism Kernel Team <kernel@puri.sm>
5997 S:      Maintained
5998 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5999 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6000
6001 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6002 S:      Orphan / Obsolete
6003 F:      drivers/gpu/drm/mga/
6004 F:      include/uapi/drm/mga_drm.h
6005
6006 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6007 M:      Dave Airlie <airlied@redhat.com>
6008 R:      Thomas Zimmermann <tzimmermann@suse.de>
6009 L:      dri-devel@lists.freedesktop.org
6010 S:      Supported
6011 T:      git git://anongit.freedesktop.org/drm/drm-misc
6012 F:      drivers/gpu/drm/mgag200/
6013
6014 DRM DRIVER FOR MI0283QT
6015 M:      Noralf Trønnes <noralf@tronnes.org>
6016 S:      Maintained
6017 T:      git git://anongit.freedesktop.org/drm/drm-misc
6018 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6019 F:      drivers/gpu/drm/tiny/mi0283qt.c
6020
6021 DRM DRIVER FOR MSM ADRENO GPU
6022 M:      Rob Clark <robdclark@gmail.com>
6023 M:      Sean Paul <sean@poorly.run>
6024 L:      linux-arm-msm@vger.kernel.org
6025 L:      dri-devel@lists.freedesktop.org
6026 L:      freedreno@lists.freedesktop.org
6027 S:      Maintained
6028 T:      git https://gitlab.freedesktop.org/drm/msm.git
6029 F:      Documentation/devicetree/bindings/display/msm/
6030 F:      drivers/gpu/drm/msm/
6031 F:      include/uapi/drm/msm_drm.h
6032
6033 DRM DRIVER FOR NOVATEK NT35510 PANELS
6034 M:      Linus Walleij <linus.walleij@linaro.org>
6035 S:      Maintained
6036 T:      git git://anongit.freedesktop.org/drm/drm-misc
6037 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6038 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6039
6040 DRM DRIVER FOR NOVATEK NT36672A PANELS
6041 M:      Sumit Semwal <sumit.semwal@linaro.org>
6042 S:      Maintained
6043 T:      git git://anongit.freedesktop.org/drm/drm-misc
6044 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6045 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6046
6047 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6048 M:      Ben Skeggs <bskeggs@redhat.com>
6049 L:      dri-devel@lists.freedesktop.org
6050 L:      nouveau@lists.freedesktop.org
6051 S:      Supported
6052 T:      git git://github.com/skeggsb/linux
6053 F:      drivers/gpu/drm/nouveau/
6054 F:      include/uapi/drm/nouveau_drm.h
6055
6056 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6057 M:      Stefan Mavrodiev <stefan@olimex.com>
6058 S:      Maintained
6059 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6060 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6061
6062 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6063 M:      Noralf Trønnes <noralf@tronnes.org>
6064 S:      Maintained
6065 T:      git git://anongit.freedesktop.org/drm/drm-misc
6066 F:      Documentation/devicetree/bindings/display/repaper.txt
6067 F:      drivers/gpu/drm/tiny/repaper.c
6068
6069 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6070 M:      Dave Airlie <airlied@redhat.com>
6071 M:      Gerd Hoffmann <kraxel@redhat.com>
6072 L:      virtualization@lists.linux-foundation.org
6073 S:      Obsolete
6074 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6075 T:      git git://anongit.freedesktop.org/drm/drm-misc
6076 F:      drivers/gpu/drm/tiny/cirrus.c
6077
6078 DRM DRIVER FOR QXL VIRTUAL GPU
6079 M:      Dave Airlie <airlied@redhat.com>
6080 M:      Gerd Hoffmann <kraxel@redhat.com>
6081 L:      virtualization@lists.linux-foundation.org
6082 L:      spice-devel@lists.freedesktop.org
6083 S:      Maintained
6084 T:      git git://anongit.freedesktop.org/drm/drm-misc
6085 F:      drivers/gpu/drm/qxl/
6086 F:      include/uapi/drm/qxl_drm.h
6087
6088 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6089 S:      Orphan / Obsolete
6090 F:      drivers/gpu/drm/r128/
6091 F:      include/uapi/drm/r128_drm.h
6092
6093 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6094 M:      Robert Chiras <robert.chiras@nxp.com>
6095 S:      Maintained
6096 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6097 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6098
6099 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6100 M:      Linus Walleij <linus.walleij@linaro.org>
6101 S:      Maintained
6102 T:      git git://anongit.freedesktop.org/drm/drm-misc
6103 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6104 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6105
6106 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6107 M:      Markuss Broks <markuss.broks@gmail.com>
6108 S:      Maintained
6109 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6110 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6111
6112 DRM DRIVER FOR SITRONIX ST7703 PANELS
6113 M:      Guido Günther <agx@sigxcpu.org>
6114 R:      Purism Kernel Team <kernel@puri.sm>
6115 R:      Ondrej Jirman <megous@megous.com>
6116 S:      Maintained
6117 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6118 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6119
6120 DRM DRIVER FOR SAVAGE VIDEO CARDS
6121 S:      Orphan / Obsolete
6122 F:      drivers/gpu/drm/savage/
6123 F:      include/uapi/drm/savage_drm.h
6124
6125 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6126 M:      Thomas Zimmermann <tzimmermann@suse.de>
6127 L:      dri-devel@lists.freedesktop.org
6128 S:      Maintained
6129 T:      git git://anongit.freedesktop.org/drm/drm-misc
6130 F:      drivers/gpu/drm/tiny/simpledrm.c
6131
6132 DRM DRIVER FOR SIS VIDEO CARDS
6133 S:      Orphan / Obsolete
6134 F:      drivers/gpu/drm/sis/
6135 F:      include/uapi/drm/sis_drm.h
6136
6137 DRM DRIVER FOR SITRONIX ST7586 PANELS
6138 M:      David Lechner <david@lechnology.com>
6139 S:      Maintained
6140 T:      git git://anongit.freedesktop.org/drm/drm-misc
6141 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6142 F:      drivers/gpu/drm/tiny/st7586.c
6143
6144 DRM DRIVER FOR SITRONIX ST7701 PANELS
6145 M:      Jagan Teki <jagan@amarulasolutions.com>
6146 S:      Maintained
6147 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6148 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6149
6150 DRM DRIVER FOR SITRONIX ST7735R PANELS
6151 M:      David Lechner <david@lechnology.com>
6152 S:      Maintained
6153 T:      git git://anongit.freedesktop.org/drm/drm-misc
6154 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6155 F:      drivers/gpu/drm/tiny/st7735r.c
6156
6157 DRM DRIVER FOR SONY ACX424AKP PANELS
6158 M:      Linus Walleij <linus.walleij@linaro.org>
6159 S:      Maintained
6160 T:      git git://anongit.freedesktop.org/drm/drm-misc
6161 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
6162
6163 DRM DRIVER FOR ST-ERICSSON MCDE
6164 M:      Linus Walleij <linus.walleij@linaro.org>
6165 S:      Maintained
6166 T:      git git://anongit.freedesktop.org/drm/drm-misc
6167 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6168 F:      drivers/gpu/drm/mcde/
6169
6170 DRM DRIVER FOR TDFX VIDEO CARDS
6171 S:      Orphan / Obsolete
6172 F:      drivers/gpu/drm/tdfx/
6173
6174 DRM DRIVER FOR TPO TPG110 PANELS
6175 M:      Linus Walleij <linus.walleij@linaro.org>
6176 S:      Maintained
6177 T:      git git://anongit.freedesktop.org/drm/drm-misc
6178 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6179 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6180
6181 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6182 M:      Dave Airlie <airlied@redhat.com>
6183 R:      Sean Paul <sean@poorly.run>
6184 R:      Thomas Zimmermann <tzimmermann@suse.de>
6185 L:      dri-devel@lists.freedesktop.org
6186 S:      Supported
6187 T:      git git://anongit.freedesktop.org/drm/drm-misc
6188 F:      drivers/gpu/drm/udl/
6189
6190 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6191 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6192 M:      Melissa Wen <melissa.srw@gmail.com>
6193 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6194 R:      Daniel Vetter <daniel@ffwll.ch>
6195 L:      dri-devel@lists.freedesktop.org
6196 S:      Maintained
6197 T:      git git://anongit.freedesktop.org/drm/drm-misc
6198 F:      Documentation/gpu/vkms.rst
6199 F:      drivers/gpu/drm/vkms/
6200
6201 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6202 M:      Hans de Goede <hdegoede@redhat.com>
6203 L:      dri-devel@lists.freedesktop.org
6204 S:      Maintained
6205 T:      git git://anongit.freedesktop.org/drm/drm-misc
6206 F:      drivers/gpu/drm/vboxvideo/
6207
6208 DRM DRIVER FOR VMWARE VIRTUAL GPU
6209 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
6210 M:      Zack Rusin <zackr@vmware.com>
6211 L:      dri-devel@lists.freedesktop.org
6212 S:      Supported
6213 T:      git git://anongit.freedesktop.org/drm/drm-misc
6214 F:      drivers/gpu/drm/vmwgfx/
6215 F:      include/uapi/drm/vmwgfx_drm.h
6216
6217 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6218 M:      Linus Walleij <linus.walleij@linaro.org>
6219 S:      Maintained
6220 T:      git git://anongit.freedesktop.org/drm/drm-misc
6221 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6222 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6223
6224 DRM DRIVERS
6225 M:      David Airlie <airlied@linux.ie>
6226 M:      Daniel Vetter <daniel@ffwll.ch>
6227 L:      dri-devel@lists.freedesktop.org
6228 S:      Maintained
6229 B:      https://gitlab.freedesktop.org/drm
6230 C:      irc://irc.oftc.net/dri-devel
6231 T:      git git://anongit.freedesktop.org/drm/drm
6232 F:      Documentation/devicetree/bindings/display/
6233 F:      Documentation/devicetree/bindings/gpu/
6234 F:      Documentation/gpu/
6235 F:      drivers/gpu/
6236 F:      include/drm/
6237 F:      include/linux/vga*
6238 F:      include/uapi/drm/
6239
6240 DRM DRIVERS AND MISC GPU PATCHES
6241 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6242 M:      Maxime Ripard <mripard@kernel.org>
6243 M:      Thomas Zimmermann <tzimmermann@suse.de>
6244 S:      Maintained
6245 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6246 T:      git git://anongit.freedesktop.org/drm/drm-misc
6247 F:      Documentation/gpu/
6248 F:      drivers/gpu/drm/*
6249 F:      drivers/gpu/vga/
6250 F:      include/drm/drm*
6251 F:      include/linux/vga*
6252 F:      include/uapi/drm/drm*
6253
6254 DRM DRIVERS FOR ALLWINNER A10
6255 M:      Maxime Ripard <mripard@kernel.org>
6256 M:      Chen-Yu Tsai <wens@csie.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/allwinner*
6261 F:      drivers/gpu/drm/sun4i/
6262
6263 DRM DRIVERS FOR AMLOGIC SOCS
6264 M:      Neil Armstrong <narmstrong@baylibre.com>
6265 L:      dri-devel@lists.freedesktop.org
6266 L:      linux-amlogic@lists.infradead.org
6267 S:      Supported
6268 W:      http://linux-meson.com/
6269 T:      git git://anongit.freedesktop.org/drm/drm-misc
6270 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6271 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6272 F:      Documentation/gpu/meson.rst
6273 F:      drivers/gpu/drm/meson/
6274
6275 DRM DRIVERS FOR ATMEL HLCDC
6276 M:      Sam Ravnborg <sam@ravnborg.org>
6277 M:      Boris Brezillon <bbrezillon@kernel.org>
6278 L:      dri-devel@lists.freedesktop.org
6279 S:      Supported
6280 T:      git git://anongit.freedesktop.org/drm/drm-misc
6281 F:      Documentation/devicetree/bindings/display/atmel/
6282 F:      drivers/gpu/drm/atmel-hlcdc/
6283
6284 DRM DRIVERS FOR BRIDGE CHIPS
6285 M:      Andrzej Hajda <a.hajda@samsung.com>
6286 M:      Neil Armstrong <narmstrong@baylibre.com>
6287 M:      Robert Foss <robert.foss@linaro.org>
6288 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6289 R:      Jonas Karlman <jonas@kwiboo.se>
6290 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6291 S:      Maintained
6292 T:      git git://anongit.freedesktop.org/drm/drm-misc
6293 F:      drivers/gpu/drm/bridge/
6294
6295 DRM DRIVERS FOR EXYNOS
6296 M:      Inki Dae <inki.dae@samsung.com>
6297 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6298 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6299 M:      Kyungmin Park <kyungmin.park@samsung.com>
6300 L:      dri-devel@lists.freedesktop.org
6301 S:      Supported
6302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6303 F:      Documentation/devicetree/bindings/display/exynos/
6304 F:      drivers/gpu/drm/exynos/
6305 F:      include/uapi/drm/exynos_drm.h
6306
6307 DRM DRIVERS FOR FREESCALE DCU
6308 M:      Stefan Agner <stefan@agner.ch>
6309 M:      Alison Wang <alison.wang@nxp.com>
6310 L:      dri-devel@lists.freedesktop.org
6311 S:      Supported
6312 T:      git git://anongit.freedesktop.org/drm/drm-misc
6313 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6314 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6315 F:      drivers/gpu/drm/fsl-dcu/
6316
6317 DRM DRIVERS FOR FREESCALE IMX
6318 M:      Philipp Zabel <p.zabel@pengutronix.de>
6319 L:      dri-devel@lists.freedesktop.org
6320 S:      Maintained
6321 F:      Documentation/devicetree/bindings/display/imx/
6322 F:      drivers/gpu/drm/imx/
6323 F:      drivers/gpu/ipu-v3/
6324
6325 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6326 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6327 L:      dri-devel@lists.freedesktop.org
6328 S:      Maintained
6329 T:      git git://github.com/patjak/drm-gma500
6330 F:      drivers/gpu/drm/gma500/
6331
6332 DRM DRIVERS FOR HISILICON
6333 M:      Xinliang Liu <xinliang.liu@linaro.org>
6334 M:      Tian Tao  <tiantao6@hisilicon.com>
6335 R:      John Stultz <john.stultz@linaro.org>
6336 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6337 R:      Chen Feng <puck.chen@hisilicon.com>
6338 L:      dri-devel@lists.freedesktop.org
6339 S:      Maintained
6340 T:      git git://anongit.freedesktop.org/drm/drm-misc
6341 F:      Documentation/devicetree/bindings/display/hisilicon/
6342 F:      drivers/gpu/drm/hisilicon/
6343
6344 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6345 M:      Deepak Rawat <drawat.floss@gmail.com>
6346 L:      linux-hyperv@vger.kernel.org
6347 L:      dri-devel@lists.freedesktop.org
6348 S:      Maintained
6349 T:      git git://anongit.freedesktop.org/drm/drm-misc
6350 F:      drivers/gpu/drm/hyperv
6351
6352 DRM DRIVERS FOR LIMA
6353 M:      Qiang Yu <yuq825@gmail.com>
6354 L:      dri-devel@lists.freedesktop.org
6355 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6356 S:      Maintained
6357 T:      git git://anongit.freedesktop.org/drm/drm-misc
6358 F:      drivers/gpu/drm/lima/
6359 F:      include/uapi/drm/lima_drm.h
6360
6361 DRM DRIVERS FOR MEDIATEK
6362 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6363 M:      Philipp Zabel <p.zabel@pengutronix.de>
6364 L:      dri-devel@lists.freedesktop.org
6365 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6366 S:      Supported
6367 F:      Documentation/devicetree/bindings/display/mediatek/
6368 F:      drivers/gpu/drm/mediatek/
6369 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6370 F:      drivers/phy/mediatek/phy-mtk-mipi*
6371
6372 DRM DRIVERS FOR NVIDIA TEGRA
6373 M:      Thierry Reding <thierry.reding@gmail.com>
6374 L:      dri-devel@lists.freedesktop.org
6375 L:      linux-tegra@vger.kernel.org
6376 S:      Supported
6377 T:      git git://anongit.freedesktop.org/tegra/linux.git
6378 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6379 F:      Documentation/devicetree/bindings/gpu/host1x/
6380 F:      drivers/gpu/drm/tegra/
6381 F:      drivers/gpu/host1x/
6382 F:      include/linux/host1x.h
6383 F:      include/uapi/drm/tegra_drm.h
6384
6385 DRM DRIVERS FOR RENESAS
6386 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6387 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6388 L:      dri-devel@lists.freedesktop.org
6389 L:      linux-renesas-soc@vger.kernel.org
6390 S:      Supported
6391 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6392 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6393 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6394 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6395 F:      drivers/gpu/drm/rcar-du/
6396 F:      drivers/gpu/drm/shmobile/
6397 F:      include/linux/platform_data/shmob_drm.h
6398
6399 DRM DRIVERS FOR ROCKCHIP
6400 M:      Sandy Huang <hjc@rock-chips.com>
6401 M:      Heiko Stübner <heiko@sntech.de>
6402 L:      dri-devel@lists.freedesktop.org
6403 S:      Maintained
6404 T:      git git://anongit.freedesktop.org/drm/drm-misc
6405 F:      Documentation/devicetree/bindings/display/rockchip/
6406 F:      drivers/gpu/drm/rockchip/
6407
6408 DRM DRIVERS FOR STI
6409 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6410 L:      dri-devel@lists.freedesktop.org
6411 S:      Maintained
6412 T:      git git://anongit.freedesktop.org/drm/drm-misc
6413 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6414 F:      drivers/gpu/drm/sti
6415
6416 DRM DRIVERS FOR STM
6417 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6418 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6419 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6420 L:      dri-devel@lists.freedesktop.org
6421 S:      Maintained
6422 T:      git git://anongit.freedesktop.org/drm/drm-misc
6423 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6424 F:      drivers/gpu/drm/stm
6425
6426 DRM DRIVERS FOR TI KEYSTONE
6427 M:      Jyri Sarha <jyri.sarha@iki.fi>
6428 M:      Tomi Valkeinen <tomba@kernel.org>
6429 L:      dri-devel@lists.freedesktop.org
6430 S:      Maintained
6431 T:      git git://anongit.freedesktop.org/drm/drm-misc
6432 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6433 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6434 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6435 F:      drivers/gpu/drm/tidss/
6436
6437 DRM DRIVERS FOR TI LCDC
6438 M:      Jyri Sarha <jyri.sarha@iki.fi>
6439 R:      Tomi Valkeinen <tomba@kernel.org>
6440 L:      dri-devel@lists.freedesktop.org
6441 S:      Maintained
6442 F:      Documentation/devicetree/bindings/display/tilcdc/
6443 F:      drivers/gpu/drm/tilcdc/
6444
6445 DRM DRIVERS FOR TI OMAP
6446 M:      Tomi Valkeinen <tomba@kernel.org>
6447 L:      dri-devel@lists.freedesktop.org
6448 S:      Maintained
6449 F:      Documentation/devicetree/bindings/display/ti/
6450 F:      drivers/gpu/drm/omapdrm/
6451
6452 DRM DRIVERS FOR V3D
6453 M:      Emma Anholt <emma@anholt.net>
6454 S:      Supported
6455 T:      git git://anongit.freedesktop.org/drm/drm-misc
6456 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6457 F:      drivers/gpu/drm/v3d/
6458 F:      include/uapi/drm/v3d_drm.h
6459
6460 DRM DRIVERS FOR VC4
6461 M:      Emma Anholt <emma@anholt.net>
6462 M:      Maxime Ripard <mripard@kernel.org>
6463 S:      Supported
6464 T:      git git://github.com/anholt/linux
6465 T:      git git://anongit.freedesktop.org/drm/drm-misc
6466 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6467 F:      drivers/gpu/drm/vc4/
6468 F:      include/uapi/drm/vc4_drm.h
6469
6470 DRM DRIVERS FOR VIVANTE GPU IP
6471 M:      Lucas Stach <l.stach@pengutronix.de>
6472 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6473 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6474 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6475 L:      dri-devel@lists.freedesktop.org
6476 S:      Maintained
6477 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6478 F:      drivers/gpu/drm/etnaviv/
6479 F:      include/uapi/drm/etnaviv_drm.h
6480
6481 DRM DRIVERS FOR XEN
6482 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6483 L:      dri-devel@lists.freedesktop.org
6484 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6485 S:      Supported
6486 T:      git git://anongit.freedesktop.org/drm/drm-misc
6487 F:      Documentation/gpu/xen-front.rst
6488 F:      drivers/gpu/drm/xen/
6489
6490 DRM DRIVERS FOR XILINX
6491 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6492 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6493 L:      dri-devel@lists.freedesktop.org
6494 S:      Maintained
6495 T:      git git://anongit.freedesktop.org/drm/drm-misc
6496 F:      Documentation/devicetree/bindings/display/xlnx/
6497 F:      drivers/gpu/drm/xlnx/
6498
6499 DRM PANEL DRIVERS
6500 M:      Thierry Reding <thierry.reding@gmail.com>
6501 R:      Sam Ravnborg <sam@ravnborg.org>
6502 L:      dri-devel@lists.freedesktop.org
6503 S:      Maintained
6504 T:      git git://anongit.freedesktop.org/drm/drm-misc
6505 F:      Documentation/devicetree/bindings/display/panel/
6506 F:      drivers/gpu/drm/drm_panel.c
6507 F:      drivers/gpu/drm/panel/
6508 F:      include/drm/drm_panel.h
6509
6510 DRM TTM SUBSYSTEM
6511 M:      Christian Koenig <christian.koenig@amd.com>
6512 M:      Huang Rui <ray.huang@amd.com>
6513 L:      dri-devel@lists.freedesktop.org
6514 S:      Maintained
6515 T:      git git://anongit.freedesktop.org/drm/drm-misc
6516 F:      drivers/gpu/drm/ttm/
6517 F:      include/drm/ttm/
6518
6519 DRM GPU SCHEDULER
6520 M:      Andrey Grodzovsky <andrey.grodzovsky@amd.com>
6521 L:      dri-devel@lists.freedesktop.org
6522 S:      Maintained
6523 T:      git git://anongit.freedesktop.org/drm/drm-misc
6524 F:      drivers/gpu/drm/scheduler/
6525 F:      include/drm/gpu_scheduler.h
6526
6527 DSBR100 USB FM RADIO DRIVER
6528 M:      Alexey Klimov <klimov.linux@gmail.com>
6529 L:      linux-media@vger.kernel.org
6530 S:      Maintained
6531 T:      git git://linuxtv.org/media_tree.git
6532 F:      drivers/media/radio/dsbr100.c
6533
6534 DT3155 MEDIA DRIVER
6535 M:      Hans Verkuil <hverkuil@xs4all.nl>
6536 L:      linux-media@vger.kernel.org
6537 S:      Odd Fixes
6538 W:      https://linuxtv.org
6539 T:      git git://linuxtv.org/media_tree.git
6540 F:      drivers/media/pci/dt3155/
6541
6542 DVB_USB_AF9015 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/af9015*
6551
6552 DVB_USB_AF9035 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/af9035*
6561
6562 DVB_USB_ANYSEE MEDIA DRIVER
6563 M:      Antti Palosaari <crope@iki.fi>
6564 L:      linux-media@vger.kernel.org
6565 S:      Maintained
6566 W:      https://linuxtv.org
6567 W:      http://palosaari.fi/linux/
6568 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6569 T:      git git://linuxtv.org/anttip/media_tree.git
6570 F:      drivers/media/usb/dvb-usb-v2/anysee*
6571
6572 DVB_USB_AU6610 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/au6610*
6581
6582 DVB_USB_CE6230 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 W:      http://palosaari.fi/linux/
6588 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6589 T:      git git://linuxtv.org/anttip/media_tree.git
6590 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6591
6592 DVB_USB_CXUSB MEDIA DRIVER
6593 M:      Michael Krufky <mkrufky@linuxtv.org>
6594 L:      linux-media@vger.kernel.org
6595 S:      Maintained
6596 W:      https://linuxtv.org
6597 W:      http://github.com/mkrufky
6598 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6599 T:      git git://linuxtv.org/media_tree.git
6600 F:      drivers/media/usb/dvb-usb/cxusb*
6601
6602 DVB_USB_EC168 MEDIA DRIVER
6603 M:      Antti Palosaari <crope@iki.fi>
6604 L:      linux-media@vger.kernel.org
6605 S:      Maintained
6606 W:      https://linuxtv.org
6607 W:      http://palosaari.fi/linux/
6608 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6609 T:      git git://linuxtv.org/anttip/media_tree.git
6610 F:      drivers/media/usb/dvb-usb-v2/ec168*
6611
6612 DVB_USB_GL861 MEDIA DRIVER
6613 M:      Antti Palosaari <crope@iki.fi>
6614 L:      linux-media@vger.kernel.org
6615 S:      Maintained
6616 W:      https://linuxtv.org
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/gl861*
6620
6621 DVB_USB_MXL111SF MEDIA DRIVER
6622 M:      Michael Krufky <mkrufky@linuxtv.org>
6623 L:      linux-media@vger.kernel.org
6624 S:      Maintained
6625 W:      https://linuxtv.org
6626 W:      http://github.com/mkrufky
6627 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6628 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6629 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6630
6631 DVB_USB_RTL28XXU MEDIA DRIVER
6632 M:      Antti Palosaari <crope@iki.fi>
6633 L:      linux-media@vger.kernel.org
6634 S:      Maintained
6635 W:      https://linuxtv.org
6636 W:      http://palosaari.fi/linux/
6637 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6638 T:      git git://linuxtv.org/anttip/media_tree.git
6639 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6640
6641 DVB_USB_V2 MEDIA DRIVER
6642 M:      Antti Palosaari <crope@iki.fi>
6643 L:      linux-media@vger.kernel.org
6644 S:      Maintained
6645 W:      https://linuxtv.org
6646 W:      http://palosaari.fi/linux/
6647 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6648 T:      git git://linuxtv.org/anttip/media_tree.git
6649 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6650 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6651
6652 DYNAMIC DEBUG
6653 M:      Jason Baron <jbaron@akamai.com>
6654 S:      Maintained
6655 F:      include/linux/dynamic_debug.h
6656 F:      lib/dynamic_debug.c
6657
6658 DYNAMIC INTERRUPT MODERATION
6659 M:      Tal Gilboa <talgi@nvidia.com>
6660 S:      Maintained
6661 F:      Documentation/networking/net_dim.rst
6662 F:      include/linux/dim.h
6663 F:      lib/dim/
6664
6665 DZ DECSTATION DZ11 SERIAL DRIVER
6666 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6667 S:      Maintained
6668 F:      drivers/tty/serial/dz.*
6669
6670 E3X0 POWER BUTTON DRIVER
6671 M:      Moritz Fischer <moritz.fischer@ettus.com>
6672 L:      usrp-users@lists.ettus.com
6673 S:      Supported
6674 W:      http://www.ettus.com
6675 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6676 F:      drivers/input/misc/e3x0-button.c
6677
6678 E4000 MEDIA DRIVER
6679 M:      Antti Palosaari <crope@iki.fi>
6680 L:      linux-media@vger.kernel.org
6681 S:      Maintained
6682 W:      https://linuxtv.org
6683 W:      http://palosaari.fi/linux/
6684 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6685 T:      git git://linuxtv.org/anttip/media_tree.git
6686 F:      drivers/media/tuners/e4000*
6687
6688 EARTH_PT1 MEDIA DRIVER
6689 M:      Akihiro Tsukada <tskd08@gmail.com>
6690 L:      linux-media@vger.kernel.org
6691 S:      Odd Fixes
6692 F:      drivers/media/pci/pt1/
6693
6694 EARTH_PT3 MEDIA DRIVER
6695 M:      Akihiro Tsukada <tskd08@gmail.com>
6696 L:      linux-media@vger.kernel.org
6697 S:      Odd Fixes
6698 F:      drivers/media/pci/pt3/
6699
6700 EC100 MEDIA DRIVER
6701 M:      Antti Palosaari <crope@iki.fi>
6702 L:      linux-media@vger.kernel.org
6703 S:      Maintained
6704 W:      https://linuxtv.org
6705 W:      http://palosaari.fi/linux/
6706 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6707 T:      git git://linuxtv.org/anttip/media_tree.git
6708 F:      drivers/media/dvb-frontends/ec100*
6709
6710 ECRYPT FILE SYSTEM
6711 M:      Tyler Hicks <code@tyhicks.com>
6712 L:      ecryptfs@vger.kernel.org
6713 S:      Odd Fixes
6714 W:      http://ecryptfs.org
6715 W:      https://launchpad.net/ecryptfs
6716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6717 F:      Documentation/filesystems/ecryptfs.rst
6718 F:      fs/ecryptfs/
6719
6720 EDAC-AMD64
6721 M:      Yazen Ghannam <yazen.ghannam@amd.com>
6722 L:      linux-edac@vger.kernel.org
6723 S:      Supported
6724 F:      drivers/edac/amd64_edac*
6725 F:      drivers/edac/mce_amd*
6726
6727 EDAC-ARMADA
6728 M:      Jan Luebbe <jlu@pengutronix.de>
6729 L:      linux-edac@vger.kernel.org
6730 S:      Maintained
6731 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
6732 F:      drivers/edac/armada_xp_*
6733
6734 EDAC-AST2500
6735 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6736 S:      Supported
6737 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6738 F:      drivers/edac/aspeed_edac.c
6739
6740 EDAC-BLUEFIELD
6741 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6742 S:      Supported
6743 F:      drivers/edac/bluefield_edac.c
6744
6745 EDAC-CALXEDA
6746 M:      Andre Przywara <andre.przywara@arm.com>
6747 L:      linux-edac@vger.kernel.org
6748 S:      Maintained
6749 F:      drivers/edac/highbank*
6750
6751 EDAC-CAVIUM OCTEON
6752 M:      Ralf Baechle <ralf@linux-mips.org>
6753 L:      linux-edac@vger.kernel.org
6754 L:      linux-mips@vger.kernel.org
6755 S:      Supported
6756 F:      drivers/edac/octeon_edac*
6757
6758 EDAC-CAVIUM THUNDERX
6759 M:      Robert Richter <rric@kernel.org>
6760 L:      linux-edac@vger.kernel.org
6761 S:      Odd Fixes
6762 F:      drivers/edac/thunderx_edac*
6763
6764 EDAC-CORE
6765 M:      Borislav Petkov <bp@alien8.de>
6766 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6767 M:      Tony Luck <tony.luck@intel.com>
6768 R:      James Morse <james.morse@arm.com>
6769 R:      Robert Richter <rric@kernel.org>
6770 L:      linux-edac@vger.kernel.org
6771 S:      Supported
6772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6773 F:      Documentation/admin-guide/ras.rst
6774 F:      Documentation/driver-api/edac.rst
6775 F:      drivers/edac/
6776 F:      include/linux/edac.h
6777
6778 EDAC-DMC520
6779 M:      Lei Wang <lewan@microsoft.com>
6780 L:      linux-edac@vger.kernel.org
6781 S:      Supported
6782 F:      drivers/edac/dmc520_edac.c
6783
6784 EDAC-E752X
6785 M:      Mark Gross <markgross@kernel.org>
6786 L:      linux-edac@vger.kernel.org
6787 S:      Maintained
6788 F:      drivers/edac/e752x_edac.c
6789
6790 EDAC-E7XXX
6791 L:      linux-edac@vger.kernel.org
6792 S:      Maintained
6793 F:      drivers/edac/e7xxx_edac.c
6794
6795 EDAC-FSL_DDR
6796 M:      York Sun <york.sun@nxp.com>
6797 L:      linux-edac@vger.kernel.org
6798 S:      Maintained
6799 F:      drivers/edac/fsl_ddr_edac.*
6800
6801 EDAC-GHES
6802 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6803 L:      linux-edac@vger.kernel.org
6804 S:      Maintained
6805 F:      drivers/edac/ghes_edac.c
6806
6807 EDAC-I10NM
6808 M:      Tony Luck <tony.luck@intel.com>
6809 L:      linux-edac@vger.kernel.org
6810 S:      Maintained
6811 F:      drivers/edac/i10nm_base.c
6812
6813 EDAC-I3000
6814 L:      linux-edac@vger.kernel.org
6815 S:      Orphan
6816 F:      drivers/edac/i3000_edac.c
6817
6818 EDAC-I5000
6819 L:      linux-edac@vger.kernel.org
6820 S:      Maintained
6821 F:      drivers/edac/i5000_edac.c
6822
6823 EDAC-I5400
6824 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6825 L:      linux-edac@vger.kernel.org
6826 S:      Maintained
6827 F:      drivers/edac/i5400_edac.c
6828
6829 EDAC-I7300
6830 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6831 L:      linux-edac@vger.kernel.org
6832 S:      Maintained
6833 F:      drivers/edac/i7300_edac.c
6834
6835 EDAC-I7CORE
6836 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6837 L:      linux-edac@vger.kernel.org
6838 S:      Maintained
6839 F:      drivers/edac/i7core_edac.c
6840
6841 EDAC-I82443BXGX
6842 M:      Tim Small <tim@buttersideup.com>
6843 L:      linux-edac@vger.kernel.org
6844 S:      Maintained
6845 F:      drivers/edac/i82443bxgx_edac.c
6846
6847 EDAC-I82975X
6848 M:      "Arvind R." <arvino55@gmail.com>
6849 L:      linux-edac@vger.kernel.org
6850 S:      Maintained
6851 F:      drivers/edac/i82975x_edac.c
6852
6853 EDAC-IE31200
6854 M:      Jason Baron <jbaron@akamai.com>
6855 L:      linux-edac@vger.kernel.org
6856 S:      Maintained
6857 F:      drivers/edac/ie31200_edac.c
6858
6859 EDAC-IGEN6
6860 M:      Tony Luck <tony.luck@intel.com>
6861 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6862 L:      linux-edac@vger.kernel.org
6863 S:      Maintained
6864 F:      drivers/edac/igen6_edac.c
6865
6866 EDAC-MPC85XX
6867 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6868 L:      linux-edac@vger.kernel.org
6869 S:      Maintained
6870 F:      drivers/edac/mpc85xx_edac.[ch]
6871
6872 EDAC-PASEMI
6873 M:      Egor Martovetsky <egor@pasemi.com>
6874 L:      linux-edac@vger.kernel.org
6875 S:      Maintained
6876 F:      drivers/edac/pasemi_edac.c
6877
6878 EDAC-PND2
6879 M:      Tony Luck <tony.luck@intel.com>
6880 L:      linux-edac@vger.kernel.org
6881 S:      Maintained
6882 F:      drivers/edac/pnd2_edac.[ch]
6883
6884 EDAC-QCOM
6885 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6886 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6887 L:      linux-arm-msm@vger.kernel.org
6888 L:      linux-edac@vger.kernel.org
6889 S:      Maintained
6890 F:      drivers/edac/qcom_edac.c
6891
6892 EDAC-R82600
6893 M:      Tim Small <tim@buttersideup.com>
6894 L:      linux-edac@vger.kernel.org
6895 S:      Maintained
6896 F:      drivers/edac/r82600_edac.c
6897
6898 EDAC-SBRIDGE
6899 M:      Tony Luck <tony.luck@intel.com>
6900 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6901 L:      linux-edac@vger.kernel.org
6902 S:      Maintained
6903 F:      drivers/edac/sb_edac.c
6904
6905 EDAC-SIFIVE
6906 M:      Yash Shah <yash.shah@sifive.com>
6907 L:      linux-edac@vger.kernel.org
6908 S:      Supported
6909 F:      drivers/edac/sifive_edac.c
6910
6911 EDAC-SKYLAKE
6912 M:      Tony Luck <tony.luck@intel.com>
6913 L:      linux-edac@vger.kernel.org
6914 S:      Maintained
6915 F:      drivers/edac/skx_*.[ch]
6916
6917 EDAC-TI
6918 M:      Tero Kristo <kristo@kernel.org>
6919 L:      linux-edac@vger.kernel.org
6920 S:      Odd Fixes
6921 F:      drivers/edac/ti_edac.c
6922
6923 EDIROL UA-101/UA-1000 DRIVER
6924 M:      Clemens Ladisch <clemens@ladisch.de>
6925 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6926 S:      Maintained
6927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6928 F:      sound/usb/misc/ua101.c
6929
6930 EFI TEST DRIVER
6931 M:      Ivan Hu <ivan.hu@canonical.com>
6932 M:      Ard Biesheuvel <ardb@kernel.org>
6933 L:      linux-efi@vger.kernel.org
6934 S:      Maintained
6935 F:      drivers/firmware/efi/test/
6936
6937 EFI VARIABLE FILESYSTEM
6938 M:      Matthew Garrett <matthew.garrett@nebula.com>
6939 M:      Jeremy Kerr <jk@ozlabs.org>
6940 M:      Ard Biesheuvel <ardb@kernel.org>
6941 L:      linux-efi@vger.kernel.org
6942 S:      Maintained
6943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6944 F:      fs/efivarfs/
6945
6946 EFIFB FRAMEBUFFER DRIVER
6947 M:      Peter Jones <pjones@redhat.com>
6948 L:      linux-fbdev@vger.kernel.org
6949 S:      Maintained
6950 F:      drivers/video/fbdev/efifb.c
6951
6952 EFS FILESYSTEM
6953 S:      Orphan
6954 W:      http://aeschi.ch.eu.org/efs/
6955 F:      fs/efs/
6956
6957 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6958 M:      Douglas Miller <dougmill@linux.ibm.com>
6959 L:      netdev@vger.kernel.org
6960 S:      Maintained
6961 F:      drivers/net/ethernet/ibm/ehea/
6962
6963 EM28XX VIDEO4LINUX DRIVER
6964 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6965 L:      linux-media@vger.kernel.org
6966 S:      Maintained
6967 W:      https://linuxtv.org
6968 T:      git git://linuxtv.org/media_tree.git
6969 F:      Documentation/admin-guide/media/em28xx*
6970 F:      drivers/media/usb/em28xx/
6971
6972 EMBEDDED LINUX
6973 M:      Matt Mackall <mpm@selenic.com>
6974 M:      David Woodhouse <dwmw2@infradead.org>
6975 L:      linux-embedded@vger.kernel.org
6976 S:      Maintained
6977
6978 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6979 M:      Adrian Hunter <adrian.hunter@intel.com>
6980 M:      Ritesh Harjani <riteshh@codeaurora.org>
6981 M:      Asutosh Das <asutoshd@codeaurora.org>
6982 L:      linux-mmc@vger.kernel.org
6983 S:      Maintained
6984 F:      drivers/mmc/host/cqhci*
6985
6986 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6987 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6988 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6989 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6990 L:      linux-scsi@vger.kernel.org
6991 S:      Supported
6992 W:      http://www.broadcom.com
6993 F:      drivers/scsi/be2iscsi/
6994
6995 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6996 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6997 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6998 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6999 L:      netdev@vger.kernel.org
7000 S:      Supported
7001 W:      http://www.emulex.com
7002 F:      drivers/net/ethernet/emulex/benet/
7003
7004 EMULEX ONECONNECT ROCE DRIVER
7005 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7006 L:      linux-rdma@vger.kernel.org
7007 S:      Odd Fixes
7008 W:      http://www.broadcom.com
7009 F:      drivers/infiniband/hw/ocrdma/
7010 F:      include/uapi/rdma/ocrdma-abi.h
7011
7012 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7013 M:      James Smart <james.smart@broadcom.com>
7014 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7015 L:      linux-scsi@vger.kernel.org
7016 S:      Supported
7017 W:      http://www.broadcom.com
7018 F:      drivers/scsi/lpfc/
7019
7020 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7021 M:      James Smart <james.smart@broadcom.com>
7022 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7023 L:      linux-scsi@vger.kernel.org
7024 L:      target-devel@vger.kernel.org
7025 S:      Supported
7026 W:      http://www.broadcom.com
7027 F:      drivers/scsi/elx/
7028
7029 ENE CB710 FLASH CARD READER DRIVER
7030 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7031 S:      Maintained
7032 F:      drivers/misc/cb710/
7033 F:      drivers/mmc/host/cb710-mmc.*
7034 F:      include/linux/cb710.h
7035
7036 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7037 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7038 S:      Maintained
7039 F:      drivers/media/rc/ene_ir.*
7040
7041 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7042 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7043 L:      linuxppc-dev@lists.ozlabs.org
7044 S:      Maintained
7045 F:      drivers/tty/ehv_bytechan.c
7046
7047 EPSON S1D13XXX FRAMEBUFFER DRIVER
7048 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7049 S:      Maintained
7050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7051 F:      drivers/video/fbdev/s1d13xxxfb.c
7052 F:      include/video/s1d13xxxfb.h
7053
7054 EROFS FILE SYSTEM
7055 M:      Gao Xiang <xiang@kernel.org>
7056 M:      Chao Yu <chao@kernel.org>
7057 L:      linux-erofs@lists.ozlabs.org
7058 S:      Maintained
7059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7060 F:      Documentation/filesystems/erofs.rst
7061 F:      fs/erofs/
7062 F:      include/trace/events/erofs.h
7063
7064 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7065 M:      Jeff Layton <jlayton@kernel.org>
7066 S:      Maintained
7067 F:      include/linux/errseq.h
7068 F:      lib/errseq.c
7069
7070 ET131X NETWORK DRIVER
7071 M:      Mark Einon <mark.einon@gmail.com>
7072 S:      Odd Fixes
7073 F:      drivers/net/ethernet/agere/
7074
7075 ETAS ES58X CAN/USB DRIVER
7076 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7077 L:      linux-can@vger.kernel.org
7078 S:      Maintained
7079 F:      drivers/net/can/usb/etas_es58x/
7080
7081 ETHERNET BRIDGE
7082 M:      Roopa Prabhu <roopa@nvidia.com>
7083 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
7084 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7085 L:      netdev@vger.kernel.org
7086 S:      Maintained
7087 W:      http://www.linuxfoundation.org/en/Net:Bridge
7088 F:      include/linux/netfilter_bridge/
7089 F:      net/bridge/
7090
7091 ETHERNET PHY LIBRARY
7092 M:      Andrew Lunn <andrew@lunn.ch>
7093 M:      Heiner Kallweit <hkallweit1@gmail.com>
7094 R:      Russell King <linux@armlinux.org.uk>
7095 L:      netdev@vger.kernel.org
7096 S:      Maintained
7097 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7098 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7099 F:      Documentation/devicetree/bindings/net/mdio*
7100 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7101 F:      Documentation/networking/phy.rst
7102 F:      drivers/net/mdio/
7103 F:      drivers/net/mdio/acpi_mdio.c
7104 F:      drivers/net/mdio/fwnode_mdio.c
7105 F:      drivers/net/mdio/of_mdio.c
7106 F:      drivers/net/pcs/
7107 F:      drivers/net/phy/
7108 F:      include/dt-bindings/net/qca-ar803x.h
7109 F:      include/linux/*mdio*.h
7110 F:      include/linux/mdio/*.h
7111 F:      include/linux/of_net.h
7112 F:      include/linux/phy.h
7113 F:      include/linux/phy_fixed.h
7114 F:      include/linux/platform_data/mdio-bcm-unimac.h
7115 F:      include/linux/platform_data/mdio-gpio.h
7116 F:      include/trace/events/mdio.h
7117 F:      include/uapi/linux/mdio.h
7118 F:      include/uapi/linux/mii.h
7119 F:      net/core/of_net.c
7120
7121 EXFAT FILE SYSTEM
7122 M:      Namjae Jeon <linkinjeon@kernel.org>
7123 M:      Sungjong Seo <sj1557.seo@samsung.com>
7124 L:      linux-fsdevel@vger.kernel.org
7125 S:      Maintained
7126 F:      fs/exfat/
7127
7128 EXT2 FILE SYSTEM
7129 M:      Jan Kara <jack@suse.com>
7130 L:      linux-ext4@vger.kernel.org
7131 S:      Maintained
7132 F:      Documentation/filesystems/ext2.rst
7133 F:      fs/ext2/
7134 F:      include/linux/ext2*
7135
7136 EXT4 FILE SYSTEM
7137 M:      "Theodore Ts'o" <tytso@mit.edu>
7138 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7139 L:      linux-ext4@vger.kernel.org
7140 S:      Maintained
7141 W:      http://ext4.wiki.kernel.org
7142 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7144 F:      Documentation/filesystems/ext4/
7145 F:      fs/ext4/
7146 F:      include/trace/events/ext4.h
7147
7148 Extended Verification Module (EVM)
7149 M:      Mimi Zohar <zohar@linux.ibm.com>
7150 L:      linux-integrity@vger.kernel.org
7151 S:      Supported
7152 F:      security/integrity/evm/
7153
7154 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7155 M:      Ard Biesheuvel <ardb@kernel.org>
7156 L:      linux-efi@vger.kernel.org
7157 S:      Maintained
7158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7159 F:      Documentation/admin-guide/efi-stub.rst
7160 F:      arch/*/include/asm/efi.h
7161 F:      arch/*/kernel/efi.c
7162 F:      arch/arm/boot/compressed/efi-header.S
7163 F:      arch/arm64/kernel/efi-entry.S
7164 F:      arch/x86/platform/efi/
7165 F:      drivers/firmware/efi/
7166 F:      include/linux/efi*.h
7167
7168 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7169 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7170 M:      Chanwoo Choi <cw00.choi@samsung.com>
7171 L:      linux-kernel@vger.kernel.org
7172 S:      Maintained
7173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7174 F:      Documentation/devicetree/bindings/extcon/
7175 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7176 F:      drivers/extcon/
7177 F:      include/linux/extcon.h
7178 F:      include/linux/extcon/
7179
7180 EXTRA BOOT CONFIG
7181 M:      Masami Hiramatsu <mhiramat@kernel.org>
7182 S:      Maintained
7183 F:      Documentation/admin-guide/bootconfig.rst
7184 F:      fs/proc/bootconfig.c
7185 F:      include/linux/bootconfig.h
7186 F:      lib/bootconfig.c
7187 F:      tools/bootconfig/*
7188 F:      tools/bootconfig/scripts/*
7189
7190 EXYNOS DP DRIVER
7191 M:      Jingoo Han <jingoohan1@gmail.com>
7192 L:      dri-devel@lists.freedesktop.org
7193 S:      Maintained
7194 F:      drivers/gpu/drm/exynos/exynos_dp*
7195
7196 EXYNOS SYSMMU (IOMMU) driver
7197 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7198 L:      iommu@lists.linux-foundation.org
7199 S:      Maintained
7200 F:      drivers/iommu/exynos-iommu.c
7201
7202 F2FS FILE SYSTEM
7203 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7204 M:      Chao Yu <chao@kernel.org>
7205 L:      linux-f2fs-devel@lists.sourceforge.net
7206 S:      Maintained
7207 W:      https://f2fs.wiki.kernel.org/
7208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7209 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7210 F:      Documentation/filesystems/f2fs.rst
7211 F:      fs/f2fs/
7212 F:      include/linux/f2fs_fs.h
7213 F:      include/trace/events/f2fs.h
7214 F:      include/uapi/linux/f2fs.h
7215
7216 F71805F HARDWARE MONITORING DRIVER
7217 M:      Jean Delvare <jdelvare@suse.com>
7218 L:      linux-hwmon@vger.kernel.org
7219 S:      Maintained
7220 F:      Documentation/hwmon/f71805f.rst
7221 F:      drivers/hwmon/f71805f.c
7222
7223 FADDR2LINE
7224 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7225 S:      Maintained
7226 F:      scripts/faddr2line
7227
7228 FAILOVER MODULE
7229 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7230 L:      netdev@vger.kernel.org
7231 S:      Supported
7232 F:      Documentation/networking/failover.rst
7233 F:      include/net/failover.h
7234 F:      net/core/failover.c
7235
7236 FANOTIFY
7237 M:      Jan Kara <jack@suse.cz>
7238 R:      Amir Goldstein <amir73il@gmail.com>
7239 R:      Matthew Bobrowski <repnop@google.com>
7240 L:      linux-fsdevel@vger.kernel.org
7241 S:      Maintained
7242 F:      fs/notify/fanotify/
7243 F:      include/linux/fanotify.h
7244 F:      include/uapi/linux/fanotify.h
7245
7246 FARSYNC SYNCHRONOUS DRIVER
7247 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7248 S:      Supported
7249 W:      http://www.farsite.co.uk/
7250 F:      drivers/net/wan/farsync.*
7251
7252 FAULT INJECTION SUPPORT
7253 M:      Akinobu Mita <akinobu.mita@gmail.com>
7254 S:      Supported
7255 F:      Documentation/fault-injection/
7256 F:      lib/fault-inject.c
7257
7258 FBTFT Framebuffer drivers
7259 L:      dri-devel@lists.freedesktop.org
7260 L:      linux-fbdev@vger.kernel.org
7261 S:      Orphan
7262 F:      drivers/staging/fbtft/
7263
7264 FC0011 TUNER DRIVER
7265 M:      Michael Buesch <m@bues.ch>
7266 L:      linux-media@vger.kernel.org
7267 S:      Maintained
7268 F:      drivers/media/tuners/fc0011.c
7269 F:      drivers/media/tuners/fc0011.h
7270
7271 FC2580 MEDIA DRIVER
7272 M:      Antti Palosaari <crope@iki.fi>
7273 L:      linux-media@vger.kernel.org
7274 S:      Maintained
7275 W:      https://linuxtv.org
7276 W:      http://palosaari.fi/linux/
7277 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7278 T:      git git://linuxtv.org/anttip/media_tree.git
7279 F:      drivers/media/tuners/fc2580*
7280
7281 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7282 M:      Hannes Reinecke <hare@suse.de>
7283 L:      linux-scsi@vger.kernel.org
7284 S:      Supported
7285 W:      www.Open-FCoE.org
7286 F:      drivers/scsi/fcoe/
7287 F:      drivers/scsi/libfc/
7288 F:      include/scsi/fc/
7289 F:      include/scsi/libfc.h
7290 F:      include/scsi/libfcoe.h
7291 F:      include/uapi/scsi/fc/
7292
7293 FILE LOCKING (flock() and fcntl()/lockf())
7294 M:      Jeff Layton <jlayton@kernel.org>
7295 M:      "J. Bruce Fields" <bfields@fieldses.org>
7296 L:      linux-fsdevel@vger.kernel.org
7297 S:      Maintained
7298 F:      fs/fcntl.c
7299 F:      fs/locks.c
7300 F:      include/linux/fcntl.h
7301 F:      include/uapi/linux/fcntl.h
7302
7303 FILESYSTEM DIRECT ACCESS (DAX)
7304 M:      Dan Williams <dan.j.williams@intel.com>
7305 R:      Matthew Wilcox <willy@infradead.org>
7306 R:      Jan Kara <jack@suse.cz>
7307 L:      linux-fsdevel@vger.kernel.org
7308 L:      nvdimm@lists.linux.dev
7309 S:      Supported
7310 F:      fs/dax.c
7311 F:      include/linux/dax.h
7312 F:      include/trace/events/fs_dax.h
7313
7314 FILESYSTEMS (VFS and infrastructure)
7315 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7316 L:      linux-fsdevel@vger.kernel.org
7317 S:      Maintained
7318 F:      fs/*
7319 F:      include/linux/fs.h
7320 F:      include/linux/fs_types.h
7321 F:      include/uapi/linux/fs.h
7322 F:      include/uapi/linux/openat2.h
7323 X:      fs/io-wq.c
7324 X:      fs/io-wq.h
7325 X:      fs/io_uring.c
7326
7327 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7328 M:      Riku Voipio <riku.voipio@iki.fi>
7329 L:      linux-hwmon@vger.kernel.org
7330 S:      Maintained
7331 F:      drivers/hwmon/f75375s.c
7332 F:      include/linux/f75375s.h
7333
7334 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7335 M:      Clemens Ladisch <clemens@ladisch.de>
7336 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7337 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7338 S:      Maintained
7339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7340 F:      include/uapi/sound/firewire.h
7341 F:      sound/firewire/
7342
7343 FIREWIRE MEDIA DRIVERS (firedtv)
7344 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7345 L:      linux-media@vger.kernel.org
7346 L:      linux1394-devel@lists.sourceforge.net
7347 S:      Maintained
7348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7349 F:      drivers/media/firewire/
7350
7351 FIREWIRE SBP-2 TARGET
7352 M:      Chris Boot <bootc@bootc.net>
7353 L:      linux-scsi@vger.kernel.org
7354 L:      target-devel@vger.kernel.org
7355 L:      linux1394-devel@lists.sourceforge.net
7356 S:      Maintained
7357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7358 F:      drivers/target/sbp/
7359
7360 FIREWIRE SUBSYSTEM
7361 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7362 L:      linux1394-devel@lists.sourceforge.net
7363 S:      Maintained
7364 W:      http://ieee1394.wiki.kernel.org/
7365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7366 F:      drivers/firewire/
7367 F:      include/linux/firewire.h
7368 F:      include/uapi/linux/firewire*.h
7369 F:      tools/firewire/
7370
7371 FIRMWARE FRAMEWORK FOR ARMV8-A
7372 M:      Sudeep Holla <sudeep.holla@arm.com>
7373 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7374 S:      Maintained
7375 F:      drivers/firmware/arm_ffa/
7376 F:      include/linux/arm_ffa.h
7377
7378 FIRMWARE LOADER (request_firmware)
7379 M:      Luis Chamberlain <mcgrof@kernel.org>
7380 L:      linux-kernel@vger.kernel.org
7381 S:      Maintained
7382 F:      Documentation/firmware_class/
7383 F:      drivers/base/firmware_loader/
7384 F:      include/linux/firmware.h
7385
7386 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7387 M:      Joshua Morris <josh.h.morris@us.ibm.com>
7388 M:      Philip Kelleher <pjk1939@linux.ibm.com>
7389 S:      Maintained
7390 F:      drivers/block/rsxx/
7391
7392 FLEXTIMER FTM-QUADDEC DRIVER
7393 M:      Patrick Havelange <patrick.havelange@essensium.com>
7394 L:      linux-iio@vger.kernel.org
7395 S:      Maintained
7396 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7397 F:      drivers/counter/ftm-quaddec.c
7398
7399 FLOPPY DRIVER
7400 M:      Denis Efremov <efremov@linux.com>
7401 L:      linux-block@vger.kernel.org
7402 S:      Odd Fixes
7403 F:      drivers/block/floppy.c
7404
7405 FLYSKY FSIA6B RC RECEIVER
7406 M:      Markus Koch <markus@notsyncing.net>
7407 L:      linux-input@vger.kernel.org
7408 S:      Maintained
7409 F:      drivers/input/joystick/fsia6b.c
7410
7411 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7412 M:      Geoffrey D. Bennett <g@b4.vu>
7413 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7414 S:      Maintained
7415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7416 F:      sound/usb/mixer_scarlett_gen2.c
7417
7418 FORCEDETH GIGABIT ETHERNET DRIVER
7419 M:      Rain River <rain.1986.08.12@gmail.com>
7420 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7421 L:      netdev@vger.kernel.org
7422 S:      Maintained
7423 F:      drivers/net/ethernet/nvidia/*
7424
7425 FORTIFY_SOURCE
7426 M:      Kees Cook <keescook@chromium.org>
7427 L:      linux-hardening@vger.kernel.org
7428 S:      Supported
7429 F:      include/linux/fortify-string.h
7430 F:      lib/test_fortify/*
7431 F:      scripts/test_fortify.sh
7432 K:      \b__NO_FORTIFY\b
7433
7434 FPGA DFL DRIVERS
7435 M:      Wu Hao <hao.wu@intel.com>
7436 R:      Tom Rix <trix@redhat.com>
7437 L:      linux-fpga@vger.kernel.org
7438 S:      Maintained
7439 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7440 F:      Documentation/fpga/dfl.rst
7441 F:      drivers/fpga/dfl*
7442 F:      drivers/uio/uio_dfl.c
7443 F:      include/linux/dfl.h
7444 F:      include/uapi/linux/fpga-dfl.h
7445
7446 FPGA MANAGER FRAMEWORK
7447 M:      Moritz Fischer <mdf@kernel.org>
7448 M:      Wu Hao <hao.wu@intel.com>
7449 M:      Xu Yilun <yilun.xu@intel.com>
7450 R:      Tom Rix <trix@redhat.com>
7451 L:      linux-fpga@vger.kernel.org
7452 S:      Maintained
7453 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7455 F:      Documentation/devicetree/bindings/fpga/
7456 F:      Documentation/driver-api/fpga/
7457 F:      Documentation/fpga/
7458 F:      drivers/fpga/
7459 F:      include/linux/fpga/
7460
7461 FPU EMULATOR
7462 M:      Bill Metzenthen <billm@melbpc.org.au>
7463 S:      Maintained
7464 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7465 F:      arch/x86/math-emu/
7466
7467 FRAMEBUFFER LAYER
7468 L:      dri-devel@lists.freedesktop.org
7469 L:      linux-fbdev@vger.kernel.org
7470 S:      Orphan
7471 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7472 T:      git git://anongit.freedesktop.org/drm/drm-misc
7473 F:      Documentation/fb/
7474 F:      drivers/video/
7475 F:      include/linux/fb.h
7476 F:      include/uapi/linux/fb.h
7477 F:      include/uapi/video/
7478 F:      include/video/
7479
7480 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7481 M:      Horia Geantă <horia.geanta@nxp.com>
7482 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7483 L:      linux-crypto@vger.kernel.org
7484 S:      Maintained
7485 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7486 F:      drivers/crypto/caam/
7487
7488 FREESCALE COLDFIRE M5441X MMC DRIVER
7489 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7490 L:      linux-mmc@vger.kernel.org
7491 S:      Maintained
7492 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7493 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7494
7495 FREESCALE DIU FRAMEBUFFER DRIVER
7496 M:      Timur Tabi <timur@kernel.org>
7497 L:      linux-fbdev@vger.kernel.org
7498 S:      Maintained
7499 F:      drivers/video/fbdev/fsl-diu-fb.*
7500
7501 FREESCALE DMA DRIVER
7502 M:      Li Yang <leoyang.li@nxp.com>
7503 M:      Zhang Wei <zw@zh-kernel.org>
7504 L:      linuxppc-dev@lists.ozlabs.org
7505 S:      Maintained
7506 F:      drivers/dma/fsldma.*
7507
7508 FREESCALE DSPI DRIVER
7509 M:      Vladimir Oltean <olteanv@gmail.com>
7510 L:      linux-spi@vger.kernel.org
7511 S:      Maintained
7512 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7513 F:      drivers/spi/spi-fsl-dspi.c
7514 F:      include/linux/spi/spi-fsl-dspi.h
7515
7516 FREESCALE ENETC ETHERNET DRIVERS
7517 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7518 L:      netdev@vger.kernel.org
7519 S:      Maintained
7520 F:      drivers/net/ethernet/freescale/enetc/
7521
7522 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7523 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7524 L:      netdev@vger.kernel.org
7525 S:      Maintained
7526 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7527 F:      drivers/net/ethernet/freescale/gianfar*
7528
7529 FREESCALE GPMI NAND DRIVER
7530 M:      Han Xu <han.xu@nxp.com>
7531 L:      linux-mtd@lists.infradead.org
7532 S:      Maintained
7533 F:      drivers/mtd/nand/raw/gpmi-nand/*
7534
7535 FREESCALE I2C CPM DRIVER
7536 M:      Jochen Friedrich <jochen@scram.de>
7537 L:      linuxppc-dev@lists.ozlabs.org
7538 L:      linux-i2c@vger.kernel.org
7539 S:      Maintained
7540 F:      drivers/i2c/busses/i2c-cpm.c
7541
7542 FREESCALE IMX / MXC FEC DRIVER
7543 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7544 L:      netdev@vger.kernel.org
7545 S:      Maintained
7546 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7547 F:      drivers/net/ethernet/freescale/fec.h
7548 F:      drivers/net/ethernet/freescale/fec_main.c
7549 F:      drivers/net/ethernet/freescale/fec_ptp.c
7550
7551 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7552 M:      Sascha Hauer <s.hauer@pengutronix.de>
7553 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7554 L:      linux-fbdev@vger.kernel.org
7555 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7556 S:      Maintained
7557 F:      drivers/video/fbdev/imxfb.c
7558 F:      include/linux/platform_data/video-imxfb.h
7559
7560 FREESCALE IMX DDR PMU DRIVER
7561 M:      Frank Li <Frank.li@nxp.com>
7562 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7563 S:      Maintained
7564 F:      Documentation/admin-guide/perf/imx-ddr.rst
7565 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7566 F:      drivers/perf/fsl_imx8_ddr_perf.c
7567
7568 FREESCALE IMX I2C DRIVER
7569 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7570 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7571 L:      linux-i2c@vger.kernel.org
7572 S:      Maintained
7573 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7574 F:      drivers/i2c/busses/i2c-imx.c
7575
7576 FREESCALE IMX LPI2C DRIVER
7577 M:      Dong Aisheng <aisheng.dong@nxp.com>
7578 L:      linux-i2c@vger.kernel.org
7579 L:      linux-imx@nxp.com
7580 S:      Maintained
7581 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7582 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7583
7584 FREESCALE MPC I2C DRIVER
7585 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7586 L:      linux-i2c@vger.kernel.org
7587 S:      Maintained
7588 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7589 F:      drivers/i2c/busses/i2c-mpc.c
7590
7591 FREESCALE QORIQ DPAA ETHERNET DRIVER
7592 M:      Madalin Bucur <madalin.bucur@nxp.com>
7593 L:      netdev@vger.kernel.org
7594 S:      Maintained
7595 F:      drivers/net/ethernet/freescale/dpaa
7596
7597 FREESCALE QORIQ DPAA FMAN DRIVER
7598 M:      Madalin Bucur <madalin.bucur@nxp.com>
7599 L:      netdev@vger.kernel.org
7600 S:      Maintained
7601 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7602 F:      drivers/net/ethernet/freescale/fman
7603
7604 FREESCALE QORIQ PTP CLOCK DRIVER
7605 M:      Yangbo Lu <yangbo.lu@nxp.com>
7606 L:      netdev@vger.kernel.org
7607 S:      Maintained
7608 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7609 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7610 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7611 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7612 F:      drivers/ptp/ptp_qoriq.c
7613 F:      drivers/ptp/ptp_qoriq_debugfs.c
7614 F:      include/linux/fsl/ptp_qoriq.h
7615
7616 FREESCALE QUAD SPI DRIVER
7617 M:      Han Xu <han.xu@nxp.com>
7618 L:      linux-spi@vger.kernel.org
7619 S:      Maintained
7620 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7621 F:      drivers/spi/spi-fsl-qspi.c
7622
7623 FREESCALE QUICC ENGINE LIBRARY
7624 M:      Qiang Zhao <qiang.zhao@nxp.com>
7625 L:      linuxppc-dev@lists.ozlabs.org
7626 S:      Maintained
7627 F:      drivers/soc/fsl/qe/
7628 F:      include/soc/fsl/*qe*.h
7629 F:      include/soc/fsl/*ucc*.h
7630
7631 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7632 M:      Li Yang <leoyang.li@nxp.com>
7633 L:      netdev@vger.kernel.org
7634 L:      linuxppc-dev@lists.ozlabs.org
7635 S:      Maintained
7636 F:      drivers/net/ethernet/freescale/ucc_geth*
7637
7638 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7639 M:      Zhao Qiang <qiang.zhao@nxp.com>
7640 L:      netdev@vger.kernel.org
7641 L:      linuxppc-dev@lists.ozlabs.org
7642 S:      Maintained
7643 F:      drivers/net/wan/fsl_ucc_hdlc*
7644
7645 FREESCALE QUICC ENGINE UCC UART DRIVER
7646 M:      Timur Tabi <timur@kernel.org>
7647 L:      linuxppc-dev@lists.ozlabs.org
7648 S:      Maintained
7649 F:      drivers/tty/serial/ucc_uart.c
7650
7651 FREESCALE SOC DRIVERS
7652 M:      Li Yang <leoyang.li@nxp.com>
7653 L:      linuxppc-dev@lists.ozlabs.org
7654 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7655 S:      Maintained
7656 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7657 F:      Documentation/devicetree/bindings/soc/fsl/
7658 F:      drivers/soc/fsl/
7659 F:      include/linux/fsl/
7660
7661 FREESCALE SOC FS_ENET DRIVER
7662 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7663 L:      linuxppc-dev@lists.ozlabs.org
7664 L:      netdev@vger.kernel.org
7665 S:      Maintained
7666 F:      drivers/net/ethernet/freescale/fs_enet/
7667 F:      include/linux/fs_enet_pd.h
7668
7669 FREESCALE SOC SOUND DRIVERS
7670 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7671 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7672 R:      Fabio Estevam <festevam@gmail.com>
7673 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7674 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7675 L:      linuxppc-dev@lists.ozlabs.org
7676 S:      Maintained
7677 F:      sound/soc/fsl/fsl*
7678 F:      sound/soc/fsl/imx*
7679 F:      sound/soc/fsl/mpc8610_hpcd.c
7680
7681 FREESCALE USB PERIPHERAL DRIVERS
7682 M:      Li Yang <leoyang.li@nxp.com>
7683 L:      linux-usb@vger.kernel.org
7684 L:      linuxppc-dev@lists.ozlabs.org
7685 S:      Maintained
7686 F:      drivers/usb/gadget/udc/fsl*
7687
7688 FREESCALE USB PHY DRIVER
7689 M:      Ran Wang <ran.wang_1@nxp.com>
7690 L:      linux-usb@vger.kernel.org
7691 L:      linuxppc-dev@lists.ozlabs.org
7692 S:      Maintained
7693 F:      drivers/usb/phy/phy-fsl-usb*
7694
7695 FREEVXFS FILESYSTEM
7696 M:      Christoph Hellwig <hch@infradead.org>
7697 S:      Maintained
7698 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7699 F:      fs/freevxfs/
7700
7701 FREEZER
7702 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7703 M:      Pavel Machek <pavel@ucw.cz>
7704 L:      linux-pm@vger.kernel.org
7705 S:      Supported
7706 F:      Documentation/power/freezing-of-tasks.rst
7707 F:      include/linux/freezer.h
7708 F:      kernel/freezer.c
7709
7710 FRONTSWAP API
7711 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7712 L:      linux-kernel@vger.kernel.org
7713 S:      Maintained
7714 F:      include/linux/frontswap.h
7715 F:      mm/frontswap.c
7716
7717 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7718 M:      David Howells <dhowells@redhat.com>
7719 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7720 S:      Supported
7721 F:      Documentation/filesystems/caching/
7722 F:      fs/fscache/
7723 F:      include/linux/fscache*.h
7724
7725 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7726 M:      Theodore Y. Ts'o <tytso@mit.edu>
7727 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7728 M:      Eric Biggers <ebiggers@kernel.org>
7729 L:      linux-fscrypt@vger.kernel.org
7730 S:      Supported
7731 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7732 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7733 F:      Documentation/filesystems/fscrypt.rst
7734 F:      fs/crypto/
7735 F:      include/linux/fscrypt*.h
7736 F:      include/uapi/linux/fscrypt.h
7737
7738 FSI SUBSYSTEM
7739 M:      Jeremy Kerr <jk@ozlabs.org>
7740 M:      Joel Stanley <joel@jms.id.au>
7741 R:      Alistar Popple <alistair@popple.id.au>
7742 R:      Eddie James <eajames@linux.ibm.com>
7743 L:      linux-fsi@lists.ozlabs.org
7744 S:      Supported
7745 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7747 F:      drivers/fsi/
7748 F:      include/linux/fsi*.h
7749 F:      include/trace/events/fsi*.h
7750
7751 FSI-ATTACHED I2C DRIVER
7752 M:      Eddie James <eajames@linux.ibm.com>
7753 L:      linux-i2c@vger.kernel.org
7754 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7755 S:      Maintained
7756 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7757 F:      drivers/i2c/busses/i2c-fsi.c
7758
7759 FSI-ATTACHED SPI DRIVER
7760 M:      Eddie James <eajames@linux.ibm.com>
7761 L:      linux-spi@vger.kernel.org
7762 S:      Maintained
7763 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7764 F:      drivers/spi/spi-fsi.c
7765
7766 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7767 M:      Jan Kara <jack@suse.cz>
7768 R:      Amir Goldstein <amir73il@gmail.com>
7769 L:      linux-fsdevel@vger.kernel.org
7770 S:      Maintained
7771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7772 F:      fs/notify/
7773 F:      include/linux/fsnotify*.h
7774
7775 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7776 M:      Eric Biggers <ebiggers@kernel.org>
7777 M:      Theodore Y. Ts'o <tytso@mit.edu>
7778 L:      linux-fscrypt@vger.kernel.org
7779 S:      Supported
7780 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7781 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7782 F:      Documentation/filesystems/fsverity.rst
7783 F:      fs/verity/
7784 F:      include/linux/fsverity.h
7785 F:      include/uapi/linux/fsverity.h
7786
7787 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7788 M:      Michael Zaidman <michael.zaidman@gmail.com>
7789 L:      linux-i2c@vger.kernel.org
7790 L:      linux-input@vger.kernel.org
7791 S:      Maintained
7792 F:      drivers/hid/hid-ft260.c
7793
7794 FUJITSU LAPTOP EXTRAS
7795 M:      Jonathan Woithe <jwoithe@just42.net>
7796 L:      platform-driver-x86@vger.kernel.org
7797 S:      Maintained
7798 F:      drivers/platform/x86/fujitsu-laptop.c
7799
7800 FUJITSU M-5MO LS CAMERA ISP DRIVER
7801 M:      Kyungmin Park <kyungmin.park@samsung.com>
7802 M:      Heungjun Kim <riverful.kim@samsung.com>
7803 L:      linux-media@vger.kernel.org
7804 S:      Maintained
7805 F:      drivers/media/i2c/m5mols/
7806 F:      include/media/i2c/m5mols.h
7807
7808 FUJITSU TABLET EXTRAS
7809 M:      Robert Gerlach <khnz@gmx.de>
7810 L:      platform-driver-x86@vger.kernel.org
7811 S:      Maintained
7812 F:      drivers/platform/x86/fujitsu-tablet.c
7813
7814 FUSE: FILESYSTEM IN USERSPACE
7815 M:      Miklos Szeredi <miklos@szeredi.hu>
7816 L:      linux-fsdevel@vger.kernel.org
7817 S:      Maintained
7818 W:      https://github.com/libfuse/
7819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7820 F:      Documentation/filesystems/fuse.rst
7821 F:      fs/fuse/
7822 F:      include/uapi/linux/fuse.h
7823
7824 FUTEX SUBSYSTEM
7825 M:      Thomas Gleixner <tglx@linutronix.de>
7826 M:      Ingo Molnar <mingo@redhat.com>
7827 R:      Peter Zijlstra <peterz@infradead.org>
7828 R:      Darren Hart <dvhart@infradead.org>
7829 R:      Davidlohr Bueso <dave@stgolabs.net>
7830 R:      André Almeida <andrealmeid@collabora.com>
7831 L:      linux-kernel@vger.kernel.org
7832 S:      Maintained
7833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7834 F:      Documentation/locking/*futex*
7835 F:      include/asm-generic/futex.h
7836 F:      include/linux/futex.h
7837 F:      include/uapi/linux/futex.h
7838 F:      kernel/futex/*
7839 F:      tools/perf/bench/futex*
7840 F:      tools/testing/selftests/futex/
7841
7842 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7843 M:      Tim Harvey <tharvey@gateworks.com>
7844 M:      Robert Jones <rjones@gateworks.com>
7845 S:      Maintained
7846 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7847 F:      drivers/mfd/gateworks-gsc.c
7848 F:      include/linux/mfd/gsc.h
7849 F:      Documentation/hwmon/gsc-hwmon.rst
7850 F:      drivers/hwmon/gsc-hwmon.c
7851 F:      include/linux/platform_data/gsc_hwmon.h
7852
7853 GCC PLUGINS
7854 M:      Kees Cook <keescook@chromium.org>
7855 L:      linux-hardening@vger.kernel.org
7856 S:      Maintained
7857 F:      Documentation/kbuild/gcc-plugins.rst
7858 F:      scripts/Makefile.gcc-plugins
7859 F:      scripts/gcc-plugins/
7860
7861 GCOV BASED KERNEL PROFILING
7862 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7863 S:      Maintained
7864 F:      Documentation/dev-tools/gcov.rst
7865 F:      kernel/gcov/
7866
7867 GDB KERNEL DEBUGGING HELPER SCRIPTS
7868 M:      Jan Kiszka <jan.kiszka@siemens.com>
7869 M:      Kieran Bingham <kbingham@kernel.org>
7870 S:      Supported
7871 F:      scripts/gdb/
7872
7873 GEMINI CRYPTO DRIVER
7874 M:      Corentin Labbe <clabbe@baylibre.com>
7875 L:      linux-crypto@vger.kernel.org
7876 S:      Maintained
7877 F:      drivers/crypto/gemini/
7878
7879 GEMTEK FM RADIO RECEIVER DRIVER
7880 M:      Hans Verkuil <hverkuil@xs4all.nl>
7881 L:      linux-media@vger.kernel.org
7882 S:      Maintained
7883 W:      https://linuxtv.org
7884 T:      git git://linuxtv.org/media_tree.git
7885 F:      drivers/media/radio/radio-gemtek*
7886
7887 GENERIC ARCHITECTURE TOPOLOGY
7888 M:      Sudeep Holla <sudeep.holla@arm.com>
7889 L:      linux-kernel@vger.kernel.org
7890 S:      Maintained
7891 F:      drivers/base/arch_topology.c
7892 F:      include/linux/arch_topology.h
7893
7894 GENERIC ENTRY CODE
7895 M:      Thomas Gleixner <tglx@linutronix.de>
7896 M:      Peter Zijlstra <peterz@infradead.org>
7897 M:      Andy Lutomirski <luto@kernel.org>
7898 L:      linux-kernel@vger.kernel.org
7899 S:      Maintained
7900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7901 F:      include/linux/entry-common.h
7902 F:      include/linux/entry-kvm.h
7903 F:      kernel/entry/
7904
7905 GENERIC GPIO I2C DRIVER
7906 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7907 S:      Supported
7908 F:      drivers/i2c/busses/i2c-gpio.c
7909 F:      include/linux/platform_data/i2c-gpio.h
7910
7911 GENERIC GPIO I2C MULTIPLEXER DRIVER
7912 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7913 L:      linux-i2c@vger.kernel.org
7914 S:      Supported
7915 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7916 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7917 F:      include/linux/platform_data/i2c-mux-gpio.h
7918
7919 GENERIC HDLC (WAN) DRIVERS
7920 M:      Krzysztof Halasa <khc@pm.waw.pl>
7921 S:      Maintained
7922 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7923 F:      drivers/net/wan/c101.c
7924 F:      drivers/net/wan/hd6457*
7925 F:      drivers/net/wan/hdlc*
7926 F:      drivers/net/wan/n2.c
7927 F:      drivers/net/wan/pc300too.c
7928 F:      drivers/net/wan/pci200syn.c
7929 F:      drivers/net/wan/wanxl*
7930
7931 GENERIC INCLUDE/ASM HEADER FILES
7932 M:      Arnd Bergmann <arnd@arndb.de>
7933 L:      linux-arch@vger.kernel.org
7934 S:      Maintained
7935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7936 F:      include/asm-generic/
7937 F:      include/uapi/asm-generic/
7938
7939 GENERIC PHY FRAMEWORK
7940 M:      Kishon Vijay Abraham I <kishon@ti.com>
7941 M:      Vinod Koul <vkoul@kernel.org>
7942 L:      linux-phy@lists.infradead.org
7943 S:      Supported
7944 Q:      https://patchwork.kernel.org/project/linux-phy/list/
7945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7946 F:      Documentation/devicetree/bindings/phy/
7947 F:      drivers/phy/
7948 F:      include/linux/phy/
7949
7950 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7951 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7952 S:      Supported
7953 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7954
7955 GENERIC PM DOMAINS
7956 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7957 M:      Kevin Hilman <khilman@kernel.org>
7958 M:      Ulf Hansson <ulf.hansson@linaro.org>
7959 L:      linux-pm@vger.kernel.org
7960 S:      Supported
7961 F:      Documentation/devicetree/bindings/power/power?domain*
7962 F:      drivers/base/power/domain*.c
7963 F:      include/linux/pm_domain.h
7964
7965 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7966 M:      Eugen Hristev <eugen.hristev@microchip.com>
7967 L:      linux-input@vger.kernel.org
7968 S:      Maintained
7969 F:      drivers/input/touchscreen/resistive-adc-touch.c
7970
7971 GENERIC STRING LIBRARY
7972 R:      Andy Shevchenko <andy@kernel.org>
7973 S:      Maintained
7974 F:      lib/string.c
7975 F:      lib/string_helpers.c
7976 F:      lib/test_string.c
7977 F:      lib/test-string_helpers.c
7978
7979 GENERIC UIO DRIVER FOR PCI DEVICES
7980 M:      "Michael S. Tsirkin" <mst@redhat.com>
7981 L:      kvm@vger.kernel.org
7982 S:      Supported
7983 F:      drivers/uio/uio_pci_generic.c
7984
7985 GENERIC VDSO LIBRARY
7986 M:      Andy Lutomirski <luto@kernel.org>
7987 M:      Thomas Gleixner <tglx@linutronix.de>
7988 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7989 L:      linux-kernel@vger.kernel.org
7990 S:      Maintained
7991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7992 F:      include/asm-generic/vdso/vsyscall.h
7993 F:      include/vdso/
7994 F:      kernel/time/vsyscall.c
7995 F:      lib/vdso/
7996
7997 GENWQE (IBM Generic Workqueue Card)
7998 M:      Frank Haverkamp <haver@linux.ibm.com>
7999 S:      Supported
8000 F:      drivers/misc/genwqe/
8001
8002 GET_MAINTAINER SCRIPT
8003 M:      Joe Perches <joe@perches.com>
8004 S:      Maintained
8005 F:      scripts/get_maintainer.pl
8006
8007 GFS2 FILE SYSTEM
8008 M:      Bob Peterson <rpeterso@redhat.com>
8009 M:      Andreas Gruenbacher <agruenba@redhat.com>
8010 L:      cluster-devel@redhat.com
8011 S:      Supported
8012 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8014 F:      Documentation/filesystems/gfs2*
8015 F:      fs/gfs2/
8016 F:      include/uapi/linux/gfs2_ondisk.h
8017
8018 GIGABYTE WMI DRIVER
8019 M:      Thomas Weißschuh <thomas@weissschuh.net>
8020 L:      platform-driver-x86@vger.kernel.org
8021 S:      Maintained
8022 F:      drivers/platform/x86/gigabyte-wmi.c
8023
8024 GNSS SUBSYSTEM
8025 M:      Johan Hovold <johan@kernel.org>
8026 S:      Maintained
8027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8028 F:      Documentation/ABI/testing/sysfs-class-gnss
8029 F:      Documentation/devicetree/bindings/gnss/
8030 F:      drivers/gnss/
8031 F:      include/linux/gnss.h
8032
8033 GO7007 MPEG CODEC
8034 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8035 L:      linux-media@vger.kernel.org
8036 S:      Maintained
8037 F:      drivers/media/usb/go7007/
8038
8039 GOODIX TOUCHSCREEN
8040 M:      Bastien Nocera <hadess@hadess.net>
8041 L:      linux-input@vger.kernel.org
8042 S:      Maintained
8043 F:      drivers/input/touchscreen/goodix.c
8044
8045 GOOGLE ETHERNET DRIVERS
8046 M:      Jeroen de Borst <jeroendb@google.com>
8047 R:      Catherine Sullivan <csully@google.com>
8048 R:      David Awogbemila <awogbemila@google.com>
8049 L:      netdev@vger.kernel.org
8050 S:      Supported
8051 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8052 F:      drivers/net/ethernet/google
8053
8054 GPD POCKET FAN DRIVER
8055 M:      Hans de Goede <hdegoede@redhat.com>
8056 L:      platform-driver-x86@vger.kernel.org
8057 S:      Maintained
8058 F:      drivers/platform/x86/gpd-pocket-fan.c
8059
8060 GPIO ACPI SUPPORT
8061 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8062 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8063 L:      linux-gpio@vger.kernel.org
8064 L:      linux-acpi@vger.kernel.org
8065 S:      Maintained
8066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8067 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8068 F:      drivers/gpio/gpiolib-acpi.c
8069 F:      drivers/gpio/gpiolib-acpi.h
8070
8071 GPIO AGGREGATOR
8072 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8073 L:      linux-gpio@vger.kernel.org
8074 S:      Supported
8075 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8076 F:      drivers/gpio/gpio-aggregator.c
8077
8078 GPIO IR Transmitter
8079 M:      Sean Young <sean@mess.org>
8080 L:      linux-media@vger.kernel.org
8081 S:      Maintained
8082 F:      drivers/media/rc/gpio-ir-tx.c
8083
8084 GPIO MOCKUP DRIVER
8085 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8086 L:      linux-gpio@vger.kernel.org
8087 S:      Maintained
8088 F:      drivers/gpio/gpio-mockup.c
8089 F:      tools/testing/selftests/gpio/
8090
8091 GPIO REGMAP
8092 R:      Michael Walle <michael@walle.cc>
8093 S:      Maintained
8094 F:      drivers/gpio/gpio-regmap.c
8095 F:      include/linux/gpio/regmap.h
8096
8097 GPIO SUBSYSTEM
8098 M:      Linus Walleij <linus.walleij@linaro.org>
8099 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8100 L:      linux-gpio@vger.kernel.org
8101 S:      Maintained
8102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
8103 F:      Documentation/ABI/obsolete/sysfs-gpio
8104 F:      Documentation/ABI/testing/gpio-cdev
8105 F:      Documentation/admin-guide/gpio/
8106 F:      Documentation/devicetree/bindings/gpio/
8107 F:      Documentation/driver-api/gpio/
8108 F:      drivers/gpio/
8109 F:      include/asm-generic/gpio.h
8110 F:      include/linux/gpio.h
8111 F:      include/linux/gpio/
8112 F:      include/linux/of_gpio.h
8113 F:      include/uapi/linux/gpio.h
8114 F:      tools/gpio/
8115
8116 GRE DEMULTIPLEXER DRIVER
8117 M:      Dmitry Kozlov <xeb@mail.ru>
8118 L:      netdev@vger.kernel.org
8119 S:      Maintained
8120 F:      include/net/gre.h
8121 F:      net/ipv4/gre_demux.c
8122 F:      net/ipv4/gre_offload.c
8123
8124 GRETH 10/100/1G Ethernet MAC device driver
8125 M:      Andreas Larsson <andreas@gaisler.com>
8126 L:      netdev@vger.kernel.org
8127 S:      Maintained
8128 F:      drivers/net/ethernet/aeroflex/
8129
8130 GREYBUS AUDIO PROTOCOLS DRIVERS
8131 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8132 M:      Mark Greer <mgreer@animalcreek.com>
8133 S:      Maintained
8134 F:      drivers/staging/greybus/audio_apbridgea.c
8135 F:      drivers/staging/greybus/audio_apbridgea.h
8136 F:      drivers/staging/greybus/audio_codec.c
8137 F:      drivers/staging/greybus/audio_codec.h
8138 F:      drivers/staging/greybus/audio_gb.c
8139 F:      drivers/staging/greybus/audio_manager.c
8140 F:      drivers/staging/greybus/audio_manager.h
8141 F:      drivers/staging/greybus/audio_manager_module.c
8142 F:      drivers/staging/greybus/audio_manager_private.h
8143 F:      drivers/staging/greybus/audio_manager_sysfs.c
8144 F:      drivers/staging/greybus/audio_module.c
8145 F:      drivers/staging/greybus/audio_topology.c
8146
8147 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8148 M:      Viresh Kumar <vireshk@kernel.org>
8149 S:      Maintained
8150 F:      drivers/staging/greybus/authentication.c
8151 F:      drivers/staging/greybus/bootrom.c
8152 F:      drivers/staging/greybus/firmware.h
8153 F:      drivers/staging/greybus/fw-core.c
8154 F:      drivers/staging/greybus/fw-download.c
8155 F:      drivers/staging/greybus/fw-management.c
8156 F:      drivers/staging/greybus/greybus_authentication.h
8157 F:      drivers/staging/greybus/greybus_firmware.h
8158 F:      drivers/staging/greybus/hid.c
8159 F:      drivers/staging/greybus/i2c.c
8160 F:      drivers/staging/greybus/spi.c
8161 F:      drivers/staging/greybus/spilib.c
8162 F:      drivers/staging/greybus/spilib.h
8163
8164 GREYBUS LOOPBACK DRIVER
8165 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8166 S:      Maintained
8167 F:      drivers/staging/greybus/loopback.c
8168
8169 GREYBUS PLATFORM DRIVERS
8170 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8171 S:      Maintained
8172 F:      drivers/staging/greybus/arche-apb-ctrl.c
8173 F:      drivers/staging/greybus/arche-platform.c
8174 F:      drivers/staging/greybus/arche_platform.h
8175
8176 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8177 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8178 S:      Maintained
8179 F:      drivers/staging/greybus/gpio.c
8180 F:      drivers/staging/greybus/light.c
8181 F:      drivers/staging/greybus/power_supply.c
8182 F:      drivers/staging/greybus/sdio.c
8183 F:      drivers/staging/greybus/spi.c
8184 F:      drivers/staging/greybus/spilib.c
8185
8186 GREYBUS SUBSYSTEM
8187 M:      Johan Hovold <johan@kernel.org>
8188 M:      Alex Elder <elder@kernel.org>
8189 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8190 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8191 S:      Maintained
8192 F:      drivers/greybus/
8193 F:      drivers/staging/greybus/
8194 F:      include/linux/greybus.h
8195 F:      include/linux/greybus/
8196
8197 GREYBUS UART PROTOCOLS DRIVERS
8198 M:      David Lin <dtwlin@gmail.com>
8199 S:      Maintained
8200 F:      drivers/staging/greybus/log.c
8201 F:      drivers/staging/greybus/uart.c
8202
8203 GS1662 VIDEO SERIALIZER
8204 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8205 L:      linux-media@vger.kernel.org
8206 S:      Maintained
8207 T:      git git://linuxtv.org/media_tree.git
8208 F:      drivers/media/spi/gs1662.c
8209
8210 GSPCA FINEPIX SUBDRIVER
8211 M:      Frank Zago <frank@zago.net>
8212 L:      linux-media@vger.kernel.org
8213 S:      Maintained
8214 T:      git git://linuxtv.org/media_tree.git
8215 F:      drivers/media/usb/gspca/finepix.c
8216
8217 GSPCA GL860 SUBDRIVER
8218 M:      Olivier Lorin <o.lorin@laposte.net>
8219 L:      linux-media@vger.kernel.org
8220 S:      Maintained
8221 T:      git git://linuxtv.org/media_tree.git
8222 F:      drivers/media/usb/gspca/gl860/
8223
8224 GSPCA M5602 SUBDRIVER
8225 M:      Erik Andren <erik.andren@gmail.com>
8226 L:      linux-media@vger.kernel.org
8227 S:      Maintained
8228 T:      git git://linuxtv.org/media_tree.git
8229 F:      drivers/media/usb/gspca/m5602/
8230
8231 GSPCA PAC207 SONIXB SUBDRIVER
8232 M:      Hans Verkuil <hverkuil@xs4all.nl>
8233 L:      linux-media@vger.kernel.org
8234 S:      Odd Fixes
8235 T:      git git://linuxtv.org/media_tree.git
8236 F:      drivers/media/usb/gspca/pac207.c
8237
8238 GSPCA SN9C20X SUBDRIVER
8239 M:      Brian Johnson <brijohn@gmail.com>
8240 L:      linux-media@vger.kernel.org
8241 S:      Maintained
8242 T:      git git://linuxtv.org/media_tree.git
8243 F:      drivers/media/usb/gspca/sn9c20x.c
8244
8245 GSPCA T613 SUBDRIVER
8246 M:      Leandro Costantino <lcostantino@gmail.com>
8247 L:      linux-media@vger.kernel.org
8248 S:      Maintained
8249 T:      git git://linuxtv.org/media_tree.git
8250 F:      drivers/media/usb/gspca/t613.c
8251
8252 GSPCA USB WEBCAM DRIVER
8253 M:      Hans Verkuil <hverkuil@xs4all.nl>
8254 L:      linux-media@vger.kernel.org
8255 S:      Odd Fixes
8256 T:      git git://linuxtv.org/media_tree.git
8257 F:      drivers/media/usb/gspca/
8258
8259 GTP (GPRS Tunneling Protocol)
8260 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8261 M:      Harald Welte <laforge@gnumonks.org>
8262 L:      osmocom-net-gprs@lists.osmocom.org
8263 S:      Maintained
8264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8265 F:      drivers/net/gtp.c
8266
8267 GUID PARTITION TABLE (GPT)
8268 M:      Davidlohr Bueso <dave@stgolabs.net>
8269 L:      linux-efi@vger.kernel.org
8270 S:      Maintained
8271 F:      block/partitions/efi.*
8272
8273 H8/300 ARCHITECTURE
8274 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8275 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8276 S:      Maintained
8277 W:      http://uclinux-h8.sourceforge.jp
8278 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8279 F:      arch/h8300/
8280 F:      drivers/clk/h8300/
8281 F:      drivers/clocksource/h8300_*.c
8282 F:      drivers/irqchip/irq-renesas-h8*.c
8283
8284 HABANALABS PCI DRIVER
8285 M:      Oded Gabbay <ogabbay@kernel.org>
8286 S:      Supported
8287 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8288 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8289 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8290 F:      drivers/misc/habanalabs/
8291 F:      include/uapi/misc/habanalabs.h
8292
8293 HACKRF MEDIA DRIVER
8294 M:      Antti Palosaari <crope@iki.fi>
8295 L:      linux-media@vger.kernel.org
8296 S:      Maintained
8297 W:      https://linuxtv.org
8298 W:      http://palosaari.fi/linux/
8299 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8300 T:      git git://linuxtv.org/anttip/media_tree.git
8301 F:      drivers/media/usb/hackrf/
8302
8303 HANTRO VPU CODEC DRIVER
8304 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8305 M:      Philipp Zabel <p.zabel@pengutronix.de>
8306 L:      linux-media@vger.kernel.org
8307 L:      linux-rockchip@lists.infradead.org
8308 S:      Maintained
8309 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8310 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8311 F:      drivers/staging/media/hantro/
8312
8313 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8314 M:      Frank Seidel <frank@f-seidel.de>
8315 L:      platform-driver-x86@vger.kernel.org
8316 S:      Maintained
8317 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8318 F:      drivers/platform/x86/hdaps.c
8319
8320 HARDWARE MONITORING
8321 M:      Jean Delvare <jdelvare@suse.com>
8322 M:      Guenter Roeck <linux@roeck-us.net>
8323 L:      linux-hwmon@vger.kernel.org
8324 S:      Maintained
8325 W:      http://hwmon.wiki.kernel.org/
8326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8327 F:      Documentation/ABI/testing/sysfs-class-hwmon
8328 F:      Documentation/devicetree/bindings/hwmon/
8329 F:      Documentation/hwmon/
8330 F:      drivers/hwmon/
8331 F:      include/linux/hwmon*.h
8332 F:      include/trace/events/hwmon*.h
8333 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8334
8335 HARDWARE RANDOM NUMBER GENERATOR CORE
8336 M:      Matt Mackall <mpm@selenic.com>
8337 M:      Herbert Xu <herbert@gondor.apana.org.au>
8338 L:      linux-crypto@vger.kernel.org
8339 S:      Odd fixes
8340 F:      Documentation/admin-guide/hw_random.rst
8341 F:      Documentation/devicetree/bindings/rng/
8342 F:      drivers/char/hw_random/
8343 F:      include/linux/hw_random.h
8344
8345 HARDWARE SPINLOCK CORE
8346 M:      Ohad Ben-Cohen <ohad@wizery.com>
8347 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8348 R:      Baolin Wang <baolin.wang7@gmail.com>
8349 L:      linux-remoteproc@vger.kernel.org
8350 S:      Maintained
8351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8352 F:      Documentation/devicetree/bindings/hwlock/
8353 F:      Documentation/locking/hwspinlock.rst
8354 F:      drivers/hwspinlock/
8355 F:      include/linux/hwspinlock.h
8356
8357 HARDWARE TRACING FACILITIES
8358 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8359 S:      Maintained
8360 F:      drivers/hwtracing/
8361
8362 HARMONY SOUND DRIVER
8363 L:      linux-parisc@vger.kernel.org
8364 S:      Maintained
8365 F:      sound/parisc/harmony.*
8366
8367 HDPVR USB VIDEO ENCODER DRIVER
8368 M:      Hans Verkuil <hverkuil@xs4all.nl>
8369 L:      linux-media@vger.kernel.org
8370 S:      Odd Fixes
8371 W:      https://linuxtv.org
8372 T:      git git://linuxtv.org/media_tree.git
8373 F:      drivers/media/usb/hdpvr/
8374
8375 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8376 M:      Matt Hsiao <matt.hsiao@hpe.com>
8377 S:      Supported
8378 F:      drivers/misc/hpilo.[ch]
8379
8380 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8381 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8382 S:      Supported
8383 F:      Documentation/watchdog/hpwdt.rst
8384 F:      drivers/watchdog/hpwdt.c
8385
8386 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8387 M:      Don Brace <don.brace@microchip.com>
8388 L:      storagedev@microchip.com
8389 L:      linux-scsi@vger.kernel.org
8390 S:      Supported
8391 F:      Documentation/scsi/hpsa.rst
8392 F:      drivers/scsi/hpsa*.[ch]
8393 F:      include/linux/cciss*.h
8394 F:      include/uapi/linux/cciss*.h
8395
8396 HFI1 DRIVER
8397 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8398 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8399 L:      linux-rdma@vger.kernel.org
8400 S:      Supported
8401 F:      drivers/infiniband/hw/hfi1
8402
8403 HFS FILESYSTEM
8404 L:      linux-fsdevel@vger.kernel.org
8405 S:      Orphan
8406 F:      Documentation/filesystems/hfs.rst
8407 F:      fs/hfs/
8408
8409 HFSPLUS FILESYSTEM
8410 L:      linux-fsdevel@vger.kernel.org
8411 S:      Orphan
8412 F:      Documentation/filesystems/hfsplus.rst
8413 F:      fs/hfsplus/
8414
8415 HGA FRAMEBUFFER DRIVER
8416 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8417 L:      linux-nvidia@lists.surfsouth.com
8418 S:      Maintained
8419 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8420 F:      drivers/video/fbdev/hgafb.c
8421
8422 HIBERNATION (aka Software Suspend, aka swsusp)
8423 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8424 M:      Pavel Machek <pavel@ucw.cz>
8425 L:      linux-pm@vger.kernel.org
8426 S:      Supported
8427 B:      https://bugzilla.kernel.org
8428 F:      arch/*/include/asm/suspend*.h
8429 F:      arch/x86/power/
8430 F:      drivers/base/power/
8431 F:      include/linux/freezer.h
8432 F:      include/linux/pm.h
8433 F:      include/linux/suspend.h
8434 F:      kernel/power/
8435
8436 HID CORE LAYER
8437 M:      Jiri Kosina <jikos@kernel.org>
8438 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8439 L:      linux-input@vger.kernel.org
8440 S:      Maintained
8441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8442 F:      drivers/hid/
8443 F:      include/linux/hid*
8444 F:      include/uapi/linux/hid*
8445
8446 HID PLAYSTATION DRIVER
8447 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8448 L:      linux-input@vger.kernel.org
8449 S:      Supported
8450 F:      drivers/hid/hid-playstation.c
8451
8452 HID SENSOR HUB DRIVERS
8453 M:      Jiri Kosina <jikos@kernel.org>
8454 M:      Jonathan Cameron <jic23@kernel.org>
8455 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8456 L:      linux-input@vger.kernel.org
8457 L:      linux-iio@vger.kernel.org
8458 S:      Maintained
8459 F:      Documentation/hid/hid-sensor*
8460 F:      drivers/hid/hid-sensor-*
8461 F:      drivers/iio/*/hid-*
8462 F:      include/linux/hid-sensor-*
8463
8464 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8465 M:      Thomas Gleixner <tglx@linutronix.de>
8466 L:      linux-kernel@vger.kernel.org
8467 S:      Maintained
8468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8469 F:      Documentation/timers/
8470 F:      include/linux/clockchips.h
8471 F:      include/linux/hrtimer.h
8472 F:      kernel/time/clockevents.c
8473 F:      kernel/time/hrtimer.c
8474 F:      kernel/time/timer_*.c
8475
8476 HIGH-SPEED SCC DRIVER FOR AX.25
8477 L:      linux-hams@vger.kernel.org
8478 S:      Orphan
8479 F:      drivers/net/hamradio/dmascc.c
8480 F:      drivers/net/hamradio/scc.c
8481
8482 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8483 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8484 S:      Supported
8485 W:      http://www.highpoint-tech.com
8486 F:      Documentation/scsi/hptiop.rst
8487 F:      drivers/scsi/hptiop.c
8488
8489 HIPPI
8490 M:      Jes Sorensen <jes@trained-monkey.org>
8491 L:      linux-hippi@sunsite.dk
8492 S:      Maintained
8493 F:      drivers/net/hippi/
8494 F:      include/linux/hippidevice.h
8495 F:      include/uapi/linux/if_hippi.h
8496 F:      net/802/hippi.c
8497
8498 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8499 M:      Kurt Kanzenbach <kurt@linutronix.de>
8500 L:      netdev@vger.kernel.org
8501 S:      Maintained
8502 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8503 F:      drivers/net/dsa/hirschmann/*
8504 F:      include/linux/platform_data/hirschmann-hellcreek.h
8505 F:      net/dsa/tag_hellcreek.c
8506
8507 HISILICON DMA DRIVER
8508 M:      Zhou Wang <wangzhou1@hisilicon.com>
8509 L:      dmaengine@vger.kernel.org
8510 S:      Maintained
8511 F:      drivers/dma/hisi_dma.c
8512
8513 HISILICON GPIO DRIVER
8514 M:      Luo Jiaxing <luojiaxing@huawei.com>
8515 L:      linux-gpio@vger.kernel.org
8516 S:      Maintained
8517 F:      drivers/gpio/gpio-hisi.c
8518
8519 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8520 M:      Zaibo Xu <xuzaibo@huawei.com>
8521 L:      linux-crypto@vger.kernel.org
8522 S:      Maintained
8523 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8524 F:      drivers/crypto/hisilicon/hpre/hpre.h
8525 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8526 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8527
8528 HISILICON I2C CONTROLLER DRIVER
8529 M:      Yicong Yang <yangyicong@hisilicon.com>
8530 L:      linux-i2c@vger.kernel.org
8531 S:      Maintained
8532 W:      https://www.hisilicon.com
8533 F:      drivers/i2c/busses/i2c-hisi.c
8534
8535 HISILICON LPC BUS DRIVER
8536 M:      john.garry@huawei.com
8537 S:      Maintained
8538 W:      http://www.hisilicon.com
8539 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8540 F:      drivers/bus/hisi_lpc.c
8541
8542 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8543 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8544 M:      Salil Mehta <salil.mehta@huawei.com>
8545 L:      netdev@vger.kernel.org
8546 S:      Maintained
8547 W:      http://www.hisilicon.com
8548 F:      drivers/net/ethernet/hisilicon/hns3/
8549
8550 HISILICON NETWORK SUBSYSTEM DRIVER
8551 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8552 M:      Salil Mehta <salil.mehta@huawei.com>
8553 L:      netdev@vger.kernel.org
8554 S:      Maintained
8555 W:      http://www.hisilicon.com
8556 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8557 F:      drivers/net/ethernet/hisilicon/
8558
8559 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8560 M:      John Stultz <john.stultz@linaro.org>
8561 L:      linux-kernel@vger.kernel.org
8562 S:      Maintained
8563 F:      drivers/misc/hisi_hikey_usb.c
8564 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8565
8566 HISILICON PMU DRIVER
8567 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8568 S:      Supported
8569 W:      http://www.hisilicon.com
8570 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8571 F:      drivers/perf/hisilicon
8572
8573 HISILICON QM AND ZIP Controller DRIVER
8574 M:      Zhou Wang <wangzhou1@hisilicon.com>
8575 L:      linux-crypto@vger.kernel.org
8576 S:      Maintained
8577 F:      Documentation/ABI/testing/debugfs-hisi-zip
8578 F:      drivers/crypto/hisilicon/qm.c
8579 F:      drivers/crypto/hisilicon/qm.h
8580 F:      drivers/crypto/hisilicon/sgl.c
8581 F:      drivers/crypto/hisilicon/zip/
8582
8583 HISILICON ROCE DRIVER
8584 M:      Wenpeng Liang <liangwenpeng@huawei.com>
8585 M:      Weihang Li <liweihang@huawei.com>
8586 L:      linux-rdma@vger.kernel.org
8587 S:      Maintained
8588 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8589 F:      drivers/infiniband/hw/hns/
8590
8591 HISILICON SAS Controller
8592 M:      John Garry <john.garry@huawei.com>
8593 S:      Supported
8594 W:      http://www.hisilicon.com
8595 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8596 F:      drivers/scsi/hisi_sas/
8597
8598 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8599 M:      Zaibo Xu <xuzaibo@huawei.com>
8600 L:      linux-crypto@vger.kernel.org
8601 S:      Maintained
8602 F:      Documentation/ABI/testing/debugfs-hisi-sec
8603 F:      drivers/crypto/hisilicon/sec2/sec.h
8604 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8605 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8606 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8607
8608 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8609 M:      Jay Fang <f.fangjian@huawei.com>
8610 L:      linux-spi@vger.kernel.org
8611 S:      Maintained
8612 W:      http://www.hisilicon.com
8613 F:      drivers/spi/spi-hisi-kunpeng.c
8614
8615 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8616 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8617 L:      linux-kernel@vger.kernel.org
8618 S:      Maintained
8619 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8620 F:      drivers/spmi/hisi-spmi-controller.c
8621
8622 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8623 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8624 L:      linux-kernel@vger.kernel.org
8625 S:      Maintained
8626 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8627 F:      drivers/mfd/hi6421-spmi-pmic.c
8628
8629 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8630 M:      Zaibo Xu <xuzaibo@huawei.com>
8631 S:      Maintained
8632 F:      drivers/crypto/hisilicon/trng/trng.c
8633
8634 HISILICON V3XX SPI NOR FLASH Controller Driver
8635 M:      John Garry <john.garry@huawei.com>
8636 S:      Maintained
8637 W:      http://www.hisilicon.com
8638 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8639
8640 HMM - Heterogeneous Memory Management
8641 M:      Jérôme Glisse <jglisse@redhat.com>
8642 L:      linux-mm@kvack.org
8643 S:      Maintained
8644 F:      Documentation/vm/hmm.rst
8645 F:      include/linux/hmm*
8646 F:      lib/test_hmm*
8647 F:      mm/hmm*
8648 F:      tools/testing/selftests/vm/*hmm*
8649
8650 HOST AP DRIVER
8651 M:      Jouni Malinen <j@w1.fi>
8652 L:      linux-wireless@vger.kernel.org
8653 S:      Obsolete
8654 W:      http://w1.fi/hostap-driver.html
8655 F:      drivers/net/wireless/intersil/hostap/
8656
8657 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8658 L:      platform-driver-x86@vger.kernel.org
8659 S:      Orphan
8660 F:      drivers/platform/x86/tc1100-wmi.c
8661
8662 HPET:   High Precision Event Timers driver
8663 M:      Clemens Ladisch <clemens@ladisch.de>
8664 S:      Maintained
8665 F:      Documentation/timers/hpet.rst
8666 F:      drivers/char/hpet.c
8667 F:      include/linux/hpet.h
8668 F:      include/uapi/linux/hpet.h
8669
8670 HPET:   x86
8671 S:      Orphan
8672 F:      arch/x86/include/asm/hpet.h
8673 F:      arch/x86/kernel/hpet.c
8674
8675 HPFS FILESYSTEM
8676 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8677 S:      Maintained
8678 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8679 F:      fs/hpfs/
8680
8681 HSI SUBSYSTEM
8682 M:      Sebastian Reichel <sre@kernel.org>
8683 S:      Maintained
8684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8685 F:      Documentation/ABI/testing/sysfs-bus-hsi
8686 F:      Documentation/driver-api/hsi.rst
8687 F:      drivers/hsi/
8688 F:      include/linux/hsi/
8689 F:      include/uapi/linux/hsi/
8690
8691 HSO 3G MODEM DRIVER
8692 L:      linux-usb@vger.kernel.org
8693 S:      Orphan
8694 F:      drivers/net/usb/hso.c
8695
8696 HSR NETWORK PROTOCOL
8697 L:      netdev@vger.kernel.org
8698 S:      Orphan
8699 F:      net/hsr/
8700
8701 HT16K33 LED CONTROLLER DRIVER
8702 M:      Robin van der Gracht <robin@protonic.nl>
8703 S:      Maintained
8704 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8705 F:      drivers/auxdisplay/ht16k33.c
8706
8707 HTCPEN TOUCHSCREEN DRIVER
8708 M:      Pau Oliva Fora <pof@eslack.org>
8709 L:      linux-input@vger.kernel.org
8710 S:      Maintained
8711 F:      drivers/input/touchscreen/htcpen.c
8712
8713 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8714 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8715 L:      linux-iio@vger.kernel.org
8716 S:      Maintained
8717 W:      http://www.st.com/
8718 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8719 F:      drivers/iio/humidity/hts221*
8720
8721 HUAWEI ETHERNET DRIVER
8722 L:      netdev@vger.kernel.org
8723 S:      Orphan
8724 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8725 F:      drivers/net/ethernet/huawei/hinic/
8726
8727 HUGETLB FILESYSTEM
8728 M:      Mike Kravetz <mike.kravetz@oracle.com>
8729 L:      linux-mm@kvack.org
8730 S:      Maintained
8731 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8732 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8733 F:      Documentation/vm/hugetlbfs_reserv.rst
8734 F:      fs/hugetlbfs/
8735 F:      include/linux/hugetlb.h
8736 F:      mm/hugetlb.c
8737
8738 HVA ST MEDIA DRIVER
8739 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8740 L:      linux-media@vger.kernel.org
8741 S:      Supported
8742 W:      https://linuxtv.org
8743 T:      git git://linuxtv.org/media_tree.git
8744 F:      drivers/media/platform/sti/hva
8745
8746 HWPOISON MEMORY FAILURE HANDLING
8747 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8748 L:      linux-mm@kvack.org
8749 S:      Maintained
8750 F:      mm/hwpoison-inject.c
8751 F:      mm/memory-failure.c
8752
8753 HYCON HY46XX TOUCHSCREEN SUPPORT
8754 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
8755 L:      linux-input@vger.kernel.org
8756 S:      Maintained
8757 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8758 F:      drivers/input/touchscreen/hycon-hy46xx.c
8759
8760 HYGON PROCESSOR SUPPORT
8761 M:      Pu Wen <puwen@hygon.cn>
8762 L:      linux-kernel@vger.kernel.org
8763 S:      Maintained
8764 F:      arch/x86/kernel/cpu/hygon.c
8765
8766 HYNIX HI556 SENSOR DRIVER
8767 M:      Shawn Tu <shawnx.tu@intel.com>
8768 L:      linux-media@vger.kernel.org
8769 S:      Maintained
8770 T:      git git://linuxtv.org/media_tree.git
8771 F:      drivers/media/i2c/hi556.c
8772
8773 HYNIX HI846 SENSOR DRIVER
8774 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
8775 L:      linux-media@vger.kernel.org
8776 S:      Maintained
8777 F:      drivers/media/i2c/hi846.c
8778
8779 Hyper-V/Azure CORE AND DRIVERS
8780 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8781 M:      Haiyang Zhang <haiyangz@microsoft.com>
8782 M:      Stephen Hemminger <sthemmin@microsoft.com>
8783 M:      Wei Liu <wei.liu@kernel.org>
8784 M:      Dexuan Cui <decui@microsoft.com>
8785 L:      linux-hyperv@vger.kernel.org
8786 S:      Supported
8787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8788 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8789 F:      Documentation/ABI/testing/debugfs-hyperv
8790 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8791 F:      arch/arm64/hyperv
8792 F:      arch/arm64/include/asm/hyperv-tlfs.h
8793 F:      arch/arm64/include/asm/mshyperv.h
8794 F:      arch/x86/hyperv
8795 F:      arch/x86/include/asm/hyperv-tlfs.h
8796 F:      arch/x86/include/asm/mshyperv.h
8797 F:      arch/x86/include/asm/trace/hyperv.h
8798 F:      arch/x86/kernel/cpu/mshyperv.c
8799 F:      drivers/clocksource/hyperv_timer.c
8800 F:      drivers/hid/hid-hyperv.c
8801 F:      drivers/hv/
8802 F:      drivers/input/serio/hyperv-keyboard.c
8803 F:      drivers/iommu/hyperv-iommu.c
8804 F:      drivers/net/ethernet/microsoft/
8805 F:      drivers/net/hyperv/
8806 F:      drivers/pci/controller/pci-hyperv-intf.c
8807 F:      drivers/pci/controller/pci-hyperv.c
8808 F:      drivers/scsi/storvsc_drv.c
8809 F:      drivers/uio/uio_hv_generic.c
8810 F:      drivers/video/fbdev/hyperv_fb.c
8811 F:      include/asm-generic/hyperv-tlfs.h
8812 F:      include/asm-generic/mshyperv.h
8813 F:      include/clocksource/hyperv_timer.h
8814 F:      include/linux/hyperv.h
8815 F:      include/uapi/linux/hyperv.h
8816 F:      net/vmw_vsock/hyperv_transport.c
8817 F:      tools/hv/
8818
8819 HYPERBUS SUPPORT
8820 M:      Vignesh Raghavendra <vigneshr@ti.com>
8821 L:      linux-mtd@lists.infradead.org
8822 S:      Supported
8823 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8824 C:      irc://irc.oftc.net/mtd
8825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8826 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8827 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8828 F:      drivers/mtd/hyperbus/
8829 F:      include/linux/mtd/hyperbus.h
8830
8831 HYPERVISOR VIRTUAL CONSOLE DRIVER
8832 L:      linuxppc-dev@lists.ozlabs.org
8833 S:      Odd Fixes
8834 F:      drivers/tty/hvc/
8835
8836 I2C ACPI SUPPORT
8837 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8838 L:      linux-i2c@vger.kernel.org
8839 L:      linux-acpi@vger.kernel.org
8840 S:      Maintained
8841 F:      drivers/i2c/i2c-core-acpi.c
8842
8843 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8844 M:      Ajay Gupta <ajayg@nvidia.com>
8845 L:      linux-i2c@vger.kernel.org
8846 S:      Maintained
8847 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8848 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8849
8850 I2C MUXES
8851 M:      Peter Rosin <peda@axentia.se>
8852 L:      linux-i2c@vger.kernel.org
8853 S:      Maintained
8854 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8855 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8856 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8857 F:      Documentation/i2c/i2c-topology.rst
8858 F:      Documentation/i2c/muxes/
8859 F:      drivers/i2c/i2c-mux.c
8860 F:      drivers/i2c/muxes/
8861 F:      include/linux/i2c-mux.h
8862
8863 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8864 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8865 L:      linux-i2c@vger.kernel.org
8866 S:      Maintained
8867 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8868 F:      drivers/i2c/busses/i2c-mv64xxx.c
8869
8870 I2C OVER PARALLEL PORT
8871 M:      Jean Delvare <jdelvare@suse.com>
8872 L:      linux-i2c@vger.kernel.org
8873 S:      Maintained
8874 F:      Documentation/i2c/busses/i2c-parport.rst
8875 F:      drivers/i2c/busses/i2c-parport.c
8876
8877 I2C SUBSYSTEM
8878 M:      Wolfram Sang <wsa@kernel.org>
8879 L:      linux-i2c@vger.kernel.org
8880 S:      Maintained
8881 W:      https://i2c.wiki.kernel.org/
8882 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8884 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8885 F:      Documentation/i2c/
8886 F:      drivers/i2c/*
8887 F:      include/linux/i2c-dev.h
8888 F:      include/linux/i2c-smbus.h
8889 F:      include/linux/i2c.h
8890 F:      include/uapi/linux/i2c-*.h
8891 F:      include/uapi/linux/i2c.h
8892
8893 I2C SUBSYSTEM HOST DRIVERS
8894 L:      linux-i2c@vger.kernel.org
8895 S:      Odd Fixes
8896 W:      https://i2c.wiki.kernel.org/
8897 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8899 F:      Documentation/devicetree/bindings/i2c/
8900 F:      drivers/i2c/algos/
8901 F:      drivers/i2c/busses/
8902
8903 I2C-TAOS-EVM DRIVER
8904 M:      Jean Delvare <jdelvare@suse.com>
8905 L:      linux-i2c@vger.kernel.org
8906 S:      Maintained
8907 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8908 F:      drivers/i2c/busses/i2c-taos-evm.c
8909
8910 I2C-TINY-USB DRIVER
8911 M:      Till Harbaum <till@harbaum.org>
8912 L:      linux-i2c@vger.kernel.org
8913 S:      Maintained
8914 W:      http://www.harbaum.org/till/i2c_tiny_usb
8915 F:      drivers/i2c/busses/i2c-tiny-usb.c
8916
8917 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8918 M:      Jean Delvare <jdelvare@suse.com>
8919 L:      linux-i2c@vger.kernel.org
8920 S:      Maintained
8921 F:      Documentation/i2c/busses/i2c-ali1535.rst
8922 F:      Documentation/i2c/busses/i2c-ali1563.rst
8923 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8924 F:      Documentation/i2c/busses/i2c-amd756.rst
8925 F:      Documentation/i2c/busses/i2c-amd8111.rst
8926 F:      Documentation/i2c/busses/i2c-i801.rst
8927 F:      Documentation/i2c/busses/i2c-nforce2.rst
8928 F:      Documentation/i2c/busses/i2c-piix4.rst
8929 F:      Documentation/i2c/busses/i2c-sis5595.rst
8930 F:      Documentation/i2c/busses/i2c-sis630.rst
8931 F:      Documentation/i2c/busses/i2c-sis96x.rst
8932 F:      Documentation/i2c/busses/i2c-via.rst
8933 F:      Documentation/i2c/busses/i2c-viapro.rst
8934 F:      drivers/i2c/busses/i2c-ali1535.c
8935 F:      drivers/i2c/busses/i2c-ali1563.c
8936 F:      drivers/i2c/busses/i2c-ali15x3.c
8937 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8938 F:      drivers/i2c/busses/i2c-amd756.c
8939 F:      drivers/i2c/busses/i2c-amd8111.c
8940 F:      drivers/i2c/busses/i2c-i801.c
8941 F:      drivers/i2c/busses/i2c-isch.c
8942 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8943 F:      drivers/i2c/busses/i2c-nforce2.c
8944 F:      drivers/i2c/busses/i2c-piix4.c
8945 F:      drivers/i2c/busses/i2c-sis5595.c
8946 F:      drivers/i2c/busses/i2c-sis630.c
8947 F:      drivers/i2c/busses/i2c-sis96x.c
8948 F:      drivers/i2c/busses/i2c-via.c
8949 F:      drivers/i2c/busses/i2c-viapro.c
8950
8951 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8952 M:      Hans de Goede <hdegoede@redhat.com>
8953 L:      linux-i2c@vger.kernel.org
8954 S:      Maintained
8955 F:      drivers/i2c/busses/i2c-cht-wc.c
8956
8957 I2C/SMBUS ISMT DRIVER
8958 M:      Seth Heasley <seth.heasley@intel.com>
8959 M:      Neil Horman <nhorman@tuxdriver.com>
8960 L:      linux-i2c@vger.kernel.org
8961 F:      Documentation/i2c/busses/i2c-ismt.rst
8962 F:      drivers/i2c/busses/i2c-ismt.c
8963
8964 I2C/SMBUS STUB DRIVER
8965 M:      Jean Delvare <jdelvare@suse.com>
8966 L:      linux-i2c@vger.kernel.org
8967 S:      Maintained
8968 F:      drivers/i2c/i2c-stub.c
8969
8970 I3C DRIVER FOR CADENCE I3C MASTER IP
8971 M:      Przemysław Gaj <pgaj@cadence.com>
8972 S:      Maintained
8973 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8974 F:      drivers/i3c/master/i3c-master-cdns.c
8975
8976 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8977 M:      Vitor Soares <vitor.soares@synopsys.com>
8978 S:      Maintained
8979 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8980 F:      drivers/i3c/master/dw*
8981
8982 I3C SUBSYSTEM
8983 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
8984 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8985 S:      Maintained
8986 C:      irc://chat.freenode.net/linux-i3c
8987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8988 F:      Documentation/ABI/testing/sysfs-bus-i3c
8989 F:      Documentation/devicetree/bindings/i3c/
8990 F:      Documentation/driver-api/i3c
8991 F:      drivers/i3c/
8992 F:      include/linux/i3c/
8993
8994 IA64 (Itanium) PLATFORM
8995 L:      linux-ia64@vger.kernel.org
8996 S:      Orphan
8997 F:      Documentation/ia64/
8998 F:      arch/ia64/
8999
9000 IBM Power 842 compression accelerator
9001 M:      Haren Myneni <haren@us.ibm.com>
9002 S:      Supported
9003 F:      crypto/842.c
9004 F:      drivers/crypto/nx/Kconfig
9005 F:      drivers/crypto/nx/Makefile
9006 F:      drivers/crypto/nx/nx-842*
9007 F:      include/linux/sw842.h
9008 F:      lib/842/
9009
9010 IBM Power in-Nest Crypto Acceleration
9011 M:      Breno Leitão <leitao@debian.org>
9012 M:      Nayna Jain <nayna@linux.ibm.com>
9013 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9014 L:      linux-crypto@vger.kernel.org
9015 S:      Supported
9016 F:      drivers/crypto/nx/Kconfig
9017 F:      drivers/crypto/nx/Makefile
9018 F:      drivers/crypto/nx/nx-aes*
9019 F:      drivers/crypto/nx/nx-sha*
9020 F:      drivers/crypto/nx/nx.*
9021 F:      drivers/crypto/nx/nx_csbcpb.h
9022 F:      drivers/crypto/nx/nx_debugfs.c
9023
9024 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9025 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9026 L:      linux-pci@vger.kernel.org
9027 L:      linuxppc-dev@lists.ozlabs.org
9028 S:      Supported
9029 F:      drivers/pci/hotplug/rpadlpar*
9030
9031 IBM Power Linux RAID adapter
9032 M:      Brian King <brking@us.ibm.com>
9033 S:      Supported
9034 F:      drivers/scsi/ipr.*
9035
9036 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9037 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9038 L:      linux-pci@vger.kernel.org
9039 L:      linuxppc-dev@lists.ozlabs.org
9040 S:      Supported
9041 F:      drivers/pci/hotplug/rpaphp*
9042
9043 IBM Power SRIOV Virtual NIC Device Driver
9044 M:      Dany Madden <drt@linux.ibm.com>
9045 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9046 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9047 L:      netdev@vger.kernel.org
9048 S:      Supported
9049 F:      drivers/net/ethernet/ibm/ibmvnic.*
9050
9051 IBM Power Virtual Accelerator Switchboard
9052 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9053 L:      linuxppc-dev@lists.ozlabs.org
9054 S:      Supported
9055 F:      arch/powerpc/include/asm/vas.h
9056 F:      arch/powerpc/platforms/powernv/copy-paste.h
9057 F:      arch/powerpc/platforms/powernv/vas*
9058
9059 IBM Power Virtual Ethernet Device Driver
9060 M:      Cristobal Forno <cforno12@linux.ibm.com>
9061 L:      netdev@vger.kernel.org
9062 S:      Supported
9063 F:      drivers/net/ethernet/ibm/ibmveth.*
9064
9065 IBM Power Virtual FC Device Drivers
9066 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9067 L:      linux-scsi@vger.kernel.org
9068 S:      Supported
9069 F:      drivers/scsi/ibmvscsi/ibmvfc*
9070
9071 IBM Power Virtual Management Channel Driver
9072 M:      Brad Warrum <bwarrum@linux.ibm.com>
9073 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9074 S:      Supported
9075 F:      drivers/misc/ibmvmc.*
9076
9077 IBM Power Virtual SCSI Device Drivers
9078 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9079 L:      linux-scsi@vger.kernel.org
9080 S:      Supported
9081 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9082 F:      include/scsi/viosrp.h
9083
9084 IBM Power Virtual SCSI Device Target Driver
9085 M:      Michael Cyr <mikecyr@linux.ibm.com>
9086 L:      linux-scsi@vger.kernel.org
9087 L:      target-devel@vger.kernel.org
9088 S:      Supported
9089 F:      drivers/scsi/ibmvscsi_tgt/
9090
9091 IBM Power VMX Cryptographic instructions
9092 M:      Breno Leitão <leitao@debian.org>
9093 M:      Nayna Jain <nayna@linux.ibm.com>
9094 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9095 L:      linux-crypto@vger.kernel.org
9096 S:      Supported
9097 F:      drivers/crypto/vmx/Kconfig
9098 F:      drivers/crypto/vmx/Makefile
9099 F:      drivers/crypto/vmx/aes*
9100 F:      drivers/crypto/vmx/ghash*
9101 F:      drivers/crypto/vmx/ppc-xlate.pl
9102 F:      drivers/crypto/vmx/vmx.c
9103
9104 IBM ServeRAID RAID DRIVER
9105 S:      Orphan
9106 F:      drivers/scsi/ips.*
9107
9108 ICH LPC AND GPIO DRIVER
9109 M:      Peter Tyser <ptyser@xes-inc.com>
9110 S:      Maintained
9111 F:      drivers/gpio/gpio-ich.c
9112 F:      drivers/mfd/lpc_ich.c
9113
9114 ICY I2C DRIVER
9115 M:      Max Staudt <max@enpas.org>
9116 L:      linux-i2c@vger.kernel.org
9117 S:      Maintained
9118 F:      drivers/i2c/busses/i2c-icy.c
9119
9120 IDEAPAD LAPTOP EXTRAS DRIVER
9121 M:      Ike Panhc <ike.pan@canonical.com>
9122 L:      platform-driver-x86@vger.kernel.org
9123 S:      Maintained
9124 W:      http://launchpad.net/ideapad-laptop
9125 F:      drivers/platform/x86/ideapad-laptop.c
9126
9127 IDEAPAD LAPTOP SLIDEBAR DRIVER
9128 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9129 L:      linux-input@vger.kernel.org
9130 S:      Maintained
9131 W:      https://github.com/o2genum/ideapad-slidebar
9132 F:      drivers/input/misc/ideapad_slidebar.c
9133
9134 IDT VersaClock 5 CLOCK DRIVER
9135 M:      Luca Ceresoli <luca@lucaceresoli.net>
9136 S:      Maintained
9137 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9138 F:      drivers/clk/clk-versaclock5.c
9139
9140 IEEE 802.15.4 SUBSYSTEM
9141 M:      Alexander Aring <alex.aring@gmail.com>
9142 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9143 L:      linux-wpan@vger.kernel.org
9144 S:      Maintained
9145 W:      https://linux-wpan.org/
9146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9148 F:      Documentation/networking/ieee802154.rst
9149 F:      drivers/net/ieee802154/
9150 F:      include/linux/ieee802154.h
9151 F:      include/linux/nl802154.h
9152 F:      include/net/af_ieee802154.h
9153 F:      include/net/cfg802154.h
9154 F:      include/net/ieee802154_netdev.h
9155 F:      include/net/mac802154.h
9156 F:      include/net/nl802154.h
9157 F:      net/ieee802154/
9158 F:      net/mac802154/
9159
9160 IFE PROTOCOL
9161 M:      Yotam Gigi <yotam.gi@gmail.com>
9162 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9163 F:      include/net/ife.h
9164 F:      include/uapi/linux/ife.h
9165 F:      net/ife
9166
9167 IGORPLUG-USB IR RECEIVER
9168 M:      Sean Young <sean@mess.org>
9169 L:      linux-media@vger.kernel.org
9170 S:      Maintained
9171 F:      drivers/media/rc/igorplugusb.c
9172
9173 IGUANAWORKS USB IR TRANSCEIVER
9174 M:      Sean Young <sean@mess.org>
9175 L:      linux-media@vger.kernel.org
9176 S:      Maintained
9177 F:      drivers/media/rc/iguanair.c
9178
9179 IIO DIGITAL POTENTIOMETER DAC
9180 M:      Peter Rosin <peda@axentia.se>
9181 L:      linux-iio@vger.kernel.org
9182 S:      Maintained
9183 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9184 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9185 F:      drivers/iio/dac/dpot-dac.c
9186
9187 IIO ENVELOPE DETECTOR
9188 M:      Peter Rosin <peda@axentia.se>
9189 L:      linux-iio@vger.kernel.org
9190 S:      Maintained
9191 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9192 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9193 F:      drivers/iio/adc/envelope-detector.c
9194
9195 IIO MULTIPLEXER
9196 M:      Peter Rosin <peda@axentia.se>
9197 L:      linux-iio@vger.kernel.org
9198 S:      Maintained
9199 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9200 F:      drivers/iio/multiplexer/iio-mux.c
9201
9202 IIO SCMI BASED DRIVER
9203 M:      Jyoti Bhayana <jbhayana@google.com>
9204 L:      linux-iio@vger.kernel.org
9205 S:      Maintained
9206 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9207
9208 IIO SUBSYSTEM AND DRIVERS
9209 M:      Jonathan Cameron <jic23@kernel.org>
9210 R:      Lars-Peter Clausen <lars@metafoo.de>
9211 L:      linux-iio@vger.kernel.org
9212 S:      Maintained
9213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9214 F:      Documentation/ABI/testing/configfs-iio*
9215 F:      Documentation/ABI/testing/sysfs-bus-iio*
9216 F:      Documentation/devicetree/bindings/iio/
9217 F:      drivers/iio/
9218 F:      drivers/staging/iio/
9219 F:      include/linux/iio/
9220 F:      tools/iio/
9221
9222 IIO UNIT CONVERTER
9223 M:      Peter Rosin <peda@axentia.se>
9224 L:      linux-iio@vger.kernel.org
9225 S:      Maintained
9226 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9227 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9228 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9229 F:      drivers/iio/afe/iio-rescale.c
9230
9231 IKANOS/ADI EAGLE ADSL USB DRIVER
9232 M:      Matthieu Castet <castet.matthieu@free.fr>
9233 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9234 S:      Maintained
9235 F:      drivers/usb/atm/ueagle-atm.c
9236
9237 IMGTEC ASCII LCD DRIVER
9238 M:      Paul Burton <paulburton@kernel.org>
9239 S:      Maintained
9240 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9241 F:      drivers/auxdisplay/img-ascii-lcd.c
9242
9243 IMGTEC IR DECODER DRIVER
9244 S:      Orphan
9245 F:      drivers/media/rc/img-ir/
9246
9247 IMON SOUNDGRAPH USB IR RECEIVER
9248 M:      Sean Young <sean@mess.org>
9249 L:      linux-media@vger.kernel.org
9250 S:      Maintained
9251 F:      drivers/media/rc/imon.c
9252 F:      drivers/media/rc/imon_raw.c
9253
9254 IMS TWINTURBO FRAMEBUFFER DRIVER
9255 L:      linux-fbdev@vger.kernel.org
9256 S:      Orphan
9257 F:      drivers/video/fbdev/imsttfb.c
9258
9259 INA209 HARDWARE MONITOR DRIVER
9260 M:      Guenter Roeck <linux@roeck-us.net>
9261 L:      linux-hwmon@vger.kernel.org
9262 S:      Maintained
9263 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9264 F:      Documentation/hwmon/ina209.rst
9265 F:      drivers/hwmon/ina209.c
9266
9267 INA2XX HARDWARE MONITOR DRIVER
9268 M:      Guenter Roeck <linux@roeck-us.net>
9269 L:      linux-hwmon@vger.kernel.org
9270 S:      Maintained
9271 F:      Documentation/hwmon/ina2xx.rst
9272 F:      drivers/hwmon/ina2xx.c
9273 F:      include/linux/platform_data/ina2xx.h
9274
9275 INDUSTRY PACK SUBSYSTEM (IPACK)
9276 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9277 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9278 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9279 L:      industrypack-devel@lists.sourceforge.net
9280 S:      Maintained
9281 W:      http://industrypack.sourceforge.net
9282 F:      drivers/ipack/
9283
9284 INFINEON DPS310 Driver
9285 M:      Eddie James <eajames@linux.ibm.com>
9286 L:      linux-iio@vger.kernel.org
9287 S:      Maintained
9288 F:      drivers/iio/pressure/dps310.c
9289
9290 INFINIBAND SUBSYSTEM
9291 M:      Doug Ledford <dledford@redhat.com>
9292 M:      Jason Gunthorpe <jgg@nvidia.com>
9293 L:      linux-rdma@vger.kernel.org
9294 S:      Supported
9295 W:      https://github.com/linux-rdma/rdma-core
9296 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9298 F:      Documentation/devicetree/bindings/infiniband/
9299 F:      Documentation/infiniband/
9300 F:      drivers/infiniband/
9301 F:      include/rdma/
9302 F:      include/trace/events/ib_mad.h
9303 F:      include/trace/events/ib_umad.h
9304 F:      include/uapi/linux/if_infiniband.h
9305 F:      include/uapi/rdma/
9306 F:      samples/bpf/ibumad_kern.c
9307 F:      samples/bpf/ibumad_user.c
9308
9309 INGENIC JZ4780 NAND DRIVER
9310 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9311 L:      linux-mtd@lists.infradead.org
9312 L:      linux-mips@vger.kernel.org
9313 S:      Maintained
9314 F:      drivers/mtd/nand/raw/ingenic/
9315
9316 INGENIC JZ47xx SoCs
9317 M:      Paul Cercueil <paul@crapouillou.net>
9318 L:      linux-mips@vger.kernel.org
9319 S:      Maintained
9320 F:      arch/mips/boot/dts/ingenic/
9321 F:      arch/mips/generic/board-ingenic.c
9322 F:      arch/mips/include/asm/mach-ingenic/
9323 F:      arch/mips/ingenic/Kconfig
9324 F:      drivers/clk/ingenic/
9325 F:      drivers/dma/dma-jz4780.c
9326 F:      drivers/gpu/drm/ingenic/
9327 F:      drivers/i2c/busses/i2c-jz4780.c
9328 F:      drivers/iio/adc/ingenic-adc.c
9329 F:      drivers/irqchip/irq-ingenic.c
9330 F:      drivers/memory/jz4780-nemc.c
9331 F:      drivers/mmc/host/jz4740_mmc.c
9332 F:      drivers/mtd/nand/raw/ingenic/
9333 F:      drivers/pinctrl/pinctrl-ingenic.c
9334 F:      drivers/power/supply/ingenic-battery.c
9335 F:      drivers/pwm/pwm-jz4740.c
9336 F:      drivers/remoteproc/ingenic_rproc.c
9337 F:      drivers/rtc/rtc-jz4740.c
9338 F:      drivers/tty/serial/8250/8250_ingenic.c
9339 F:      drivers/usb/musb/jz4740.c
9340 F:      drivers/watchdog/jz4740_wdt.c
9341 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9342 F:      include/linux/mfd/ingenic-tcu.h
9343 F:      sound/soc/codecs/jz47*
9344 F:      sound/soc/jz4740/
9345
9346 INOTIFY
9347 M:      Jan Kara <jack@suse.cz>
9348 R:      Amir Goldstein <amir73il@gmail.com>
9349 L:      linux-fsdevel@vger.kernel.org
9350 S:      Maintained
9351 F:      Documentation/filesystems/inotify.rst
9352 F:      fs/notify/inotify/
9353 F:      include/linux/inotify.h
9354 F:      include/uapi/linux/inotify.h
9355
9356 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9357 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9358 L:      linux-input@vger.kernel.org
9359 S:      Maintained
9360 Q:      http://patchwork.kernel.org/project/linux-input/list/
9361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9362 F:      Documentation/devicetree/bindings/input/
9363 F:      Documentation/devicetree/bindings/serio/
9364 F:      Documentation/input/
9365 F:      drivers/input/
9366 F:      include/linux/input.h
9367 F:      include/linux/input/
9368 F:      include/uapi/linux/input-event-codes.h
9369 F:      include/uapi/linux/input.h
9370
9371 INPUT MULTITOUCH (MT) PROTOCOL
9372 M:      Henrik Rydberg <rydberg@bitmath.org>
9373 L:      linux-input@vger.kernel.org
9374 S:      Odd fixes
9375 F:      Documentation/input/multi-touch-protocol.rst
9376 F:      drivers/input/input-mt.c
9377 K:      \b(ABS|SYN)_MT_
9378
9379 INSIDE SECURE CRYPTO DRIVER
9380 M:      Antoine Tenart <atenart@kernel.org>
9381 L:      linux-crypto@vger.kernel.org
9382 S:      Maintained
9383 F:      drivers/crypto/inside-secure/
9384
9385 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9386 M:      Mimi Zohar <zohar@linux.ibm.com>
9387 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9388 L:      linux-integrity@vger.kernel.org
9389 S:      Supported
9390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9391 F:      security/integrity/ima/
9392
9393 INTEL 810/815 FRAMEBUFFER DRIVER
9394 M:      Antonino Daplas <adaplas@gmail.com>
9395 L:      linux-fbdev@vger.kernel.org
9396 S:      Maintained
9397 F:      drivers/video/fbdev/i810/
9398
9399 INTEL ASoC DRIVERS
9400 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9401 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9402 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9403 M:      Jie Yang <yang.jie@linux.intel.com>
9404 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9405 S:      Supported
9406 F:      sound/soc/intel/
9407
9408 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9409 M:      Hans de Goede <hdegoede@redhat.com>
9410 L:      platform-driver-x86@vger.kernel.org
9411 S:      Maintained
9412 F:      drivers/platform/x86/intel/atomisp2/pm.c
9413
9414 INTEL ATOMISP2 LED DRIVER
9415 M:      Hans de Goede <hdegoede@redhat.com>
9416 L:      platform-driver-x86@vger.kernel.org
9417 S:      Maintained
9418 F:      drivers/platform/x86/intel/atomisp2/led.c
9419
9420 INTEL BIOS SAR INT1092 DRIVER
9421 M:      Shravan Sudhakar <s.shravan@intel.com>
9422 M:      Intel Corporation <linuxwwan@intel.com>
9423 L:      platform-driver-x86@vger.kernel.org
9424 S:      Maintained
9425 F:      drivers/platform/x86/intel/int1092/
9426
9427 INTEL BROXTON PMC DRIVER
9428 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9429 M:      Zha Qipeng <qipeng.zha@intel.com>
9430 S:      Maintained
9431 F:      drivers/mfd/intel_pmc_bxt.c
9432 F:      include/linux/mfd/intel_pmc_bxt.h
9433
9434 INTEL C600 SERIES SAS CONTROLLER DRIVER
9435 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9436 L:      linux-scsi@vger.kernel.org
9437 S:      Supported
9438 T:      git git://git.code.sf.net/p/intel-sas/isci
9439 F:      drivers/scsi/isci/
9440
9441 INTEL CPU family model numbers
9442 M:      Tony Luck <tony.luck@intel.com>
9443 M:      x86@kernel.org
9444 L:      linux-kernel@vger.kernel.org
9445 S:      Supported
9446 F:      arch/x86/include/asm/intel-family.h
9447
9448 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9449 M:      Jani Nikula <jani.nikula@linux.intel.com>
9450 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9451 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9452 L:      intel-gfx@lists.freedesktop.org
9453 S:      Supported
9454 W:      https://01.org/linuxgraphics/
9455 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9456 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9457 C:      irc://irc.oftc.net/intel-gfx
9458 T:      git git://anongit.freedesktop.org/drm-intel
9459 F:      Documentation/gpu/i915.rst
9460 F:      drivers/gpu/drm/i915/
9461 F:      include/drm/i915*
9462 F:      include/uapi/drm/i915_drm.h
9463
9464 INTEL ETHERNET DRIVERS
9465 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9466 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9467 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9468 S:      Supported
9469 W:      http://www.intel.com/support/feedback.htm
9470 W:      http://e1000.sourceforge.net/
9471 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9474 F:      Documentation/networking/device_drivers/ethernet/intel/
9475 F:      drivers/net/ethernet/intel/
9476 F:      drivers/net/ethernet/intel/*/
9477 F:      include/linux/avf/virtchnl.h
9478 F:      include/linux/net/intel/iidc.h
9479
9480 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9481 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9482 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9483 L:      linux-rdma@vger.kernel.org
9484 S:      Supported
9485 F:      drivers/infiniband/hw/irdma/
9486 F:      include/uapi/rdma/irdma-abi.h
9487
9488 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9489 M:      Maik Broemme <mbroemme@libmpq.org>
9490 L:      linux-fbdev@vger.kernel.org
9491 S:      Maintained
9492 F:      Documentation/fb/intelfb.rst
9493 F:      drivers/video/fbdev/intelfb/
9494
9495 INTEL GPIO DRIVERS
9496 M:      Andy Shevchenko <andy@kernel.org>
9497 L:      linux-gpio@vger.kernel.org
9498 S:      Maintained
9499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9500 F:      drivers/gpio/gpio-ich.c
9501 F:      drivers/gpio/gpio-merrifield.c
9502 F:      drivers/gpio/gpio-ml-ioh.c
9503 F:      drivers/gpio/gpio-pch.c
9504 F:      drivers/gpio/gpio-sch.c
9505 F:      drivers/gpio/gpio-sodaville.c
9506
9507 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9508 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9509 M:      Zhi Wang <zhi.a.wang@intel.com>
9510 L:      intel-gvt-dev@lists.freedesktop.org
9511 L:      intel-gfx@lists.freedesktop.org
9512 S:      Supported
9513 W:      https://01.org/igvt-g
9514 T:      git https://github.com/intel/gvt-linux.git
9515 F:      drivers/gpu/drm/i915/gvt/
9516
9517 INTEL HID EVENT DRIVER
9518 M:      Alex Hung <alex.hung@canonical.com>
9519 L:      platform-driver-x86@vger.kernel.org
9520 S:      Maintained
9521 F:      drivers/platform/x86/intel/hid.c
9522
9523 INTEL I/OAT DMA DRIVER
9524 M:      Dave Jiang <dave.jiang@intel.com>
9525 R:      Dan Williams <dan.j.williams@intel.com>
9526 L:      dmaengine@vger.kernel.org
9527 S:      Supported
9528 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9529 F:      drivers/dma/ioat*
9530
9531 INTEL IADX DRIVER
9532 M:      Dave Jiang <dave.jiang@intel.com>
9533 L:      dmaengine@vger.kernel.org
9534 S:      Supported
9535 F:      drivers/dma/idxd/*
9536 F:      include/uapi/linux/idxd.h
9537
9538 INTEL IDLE DRIVER
9539 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9540 M:      Len Brown <lenb@kernel.org>
9541 L:      linux-pm@vger.kernel.org
9542 S:      Supported
9543 B:      https://bugzilla.kernel.org
9544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9545 F:      drivers/idle/intel_idle.c
9546
9547 INTEL INTEGRATED SENSOR HUB DRIVER
9548 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9549 M:      Jiri Kosina <jikos@kernel.org>
9550 L:      linux-input@vger.kernel.org
9551 S:      Maintained
9552 F:      drivers/hid/intel-ish-hid/
9553
9554 INTEL IOMMU (VT-d)
9555 M:      David Woodhouse <dwmw2@infradead.org>
9556 M:      Lu Baolu <baolu.lu@linux.intel.com>
9557 L:      iommu@lists.linux-foundation.org
9558 S:      Supported
9559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9560 F:      drivers/iommu/intel/
9561 F:      include/linux/intel-iommu.h
9562 F:      include/linux/intel-svm.h
9563
9564 INTEL IOP-ADMA DMA DRIVER
9565 R:      Dan Williams <dan.j.williams@intel.com>
9566 S:      Odd fixes
9567 F:      drivers/dma/iop-adma.c
9568
9569 INTEL IPU3 CSI-2 CIO2 DRIVER
9570 M:      Yong Zhi <yong.zhi@intel.com>
9571 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9572 M:      Bingbu Cao <bingbu.cao@intel.com>
9573 M:      Dan Scally <djrscally@gmail.com>
9574 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9575 L:      linux-media@vger.kernel.org
9576 S:      Maintained
9577 T:      git git://linuxtv.org/media_tree.git
9578 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9579 F:      drivers/media/pci/intel/ipu3/
9580
9581 INTEL IPU3 CSI-2 IMGU DRIVER
9582 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9583 R:      Bingbu Cao <bingbu.cao@intel.com>
9584 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9585 L:      linux-media@vger.kernel.org
9586 S:      Maintained
9587 F:      Documentation/admin-guide/media/ipu3.rst
9588 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9589 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9590 F:      drivers/staging/media/ipu3/
9591
9592 INTEL IXP4XX CRYPTO SUPPORT
9593 M:      Corentin Labbe <clabbe@baylibre.com>
9594 L:      linux-crypto@vger.kernel.org
9595 S:      Maintained
9596 F:      drivers/crypto/ixp4xx_crypto.c
9597
9598 INTEL ISHTP ECLITE DRIVER
9599 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
9600 L:      platform-driver-x86@vger.kernel.org
9601 S:      Supported
9602 F:      drivers/platform/x86/intel/ishtp_eclite.c
9603
9604 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9605 M:      Krzysztof Halasa <khalasa@piap.pl>
9606 S:      Maintained
9607 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9608 F:      drivers/net/wan/ixp4xx_hss.c
9609 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9610 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9611 F:      include/linux/soc/ixp4xx/npe.h
9612 F:      include/linux/soc/ixp4xx/qmgr.h
9613
9614 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9615 M:      Deepak Saxena <dsaxena@plexity.net>
9616 S:      Maintained
9617 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
9618 F:      drivers/char/hw_random/ixp4xx-rng.c
9619
9620 INTEL KEEM BAY DRM DRIVER
9621 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9622 M:      Edmund Dea <edmund.j.dea@intel.com>
9623 S:      Maintained
9624 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9625 F:      drivers/gpu/drm/kmb/
9626
9627 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9628 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9629 S:      Maintained
9630 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9631 F:      drivers/crypto/keembay/Kconfig
9632 F:      drivers/crypto/keembay/Makefile
9633 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9634 F:      drivers/crypto/keembay/ocs-aes.c
9635 F:      drivers/crypto/keembay/ocs-aes.h
9636
9637 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
9638 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9639 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
9640 M:      Mark Gross <mgross@linux.intel.com>
9641 S:      Maintained
9642 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
9643 F:      drivers/crypto/keembay/Kconfig
9644 F:      drivers/crypto/keembay/Makefile
9645 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
9646 F:      drivers/crypto/keembay/ocs-ecc-curve-defs.h
9647
9648 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9649 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9650 M:      Declan Murphy <declan.murphy@intel.com>
9651 S:      Maintained
9652 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9653 F:      drivers/crypto/keembay/Kconfig
9654 F:      drivers/crypto/keembay/Makefile
9655 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9656 F:      drivers/crypto/keembay/ocs-hcu.c
9657 F:      drivers/crypto/keembay/ocs-hcu.h
9658
9659 INTEL MANAGEMENT ENGINE (mei)
9660 M:      Tomas Winkler <tomas.winkler@intel.com>
9661 L:      linux-kernel@vger.kernel.org
9662 S:      Supported
9663 F:      Documentation/driver-api/mei/*
9664 F:      drivers/misc/mei/
9665 F:      drivers/watchdog/mei_wdt.c
9666 F:      include/linux/mei_cl_bus.h
9667 F:      include/uapi/linux/mei.h
9668 F:      samples/mei/*
9669
9670 INTEL MAX 10 BMC MFD DRIVER
9671 M:      Xu Yilun <yilun.xu@intel.com>
9672 R:      Tom Rix <trix@redhat.com>
9673 S:      Maintained
9674 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9675 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9676 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9677 F:      drivers/mfd/intel-m10-bmc.c
9678 F:      include/linux/mfd/intel-m10-bmc.h
9679
9680 INTEL MENLOW THERMAL DRIVER
9681 M:      Sujith Thomas <sujith.thomas@intel.com>
9682 L:      linux-pm@vger.kernel.org
9683 S:      Supported
9684 W:      https://01.org/linux-acpi
9685 F:      drivers/thermal/intel/intel_menlow.c
9686
9687 INTEL P-Unit IPC DRIVER
9688 M:      Zha Qipeng <qipeng.zha@intel.com>
9689 L:      platform-driver-x86@vger.kernel.org
9690 S:      Maintained
9691 F:      arch/x86/include/asm/intel_punit_ipc.h
9692 F:      drivers/platform/x86/intel/punit_ipc.c
9693
9694 INTEL PMC CORE DRIVER
9695 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9696 M:      David E Box <david.e.box@intel.com>
9697 L:      platform-driver-x86@vger.kernel.org
9698 S:      Maintained
9699 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9700 F:      drivers/platform/x86/intel/pmc/
9701
9702 INTEL PMIC GPIO DRIVERS
9703 M:      Andy Shevchenko <andy@kernel.org>
9704 S:      Maintained
9705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9706 F:      drivers/gpio/gpio-*cove.c
9707
9708 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9709 M:      Andy Shevchenko <andy@kernel.org>
9710 S:      Maintained
9711 F:      drivers/mfd/intel_soc_pmic*
9712 F:      include/linux/mfd/intel_soc_pmic*
9713
9714 INTEL PMT DRIVER
9715 M:      "David E. Box" <david.e.box@linux.intel.com>
9716 S:      Maintained
9717 F:      drivers/mfd/intel_pmt.c
9718 F:      drivers/platform/x86/intel/pmt/
9719
9720 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9721 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9722 L:      linux-wireless@vger.kernel.org
9723 S:      Maintained
9724 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9725 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9726 F:      drivers/net/wireless/intel/ipw2x00/
9727
9728 INTEL PSTATE DRIVER
9729 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9730 M:      Len Brown <lenb@kernel.org>
9731 L:      linux-pm@vger.kernel.org
9732 S:      Supported
9733 F:      drivers/cpufreq/intel_pstate.c
9734
9735 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
9736 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9737 L:      linux-iio@vger.kernel.org
9738 F:      drivers/counter/intel-qep.c
9739
9740 INTEL SCU DRIVERS
9741 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9742 S:      Maintained
9743 F:      arch/x86/include/asm/intel_scu_ipc.h
9744 F:      drivers/platform/x86/intel_scu_*
9745
9746 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9747 M:      Daniel Scally <djrscally@gmail.com>
9748 S:      Maintained
9749 F:      drivers/platform/x86/intel/int3472/
9750
9751 INTEL SPEED SELECT TECHNOLOGY
9752 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9753 L:      platform-driver-x86@vger.kernel.org
9754 S:      Maintained
9755 F:      drivers/platform/x86/intel/speed_select_if/
9756 F:      include/uapi/linux/isst_if.h
9757 F:      tools/power/x86/intel-speed-select/
9758
9759 INTEL STRATIX10 FIRMWARE DRIVERS
9760 M:      Dinh Nguyen <dinguyen@kernel.org>
9761 L:      linux-kernel@vger.kernel.org
9762 S:      Maintained
9763 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9764 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9765 F:      drivers/firmware/stratix10-rsu.c
9766 F:      drivers/firmware/stratix10-svc.c
9767 F:      include/linux/firmware/intel/stratix10-smc.h
9768 F:      include/linux/firmware/intel/stratix10-svc-client.h
9769
9770 INTEL TELEMETRY DRIVER
9771 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9772 M:      "David E. Box" <david.e.box@linux.intel.com>
9773 L:      platform-driver-x86@vger.kernel.org
9774 S:      Maintained
9775 F:      arch/x86/include/asm/intel_telemetry.h
9776 F:      drivers/platform/x86/intel/telemetry/
9777
9778 INTEL UNCORE FREQUENCY CONTROL
9779 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9780 L:      platform-driver-x86@vger.kernel.org
9781 S:      Maintained
9782 F:      drivers/platform/x86/intel/uncore-frequency.c
9783
9784 INTEL VIRTUAL BUTTON DRIVER
9785 M:      AceLan Kao <acelan.kao@canonical.com>
9786 L:      platform-driver-x86@vger.kernel.org
9787 S:      Maintained
9788 F:      drivers/platform/x86/intel/vbtn.c
9789
9790 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9791 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9792 L:      linux-wireless@vger.kernel.org
9793 S:      Supported
9794 F:      drivers/net/wireless/intel/iwlegacy/
9795
9796 INTEL WIRELESS WIFI LINK (iwlwifi)
9797 M:      Luca Coelho <luciano.coelho@intel.com>
9798 L:      linux-wireless@vger.kernel.org
9799 S:      Supported
9800 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9802 F:      drivers/net/wireless/intel/iwlwifi/
9803
9804 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9805 M:      Jithu Joseph <jithu.joseph@intel.com>
9806 R:      Maurice Ma <maurice.ma@intel.com>
9807 S:      Maintained
9808 W:      https://slimbootloader.github.io/security/firmware-update.html
9809 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
9810
9811 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9812 L:      Dell.Client.Kernel@dell.com
9813 S:      Maintained
9814 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
9815
9816 INTEL WWAN IOSM DRIVER
9817 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
9818 M:      Intel Corporation <linuxwwan@intel.com>
9819 L:      netdev@vger.kernel.org
9820 S:      Maintained
9821 F:      drivers/net/wwan/iosm/
9822
9823 INTEL(R) TRACE HUB
9824 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9825 S:      Supported
9826 F:      Documentation/trace/intel_th.rst
9827 F:      drivers/hwtracing/intel_th/
9828 F:      include/linux/intel_th.h
9829
9830 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9831 M:      Ning Sun <ning.sun@intel.com>
9832 L:      tboot-devel@lists.sourceforge.net
9833 S:      Supported
9834 W:      http://tboot.sourceforge.net
9835 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9836 F:      Documentation/x86/intel_txt.rst
9837 F:      arch/x86/kernel/tboot.c
9838 F:      include/linux/tboot.h
9839
9840 INTEL SGX
9841 M:      Jarkko Sakkinen <jarkko@kernel.org>
9842 R:      Dave Hansen <dave.hansen@linux.intel.com>
9843 L:      linux-sgx@vger.kernel.org
9844 S:      Supported
9845 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9847 F:      Documentation/x86/sgx.rst
9848 F:      arch/x86/entry/vdso/vsgx.S
9849 F:      arch/x86/include/asm/sgx.h
9850 F:      arch/x86/include/uapi/asm/sgx.h
9851 F:      arch/x86/kernel/cpu/sgx/*
9852 F:      tools/testing/selftests/sgx/*
9853 K:      \bSGX_
9854
9855 INTERCONNECT API
9856 M:      Georgi Djakov <djakov@kernel.org>
9857 L:      linux-pm@vger.kernel.org
9858 S:      Maintained
9859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9860 F:      Documentation/devicetree/bindings/interconnect/
9861 F:      Documentation/driver-api/interconnect.rst
9862 F:      drivers/interconnect/
9863 F:      include/dt-bindings/interconnect/
9864 F:      include/linux/interconnect-provider.h
9865 F:      include/linux/interconnect.h
9866
9867 INTERRUPT COUNTER DRIVER
9868 M:      Oleksij Rempel <o.rempel@pengutronix.de>
9869 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
9870 L:      linux-iio@vger.kernel.org
9871 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9872 F:      drivers/counter/interrupt-cnt.c
9873
9874 INVENSENSE ICM-426xx IMU DRIVER
9875 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9876 L:      linux-iio@vger.kernel.org
9877 S:      Maintained
9878 W:      https://invensense.tdk.com/
9879 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9880 F:      drivers/iio/imu/inv_icm42600/
9881
9882 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9883 M:      Linus Walleij <linus.walleij@linaro.org>
9884 L:      linux-iio@vger.kernel.org
9885 S:      Maintained
9886 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9887 F:      drivers/iio/gyro/mpu3050*
9888
9889 IOC3 ETHERNET DRIVER
9890 M:      Ralf Baechle <ralf@linux-mips.org>
9891 L:      linux-mips@vger.kernel.org
9892 S:      Maintained
9893 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9894
9895 IOMAP FILESYSTEM LIBRARY
9896 M:      Christoph Hellwig <hch@infradead.org>
9897 M:      Darrick J. Wong <djwong@kernel.org>
9898 M:      linux-xfs@vger.kernel.org
9899 M:      linux-fsdevel@vger.kernel.org
9900 L:      linux-xfs@vger.kernel.org
9901 L:      linux-fsdevel@vger.kernel.org
9902 S:      Supported
9903 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9904 F:      fs/iomap/
9905 F:      include/linux/iomap.h
9906
9907 IOMMU DRIVERS
9908 M:      Joerg Roedel <joro@8bytes.org>
9909 M:      Will Deacon <will@kernel.org>
9910 L:      iommu@lists.linux-foundation.org
9911 S:      Maintained
9912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9913 F:      Documentation/devicetree/bindings/iommu/
9914 F:      Documentation/userspace-api/iommu.rst
9915 F:      drivers/iommu/
9916 F:      include/linux/iommu.h
9917 F:      include/linux/iova.h
9918 F:      include/linux/of_iommu.h
9919 F:      include/uapi/linux/iommu.h
9920
9921 IO_URING
9922 M:      Jens Axboe <axboe@kernel.dk>
9923 R:      Pavel Begunkov <asml.silence@gmail.com>
9924 L:      io-uring@vger.kernel.org
9925 S:      Maintained
9926 T:      git git://git.kernel.dk/linux-block
9927 T:      git git://git.kernel.dk/liburing
9928 F:      fs/io-wq.c
9929 F:      fs/io-wq.h
9930 F:      fs/io_uring.c
9931 F:      include/linux/io_uring.h
9932 F:      include/uapi/linux/io_uring.h
9933 F:      tools/io_uring/
9934
9935 IPMI SUBSYSTEM
9936 M:      Corey Minyard <minyard@acm.org>
9937 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9938 S:      Supported
9939 W:      http://openipmi.sourceforge.net/
9940 F:      Documentation/driver-api/ipmi.rst
9941 F:      Documentation/devicetree/bindings/ipmi/
9942 F:      drivers/char/ipmi/
9943 F:      include/linux/ipmi*
9944 F:      include/uapi/linux/ipmi*
9945
9946 IPS SCSI RAID DRIVER
9947 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9948 L:      linux-scsi@vger.kernel.org
9949 S:      Maintained
9950 W:      http://www.adaptec.com/
9951 F:      drivers/scsi/ips*
9952
9953 IPVS
9954 M:      Simon Horman <horms@verge.net.au>
9955 M:      Julian Anastasov <ja@ssi.bg>
9956 L:      netdev@vger.kernel.org
9957 L:      lvs-devel@vger.kernel.org
9958 S:      Maintained
9959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9961 F:      Documentation/networking/ipvs-sysctl.rst
9962 F:      include/net/ip_vs.h
9963 F:      include/uapi/linux/ip_vs.h
9964 F:      net/netfilter/ipvs/
9965
9966 IPWIRELESS DRIVER
9967 M:      Jiri Kosina <jikos@kernel.org>
9968 M:      David Sterba <dsterba@suse.com>
9969 S:      Odd Fixes
9970 F:      drivers/tty/ipwireless/
9971
9972 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9973 M:      Marc Zyngier <maz@kernel.org>
9974 S:      Maintained
9975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9976 F:      Documentation/core-api/irq/irq-domain.rst
9977 F:      include/linux/irqdomain.h
9978 F:      kernel/irq/irqdomain.c
9979 F:      kernel/irq/msi.c
9980
9981 IRQ SUBSYSTEM
9982 M:      Thomas Gleixner <tglx@linutronix.de>
9983 L:      linux-kernel@vger.kernel.org
9984 S:      Maintained
9985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9986 F:      kernel/irq/
9987
9988 IRQCHIP DRIVERS
9989 M:      Thomas Gleixner <tglx@linutronix.de>
9990 M:      Marc Zyngier <maz@kernel.org>
9991 L:      linux-kernel@vger.kernel.org
9992 S:      Maintained
9993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9994 F:      Documentation/devicetree/bindings/interrupt-controller/
9995 F:      drivers/irqchip/
9996
9997 ISA
9998 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9999 S:      Maintained
10000 F:      Documentation/driver-api/isa.rst
10001 F:      drivers/base/isa.c
10002 F:      include/linux/isa.h
10003
10004 ISA RADIO MODULE
10005 M:      Hans Verkuil <hverkuil@xs4all.nl>
10006 L:      linux-media@vger.kernel.org
10007 S:      Maintained
10008 W:      https://linuxtv.org
10009 T:      git git://linuxtv.org/media_tree.git
10010 F:      drivers/media/radio/radio-isa*
10011
10012 ISAPNP
10013 M:      Jaroslav Kysela <perex@perex.cz>
10014 S:      Maintained
10015 F:      Documentation/driver-api/isapnp.rst
10016 F:      drivers/pnp/isapnp/
10017 F:      include/linux/isapnp.h
10018
10019 ISCSI
10020 M:      Lee Duncan <lduncan@suse.com>
10021 M:      Chris Leech <cleech@redhat.com>
10022 L:      open-iscsi@googlegroups.com
10023 L:      linux-scsi@vger.kernel.org
10024 S:      Maintained
10025 W:      www.open-iscsi.com
10026 F:      drivers/scsi/*iscsi*
10027 F:      include/scsi/*iscsi*
10028
10029 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10030 M:      Peter Jones <pjones@redhat.com>
10031 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10032 S:      Maintained
10033 F:      drivers/firmware/iscsi_ibft*
10034
10035 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10036 M:      Sagi Grimberg <sagi@grimberg.me>
10037 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10038 L:      linux-rdma@vger.kernel.org
10039 S:      Supported
10040 W:      http://www.openfabrics.org
10041 W:      www.open-iscsi.org
10042 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10043 F:      drivers/infiniband/ulp/iser/
10044
10045 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10046 M:      Sagi Grimberg <sagi@grimberg.me>
10047 L:      linux-rdma@vger.kernel.org
10048 L:      target-devel@vger.kernel.org
10049 S:      Supported
10050 W:      http://www.linux-iscsi.org
10051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10052 F:      drivers/infiniband/ulp/isert
10053
10054 ISDN/CMTP OVER BLUETOOTH
10055 M:      Karsten Keil <isdn@linux-pingi.de>
10056 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10057 L:      netdev@vger.kernel.org
10058 S:      Odd Fixes
10059 W:      http://www.isdn4linux.de
10060 F:      Documentation/isdn/
10061 F:      drivers/isdn/capi/
10062 F:      include/linux/isdn/
10063 F:      include/uapi/linux/isdn/
10064 F:      net/bluetooth/cmtp/
10065
10066 ISDN/mISDN SUBSYSTEM
10067 M:      Karsten Keil <isdn@linux-pingi.de>
10068 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10069 L:      netdev@vger.kernel.org
10070 S:      Maintained
10071 W:      http://www.isdn4linux.de
10072 F:      drivers/isdn/Kconfig
10073 F:      drivers/isdn/Makefile
10074 F:      drivers/isdn/hardware/
10075 F:      drivers/isdn/mISDN/
10076
10077 IT87 HARDWARE MONITORING DRIVER
10078 M:      Jean Delvare <jdelvare@suse.com>
10079 L:      linux-hwmon@vger.kernel.org
10080 S:      Maintained
10081 F:      Documentation/hwmon/it87.rst
10082 F:      drivers/hwmon/it87.c
10083
10084 IT913X MEDIA DRIVER
10085 M:      Antti Palosaari <crope@iki.fi>
10086 L:      linux-media@vger.kernel.org
10087 S:      Maintained
10088 W:      https://linuxtv.org
10089 W:      http://palosaari.fi/linux/
10090 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10091 T:      git git://linuxtv.org/anttip/media_tree.git
10092 F:      drivers/media/tuners/it913x*
10093
10094 ITE IT66121 HDMI BRIDGE DRIVER
10095 M:      Phong LE <ple@baylibre.com>
10096 M:      Neil Armstrong <narmstrong@baylibre.com>
10097 S:      Maintained
10098 T:      git git://anongit.freedesktop.org/drm/drm-misc
10099 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10100 F:      drivers/gpu/drm/bridge/ite-it66121.c
10101
10102 IVTV VIDEO4LINUX DRIVER
10103 M:      Andy Walls <awalls@md.metrocast.net>
10104 L:      linux-media@vger.kernel.org
10105 S:      Maintained
10106 W:      https://linuxtv.org
10107 T:      git git://linuxtv.org/media_tree.git
10108 F:      Documentation/admin-guide/media/ivtv*
10109 F:      drivers/media/pci/ivtv/
10110 F:      include/uapi/linux/ivtv*
10111
10112 IX2505V MEDIA DRIVER
10113 M:      Malcolm Priestley <tvboxspy@gmail.com>
10114 L:      linux-media@vger.kernel.org
10115 S:      Maintained
10116 W:      https://linuxtv.org
10117 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10118 F:      drivers/media/dvb-frontends/ix2505v*
10119
10120 JAILHOUSE HYPERVISOR INTERFACE
10121 M:      Jan Kiszka <jan.kiszka@siemens.com>
10122 L:      jailhouse-dev@googlegroups.com
10123 S:      Maintained
10124 F:      arch/x86/include/asm/jailhouse_para.h
10125 F:      arch/x86/kernel/jailhouse.c
10126
10127 JC42.4 TEMPERATURE SENSOR DRIVER
10128 M:      Guenter Roeck <linux@roeck-us.net>
10129 L:      linux-hwmon@vger.kernel.org
10130 S:      Maintained
10131 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10132 F:      Documentation/hwmon/jc42.rst
10133 F:      drivers/hwmon/jc42.c
10134
10135 JFS FILESYSTEM
10136 M:      Dave Kleikamp <shaggy@kernel.org>
10137 L:      jfs-discussion@lists.sourceforge.net
10138 S:      Maintained
10139 W:      http://jfs.sourceforge.net/
10140 T:      git git://github.com/kleikamp/linux-shaggy.git
10141 F:      Documentation/admin-guide/jfs.rst
10142 F:      fs/jfs/
10143
10144 JME NETWORK DRIVER
10145 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10146 L:      netdev@vger.kernel.org
10147 S:      Maintained
10148 F:      drivers/net/ethernet/jme.*
10149
10150 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10151 M:      David Woodhouse <dwmw2@infradead.org>
10152 M:      Richard Weinberger <richard@nod.at>
10153 L:      linux-mtd@lists.infradead.org
10154 S:      Odd Fixes
10155 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10156 T:      git git://git.infradead.org/ubifs-2.6.git
10157 F:      fs/jffs2/
10158 F:      include/uapi/linux/jffs2.h
10159
10160 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10161 M:      "Theodore Ts'o" <tytso@mit.edu>
10162 M:      Jan Kara <jack@suse.com>
10163 L:      linux-ext4@vger.kernel.org
10164 S:      Maintained
10165 F:      fs/jbd2/
10166 F:      include/linux/jbd2.h
10167
10168 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10169 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10170 L:      linux-media@vger.kernel.org
10171 L:      linux-renesas-soc@vger.kernel.org
10172 S:      Maintained
10173 F:      drivers/media/platform/rcar_jpu.c
10174
10175 JSM Neo PCI based serial card
10176 L:      linux-serial@vger.kernel.org
10177 S:      Orphan
10178 F:      drivers/tty/serial/jsm/
10179
10180 K10TEMP HARDWARE MONITORING DRIVER
10181 M:      Clemens Ladisch <clemens@ladisch.de>
10182 L:      linux-hwmon@vger.kernel.org
10183 S:      Maintained
10184 F:      Documentation/hwmon/k10temp.rst
10185 F:      drivers/hwmon/k10temp.c
10186
10187 K8TEMP HARDWARE MONITORING DRIVER
10188 M:      Rudolf Marek <r.marek@assembler.cz>
10189 L:      linux-hwmon@vger.kernel.org
10190 S:      Maintained
10191 F:      Documentation/hwmon/k8temp.rst
10192 F:      drivers/hwmon/k8temp.c
10193
10194 KASAN
10195 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10196 R:      Alexander Potapenko <glider@google.com>
10197 R:      Andrey Konovalov <andreyknvl@gmail.com>
10198 R:      Dmitry Vyukov <dvyukov@google.com>
10199 L:      kasan-dev@googlegroups.com
10200 S:      Maintained
10201 F:      Documentation/dev-tools/kasan.rst
10202 F:      arch/*/include/asm/*kasan.h
10203 F:      arch/*/mm/kasan_init*
10204 F:      include/linux/kasan*.h
10205 F:      lib/Kconfig.kasan
10206 F:      lib/test_kasan*.c
10207 F:      mm/kasan/
10208 F:      scripts/Makefile.kasan
10209
10210 KCONFIG
10211 M:      Masahiro Yamada <masahiroy@kernel.org>
10212 L:      linux-kbuild@vger.kernel.org
10213 S:      Maintained
10214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10215 F:      Documentation/kbuild/kconfig*
10216 F:      scripts/Kconfig.include
10217 F:      scripts/kconfig/
10218
10219 KCOV
10220 R:      Dmitry Vyukov <dvyukov@google.com>
10221 R:      Andrey Konovalov <andreyknvl@gmail.com>
10222 L:      kasan-dev@googlegroups.com
10223 S:      Maintained
10224 F:      Documentation/dev-tools/kcov.rst
10225 F:      include/linux/kcov.h
10226 F:      include/uapi/linux/kcov.h
10227 F:      kernel/kcov.c
10228 F:      scripts/Makefile.kcov
10229
10230 KCSAN
10231 M:      Marco Elver <elver@google.com>
10232 R:      Dmitry Vyukov <dvyukov@google.com>
10233 L:      kasan-dev@googlegroups.com
10234 S:      Maintained
10235 F:      Documentation/dev-tools/kcsan.rst
10236 F:      include/linux/kcsan*.h
10237 F:      kernel/kcsan/
10238 F:      lib/Kconfig.kcsan
10239 F:      scripts/Makefile.kcsan
10240
10241 KDUMP
10242 M:      Dave Young <dyoung@redhat.com>
10243 M:      Baoquan He <bhe@redhat.com>
10244 R:      Vivek Goyal <vgoyal@redhat.com>
10245 L:      kexec@lists.infradead.org
10246 S:      Maintained
10247 W:      http://lse.sourceforge.net/kdump/
10248 F:      Documentation/admin-guide/kdump/
10249 F:      fs/proc/vmcore.c
10250 F:      include/linux/crash_core.h
10251 F:      include/linux/crash_dump.h
10252 F:      include/uapi/linux/vmcore.h
10253 F:      kernel/crash_*.c
10254
10255 KEENE FM RADIO TRANSMITTER DRIVER
10256 M:      Hans Verkuil <hverkuil@xs4all.nl>
10257 L:      linux-media@vger.kernel.org
10258 S:      Maintained
10259 W:      https://linuxtv.org
10260 T:      git git://linuxtv.org/media_tree.git
10261 F:      drivers/media/radio/radio-keene*
10262
10263 KERNEL AUTOMOUNTER
10264 M:      Ian Kent <raven@themaw.net>
10265 L:      autofs@vger.kernel.org
10266 S:      Maintained
10267 F:      fs/autofs/
10268
10269 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10270 M:      Masahiro Yamada <masahiroy@kernel.org>
10271 M:      Michal Marek <michal.lkml@markovi.net>
10272 R:      Nick Desaulniers <ndesaulniers@google.com>
10273 L:      linux-kbuild@vger.kernel.org
10274 S:      Maintained
10275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10276 F:      Documentation/kbuild/
10277 F:      Makefile
10278 F:      scripts/*vmlinux*
10279 F:      scripts/Kbuild*
10280 F:      scripts/Makefile*
10281 F:      scripts/basic/
10282 F:      scripts/dummy-tools/
10283 F:      scripts/mk*
10284 F:      scripts/mod/
10285 F:      scripts/package/
10286
10287 KERNEL JANITORS
10288 L:      kernel-janitors@vger.kernel.org
10289 S:      Odd Fixes
10290 W:      http://kernelnewbies.org/KernelJanitors
10291
10292 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10293 M:      "J. Bruce Fields" <bfields@fieldses.org>
10294 M:      Chuck Lever <chuck.lever@oracle.com>
10295 L:      linux-nfs@vger.kernel.org
10296 S:      Supported
10297 W:      http://nfs.sourceforge.net/
10298 T:      git git://linux-nfs.org/~bfields/linux.git
10299 F:      fs/lockd/
10300 F:      fs/nfs_common/
10301 F:      fs/nfsd/
10302 F:      include/linux/lockd/
10303 F:      include/linux/sunrpc/
10304 F:      include/uapi/linux/nfsd/
10305 F:      include/uapi/linux/sunrpc/
10306 F:      net/sunrpc/
10307 F:      Documentation/filesystems/nfs/
10308
10309 KERNEL REGRESSIONS
10310 M:      Thorsten Leemhuis <linux@leemhuis.info>
10311 L:      regressions@lists.linux.dev
10312 S:      Supported
10313
10314 KERNEL SELFTEST FRAMEWORK
10315 M:      Shuah Khan <shuah@kernel.org>
10316 M:      Shuah Khan <skhan@linuxfoundation.org>
10317 L:      linux-kselftest@vger.kernel.org
10318 S:      Maintained
10319 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10321 F:      Documentation/dev-tools/kselftest*
10322 F:      tools/testing/selftests/
10323
10324 KERNEL SMB3 SERVER (KSMBD)
10325 M:      Namjae Jeon <linkinjeon@kernel.org>
10326 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
10327 M:      Steve French <sfrench@samba.org>
10328 M:      Hyunchul Lee <hyc.lee@gmail.com>
10329 L:      linux-cifs@vger.kernel.org
10330 S:      Maintained
10331 T:      git git://git.samba.org/ksmbd.git
10332 F:      fs/ksmbd/
10333 F:      fs/smbfs_common/
10334
10335 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10336 M:      Brendan Higgins <brendanhiggins@google.com>
10337 L:      linux-kselftest@vger.kernel.org
10338 L:      kunit-dev@googlegroups.com
10339 S:      Maintained
10340 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10341 F:      Documentation/dev-tools/kunit/
10342 F:      include/kunit/
10343 F:      lib/kunit/
10344 F:      tools/testing/kunit/
10345
10346 KERNEL USERMODE HELPER
10347 M:      Luis Chamberlain <mcgrof@kernel.org>
10348 L:      linux-kernel@vger.kernel.org
10349 S:      Maintained
10350 F:      include/linux/umh.h
10351 F:      kernel/umh.c
10352
10353 KERNEL VIRTUAL MACHINE (KVM)
10354 M:      Paolo Bonzini <pbonzini@redhat.com>
10355 L:      kvm@vger.kernel.org
10356 S:      Supported
10357 W:      http://www.linux-kvm.org
10358 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10359 F:      Documentation/virt/kvm/
10360 F:      include/asm-generic/kvm*
10361 F:      include/kvm/iodev.h
10362 F:      include/linux/kvm*
10363 F:      include/trace/events/kvm.h
10364 F:      include/uapi/asm-generic/kvm*
10365 F:      include/uapi/linux/kvm*
10366 F:      tools/kvm/
10367 F:      tools/testing/selftests/kvm/
10368 F:      virt/kvm/*
10369
10370 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10371 M:      Marc Zyngier <maz@kernel.org>
10372 R:      James Morse <james.morse@arm.com>
10373 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10374 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10375 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10376 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10377 S:      Maintained
10378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10379 F:      arch/arm64/include/asm/kvm*
10380 F:      arch/arm64/include/uapi/asm/kvm*
10381 F:      arch/arm64/kvm/
10382 F:      include/kvm/arm_*
10383 F:      tools/testing/selftests/kvm/*/aarch64/
10384 F:      tools/testing/selftests/kvm/aarch64/
10385
10386 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10387 M:      Huacai Chen <chenhuacai@kernel.org>
10388 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10389 L:      linux-mips@vger.kernel.org
10390 L:      kvm@vger.kernel.org
10391 S:      Maintained
10392 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10393 F:      arch/mips/include/asm/kvm*
10394 F:      arch/mips/include/uapi/asm/kvm*
10395 F:      arch/mips/kvm/
10396
10397 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10398 L:      linuxppc-dev@lists.ozlabs.org
10399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
10400 F:      arch/powerpc/include/asm/kvm*
10401 F:      arch/powerpc/include/uapi/asm/kvm*
10402 F:      arch/powerpc/kernel/kvm*
10403 F:      arch/powerpc/kvm/
10404
10405 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
10406 M:      Anup Patel <anup.patel@wdc.com>
10407 R:      Atish Patra <atish.patra@wdc.com>
10408 L:      kvm@vger.kernel.org
10409 L:      kvm-riscv@lists.infradead.org
10410 L:      linux-riscv@lists.infradead.org
10411 S:      Maintained
10412 T:      git git://github.com/kvm-riscv/linux.git
10413 F:      arch/riscv/include/asm/kvm*
10414 F:      arch/riscv/include/uapi/asm/kvm*
10415 F:      arch/riscv/kvm/
10416
10417 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10418 M:      Christian Borntraeger <borntraeger@de.ibm.com>
10419 M:      Janosch Frank <frankja@linux.ibm.com>
10420 R:      David Hildenbrand <david@redhat.com>
10421 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10422 L:      kvm@vger.kernel.org
10423 S:      Supported
10424 W:      http://www.ibm.com/developerworks/linux/linux390/
10425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10426 F:      Documentation/virt/kvm/s390*
10427 F:      arch/s390/include/asm/gmap.h
10428 F:      arch/s390/include/asm/kvm*
10429 F:      arch/s390/include/uapi/asm/kvm*
10430 F:      arch/s390/kernel/uv.c
10431 F:      arch/s390/kvm/
10432 F:      arch/s390/mm/gmap.c
10433 F:      tools/testing/selftests/kvm/*/s390x/
10434 F:      tools/testing/selftests/kvm/s390x/
10435
10436 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10437 M:      Paolo Bonzini <pbonzini@redhat.com>
10438 R:      Sean Christopherson <seanjc@google.com>
10439 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10440 R:      Wanpeng Li <wanpengli@tencent.com>
10441 R:      Jim Mattson <jmattson@google.com>
10442 R:      Joerg Roedel <joro@8bytes.org>
10443 L:      kvm@vger.kernel.org
10444 S:      Supported
10445 W:      http://www.linux-kvm.org
10446 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10447 F:      arch/x86/include/asm/kvm*
10448 F:      arch/x86/include/asm/pvclock-abi.h
10449 F:      arch/x86/include/asm/svm.h
10450 F:      arch/x86/include/asm/vmx*.h
10451 F:      arch/x86/include/uapi/asm/kvm*
10452 F:      arch/x86/include/uapi/asm/svm.h
10453 F:      arch/x86/include/uapi/asm/vmx.h
10454 F:      arch/x86/kernel/kvm.c
10455 F:      arch/x86/kernel/kvmclock.c
10456 F:      arch/x86/kvm/
10457 F:      arch/x86/kvm/*/
10458
10459 KERNFS
10460 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10461 M:      Tejun Heo <tj@kernel.org>
10462 S:      Supported
10463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10464 F:      fs/kernfs/
10465 F:      include/linux/kernfs.h
10466
10467 KEXEC
10468 M:      Eric Biederman <ebiederm@xmission.com>
10469 L:      kexec@lists.infradead.org
10470 S:      Maintained
10471 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10472 F:      include/linux/kexec.h
10473 F:      include/uapi/linux/kexec.h
10474 F:      kernel/kexec*
10475
10476 KEYS-ENCRYPTED
10477 M:      Mimi Zohar <zohar@linux.ibm.com>
10478 L:      linux-integrity@vger.kernel.org
10479 L:      keyrings@vger.kernel.org
10480 S:      Supported
10481 F:      Documentation/security/keys/trusted-encrypted.rst
10482 F:      include/keys/encrypted-type.h
10483 F:      security/keys/encrypted-keys/
10484
10485 KEYS-TRUSTED
10486 M:      James Bottomley <jejb@linux.ibm.com>
10487 M:      Jarkko Sakkinen <jarkko@kernel.org>
10488 M:      Mimi Zohar <zohar@linux.ibm.com>
10489 L:      linux-integrity@vger.kernel.org
10490 L:      keyrings@vger.kernel.org
10491 S:      Supported
10492 F:      Documentation/security/keys/trusted-encrypted.rst
10493 F:      include/keys/trusted-type.h
10494 F:      include/keys/trusted_tpm.h
10495 F:      security/keys/trusted-keys/
10496
10497 KEYS-TRUSTED-TEE
10498 M:      Sumit Garg <sumit.garg@linaro.org>
10499 L:      linux-integrity@vger.kernel.org
10500 L:      keyrings@vger.kernel.org
10501 S:      Supported
10502 F:      include/keys/trusted_tee.h
10503 F:      security/keys/trusted-keys/trusted_tee.c
10504
10505 KEYS/KEYRINGS
10506 M:      David Howells <dhowells@redhat.com>
10507 M:      Jarkko Sakkinen <jarkko@kernel.org>
10508 L:      keyrings@vger.kernel.org
10509 S:      Maintained
10510 F:      Documentation/security/keys/core.rst
10511 F:      include/keys/
10512 F:      include/linux/key-type.h
10513 F:      include/linux/key.h
10514 F:      include/linux/keyctl.h
10515 F:      include/uapi/linux/keyctl.h
10516 F:      security/keys/
10517
10518 KFENCE
10519 M:      Alexander Potapenko <glider@google.com>
10520 M:      Marco Elver <elver@google.com>
10521 R:      Dmitry Vyukov <dvyukov@google.com>
10522 L:      kasan-dev@googlegroups.com
10523 S:      Maintained
10524 F:      Documentation/dev-tools/kfence.rst
10525 F:      arch/*/include/asm/kfence.h
10526 F:      include/linux/kfence.h
10527 F:      lib/Kconfig.kfence
10528 F:      mm/kfence/
10529
10530 KFIFO
10531 M:      Stefani Seibold <stefani@seibold.net>
10532 S:      Maintained
10533 F:      include/linux/kfifo.h
10534 F:      lib/kfifo.c
10535 F:      samples/kfifo/
10536
10537 KGDB / KDB /debug_core
10538 M:      Jason Wessel <jason.wessel@windriver.com>
10539 M:      Daniel Thompson <daniel.thompson@linaro.org>
10540 R:      Douglas Anderson <dianders@chromium.org>
10541 L:      kgdb-bugreport@lists.sourceforge.net
10542 S:      Maintained
10543 W:      http://kgdb.wiki.kernel.org/
10544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10545 F:      Documentation/dev-tools/kgdb.rst
10546 F:      drivers/misc/kgdbts.c
10547 F:      drivers/tty/serial/kgdboc.c
10548 F:      include/linux/kdb.h
10549 F:      include/linux/kgdb.h
10550 F:      kernel/debug/
10551
10552 KHADAS MCU MFD DRIVER
10553 M:      Neil Armstrong <narmstrong@baylibre.com>
10554 L:      linux-amlogic@lists.infradead.org
10555 S:      Maintained
10556 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10557 F:      drivers/mfd/khadas-mcu.c
10558 F:      include/linux/mfd/khadas-mcu.h
10559 F:      drivers/thermal/khadas_mcu_fan.c
10560
10561 KMEMLEAK
10562 M:      Catalin Marinas <catalin.marinas@arm.com>
10563 S:      Maintained
10564 F:      Documentation/dev-tools/kmemleak.rst
10565 F:      include/linux/kmemleak.h
10566 F:      mm/kmemleak.c
10567 F:      samples/kmemleak/kmemleak-test.c
10568
10569 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10570 M:      Luis Chamberlain <mcgrof@kernel.org>
10571 L:      linux-kernel@vger.kernel.org
10572 S:      Maintained
10573 F:      include/linux/kmod.h
10574 F:      kernel/kmod.c
10575 F:      lib/test_kmod.c
10576 F:      tools/testing/selftests/kmod/
10577
10578 KPROBES
10579 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10580 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10581 M:      "David S. Miller" <davem@davemloft.net>
10582 M:      Masami Hiramatsu <mhiramat@kernel.org>
10583 S:      Maintained
10584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
10585 F:      Documentation/trace/kprobes.rst
10586 F:      include/asm-generic/kprobes.h
10587 F:      include/linux/kprobes.h
10588 F:      kernel/kprobes.c
10589 F:      lib/test_kprobes.c
10590 F:      samples/kprobes
10591
10592 KS0108 LCD CONTROLLER DRIVER
10593 M:      Miguel Ojeda <ojeda@kernel.org>
10594 S:      Maintained
10595 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10596 F:      drivers/auxdisplay/ks0108.c
10597 F:      include/linux/ks0108.h
10598
10599 KTD253 BACKLIGHT DRIVER
10600 M:      Linus Walleij <linus.walleij@linaro.org>
10601 S:      Maintained
10602 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10603 F:      drivers/video/backlight/ktd253-backlight.c
10604
10605 KTEST
10606 M:      Steven Rostedt <rostedt@goodmis.org>
10607 M:      John Hawley <warthog9@eaglescrag.net>
10608 S:      Maintained
10609 F:      tools/testing/ktest
10610
10611 L3MDEV
10612 M:      David Ahern <dsahern@kernel.org>
10613 L:      netdev@vger.kernel.org
10614 S:      Maintained
10615 F:      include/net/l3mdev.h
10616 F:      net/l3mdev
10617
10618 L7 BPF FRAMEWORK
10619 M:      John Fastabend <john.fastabend@gmail.com>
10620 M:      Daniel Borkmann <daniel@iogearbox.net>
10621 M:      Jakub Sitnicki <jakub@cloudflare.com>
10622 M:      Lorenz Bauer <lmb@cloudflare.com>
10623 L:      netdev@vger.kernel.org
10624 L:      bpf@vger.kernel.org
10625 S:      Maintained
10626 F:      include/linux/skmsg.h
10627 F:      net/core/skmsg.c
10628 F:      net/core/sock_map.c
10629 F:      net/ipv4/tcp_bpf.c
10630 F:      net/ipv4/udp_bpf.c
10631 F:      net/unix/unix_bpf.c
10632
10633 LANDLOCK SECURITY MODULE
10634 M:      Mickaël Salaün <mic@digikod.net>
10635 L:      linux-security-module@vger.kernel.org
10636 S:      Supported
10637 W:      https://landlock.io
10638 T:      git https://github.com/landlock-lsm/linux.git
10639 F:      Documentation/security/landlock.rst
10640 F:      Documentation/userspace-api/landlock.rst
10641 F:      include/uapi/linux/landlock.h
10642 F:      samples/landlock/
10643 F:      security/landlock/
10644 F:      tools/testing/selftests/landlock/
10645 K:      landlock
10646 K:      LANDLOCK
10647
10648 LANTIQ / INTEL Ethernet drivers
10649 M:      Hauke Mehrtens <hauke@hauke-m.de>
10650 L:      netdev@vger.kernel.org
10651 S:      Maintained
10652 F:      drivers/net/dsa/lantiq_gswip.c
10653 F:      drivers/net/dsa/lantiq_pce.h
10654 F:      drivers/net/ethernet/lantiq_xrx200.c
10655 F:      net/dsa/tag_gswip.c
10656
10657 LANTIQ MIPS ARCHITECTURE
10658 M:      John Crispin <john@phrozen.org>
10659 L:      linux-mips@vger.kernel.org
10660 S:      Maintained
10661 F:      arch/mips/lantiq
10662 F:      drivers/soc/lantiq
10663
10664 LASI 53c700 driver for PARISC
10665 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10666 L:      linux-scsi@vger.kernel.org
10667 S:      Maintained
10668 F:      Documentation/scsi/53c700.rst
10669 F:      drivers/scsi/53c700*
10670
10671 LEAKING_ADDRESSES
10672 M:      Tobin C. Harding <me@tobin.cc>
10673 M:      Tycho Andersen <tycho@tycho.pizza>
10674 L:      linux-hardening@vger.kernel.org
10675 S:      Maintained
10676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10677 F:      scripts/leaking_addresses.pl
10678
10679 LED SUBSYSTEM
10680 M:      Pavel Machek <pavel@ucw.cz>
10681 L:      linux-leds@vger.kernel.org
10682 S:      Maintained
10683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10684 F:      Documentation/devicetree/bindings/leds/
10685 F:      drivers/leds/
10686 F:      include/linux/leds.h
10687
10688 LEGACY EEPROM DRIVER
10689 M:      Jean Delvare <jdelvare@suse.com>
10690 S:      Maintained
10691 F:      Documentation/misc-devices/eeprom.rst
10692 F:      drivers/misc/eeprom/eeprom.c
10693
10694 LEGO MINDSTORMS EV3
10695 R:      David Lechner <david@lechnology.com>
10696 S:      Maintained
10697 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10698 F:      arch/arm/boot/dts/da850-lego-ev3.dts
10699 F:      drivers/power/supply/lego_ev3_battery.c
10700
10701 LEGO USB Tower driver
10702 M:      Juergen Stuber <starblue@users.sourceforge.net>
10703 L:      legousb-devel@lists.sourceforge.net
10704 S:      Maintained
10705 W:      http://legousb.sourceforge.net/
10706 F:      drivers/usb/misc/legousbtower.c
10707
10708 LG LAPTOP EXTRAS
10709 M:      Matan Ziv-Av <matan@svgalib.org>
10710 L:      platform-driver-x86@vger.kernel.org
10711 S:      Maintained
10712 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10713 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10714 F:      drivers/platform/x86/lg-laptop.c
10715
10716 LG2160 MEDIA DRIVER
10717 M:      Michael Krufky <mkrufky@linuxtv.org>
10718 L:      linux-media@vger.kernel.org
10719 S:      Maintained
10720 W:      https://linuxtv.org
10721 W:      http://github.com/mkrufky
10722 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10723 T:      git git://linuxtv.org/mkrufky/tuners.git
10724 F:      drivers/media/dvb-frontends/lg2160.*
10725
10726 LGDT3305 MEDIA DRIVER
10727 M:      Michael Krufky <mkrufky@linuxtv.org>
10728 L:      linux-media@vger.kernel.org
10729 S:      Maintained
10730 W:      https://linuxtv.org
10731 W:      http://github.com/mkrufky
10732 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10733 T:      git git://linuxtv.org/mkrufky/tuners.git
10734 F:      drivers/media/dvb-frontends/lgdt3305.*
10735
10736 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10737 M:      Viresh Kumar <vireshk@kernel.org>
10738 L:      linux-ide@vger.kernel.org
10739 S:      Maintained
10740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10741 F:      drivers/ata/pata_arasan_cf.c
10742 F:      include/linux/pata_arasan_cf_data.h
10743
10744 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10745 M:      Linus Walleij <linus.walleij@linaro.org>
10746 L:      linux-ide@vger.kernel.org
10747 S:      Maintained
10748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10749 F:      drivers/ata/pata_ftide010.c
10750 F:      drivers/ata/sata_gemini.c
10751 F:      drivers/ata/sata_gemini.h
10752
10753 LIBATA SATA AHCI PLATFORM devices support
10754 M:      Hans de Goede <hdegoede@redhat.com>
10755 M:      Jens Axboe <axboe@kernel.dk>
10756 L:      linux-ide@vger.kernel.org
10757 S:      Maintained
10758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10759 F:      drivers/ata/ahci_platform.c
10760 F:      drivers/ata/libahci_platform.c
10761 F:      include/linux/ahci_platform.h
10762
10763 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10764 M:      Mikael Pettersson <mikpelinux@gmail.com>
10765 L:      linux-ide@vger.kernel.org
10766 S:      Maintained
10767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10768 F:      drivers/ata/sata_promise.*
10769
10770 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10771 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
10772 L:      linux-ide@vger.kernel.org
10773 S:      Maintained
10774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
10775 F:      Documentation/devicetree/bindings/ata/
10776 F:      drivers/ata/
10777 F:      include/linux/ata.h
10778 F:      include/linux/libata.h
10779
10780 LIBLOCKDEP
10781 M:      Sasha Levin <alexander.levin@microsoft.com>
10782 S:      Maintained
10783 F:      tools/lib/lockdep/
10784
10785 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10786 M:      Dan Williams <dan.j.williams@intel.com>
10787 M:      Vishal Verma <vishal.l.verma@intel.com>
10788 M:      Dave Jiang <dave.jiang@intel.com>
10789 L:      nvdimm@lists.linux.dev
10790 S:      Supported
10791 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10792 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10793 F:      drivers/nvdimm/blk.c
10794 F:      drivers/nvdimm/region_devs.c
10795
10796 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10797 M:      Vishal Verma <vishal.l.verma@intel.com>
10798 M:      Dan Williams <dan.j.williams@intel.com>
10799 M:      Dave Jiang <dave.jiang@intel.com>
10800 L:      nvdimm@lists.linux.dev
10801 S:      Supported
10802 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10803 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10804 F:      drivers/nvdimm/btt*
10805
10806 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10807 M:      Dan Williams <dan.j.williams@intel.com>
10808 M:      Vishal Verma <vishal.l.verma@intel.com>
10809 M:      Dave Jiang <dave.jiang@intel.com>
10810 L:      nvdimm@lists.linux.dev
10811 S:      Supported
10812 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10813 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10814 F:      drivers/nvdimm/pmem*
10815
10816 LIBNVDIMM: DEVICETREE BINDINGS
10817 M:      Oliver O'Halloran <oohall@gmail.com>
10818 L:      nvdimm@lists.linux.dev
10819 S:      Supported
10820 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10821 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10822 F:      drivers/nvdimm/of_pmem.c
10823
10824 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10825 M:      Dan Williams <dan.j.williams@intel.com>
10826 M:      Vishal Verma <vishal.l.verma@intel.com>
10827 M:      Dave Jiang <dave.jiang@intel.com>
10828 M:      Ira Weiny <ira.weiny@intel.com>
10829 L:      nvdimm@lists.linux.dev
10830 S:      Supported
10831 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10832 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10834 F:      drivers/acpi/nfit/*
10835 F:      drivers/nvdimm/*
10836 F:      include/linux/libnvdimm.h
10837 F:      include/linux/nd.h
10838 F:      include/uapi/linux/ndctl.h
10839 F:      tools/testing/nvdimm/
10840
10841 LICENSES and SPDX stuff
10842 M:      Thomas Gleixner <tglx@linutronix.de>
10843 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10844 L:      linux-spdx@vger.kernel.org
10845 S:      Maintained
10846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10847 F:      COPYING
10848 F:      Documentation/process/license-rules.rst
10849 F:      LICENSES/
10850 F:      scripts/spdxcheck-test.sh
10851 F:      scripts/spdxcheck.py
10852
10853 LINEAR RANGES HELPERS
10854 M:      Mark Brown <broonie@kernel.org>
10855 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10856 F:      lib/linear_ranges.c
10857 F:      lib/test_linear_ranges.c
10858 F:      include/linux/linear_range.h
10859
10860 LINUX FOR POWER MACINTOSH
10861 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10862 L:      linuxppc-dev@lists.ozlabs.org
10863 S:      Odd Fixes
10864 F:      arch/powerpc/platforms/powermac/
10865 F:      drivers/macintosh/
10866
10867 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10868 M:      Michael Ellerman <mpe@ellerman.id.au>
10869 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10870 R:      Paul Mackerras <paulus@samba.org>
10871 L:      linuxppc-dev@lists.ozlabs.org
10872 S:      Supported
10873 W:      https://github.com/linuxppc/wiki/wiki
10874 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10876 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10877 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10878 F:      Documentation/devicetree/bindings/powerpc/
10879 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10880 F:      Documentation/powerpc/
10881 F:      arch/powerpc/
10882 F:      drivers/*/*/*pasemi*
10883 F:      drivers/*/*pasemi*
10884 F:      drivers/char/tpm/tpm_ibmvtpm*
10885 F:      drivers/crypto/nx/
10886 F:      drivers/crypto/vmx/
10887 F:      drivers/i2c/busses/i2c-opal.c
10888 F:      drivers/net/ethernet/ibm/ibmveth.*
10889 F:      drivers/net/ethernet/ibm/ibmvnic.*
10890 F:      drivers/pci/hotplug/pnv_php.c
10891 F:      drivers/pci/hotplug/rpa*
10892 F:      drivers/rtc/rtc-opal.c
10893 F:      drivers/scsi/ibmvscsi/
10894 F:      drivers/tty/hvc/hvc_opal.c
10895 F:      drivers/watchdog/wdrtas.c
10896 F:      tools/testing/selftests/powerpc
10897 N:      /pmac
10898 N:      powermac
10899 N:      powernv
10900 N:      [^a-z0-9]ps3
10901 N:      pseries
10902
10903 LINUX FOR POWERPC EMBEDDED MPC5XXX
10904 M:      Anatolij Gustschin <agust@denx.de>
10905 L:      linuxppc-dev@lists.ozlabs.org
10906 S:      Odd Fixes
10907 F:      arch/powerpc/platforms/512x/
10908 F:      arch/powerpc/platforms/52xx/
10909
10910 LINUX FOR POWERPC EMBEDDED PPC4XX
10911 L:      linuxppc-dev@lists.ozlabs.org
10912 S:      Orphan
10913 F:      arch/powerpc/platforms/40x/
10914 F:      arch/powerpc/platforms/44x/
10915
10916 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10917 M:      Scott Wood <oss@buserror.net>
10918 L:      linuxppc-dev@lists.ozlabs.org
10919 S:      Odd fixes
10920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10921 F:      Documentation/devicetree/bindings/powerpc/fsl/
10922 F:      arch/powerpc/platforms/83xx/
10923 F:      arch/powerpc/platforms/85xx/
10924
10925 LINUX FOR POWERPC EMBEDDED PPC8XX
10926 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10927 L:      linuxppc-dev@lists.ozlabs.org
10928 S:      Maintained
10929 F:      arch/powerpc/platforms/8xx/
10930
10931 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10932 M:      Kees Cook <keescook@chromium.org>
10933 S:      Maintained
10934 F:      drivers/misc/lkdtm/*
10935 F:      tools/testing/selftests/lkdtm/*
10936
10937 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10938 M:      Alan Stern <stern@rowland.harvard.edu>
10939 M:      Andrea Parri <parri.andrea@gmail.com>
10940 M:      Will Deacon <will@kernel.org>
10941 M:      Peter Zijlstra <peterz@infradead.org>
10942 M:      Boqun Feng <boqun.feng@gmail.com>
10943 M:      Nicholas Piggin <npiggin@gmail.com>
10944 M:      David Howells <dhowells@redhat.com>
10945 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10946 M:      Luc Maranget <luc.maranget@inria.fr>
10947 M:      "Paul E. McKenney" <paulmck@kernel.org>
10948 R:      Akira Yokosawa <akiyks@gmail.com>
10949 R:      Daniel Lustig <dlustig@nvidia.com>
10950 R:      Joel Fernandes <joel@joelfernandes.org>
10951 L:      linux-kernel@vger.kernel.org
10952 L:      linux-arch@vger.kernel.org
10953 S:      Supported
10954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10955 F:      Documentation/atomic_bitops.txt
10956 F:      Documentation/atomic_t.txt
10957 F:      Documentation/core-api/refcount-vs-atomic.rst
10958 F:      Documentation/litmus-tests/
10959 F:      Documentation/memory-barriers.txt
10960 F:      tools/memory-model/
10961
10962 LIS3LV02D ACCELEROMETER DRIVER
10963 M:      Eric Piel <eric.piel@tremplin-utc.net>
10964 S:      Maintained
10965 F:      Documentation/misc-devices/lis3lv02d.rst
10966 F:      drivers/misc/lis3lv02d/
10967 F:      drivers/platform/x86/hp_accel.c
10968
10969 LIST KUNIT TEST
10970 M:      David Gow <davidgow@google.com>
10971 L:      linux-kselftest@vger.kernel.org
10972 L:      kunit-dev@googlegroups.com
10973 S:      Maintained
10974 F:      lib/list-test.c
10975
10976 LITEX PLATFORM
10977 M:      Karol Gugala <kgugala@antmicro.com>
10978 M:      Mateusz Holenko <mholenko@antmicro.com>
10979 S:      Maintained
10980 F:      Documentation/devicetree/bindings/*/litex,*.yaml
10981 F:      arch/openrisc/boot/dts/or1klitex.dts
10982 F:      drivers/soc/litex/litex_soc_ctrl.c
10983 F:      drivers/tty/serial/liteuart.c
10984 F:      include/linux/litex.h
10985
10986 LIVE PATCHING
10987 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10988 M:      Jiri Kosina <jikos@kernel.org>
10989 M:      Miroslav Benes <mbenes@suse.cz>
10990 M:      Petr Mladek <pmladek@suse.com>
10991 R:      Joe Lawrence <joe.lawrence@redhat.com>
10992 L:      live-patching@vger.kernel.org
10993 S:      Maintained
10994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10995 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10996 F:      Documentation/livepatch/
10997 F:      arch/powerpc/include/asm/livepatch.h
10998 F:      arch/s390/include/asm/livepatch.h
10999 F:      arch/x86/include/asm/livepatch.h
11000 F:      include/linux/livepatch.h
11001 F:      kernel/livepatch/
11002 F:      lib/livepatch/
11003 F:      samples/livepatch/
11004 F:      tools/testing/selftests/livepatch/
11005
11006 LLC (802.2)
11007 L:      netdev@vger.kernel.org
11008 S:      Odd fixes
11009 F:      include/linux/llc.h
11010 F:      include/net/llc*
11011 F:      include/uapi/linux/llc.h
11012 F:      net/llc/
11013
11014 LM73 HARDWARE MONITOR DRIVER
11015 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11016 L:      linux-hwmon@vger.kernel.org
11017 S:      Maintained
11018 F:      drivers/hwmon/lm73.c
11019
11020 LM78 HARDWARE MONITOR DRIVER
11021 M:      Jean Delvare <jdelvare@suse.com>
11022 L:      linux-hwmon@vger.kernel.org
11023 S:      Maintained
11024 F:      Documentation/hwmon/lm78.rst
11025 F:      drivers/hwmon/lm78.c
11026
11027 LM83 HARDWARE MONITOR DRIVER
11028 M:      Jean Delvare <jdelvare@suse.com>
11029 L:      linux-hwmon@vger.kernel.org
11030 S:      Maintained
11031 F:      Documentation/hwmon/lm83.rst
11032 F:      drivers/hwmon/lm83.c
11033
11034 LM90 HARDWARE MONITOR DRIVER
11035 M:      Jean Delvare <jdelvare@suse.com>
11036 L:      linux-hwmon@vger.kernel.org
11037 S:      Maintained
11038 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11039 F:      Documentation/hwmon/lm90.rst
11040 F:      drivers/hwmon/lm90.c
11041 F:      include/dt-bindings/thermal/lm90.h
11042
11043 LM95234 HARDWARE MONITOR DRIVER
11044 M:      Guenter Roeck <linux@roeck-us.net>
11045 L:      linux-hwmon@vger.kernel.org
11046 S:      Maintained
11047 F:      Documentation/hwmon/lm95234.rst
11048 F:      drivers/hwmon/lm95234.c
11049
11050 LME2510 MEDIA DRIVER
11051 M:      Malcolm Priestley <tvboxspy@gmail.com>
11052 L:      linux-media@vger.kernel.org
11053 S:      Maintained
11054 W:      https://linuxtv.org
11055 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11056 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11057
11058 LOADPIN SECURITY MODULE
11059 M:      Kees Cook <keescook@chromium.org>
11060 S:      Supported
11061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11062 F:      Documentation/admin-guide/LSM/LoadPin.rst
11063 F:      security/loadpin/
11064
11065 LOCKING PRIMITIVES
11066 M:      Peter Zijlstra <peterz@infradead.org>
11067 M:      Ingo Molnar <mingo@redhat.com>
11068 M:      Will Deacon <will@kernel.org>
11069 R:      Waiman Long <longman@redhat.com>
11070 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11071 L:      linux-kernel@vger.kernel.org
11072 S:      Maintained
11073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11074 F:      Documentation/locking/
11075 F:      arch/*/include/asm/spinlock*.h
11076 F:      include/linux/lockdep.h
11077 F:      include/linux/mutex*.h
11078 F:      include/linux/rwlock*.h
11079 F:      include/linux/rwsem*.h
11080 F:      include/linux/seqlock.h
11081 F:      include/linux/spinlock*.h
11082 F:      kernel/locking/
11083 F:      lib/locking*.[ch]
11084 X:      kernel/locking/locktorture.c
11085
11086 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11087 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11088 L:      linux-ntfs-dev@lists.sourceforge.net
11089 S:      Maintained
11090 W:      http://www.linux-ntfs.org/content/view/19/37/
11091 F:      Documentation/admin-guide/ldm.rst
11092 F:      block/partitions/ldm.*
11093
11094 LOGITECH HID GAMING KEYBOARDS
11095 M:      Hans de Goede <hdegoede@redhat.com>
11096 L:      linux-input@vger.kernel.org
11097 S:      Maintained
11098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11099 F:      drivers/hid/hid-lg-g15.c
11100
11101 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11102 M:      Adrien Grassein <adrien.grassein@gmail.com>
11103 S:      Maintained
11104 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11105 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11106
11107 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11108 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11109 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11110 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11111 L:      MPT-FusionLinux.pdl@broadcom.com
11112 L:      linux-scsi@vger.kernel.org
11113 S:      Supported
11114 W:      http://www.avagotech.com/support/
11115 F:      drivers/message/fusion/
11116 F:      drivers/scsi/mpt3sas/
11117
11118 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11119 M:      Matthew Wilcox <willy@infradead.org>
11120 L:      linux-scsi@vger.kernel.org
11121 S:      Maintained
11122 F:      drivers/scsi/sym53c8xx_2/
11123
11124 LTC1660 DAC DRIVER
11125 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11126 L:      linux-iio@vger.kernel.org
11127 S:      Maintained
11128 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11129 F:      drivers/iio/dac/ltc1660.c
11130
11131 LTC2947 HARDWARE MONITOR DRIVER
11132 M:      Nuno Sá <nuno.sa@analog.com>
11133 L:      linux-hwmon@vger.kernel.org
11134 S:      Supported
11135 W:      http://ez.analog.com/community/linux-device-drivers
11136 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11137 F:      drivers/hwmon/ltc2947-core.c
11138 F:      drivers/hwmon/ltc2947-i2c.c
11139 F:      drivers/hwmon/ltc2947-spi.c
11140 F:      drivers/hwmon/ltc2947.h
11141
11142 LTC2983 IIO TEMPERATURE DRIVER
11143 M:      Nuno Sá <nuno.sa@analog.com>
11144 L:      linux-iio@vger.kernel.org
11145 S:      Supported
11146 W:      http://ez.analog.com/community/linux-device-drivers
11147 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11148 F:      drivers/iio/temperature/ltc2983.c
11149
11150 LTC4261 HARDWARE MONITOR DRIVER
11151 M:      Guenter Roeck <linux@roeck-us.net>
11152 L:      linux-hwmon@vger.kernel.org
11153 S:      Maintained
11154 F:      Documentation/hwmon/ltc4261.rst
11155 F:      drivers/hwmon/ltc4261.c
11156
11157 LTC4306 I2C MULTIPLEXER DRIVER
11158 M:      Michael Hennerich <michael.hennerich@analog.com>
11159 L:      linux-i2c@vger.kernel.org
11160 S:      Supported
11161 W:      http://ez.analog.com/community/linux-device-drivers
11162 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11163 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11164
11165 LTP (Linux Test Project)
11166 M:      Mike Frysinger <vapier@gentoo.org>
11167 M:      Cyril Hrubis <chrubis@suse.cz>
11168 M:      Wanlong Gao <wanlong.gao@gmail.com>
11169 M:      Jan Stancek <jstancek@redhat.com>
11170 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11171 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11172 L:      ltp@lists.linux.it (subscribers-only)
11173 S:      Maintained
11174 W:      http://linux-test-project.github.io/
11175 T:      git git://github.com/linux-test-project/ltp.git
11176
11177 LYNX PCS MODULE
11178 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11179 L:      netdev@vger.kernel.org
11180 S:      Supported
11181 F:      drivers/net/pcs/pcs-lynx.c
11182 F:      include/linux/pcs-lynx.h
11183
11184 M68K ARCHITECTURE
11185 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11186 L:      linux-m68k@lists.linux-m68k.org
11187 S:      Maintained
11188 W:      http://www.linux-m68k.org/
11189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11190 F:      arch/m68k/
11191 F:      drivers/zorro/
11192
11193 M68K ON APPLE MACINTOSH
11194 M:      Joshua Thompson <funaho@jurai.org>
11195 L:      linux-m68k@lists.linux-m68k.org
11196 S:      Maintained
11197 W:      http://www.mac.linux-m68k.org/
11198 F:      arch/m68k/mac/
11199 F:      drivers/macintosh/adb-iop.c
11200 F:      drivers/macintosh/via-macii.c
11201
11202 M68K ON HP9000/300
11203 M:      Philip Blundell <philb@gnu.org>
11204 S:      Maintained
11205 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11206 F:      arch/m68k/hp300/
11207
11208 M88DS3103 MEDIA DRIVER
11209 M:      Antti Palosaari <crope@iki.fi>
11210 L:      linux-media@vger.kernel.org
11211 S:      Maintained
11212 W:      https://linuxtv.org
11213 W:      http://palosaari.fi/linux/
11214 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11215 T:      git git://linuxtv.org/anttip/media_tree.git
11216 F:      drivers/media/dvb-frontends/m88ds3103*
11217
11218 M88RS2000 MEDIA DRIVER
11219 M:      Malcolm Priestley <tvboxspy@gmail.com>
11220 L:      linux-media@vger.kernel.org
11221 S:      Maintained
11222 W:      https://linuxtv.org
11223 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11224 F:      drivers/media/dvb-frontends/m88rs2000*
11225
11226 MA901 MASTERKIT USB FM RADIO DRIVER
11227 M:      Alexey Klimov <klimov.linux@gmail.com>
11228 L:      linux-media@vger.kernel.org
11229 S:      Maintained
11230 T:      git git://linuxtv.org/media_tree.git
11231 F:      drivers/media/radio/radio-ma901.c
11232
11233 MAC80211
11234 M:      Johannes Berg <johannes@sipsolutions.net>
11235 L:      linux-wireless@vger.kernel.org
11236 S:      Maintained
11237 W:      https://wireless.wiki.kernel.org/
11238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11240 F:      Documentation/networking/mac80211-injection.rst
11241 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11242 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11243 F:      include/net/mac80211.h
11244 F:      net/mac80211/
11245
11246 MAILBOX API
11247 M:      Jassi Brar <jassisinghbrar@gmail.com>
11248 L:      linux-kernel@vger.kernel.org
11249 S:      Maintained
11250 F:      drivers/mailbox/
11251 F:      include/linux/mailbox_client.h
11252 F:      include/linux/mailbox_controller.h
11253 F:      include/dt-bindings/mailbox/
11254 F:      Documentation/devicetree/bindings/mailbox/
11255
11256 MAILBOX ARM MHUv2
11257 M:      Viresh Kumar <viresh.kumar@linaro.org>
11258 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11259 L:      linux-kernel@vger.kernel.org
11260 S:      Maintained
11261 F:      drivers/mailbox/arm_mhuv2.c
11262 F:      include/linux/mailbox/arm_mhuv2_message.h
11263 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11264
11265 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11266 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11267 M:      Matt Johnston <matt@codeconstruct.com.au>
11268 L:      netdev@vger.kernel.org
11269 S:      Maintained
11270 F:      Documentation/networking/mctp.rst
11271 F:      drivers/net/mctp/
11272 F:      include/net/mctp.h
11273 F:      include/net/mctpdevice.h
11274 F:      include/net/netns/mctp.h
11275 F:      net/mctp/
11276
11277 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11278 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11279 L:      linux-man@vger.kernel.org
11280 S:      Maintained
11281 W:      http://www.kernel.org/doc/man-pages
11282
11283 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11284 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11285 L:      linux-mips@vger.kernel.org
11286 S:      Maintained
11287 F:      arch/mips/boot/dts/img/pistachio*
11288
11289 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11290 M:      Andrew Lunn <andrew@lunn.ch>
11291 M:      Vivien Didelot <vivien.didelot@gmail.com>
11292 L:      netdev@vger.kernel.org
11293 S:      Maintained
11294 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11295 F:      Documentation/networking/devlink/mv88e6xxx.rst
11296 F:      drivers/net/dsa/mv88e6xxx/
11297 F:      include/linux/dsa/mv88e6xxx.h
11298 F:      include/linux/platform_data/mv88e6xxx.h
11299
11300 MARVELL ARMADA 3700 PHY DRIVERS
11301 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11302 S:      Maintained
11303 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11304 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11305 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11306 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11307
11308 MARVELL ARMADA DRM SUPPORT
11309 M:      Russell King <linux@armlinux.org.uk>
11310 S:      Maintained
11311 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11312 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11313 F:      Documentation/devicetree/bindings/display/armada/
11314 F:      drivers/gpu/drm/armada/
11315 F:      include/uapi/drm/armada_drm.h
11316
11317 MARVELL CRYPTO DRIVER
11318 M:      Boris Brezillon <bbrezillon@kernel.org>
11319 M:      Arnaud Ebalard <arno@natisbad.org>
11320 M:      Srujana Challa <schalla@marvell.com>
11321 L:      linux-crypto@vger.kernel.org
11322 S:      Maintained
11323 F:      drivers/crypto/marvell/
11324 F:      include/linux/soc/marvell/octeontx2/
11325
11326 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11327 M:      Mirko Lindner <mlindner@marvell.com>
11328 M:      Stephen Hemminger <stephen@networkplumber.org>
11329 L:      netdev@vger.kernel.org
11330 S:      Maintained
11331 F:      drivers/net/ethernet/marvell/sk*
11332
11333 MARVELL LIBERTAS WIRELESS DRIVER
11334 L:      libertas-dev@lists.infradead.org
11335 S:      Orphan
11336 F:      drivers/net/wireless/marvell/libertas/
11337
11338 MARVELL MACCHIATOBIN SUPPORT
11339 M:      Russell King <linux@armlinux.org.uk>
11340 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11341 S:      Maintained
11342 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11343
11344 MARVELL MV643XX ETHERNET DRIVER
11345 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11346 L:      netdev@vger.kernel.org
11347 S:      Maintained
11348 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11349 F:      include/linux/mv643xx.h
11350
11351 MARVELL MV88X3310 PHY DRIVER
11352 M:      Russell King <linux@armlinux.org.uk>
11353 M:      Marek Behún <kabel@kernel.org>
11354 L:      netdev@vger.kernel.org
11355 S:      Maintained
11356 F:      drivers/net/phy/marvell10g.c
11357
11358 MARVELL MVEBU THERMAL DRIVER
11359 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11360 S:      Maintained
11361 F:      drivers/thermal/armada_thermal.c
11362
11363 MARVELL MVNETA ETHERNET DRIVER
11364 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11365 L:      netdev@vger.kernel.org
11366 S:      Maintained
11367 F:      drivers/net/ethernet/marvell/mvneta.*
11368
11369 MARVELL MVPP2 ETHERNET DRIVER
11370 M:      Marcin Wojtas <mw@semihalf.com>
11371 M:      Russell King <linux@armlinux.org.uk>
11372 L:      netdev@vger.kernel.org
11373 S:      Maintained
11374 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11375 F:      drivers/net/ethernet/marvell/mvpp2/
11376
11377 MARVELL MWIFIEX WIRELESS DRIVER
11378 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11379 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11380 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11381 M:      Xinming Hu <huxinming820@gmail.com>
11382 L:      linux-wireless@vger.kernel.org
11383 S:      Maintained
11384 F:      drivers/net/wireless/marvell/mwifiex/
11385
11386 MARVELL MWL8K WIRELESS DRIVER
11387 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11388 L:      linux-wireless@vger.kernel.org
11389 S:      Odd Fixes
11390 F:      drivers/net/wireless/marvell/mwl8k.c
11391
11392 MARVELL NAND CONTROLLER DRIVER
11393 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11394 L:      linux-mtd@lists.infradead.org
11395 S:      Maintained
11396 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11397 F:      drivers/mtd/nand/raw/marvell_nand.c
11398
11399 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11400 M:      Sunil Goutham <sgoutham@marvell.com>
11401 M:      Geetha sowjanya <gakula@marvell.com>
11402 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11403 M:      hariprasad <hkelam@marvell.com>
11404 L:      netdev@vger.kernel.org
11405 S:      Supported
11406 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11407 F:      include/linux/soc/marvell/octeontx2/
11408
11409 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11410 M:      Sunil Goutham <sgoutham@marvell.com>
11411 M:      Linu Cherian <lcherian@marvell.com>
11412 M:      Geetha sowjanya <gakula@marvell.com>
11413 M:      Jerin Jacob <jerinj@marvell.com>
11414 M:      hariprasad <hkelam@marvell.com>
11415 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11416 L:      netdev@vger.kernel.org
11417 S:      Supported
11418 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11419 F:      drivers/net/ethernet/marvell/octeontx2/af/
11420
11421 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11422 M:      Taras Chornyi <tchornyi@marvell.com>
11423 S:      Supported
11424 W:      https://github.com/Marvell-switching/switchdev-prestera
11425 F:      drivers/net/ethernet/marvell/prestera/
11426
11427 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11428 M:      Nicolas Pitre <nico@fluxnic.net>
11429 S:      Odd Fixes
11430 F:      drivers/mmc/host/mvsdio.*
11431
11432 MARVELL USB MDIO CONTROLLER DRIVER
11433 M:      Tobias Waldekranz <tobias@waldekranz.com>
11434 L:      netdev@vger.kernel.org
11435 S:      Maintained
11436 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11437 F:      drivers/net/mdio/mdio-mvusb.c
11438
11439 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11440 M:      Hu Ziji <huziji@marvell.com>
11441 L:      linux-mmc@vger.kernel.org
11442 S:      Supported
11443 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11444 F:      drivers/mmc/host/sdhci-xenon*
11445
11446 MATROX FRAMEBUFFER DRIVER
11447 L:      linux-fbdev@vger.kernel.org
11448 S:      Orphan
11449 F:      drivers/video/fbdev/matrox/matroxfb_*
11450 F:      include/uapi/linux/matroxfb.h
11451
11452 MAX15301 DRIVER
11453 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11454 L:      linux-hwmon@vger.kernel.org
11455 S:      Maintained
11456 F:      Documentation/hwmon/max15301.rst
11457 F:      drivers/hwmon/pmbus/max15301.c
11458
11459 MAX16065 HARDWARE MONITOR DRIVER
11460 M:      Guenter Roeck <linux@roeck-us.net>
11461 L:      linux-hwmon@vger.kernel.org
11462 S:      Maintained
11463 F:      Documentation/hwmon/max16065.rst
11464 F:      drivers/hwmon/max16065.c
11465
11466 MAX2175 SDR TUNER DRIVER
11467 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11468 L:      linux-media@vger.kernel.org
11469 S:      Maintained
11470 T:      git git://linuxtv.org/media_tree.git
11471 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11472 F:      Documentation/userspace-api/media/drivers/max2175.rst
11473 F:      drivers/media/i2c/max2175*
11474 F:      include/uapi/linux/max2175.h
11475
11476 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11477 L:      linux-hwmon@vger.kernel.org
11478 S:      Orphan
11479 F:      Documentation/hwmon/max6650.rst
11480 F:      drivers/hwmon/max6650.c
11481
11482 MAX6697 HARDWARE MONITOR DRIVER
11483 M:      Guenter Roeck <linux@roeck-us.net>
11484 L:      linux-hwmon@vger.kernel.org
11485 S:      Maintained
11486 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11487 F:      Documentation/hwmon/max6697.rst
11488 F:      drivers/hwmon/max6697.c
11489 F:      include/linux/platform_data/max6697.h
11490
11491 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11492 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11493 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11494 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11495 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11496 L:      linux-media@vger.kernel.org
11497 S:      Maintained
11498 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11499 F:      drivers/media/i2c/max9286.c
11500
11501 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11502 M:      Peter Rosin <peda@axentia.se>
11503 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11504 S:      Maintained
11505 F:      Documentation/devicetree/bindings/sound/max9860.txt
11506 F:      sound/soc/codecs/max9860.*
11507
11508 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11509 M:      Andreas Klinger <ak@it-klinger.de>
11510 L:      linux-iio@vger.kernel.org
11511 S:      Maintained
11512 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11513 F:      drivers/iio/proximity/mb1232.c
11514
11515 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
11516 R:      Iskren Chernev <iskren.chernev@gmail.com>
11517 R:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11518 R:      Marek Szyprowski <m.szyprowski@samsung.com>
11519 R:      Matheus Castello <matheus@castello.eng.br>
11520 L:      linux-pm@vger.kernel.org
11521 S:      Maintained
11522 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
11523 F:      drivers/power/supply/max17040_battery.c
11524
11525 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
11526 R:      Hans de Goede <hdegoede@redhat.com>
11527 R:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11528 R:      Marek Szyprowski <m.szyprowski@samsung.com>
11529 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
11530 R:      Purism Kernel Team <kernel@puri.sm>
11531 L:      linux-pm@vger.kernel.org
11532 S:      Maintained
11533 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
11534 F:      drivers/power/supply/max17042_battery.c
11535
11536 MAXIM MAX77650 PMIC MFD DRIVER
11537 M:      Bartosz Golaszewski <brgl@bgdev.pl>
11538 L:      linux-kernel@vger.kernel.org
11539 S:      Maintained
11540 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11541 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11542 F:      drivers/gpio/gpio-max77650.c
11543 F:      drivers/input/misc/max77650-onkey.c
11544 F:      drivers/leds/leds-max77650.c
11545 F:      drivers/mfd/max77650.c
11546 F:      drivers/power/supply/max77650-charger.c
11547 F:      drivers/regulator/max77650-regulator.c
11548 F:      include/linux/mfd/max77650.h
11549
11550 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11551 M:      Javier Martinez Canillas <javier@dowhile0.org>
11552 L:      linux-kernel@vger.kernel.org
11553 S:      Supported
11554 F:      Documentation/devicetree/bindings/*/*max77802.txt
11555 F:      drivers/regulator/max77802-regulator.c
11556 F:      include/dt-bindings/*/*max77802.h
11557
11558 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11559 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11560 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11561 L:      linux-pm@vger.kernel.org
11562 S:      Supported
11563 F:      drivers/power/supply/max14577_charger.c
11564 F:      drivers/power/supply/max77693_charger.c
11565
11566 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11567 M:      Chanwoo Choi <cw00.choi@samsung.com>
11568 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11569 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11570 L:      linux-kernel@vger.kernel.org
11571 S:      Supported
11572 F:      Documentation/devicetree/bindings/*/max77686.txt
11573 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11574 F:      Documentation/devicetree/bindings/mfd/max14577.txt
11575 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11576 F:      drivers/*/max14577*.c
11577 F:      drivers/*/max77686*.c
11578 F:      drivers/*/max77693*.c
11579 F:      drivers/clk/clk-max77686.c
11580 F:      drivers/extcon/extcon-max14577.c
11581 F:      drivers/extcon/extcon-max77693.c
11582 F:      drivers/rtc/rtc-max77686.c
11583 F:      include/linux/mfd/max14577*.h
11584 F:      include/linux/mfd/max77686*.h
11585 F:      include/linux/mfd/max77693*.h
11586
11587 MAXIRADIO FM RADIO RECEIVER DRIVER
11588 M:      Hans Verkuil <hverkuil@xs4all.nl>
11589 L:      linux-media@vger.kernel.org
11590 S:      Maintained
11591 W:      https://linuxtv.org
11592 T:      git git://linuxtv.org/media_tree.git
11593 F:      drivers/media/radio/radio-maxiradio*
11594
11595 MAXLINEAR ETHERNET PHY DRIVER
11596 M:      Xu Liang <lxu@maxlinear.com>
11597 L:      netdev@vger.kernel.org
11598 S:      Supported
11599 F:      drivers/net/phy/mxl-gpy.c
11600
11601 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11602 R:      Yasushi SHOJI <yashi@spacecubics.com>
11603 L:      linux-can@vger.kernel.org
11604 S:      Maintained
11605 F:      drivers/net/can/usb/mcba_usb.c
11606
11607 MCAN MMIO DEVICE DRIVER
11608 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11609 L:      linux-can@vger.kernel.org
11610 S:      Maintained
11611 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11612 F:      drivers/net/can/m_can/m_can.c
11613 F:      drivers/net/can/m_can/m_can.h
11614 F:      drivers/net/can/m_can/m_can_platform.c
11615
11616 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11617 M:      Rishi Gupta <gupt21@gmail.com>
11618 L:      linux-i2c@vger.kernel.org
11619 L:      linux-input@vger.kernel.org
11620 S:      Maintained
11621 F:      drivers/hid/hid-mcp2221.c
11622
11623 MCP251XFD SPI-CAN NETWORK DRIVER
11624 M:      Marc Kleine-Budde <mkl@pengutronix.de>
11625 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11626 R:      Thomas Kopp <thomas.kopp@microchip.com>
11627 L:      linux-can@vger.kernel.org
11628 S:      Maintained
11629 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11630 F:      drivers/net/can/spi/mcp251xfd/
11631
11632 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11633 M:      Peter Rosin <peda@axentia.se>
11634 L:      linux-iio@vger.kernel.org
11635 S:      Maintained
11636 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11637 F:      drivers/iio/potentiometer/mcp4018.c
11638 F:      drivers/iio/potentiometer/mcp4531.c
11639
11640 MCR20A IEEE-802.15.4 RADIO DRIVER
11641 M:      Xue Liu <liuxuenetmail@gmail.com>
11642 L:      linux-wpan@vger.kernel.org
11643 S:      Maintained
11644 W:      https://github.com/xueliu/mcr20a-linux
11645 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11646 F:      drivers/net/ieee802154/mcr20a.c
11647 F:      drivers/net/ieee802154/mcr20a.h
11648
11649 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11650 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
11651 L:      linux-iio@vger.kernel.org
11652 S:      Maintained
11653 F:      drivers/iio/dac/cio-dac.c
11654
11655 MEDIA CONTROLLER FRAMEWORK
11656 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11657 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11658 L:      linux-media@vger.kernel.org
11659 S:      Supported
11660 W:      https://www.linuxtv.org
11661 T:      git git://linuxtv.org/media_tree.git
11662 F:      drivers/media/mc/
11663 F:      include/media/media-*.h
11664 F:      include/uapi/linux/media.h
11665
11666 MEDIA DRIVER FOR FREESCALE IMX PXP
11667 M:      Philipp Zabel <p.zabel@pengutronix.de>
11668 L:      linux-media@vger.kernel.org
11669 S:      Maintained
11670 T:      git git://linuxtv.org/media_tree.git
11671 F:      drivers/media/platform/imx-pxp.[ch]
11672
11673 MEDIA DRIVERS FOR ASCOT2E
11674 M:      Sergey Kozlov <serjk@netup.ru>
11675 M:      Abylay Ospan <aospan@netup.ru>
11676 L:      linux-media@vger.kernel.org
11677 S:      Supported
11678 W:      https://linuxtv.org
11679 W:      http://netup.tv/
11680 T:      git git://linuxtv.org/media_tree.git
11681 F:      drivers/media/dvb-frontends/ascot2e*
11682
11683 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11684 M:      Jasmin Jessich <jasmin@anw.at>
11685 L:      linux-media@vger.kernel.org
11686 S:      Maintained
11687 W:      https://linuxtv.org
11688 T:      git git://linuxtv.org/media_tree.git
11689 F:      drivers/media/dvb-frontends/cxd2099*
11690
11691 MEDIA DRIVERS FOR CXD2841ER
11692 M:      Sergey Kozlov <serjk@netup.ru>
11693 M:      Abylay Ospan <aospan@netup.ru>
11694 L:      linux-media@vger.kernel.org
11695 S:      Supported
11696 W:      https://linuxtv.org
11697 W:      http://netup.tv/
11698 T:      git git://linuxtv.org/media_tree.git
11699 F:      drivers/media/dvb-frontends/cxd2841er*
11700
11701 MEDIA DRIVERS FOR CXD2880
11702 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11703 L:      linux-media@vger.kernel.org
11704 S:      Supported
11705 W:      http://linuxtv.org/
11706 T:      git git://linuxtv.org/media_tree.git
11707 F:      drivers/media/dvb-frontends/cxd2880/*
11708 F:      drivers/media/spi/cxd2880*
11709
11710 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11711 L:      linux-media@vger.kernel.org
11712 S:      Orphan
11713 W:      https://linuxtv.org
11714 T:      git git://linuxtv.org/media_tree.git
11715 F:      drivers/media/pci/ddbridge/*
11716
11717 MEDIA DRIVERS FOR FREESCALE IMX
11718 M:      Steve Longerbeam <slongerbeam@gmail.com>
11719 M:      Philipp Zabel <p.zabel@pengutronix.de>
11720 L:      linux-media@vger.kernel.org
11721 S:      Maintained
11722 T:      git git://linuxtv.org/media_tree.git
11723 F:      Documentation/admin-guide/media/imx.rst
11724 F:      Documentation/devicetree/bindings/media/imx.txt
11725 F:      drivers/staging/media/imx/
11726 F:      include/linux/imx-media.h
11727 F:      include/media/imx.h
11728
11729 MEDIA DRIVERS FOR FREESCALE IMX7
11730 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11731 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11732 L:      linux-media@vger.kernel.org
11733 S:      Maintained
11734 T:      git git://linuxtv.org/media_tree.git
11735 F:      Documentation/admin-guide/media/imx7.rst
11736 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11737 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11738 F:      drivers/staging/media/imx/imx7-media-csi.c
11739 F:      drivers/staging/media/imx/imx7-mipi-csis.c
11740
11741 MEDIA DRIVERS FOR HELENE
11742 M:      Abylay Ospan <aospan@netup.ru>
11743 L:      linux-media@vger.kernel.org
11744 S:      Supported
11745 W:      https://linuxtv.org
11746 W:      http://netup.tv/
11747 T:      git git://linuxtv.org/media_tree.git
11748 F:      drivers/media/dvb-frontends/helene*
11749
11750 MEDIA DRIVERS FOR HORUS3A
11751 M:      Sergey Kozlov <serjk@netup.ru>
11752 M:      Abylay Ospan <aospan@netup.ru>
11753 L:      linux-media@vger.kernel.org
11754 S:      Supported
11755 W:      https://linuxtv.org
11756 W:      http://netup.tv/
11757 T:      git git://linuxtv.org/media_tree.git
11758 F:      drivers/media/dvb-frontends/horus3a*
11759
11760 MEDIA DRIVERS FOR LNBH25
11761 M:      Sergey Kozlov <serjk@netup.ru>
11762 M:      Abylay Ospan <aospan@netup.ru>
11763 L:      linux-media@vger.kernel.org
11764 S:      Supported
11765 W:      https://linuxtv.org
11766 W:      http://netup.tv/
11767 T:      git git://linuxtv.org/media_tree.git
11768 F:      drivers/media/dvb-frontends/lnbh25*
11769
11770 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11771 L:      linux-media@vger.kernel.org
11772 S:      Orphan
11773 W:      https://linuxtv.org
11774 T:      git git://linuxtv.org/media_tree.git
11775 F:      drivers/media/dvb-frontends/mxl5xx*
11776
11777 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11778 M:      Sergey Kozlov <serjk@netup.ru>
11779 M:      Abylay Ospan <aospan@netup.ru>
11780 L:      linux-media@vger.kernel.org
11781 S:      Supported
11782 W:      https://linuxtv.org
11783 W:      http://netup.tv/
11784 T:      git git://linuxtv.org/media_tree.git
11785 F:      drivers/media/pci/netup_unidvb/*
11786
11787 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11788 M:      Dmitry Osipenko <digetx@gmail.com>
11789 L:      linux-media@vger.kernel.org
11790 L:      linux-tegra@vger.kernel.org
11791 S:      Maintained
11792 T:      git git://linuxtv.org/media_tree.git
11793 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11794 F:      drivers/staging/media/tegra-vde/
11795
11796 MEDIA DRIVERS FOR RENESAS - CEU
11797 M:      Jacopo Mondi <jacopo@jmondi.org>
11798 L:      linux-media@vger.kernel.org
11799 L:      linux-renesas-soc@vger.kernel.org
11800 S:      Supported
11801 T:      git git://linuxtv.org/media_tree.git
11802 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11803 F:      drivers/media/platform/renesas-ceu.c
11804 F:      include/media/drv-intf/renesas-ceu.h
11805
11806 MEDIA DRIVERS FOR RENESAS - DRIF
11807 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11808 L:      linux-media@vger.kernel.org
11809 L:      linux-renesas-soc@vger.kernel.org
11810 S:      Supported
11811 T:      git git://linuxtv.org/media_tree.git
11812 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
11813 F:      drivers/media/platform/rcar_drif.c
11814
11815 MEDIA DRIVERS FOR RENESAS - FCP
11816 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11817 L:      linux-media@vger.kernel.org
11818 L:      linux-renesas-soc@vger.kernel.org
11819 S:      Supported
11820 T:      git git://linuxtv.org/media_tree.git
11821 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11822 F:      drivers/media/platform/rcar-fcp.c
11823 F:      include/media/rcar-fcp.h
11824
11825 MEDIA DRIVERS FOR RENESAS - FDP1
11826 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11827 L:      linux-media@vger.kernel.org
11828 L:      linux-renesas-soc@vger.kernel.org
11829 S:      Supported
11830 T:      git git://linuxtv.org/media_tree.git
11831 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11832 F:      drivers/media/platform/rcar_fdp1.c
11833
11834 MEDIA DRIVERS FOR RENESAS - VIN
11835 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11836 L:      linux-media@vger.kernel.org
11837 L:      linux-renesas-soc@vger.kernel.org
11838 S:      Supported
11839 T:      git git://linuxtv.org/media_tree.git
11840 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11841 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
11842 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11843 F:      drivers/media/platform/rcar-isp.c
11844 F:      drivers/media/platform/rcar-vin/
11845
11846 MEDIA DRIVERS FOR RENESAS - VSP1
11847 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11848 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11849 L:      linux-media@vger.kernel.org
11850 L:      linux-renesas-soc@vger.kernel.org
11851 S:      Supported
11852 T:      git git://linuxtv.org/media_tree.git
11853 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11854 F:      drivers/media/platform/vsp1/
11855
11856 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11857 L:      linux-media@vger.kernel.org
11858 S:      Orphan
11859 W:      https://linuxtv.org
11860 T:      git git://linuxtv.org/media_tree.git
11861 F:      drivers/media/dvb-frontends/stv0910*
11862
11863 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11864 L:      linux-media@vger.kernel.org
11865 S:      Orphan
11866 W:      https://linuxtv.org
11867 T:      git git://linuxtv.org/media_tree.git
11868 F:      drivers/media/dvb-frontends/stv6111*
11869
11870 MEDIA DRIVERS FOR STM32 - DCMI
11871 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
11872 L:      linux-media@vger.kernel.org
11873 S:      Supported
11874 T:      git git://linuxtv.org/media_tree.git
11875 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11876 F:      drivers/media/platform/stm32/stm32-dcmi.c
11877
11878 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11879 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11880 L:      linux-media@vger.kernel.org
11881 S:      Maintained
11882 W:      https://linuxtv.org
11883 Q:      http://patchwork.kernel.org/project/linux-media/list/
11884 T:      git git://linuxtv.org/media_tree.git
11885 F:      Documentation/admin-guide/media/
11886 F:      Documentation/devicetree/bindings/media/
11887 F:      Documentation/driver-api/media/
11888 F:      Documentation/userspace-api/media/
11889 F:      drivers/media/
11890 F:      drivers/staging/media/
11891 F:      include/linux/platform_data/media/
11892 F:      include/media/
11893 F:      include/uapi/linux/dvb/
11894 F:      include/uapi/linux/ivtv*
11895 F:      include/uapi/linux/media.h
11896 F:      include/uapi/linux/meye.h
11897 F:      include/uapi/linux/uvcvideo.h
11898 F:      include/uapi/linux/v4l2-*
11899 F:      include/uapi/linux/videodev2.h
11900
11901 MEDIATEK BLUETOOTH DRIVER
11902 M:      Sean Wang <sean.wang@mediatek.com>
11903 L:      linux-bluetooth@vger.kernel.org
11904 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11905 S:      Maintained
11906 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11907 F:      drivers/bluetooth/btmtkuart.c
11908
11909 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11910 M:      Sean Wang <sean.wang@mediatek.com>
11911 L:      linux-pm@vger.kernel.org
11912 S:      Maintained
11913 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11914 F:      drivers/power/reset/mt6323-poweroff.c
11915
11916 MEDIATEK CIR DRIVER
11917 M:      Sean Wang <sean.wang@mediatek.com>
11918 S:      Maintained
11919 F:      drivers/media/rc/mtk-cir.c
11920
11921 MEDIATEK DMA DRIVER
11922 M:      Sean Wang <sean.wang@mediatek.com>
11923 L:      dmaengine@vger.kernel.org
11924 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11925 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11926 S:      Maintained
11927 F:      Documentation/devicetree/bindings/dma/mtk-*
11928 F:      drivers/dma/mediatek/
11929
11930 MEDIATEK ETHERNET DRIVER
11931 M:      Felix Fietkau <nbd@nbd.name>
11932 M:      John Crispin <john@phrozen.org>
11933 M:      Sean Wang <sean.wang@mediatek.com>
11934 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11935 L:      netdev@vger.kernel.org
11936 S:      Maintained
11937 F:      drivers/net/ethernet/mediatek/
11938
11939 MEDIATEK I2C CONTROLLER DRIVER
11940 M:      Qii Wang <qii.wang@mediatek.com>
11941 L:      linux-i2c@vger.kernel.org
11942 S:      Maintained
11943 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11944 F:      drivers/i2c/busses/i2c-mt65xx.c
11945
11946 MEDIATEK IOMMU DRIVER
11947 M:      Yong Wu <yong.wu@mediatek.com>
11948 L:      iommu@lists.linux-foundation.org
11949 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11950 S:      Supported
11951 F:      Documentation/devicetree/bindings/iommu/mediatek*
11952 F:      drivers/iommu/mtk_iommu*
11953 F:      include/dt-bindings/memory/mt*-port.h
11954
11955 MEDIATEK JPEG DRIVER
11956 M:      Rick Chang <rick.chang@mediatek.com>
11957 M:      Bin Liu <bin.liu@mediatek.com>
11958 S:      Supported
11959 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11960 F:      drivers/media/platform/mtk-jpeg/
11961
11962 MEDIATEK MDP DRIVER
11963 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11964 M:      Houlong Wei <houlong.wei@mediatek.com>
11965 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11966 S:      Supported
11967 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11968 F:      drivers/media/platform/mtk-mdp/
11969 F:      drivers/media/platform/mtk-vpu/
11970
11971 MEDIATEK MEDIA DRIVER
11972 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11973 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11974 S:      Supported
11975 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11976 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11977 F:      drivers/media/platform/mtk-vcodec/
11978 F:      drivers/media/platform/mtk-vpu/
11979
11980 MEDIATEK MMC/SD/SDIO DRIVER
11981 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11982 S:      Maintained
11983 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11984 F:      drivers/mmc/host/mtk-sd.c
11985
11986 MEDIATEK MT76 WIRELESS LAN DRIVER
11987 M:      Felix Fietkau <nbd@nbd.name>
11988 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11989 M:      Ryder Lee <ryder.lee@mediatek.com>
11990 R:      Shayne Chen <shayne.chen@mediatek.com>
11991 R:      Sean Wang <sean.wang@mediatek.com>
11992 L:      linux-wireless@vger.kernel.org
11993 S:      Maintained
11994 F:      drivers/net/wireless/mediatek/mt76/
11995
11996 MEDIATEK MT7601U WIRELESS LAN DRIVER
11997 M:      Jakub Kicinski <kubakici@wp.pl>
11998 L:      linux-wireless@vger.kernel.org
11999 S:      Maintained
12000 F:      drivers/net/wireless/mediatek/mt7601u/
12001
12002 MEDIATEK MT7621 CLOCK DRIVER
12003 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12004 S:      Maintained
12005 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
12006 F:      drivers/clk/ralink/clk-mt7621.c
12007
12008 MEDIATEK MT7621/28/88 I2C DRIVER
12009 M:      Stefan Roese <sr@denx.de>
12010 L:      linux-i2c@vger.kernel.org
12011 S:      Maintained
12012 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
12013 F:      drivers/i2c/busses/i2c-mt7621.c
12014
12015 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
12016 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12017 S:      Maintained
12018 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
12019 F:      drivers/pci/controller/pcie-mt7621.c
12020
12021 MEDIATEK MT7621 PHY PCI DRIVER
12022 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12023 S:      Maintained
12024 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
12025 F:      drivers/phy/ralink/phy-mt7621-pci.c
12026
12027 MEDIATEK NAND CONTROLLER DRIVER
12028 L:      linux-mtd@lists.infradead.org
12029 S:      Orphan
12030 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
12031 F:      drivers/mtd/nand/raw/mtk_*
12032
12033 MEDIATEK PMIC LED DRIVER
12034 M:      Sean Wang <sean.wang@mediatek.com>
12035 S:      Maintained
12036 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
12037 F:      drivers/leds/leds-mt6323.c
12038
12039 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
12040 M:      Sean Wang <sean.wang@mediatek.com>
12041 S:      Maintained
12042 F:      drivers/char/hw_random/mtk-rng.c
12043
12044 MEDIATEK SMI DRIVER
12045 M:      Yong Wu <yong.wu@mediatek.com>
12046 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12047 S:      Supported
12048 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
12049 F:      drivers/memory/mtk-smi.c
12050 F:      include/soc/mediatek/smi.h
12051
12052 MEDIATEK SWITCH DRIVER
12053 M:      Sean Wang <sean.wang@mediatek.com>
12054 M:      Landen Chao <Landen.Chao@mediatek.com>
12055 M:      DENG Qingfang <dqfext@gmail.com>
12056 L:      netdev@vger.kernel.org
12057 S:      Maintained
12058 F:      drivers/net/dsa/mt7530.*
12059 F:      net/dsa/tag_mtk.c
12060
12061 MEDIATEK USB3 DRD IP DRIVER
12062 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
12063 L:      linux-usb@vger.kernel.org
12064 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12065 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12066 S:      Maintained
12067 F:      Documentation/devicetree/bindings/usb/mediatek,*
12068 F:      drivers/usb/host/xhci-mtk*
12069 F:      drivers/usb/mtu3/
12070
12071 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
12072 M:      Peter Senna Tschudin <peter.senna@gmail.com>
12073 M:      Martin Donnelly <martin.donnelly@ge.com>
12074 M:      Martyn Welch <martyn.welch@collabora.co.uk>
12075 S:      Maintained
12076 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
12077 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
12078
12079 MEGARAID SCSI/SAS DRIVERS
12080 M:      Kashyap Desai <kashyap.desai@broadcom.com>
12081 M:      Sumit Saxena <sumit.saxena@broadcom.com>
12082 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
12083 L:      megaraidlinux.pdl@broadcom.com
12084 L:      linux-scsi@vger.kernel.org
12085 S:      Maintained
12086 W:      http://www.avagotech.com/support/
12087 F:      Documentation/scsi/megaraid.rst
12088 F:      drivers/scsi/megaraid.*
12089 F:      drivers/scsi/megaraid/
12090
12091 MELEXIS MLX90614 DRIVER
12092 M:      Crt Mori <cmo@melexis.com>
12093 L:      linux-iio@vger.kernel.org
12094 S:      Supported
12095 W:      http://www.melexis.com
12096 F:      drivers/iio/temperature/mlx90614.c
12097
12098 MELEXIS MLX90632 DRIVER
12099 M:      Crt Mori <cmo@melexis.com>
12100 L:      linux-iio@vger.kernel.org
12101 S:      Supported
12102 W:      http://www.melexis.com
12103 F:      drivers/iio/temperature/mlx90632.c
12104
12105 MELFAS MIP4 TOUCHSCREEN DRIVER
12106 M:      Sangwon Jee <jeesw@melfas.com>
12107 S:      Supported
12108 W:      http://www.melfas.com
12109 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
12110 F:      drivers/input/touchscreen/melfas_mip4.c
12111
12112 MELLANOX BLUEFIELD I2C DRIVER
12113 M:      Khalil Blaiech <kblaiech@nvidia.com>
12114 L:      linux-i2c@vger.kernel.org
12115 S:      Supported
12116 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12117 F:      drivers/i2c/busses/i2c-mlxbf.c
12118
12119 MELLANOX ETHERNET DRIVER (mlx4_en)
12120 M:      Tariq Toukan <tariqt@nvidia.com>
12121 L:      netdev@vger.kernel.org
12122 S:      Supported
12123 W:      http://www.mellanox.com
12124 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12125 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12126
12127 MELLANOX ETHERNET DRIVER (mlx5e)
12128 M:      Saeed Mahameed <saeedm@nvidia.com>
12129 L:      netdev@vger.kernel.org
12130 S:      Supported
12131 W:      http://www.mellanox.com
12132 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12133 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12134
12135 MELLANOX ETHERNET INNOVA DRIVERS
12136 R:      Boris Pismenny <borisp@nvidia.com>
12137 L:      netdev@vger.kernel.org
12138 S:      Supported
12139 W:      http://www.mellanox.com
12140 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12141 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
12142 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12143 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12144 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12145
12146 MELLANOX ETHERNET SWITCH DRIVERS
12147 M:      Jiri Pirko <jiri@nvidia.com>
12148 M:      Ido Schimmel <idosch@nvidia.com>
12149 L:      netdev@vger.kernel.org
12150 S:      Supported
12151 W:      http://www.mellanox.com
12152 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12153 F:      drivers/net/ethernet/mellanox/mlxsw/
12154 F:      tools/testing/selftests/drivers/net/mlxsw/
12155
12156 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12157 M:      mlxsw@nvidia.com
12158 L:      netdev@vger.kernel.org
12159 S:      Supported
12160 W:      http://www.mellanox.com
12161 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12162 F:      drivers/net/ethernet/mellanox/mlxfw/
12163
12164 MELLANOX HARDWARE PLATFORM SUPPORT
12165 M:      Hans de Goede <hdegoede@redhat.com>
12166 M:      Mark Gross <markgross@kernel.org>
12167 M:      Vadim Pasternak <vadimp@nvidia.com>
12168 L:      platform-driver-x86@vger.kernel.org
12169 S:      Supported
12170 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12171 F:      drivers/platform/mellanox/
12172 F:      include/linux/platform_data/mlxreg.h
12173
12174 MELLANOX MLX4 core VPI driver
12175 M:      Tariq Toukan <tariqt@nvidia.com>
12176 L:      netdev@vger.kernel.org
12177 L:      linux-rdma@vger.kernel.org
12178 S:      Supported
12179 W:      http://www.mellanox.com
12180 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12181 F:      drivers/net/ethernet/mellanox/mlx4/
12182 F:      include/linux/mlx4/
12183
12184 MELLANOX MLX4 IB driver
12185 M:      Yishai Hadas <yishaih@nvidia.com>
12186 L:      linux-rdma@vger.kernel.org
12187 S:      Supported
12188 W:      http://www.mellanox.com
12189 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12190 F:      drivers/infiniband/hw/mlx4/
12191 F:      include/linux/mlx4/
12192 F:      include/uapi/rdma/mlx4-abi.h
12193
12194 MELLANOX MLX5 core VPI driver
12195 M:      Saeed Mahameed <saeedm@nvidia.com>
12196 M:      Leon Romanovsky <leonro@nvidia.com>
12197 L:      netdev@vger.kernel.org
12198 L:      linux-rdma@vger.kernel.org
12199 S:      Supported
12200 W:      http://www.mellanox.com
12201 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12202 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12203 F:      drivers/net/ethernet/mellanox/mlx5/core/
12204 F:      include/linux/mlx5/
12205
12206 MELLANOX MLX5 IB driver
12207 M:      Leon Romanovsky <leonro@nvidia.com>
12208 L:      linux-rdma@vger.kernel.org
12209 S:      Supported
12210 W:      http://www.mellanox.com
12211 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12212 F:      drivers/infiniband/hw/mlx5/
12213 F:      include/linux/mlx5/
12214 F:      include/uapi/rdma/mlx5-abi.h
12215
12216 MELLANOX MLXCPLD I2C AND MUX DRIVER
12217 M:      Vadim Pasternak <vadimp@nvidia.com>
12218 M:      Michael Shych <michaelsh@nvidia.com>
12219 L:      linux-i2c@vger.kernel.org
12220 S:      Supported
12221 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12222 F:      drivers/i2c/busses/i2c-mlxcpld.c
12223 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12224
12225 MELLANOX MLXCPLD LED DRIVER
12226 M:      Vadim Pasternak <vadimp@nvidia.com>
12227 L:      linux-leds@vger.kernel.org
12228 S:      Supported
12229 F:      Documentation/leds/leds-mlxcpld.rst
12230 F:      drivers/leds/leds-mlxcpld.c
12231 F:      drivers/leds/leds-mlxreg.c
12232
12233 MELLANOX PLATFORM DRIVER
12234 M:      Vadim Pasternak <vadimp@nvidia.com>
12235 L:      platform-driver-x86@vger.kernel.org
12236 S:      Supported
12237 F:      drivers/platform/x86/mlx-platform.c
12238
12239 MEMBARRIER SUPPORT
12240 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12241 M:      "Paul E. McKenney" <paulmck@kernel.org>
12242 L:      linux-kernel@vger.kernel.org
12243 S:      Supported
12244 F:      arch/powerpc/include/asm/membarrier.h
12245 F:      include/uapi/linux/membarrier.h
12246 F:      kernel/sched/membarrier.c
12247
12248 MEMBLOCK
12249 M:      Mike Rapoport <rppt@linux.ibm.com>
12250 L:      linux-mm@kvack.org
12251 S:      Maintained
12252 F:      Documentation/core-api/boot-time-mm.rst
12253 F:      include/linux/memblock.h
12254 F:      mm/memblock.c
12255
12256 MEMORY CONTROLLER DRIVERS
12257 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
12258 L:      linux-kernel@vger.kernel.org
12259 S:      Maintained
12260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12261 F:      Documentation/devicetree/bindings/memory-controllers/
12262 F:      drivers/memory/
12263 F:      include/dt-bindings/memory/
12264 F:      include/memory/
12265
12266 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12267 M:      Dmitry Osipenko <digetx@gmail.com>
12268 L:      linux-pm@vger.kernel.org
12269 L:      linux-tegra@vger.kernel.org
12270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12271 S:      Maintained
12272 F:      drivers/devfreq/tegra30-devfreq.c
12273
12274 MEMORY MANAGEMENT
12275 M:      Andrew Morton <akpm@linux-foundation.org>
12276 L:      linux-mm@kvack.org
12277 S:      Maintained
12278 W:      http://www.linux-mm.org
12279 T:      quilt https://ozlabs.org/~akpm/mmotm/
12280 T:      quilt https://ozlabs.org/~akpm/mmots/
12281 T:      git git://github.com/hnaz/linux-mm.git
12282 F:      include/linux/gfp.h
12283 F:      include/linux/memory_hotplug.h
12284 F:      include/linux/mm.h
12285 F:      include/linux/mmzone.h
12286 F:      include/linux/pagewalk.h
12287 F:      include/linux/vmalloc.h
12288 F:      mm/
12289 F:      tools/testing/selftests/vm/
12290
12291 MEMORY TECHNOLOGY DEVICES (MTD)
12292 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12293 M:      Richard Weinberger <richard@nod.at>
12294 M:      Vignesh Raghavendra <vigneshr@ti.com>
12295 L:      linux-mtd@lists.infradead.org
12296 S:      Maintained
12297 W:      http://www.linux-mtd.infradead.org/
12298 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12299 C:      irc://irc.oftc.net/mtd
12300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12302 F:      Documentation/devicetree/bindings/mtd/
12303 F:      drivers/mtd/
12304 F:      include/linux/mtd/
12305 F:      include/uapi/mtd/
12306
12307 MEN A21 WATCHDOG DRIVER
12308 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12309 L:      linux-watchdog@vger.kernel.org
12310 S:      Maintained
12311 F:      drivers/watchdog/mena21_wdt.c
12312
12313 MEN CHAMELEON BUS (mcb)
12314 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12315 S:      Maintained
12316 F:      Documentation/driver-api/men-chameleon-bus.rst
12317 F:      drivers/mcb/
12318 F:      include/linux/mcb.h
12319
12320 MEN F21BMC (Board Management Controller)
12321 M:      Andreas Werner <andreas.werner@men.de>
12322 S:      Supported
12323 F:      Documentation/hwmon/menf21bmc.rst
12324 F:      drivers/hwmon/menf21bmc_hwmon.c
12325 F:      drivers/leds/leds-menf21bmc.c
12326 F:      drivers/mfd/menf21bmc.c
12327 F:      drivers/watchdog/menf21bmc_wdt.c
12328
12329 MEN Z069 WATCHDOG DRIVER
12330 M:      Johannes Thumshirn <jth@kernel.org>
12331 L:      linux-watchdog@vger.kernel.org
12332 S:      Maintained
12333 F:      drivers/watchdog/menz69_wdt.c
12334
12335 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12336 M:      Neil Armstrong <narmstrong@baylibre.com>
12337 L:      linux-media@vger.kernel.org
12338 L:      linux-amlogic@lists.infradead.org
12339 S:      Supported
12340 W:      http://linux-meson.com/
12341 T:      git git://linuxtv.org/media_tree.git
12342 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12343 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12344 F:      drivers/media/cec/platform/meson/ao-cec.c
12345
12346 MESON GE2D DRIVER FOR AMLOGIC SOCS
12347 M:      Neil Armstrong <narmstrong@baylibre.com>
12348 L:      linux-media@vger.kernel.org
12349 L:      linux-amlogic@lists.infradead.org
12350 S:      Supported
12351 T:      git git://linuxtv.org/media_tree.git
12352 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12353 F:      drivers/media/platform/meson/ge2d/
12354
12355 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12356 M:      Liang Yang <liang.yang@amlogic.com>
12357 L:      linux-mtd@lists.infradead.org
12358 S:      Maintained
12359 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12360 F:      drivers/mtd/nand/raw/meson_*
12361
12362 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12363 M:      Neil Armstrong <narmstrong@baylibre.com>
12364 L:      linux-media@vger.kernel.org
12365 L:      linux-amlogic@lists.infradead.org
12366 S:      Supported
12367 T:      git git://linuxtv.org/media_tree.git
12368 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12369 F:      drivers/staging/media/meson/vdec/
12370
12371 METHODE UDPU SUPPORT
12372 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12373 S:      Maintained
12374 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12375
12376 MHI BUS
12377 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12378 R:      Hemant Kumar <hemantk@codeaurora.org>
12379 L:      mhi@lists.linux.dev
12380 L:      linux-arm-msm@vger.kernel.org
12381 S:      Maintained
12382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12383 F:      Documentation/ABI/stable/sysfs-bus-mhi
12384 F:      Documentation/mhi/
12385 F:      drivers/bus/mhi/
12386 F:      include/linux/mhi.h
12387
12388 MICROBLAZE ARCHITECTURE
12389 M:      Michal Simek <monstr@monstr.eu>
12390 S:      Supported
12391 W:      http://www.monstr.eu/fdt/
12392 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12393 F:      arch/microblaze/
12394
12395 MICROCHIP AT91 DMA DRIVERS
12396 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12397 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12398 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12399 L:      dmaengine@vger.kernel.org
12400 S:      Supported
12401 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12402 F:      drivers/dma/at_hdmac.c
12403 F:      drivers/dma/at_hdmac_regs.h
12404 F:      drivers/dma/at_xdmac.c
12405 F:      include/dt-bindings/dma/at91.h
12406
12407 MICROCHIP AT91 SERIAL DRIVER
12408 M:      Richard Genoud <richard.genoud@gmail.com>
12409 S:      Maintained
12410 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12411 F:      drivers/tty/serial/atmel_serial.c
12412 F:      drivers/tty/serial/atmel_serial.h
12413
12414 MICROCHIP AT91 USART MFD DRIVER
12415 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12416 L:      linux-kernel@vger.kernel.org
12417 S:      Supported
12418 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12419 F:      drivers/mfd/at91-usart.c
12420 F:      include/dt-bindings/mfd/at91-usart.h
12421
12422 MICROCHIP AT91 USART SPI DRIVER
12423 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12424 L:      linux-spi@vger.kernel.org
12425 S:      Supported
12426 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12427 F:      drivers/spi/spi-at91-usart.c
12428
12429 MICROCHIP AUDIO ASOC DRIVERS
12430 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12431 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12432 S:      Supported
12433 F:      sound/soc/atmel
12434
12435 MICROCHIP ECC DRIVER
12436 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12437 L:      linux-crypto@vger.kernel.org
12438 S:      Maintained
12439 F:      drivers/crypto/atmel-ecc.*
12440
12441 MICROCHIP EIC DRIVER
12442 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12443 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12444 S:      Supported
12445 F:      drivers/irqchip/irq-mchp-eic.c
12446
12447 MICROCHIP I2C DRIVER
12448 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12449 L:      linux-i2c@vger.kernel.org
12450 S:      Supported
12451 F:      drivers/i2c/busses/i2c-at91-*.c
12452 F:      drivers/i2c/busses/i2c-at91.h
12453
12454 MICROCHIP ISC DRIVER
12455 M:      Eugen Hristev <eugen.hristev@microchip.com>
12456 L:      linux-media@vger.kernel.org
12457 S:      Supported
12458 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12459 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12460 F:      drivers/media/platform/atmel/atmel-isc-base.c
12461 F:      drivers/media/platform/atmel/atmel-isc-regs.h
12462 F:      drivers/media/platform/atmel/atmel-isc.h
12463 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
12464 F:      drivers/media/platform/atmel/atmel-sama7g5-isc.c
12465 F:      include/linux/atmel-isc-media.h
12466
12467 MICROCHIP ISI DRIVER
12468 M:      Eugen Hristev <eugen.hristev@microchip.com>
12469 L:      linux-media@vger.kernel.org
12470 S:      Supported
12471 F:      drivers/media/platform/atmel/atmel-isi.c
12472 F:      drivers/media/platform/atmel/atmel-isi.h
12473
12474 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12475 M:      Woojung Huh <woojung.huh@microchip.com>
12476 M:      UNGLinuxDriver@microchip.com
12477 L:      netdev@vger.kernel.org
12478 S:      Maintained
12479 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12480 F:      drivers/net/dsa/microchip/*
12481 F:      include/linux/platform_data/microchip-ksz.h
12482 F:      net/dsa/tag_ksz.c
12483
12484 MICROCHIP LAN743X ETHERNET DRIVER
12485 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12486 M:      UNGLinuxDriver@microchip.com
12487 L:      netdev@vger.kernel.org
12488 S:      Maintained
12489 F:      drivers/net/ethernet/microchip/lan743x_*
12490
12491 MICROCHIP LCDFB DRIVER
12492 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
12493 L:      linux-fbdev@vger.kernel.org
12494 S:      Maintained
12495 F:      drivers/video/fbdev/atmel_lcdfb.c
12496 F:      include/video/atmel_lcdc.h
12497
12498 MICROCHIP MCP16502 PMIC DRIVER
12499 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12500 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12501 S:      Supported
12502 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12503 F:      drivers/regulator/mcp16502.c
12504
12505 MICROCHIP MCP3911 ADC DRIVER
12506 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12507 M:      Kent Gustavsson <kent@minoris.se>
12508 L:      linux-iio@vger.kernel.org
12509 S:      Supported
12510 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12511 F:      drivers/iio/adc/mcp3911.c
12512
12513 MICROCHIP MMC/SD/SDIO MCI DRIVER
12514 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12515 S:      Maintained
12516 F:      drivers/mmc/host/atmel-mci.c
12517
12518 MICROCHIP NAND DRIVER
12519 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12520 L:      linux-mtd@lists.infradead.org
12521 S:      Supported
12522 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12523 F:      drivers/mtd/nand/raw/atmel/*
12524
12525 MICROCHIP PWM DRIVER
12526 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12527 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12528 L:      linux-pwm@vger.kernel.org
12529 S:      Supported
12530 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12531 F:      drivers/pwm/pwm-atmel.c
12532
12533 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12534 M:      Eugen Hristev <eugen.hristev@microchip.com>
12535 L:      linux-iio@vger.kernel.org
12536 S:      Supported
12537 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12538 F:      drivers/iio/adc/at91-sama5d2_adc.c
12539 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12540
12541 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12542 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12543 S:      Supported
12544 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12545
12546 MICROCHIP SPI DRIVER
12547 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12548 S:      Supported
12549 F:      drivers/spi/spi-atmel.*
12550
12551 MICROCHIP SSC DRIVER
12552 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12553 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12554 S:      Supported
12555 F:      drivers/misc/atmel-ssc.c
12556 F:      include/linux/atmel-ssc.h
12557
12558 MICROCHIP USB251XB DRIVER
12559 M:      Richard Leitner <richard.leitner@skidata.com>
12560 L:      linux-usb@vger.kernel.org
12561 S:      Maintained
12562 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12563 F:      drivers/usb/misc/usb251xb.c
12564
12565 MICROCHIP USBA UDC DRIVER
12566 M:      Cristian Birsan <cristian.birsan@microchip.com>
12567 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12568 S:      Supported
12569 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12570
12571 MICROCHIP WILC1000 WIFI DRIVER
12572 M:      Ajay Singh <ajay.kathat@microchip.com>
12573 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12574 L:      linux-wireless@vger.kernel.org
12575 S:      Supported
12576 F:      drivers/net/wireless/microchip/wilc1000/
12577
12578 MICROSEMI MIPS SOCS
12579 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12580 M:      UNGLinuxDriver@microchip.com
12581 L:      linux-mips@vger.kernel.org
12582 S:      Supported
12583 F:      Documentation/devicetree/bindings/mips/mscc.txt
12584 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12585 F:      arch/mips/boot/dts/mscc/
12586 F:      arch/mips/configs/generic/board-ocelot.config
12587 F:      arch/mips/generic/board-ocelot.c
12588
12589 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12590 M:      Don Brace <don.brace@microchip.com>
12591 L:      storagedev@microchip.com
12592 L:      linux-scsi@vger.kernel.org
12593 S:      Supported
12594 F:      Documentation/scsi/smartpqi.rst
12595 F:      drivers/scsi/smartpqi/Kconfig
12596 F:      drivers/scsi/smartpqi/Makefile
12597 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
12598 F:      include/linux/cciss*.h
12599 F:      include/uapi/linux/cciss*.h
12600
12601 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12602 M:      Maximilian Luz <luzmaximilian@gmail.com>
12603 L:      linux-pm@vger.kernel.org
12604 L:      platform-driver-x86@vger.kernel.org
12605 S:      Maintained
12606 F:      drivers/power/supply/surface_battery.c
12607 F:      drivers/power/supply/surface_charger.c
12608
12609 MICROSOFT SURFACE DTX DRIVER
12610 M:      Maximilian Luz <luzmaximilian@gmail.com>
12611 L:      platform-driver-x86@vger.kernel.org
12612 S:      Maintained
12613 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
12614 F:      drivers/platform/surface/surface_dtx.c
12615 F:      include/uapi/linux/surface_aggregator/dtx.h
12616
12617 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12618 M:      Maximilian Luz <luzmaximilian@gmail.com>
12619 L:      platform-driver-x86@vger.kernel.org
12620 S:      Maintained
12621 F:      drivers/platform/surface/surface_gpe.c
12622
12623 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12624 M:      Hans de Goede <hdegoede@redhat.com>
12625 M:      Mark Gross <markgross@kernel.org>
12626 M:      Maximilian Luz <luzmaximilian@gmail.com>
12627 L:      platform-driver-x86@vger.kernel.org
12628 S:      Maintained
12629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12630 F:      drivers/platform/surface/
12631
12632 MICROSOFT SURFACE HID TRANSPORT DRIVER
12633 M:      Maximilian Luz <luzmaximilian@gmail.com>
12634 L:      linux-input@vger.kernel.org
12635 L:      platform-driver-x86@vger.kernel.org
12636 S:      Maintained
12637 F:      drivers/hid/surface-hid/
12638
12639 MICROSOFT SURFACE HOT-PLUG DRIVER
12640 M:      Maximilian Luz <luzmaximilian@gmail.com>
12641 L:      platform-driver-x86@vger.kernel.org
12642 S:      Maintained
12643 F:      drivers/platform/surface/surface_hotplug.c
12644
12645 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12646 M:      Maximilian Luz <luzmaximilian@gmail.com>
12647 L:      platform-driver-x86@vger.kernel.org
12648 S:      Maintained
12649 F:      drivers/platform/surface/surface_platform_profile.c
12650
12651 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12652 M:      Chen Yu <yu.c.chen@intel.com>
12653 L:      platform-driver-x86@vger.kernel.org
12654 S:      Supported
12655 F:      drivers/platform/surface/surfacepro3_button.c
12656
12657 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12658 M:      Maximilian Luz <luzmaximilian@gmail.com>
12659 L:      platform-driver-x86@vger.kernel.org
12660 S:      Maintained
12661 W:      https://github.com/linux-surface/surface-aggregator-module
12662 C:      irc://irc.libera.chat/linux-surface
12663 F:      Documentation/driver-api/surface_aggregator/
12664 F:      drivers/platform/surface/aggregator/
12665 F:      drivers/platform/surface/surface_acpi_notify.c
12666 F:      drivers/platform/surface/surface_aggregator_cdev.c
12667 F:      drivers/platform/surface/surface_aggregator_registry.c
12668 F:      include/linux/surface_acpi_notify.h
12669 F:      include/linux/surface_aggregator/
12670 F:      include/uapi/linux/surface_aggregator/
12671
12672 MICROTEK X6 SCANNER
12673 M:      Oliver Neukum <oliver@neukum.org>
12674 S:      Maintained
12675 F:      drivers/usb/image/microtek.*
12676
12677 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12678 M:      Luka Kovacic <luka.kovacic@sartura.hr>
12679 M:      Luka Perkov <luka.perkov@sartura.hr>
12680 S:      Maintained
12681 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12682 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12683 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12684 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12685 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12686 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12687
12688 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12689 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12690 L:      linux-media@vger.kernel.org
12691 S:      Maintained
12692 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12693 F:      Documentation/driver-api/media/drivers/ccs/
12694 F:      Documentation/userspace-api/media/drivers/ccs.rst
12695 F:      drivers/media/i2c/ccs-pll.c
12696 F:      drivers/media/i2c/ccs-pll.h
12697 F:      drivers/media/i2c/ccs/
12698 F:      include/uapi/linux/ccs.h
12699 F:      include/uapi/linux/smiapp.h
12700
12701 MIPS
12702 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12703 L:      linux-mips@vger.kernel.org
12704 S:      Maintained
12705 W:      http://www.linux-mips.org/
12706 Q:      https://patchwork.kernel.org/project/linux-mips/list/
12707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12708 F:      Documentation/devicetree/bindings/mips/
12709 F:      Documentation/mips/
12710 F:      arch/mips/
12711 F:      drivers/platform/mips/
12712
12713 MIPS BOSTON DEVELOPMENT BOARD
12714 M:      Paul Burton <paulburton@kernel.org>
12715 L:      linux-mips@vger.kernel.org
12716 S:      Maintained
12717 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
12718 F:      arch/mips/boot/dts/img/boston.dts
12719 F:      arch/mips/configs/generic/board-boston.config
12720 F:      drivers/clk/imgtec/clk-boston.c
12721 F:      include/dt-bindings/clock/boston-clock.h
12722
12723 MIPS CORE DRIVERS
12724 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12725 M:      Serge Semin <fancer.lancer@gmail.com>
12726 L:      linux-mips@vger.kernel.org
12727 S:      Supported
12728 F:      drivers/bus/mips_cdmm.c
12729 F:      drivers/clocksource/mips-gic-timer.c
12730 F:      drivers/cpuidle/cpuidle-cps.c
12731 F:      drivers/irqchip/irq-mips-cpu.c
12732 F:      drivers/irqchip/irq-mips-gic.c
12733
12734 MIPS GENERIC PLATFORM
12735 M:      Paul Burton <paulburton@kernel.org>
12736 L:      linux-mips@vger.kernel.org
12737 S:      Supported
12738 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12739 F:      arch/mips/generic/
12740 F:      arch/mips/tools/generic-board-config.sh
12741
12742 MIPS RINT INSTRUCTION EMULATION
12743 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
12744 L:      linux-mips@vger.kernel.org
12745 S:      Supported
12746 F:      arch/mips/math-emu/dp_rint.c
12747 F:      arch/mips/math-emu/sp_rint.c
12748
12749 MIPS/LOONGSON1 ARCHITECTURE
12750 M:      Keguang Zhang <keguang.zhang@gmail.com>
12751 L:      linux-mips@vger.kernel.org
12752 S:      Maintained
12753 F:      arch/mips/include/asm/mach-loongson32/
12754 F:      arch/mips/loongson32/
12755 F:      drivers/*/*/*loongson1*
12756 F:      drivers/*/*loongson1*
12757
12758 MIPS/LOONGSON2EF ARCHITECTURE
12759 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12760 L:      linux-mips@vger.kernel.org
12761 S:      Maintained
12762 F:      arch/mips/include/asm/mach-loongson2ef/
12763 F:      arch/mips/loongson2ef/
12764 F:      drivers/cpufreq/loongson2_cpufreq.c
12765
12766 MIPS/LOONGSON64 ARCHITECTURE
12767 M:      Huacai Chen <chenhuacai@kernel.org>
12768 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12769 L:      linux-mips@vger.kernel.org
12770 S:      Maintained
12771 F:      arch/mips/include/asm/mach-loongson64/
12772 F:      arch/mips/loongson64/
12773 F:      drivers/irqchip/irq-loongson*
12774 F:      drivers/platform/mips/cpu_hwmon.c
12775
12776 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12777 M:      Hans Verkuil <hverkuil@xs4all.nl>
12778 L:      linux-media@vger.kernel.org
12779 S:      Odd Fixes
12780 W:      https://linuxtv.org
12781 T:      git git://linuxtv.org/media_tree.git
12782 F:      drivers/media/radio/radio-miropcm20*
12783
12784 MMP SUPPORT
12785 R:      Lubomir Rintel <lkundrak@v3.sk>
12786 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12787 S:      Odd Fixes
12788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12789 F:      arch/arm/boot/dts/mmp*
12790 F:      arch/arm/mach-mmp/
12791 F:      include/linux/soc/mmp/
12792
12793 MMP USB PHY DRIVERS
12794 R:      Lubomir Rintel <lkundrak@v3.sk>
12795 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12796 S:      Maintained
12797 F:      drivers/phy/marvell/phy-mmp3-usb.c
12798 F:      drivers/phy/marvell/phy-pxa-usb.c
12799
12800 MMU GATHER AND TLB INVALIDATION
12801 M:      Will Deacon <will@kernel.org>
12802 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12803 M:      Andrew Morton <akpm@linux-foundation.org>
12804 M:      Nick Piggin <npiggin@gmail.com>
12805 M:      Peter Zijlstra <peterz@infradead.org>
12806 L:      linux-arch@vger.kernel.org
12807 L:      linux-mm@kvack.org
12808 S:      Maintained
12809 F:      arch/*/include/asm/tlb.h
12810 F:      include/asm-generic/tlb.h
12811 F:      mm/mmu_gather.c
12812
12813 MN88472 MEDIA DRIVER
12814 M:      Antti Palosaari <crope@iki.fi>
12815 L:      linux-media@vger.kernel.org
12816 S:      Maintained
12817 W:      https://linuxtv.org
12818 W:      http://palosaari.fi/linux/
12819 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12820 F:      drivers/media/dvb-frontends/mn88472*
12821
12822 MN88473 MEDIA DRIVER
12823 M:      Antti Palosaari <crope@iki.fi>
12824 L:      linux-media@vger.kernel.org
12825 S:      Maintained
12826 W:      https://linuxtv.org
12827 W:      http://palosaari.fi/linux/
12828 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12829 F:      drivers/media/dvb-frontends/mn88473*
12830
12831 MODULE SUPPORT
12832 M:      Luis Chamberlain <mcgrof@kernel.org>
12833 M:      Jessica Yu <jeyu@kernel.org>
12834 S:      Maintained
12835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12836 F:      include/linux/module.h
12837 F:      kernel/module.c
12838
12839 MONOLITHIC POWER SYSTEM PMIC DRIVER
12840 M:      Saravanan Sekar <sravanhome@gmail.com>
12841 S:      Maintained
12842 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12843 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12844 F:      drivers/iio/adc/mp2629_adc.c
12845 F:      drivers/mfd/mp2629.c
12846 F:      drivers/power/supply/mp2629_charger.c
12847 F:      drivers/regulator/mp5416.c
12848 F:      drivers/regulator/mpq7920.c
12849 F:      drivers/regulator/mpq7920.h
12850 F:      include/linux/mfd/mp2629.h
12851
12852 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12853 S:      Orphan
12854 W:      http://popies.net/meye/
12855 F:      Documentation/userspace-api/media/drivers/meye*
12856 F:      drivers/media/pci/meye/
12857 F:      include/uapi/linux/meye.h
12858
12859 MOTORCOMM PHY DRIVER
12860 M:      Peter Geis <pgwipeout@gmail.com>
12861 L:      netdev@vger.kernel.org
12862 S:      Maintained
12863 F:      drivers/net/phy/motorcomm.c
12864
12865 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12866 M:      Jiri Slaby <jirislaby@kernel.org>
12867 S:      Maintained
12868 F:      Documentation/driver-api/serial/moxa-smartio.rst
12869 F:      drivers/tty/mxser.*
12870
12871 MR800 AVERMEDIA USB FM RADIO DRIVER
12872 M:      Alexey Klimov <klimov.linux@gmail.com>
12873 L:      linux-media@vger.kernel.org
12874 S:      Maintained
12875 T:      git git://linuxtv.org/media_tree.git
12876 F:      drivers/media/radio/radio-mr800.c
12877
12878 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12879 M:      Alan Ott <alan@signal11.us>
12880 L:      linux-wpan@vger.kernel.org
12881 S:      Maintained
12882 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12883 F:      drivers/net/ieee802154/mrf24j40.c
12884
12885 MSI LAPTOP SUPPORT
12886 M:      "Lee, Chun-Yi" <jlee@suse.com>
12887 L:      platform-driver-x86@vger.kernel.org
12888 S:      Maintained
12889 F:      drivers/platform/x86/msi-laptop.c
12890
12891 MSI WMI SUPPORT
12892 L:      platform-driver-x86@vger.kernel.org
12893 S:      Orphan
12894 F:      drivers/platform/x86/msi-wmi.c
12895
12896 MSI001 MEDIA DRIVER
12897 M:      Antti Palosaari <crope@iki.fi>
12898 L:      linux-media@vger.kernel.org
12899 S:      Maintained
12900 W:      https://linuxtv.org
12901 W:      http://palosaari.fi/linux/
12902 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12903 T:      git git://linuxtv.org/anttip/media_tree.git
12904 F:      drivers/media/tuners/msi001*
12905
12906 MSI2500 MEDIA DRIVER
12907 M:      Antti Palosaari <crope@iki.fi>
12908 L:      linux-media@vger.kernel.org
12909 S:      Maintained
12910 W:      https://linuxtv.org
12911 W:      http://palosaari.fi/linux/
12912 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12913 T:      git git://linuxtv.org/anttip/media_tree.git
12914 F:      drivers/media/usb/msi2500/
12915
12916 MSTAR INTERRUPT CONTROLLER DRIVER
12917 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12918 M:      Daniel Palmer <daniel@thingy.jp>
12919 S:      Maintained
12920 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12921 F:      drivers/irqchip/irq-mst-intc.c
12922
12923 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12924 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12925 L:      linux-mtd@lists.infradead.org
12926 S:      Maintained
12927 F:      drivers/mtd/devices/docg3*
12928
12929 MT9M032 APTINA SENSOR DRIVER
12930 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12931 L:      linux-media@vger.kernel.org
12932 S:      Maintained
12933 T:      git git://linuxtv.org/media_tree.git
12934 F:      drivers/media/i2c/mt9m032.c
12935 F:      include/media/i2c/mt9m032.h
12936
12937 MT9P031 APTINA CAMERA SENSOR
12938 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12939 L:      linux-media@vger.kernel.org
12940 S:      Maintained
12941 T:      git git://linuxtv.org/media_tree.git
12942 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
12943 F:      drivers/media/i2c/mt9p031.c
12944 F:      include/media/i2c/mt9p031.h
12945
12946 MT9T001 APTINA CAMERA SENSOR
12947 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12948 L:      linux-media@vger.kernel.org
12949 S:      Maintained
12950 T:      git git://linuxtv.org/media_tree.git
12951 F:      drivers/media/i2c/mt9t001.c
12952 F:      include/media/i2c/mt9t001.h
12953
12954 MT9T112 APTINA CAMERA SENSOR
12955 M:      Jacopo Mondi <jacopo@jmondi.org>
12956 L:      linux-media@vger.kernel.org
12957 S:      Odd Fixes
12958 T:      git git://linuxtv.org/media_tree.git
12959 F:      drivers/media/i2c/mt9t112.c
12960 F:      include/media/i2c/mt9t112.h
12961
12962 MT9V032 APTINA CAMERA SENSOR
12963 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12964 L:      linux-media@vger.kernel.org
12965 S:      Maintained
12966 T:      git git://linuxtv.org/media_tree.git
12967 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12968 F:      drivers/media/i2c/mt9v032.c
12969 F:      include/media/i2c/mt9v032.h
12970
12971 MT9V111 APTINA CAMERA SENSOR
12972 M:      Jacopo Mondi <jacopo@jmondi.org>
12973 L:      linux-media@vger.kernel.org
12974 S:      Maintained
12975 T:      git git://linuxtv.org/media_tree.git
12976 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12977 F:      drivers/media/i2c/mt9v111.c
12978
12979 MULTIFUNCTION DEVICES (MFD)
12980 M:      Lee Jones <lee.jones@linaro.org>
12981 S:      Supported
12982 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12983 F:      Documentation/devicetree/bindings/mfd/
12984 F:      drivers/mfd/
12985 F:      include/dt-bindings/mfd/
12986 F:      include/linux/mfd/
12987
12988 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12989 S:      Orphan
12990 F:      drivers/mmc/host/mmc_spi.c
12991 F:      include/linux/spi/mmc_spi.h
12992
12993 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12994 M:      Ulf Hansson <ulf.hansson@linaro.org>
12995 L:      linux-mmc@vger.kernel.org
12996 S:      Maintained
12997 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12998 F:      Documentation/devicetree/bindings/mmc/
12999 F:      drivers/mmc/
13000 F:      include/linux/mmc/
13001 F:      include/uapi/linux/mmc/
13002
13003 MULTIPLEXER SUBSYSTEM
13004 M:      Peter Rosin <peda@axentia.se>
13005 S:      Maintained
13006 F:      Documentation/ABI/testing/sysfs-class-mux*
13007 F:      Documentation/devicetree/bindings/mux/
13008 F:      drivers/mux/
13009 F:      include/dt-bindings/mux/
13010 F:      include/linux/mux/
13011
13012 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
13013 M:      Bin Liu <b-liu@ti.com>
13014 L:      linux-usb@vger.kernel.org
13015 S:      Maintained
13016 F:      drivers/usb/musb/
13017
13018 MXL301RF MEDIA DRIVER
13019 M:      Akihiro Tsukada <tskd08@gmail.com>
13020 L:      linux-media@vger.kernel.org
13021 S:      Odd Fixes
13022 F:      drivers/media/tuners/mxl301rf*
13023
13024 MXL5007T MEDIA DRIVER
13025 M:      Michael Krufky <mkrufky@linuxtv.org>
13026 L:      linux-media@vger.kernel.org
13027 S:      Maintained
13028 W:      https://linuxtv.org
13029 W:      http://github.com/mkrufky
13030 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13031 T:      git git://linuxtv.org/mkrufky/tuners.git
13032 F:      drivers/media/tuners/mxl5007t.*
13033
13034 MXSFB DRM DRIVER
13035 M:      Marek Vasut <marex@denx.de>
13036 M:      Stefan Agner <stefan@agner.ch>
13037 L:      dri-devel@lists.freedesktop.org
13038 S:      Supported
13039 T:      git git://anongit.freedesktop.org/drm/drm-misc
13040 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
13041 F:      drivers/gpu/drm/mxsfb/
13042
13043 MYLEX DAC960 PCI RAID Controller
13044 M:      Hannes Reinecke <hare@kernel.org>
13045 L:      linux-scsi@vger.kernel.org
13046 S:      Supported
13047 F:      drivers/scsi/myrb.*
13048 F:      drivers/scsi/myrs.*
13049
13050 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
13051 M:      Chris Lee <christopher.lee@cspi.com>
13052 L:      netdev@vger.kernel.org
13053 S:      Supported
13054 W:      https://www.cspi.com/ethernet-products/support/downloads/
13055 F:      drivers/net/ethernet/myricom/myri10ge/
13056
13057 NAND FLASH SUBSYSTEM
13058 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13059 R:      Richard Weinberger <richard@nod.at>
13060 L:      linux-mtd@lists.infradead.org
13061 S:      Maintained
13062 W:      http://www.linux-mtd.infradead.org/
13063 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13064 C:      irc://irc.oftc.net/mtd
13065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
13066 F:      drivers/mtd/nand/
13067 F:      include/linux/mtd/*nand*.h
13068
13069 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
13070 M:      Daniel Mack <zonque@gmail.com>
13071 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13072 S:      Maintained
13073 W:      http://www.native-instruments.com
13074 F:      sound/usb/caiaq/
13075
13076 NATSEMI ETHERNET DRIVER (DP8381x)
13077 S:      Orphan
13078 F:      drivers/net/ethernet/natsemi/natsemi.c
13079
13080 NCR 5380 SCSI DRIVERS
13081 M:      Finn Thain <fthain@linux-m68k.org>
13082 M:      Michael Schmitz <schmitzmic@gmail.com>
13083 L:      linux-scsi@vger.kernel.org
13084 S:      Maintained
13085 F:      Documentation/scsi/g_NCR5380.rst
13086 F:      drivers/scsi/NCR5380.*
13087 F:      drivers/scsi/arm/cumana_1.c
13088 F:      drivers/scsi/arm/oak.c
13089 F:      drivers/scsi/atari_scsi.*
13090 F:      drivers/scsi/dmx3191d.c
13091 F:      drivers/scsi/g_NCR5380.*
13092 F:      drivers/scsi/mac_scsi.*
13093 F:      drivers/scsi/sun3_scsi.*
13094 F:      drivers/scsi/sun3_scsi_vme.c
13095
13096 NCSI LIBRARY
13097 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
13098 S:      Maintained
13099 F:      net/ncsi/
13100
13101 NCT6775 HARDWARE MONITOR DRIVER
13102 M:      Guenter Roeck <linux@roeck-us.net>
13103 L:      linux-hwmon@vger.kernel.org
13104 S:      Maintained
13105 F:      Documentation/hwmon/nct6775.rst
13106 F:      drivers/hwmon/nct6775.c
13107
13108 NETDEVSIM
13109 M:      Jakub Kicinski <kuba@kernel.org>
13110 S:      Maintained
13111 F:      drivers/net/netdevsim/*
13112
13113 NETEM NETWORK EMULATOR
13114 M:      Stephen Hemminger <stephen@networkplumber.org>
13115 L:      netdev@vger.kernel.org
13116 S:      Maintained
13117 F:      net/sched/sch_netem.c
13118
13119 NETERION 10GbE DRIVERS (s2io/vxge)
13120 M:      Jon Mason <jdmason@kudzu.us>
13121 L:      netdev@vger.kernel.org
13122 S:      Supported
13123 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13124 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
13125 F:      drivers/net/ethernet/neterion/
13126
13127 NETFILTER
13128 M:      Pablo Neira Ayuso <pablo@netfilter.org>
13129 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
13130 M:      Florian Westphal <fw@strlen.de>
13131 L:      netfilter-devel@vger.kernel.org
13132 L:      coreteam@netfilter.org
13133 S:      Maintained
13134 W:      http://www.netfilter.org/
13135 W:      http://www.iptables.org/
13136 W:      http://www.nftables.org/
13137 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13138 C:      irc://irc.libera.chat/netfilter
13139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
13140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
13141 F:      include/linux/netfilter*
13142 F:      include/linux/netfilter/
13143 F:      include/net/netfilter/
13144 F:      include/uapi/linux/netfilter*
13145 F:      include/uapi/linux/netfilter/
13146 F:      net/*/netfilter.c
13147 F:      net/*/netfilter/
13148 F:      net/bridge/br_netfilter*.c
13149 F:      net/netfilter/
13150
13151 NETROM NETWORK LAYER
13152 M:      Ralf Baechle <ralf@linux-mips.org>
13153 L:      linux-hams@vger.kernel.org
13154 S:      Maintained
13155 W:      http://www.linux-ax25.org/
13156 F:      include/net/netrom.h
13157 F:      include/uapi/linux/netrom.h
13158 F:      net/netrom/
13159
13160 NETRONIX EMBEDDED CONTROLLER
13161 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13162 S:      Maintained
13163 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13164 F:      drivers/mfd/ntxec.c
13165 F:      drivers/pwm/pwm-ntxec.c
13166 F:      drivers/rtc/rtc-ntxec.c
13167 F:      include/linux/mfd/ntxec.h
13168
13169 NETRONOME ETHERNET DRIVERS
13170 M:      Simon Horman <simon.horman@corigine.com>
13171 R:      Jakub Kicinski <kuba@kernel.org>
13172 L:      oss-drivers@corigine.com
13173 S:      Maintained
13174 F:      drivers/net/ethernet/netronome/
13175
13176 NETWORK BLOCK DEVICE (NBD)
13177 M:      Josef Bacik <josef@toxicpanda.com>
13178 L:      linux-block@vger.kernel.org
13179 L:      nbd@other.debian.org
13180 S:      Maintained
13181 F:      Documentation/admin-guide/blockdev/nbd.rst
13182 F:      drivers/block/nbd.c
13183 F:      include/trace/events/nbd.h
13184 F:      include/uapi/linux/nbd.h
13185
13186 NETWORK DROP MONITOR
13187 M:      Neil Horman <nhorman@tuxdriver.com>
13188 L:      netdev@vger.kernel.org
13189 S:      Maintained
13190 W:      https://fedorahosted.org/dropwatch/
13191 F:      include/uapi/linux/net_dropmon.h
13192 F:      net/core/drop_monitor.c
13193
13194 NETWORKING DRIVERS
13195 M:      "David S. Miller" <davem@davemloft.net>
13196 M:      Jakub Kicinski <kuba@kernel.org>
13197 L:      netdev@vger.kernel.org
13198 S:      Maintained
13199 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13202 F:      Documentation/devicetree/bindings/net/
13203 F:      drivers/connector/
13204 F:      drivers/net/
13205 F:      include/linux/etherdevice.h
13206 F:      include/linux/fcdevice.h
13207 F:      include/linux/fddidevice.h
13208 F:      include/linux/hippidevice.h
13209 F:      include/linux/if_*
13210 F:      include/linux/inetdevice.h
13211 F:      include/linux/netdevice.h
13212 F:      include/uapi/linux/if_*
13213 F:      include/uapi/linux/netdevice.h
13214
13215 NETWORKING DRIVERS (WIRELESS)
13216 M:      Kalle Valo <kvalo@codeaurora.org>
13217 L:      linux-wireless@vger.kernel.org
13218 S:      Maintained
13219 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
13221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
13222 F:      Documentation/devicetree/bindings/net/wireless/
13223 F:      drivers/net/wireless/
13224
13225 NETWORKING [DSA]
13226 M:      Andrew Lunn <andrew@lunn.ch>
13227 M:      Vivien Didelot <vivien.didelot@gmail.com>
13228 M:      Florian Fainelli <f.fainelli@gmail.com>
13229 M:      Vladimir Oltean <olteanv@gmail.com>
13230 S:      Maintained
13231 F:      Documentation/devicetree/bindings/net/dsa/
13232 F:      drivers/net/dsa/
13233 F:      include/linux/dsa/
13234 F:      include/linux/platform_data/dsa.h
13235 F:      include/net/dsa.h
13236 F:      net/dsa/
13237 F:      tools/testing/selftests/drivers/net/dsa/
13238
13239 NETWORKING [GENERAL]
13240 M:      "David S. Miller" <davem@davemloft.net>
13241 M:      Jakub Kicinski <kuba@kernel.org>
13242 L:      netdev@vger.kernel.org
13243 S:      Maintained
13244 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13245 B:      mailto:netdev@vger.kernel.org
13246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13248 F:      Documentation/networking/
13249 F:      include/linux/in.h
13250 F:      include/linux/net.h
13251 F:      include/linux/netdevice.h
13252 F:      include/net/
13253 F:      include/uapi/linux/in.h
13254 F:      include/uapi/linux/net.h
13255 F:      include/uapi/linux/net_namespace.h
13256 F:      include/uapi/linux/netdevice.h
13257 F:      lib/net_utils.c
13258 F:      lib/random32.c
13259 F:      net/
13260 F:      tools/testing/selftests/net/
13261
13262 NETWORKING [IPSEC]
13263 M:      Steffen Klassert <steffen.klassert@secunet.com>
13264 M:      Herbert Xu <herbert@gondor.apana.org.au>
13265 M:      "David S. Miller" <davem@davemloft.net>
13266 L:      netdev@vger.kernel.org
13267 S:      Maintained
13268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13270 F:      include/net/xfrm.h
13271 F:      include/uapi/linux/xfrm.h
13272 F:      net/ipv4/ah4.c
13273 F:      net/ipv4/esp4*
13274 F:      net/ipv4/ip_vti.c
13275 F:      net/ipv4/ipcomp.c
13276 F:      net/ipv4/xfrm*
13277 F:      net/ipv6/ah6.c
13278 F:      net/ipv6/esp6*
13279 F:      net/ipv6/ip6_vti.c
13280 F:      net/ipv6/ipcomp6.c
13281 F:      net/ipv6/xfrm*
13282 F:      net/key/
13283 F:      net/xfrm/
13284 F:      tools/testing/selftests/net/ipsec.c
13285
13286 NETWORKING [IPv4/IPv6]
13287 M:      "David S. Miller" <davem@davemloft.net>
13288 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13289 M:      David Ahern <dsahern@kernel.org>
13290 L:      netdev@vger.kernel.org
13291 S:      Maintained
13292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13293 F:      arch/x86/net/*
13294 F:      include/net/ip*
13295 F:      net/ipv4/
13296 F:      net/ipv6/
13297
13298 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13299 M:      Paul Moore <paul@paul-moore.com>
13300 L:      netdev@vger.kernel.org
13301 L:      linux-security-module@vger.kernel.org
13302 S:      Maintained
13303 W:      https://github.com/netlabel
13304 F:      Documentation/netlabel/
13305 F:      include/net/calipso.h
13306 F:      include/net/cipso_ipv4.h
13307 F:      include/net/netlabel.h
13308 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13309 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13310 F:      net/ipv4/cipso_ipv4.c
13311 F:      net/ipv6/calipso.c
13312 F:      net/netfilter/xt_CONNSECMARK.c
13313 F:      net/netfilter/xt_SECMARK.c
13314 F:      net/netlabel/
13315
13316 NETWORKING [MPTCP]
13317 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13318 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13319 L:      netdev@vger.kernel.org
13320 L:      mptcp@lists.linux.dev
13321 S:      Maintained
13322 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13323 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13324 F:      Documentation/networking/mptcp-sysctl.rst
13325 F:      include/net/mptcp.h
13326 F:      include/trace/events/mptcp.h
13327 F:      include/uapi/linux/mptcp.h
13328 F:      net/mptcp/
13329 F:      tools/testing/selftests/net/mptcp/
13330
13331 NETWORKING [TCP]
13332 M:      Eric Dumazet <edumazet@google.com>
13333 L:      netdev@vger.kernel.org
13334 S:      Maintained
13335 F:      include/linux/tcp.h
13336 F:      include/net/tcp.h
13337 F:      include/trace/events/tcp.h
13338 F:      include/uapi/linux/tcp.h
13339 F:      net/ipv4/syncookies.c
13340 F:      net/ipv4/tcp*.c
13341 F:      net/ipv6/syncookies.c
13342 F:      net/ipv6/tcp*.c
13343
13344 NETWORKING [TLS]
13345 M:      Boris Pismenny <borisp@nvidia.com>
13346 M:      John Fastabend <john.fastabend@gmail.com>
13347 M:      Daniel Borkmann <daniel@iogearbox.net>
13348 M:      Jakub Kicinski <kuba@kernel.org>
13349 L:      netdev@vger.kernel.org
13350 S:      Maintained
13351 F:      include/net/tls.h
13352 F:      include/uapi/linux/tls.h
13353 F:      net/tls/*
13354
13355 NETWORKING [WIRELESS]
13356 L:      linux-wireless@vger.kernel.org
13357 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13358
13359 NETXEN (1/10) GbE SUPPORT
13360 M:      Manish Chopra <manishc@marvell.com>
13361 M:      Rahul Verma <rahulv@marvell.com>
13362 M:      GR-Linux-NIC-Dev@marvell.com
13363 L:      netdev@vger.kernel.org
13364 S:      Supported
13365 F:      drivers/net/ethernet/qlogic/netxen/
13366
13367 NET_FAILOVER MODULE
13368 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13369 L:      netdev@vger.kernel.org
13370 S:      Supported
13371 F:      Documentation/networking/net_failover.rst
13372 F:      drivers/net/net_failover.c
13373 F:      include/net/net_failover.h
13374
13375 NEXTHOP
13376 M:      David Ahern <dsahern@kernel.org>
13377 L:      netdev@vger.kernel.org
13378 S:      Maintained
13379 F:      include/net/netns/nexthop.h
13380 F:      include/net/nexthop.h
13381 F:      include/uapi/linux/nexthop.h
13382 F:      net/ipv4/nexthop.c
13383
13384 NFC SUBSYSTEM
13385 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13386 L:      linux-nfc@lists.01.org (subscribers-only)
13387 L:      netdev@vger.kernel.org
13388 S:      Maintained
13389 F:      Documentation/devicetree/bindings/net/nfc/
13390 F:      drivers/nfc/
13391 F:      include/linux/platform_data/nfcmrvl.h
13392 F:      include/net/nfc/
13393 F:      include/uapi/linux/nfc.h
13394 F:      net/nfc/
13395
13396 NFC VIRTUAL NCI DEVICE DRIVER
13397 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13398 L:      netdev@vger.kernel.org
13399 L:      linux-nfc@lists.01.org (subscribers-only)
13400 S:      Supported
13401 F:      drivers/nfc/virtual_ncidev.c
13402 F:      tools/testing/selftests/nci/
13403
13404 NFS, SUNRPC, AND LOCKD CLIENTS
13405 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13406 M:      Anna Schumaker <anna.schumaker@netapp.com>
13407 L:      linux-nfs@vger.kernel.org
13408 S:      Maintained
13409 W:      http://client.linux-nfs.org
13410 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13411 F:      fs/lockd/
13412 F:      fs/nfs/
13413 F:      fs/nfs_common/
13414 F:      include/linux/lockd/
13415 F:      include/linux/nfs*
13416 F:      include/linux/sunrpc/
13417 F:      include/uapi/linux/nfs*
13418 F:      include/uapi/linux/sunrpc/
13419 F:      net/sunrpc/
13420 F:      Documentation/filesystems/nfs/
13421
13422 NILFS2 FILESYSTEM
13423 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13424 L:      linux-nilfs@vger.kernel.org
13425 S:      Supported
13426 W:      https://nilfs.sourceforge.io/
13427 W:      https://nilfs.osdn.jp/
13428 T:      git git://github.com/konis/nilfs2.git
13429 F:      Documentation/filesystems/nilfs2.rst
13430 F:      fs/nilfs2/
13431 F:      include/trace/events/nilfs2.h
13432 F:      include/uapi/linux/nilfs2_api.h
13433 F:      include/uapi/linux/nilfs2_ondisk.h
13434
13435 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13436 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13437 S:      Maintained
13438 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13439 F:      Documentation/scsi/NinjaSCSI.rst
13440 F:      drivers/scsi/pcmcia/nsp_*
13441
13442 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13443 M:      GOTO Masanori <gotom@debian.or.jp>
13444 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13445 S:      Maintained
13446 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13447 F:      Documentation/scsi/NinjaSCSI.rst
13448 F:      drivers/scsi/nsp32*
13449
13450 NINTENDO HID DRIVER
13451 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
13452 L:      linux-input@vger.kernel.org
13453 S:      Maintained
13454 F:      drivers/hid/hid-nintendo*
13455
13456 NIOS2 ARCHITECTURE
13457 M:      Dinh Nguyen <dinguyen@kernel.org>
13458 S:      Maintained
13459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13460 F:      arch/nios2/
13461
13462 NITRO ENCLAVES (NE)
13463 M:      Andra Paraschiv <andraprs@amazon.com>
13464 M:      Alexandru Vasile <lexnv@amazon.com>
13465 M:      Alexandru Ciobotaru <alcioa@amazon.com>
13466 L:      linux-kernel@vger.kernel.org
13467 S:      Supported
13468 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13469 F:      Documentation/virt/ne_overview.rst
13470 F:      drivers/virt/nitro_enclaves/
13471 F:      include/linux/nitro_enclaves.h
13472 F:      include/uapi/linux/nitro_enclaves.h
13473 F:      samples/nitro_enclaves/
13474
13475 NOHZ, DYNTICKS SUPPORT
13476 M:      Frederic Weisbecker <fweisbec@gmail.com>
13477 M:      Thomas Gleixner <tglx@linutronix.de>
13478 M:      Ingo Molnar <mingo@kernel.org>
13479 L:      linux-kernel@vger.kernel.org
13480 S:      Maintained
13481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13482 F:      include/linux/sched/nohz.h
13483 F:      include/linux/tick.h
13484 F:      kernel/time/tick*.*
13485
13486 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13487 M:      Pavel Machek <pavel@ucw.cz>
13488 M:      Sakari Ailus <sakari.ailus@iki.fi>
13489 L:      linux-media@vger.kernel.org
13490 S:      Maintained
13491 F:      drivers/media/i2c/ad5820.c
13492 F:      drivers/media/i2c/et8ek8
13493
13494 NOKIA N900 POWER SUPPLY DRIVERS
13495 R:      Pali Rohár <pali@kernel.org>
13496 F:      drivers/power/supply/bq2415x_charger.c
13497 F:      drivers/power/supply/bq27xxx_battery.c
13498 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13499 F:      drivers/power/supply/isp1704_charger.c
13500 F:      drivers/power/supply/rx51_battery.c
13501 F:      include/linux/power/bq2415x_charger.h
13502 F:      include/linux/power/bq27xxx_battery.h
13503
13504 NOLIBC HEADER FILE
13505 M:      Willy Tarreau <w@1wt.eu>
13506 S:      Maintained
13507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13508 F:      tools/include/nolibc/
13509
13510 NSDEPS
13511 M:      Matthias Maennich <maennich@google.com>
13512 S:      Maintained
13513 F:      Documentation/core-api/symbol-namespaces.rst
13514 F:      scripts/nsdeps
13515
13516 NTB AMD DRIVER
13517 M:      Sanjay R Mehta <sanju.mehta@amd.com>
13518 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13519 L:      linux-ntb@googlegroups.com
13520 S:      Supported
13521 F:      drivers/ntb/hw/amd/
13522
13523 NTB DRIVER CORE
13524 M:      Jon Mason <jdmason@kudzu.us>
13525 M:      Dave Jiang <dave.jiang@intel.com>
13526 M:      Allen Hubbe <allenbh@gmail.com>
13527 L:      linux-ntb@googlegroups.com
13528 S:      Supported
13529 W:      https://github.com/jonmason/ntb/wiki
13530 T:      git git://github.com/jonmason/ntb.git
13531 F:      drivers/net/ntb_netdev.c
13532 F:      drivers/ntb/
13533 F:      include/linux/ntb.h
13534 F:      include/linux/ntb_transport.h
13535 F:      tools/testing/selftests/ntb/
13536
13537 NTB IDT DRIVER
13538 M:      Serge Semin <fancer.lancer@gmail.com>
13539 L:      linux-ntb@googlegroups.com
13540 S:      Supported
13541 F:      drivers/ntb/hw/idt/
13542
13543 NTB INTEL DRIVER
13544 M:      Dave Jiang <dave.jiang@intel.com>
13545 L:      linux-ntb@googlegroups.com
13546 S:      Supported
13547 W:      https://github.com/davejiang/linux/wiki
13548 T:      git https://github.com/davejiang/linux.git
13549 F:      drivers/ntb/hw/intel/
13550
13551 NTFS FILESYSTEM
13552 M:      Anton Altaparmakov <anton@tuxera.com>
13553 L:      linux-ntfs-dev@lists.sourceforge.net
13554 S:      Supported
13555 W:      http://www.tuxera.com/
13556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13557 F:      Documentation/filesystems/ntfs.rst
13558 F:      fs/ntfs/
13559
13560 NTFS3 FILESYSTEM
13561 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
13562 L:      ntfs3@lists.linux.dev
13563 S:      Supported
13564 W:      http://www.paragon-software.com/
13565 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
13566 F:      Documentation/filesystems/ntfs3.rst
13567 F:      fs/ntfs3/
13568
13569 NUBUS SUBSYSTEM
13570 M:      Finn Thain <fthain@linux-m68k.org>
13571 L:      linux-m68k@lists.linux-m68k.org
13572 S:      Maintained
13573 F:      arch/*/include/asm/nubus.h
13574 F:      drivers/nubus/
13575 F:      include/linux/nubus.h
13576 F:      include/uapi/linux/nubus.h
13577
13578 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13579 M:      Antonino Daplas <adaplas@gmail.com>
13580 L:      linux-fbdev@vger.kernel.org
13581 S:      Maintained
13582 F:      drivers/video/fbdev/nvidia/
13583 F:      drivers/video/fbdev/riva/
13584
13585 NVIDIA WMI EC BACKLIGHT DRIVER
13586 M:      Daniel Dadap <ddadap@nvidia.com>
13587 L:      platform-driver-x86@vger.kernel.org
13588 S:      Supported
13589 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
13590
13591 NVM EXPRESS DRIVER
13592 M:      Keith Busch <kbusch@kernel.org>
13593 M:      Jens Axboe <axboe@fb.com>
13594 M:      Christoph Hellwig <hch@lst.de>
13595 M:      Sagi Grimberg <sagi@grimberg.me>
13596 L:      linux-nvme@lists.infradead.org
13597 S:      Supported
13598 W:      http://git.infradead.org/nvme.git
13599 T:      git://git.infradead.org/nvme.git
13600 F:      drivers/nvme/host/
13601 F:      include/linux/nvme.h
13602 F:      include/uapi/linux/nvme_ioctl.h
13603
13604 NVM EXPRESS FC TRANSPORT DRIVERS
13605 M:      James Smart <james.smart@broadcom.com>
13606 L:      linux-nvme@lists.infradead.org
13607 S:      Supported
13608 F:      drivers/nvme/host/fc.c
13609 F:      drivers/nvme/target/fc.c
13610 F:      drivers/nvme/target/fcloop.c
13611 F:      include/linux/nvme-fc-driver.h
13612 F:      include/linux/nvme-fc.h
13613
13614 NVM EXPRESS TARGET DRIVER
13615 M:      Christoph Hellwig <hch@lst.de>
13616 M:      Sagi Grimberg <sagi@grimberg.me>
13617 M:      Chaitanya Kulkarni <kch@nvidia.com>
13618 L:      linux-nvme@lists.infradead.org
13619 S:      Supported
13620 W:      http://git.infradead.org/nvme.git
13621 T:      git://git.infradead.org/nvme.git
13622 F:      drivers/nvme/target/
13623
13624 NVMEM FRAMEWORK
13625 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13626 S:      Maintained
13627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13628 F:      Documentation/ABI/stable/sysfs-bus-nvmem
13629 F:      Documentation/devicetree/bindings/nvmem/
13630 F:      drivers/nvmem/
13631 F:      include/linux/nvmem-consumer.h
13632 F:      include/linux/nvmem-provider.h
13633
13634 NXP C45 TJA11XX PHY DRIVER
13635 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13636 L:      netdev@vger.kernel.org
13637 S:      Maintained
13638 F:      drivers/net/phy/nxp-c45-tja11xx.c
13639
13640 NXP FSPI DRIVER
13641 M:      Ashish Kumar <ashish.kumar@nxp.com>
13642 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
13643 L:      linux-spi@vger.kernel.org
13644 S:      Maintained
13645 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
13646 F:      drivers/spi/spi-nxp-fspi.c
13647
13648 NXP FXAS21002C DRIVER
13649 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13650 L:      linux-iio@vger.kernel.org
13651 S:      Maintained
13652 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13653 F:      drivers/iio/gyro/fxas21002c.h
13654 F:      drivers/iio/gyro/fxas21002c_core.c
13655 F:      drivers/iio/gyro/fxas21002c_i2c.c
13656 F:      drivers/iio/gyro/fxas21002c_spi.c
13657
13658 NXP i.MX CLOCK DRIVERS
13659 M:      Abel Vesa <abel.vesa@nxp.com>
13660 L:      linux-clk@vger.kernel.org
13661 L:      linux-imx@nxp.com
13662 S:      Maintained
13663 F:      drivers/clk/imx/
13664
13665 NXP i.MX 8MQ DCSS DRIVER
13666 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13667 R:      Lucas Stach <l.stach@pengutronix.de>
13668 L:      dri-devel@lists.freedesktop.org
13669 S:      Maintained
13670 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13671 F:      drivers/gpu/drm/imx/dcss/
13672
13673 NXP i.MX 8QXP ADC DRIVER
13674 M:      Cai Huoqing <caihuoqing@baidu.com>
13675 L:      linux-iio@vger.kernel.org
13676 S:      Supported
13677 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
13678 F:      drivers/iio/adc/imx8qxp-adc.c
13679
13680 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13681 M:      Jagan Teki <jagan@amarulasolutions.com>
13682 S:      Maintained
13683 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13684 F:      drivers/regulator/pf8x00-regulator.c
13685
13686 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13687 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13688 L:      linux-kernel@vger.kernel.org
13689 S:      Maintained
13690 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13691 F:      drivers/extcon/extcon-ptn5150.c
13692
13693 NXP SGTL5000 DRIVER
13694 M:      Fabio Estevam <festevam@gmail.com>
13695 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13696 S:      Maintained
13697 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
13698 F:      sound/soc/codecs/sgtl5000*
13699
13700 NXP SJA1105 ETHERNET SWITCH DRIVER
13701 M:      Vladimir Oltean <olteanv@gmail.com>
13702 L:      linux-kernel@vger.kernel.org
13703 S:      Maintained
13704 F:      drivers/net/dsa/sja1105
13705 F:      drivers/net/pcs/pcs-xpcs-nxp.c
13706
13707 NXP TDA998X DRM DRIVER
13708 M:      Russell King <linux@armlinux.org.uk>
13709 S:      Maintained
13710 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13711 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13712 F:      drivers/gpu/drm/i2c/tda998x_drv.c
13713 F:      include/drm/i2c/tda998x.h
13714 F:      include/dt-bindings/display/tda998x.h
13715 K:      "nxp,tda998x"
13716
13717 NXP TFA9879 DRIVER
13718 M:      Peter Rosin <peda@axentia.se>
13719 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13720 S:      Maintained
13721 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
13722 F:      sound/soc/codecs/tfa9879*
13723
13724 NXP/Goodix TFA989X (TFA1) DRIVER
13725 M:      Stephan Gerhold <stephan@gerhold.net>
13726 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13727 S:      Maintained
13728 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13729 F:      sound/soc/codecs/tfa989x.c
13730
13731 NXP-NCI NFC DRIVER
13732 R:      Charles Gorand <charles.gorand@effinnov.com>
13733 L:      linux-nfc@lists.01.org (subscribers-only)
13734 S:      Supported
13735 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
13736 F:      drivers/nfc/nxp-nci
13737
13738 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13739 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
13740 R:      NXP Linux Team <linux-imx@nxp.com>
13741 L:      linux-media@vger.kernel.org
13742 S:      Maintained
13743 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
13744 F:      drivers/media/platform/imx-jpeg
13745
13746 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13747 M:      Jonas Malaco <jonas@protocubo.io>
13748 L:      linux-hwmon@vger.kernel.org
13749 S:      Maintained
13750 F:      Documentation/hwmon/nzxt-kraken2.rst
13751 F:      drivers/hwmon/nzxt-kraken2.c
13752
13753 OBJAGG
13754 M:      Jiri Pirko <jiri@nvidia.com>
13755 L:      netdev@vger.kernel.org
13756 S:      Supported
13757 F:      include/linux/objagg.h
13758 F:      lib/objagg.c
13759 F:      lib/test_objagg.c
13760
13761 OBJTOOL
13762 M:      Josh Poimboeuf <jpoimboe@redhat.com>
13763 M:      Peter Zijlstra <peterz@infradead.org>
13764 S:      Supported
13765 F:      tools/objtool/
13766 F:      include/linux/objtool.h
13767
13768 OCELOT ETHERNET SWITCH DRIVER
13769 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
13770 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
13771 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13772 M:      UNGLinuxDriver@microchip.com
13773 L:      netdev@vger.kernel.org
13774 S:      Supported
13775 F:      drivers/net/dsa/ocelot/*
13776 F:      drivers/net/ethernet/mscc/
13777 F:      include/soc/mscc/ocelot*
13778 F:      net/dsa/tag_ocelot.c
13779 F:      net/dsa/tag_ocelot_8021q.c
13780 F:      tools/testing/selftests/drivers/net/ocelot/*
13781
13782 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13783 M:      Frederic Barrat <fbarrat@linux.ibm.com>
13784 M:      Andrew Donnellan <ajd@linux.ibm.com>
13785 L:      linuxppc-dev@lists.ozlabs.org
13786 S:      Supported
13787 F:      Documentation/userspace-api/accelerators/ocxl.rst
13788 F:      arch/powerpc/include/asm/pnv-ocxl.h
13789 F:      arch/powerpc/platforms/powernv/ocxl.c
13790 F:      drivers/misc/ocxl/
13791 F:      include/misc/ocxl*
13792 F:      include/uapi/misc/ocxl.h
13793
13794 OMAP AUDIO SUPPORT
13795 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
13796 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
13797 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13798 L:      linux-omap@vger.kernel.org
13799 S:      Maintained
13800 F:      sound/soc/ti/n810.c
13801 F:      sound/soc/ti/omap*
13802 F:      sound/soc/ti/rx51.c
13803 F:      sound/soc/ti/sdma-pcm.*
13804
13805 OMAP CLOCK FRAMEWORK SUPPORT
13806 M:      Paul Walmsley <paul@pwsan.com>
13807 L:      linux-omap@vger.kernel.org
13808 S:      Maintained
13809 F:      arch/arm/*omap*/*clock*
13810
13811 OMAP DEVICE TREE SUPPORT
13812 M:      Benoît Cousson <bcousson@baylibre.com>
13813 M:      Tony Lindgren <tony@atomide.com>
13814 L:      linux-omap@vger.kernel.org
13815 L:      devicetree@vger.kernel.org
13816 S:      Maintained
13817 F:      arch/arm/boot/dts/*am3*
13818 F:      arch/arm/boot/dts/*am4*
13819 F:      arch/arm/boot/dts/*am5*
13820 F:      arch/arm/boot/dts/*dra7*
13821 F:      arch/arm/boot/dts/*omap*
13822 F:      arch/arm/boot/dts/logicpd-som-lv*
13823 F:      arch/arm/boot/dts/logicpd-torpedo*
13824
13825 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13826 L:      linux-omap@vger.kernel.org
13827 L:      linux-fbdev@vger.kernel.org
13828 S:      Orphan
13829 F:      Documentation/arm/omap/dss.rst
13830 F:      drivers/video/fbdev/omap2/
13831
13832 OMAP FRAMEBUFFER SUPPORT
13833 L:      linux-fbdev@vger.kernel.org
13834 L:      linux-omap@vger.kernel.org
13835 S:      Orphan
13836 F:      drivers/video/fbdev/omap/
13837
13838 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13839 M:      Roger Quadros <rogerq@kernel.org>
13840 M:      Tony Lindgren <tony@atomide.com>
13841 L:      linux-omap@vger.kernel.org
13842 S:      Maintained
13843 F:      arch/arm/mach-omap2/*gpmc*
13844 F:      drivers/memory/omap-gpmc.c
13845
13846 OMAP GPIO DRIVER
13847 M:      Grygorii Strashko <grygorii.strashko@ti.com>
13848 M:      Santosh Shilimkar <ssantosh@kernel.org>
13849 M:      Kevin Hilman <khilman@kernel.org>
13850 L:      linux-omap@vger.kernel.org
13851 S:      Maintained
13852 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
13853 F:      drivers/gpio/gpio-omap.c
13854
13855 OMAP HARDWARE SPINLOCK SUPPORT
13856 M:      Ohad Ben-Cohen <ohad@wizery.com>
13857 L:      linux-omap@vger.kernel.org
13858 S:      Maintained
13859 F:      drivers/hwspinlock/omap_hwspinlock.c
13860
13861 OMAP HS MMC SUPPORT
13862 L:      linux-mmc@vger.kernel.org
13863 L:      linux-omap@vger.kernel.org
13864 S:      Orphan
13865 F:      drivers/mmc/host/omap_hsmmc.c
13866
13867 OMAP HWMOD DATA
13868 M:      Paul Walmsley <paul@pwsan.com>
13869 L:      linux-omap@vger.kernel.org
13870 S:      Maintained
13871 F:      arch/arm/mach-omap2/omap_hwmod*data*
13872
13873 OMAP HWMOD SUPPORT
13874 M:      Benoît Cousson <bcousson@baylibre.com>
13875 M:      Paul Walmsley <paul@pwsan.com>
13876 L:      linux-omap@vger.kernel.org
13877 S:      Maintained
13878 F:      arch/arm/mach-omap2/omap_hwmod.*
13879
13880 OMAP I2C DRIVER
13881 M:      Vignesh R <vigneshr@ti.com>
13882 L:      linux-omap@vger.kernel.org
13883 L:      linux-i2c@vger.kernel.org
13884 S:      Maintained
13885 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
13886 F:      drivers/i2c/busses/i2c-omap.c
13887
13888 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13889 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13890 L:      linux-media@vger.kernel.org
13891 S:      Maintained
13892 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
13893 F:      drivers/media/platform/omap3isp/
13894 F:      drivers/staging/media/omap4iss/
13895
13896 OMAP MMC SUPPORT
13897 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13898 L:      linux-omap@vger.kernel.org
13899 S:      Odd Fixes
13900 F:      drivers/mmc/host/omap.c
13901
13902 OMAP POWER MANAGEMENT SUPPORT
13903 M:      Kevin Hilman <khilman@kernel.org>
13904 L:      linux-omap@vger.kernel.org
13905 S:      Maintained
13906 F:      arch/arm/*omap*/*pm*
13907 F:      drivers/cpufreq/omap-cpufreq.c
13908
13909 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13910 M:      Rajendra Nayak <rnayak@codeaurora.org>
13911 M:      Paul Walmsley <paul@pwsan.com>
13912 L:      linux-omap@vger.kernel.org
13913 S:      Maintained
13914 F:      arch/arm/mach-omap2/prm*
13915
13916 OMAP RANDOM NUMBER GENERATOR SUPPORT
13917 M:      Deepak Saxena <dsaxena@plexity.net>
13918 S:      Maintained
13919 F:      drivers/char/hw_random/omap-rng.c
13920
13921 OMAP USB SUPPORT
13922 L:      linux-usb@vger.kernel.org
13923 L:      linux-omap@vger.kernel.org
13924 S:      Orphan
13925 F:      arch/arm/*omap*/usb*
13926 F:      drivers/usb/*/*omap*
13927
13928 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13929 M:      Mark Jackson <mpfj@newflow.co.uk>
13930 L:      linux-omap@vger.kernel.org
13931 S:      Maintained
13932 F:      arch/arm/boot/dts/am335x-nano.dts
13933
13934 OMAP1 SUPPORT
13935 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13936 M:      Tony Lindgren <tony@atomide.com>
13937 L:      linux-omap@vger.kernel.org
13938 S:      Maintained
13939 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13941 F:      arch/arm/configs/omap1_defconfig
13942 F:      arch/arm/mach-omap1/
13943 F:      arch/arm/plat-omap/
13944 F:      drivers/i2c/busses/i2c-omap.c
13945 F:      include/linux/platform_data/ams-delta-fiq.h
13946 F:      include/linux/platform_data/i2c-omap.h
13947
13948 OMAP2+ SUPPORT
13949 M:      Tony Lindgren <tony@atomide.com>
13950 L:      linux-omap@vger.kernel.org
13951 S:      Maintained
13952 W:      http://www.muru.com/linux/omap/
13953 W:      http://linux.omap.com/
13954 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13956 F:      arch/arm/configs/omap2plus_defconfig
13957 F:      arch/arm/mach-omap2/
13958 F:      arch/arm/plat-omap/
13959 F:      drivers/bus/ti-sysc.c
13960 F:      drivers/i2c/busses/i2c-omap.c
13961 F:      drivers/irqchip/irq-omap-intc.c
13962 F:      drivers/mfd/*omap*.c
13963 F:      drivers/mfd/menelaus.c
13964 F:      drivers/mfd/palmas.c
13965 F:      drivers/mfd/tps65217.c
13966 F:      drivers/mfd/tps65218.c
13967 F:      drivers/mfd/tps65910.c
13968 F:      drivers/mfd/twl-core.[ch]
13969 F:      drivers/mfd/twl4030*.c
13970 F:      drivers/mfd/twl6030*.c
13971 F:      drivers/mfd/twl6040*.c
13972 F:      drivers/regulator/palmas-regulator*.c
13973 F:      drivers/regulator/pbias-regulator.c
13974 F:      drivers/regulator/tps65217-regulator.c
13975 F:      drivers/regulator/tps65218-regulator.c
13976 F:      drivers/regulator/tps65910-regulator.c
13977 F:      drivers/regulator/twl-regulator.c
13978 F:      drivers/regulator/twl6030-regulator.c
13979 F:      include/linux/platform_data/i2c-omap.h
13980 F:      include/linux/platform_data/ti-sysc.h
13981
13982 OMFS FILESYSTEM
13983 M:      Bob Copeland <me@bobcopeland.com>
13984 L:      linux-karma-devel@lists.sourceforge.net
13985 S:      Maintained
13986 F:      Documentation/filesystems/omfs.rst
13987 F:      fs/omfs/
13988
13989 OMNIKEY CARDMAN 4000 DRIVER
13990 M:      Harald Welte <laforge@gnumonks.org>
13991 S:      Maintained
13992 F:      drivers/char/pcmcia/cm4000_cs.c
13993 F:      include/linux/cm4000_cs.h
13994 F:      include/uapi/linux/cm4000_cs.h
13995
13996 OMNIKEY CARDMAN 4040 DRIVER
13997 M:      Harald Welte <laforge@gnumonks.org>
13998 S:      Maintained
13999 F:      drivers/char/pcmcia/cm4040_cs.*
14000
14001 OMNIVISION OV02A10 SENSOR DRIVER
14002 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14003 L:      linux-media@vger.kernel.org
14004 S:      Maintained
14005 T:      git git://linuxtv.org/media_tree.git
14006 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
14007 F:      drivers/media/i2c/ov02a10.c
14008
14009 OMNIVISION OV13858 SENSOR DRIVER
14010 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14011 L:      linux-media@vger.kernel.org
14012 S:      Maintained
14013 T:      git git://linuxtv.org/media_tree.git
14014 F:      drivers/media/i2c/ov13858.c
14015
14016 OMNIVISION OV13B10 SENSOR DRIVER
14017 M:      Arec Kao <arec.kao@intel.com>
14018 L:      linux-media@vger.kernel.org
14019 S:      Maintained
14020 T:      git git://linuxtv.org/media_tree.git
14021 F:      drivers/media/i2c/ov13b10.c
14022
14023 OMNIVISION OV2680 SENSOR DRIVER
14024 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14025 L:      linux-media@vger.kernel.org
14026 S:      Maintained
14027 T:      git git://linuxtv.org/media_tree.git
14028 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
14029 F:      drivers/media/i2c/ov2680.c
14030
14031 OMNIVISION OV2685 SENSOR DRIVER
14032 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14033 L:      linux-media@vger.kernel.org
14034 S:      Maintained
14035 T:      git git://linuxtv.org/media_tree.git
14036 F:      drivers/media/i2c/ov2685.c
14037
14038 OMNIVISION OV2740 SENSOR DRIVER
14039 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14040 R:      Shawn Tu <shawnx.tu@intel.com>
14041 R:      Bingbu Cao <bingbu.cao@intel.com>
14042 L:      linux-media@vger.kernel.org
14043 S:      Maintained
14044 T:      git git://linuxtv.org/media_tree.git
14045 F:      drivers/media/i2c/ov2740.c
14046
14047 OMNIVISION OV5640 SENSOR DRIVER
14048 M:      Steve Longerbeam <slongerbeam@gmail.com>
14049 L:      linux-media@vger.kernel.org
14050 S:      Maintained
14051 T:      git git://linuxtv.org/media_tree.git
14052 F:      drivers/media/i2c/ov5640.c
14053
14054 OMNIVISION OV5647 SENSOR DRIVER
14055 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
14056 M:      Jacopo Mondi <jacopo@jmondi.org>
14057 L:      linux-media@vger.kernel.org
14058 S:      Maintained
14059 T:      git git://linuxtv.org/media_tree.git
14060 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
14061 F:      drivers/media/i2c/ov5647.c
14062
14063 OMNIVISION OV5670 SENSOR DRIVER
14064 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
14065 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
14066 L:      linux-media@vger.kernel.org
14067 S:      Maintained
14068 T:      git git://linuxtv.org/media_tree.git
14069 F:      drivers/media/i2c/ov5670.c
14070
14071 OMNIVISION OV5675 SENSOR DRIVER
14072 M:      Shawn Tu <shawnx.tu@intel.com>
14073 L:      linux-media@vger.kernel.org
14074 S:      Maintained
14075 T:      git git://linuxtv.org/media_tree.git
14076 F:      drivers/media/i2c/ov5675.c
14077
14078 OMNIVISION OV5695 SENSOR DRIVER
14079 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14080 L:      linux-media@vger.kernel.org
14081 S:      Maintained
14082 T:      git git://linuxtv.org/media_tree.git
14083 F:      drivers/media/i2c/ov5695.c
14084
14085 OMNIVISION OV7670 SENSOR DRIVER
14086 L:      linux-media@vger.kernel.org
14087 S:      Orphan
14088 T:      git git://linuxtv.org/media_tree.git
14089 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
14090 F:      drivers/media/i2c/ov7670.c
14091
14092 OMNIVISION OV772x SENSOR DRIVER
14093 M:      Jacopo Mondi <jacopo@jmondi.org>
14094 L:      linux-media@vger.kernel.org
14095 S:      Odd fixes
14096 T:      git git://linuxtv.org/media_tree.git
14097 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
14098 F:      drivers/media/i2c/ov772x.c
14099 F:      include/media/i2c/ov772x.h
14100
14101 OMNIVISION OV7740 SENSOR DRIVER
14102 M:      Wenyou Yang <wenyou.yang@microchip.com>
14103 L:      linux-media@vger.kernel.org
14104 S:      Maintained
14105 T:      git git://linuxtv.org/media_tree.git
14106 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
14107 F:      drivers/media/i2c/ov7740.c
14108
14109 OMNIVISION OV8856 SENSOR DRIVER
14110 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14111 L:      linux-media@vger.kernel.org
14112 S:      Maintained
14113 T:      git git://linuxtv.org/media_tree.git
14114 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
14115 F:      drivers/media/i2c/ov8856.c
14116
14117 OMNIVISION OV9282 SENSOR DRIVER
14118 M:      Paul J. Murphy <paul.j.murphy@intel.com>
14119 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
14120 L:      linux-media@vger.kernel.org
14121 S:      Maintained
14122 T:      git git://linuxtv.org/media_tree.git
14123 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
14124 F:      drivers/media/i2c/ov9282.c
14125
14126 OMNIVISION OV9640 SENSOR DRIVER
14127 M:      Petr Cvek <petrcvekcz@gmail.com>
14128 L:      linux-media@vger.kernel.org
14129 S:      Maintained
14130 F:      drivers/media/i2c/ov9640.*
14131
14132 OMNIVISION OV9650 SENSOR DRIVER
14133 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14134 R:      Akinobu Mita <akinobu.mita@gmail.com>
14135 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14136 L:      linux-media@vger.kernel.org
14137 S:      Maintained
14138 T:      git git://linuxtv.org/media_tree.git
14139 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
14140 F:      drivers/media/i2c/ov9650.c
14141
14142 OMNIVISION OV9734 SENSOR DRIVER
14143 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14144 R:      Bingbu Cao <bingbu.cao@intel.com>
14145 L:      linux-media@vger.kernel.org
14146 S:      Maintained
14147 T:      git git://linuxtv.org/media_tree.git
14148 F:      drivers/media/i2c/ov9734.c
14149
14150 ONENAND FLASH DRIVER
14151 M:      Kyungmin Park <kyungmin.park@samsung.com>
14152 L:      linux-mtd@lists.infradead.org
14153 S:      Maintained
14154 F:      drivers/mtd/nand/onenand/
14155 F:      include/linux/mtd/onenand*.h
14156
14157 ONION OMEGA2+ BOARD
14158 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14159 L:      linux-mips@vger.kernel.org
14160 S:      Maintained
14161 F:      arch/mips/boot/dts/ralink/omega2p.dts
14162
14163 OP-TEE DRIVER
14164 M:      Jens Wiklander <jens.wiklander@linaro.org>
14165 L:      op-tee@lists.trustedfirmware.org
14166 S:      Maintained
14167 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
14168 F:      drivers/tee/optee/
14169
14170 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14171 M:      Sumit Garg <sumit.garg@linaro.org>
14172 L:      op-tee@lists.trustedfirmware.org
14173 S:      Maintained
14174 F:      drivers/char/hw_random/optee-rng.c
14175
14176 OPA-VNIC DRIVER
14177 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14178 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14179 L:      linux-rdma@vger.kernel.org
14180 S:      Supported
14181 F:      drivers/infiniband/ulp/opa_vnic
14182
14183 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14184 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14185 M:      Frank Rowand <frowand.list@gmail.com>
14186 L:      devicetree@vger.kernel.org
14187 S:      Maintained
14188 F:      Documentation/devicetree/dynamic-resolution-notes.rst
14189 F:      Documentation/devicetree/overlay-notes.rst
14190 F:      drivers/of/overlay.c
14191 F:      drivers/of/resolver.c
14192 K:      of_overlay_notifier_
14193
14194 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14195 M:      Rob Herring <robh+dt@kernel.org>
14196 M:      Frank Rowand <frowand.list@gmail.com>
14197 L:      devicetree@vger.kernel.org
14198 S:      Maintained
14199 W:      http://www.devicetree.org/
14200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14201 F:      Documentation/ABI/testing/sysfs-firmware-ofw
14202 F:      drivers/of/
14203 F:      include/linux/of*.h
14204 F:      scripts/dtc/
14205
14206 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14207 M:      Rob Herring <robh+dt@kernel.org>
14208 L:      devicetree@vger.kernel.org
14209 S:      Maintained
14210 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14212 F:      Documentation/devicetree/
14213 F:      arch/*/boot/dts/
14214 F:      include/dt-bindings/
14215
14216 OPENCOMPUTE PTP CLOCK DRIVER
14217 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
14218 L:      netdev@vger.kernel.org
14219 S:      Maintained
14220 F:      drivers/ptp/ptp_ocp.c
14221
14222 OPENCORES I2C BUS DRIVER
14223 M:      Peter Korsgaard <peter@korsgaard.com>
14224 M:      Andrew Lunn <andrew@lunn.ch>
14225 L:      linux-i2c@vger.kernel.org
14226 S:      Maintained
14227 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14228 F:      Documentation/i2c/busses/i2c-ocores.rst
14229 F:      drivers/i2c/busses/i2c-ocores.c
14230 F:      include/linux/platform_data/i2c-ocores.h
14231
14232 OPENRISC ARCHITECTURE
14233 M:      Jonas Bonn <jonas@southpole.se>
14234 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14235 M:      Stafford Horne <shorne@gmail.com>
14236 L:      openrisc@lists.librecores.org
14237 S:      Maintained
14238 W:      http://openrisc.io
14239 T:      git git://github.com/openrisc/linux.git
14240 F:      Documentation/devicetree/bindings/openrisc/
14241 F:      Documentation/openrisc/
14242 F:      arch/openrisc/
14243 F:      drivers/irqchip/irq-ompic.c
14244 F:      drivers/irqchip/irq-or1k-*
14245
14246 OPENVSWITCH
14247 M:      Pravin B Shelar <pshelar@ovn.org>
14248 L:      netdev@vger.kernel.org
14249 L:      dev@openvswitch.org
14250 S:      Maintained
14251 W:      http://openvswitch.org
14252 F:      include/uapi/linux/openvswitch.h
14253 F:      net/openvswitch/
14254
14255 OPERATING PERFORMANCE POINTS (OPP)
14256 M:      Viresh Kumar <vireshk@kernel.org>
14257 M:      Nishanth Menon <nm@ti.com>
14258 M:      Stephen Boyd <sboyd@kernel.org>
14259 L:      linux-pm@vger.kernel.org
14260 S:      Maintained
14261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14262 F:      Documentation/devicetree/bindings/opp/
14263 F:      Documentation/power/opp.rst
14264 F:      drivers/opp/
14265 F:      include/linux/pm_opp.h
14266
14267 OPL4 DRIVER
14268 M:      Clemens Ladisch <clemens@ladisch.de>
14269 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14270 S:      Maintained
14271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14272 F:      sound/drivers/opl4/
14273
14274 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14275 M:      Mark Fasheh <mark@fasheh.com>
14276 M:      Joel Becker <jlbec@evilplan.org>
14277 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
14278 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14279 S:      Supported
14280 W:      http://ocfs2.wiki.kernel.org
14281 F:      Documentation/filesystems/dlmfs.rst
14282 F:      Documentation/filesystems/ocfs2.rst
14283 F:      fs/ocfs2/
14284
14285 ORANGEFS FILESYSTEM
14286 M:      Mike Marshall <hubcap@omnibond.com>
14287 R:      Martin Brandenburg <martin@omnibond.com>
14288 L:      devel@lists.orangefs.org
14289 S:      Supported
14290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14291 F:      Documentation/filesystems/orangefs.rst
14292 F:      fs/orangefs/
14293
14294 ORINOCO DRIVER
14295 L:      linux-wireless@vger.kernel.org
14296 S:      Orphan
14297 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14298 W:      http://www.nongnu.org/orinoco/
14299 F:      drivers/net/wireless/intersil/orinoco/
14300
14301 OV2659 OMNIVISION SENSOR DRIVER
14302 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14303 L:      linux-media@vger.kernel.org
14304 S:      Maintained
14305 W:      https://linuxtv.org
14306 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14307 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14308 F:      drivers/media/i2c/ov2659.c
14309 F:      include/media/i2c/ov2659.h
14310
14311 OVERLAY FILESYSTEM
14312 M:      Miklos Szeredi <miklos@szeredi.hu>
14313 L:      linux-unionfs@vger.kernel.org
14314 S:      Supported
14315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14316 F:      Documentation/filesystems/overlayfs.rst
14317 F:      fs/overlayfs/
14318
14319 P54 WIRELESS DRIVER
14320 M:      Christian Lamparter <chunkeey@googlemail.com>
14321 L:      linux-wireless@vger.kernel.org
14322 S:      Maintained
14323 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14324 F:      drivers/net/wireless/intersil/p54/
14325
14326 PACKING
14327 M:      Vladimir Oltean <olteanv@gmail.com>
14328 L:      netdev@vger.kernel.org
14329 S:      Supported
14330 F:      Documentation/core-api/packing.rst
14331 F:      include/linux/packing.h
14332 F:      lib/packing.c
14333
14334 PADATA PARALLEL EXECUTION MECHANISM
14335 M:      Steffen Klassert <steffen.klassert@secunet.com>
14336 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14337 L:      linux-crypto@vger.kernel.org
14338 L:      linux-kernel@vger.kernel.org
14339 S:      Maintained
14340 F:      Documentation/core-api/padata.rst
14341 F:      include/linux/padata.h
14342 F:      kernel/padata.c
14343
14344 PAGE POOL
14345 M:      Jesper Dangaard Brouer <hawk@kernel.org>
14346 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
14347 L:      netdev@vger.kernel.org
14348 S:      Supported
14349 F:      Documentation/networking/page_pool.rst
14350 F:      include/net/page_pool.h
14351 F:      include/trace/events/page_pool.h
14352 F:      net/core/page_pool.c
14353
14354 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14355 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
14356 L:      platform-driver-x86@vger.kernel.org
14357 S:      Maintained
14358 F:      drivers/platform/x86/panasonic-laptop.c
14359
14360 PARALLAX PING IIO SENSOR DRIVER
14361 M:      Andreas Klinger <ak@it-klinger.de>
14362 L:      linux-iio@vger.kernel.org
14363 S:      Maintained
14364 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14365 F:      drivers/iio/proximity/ping.c
14366
14367 PARALLEL LCD/KEYPAD PANEL DRIVER
14368 M:      Willy Tarreau <willy@haproxy.com>
14369 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14370 S:      Odd Fixes
14371 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14372 F:      drivers/auxdisplay/panel.c
14373
14374 PARALLEL PORT SUBSYSTEM
14375 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14376 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14377 L:      linux-parport@lists.infradead.org (subscribers-only)
14378 S:      Maintained
14379 F:      Documentation/driver-api/parport*.rst
14380 F:      drivers/char/ppdev.c
14381 F:      drivers/parport/
14382 F:      include/linux/parport*.h
14383 F:      include/uapi/linux/ppdev.h
14384
14385 PARAVIRT_OPS INTERFACE
14386 M:      Juergen Gross <jgross@suse.com>
14387 M:      Deep Shah <sdeep@vmware.com>
14388 M:      "VMware, Inc." <pv-drivers@vmware.com>
14389 L:      virtualization@lists.linux-foundation.org
14390 S:      Supported
14391 F:      Documentation/virt/paravirt_ops.rst
14392 F:      arch/*/include/asm/paravirt*.h
14393 F:      arch/*/kernel/paravirt*
14394 F:      include/linux/hypervisor.h
14395
14396 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14397 M:      Tim Waugh <tim@cyberelk.net>
14398 L:      linux-parport@lists.infradead.org (subscribers-only)
14399 S:      Maintained
14400 F:      Documentation/admin-guide/blockdev/paride.rst
14401 F:      drivers/block/paride/
14402
14403 PARISC ARCHITECTURE
14404 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14405 M:      Helge Deller <deller@gmx.de>
14406 L:      linux-parisc@vger.kernel.org
14407 S:      Maintained
14408 W:      https://parisc.wiki.kernel.org
14409 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14412 F:      Documentation/parisc/
14413 F:      arch/parisc/
14414 F:      drivers/char/agp/parisc-agp.c
14415 F:      drivers/input/misc/hp_sdc_rtc.c
14416 F:      drivers/input/serio/gscps2.c
14417 F:      drivers/input/serio/hp_sdc*
14418 F:      drivers/parisc/
14419 F:      drivers/parport/parport_gsc.*
14420 F:      drivers/tty/serial/8250/8250_gsc.c
14421 F:      drivers/video/console/sti*
14422 F:      drivers/video/fbdev/sti*
14423 F:      drivers/video/logo/logo_parisc*
14424 F:      include/linux/hp_sdc.h
14425
14426 PARMAN
14427 M:      Jiri Pirko <jiri@nvidia.com>
14428 L:      netdev@vger.kernel.org
14429 S:      Supported
14430 F:      include/linux/parman.h
14431 F:      lib/parman.c
14432 F:      lib/test_parman.c
14433
14434 PC ENGINES APU BOARD DRIVER
14435 M:      Enrico Weigelt, metux IT consult <info@metux.net>
14436 S:      Maintained
14437 F:      drivers/platform/x86/pcengines-apuv2.c
14438
14439 PC87360 HARDWARE MONITORING DRIVER
14440 M:      Jim Cromie <jim.cromie@gmail.com>
14441 L:      linux-hwmon@vger.kernel.org
14442 S:      Maintained
14443 F:      Documentation/hwmon/pc87360.rst
14444 F:      drivers/hwmon/pc87360.c
14445
14446 PC8736x GPIO DRIVER
14447 M:      Jim Cromie <jim.cromie@gmail.com>
14448 S:      Maintained
14449 F:      drivers/char/pc8736x_gpio.c
14450
14451 PC87427 HARDWARE MONITORING DRIVER
14452 M:      Jean Delvare <jdelvare@suse.com>
14453 L:      linux-hwmon@vger.kernel.org
14454 S:      Maintained
14455 F:      Documentation/hwmon/pc87427.rst
14456 F:      drivers/hwmon/pc87427.c
14457
14458 PCA9532 LED DRIVER
14459 M:      Riku Voipio <riku.voipio@iki.fi>
14460 S:      Maintained
14461 F:      drivers/leds/leds-pca9532.c
14462 F:      include/linux/leds-pca9532.h
14463
14464 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14465 M:      Guenter Roeck <linux@roeck-us.net>
14466 L:      linux-i2c@vger.kernel.org
14467 S:      Maintained
14468 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14469
14470 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14471 M:      Khalid Aziz <khalid@gonehiking.org>
14472 S:      Maintained
14473 F:      drivers/firmware/pcdp.*
14474
14475 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14476 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14477 M:      Pali Rohár <pali@kernel.org>
14478 L:      linux-pci@vger.kernel.org
14479 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14480 S:      Maintained
14481 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14482 F:      drivers/pci/controller/pci-aardvark.c
14483
14484 PCI DRIVER FOR ALTERA PCIE IP
14485 M:      Joyce Ooi <joyce.ooi@intel.com>
14486 L:      linux-pci@vger.kernel.org
14487 S:      Supported
14488 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
14489 F:      drivers/pci/controller/pcie-altera.c
14490
14491 PCI DRIVER FOR APPLIEDMICRO XGENE
14492 M:      Toan Le <toan@os.amperecomputing.com>
14493 L:      linux-pci@vger.kernel.org
14494 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14495 S:      Maintained
14496 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
14497 F:      drivers/pci/controller/pci-xgene.c
14498
14499 PCI DRIVER FOR ARM VERSATILE PLATFORM
14500 M:      Rob Herring <robh@kernel.org>
14501 L:      linux-pci@vger.kernel.org
14502 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14503 S:      Maintained
14504 F:      Documentation/devicetree/bindings/pci/versatile.yaml
14505 F:      drivers/pci/controller/pci-versatile.c
14506
14507 PCI DRIVER FOR ARMADA 8K
14508 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14509 L:      linux-pci@vger.kernel.org
14510 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14511 S:      Maintained
14512 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
14513 F:      drivers/pci/controller/dwc/pcie-armada8k.c
14514
14515 PCI DRIVER FOR CADENCE PCIE IP
14516 M:      Tom Joseph <tjoseph@cadence.com>
14517 L:      linux-pci@vger.kernel.org
14518 S:      Maintained
14519 F:      Documentation/devicetree/bindings/pci/cdns,*
14520 F:      drivers/pci/controller/cadence/
14521
14522 PCI DRIVER FOR FREESCALE LAYERSCAPE
14523 M:      Minghuan Lian <minghuan.Lian@nxp.com>
14524 M:      Mingkai Hu <mingkai.hu@nxp.com>
14525 M:      Roy Zang <roy.zang@nxp.com>
14526 L:      linuxppc-dev@lists.ozlabs.org
14527 L:      linux-pci@vger.kernel.org
14528 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14529 S:      Maintained
14530 F:      drivers/pci/controller/dwc/*layerscape*
14531
14532 PCI DRIVER FOR GENERIC OF HOSTS
14533 M:      Will Deacon <will@kernel.org>
14534 L:      linux-pci@vger.kernel.org
14535 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14536 S:      Maintained
14537 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14538 F:      drivers/pci/controller/pci-host-common.c
14539 F:      drivers/pci/controller/pci-host-generic.c
14540
14541 PCI DRIVER FOR IMX6
14542 M:      Richard Zhu <hongxing.zhu@nxp.com>
14543 M:      Lucas Stach <l.stach@pengutronix.de>
14544 L:      linux-pci@vger.kernel.org
14545 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14546 S:      Maintained
14547 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
14548 F:      drivers/pci/controller/dwc/*imx6*
14549
14550 PCI DRIVER FOR FU740
14551 M:      Paul Walmsley <paul.walmsley@sifive.com>
14552 M:      Greentime Hu <greentime.hu@sifive.com>
14553 L:      linux-pci@vger.kernel.org
14554 S:      Maintained
14555 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14556 F:      drivers/pci/controller/dwc/pcie-fu740.c
14557
14558 PCI DRIVER FOR INTEL IXP4XX
14559 M:      Linus Walleij <linus.walleij@linaro.org>
14560 S:      Maintained
14561 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
14562 F:      drivers/pci/controller/pci-ixp4xx.c
14563
14564 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14565 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
14566 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
14567 L:      linux-pci@vger.kernel.org
14568 S:      Supported
14569 F:      drivers/pci/controller/vmd.c
14570
14571 PCI DRIVER FOR MICROSEMI SWITCHTEC
14572 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14573 M:      Logan Gunthorpe <logang@deltatee.com>
14574 L:      linux-pci@vger.kernel.org
14575 S:      Maintained
14576 F:      Documentation/ABI/testing/sysfs-class-switchtec
14577 F:      Documentation/driver-api/switchtec.rst
14578 F:      drivers/ntb/hw/mscc/
14579 F:      drivers/pci/switch/switchtec*
14580 F:      include/linux/switchtec.h
14581 F:      include/uapi/linux/switchtec_ioctl.h
14582
14583 PCI DRIVER FOR MOBIVEIL PCIE IP
14584 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14585 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14586 L:      linux-pci@vger.kernel.org
14587 S:      Supported
14588 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14589 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
14590
14591 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14592 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14593 L:      linux-pci@vger.kernel.org
14594 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14595 S:      Maintained
14596 F:      drivers/pci/controller/*mvebu*
14597
14598 PCI DRIVER FOR NVIDIA TEGRA
14599 M:      Thierry Reding <thierry.reding@gmail.com>
14600 L:      linux-tegra@vger.kernel.org
14601 L:      linux-pci@vger.kernel.org
14602 S:      Supported
14603 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14604 F:      drivers/pci/controller/pci-tegra.c
14605
14606 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14607 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14608 L:      linux-pci@vger.kernel.org
14609 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14610 S:      Maintained
14611 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14612 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14613
14614 PCI DRIVER FOR RENESAS R-CAR
14615 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14616 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14617 L:      linux-pci@vger.kernel.org
14618 L:      linux-renesas-soc@vger.kernel.org
14619 S:      Maintained
14620 F:      Documentation/devicetree/bindings/pci/*rcar*
14621 F:      drivers/pci/controller/*rcar*
14622
14623 PCI DRIVER FOR SAMSUNG EXYNOS
14624 M:      Jingoo Han <jingoohan1@gmail.com>
14625 L:      linux-pci@vger.kernel.org
14626 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14627 L:      linux-samsung-soc@vger.kernel.org
14628 S:      Maintained
14629 F:      drivers/pci/controller/dwc/pci-exynos.c
14630
14631 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14632 M:      Jingoo Han <jingoohan1@gmail.com>
14633 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14634 L:      linux-pci@vger.kernel.org
14635 S:      Maintained
14636 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
14637 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
14638 F:      drivers/pci/controller/dwc/*designware*
14639
14640 PCI DRIVER FOR TI DRA7XX/J721E
14641 M:      Kishon Vijay Abraham I <kishon@ti.com>
14642 L:      linux-omap@vger.kernel.org
14643 L:      linux-pci@vger.kernel.org
14644 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14645 S:      Supported
14646 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
14647 F:      drivers/pci/controller/cadence/pci-j721e.c
14648 F:      drivers/pci/controller/dwc/pci-dra7xx.c
14649
14650 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14651 M:      Linus Walleij <linus.walleij@linaro.org>
14652 L:      linux-pci@vger.kernel.org
14653 S:      Maintained
14654 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14655 F:      drivers/pci/controller/pci-v3-semi.c
14656
14657 PCI ENDPOINT SUBSYSTEM
14658 M:      Kishon Vijay Abraham I <kishon@ti.com>
14659 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14660 R:      Krzysztof Wilczyński <kw@linux.com>
14661 L:      linux-pci@vger.kernel.org
14662 S:      Supported
14663 Q:      https://patchwork.kernel.org/project/linux-pci/list/
14664 B:      https://bugzilla.kernel.org
14665 C:      irc://irc.oftc.net/linux-pci
14666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
14667 F:      Documentation/PCI/endpoint/*
14668 F:      Documentation/misc-devices/pci-endpoint-test.rst
14669 F:      drivers/misc/pci_endpoint_test.c
14670 F:      drivers/pci/endpoint/
14671 F:      tools/pci/
14672
14673 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14674 M:      Russell Currey <ruscur@russell.cc>
14675 M:      Oliver O'Halloran <oohall@gmail.com>
14676 L:      linuxppc-dev@lists.ozlabs.org
14677 S:      Supported
14678 F:      Documentation/PCI/pci-error-recovery.rst
14679 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
14680 F:      arch/powerpc/include/*/eeh*.h
14681 F:      arch/powerpc/kernel/eeh*.c
14682 F:      arch/powerpc/platforms/*/eeh*.c
14683 F:      drivers/pci/pcie/aer.c
14684 F:      drivers/pci/pcie/dpc.c
14685 F:      drivers/pci/pcie/err.c
14686
14687 PCI ERROR RECOVERY
14688 M:      Linas Vepstas <linasvepstas@gmail.com>
14689 L:      linux-pci@vger.kernel.org
14690 S:      Supported
14691 F:      Documentation/PCI/pci-error-recovery.rst
14692
14693 PCI MSI DRIVER FOR ALTERA MSI IP
14694 M:      Joyce Ooi <joyce.ooi@intel.com>
14695 L:      linux-pci@vger.kernel.org
14696 S:      Supported
14697 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14698 F:      drivers/pci/controller/pcie-altera-msi.c
14699
14700 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14701 M:      Toan Le <toan@os.amperecomputing.com>
14702 L:      linux-pci@vger.kernel.org
14703 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14704 S:      Maintained
14705 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14706 F:      drivers/pci/controller/pci-xgene-msi.c
14707
14708 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14709 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14710 R:      Rob Herring <robh@kernel.org>
14711 R:      Krzysztof Wilczyński <kw@linux.com>
14712 L:      linux-pci@vger.kernel.org
14713 S:      Supported
14714 Q:      https://patchwork.kernel.org/project/linux-pci/list/
14715 B:      https://bugzilla.kernel.org
14716 C:      irc://irc.oftc.net/linux-pci
14717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
14718 F:      drivers/pci/controller/
14719 F:      drivers/pci/pci-bridge-emul.c
14720 F:      drivers/pci/pci-bridge-emul.h
14721
14722 PCI SUBSYSTEM
14723 M:      Bjorn Helgaas <bhelgaas@google.com>
14724 L:      linux-pci@vger.kernel.org
14725 S:      Supported
14726 Q:      https://patchwork.kernel.org/project/linux-pci/list/
14727 B:      https://bugzilla.kernel.org
14728 C:      irc://irc.oftc.net/linux-pci
14729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14730 F:      Documentation/PCI/
14731 F:      Documentation/devicetree/bindings/pci/
14732 F:      arch/x86/kernel/early-quirks.c
14733 F:      arch/x86/kernel/quirks.c
14734 F:      arch/x86/pci/
14735 F:      drivers/acpi/pci*
14736 F:      drivers/pci/
14737 F:      include/asm-generic/pci*
14738 F:      include/linux/of_pci.h
14739 F:      include/linux/pci*
14740 F:      include/uapi/linux/pci*
14741 F:      lib/pci*
14742
14743 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14744 M:      Jonathan Chocron <jonnyc@amazon.com>
14745 L:      linux-pci@vger.kernel.org
14746 S:      Maintained
14747 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
14748 F:      drivers/pci/controller/dwc/pcie-al.c
14749
14750 PCIE DRIVER FOR AMLOGIC MESON
14751 M:      Yue Wang <yue.wang@Amlogic.com>
14752 L:      linux-pci@vger.kernel.org
14753 L:      linux-amlogic@lists.infradead.org
14754 S:      Maintained
14755 F:      drivers/pci/controller/dwc/pci-meson.c
14756
14757 PCIE DRIVER FOR AXIS ARTPEC
14758 M:      Jesper Nilsson <jesper.nilsson@axis.com>
14759 L:      linux-arm-kernel@axis.com
14760 L:      linux-pci@vger.kernel.org
14761 S:      Maintained
14762 F:      Documentation/devicetree/bindings/pci/axis,artpec*
14763 F:      drivers/pci/controller/dwc/*artpec*
14764
14765 PCIE DRIVER FOR CAVIUM THUNDERX
14766 M:      Robert Richter <rric@kernel.org>
14767 L:      linux-pci@vger.kernel.org
14768 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14769 S:      Odd Fixes
14770 F:      drivers/pci/controller/pci-thunder-*
14771
14772 PCIE DRIVER FOR HISILICON
14773 M:      Zhou Wang <wangzhou1@hisilicon.com>
14774 L:      linux-pci@vger.kernel.org
14775 S:      Maintained
14776 F:      drivers/pci/controller/dwc/pcie-hisi.c
14777
14778 PCIE DRIVER FOR HISILICON KIRIN
14779 M:      Xiaowei Song <songxiaowei@hisilicon.com>
14780 M:      Binghui Wang <wangbinghui@hisilicon.com>
14781 L:      linux-pci@vger.kernel.org
14782 S:      Maintained
14783 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
14784 F:      drivers/pci/controller/dwc/pcie-kirin.c
14785
14786 PCIE DRIVER FOR HISILICON STB
14787 M:      Shawn Guo <shawn.guo@linaro.org>
14788 L:      linux-pci@vger.kernel.org
14789 S:      Maintained
14790 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14791 F:      drivers/pci/controller/dwc/pcie-histb.c
14792
14793 PCIE DRIVER FOR INTEL KEEM BAY
14794 M:      Srikanth Thokala <srikanth.thokala@intel.com>
14795 L:      linux-pci@vger.kernel.org
14796 S:      Supported
14797 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
14798 F:      drivers/pci/controller/dwc/pcie-keembay.c
14799
14800 PCIE DRIVER FOR INTEL LGM GW SOC
14801 M:      Rahul Tanwar <rtanwar@maxlinear.com>
14802 L:      linux-pci@vger.kernel.org
14803 S:      Maintained
14804 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
14805 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
14806
14807 PCIE DRIVER FOR MEDIATEK
14808 M:      Ryder Lee <ryder.lee@mediatek.com>
14809 M:      Jianjun Wang <jianjun.wang@mediatek.com>
14810 L:      linux-pci@vger.kernel.org
14811 L:      linux-mediatek@lists.infradead.org
14812 S:      Supported
14813 F:      Documentation/devicetree/bindings/pci/mediatek*
14814 F:      drivers/pci/controller/*mediatek*
14815
14816 PCIE DRIVER FOR MICROCHIP
14817 M:      Daire McNamara <daire.mcnamara@microchip.com>
14818 L:      linux-pci@vger.kernel.org
14819 S:      Supported
14820 F:      Documentation/devicetree/bindings/pci/microchip*
14821 F:      drivers/pci/controller/*microchip*
14822
14823 PCIE DRIVER FOR QUALCOMM MSM
14824 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
14825 L:      linux-pci@vger.kernel.org
14826 L:      linux-arm-msm@vger.kernel.org
14827 S:      Maintained
14828 F:      drivers/pci/controller/dwc/pcie-qcom.c
14829
14830 PCIE ENDPOINT DRIVER FOR QUALCOMM
14831 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
14832 L:      linux-pci@vger.kernel.org
14833 L:      linux-arm-msm@vger.kernel.org
14834 S:      Maintained
14835 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
14836 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
14837
14838 PCIE DRIVER FOR ROCKCHIP
14839 M:      Shawn Lin <shawn.lin@rock-chips.com>
14840 L:      linux-pci@vger.kernel.org
14841 L:      linux-rockchip@lists.infradead.org
14842 S:      Maintained
14843 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
14844 F:      drivers/pci/controller/pcie-rockchip*
14845
14846 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14847 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14848 L:      linux-pci@vger.kernel.org
14849 S:      Maintained
14850 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
14851 F:      drivers/pci/controller/dwc/pcie-uniphier*
14852
14853 PCIE DRIVER FOR ST SPEAR13XX
14854 M:      Pratyush Anand <pratyush.anand@gmail.com>
14855 L:      linux-pci@vger.kernel.org
14856 S:      Maintained
14857 F:      drivers/pci/controller/dwc/*spear*
14858
14859 PCMCIA SUBSYSTEM
14860 M:      Dominik Brodowski <linux@dominikbrodowski.net>
14861 S:      Odd Fixes
14862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14863 F:      Documentation/pcmcia/
14864 F:      drivers/pcmcia/
14865 F:      include/pcmcia/
14866 F:      tools/pcmcia/
14867
14868 PCNET32 NETWORK DRIVER
14869 M:      Don Fry <pcnet32@frontier.com>
14870 L:      netdev@vger.kernel.org
14871 S:      Maintained
14872 F:      drivers/net/ethernet/amd/pcnet32.c
14873
14874 PCRYPT PARALLEL CRYPTO ENGINE
14875 M:      Steffen Klassert <steffen.klassert@secunet.com>
14876 L:      linux-crypto@vger.kernel.org
14877 S:      Maintained
14878 F:      crypto/pcrypt.c
14879 F:      include/crypto/pcrypt.h
14880
14881 PEAQ WMI HOTKEYS DRIVER
14882 M:      Hans de Goede <hdegoede@redhat.com>
14883 L:      platform-driver-x86@vger.kernel.org
14884 S:      Maintained
14885 F:      drivers/platform/x86/peaq-wmi.c
14886
14887 PENSANDO ETHERNET DRIVERS
14888 M:      Shannon Nelson <snelson@pensando.io>
14889 M:      drivers@pensando.io
14890 L:      netdev@vger.kernel.org
14891 S:      Supported
14892 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14893 F:      drivers/net/ethernet/pensando/
14894
14895 PER-CPU MEMORY ALLOCATOR
14896 M:      Dennis Zhou <dennis@kernel.org>
14897 M:      Tejun Heo <tj@kernel.org>
14898 M:      Christoph Lameter <cl@linux.com>
14899 L:      linux-mm@kvack.org
14900 S:      Maintained
14901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14902 F:      arch/*/include/asm/percpu.h
14903 F:      include/linux/percpu*.h
14904 F:      lib/percpu*.c
14905 F:      mm/percpu*.c
14906
14907 PER-TASK DELAY ACCOUNTING
14908 M:      Balbir Singh <bsingharora@gmail.com>
14909 S:      Maintained
14910 F:      include/linux/delayacct.h
14911 F:      kernel/delayacct.c
14912
14913 PERFORMANCE EVENTS SUBSYSTEM
14914 M:      Peter Zijlstra <peterz@infradead.org>
14915 M:      Ingo Molnar <mingo@redhat.com>
14916 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
14917 R:      Mark Rutland <mark.rutland@arm.com>
14918 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
14919 R:      Jiri Olsa <jolsa@redhat.com>
14920 R:      Namhyung Kim <namhyung@kernel.org>
14921 L:      linux-perf-users@vger.kernel.org
14922 L:      linux-kernel@vger.kernel.org
14923 S:      Supported
14924 W:      https://perf.wiki.kernel.org/
14925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14926 F:      arch/*/events/*
14927 F:      arch/*/events/*/*
14928 F:      arch/*/include/asm/perf_event.h
14929 F:      arch/*/kernel/*/*/perf_event*.c
14930 F:      arch/*/kernel/*/perf_event*.c
14931 F:      arch/*/kernel/perf_callchain.c
14932 F:      arch/*/kernel/perf_event*.c
14933 F:      include/linux/perf_event.h
14934 F:      include/uapi/linux/perf_event.h
14935 F:      kernel/events/*
14936 F:      tools/lib/perf/
14937 F:      tools/perf/
14938
14939 PERFORMANCE EVENTS TOOLING ARM64
14940 R:      John Garry <john.garry@huawei.com>
14941 R:      Will Deacon <will@kernel.org>
14942 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
14943 R:      Leo Yan <leo.yan@linaro.org>
14944 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14945 S:      Supported
14946 F:      tools/build/feature/test-libopencsd.c
14947 F:      tools/perf/arch/arm*/
14948 F:      tools/perf/pmu-events/arch/arm64/
14949 F:      tools/perf/util/arm-spe*
14950 F:      tools/perf/util/cs-etm*
14951
14952 PERSONALITY HANDLING
14953 M:      Christoph Hellwig <hch@infradead.org>
14954 L:      linux-abi-devel@lists.sourceforge.net
14955 S:      Maintained
14956 F:      include/linux/personality.h
14957 F:      include/uapi/linux/personality.h
14958
14959 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14960 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
14961 L:      linux-input@vger.kernel.org
14962 S:      Maintained
14963 F:      Documentation/input/devices/pxrc.rst
14964 F:      drivers/input/joystick/pxrc.c
14965
14966 PHONET PROTOCOL
14967 M:      Remi Denis-Courmont <courmisch@gmail.com>
14968 S:      Supported
14969 F:      Documentation/networking/phonet.rst
14970 F:      include/linux/phonet.h
14971 F:      include/net/phonet/
14972 F:      include/uapi/linux/phonet.h
14973 F:      net/phonet/
14974
14975 PHRAM MTD DRIVER
14976 M:      Joern Engel <joern@lazybastard.org>
14977 L:      linux-mtd@lists.infradead.org
14978 S:      Maintained
14979 F:      drivers/mtd/devices/phram.c
14980
14981 PICOLCD HID DRIVER
14982 M:      Bruno Prémont <bonbons@linux-vserver.org>
14983 L:      linux-input@vger.kernel.org
14984 S:      Maintained
14985 F:      drivers/hid/hid-picolcd*
14986
14987 PIDFD API
14988 M:      Christian Brauner <christian@brauner.io>
14989 L:      linux-kernel@vger.kernel.org
14990 S:      Maintained
14991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14992 F:      samples/pidfd/
14993 F:      tools/testing/selftests/clone3/
14994 F:      tools/testing/selftests/pid_namespace/
14995 F:      tools/testing/selftests/pidfd/
14996 K:      (?i)pidfd
14997 K:      (?i)clone3
14998 K:      \b(clone_args|kernel_clone_args)\b
14999
15000 PIN CONTROL SUBSYSTEM
15001 M:      Linus Walleij <linus.walleij@linaro.org>
15002 L:      linux-gpio@vger.kernel.org
15003 S:      Maintained
15004 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
15005 F:      Documentation/devicetree/bindings/pinctrl/
15006 F:      Documentation/driver-api/pin-control.rst
15007 F:      drivers/pinctrl/
15008 F:      include/linux/pinctrl/
15009
15010 PIN CONTROLLER - AMD
15011 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
15012 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
15013 S:      Maintained
15014 F:      drivers/pinctrl/pinctrl-amd.c
15015
15016 PIN CONTROLLER - FREESCALE
15017 M:      Dong Aisheng <aisheng.dong@nxp.com>
15018 M:      Fabio Estevam <festevam@gmail.com>
15019 M:      Shawn Guo <shawnguo@kernel.org>
15020 M:      Stefan Agner <stefan@agner.ch>
15021 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15022 L:      linux-gpio@vger.kernel.org
15023 S:      Maintained
15024 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
15025 F:      drivers/pinctrl/freescale/
15026
15027 PIN CONTROLLER - INTEL
15028 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
15029 M:      Andy Shevchenko <andy@kernel.org>
15030 S:      Maintained
15031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
15032 F:      drivers/pinctrl/intel/
15033
15034 PIN CONTROLLER - KEEMBAY
15035 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15036 S:      Supported
15037 F:      drivers/pinctrl/pinctrl-keembay*
15038
15039 PIN CONTROLLER - MEDIATEK
15040 M:      Sean Wang <sean.wang@kernel.org>
15041 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15042 S:      Maintained
15043 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
15044 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
15045 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
15046 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
15047 F:      drivers/pinctrl/mediatek/
15048
15049 PIN CONTROLLER - MICROCHIP AT91
15050 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15051 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15052 L:      linux-gpio@vger.kernel.org
15053 S:      Supported
15054 F:      drivers/gpio/gpio-sama5d2-piobu.c
15055 F:      drivers/pinctrl/pinctrl-at91*
15056
15057 PIN CONTROLLER - QUALCOMM
15058 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15059 L:      linux-arm-msm@vger.kernel.org
15060 S:      Maintained
15061 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
15062 F:      drivers/pinctrl/qcom/
15063
15064 PIN CONTROLLER - RENESAS
15065 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15066 L:      linux-renesas-soc@vger.kernel.org
15067 S:      Supported
15068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
15069 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
15070 F:      drivers/pinctrl/renesas/
15071
15072 PIN CONTROLLER - SAMSUNG
15073 M:      Tomasz Figa <tomasz.figa@gmail.com>
15074 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
15075 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15076 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15077 L:      linux-samsung-soc@vger.kernel.org
15078 S:      Maintained
15079 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
15080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
15081 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
15082 F:      drivers/pinctrl/samsung/
15083 F:      include/dt-bindings/pinctrl/samsung.h
15084
15085 PIN CONTROLLER - SINGLE
15086 M:      Tony Lindgren <tony@atomide.com>
15087 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
15088 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15089 L:      linux-omap@vger.kernel.org
15090 S:      Maintained
15091 F:      drivers/pinctrl/pinctrl-single.c
15092
15093 PKTCDVD DRIVER
15094 M:      linux-block@vger.kernel.org
15095 S:      Orphan
15096 F:      drivers/block/pktcdvd.c
15097 F:      include/linux/pktcdvd.h
15098 F:      include/uapi/linux/pktcdvd.h
15099
15100 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
15101 M:      Tomasz Duszynski <tduszyns@gmail.com>
15102 S:      Maintained
15103 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
15104 F:      drivers/iio/chemical/pms7003.c
15105
15106 PLDMFW LIBRARY
15107 M:      Jacob Keller <jacob.e.keller@intel.com>
15108 S:      Maintained
15109 F:      Documentation/driver-api/pldmfw/
15110 F:      include/linux/pldmfw.h
15111 F:      lib/pldmfw/
15112
15113 PLX DMA DRIVER
15114 M:      Logan Gunthorpe <logang@deltatee.com>
15115 S:      Maintained
15116 F:      drivers/dma/plx_dma.c
15117
15118 PM6764TR DRIVER
15119 M:      Charles Hsu     <hsu.yungteng@gmail.com>
15120 L:      linux-hwmon@vger.kernel.org
15121 S:      Maintained
15122 F:      Documentation/hwmon/pm6764tr.rst
15123 F:      drivers/hwmon/pmbus/pm6764tr.c
15124
15125 PM-GRAPH UTILITY
15126 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
15127 L:      linux-pm@vger.kernel.org
15128 S:      Supported
15129 W:      https://01.org/pm-graph
15130 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
15131 T:      git git://github.com/intel/pm-graph
15132 F:      tools/power/pm-graph
15133
15134 PMBUS HARDWARE MONITORING DRIVERS
15135 M:      Guenter Roeck <linux@roeck-us.net>
15136 L:      linux-hwmon@vger.kernel.org
15137 S:      Maintained
15138 W:      http://hwmon.wiki.kernel.org/
15139 W:      http://www.roeck-us.net/linux/drivers/
15140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
15141 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
15142 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
15143 F:      Documentation/hwmon/adm1275.rst
15144 F:      Documentation/hwmon/ibm-cffps.rst
15145 F:      Documentation/hwmon/ir35221.rst
15146 F:      Documentation/hwmon/lm25066.rst
15147 F:      Documentation/hwmon/ltc2978.rst
15148 F:      Documentation/hwmon/ltc3815.rst
15149 F:      Documentation/hwmon/max16064.rst
15150 F:      Documentation/hwmon/max20751.rst
15151 F:      Documentation/hwmon/max31785.rst
15152 F:      Documentation/hwmon/max34440.rst
15153 F:      Documentation/hwmon/max8688.rst
15154 F:      Documentation/hwmon/pmbus-core.rst
15155 F:      Documentation/hwmon/pmbus.rst
15156 F:      Documentation/hwmon/tps40422.rst
15157 F:      Documentation/hwmon/ucd9000.rst
15158 F:      Documentation/hwmon/ucd9200.rst
15159 F:      Documentation/hwmon/zl6100.rst
15160 F:      drivers/hwmon/pmbus/
15161 F:      include/linux/pmbus.h
15162
15163 PMC SIERRA MaxRAID DRIVER
15164 L:      linux-scsi@vger.kernel.org
15165 S:      Orphan
15166 W:      http://www.pmc-sierra.com/
15167 F:      drivers/scsi/pmcraid.*
15168
15169 PMC SIERRA PM8001 DRIVER
15170 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15171 L:      linux-scsi@vger.kernel.org
15172 S:      Supported
15173 F:      drivers/scsi/pm8001/
15174
15175 PNI RM3100 IIO DRIVER
15176 M:      Song Qiang <songqiang1304521@gmail.com>
15177 L:      linux-iio@vger.kernel.org
15178 S:      Maintained
15179 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15180 F:      drivers/iio/magnetometer/rm3100*
15181
15182 PNP SUPPORT
15183 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15184 L:      linux-acpi@vger.kernel.org
15185 S:      Maintained
15186 F:      drivers/pnp/
15187 F:      include/linux/pnp.h
15188
15189 POSIX CLOCKS and TIMERS
15190 M:      Thomas Gleixner <tglx@linutronix.de>
15191 L:      linux-kernel@vger.kernel.org
15192 S:      Maintained
15193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15194 F:      fs/timerfd.c
15195 F:      include/linux/time_namespace.h
15196 F:      include/linux/timer*
15197 F:      kernel/time/*timer*
15198 F:      kernel/time/namespace.c
15199
15200 POWER MANAGEMENT CORE
15201 M:      "Rafael J. Wysocki" <rafael@kernel.org>
15202 L:      linux-pm@vger.kernel.org
15203 S:      Supported
15204 B:      https://bugzilla.kernel.org
15205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15206 F:      drivers/base/power/
15207 F:      drivers/powercap/
15208 F:      include/linux/intel_rapl.h
15209 F:      include/linux/pm.h
15210 F:      include/linux/pm_*
15211 F:      include/linux/powercap.h
15212 F:      kernel/configs/nopm.config
15213
15214 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15215 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
15216 L:      linux-pm@vger.kernel.org
15217 S:      Supported
15218 B:      https://bugzilla.kernel.org
15219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15220 F:      drivers/powercap/dtpm*
15221 F:      include/linux/dtpm.h
15222
15223 POWER STATE COORDINATION INTERFACE (PSCI)
15224 M:      Mark Rutland <mark.rutland@arm.com>
15225 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15226 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15227 S:      Maintained
15228 F:      drivers/firmware/psci/
15229 F:      include/linux/psci.h
15230 F:      include/uapi/linux/psci.h
15231
15232 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15233 M:      Sebastian Reichel <sre@kernel.org>
15234 L:      linux-pm@vger.kernel.org
15235 S:      Maintained
15236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15237 F:      Documentation/ABI/testing/sysfs-class-power
15238 F:      Documentation/devicetree/bindings/power/supply/
15239 F:      drivers/power/supply/
15240 F:      include/linux/power/
15241 F:      include/linux/power_supply.h
15242
15243 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15244 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15245 L:      linuxppc-dev@lists.ozlabs.org
15246 S:      Maintained
15247 F:      drivers/char/powernv-op-panel.c
15248
15249 PPP OVER ATM (RFC 2364)
15250 M:      Mitchell Blank Jr <mitch@sfgoth.com>
15251 S:      Maintained
15252 F:      include/uapi/linux/atmppp.h
15253 F:      net/atm/pppoatm.c
15254
15255 PPP OVER ETHERNET
15256 M:      Michal Ostrowski <mostrows@earthlink.net>
15257 S:      Maintained
15258 F:      drivers/net/ppp/pppoe.c
15259 F:      drivers/net/ppp/pppox.c
15260
15261 PPP OVER L2TP
15262 M:      James Chapman <jchapman@katalix.com>
15263 S:      Maintained
15264 F:      include/linux/if_pppol2tp.h
15265 F:      include/uapi/linux/if_pppol2tp.h
15266 F:      net/l2tp/l2tp_ppp.c
15267
15268 PPP PROTOCOL DRIVERS AND COMPRESSORS
15269 M:      Paul Mackerras <paulus@samba.org>
15270 L:      linux-ppp@vger.kernel.org
15271 S:      Maintained
15272 F:      drivers/net/ppp/ppp_*
15273
15274 PPS SUPPORT
15275 M:      Rodolfo Giometti <giometti@enneenne.com>
15276 L:      linuxpps@ml.enneenne.com (subscribers-only)
15277 S:      Maintained
15278 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
15279 F:      Documentation/ABI/testing/sysfs-pps
15280 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
15281 F:      Documentation/driver-api/pps.rst
15282 F:      drivers/pps/
15283 F:      include/linux/pps*.h
15284 F:      include/uapi/linux/pps.h
15285
15286 PPTP DRIVER
15287 M:      Dmitry Kozlov <xeb@mail.ru>
15288 L:      netdev@vger.kernel.org
15289 S:      Maintained
15290 W:      http://sourceforge.net/projects/accel-pptp
15291 F:      drivers/net/ppp/pptp.c
15292
15293 PRESSURE STALL INFORMATION (PSI)
15294 M:      Johannes Weiner <hannes@cmpxchg.org>
15295 S:      Maintained
15296 F:      include/linux/psi*
15297 F:      kernel/sched/psi.c
15298
15299 PRINTK
15300 M:      Petr Mladek <pmladek@suse.com>
15301 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
15302 R:      Steven Rostedt <rostedt@goodmis.org>
15303 R:      John Ogness <john.ogness@linutronix.de>
15304 S:      Maintained
15305 F:      include/linux/printk.h
15306 F:      kernel/printk/
15307
15308 PRINTK INDEXING
15309 R:      Chris Down <chris@chrisdown.name>
15310 S:      Maintained
15311 F:      kernel/printk/index.c
15312
15313 PROC FILESYSTEM
15314 L:      linux-kernel@vger.kernel.org
15315 L:      linux-fsdevel@vger.kernel.org
15316 S:      Maintained
15317 F:      Documentation/filesystems/proc.rst
15318 F:      fs/proc/
15319 F:      include/linux/proc_fs.h
15320 F:      tools/testing/selftests/proc/
15321
15322 PROC SYSCTL
15323 M:      Luis Chamberlain <mcgrof@kernel.org>
15324 M:      Kees Cook <keescook@chromium.org>
15325 M:      Iurii Zaikin <yzaikin@google.com>
15326 L:      linux-kernel@vger.kernel.org
15327 L:      linux-fsdevel@vger.kernel.org
15328 S:      Maintained
15329 F:      fs/proc/proc_sysctl.c
15330 F:      include/linux/sysctl.h
15331 F:      kernel/sysctl-test.c
15332 F:      kernel/sysctl.c
15333 F:      tools/testing/selftests/sysctl/
15334
15335 PS3 NETWORK SUPPORT
15336 M:      Geoff Levand <geoff@infradead.org>
15337 L:      netdev@vger.kernel.org
15338 L:      linuxppc-dev@lists.ozlabs.org
15339 S:      Maintained
15340 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
15341
15342 PS3 PLATFORM SUPPORT
15343 M:      Geoff Levand <geoff@infradead.org>
15344 L:      linuxppc-dev@lists.ozlabs.org
15345 S:      Maintained
15346 F:      arch/powerpc/boot/ps3*
15347 F:      arch/powerpc/include/asm/lv1call.h
15348 F:      arch/powerpc/include/asm/ps3*.h
15349 F:      arch/powerpc/platforms/ps3/
15350 F:      drivers/*/ps3*
15351 F:      drivers/ps3/
15352 F:      drivers/rtc/rtc-ps3.c
15353 F:      drivers/usb/host/*ps3.c
15354 F:      sound/ppc/snd_ps3*
15355
15356 PS3VRAM DRIVER
15357 M:      Jim Paris <jim@jtan.com>
15358 M:      Geoff Levand <geoff@infradead.org>
15359 L:      linuxppc-dev@lists.ozlabs.org
15360 S:      Maintained
15361 F:      drivers/block/ps3vram.c
15362
15363 PSAMPLE PACKET SAMPLING SUPPORT
15364 M:      Yotam Gigi <yotam.gi@gmail.com>
15365 S:      Maintained
15366 F:      include/net/psample.h
15367 F:      include/uapi/linux/psample.h
15368 F:      net/psample
15369
15370 PSTORE FILESYSTEM
15371 M:      Kees Cook <keescook@chromium.org>
15372 M:      Anton Vorontsov <anton@enomsg.org>
15373 M:      Colin Cross <ccross@android.com>
15374 M:      Tony Luck <tony.luck@intel.com>
15375 S:      Maintained
15376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15377 F:      Documentation/admin-guide/ramoops.rst
15378 F:      Documentation/admin-guide/pstore-blk.rst
15379 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
15380 F:      drivers/acpi/apei/erst.c
15381 F:      drivers/firmware/efi/efi-pstore.c
15382 F:      fs/pstore/
15383 F:      include/linux/pstore*
15384 K:      \b(pstore|ramoops)
15385
15386 PTP HARDWARE CLOCK SUPPORT
15387 M:      Richard Cochran <richardcochran@gmail.com>
15388 L:      netdev@vger.kernel.org
15389 S:      Maintained
15390 W:      http://linuxptp.sourceforge.net/
15391 F:      Documentation/ABI/testing/sysfs-ptp
15392 F:      Documentation/driver-api/ptp.rst
15393 F:      drivers/net/phy/dp83640*
15394 F:      drivers/ptp/*
15395 F:      include/linux/ptp_cl*
15396
15397 PTP VIRTUAL CLOCK SUPPORT
15398 M:      Yangbo Lu <yangbo.lu@nxp.com>
15399 L:      netdev@vger.kernel.org
15400 S:      Maintained
15401 F:      drivers/ptp/ptp_vclock.c
15402 F:      net/ethtool/phc_vclocks.c
15403
15404 PTRACE SUPPORT
15405 M:      Oleg Nesterov <oleg@redhat.com>
15406 S:      Maintained
15407 F:      arch/*/*/ptrace*.c
15408 F:      arch/*/include/asm/ptrace*.h
15409 F:      arch/*/ptrace*.c
15410 F:      include/asm-generic/syscall.h
15411 F:      include/linux/ptrace.h
15412 F:      include/linux/regset.h
15413 F:      include/linux/tracehook.h
15414 F:      include/uapi/linux/ptrace.h
15415 F:      include/uapi/linux/ptrace.h
15416 F:      kernel/ptrace.c
15417
15418 PULSE8-CEC DRIVER
15419 M:      Hans Verkuil <hverkuil@xs4all.nl>
15420 L:      linux-media@vger.kernel.org
15421 S:      Maintained
15422 T:      git git://linuxtv.org/media_tree.git
15423 F:      Documentation/admin-guide/media/pulse8-cec.rst
15424 F:      drivers/media/cec/usb/pulse8/
15425
15426 PVRUSB2 VIDEO4LINUX DRIVER
15427 M:      Mike Isely <isely@pobox.com>
15428 L:      pvrusb2@isely.net       (subscribers-only)
15429 L:      linux-media@vger.kernel.org
15430 S:      Maintained
15431 W:      http://www.isely.net/pvrusb2/
15432 T:      git git://linuxtv.org/media_tree.git
15433 F:      Documentation/driver-api/media/drivers/pvrusb2*
15434 F:      drivers/media/usb/pvrusb2/
15435
15436 PWC WEBCAM DRIVER
15437 M:      Hans Verkuil <hverkuil@xs4all.nl>
15438 L:      linux-media@vger.kernel.org
15439 S:      Odd Fixes
15440 T:      git git://linuxtv.org/media_tree.git
15441 F:      drivers/media/usb/pwc/*
15442 F:      include/trace/events/pwc.h
15443
15444 PWM FAN DRIVER
15445 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15446 L:      linux-hwmon@vger.kernel.org
15447 S:      Supported
15448 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15449 F:      Documentation/hwmon/pwm-fan.rst
15450 F:      drivers/hwmon/pwm-fan.c
15451
15452 PWM IR Transmitter
15453 M:      Sean Young <sean@mess.org>
15454 L:      linux-media@vger.kernel.org
15455 S:      Maintained
15456 F:      drivers/media/rc/pwm-ir-tx.c
15457
15458 PWM SUBSYSTEM
15459 M:      Thierry Reding <thierry.reding@gmail.com>
15460 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15461 M:      Lee Jones <lee.jones@linaro.org>
15462 L:      linux-pwm@vger.kernel.org
15463 S:      Maintained
15464 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
15465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15466 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15467 F:      Documentation/devicetree/bindings/pwm/
15468 F:      Documentation/driver-api/pwm.rst
15469 F:      drivers/gpio/gpio-mvebu.c
15470 F:      drivers/pwm/
15471 F:      drivers/video/backlight/pwm_bl.c
15472 F:      include/linux/pwm.h
15473 F:      include/linux/pwm_backlight.h
15474 K:      pwm_(config|apply_state|ops)
15475
15476 PXA GPIO DRIVER
15477 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15478 L:      linux-gpio@vger.kernel.org
15479 S:      Maintained
15480 F:      drivers/gpio/gpio-pxa.c
15481
15482 PXA MMCI DRIVER
15483 S:      Orphan
15484
15485 PXA RTC DRIVER
15486 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15487 L:      linux-rtc@vger.kernel.org
15488 S:      Maintained
15489
15490 PXA2xx/PXA3xx SUPPORT
15491 M:      Daniel Mack <daniel@zonque.org>
15492 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
15493 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15494 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15495 S:      Maintained
15496 T:      git git://github.com/hzhuang1/linux.git
15497 T:      git git://github.com/rjarzmik/linux.git
15498 F:      arch/arm/boot/dts/pxa*
15499 F:      arch/arm/mach-pxa/
15500 F:      drivers/dma/pxa*
15501 F:      drivers/pcmcia/pxa2xx*
15502 F:      drivers/pinctrl/pxa/
15503 F:      drivers/spi/spi-pxa2xx*
15504 F:      drivers/usb/gadget/udc/pxa2*
15505 F:      include/sound/pxa2xx-lib.h
15506 F:      sound/arm/pxa*
15507 F:      sound/soc/pxa/
15508
15509 QAT DRIVER
15510 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15511 L:      qat-linux@intel.com
15512 S:      Supported
15513 F:      drivers/crypto/qat/
15514
15515 QCOM AUDIO (ASoC) DRIVERS
15516 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15517 M:      Banajit Goswami <bgoswami@codeaurora.org>
15518 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15519 S:      Supported
15520 F:      sound/soc/codecs/lpass-va-macro.c
15521 F:      sound/soc/codecs/lpass-wsa-macro.*
15522 F:      sound/soc/codecs/msm8916-wcd-analog.c
15523 F:      sound/soc/codecs/msm8916-wcd-digital.c
15524 F:      sound/soc/codecs/wcd9335.*
15525 F:      sound/soc/codecs/wcd934x.c
15526 F:      sound/soc/codecs/wcd-clsh-v2.*
15527 F:      sound/soc/codecs/wsa881x.c
15528 F:      sound/soc/qcom/
15529
15530 QCOM IPA DRIVER
15531 M:      Alex Elder <elder@kernel.org>
15532 L:      netdev@vger.kernel.org
15533 S:      Supported
15534 F:      drivers/net/ipa/
15535
15536 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15537 M:      Gabriel Somlo <somlo@cmu.edu>
15538 M:      "Michael S. Tsirkin" <mst@redhat.com>
15539 L:      qemu-devel@nongnu.org
15540 S:      Maintained
15541 F:      drivers/firmware/qemu_fw_cfg.c
15542 F:      include/uapi/linux/qemu_fw_cfg.h
15543
15544 QIB DRIVER
15545 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15546 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15547 L:      linux-rdma@vger.kernel.org
15548 S:      Supported
15549 F:      drivers/infiniband/hw/qib/
15550
15551 QLOGIC QL41xxx FCOE DRIVER
15552 M:      Saurav Kashyap <skashyap@marvell.com>
15553 M:      Javed Hasan <jhasan@marvell.com>
15554 M:      GR-QLogic-Storage-Upstream@marvell.com
15555 L:      linux-scsi@vger.kernel.org
15556 S:      Supported
15557 F:      drivers/scsi/qedf/
15558
15559 QLOGIC QL41xxx ISCSI DRIVER
15560 M:      Nilesh Javali <njavali@marvell.com>
15561 M:      Manish Rangankar <mrangankar@marvell.com>
15562 M:      GR-QLogic-Storage-Upstream@marvell.com
15563 L:      linux-scsi@vger.kernel.org
15564 S:      Supported
15565 F:      drivers/scsi/qedi/
15566
15567 QLOGIC QL4xxx ETHERNET DRIVER
15568 M:      Ariel Elior <aelior@marvell.com>
15569 M:      GR-everest-linux-l2@marvell.com
15570 L:      netdev@vger.kernel.org
15571 S:      Supported
15572 F:      drivers/net/ethernet/qlogic/qed/
15573 F:      drivers/net/ethernet/qlogic/qede/
15574 F:      include/linux/qed/
15575
15576 QLOGIC QL4xxx RDMA DRIVER
15577 M:      Michal Kalderon <mkalderon@marvell.com>
15578 M:      Ariel Elior <aelior@marvell.com>
15579 L:      linux-rdma@vger.kernel.org
15580 S:      Supported
15581 F:      drivers/infiniband/hw/qedr/
15582 F:      include/uapi/rdma/qedr-abi.h
15583
15584 QLOGIC QLA1280 SCSI DRIVER
15585 M:      Michael Reed <mdr@sgi.com>
15586 L:      linux-scsi@vger.kernel.org
15587 S:      Maintained
15588 F:      drivers/scsi/qla1280.[ch]
15589
15590 QLOGIC QLA2XXX FC-SCSI DRIVER
15591 M:      Nilesh Javali <njavali@marvell.com>
15592 M:      GR-QLogic-Storage-Upstream@marvell.com
15593 L:      linux-scsi@vger.kernel.org
15594 S:      Supported
15595 F:      drivers/scsi/qla2xxx/
15596
15597 QLOGIC QLA3XXX NETWORK DRIVER
15598 M:      GR-Linux-NIC-Dev@marvell.com
15599 L:      netdev@vger.kernel.org
15600 S:      Supported
15601 F:      drivers/net/ethernet/qlogic/qla3xxx.*
15602
15603 QLOGIC QLA4XXX iSCSI DRIVER
15604 M:      Nilesh Javali <njavali@marvell.com>
15605 M:      Manish Rangankar <mrangankar@marvell.com>
15606 M:      GR-QLogic-Storage-Upstream@marvell.com
15607 L:      linux-scsi@vger.kernel.org
15608 S:      Supported
15609 F:      drivers/scsi/qla4xxx/
15610
15611 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15612 M:      Shahed Shaikh <shshaikh@marvell.com>
15613 M:      Manish Chopra <manishc@marvell.com>
15614 M:      GR-Linux-NIC-Dev@marvell.com
15615 L:      netdev@vger.kernel.org
15616 S:      Supported
15617 F:      drivers/net/ethernet/qlogic/qlcnic/
15618
15619 QLOGIC QLGE 10Gb ETHERNET DRIVER
15620 M:      Manish Chopra <manishc@marvell.com>
15621 M:      GR-Linux-NIC-Dev@marvell.com
15622 M:      Coiby Xu <coiby.xu@gmail.com>
15623 L:      netdev@vger.kernel.org
15624 S:      Supported
15625 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
15626 F:      drivers/staging/qlge/
15627
15628 QM1D1B0004 MEDIA DRIVER
15629 M:      Akihiro Tsukada <tskd08@gmail.com>
15630 L:      linux-media@vger.kernel.org
15631 S:      Odd Fixes
15632 F:      drivers/media/tuners/qm1d1b0004*
15633
15634 QM1D1C0042 MEDIA DRIVER
15635 M:      Akihiro Tsukada <tskd08@gmail.com>
15636 L:      linux-media@vger.kernel.org
15637 S:      Odd Fixes
15638 F:      drivers/media/tuners/qm1d1c0042*
15639
15640 QNX4 FILESYSTEM
15641 M:      Anders Larsen <al@alarsen.net>
15642 S:      Maintained
15643 W:      http://www.alarsen.net/linux/qnx4fs/
15644 F:      fs/qnx4/
15645 F:      include/uapi/linux/qnx4_fs.h
15646 F:      include/uapi/linux/qnxtypes.h
15647
15648 QORIQ DPAA2 FSL-MC BUS DRIVER
15649 M:      Stuart Yoder <stuyoder@gmail.com>
15650 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
15651 L:      linux-kernel@vger.kernel.org
15652 S:      Maintained
15653 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
15654 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15655 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15656 F:      drivers/bus/fsl-mc/
15657 F:      include/uapi/linux/fsl_mc.h
15658
15659 QT1010 MEDIA DRIVER
15660 M:      Antti Palosaari <crope@iki.fi>
15661 L:      linux-media@vger.kernel.org
15662 S:      Maintained
15663 W:      https://linuxtv.org
15664 W:      http://palosaari.fi/linux/
15665 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15666 T:      git git://linuxtv.org/anttip/media_tree.git
15667 F:      drivers/media/tuners/qt1010*
15668
15669 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15670 M:      Kalle Valo <kvalo@codeaurora.org>
15671 L:      ath10k@lists.infradead.org
15672 S:      Supported
15673 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15675 F:      drivers/net/wireless/ath/ath10k/
15676
15677 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15678 M:      Kalle Valo <kvalo@codeaurora.org>
15679 L:      ath11k@lists.infradead.org
15680 S:      Supported
15681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15682 F:      drivers/net/wireless/ath/ath11k/
15683
15684 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15685 M:      ath9k-devel@qca.qualcomm.com
15686 L:      linux-wireless@vger.kernel.org
15687 S:      Supported
15688 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15689 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
15690 F:      drivers/net/wireless/ath/ath9k/
15691
15692 QUALCOMM CAMERA SUBSYSTEM DRIVER
15693 M:      Robert Foss <robert.foss@linaro.org>
15694 M:      Todor Tomov <todor.too@gmail.com>
15695 L:      linux-media@vger.kernel.org
15696 S:      Maintained
15697 F:      Documentation/admin-guide/media/qcom_camss.rst
15698 F:      Documentation/devicetree/bindings/media/*camss*
15699 F:      drivers/media/platform/qcom/camss/
15700
15701 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15702 M:      Niklas Cassel <nks@flawful.org>
15703 L:      linux-pm@vger.kernel.org
15704 L:      linux-arm-msm@vger.kernel.org
15705 S:      Maintained
15706 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15707 F:      drivers/soc/qcom/cpr.c
15708
15709 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15710 M:      Ilia Lin <ilia.lin@kernel.org>
15711 L:      linux-pm@vger.kernel.org
15712 S:      Maintained
15713 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15714 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
15715
15716 QUALCOMM CRYPTO DRIVERS
15717 M:      Thara Gopinath <thara.gopinath@linaro.org>
15718 L:      linux-crypto@vger.kernel.org
15719 L:      linux-arm-msm@vger.kernel.org
15720 S:      Maintained
15721 F:      drivers/crypto/qce/
15722
15723 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15724 M:      Timur Tabi <timur@kernel.org>
15725 L:      netdev@vger.kernel.org
15726 S:      Maintained
15727 F:      drivers/net/ethernet/qualcomm/emac/
15728
15729 QUALCOMM ETHQOS ETHERNET DRIVER
15730 M:      Vinod Koul <vkoul@kernel.org>
15731 L:      netdev@vger.kernel.org
15732 S:      Maintained
15733 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
15734 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15735
15736 QUALCOMM GENERIC INTERFACE I2C DRIVER
15737 M:      Akash Asthana <akashast@codeaurora.org>
15738 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
15739 L:      linux-i2c@vger.kernel.org
15740 L:      linux-arm-msm@vger.kernel.org
15741 S:      Supported
15742 F:      drivers/i2c/busses/i2c-qcom-geni.c
15743
15744 QUALCOMM HEXAGON ARCHITECTURE
15745 M:      Brian Cain <bcain@codeaurora.org>
15746 L:      linux-hexagon@vger.kernel.org
15747 S:      Supported
15748 F:      arch/hexagon/
15749
15750 QUALCOMM HIDMA DRIVER
15751 M:      Sinan Kaya <okaya@kernel.org>
15752 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15753 L:      linux-arm-msm@vger.kernel.org
15754 L:      dmaengine@vger.kernel.org
15755 S:      Supported
15756 F:      drivers/dma/qcom/hidma*
15757
15758 QUALCOMM I2C CCI DRIVER
15759 M:      Loic Poulain <loic.poulain@linaro.org>
15760 M:      Robert Foss <robert.foss@linaro.org>
15761 L:      linux-i2c@vger.kernel.org
15762 L:      linux-arm-msm@vger.kernel.org
15763 S:      Maintained
15764 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15765 F:      drivers/i2c/busses/i2c-qcom-cci.c
15766
15767 QUALCOMM IOMMU
15768 M:      Rob Clark <robdclark@gmail.com>
15769 L:      iommu@lists.linux-foundation.org
15770 L:      linux-arm-msm@vger.kernel.org
15771 S:      Maintained
15772 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
15773
15774 QUALCOMM IPC ROUTER (QRTR) DRIVER
15775 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15776 L:      linux-arm-msm@vger.kernel.org
15777 S:      Maintained
15778 F:      include/trace/events/qrtr.h
15779 F:      include/uapi/linux/qrtr.h
15780 F:      net/qrtr/
15781
15782 QUALCOMM IPCC MAILBOX DRIVER
15783 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15784 L:      linux-arm-msm@vger.kernel.org
15785 S:      Supported
15786 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15787 F:      drivers/mailbox/qcom-ipcc.c
15788 F:      include/dt-bindings/mailbox/qcom-ipcc.h
15789
15790 QUALCOMM IPQ4019 USB PHY DRIVER
15791 M:      Robert Marko <robert.marko@sartura.hr>
15792 M:      Luka Perkov <luka.perkov@sartura.hr>
15793 L:      linux-arm-msm@vger.kernel.org
15794 S:      Maintained
15795 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15796 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15797
15798 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15799 M:      Robert Marko <robert.marko@sartura.hr>
15800 M:      Luka Perkov <luka.perkov@sartura.hr>
15801 L:      linux-arm-msm@vger.kernel.org
15802 S:      Maintained
15803 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15804 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
15805
15806 QUALCOMM RMNET DRIVER
15807 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15808 M:      Sean Tranchetti <stranche@codeaurora.org>
15809 L:      netdev@vger.kernel.org
15810 S:      Maintained
15811 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15812 F:      drivers/net/ethernet/qualcomm/rmnet/
15813 F:      include/linux/if_rmnet.h
15814
15815 QUALCOMM TSENS THERMAL DRIVER
15816 M:      Amit Kucheria <amitk@kernel.org>
15817 M:      Thara Gopinath <thara.gopinath@linaro.org>
15818 L:      linux-pm@vger.kernel.org
15819 L:      linux-arm-msm@vger.kernel.org
15820 S:      Maintained
15821 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15822 F:      drivers/thermal/qcom/
15823
15824 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15825 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
15826 L:      linux-media@vger.kernel.org
15827 L:      linux-arm-msm@vger.kernel.org
15828 S:      Maintained
15829 T:      git git://linuxtv.org/media_tree.git
15830 F:      Documentation/devicetree/bindings/media/*venus*
15831 F:      drivers/media/platform/qcom/venus/
15832
15833 QUALCOMM WCN36XX WIRELESS DRIVER
15834 M:      Kalle Valo <kvalo@codeaurora.org>
15835 L:      wcn36xx@lists.infradead.org
15836 S:      Supported
15837 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15838 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
15839 F:      drivers/net/wireless/ath/wcn36xx/
15840
15841 QUANTENNA QTNFMAC WIRELESS DRIVER
15842 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
15843 R:      Sergey Matyukevich <geomatsi@gmail.com>
15844 L:      linux-wireless@vger.kernel.org
15845 S:      Maintained
15846 F:      drivers/net/wireless/quantenna
15847
15848 RADEON and AMDGPU DRM DRIVERS
15849 M:      Alex Deucher <alexander.deucher@amd.com>
15850 M:      Christian König <christian.koenig@amd.com>
15851 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
15852 L:      amd-gfx@lists.freedesktop.org
15853 S:      Supported
15854 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
15855 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
15856 C:      irc://irc.oftc.net/radeon
15857 F:      drivers/gpu/drm/amd/
15858 F:      drivers/gpu/drm/radeon/
15859 F:      include/uapi/drm/amdgpu_drm.h
15860 F:      include/uapi/drm/radeon_drm.h
15861
15862 RADEON FRAMEBUFFER DISPLAY DRIVER
15863 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
15864 L:      linux-fbdev@vger.kernel.org
15865 S:      Maintained
15866 F:      drivers/video/fbdev/aty/radeon*
15867 F:      include/uapi/linux/radeonfb.h
15868
15869 RADIOSHARK RADIO DRIVER
15870 M:      Hans Verkuil <hverkuil@xs4all.nl>
15871 L:      linux-media@vger.kernel.org
15872 S:      Maintained
15873 T:      git git://linuxtv.org/media_tree.git
15874 F:      drivers/media/radio/radio-shark.c
15875
15876 RADIOSHARK2 RADIO DRIVER
15877 M:      Hans Verkuil <hverkuil@xs4all.nl>
15878 L:      linux-media@vger.kernel.org
15879 S:      Maintained
15880 T:      git git://linuxtv.org/media_tree.git
15881 F:      drivers/media/radio/radio-shark2.c
15882 F:      drivers/media/radio/radio-tea5777.c
15883
15884 RADOS BLOCK DEVICE (RBD)
15885 M:      Ilya Dryomov <idryomov@gmail.com>
15886 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
15887 L:      ceph-devel@vger.kernel.org
15888 S:      Supported
15889 W:      http://ceph.com/
15890 T:      git git://github.com/ceph/ceph-client.git
15891 F:      Documentation/ABI/testing/sysfs-bus-rbd
15892 F:      drivers/block/rbd.c
15893 F:      drivers/block/rbd_types.h
15894
15895 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15896 M:      Paul Mackerras <paulus@samba.org>
15897 L:      linux-fbdev@vger.kernel.org
15898 S:      Maintained
15899 F:      drivers/video/fbdev/aty/aty128fb.c
15900
15901 RAINSHADOW-CEC DRIVER
15902 M:      Hans Verkuil <hverkuil@xs4all.nl>
15903 L:      linux-media@vger.kernel.org
15904 S:      Maintained
15905 T:      git git://linuxtv.org/media_tree.git
15906 F:      drivers/media/cec/usb/rainshadow/
15907
15908 RALINK MIPS ARCHITECTURE
15909 M:      John Crispin <john@phrozen.org>
15910 L:      linux-mips@vger.kernel.org
15911 S:      Maintained
15912 F:      arch/mips/ralink
15913
15914 RALINK RT2X00 WIRELESS LAN DRIVER
15915 M:      Stanislaw Gruszka <stf_xl@wp.pl>
15916 M:      Helmut Schaa <helmut.schaa@googlemail.com>
15917 L:      linux-wireless@vger.kernel.org
15918 S:      Maintained
15919 F:      drivers/net/wireless/ralink/rt2x00/
15920
15921 RAMDISK RAM BLOCK DEVICE DRIVER
15922 M:      Jens Axboe <axboe@kernel.dk>
15923 S:      Maintained
15924 F:      Documentation/admin-guide/blockdev/ramdisk.rst
15925 F:      drivers/block/brd.c
15926
15927 RANCHU VIRTUAL BOARD FOR MIPS
15928 M:      Miodrag Dinic <miodrag.dinic@mips.com>
15929 L:      linux-mips@vger.kernel.org
15930 S:      Supported
15931 F:      arch/mips/configs/generic/board-ranchu.config
15932 F:      arch/mips/generic/board-ranchu.c
15933
15934 RANDOM NUMBER DRIVER
15935 M:      "Theodore Ts'o" <tytso@mit.edu>
15936 S:      Maintained
15937 F:      drivers/char/random.c
15938
15939 RAPIDIO SUBSYSTEM
15940 M:      Matt Porter <mporter@kernel.crashing.org>
15941 M:      Alexandre Bounine <alex.bou9@gmail.com>
15942 S:      Maintained
15943 F:      drivers/rapidio/
15944
15945 RAS INFRASTRUCTURE
15946 M:      Tony Luck <tony.luck@intel.com>
15947 M:      Borislav Petkov <bp@alien8.de>
15948 L:      linux-edac@vger.kernel.org
15949 S:      Maintained
15950 F:      Documentation/admin-guide/ras.rst
15951 F:      drivers/ras/
15952 F:      include/linux/ras.h
15953 F:      include/ras/ras_event.h
15954
15955 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15956 L:      linux-wireless@vger.kernel.org
15957 S:      Orphan
15958 F:      drivers/net/wireless/ray*
15959
15960 RC-CORE / LIRC FRAMEWORK
15961 M:      Sean Young <sean@mess.org>
15962 L:      linux-media@vger.kernel.org
15963 S:      Maintained
15964 W:      http://linuxtv.org
15965 T:      git git://linuxtv.org/media_tree.git
15966 F:      Documentation/driver-api/media/rc-core.rst
15967 F:      Documentation/userspace-api/media/rc/
15968 F:      drivers/media/rc/
15969 F:      include/media/rc-map.h
15970 F:      include/media/rc-core.h
15971 F:      include/uapi/linux/lirc.h
15972
15973 RCMM REMOTE CONTROLS DECODER
15974 M:      Patrick Lerda <patrick9876@free.fr>
15975 S:      Maintained
15976 F:      drivers/media/rc/ir-rcmm-decoder.c
15977
15978 RCUTORTURE TEST FRAMEWORK
15979 M:      "Paul E. McKenney" <paulmck@kernel.org>
15980 M:      Josh Triplett <josh@joshtriplett.org>
15981 R:      Steven Rostedt <rostedt@goodmis.org>
15982 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15983 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15984 L:      rcu@vger.kernel.org
15985 S:      Supported
15986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15987 F:      tools/testing/selftests/rcutorture
15988
15989 RDACM20 Camera Sensor
15990 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15991 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15992 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15993 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15994 L:      linux-media@vger.kernel.org
15995 S:      Maintained
15996 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15997 F:      drivers/media/i2c/max9271.c
15998 F:      drivers/media/i2c/max9271.h
15999 F:      drivers/media/i2c/rdacm20.c
16000
16001 RDACM21 Camera Sensor
16002 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16003 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16004 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16005 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16006 L:      linux-media@vger.kernel.org
16007 S:      Maintained
16008 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16009 F:      drivers/media/i2c/max9271.c
16010 F:      drivers/media/i2c/max9271.h
16011 F:      drivers/media/i2c/rdacm21.c
16012
16013 RDC R-321X SoC
16014 M:      Florian Fainelli <florian@openwrt.org>
16015 S:      Maintained
16016
16017 RDC R6040 FAST ETHERNET DRIVER
16018 M:      Florian Fainelli <f.fainelli@gmail.com>
16019 L:      netdev@vger.kernel.org
16020 S:      Maintained
16021 F:      drivers/net/ethernet/rdc/r6040.c
16022
16023 RDMAVT - RDMA verbs software
16024 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16025 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
16026 L:      linux-rdma@vger.kernel.org
16027 S:      Supported
16028 F:      drivers/infiniband/sw/rdmavt
16029
16030 RDS - RELIABLE DATAGRAM SOCKETS
16031 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
16032 L:      netdev@vger.kernel.org
16033 L:      linux-rdma@vger.kernel.org
16034 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
16035 S:      Supported
16036 W:      https://oss.oracle.com/projects/rds/
16037 F:      Documentation/networking/rds.rst
16038 F:      net/rds/
16039
16040 RDT - RESOURCE ALLOCATION
16041 M:      Fenghua Yu <fenghua.yu@intel.com>
16042 M:      Reinette Chatre <reinette.chatre@intel.com>
16043 L:      linux-kernel@vger.kernel.org
16044 S:      Supported
16045 F:      Documentation/x86/resctrl*
16046 F:      arch/x86/include/asm/resctrl.h
16047 F:      arch/x86/kernel/cpu/resctrl/
16048 F:      tools/testing/selftests/resctrl/
16049
16050 READ-COPY UPDATE (RCU)
16051 M:      "Paul E. McKenney" <paulmck@kernel.org>
16052 M:      Josh Triplett <josh@joshtriplett.org>
16053 R:      Steven Rostedt <rostedt@goodmis.org>
16054 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16055 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16056 R:      Joel Fernandes <joel@joelfernandes.org>
16057 L:      rcu@vger.kernel.org
16058 S:      Supported
16059 W:      http://www.rdrop.com/users/paulmck/RCU/
16060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16061 F:      Documentation/RCU/
16062 F:      include/linux/rcu*
16063 F:      kernel/rcu/
16064 X:      Documentation/RCU/torture.rst
16065 X:      include/linux/srcu*.h
16066 X:      kernel/rcu/srcu*.c
16067
16068 REAL TIME CLOCK (RTC) SUBSYSTEM
16069 M:      Alessandro Zummo <a.zummo@towertech.it>
16070 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
16071 L:      linux-rtc@vger.kernel.org
16072 S:      Maintained
16073 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
16074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
16075 F:      Documentation/admin-guide/rtc.rst
16076 F:      Documentation/devicetree/bindings/rtc/
16077 F:      drivers/rtc/
16078 F:      include/linux/platform_data/rtc-*
16079 F:      include/linux/rtc.h
16080 F:      include/linux/rtc/
16081 F:      include/uapi/linux/rtc.h
16082 F:      tools/testing/selftests/rtc/
16083
16084 REALTEK AUDIO CODECS
16085 M:      Oder Chiou <oder_chiou@realtek.com>
16086 S:      Maintained
16087 F:      include/sound/rt*.h
16088 F:      sound/soc/codecs/rt*
16089
16090 REALTEK RTL83xx SMI DSA ROUTER CHIPS
16091 M:      Linus Walleij <linus.walleij@linaro.org>
16092 S:      Maintained
16093 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
16094 F:      drivers/net/dsa/realtek-smi*
16095 F:      drivers/net/dsa/rtl83*
16096
16097 REALTEK WIRELESS DRIVER (rtlwifi family)
16098 M:      Ping-Ke Shih <pkshih@realtek.com>
16099 L:      linux-wireless@vger.kernel.org
16100 S:      Maintained
16101 W:      https://wireless.wiki.kernel.org/
16102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16103 F:      drivers/net/wireless/realtek/rtlwifi/
16104
16105 REALTEK WIRELESS DRIVER (rtw88)
16106 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
16107 L:      linux-wireless@vger.kernel.org
16108 S:      Maintained
16109 F:      drivers/net/wireless/realtek/rtw88/
16110
16111 REALTEK WIRELESS DRIVER (rtw89)
16112 M:      Ping-Ke Shih <pkshih@realtek.com>
16113 L:      linux-wireless@vger.kernel.org
16114 S:      Maintained
16115 F:      drivers/net/wireless/realtek/rtw89/
16116
16117 REDPINE WIRELESS DRIVER
16118 M:      Amitkumar Karwar <amitkarwar@gmail.com>
16119 M:      Siva Rebbagondla <siva8118@gmail.com>
16120 L:      linux-wireless@vger.kernel.org
16121 S:      Maintained
16122 F:      drivers/net/wireless/rsi/
16123
16124 REGISTER MAP ABSTRACTION
16125 M:      Mark Brown <broonie@kernel.org>
16126 L:      linux-kernel@vger.kernel.org
16127 S:      Supported
16128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
16129 F:      Documentation/devicetree/bindings/regmap/
16130 F:      drivers/base/regmap/
16131 F:      include/linux/regmap.h
16132
16133 REISERFS FILE SYSTEM
16134 L:      reiserfs-devel@vger.kernel.org
16135 S:      Supported
16136 F:      fs/reiserfs/
16137
16138 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
16139 M:      Ohad Ben-Cohen <ohad@wizery.com>
16140 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16141 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16142 L:      linux-remoteproc@vger.kernel.org
16143 S:      Maintained
16144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
16145 F:      Documentation/ABI/testing/sysfs-class-remoteproc
16146 F:      Documentation/devicetree/bindings/remoteproc/
16147 F:      Documentation/staging/remoteproc.rst
16148 F:      drivers/remoteproc/
16149 F:      include/linux/remoteproc.h
16150 F:      include/linux/remoteproc/
16151
16152 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
16153 M:      Ohad Ben-Cohen <ohad@wizery.com>
16154 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16155 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16156 L:      linux-remoteproc@vger.kernel.org
16157 S:      Maintained
16158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
16159 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
16160 F:      Documentation/staging/rpmsg.rst
16161 F:      drivers/rpmsg/
16162 F:      include/linux/rpmsg.h
16163 F:      include/linux/rpmsg/
16164 F:      include/uapi/linux/rpmsg.h
16165 F:      samples/rpmsg/
16166
16167 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
16168 M:      Stephan Gerhold <stephan@gerhold.net>
16169 L:      netdev@vger.kernel.org
16170 L:      linux-remoteproc@vger.kernel.org
16171 S:      Maintained
16172 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
16173
16174 RENESAS CLOCK DRIVERS
16175 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16176 L:      linux-renesas-soc@vger.kernel.org
16177 S:      Supported
16178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16179 F:      Documentation/devicetree/bindings/clock/renesas,*
16180 F:      drivers/clk/renesas/
16181
16182 RENESAS EMEV2 I2C DRIVER
16183 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16184 L:      linux-renesas-soc@vger.kernel.org
16185 S:      Supported
16186 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16187 F:      drivers/i2c/busses/i2c-emev2.c
16188
16189 RENESAS ETHERNET DRIVERS
16190 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16191 L:      netdev@vger.kernel.org
16192 L:      linux-renesas-soc@vger.kernel.org
16193 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
16194 F:      drivers/net/ethernet/renesas/
16195 F:      include/linux/sh_eth.h
16196
16197 RENESAS R-CAR GYROADC DRIVER
16198 M:      Marek Vasut <marek.vasut@gmail.com>
16199 L:      linux-iio@vger.kernel.org
16200 S:      Supported
16201 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16202 F:      drivers/iio/adc/rcar-gyroadc.c
16203
16204 RENESAS R-CAR I2C DRIVERS
16205 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16206 L:      linux-renesas-soc@vger.kernel.org
16207 S:      Supported
16208 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16209 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16210 F:      drivers/i2c/busses/i2c-rcar.c
16211 F:      drivers/i2c/busses/i2c-sh_mobile.c
16212
16213 RENESAS R-CAR THERMAL DRIVERS
16214 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
16215 L:      linux-renesas-soc@vger.kernel.org
16216 S:      Supported
16217 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16218 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16219 F:      drivers/thermal/rcar_gen3_thermal.c
16220 F:      drivers/thermal/rcar_thermal.c
16221
16222 RENESAS RIIC DRIVER
16223 M:      Chris Brandt <chris.brandt@renesas.com>
16224 L:      linux-renesas-soc@vger.kernel.org
16225 S:      Supported
16226 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16227 F:      drivers/i2c/busses/i2c-riic.c
16228
16229 RENESAS USB PHY DRIVER
16230 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16231 L:      linux-renesas-soc@vger.kernel.org
16232 S:      Maintained
16233 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
16234
16235 RENESAS RZ/G2L A/D DRIVER
16236 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16237 L:      linux-iio@vger.kernel.org
16238 L:      linux-renesas-soc@vger.kernel.org
16239 S:      Supported
16240 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16241 F:      drivers/iio/adc/rzg2l_adc.c
16242
16243 RESET CONTROLLER FRAMEWORK
16244 M:      Philipp Zabel <p.zabel@pengutronix.de>
16245 S:      Maintained
16246 T:      git git://git.pengutronix.de/git/pza/linux
16247 F:      Documentation/devicetree/bindings/reset/
16248 F:      Documentation/driver-api/reset.rst
16249 F:      drivers/reset/
16250 F:      include/dt-bindings/reset/
16251 F:      include/linux/reset-controller.h
16252 F:      include/linux/reset.h
16253 F:      include/linux/reset/
16254 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16255
16256 RESTARTABLE SEQUENCES SUPPORT
16257 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16258 M:      Peter Zijlstra <peterz@infradead.org>
16259 M:      "Paul E. McKenney" <paulmck@kernel.org>
16260 M:      Boqun Feng <boqun.feng@gmail.com>
16261 L:      linux-kernel@vger.kernel.org
16262 S:      Supported
16263 F:      include/trace/events/rseq.h
16264 F:      include/uapi/linux/rseq.h
16265 F:      kernel/rseq.c
16266 F:      tools/testing/selftests/rseq/
16267
16268 RFKILL
16269 M:      Johannes Berg <johannes@sipsolutions.net>
16270 L:      linux-wireless@vger.kernel.org
16271 S:      Maintained
16272 W:      https://wireless.wiki.kernel.org/
16273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
16274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
16275 F:      Documentation/ABI/stable/sysfs-class-rfkill
16276 F:      Documentation/driver-api/rfkill.rst
16277 F:      include/linux/rfkill.h
16278 F:      include/uapi/linux/rfkill.h
16279 F:      net/rfkill/
16280
16281 RHASHTABLE
16282 M:      Thomas Graf <tgraf@suug.ch>
16283 M:      Herbert Xu <herbert@gondor.apana.org.au>
16284 L:      netdev@vger.kernel.org
16285 S:      Maintained
16286 F:      include/linux/rhashtable-types.h
16287 F:      include/linux/rhashtable.h
16288 F:      lib/rhashtable.c
16289 F:      lib/test_rhashtable.c
16290
16291 RICOH R5C592 MEMORYSTICK DRIVER
16292 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16293 S:      Maintained
16294 F:      drivers/memstick/host/r592.*
16295
16296 RICOH SMARTMEDIA/XD DRIVER
16297 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16298 S:      Maintained
16299 F:      drivers/mtd/nand/raw/r852.c
16300 F:      drivers/mtd/nand/raw/r852.h
16301
16302 RISC-V ARCHITECTURE
16303 M:      Paul Walmsley <paul.walmsley@sifive.com>
16304 M:      Palmer Dabbelt <palmer@dabbelt.com>
16305 M:      Albert Ou <aou@eecs.berkeley.edu>
16306 L:      linux-riscv@lists.infradead.org
16307 S:      Supported
16308 P:      Documentation/riscv/patch-acceptance.rst
16309 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16310 F:      arch/riscv/
16311 N:      riscv
16312 K:      riscv
16313
16314 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16315 M:      Lewis Hanly <lewis.hanly@microchip.com>
16316 L:      linux-riscv@lists.infradead.org
16317 S:      Supported
16318 F:      drivers/mailbox/mailbox-mpfs.c
16319 F:      drivers/soc/microchip/
16320 F:      include/soc/microchip/mpfs.h
16321
16322 RNBD BLOCK DRIVERS
16323 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16324 M:      Jack Wang <jinpu.wang@ionos.com>
16325 L:      linux-block@vger.kernel.org
16326 S:      Maintained
16327 F:      drivers/block/rnbd/
16328
16329 ROCCAT DRIVERS
16330 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
16331 S:      Maintained
16332 W:      http://sourceforge.net/projects/roccat/
16333 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
16334 F:      drivers/hid/hid-roccat*
16335 F:      include/linux/hid-roccat*
16336
16337 ROCKCHIP I2S TDM DRIVER
16338 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
16339 L:      linux-rockchip@lists.infradead.org
16340 S:      Maintained
16341 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
16342 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
16343
16344 ROCKCHIP ISP V1 DRIVER
16345 M:      Helen Koike <helen.koike@collabora.com>
16346 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
16347 L:      linux-media@vger.kernel.org
16348 L:      linux-rockchip@lists.infradead.org
16349 S:      Maintained
16350 F:      Documentation/admin-guide/media/rkisp1.rst
16351 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16352 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16353 F:      drivers/media/platform/rockchip/rkisp1
16354 F:      include/uapi/linux/rkisp1-config.h
16355
16356 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16357 M:      Jacob Chen <jacob-chen@iotwrt.com>
16358 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16359 L:      linux-media@vger.kernel.org
16360 L:      linux-rockchip@lists.infradead.org
16361 S:      Maintained
16362 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
16363 F:      drivers/media/platform/rockchip/rga/
16364
16365 ROCKCHIP VIDEO DECODER DRIVER
16366 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16367 L:      linux-media@vger.kernel.org
16368 L:      linux-rockchip@lists.infradead.org
16369 S:      Maintained
16370 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
16371 F:      drivers/staging/media/rkvdec/
16372
16373 ROCKER DRIVER
16374 M:      Jiri Pirko <jiri@resnulli.us>
16375 L:      netdev@vger.kernel.org
16376 S:      Supported
16377 F:      drivers/net/ethernet/rocker/
16378
16379 ROCKETPORT EXPRESS/INFINITY DRIVER
16380 M:      Kevin Cernekee <cernekee@gmail.com>
16381 L:      linux-serial@vger.kernel.org
16382 S:      Odd Fixes
16383 F:      drivers/tty/serial/rp2.*
16384
16385 ROHM BD99954 CHARGER IC
16386 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16387 L:      linux-power@fi.rohmeurope.com
16388 S:      Supported
16389 F:      drivers/power/supply/bd99954-charger.c
16390 F:      drivers/power/supply/bd99954-charger.h
16391
16392 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16393 M:      Tomasz Duszynski <tduszyns@gmail.com>
16394 S:      Maintained
16395 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
16396 F:      drivers/iio/light/bh1750.c
16397
16398 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16399 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
16400 L:      linux-kernel@vger.kernel.org
16401 L:      linux-renesas-soc@vger.kernel.org
16402 S:      Supported
16403 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
16404 F:      drivers/gpio/gpio-bd9571mwv.c
16405 F:      drivers/mfd/bd9571mwv.c
16406 F:      drivers/regulator/bd9571mwv-regulator.c
16407 F:      include/linux/mfd/bd9571mwv.h
16408
16409 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16410 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16411 L:      linux-power@fi.rohmeurope.com
16412 S:      Supported
16413 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
16414 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
16415 F:      drivers/clk/clk-bd718x7.c
16416 F:      drivers/gpio/gpio-bd70528.c
16417 F:      drivers/gpio/gpio-bd71815.c
16418 F:      drivers/gpio/gpio-bd71828.c
16419 F:      drivers/mfd/rohm-bd70528.c
16420 F:      drivers/mfd/rohm-bd71828.c
16421 F:      drivers/mfd/rohm-bd718x7.c
16422 F:      drivers/mfd/rohm-bd9576.c
16423 F:      drivers/power/supply/bd70528-charger.c
16424 F:      drivers/regulator/bd70528-regulator.c
16425 F:      drivers/regulator/bd71815-regulator.c
16426 F:      drivers/regulator/bd71828-regulator.c
16427 F:      drivers/regulator/bd718x7-regulator.c
16428 F:      drivers/regulator/bd9576-regulator.c
16429 F:      drivers/regulator/rohm-regulator.c
16430 F:      drivers/rtc/rtc-bd70528.c
16431 F:      drivers/watchdog/bd70528_wdt.c
16432 F:      drivers/watchdog/bd9576_wdt.c
16433 F:      include/linux/mfd/rohm-bd70528.h
16434 F:      include/linux/mfd/rohm-bd71815.h
16435 F:      include/linux/mfd/rohm-bd71828.h
16436 F:      include/linux/mfd/rohm-bd718x7.h
16437 F:      include/linux/mfd/rohm-bd957x.h
16438 F:      include/linux/mfd/rohm-generic.h
16439 F:      include/linux/mfd/rohm-shared.h
16440
16441 ROSE NETWORK LAYER
16442 M:      Ralf Baechle <ralf@linux-mips.org>
16443 L:      linux-hams@vger.kernel.org
16444 S:      Maintained
16445 W:      http://www.linux-ax25.org/
16446 F:      include/net/rose.h
16447 F:      include/uapi/linux/rose.h
16448 F:      net/rose/
16449
16450 ROTATION DRIVER FOR ALLWINNER A83T
16451 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
16452 L:      linux-media@vger.kernel.org
16453 S:      Maintained
16454 T:      git git://linuxtv.org/media_tree.git
16455 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16456 F:      drivers/media/platform/sunxi/sun8i-rotate/
16457
16458 RTL2830 MEDIA DRIVER
16459 M:      Antti Palosaari <crope@iki.fi>
16460 L:      linux-media@vger.kernel.org
16461 S:      Maintained
16462 W:      https://linuxtv.org
16463 W:      http://palosaari.fi/linux/
16464 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16465 T:      git git://linuxtv.org/anttip/media_tree.git
16466 F:      drivers/media/dvb-frontends/rtl2830*
16467
16468 RTL2832 MEDIA DRIVER
16469 M:      Antti Palosaari <crope@iki.fi>
16470 L:      linux-media@vger.kernel.org
16471 S:      Maintained
16472 W:      https://linuxtv.org
16473 W:      http://palosaari.fi/linux/
16474 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16475 T:      git git://linuxtv.org/anttip/media_tree.git
16476 F:      drivers/media/dvb-frontends/rtl2832*
16477
16478 RTL2832_SDR MEDIA DRIVER
16479 M:      Antti Palosaari <crope@iki.fi>
16480 L:      linux-media@vger.kernel.org
16481 S:      Maintained
16482 W:      https://linuxtv.org
16483 W:      http://palosaari.fi/linux/
16484 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16485 T:      git git://linuxtv.org/anttip/media_tree.git
16486 F:      drivers/media/dvb-frontends/rtl2832_sdr*
16487
16488 RTL8180 WIRELESS DRIVER
16489 L:      linux-wireless@vger.kernel.org
16490 S:      Orphan
16491 W:      https://wireless.wiki.kernel.org/
16492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16493 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
16494
16495 RTL8187 WIRELESS DRIVER
16496 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16497 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
16498 M:      Larry Finger <Larry.Finger@lwfinger.net>
16499 L:      linux-wireless@vger.kernel.org
16500 S:      Maintained
16501 W:      https://wireless.wiki.kernel.org/
16502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16503 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
16504
16505 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16506 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
16507 L:      linux-wireless@vger.kernel.org
16508 S:      Maintained
16509 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16510 F:      drivers/net/wireless/realtek/rtl8xxxu/
16511
16512 RTRS TRANSPORT DRIVERS
16513 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16514 M:      Jack Wang <jinpu.wang@ionos.com>
16515 L:      linux-rdma@vger.kernel.org
16516 S:      Maintained
16517 F:      drivers/infiniband/ulp/rtrs/
16518
16519 RXRPC SOCKETS (AF_RXRPC)
16520 M:      David Howells <dhowells@redhat.com>
16521 M:      Marc Dionne <marc.dionne@auristor.com>
16522 L:      linux-afs@lists.infradead.org
16523 S:      Supported
16524 W:      https://www.infradead.org/~dhowells/kafs/
16525 F:      Documentation/networking/rxrpc.rst
16526 F:      include/keys/rxrpc-type.h
16527 F:      include/net/af_rxrpc.h
16528 F:      include/trace/events/rxrpc.h
16529 F:      include/uapi/linux/rxrpc.h
16530 F:      net/rxrpc/
16531
16532 S3 SAVAGE FRAMEBUFFER DRIVER
16533 M:      Antonino Daplas <adaplas@gmail.com>
16534 L:      linux-fbdev@vger.kernel.org
16535 S:      Maintained
16536 F:      drivers/video/fbdev/savage/
16537
16538 S390
16539 M:      Heiko Carstens <hca@linux.ibm.com>
16540 M:      Vasily Gorbik <gor@linux.ibm.com>
16541 M:      Christian Borntraeger <borntraeger@de.ibm.com>
16542 R:      Alexander Gordeev <agordeev@linux.ibm.com>
16543 L:      linux-s390@vger.kernel.org
16544 S:      Supported
16545 W:      http://www.ibm.com/developerworks/linux/linux390/
16546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16547 F:      Documentation/driver-api/s390-drivers.rst
16548 F:      Documentation/s390/
16549 F:      arch/s390/
16550 F:      drivers/s390/
16551
16552 S390 COMMON I/O LAYER
16553 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
16554 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
16555 L:      linux-s390@vger.kernel.org
16556 S:      Supported
16557 W:      http://www.ibm.com/developerworks/linux/linux390/
16558 F:      drivers/s390/cio/
16559
16560 S390 DASD DRIVER
16561 M:      Stefan Haberland <sth@linux.ibm.com>
16562 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
16563 L:      linux-s390@vger.kernel.org
16564 S:      Supported
16565 W:      http://www.ibm.com/developerworks/linux/linux390/
16566 F:      block/partitions/ibm.c
16567 F:      drivers/s390/block/dasd*
16568 F:      include/linux/dasd_mod.h
16569
16570 S390 IOMMU (PCI)
16571 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16572 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16573 L:      linux-s390@vger.kernel.org
16574 S:      Supported
16575 W:      http://www.ibm.com/developerworks/linux/linux390/
16576 F:      drivers/iommu/s390-iommu.c
16577
16578 S390 IUCV NETWORK LAYER
16579 M:      Julian Wiedmann <jwi@linux.ibm.com>
16580 M:      Karsten Graul <kgraul@linux.ibm.com>
16581 L:      linux-s390@vger.kernel.org
16582 L:      netdev@vger.kernel.org
16583 S:      Supported
16584 W:      http://www.ibm.com/developerworks/linux/linux390/
16585 F:      drivers/s390/net/*iucv*
16586 F:      include/net/iucv/
16587 F:      net/iucv/
16588
16589 S390 NETWORK DRIVERS
16590 M:      Julian Wiedmann <jwi@linux.ibm.com>
16591 M:      Karsten Graul <kgraul@linux.ibm.com>
16592 L:      linux-s390@vger.kernel.org
16593 L:      netdev@vger.kernel.org
16594 S:      Supported
16595 W:      http://www.ibm.com/developerworks/linux/linux390/
16596 F:      drivers/s390/net/
16597
16598 S390 PCI SUBSYSTEM
16599 M:      Niklas Schnelle <schnelle@linux.ibm.com>
16600 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16601 L:      linux-s390@vger.kernel.org
16602 S:      Supported
16603 W:      http://www.ibm.com/developerworks/linux/linux390/
16604 F:      arch/s390/pci/
16605 F:      drivers/pci/hotplug/s390_pci_hpc.c
16606 F:      Documentation/s390/pci.rst
16607
16608 S390 VFIO AP DRIVER
16609 M:      Tony Krowiak <akrowiak@linux.ibm.com>
16610 M:      Halil Pasic <pasic@linux.ibm.com>
16611 M:      Jason Herne <jjherne@linux.ibm.com>
16612 L:      linux-s390@vger.kernel.org
16613 S:      Supported
16614 W:      http://www.ibm.com/developerworks/linux/linux390/
16615 F:      Documentation/s390/vfio-ap.rst
16616 F:      drivers/s390/crypto/vfio_ap_drv.c
16617 F:      drivers/s390/crypto/vfio_ap_ops.c
16618 F:      drivers/s390/crypto/vfio_ap_private.h
16619
16620 S390 VFIO-CCW DRIVER
16621 M:      Eric Farman <farman@linux.ibm.com>
16622 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16623 R:      Halil Pasic <pasic@linux.ibm.com>
16624 L:      linux-s390@vger.kernel.org
16625 L:      kvm@vger.kernel.org
16626 S:      Supported
16627 F:      Documentation/s390/vfio-ccw.rst
16628 F:      drivers/s390/cio/vfio_ccw*
16629 F:      include/uapi/linux/vfio_ccw.h
16630
16631 S390 VFIO-PCI DRIVER
16632 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16633 M:      Eric Farman <farman@linux.ibm.com>
16634 L:      linux-s390@vger.kernel.org
16635 L:      kvm@vger.kernel.org
16636 S:      Supported
16637 F:      drivers/vfio/pci/vfio_pci_zdev.c
16638 F:      include/uapi/linux/vfio_zdev.h
16639
16640 S390 ZCRYPT DRIVER
16641 M:      Harald Freudenberger <freude@linux.ibm.com>
16642 L:      linux-s390@vger.kernel.org
16643 S:      Supported
16644 W:      http://www.ibm.com/developerworks/linux/linux390/
16645 F:      drivers/s390/crypto/
16646
16647 S390 ZFCP DRIVER
16648 M:      Steffen Maier <maier@linux.ibm.com>
16649 M:      Benjamin Block <bblock@linux.ibm.com>
16650 L:      linux-s390@vger.kernel.org
16651 S:      Supported
16652 W:      http://www.ibm.com/developerworks/linux/linux390/
16653 F:      drivers/s390/scsi/zfcp_*
16654
16655 S3C ADC BATTERY DRIVER
16656 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16657 L:      linux-samsung-soc@vger.kernel.org
16658 S:      Odd Fixes
16659 F:      drivers/power/supply/s3c_adc_battery.c
16660 F:      include/linux/s3c_adc_battery.h
16661
16662 S3C24XX SD/MMC Driver
16663 M:      Ben Dooks <ben-linux@fluff.org>
16664 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16665 S:      Supported
16666 F:      drivers/mmc/host/s3cmci.*
16667
16668 SAA6588 RDS RECEIVER DRIVER
16669 M:      Hans Verkuil <hverkuil@xs4all.nl>
16670 L:      linux-media@vger.kernel.org
16671 S:      Odd Fixes
16672 W:      https://linuxtv.org
16673 T:      git git://linuxtv.org/media_tree.git
16674 F:      drivers/media/i2c/saa6588*
16675
16676 SAA7134 VIDEO4LINUX DRIVER
16677 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16678 L:      linux-media@vger.kernel.org
16679 S:      Odd fixes
16680 W:      https://linuxtv.org
16681 T:      git git://linuxtv.org/media_tree.git
16682 F:      Documentation/driver-api/media/drivers/saa7134*
16683 F:      drivers/media/pci/saa7134/
16684
16685 SAA7146 VIDEO4LINUX-2 DRIVER
16686 M:      Hans Verkuil <hverkuil@xs4all.nl>
16687 L:      linux-media@vger.kernel.org
16688 S:      Maintained
16689 T:      git git://linuxtv.org/media_tree.git
16690 F:      drivers/media/common/saa7146/
16691 F:      drivers/media/pci/saa7146/
16692 F:      include/media/drv-intf/saa7146*
16693
16694 SAFESETID SECURITY MODULE
16695 M:      Micah Morton <mortonm@chromium.org>
16696 S:      Supported
16697 F:      Documentation/admin-guide/LSM/SafeSetID.rst
16698 F:      security/safesetid/
16699
16700 SAMSUNG AUDIO (ASoC) DRIVERS
16701 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16702 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16703 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16704 S:      Supported
16705 F:      Documentation/devicetree/bindings/sound/samsung*
16706 F:      sound/soc/samsung/
16707
16708 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16709 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16710 L:      linux-crypto@vger.kernel.org
16711 L:      linux-samsung-soc@vger.kernel.org
16712 S:      Maintained
16713 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16714 F:      drivers/crypto/exynos-rng.c
16715
16716 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16717 M:      Łukasz Stelmach <l.stelmach@samsung.com>
16718 L:      linux-samsung-soc@vger.kernel.org
16719 S:      Maintained
16720 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
16721 F:      drivers/char/hw_random/exynos-trng.c
16722
16723 SAMSUNG FRAMEBUFFER DRIVER
16724 M:      Jingoo Han <jingoohan1@gmail.com>
16725 L:      linux-fbdev@vger.kernel.org
16726 S:      Maintained
16727 F:      drivers/video/fbdev/s3c-fb.c
16728
16729 SAMSUNG INTERCONNECT DRIVERS
16730 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16731 M:      Artur Świgoń <a.swigon@samsung.com>
16732 L:      linux-pm@vger.kernel.org
16733 L:      linux-samsung-soc@vger.kernel.org
16734 S:      Supported
16735 F:      drivers/interconnect/samsung/
16736
16737 SAMSUNG LAPTOP DRIVER
16738 M:      Corentin Chary <corentin.chary@gmail.com>
16739 L:      platform-driver-x86@vger.kernel.org
16740 S:      Maintained
16741 F:      drivers/platform/x86/samsung-laptop.c
16742
16743 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16744 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16745 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16746 L:      linux-kernel@vger.kernel.org
16747 L:      linux-samsung-soc@vger.kernel.org
16748 S:      Supported
16749 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
16750 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16751 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
16752 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
16753 F:      drivers/clk/clk-s2mps11.c
16754 F:      drivers/mfd/sec*.c
16755 F:      drivers/regulator/s2m*.c
16756 F:      drivers/regulator/s5m*.c
16757 F:      drivers/rtc/rtc-s5m.c
16758 F:      include/linux/mfd/samsung/
16759
16760 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16761 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16762 L:      linux-media@vger.kernel.org
16763 L:      linux-samsung-soc@vger.kernel.org
16764 S:      Maintained
16765 F:      drivers/media/platform/s3c-camif/
16766 F:      include/media/drv-intf/s3c_camif.h
16767
16768 SAMSUNG S3FWRN5 NFC DRIVER
16769 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16770 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
16771 L:      linux-nfc@lists.01.org (subscribers-only)
16772 S:      Maintained
16773 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16774 F:      drivers/nfc/s3fwrn5
16775
16776 SAMSUNG S5C73M3 CAMERA DRIVER
16777 M:      Andrzej Hajda <a.hajda@samsung.com>
16778 L:      linux-media@vger.kernel.org
16779 S:      Supported
16780 F:      drivers/media/i2c/s5c73m3/*
16781
16782 SAMSUNG S5K5BAF CAMERA DRIVER
16783 M:      Andrzej Hajda <a.hajda@samsung.com>
16784 L:      linux-media@vger.kernel.org
16785 S:      Supported
16786 F:      drivers/media/i2c/s5k5baf.c
16787
16788 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16789 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16790 M:      Vladimir Zapolskiy <vz@mleia.com>
16791 L:      linux-crypto@vger.kernel.org
16792 L:      linux-samsung-soc@vger.kernel.org
16793 S:      Maintained
16794 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16795 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16796 F:      drivers/crypto/s5p-sss.c
16797
16798 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16799 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16800 L:      linux-media@vger.kernel.org
16801 S:      Supported
16802 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
16803 F:      drivers/media/platform/exynos4-is/
16804
16805 SAMSUNG SOC CLOCK DRIVERS
16806 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16807 M:      Tomasz Figa <tomasz.figa@gmail.com>
16808 M:      Chanwoo Choi <cw00.choi@samsung.com>
16809 L:      linux-samsung-soc@vger.kernel.org
16810 S:      Supported
16811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16812 F:      Documentation/devicetree/bindings/clock/exynos*.txt
16813 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
16814 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
16815 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
16816 F:      drivers/clk/samsung/
16817 F:      include/dt-bindings/clock/exynos*.h
16818 F:      include/dt-bindings/clock/s3c*.h
16819 F:      include/dt-bindings/clock/s5p*.h
16820 F:      include/dt-bindings/clock/samsung,*.h
16821 F:      include/linux/clk/samsung.h
16822 F:      include/linux/platform_data/clk-s3c2410.h
16823
16824 SAMSUNG SPI DRIVERS
16825 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16826 M:      Andi Shyti <andi@etezian.org>
16827 L:      linux-spi@vger.kernel.org
16828 L:      linux-samsung-soc@vger.kernel.org
16829 S:      Maintained
16830 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
16831 F:      drivers/spi/spi-s3c*
16832 F:      include/linux/platform_data/spi-s3c64xx.h
16833 F:      include/linux/spi/s3c24xx-fiq.h
16834
16835 SAMSUNG SXGBE DRIVERS
16836 M:      Byungho An <bh74.an@samsung.com>
16837 L:      netdev@vger.kernel.org
16838 S:      Supported
16839 F:      drivers/net/ethernet/samsung/sxgbe/
16840
16841 SAMSUNG THERMAL DRIVER
16842 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16843 L:      linux-pm@vger.kernel.org
16844 L:      linux-samsung-soc@vger.kernel.org
16845 S:      Supported
16846 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
16847 F:      drivers/thermal/samsung/
16848
16849 SAMSUNG USB2 PHY DRIVER
16850 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16851 L:      linux-kernel@vger.kernel.org
16852 S:      Supported
16853 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
16854 F:      Documentation/driver-api/phy/samsung-usb2.rst
16855 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
16856 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
16857 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
16858 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
16859 F:      drivers/phy/samsung/phy-samsung-usb2.c
16860 F:      drivers/phy/samsung/phy-samsung-usb2.h
16861
16862 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
16863 M:      Paul Barker <paul.barker@sancloud.com>
16864 R:      Marc Murphy <marc.murphy@sancloud.com>
16865 S:      Supported
16866 F:      arch/arm/boot/dts/am335x-sancloud*
16867
16868 SC1200 WDT DRIVER
16869 M:      Zwane Mwaikambo <zwanem@gmail.com>
16870 S:      Maintained
16871 F:      drivers/watchdog/sc1200wdt.c
16872
16873 SCHEDULER
16874 M:      Ingo Molnar <mingo@redhat.com>
16875 M:      Peter Zijlstra <peterz@infradead.org>
16876 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
16877 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
16878 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
16879 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
16880 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
16881 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
16882 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
16883 L:      linux-kernel@vger.kernel.org
16884 S:      Maintained
16885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16886 F:      include/linux/preempt.h
16887 F:      include/linux/sched.h
16888 F:      include/linux/wait.h
16889 F:      include/uapi/linux/sched.h
16890 F:      kernel/sched/
16891
16892 SCR24X CHIP CARD INTERFACE DRIVER
16893 M:      Lubomir Rintel <lkundrak@v3.sk>
16894 S:      Supported
16895 F:      drivers/char/pcmcia/scr24x_cs.c
16896
16897 SCSI RDMA PROTOCOL (SRP) INITIATOR
16898 M:      Bart Van Assche <bvanassche@acm.org>
16899 L:      linux-rdma@vger.kernel.org
16900 S:      Supported
16901 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16902 F:      drivers/infiniband/ulp/srp/
16903 F:      include/scsi/srp.h
16904
16905 SCSI RDMA PROTOCOL (SRP) TARGET
16906 M:      Bart Van Assche <bvanassche@acm.org>
16907 L:      linux-rdma@vger.kernel.org
16908 L:      target-devel@vger.kernel.org
16909 S:      Supported
16910 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16911 F:      drivers/infiniband/ulp/srpt/
16912
16913 SCSI SG DRIVER
16914 M:      Doug Gilbert <dgilbert@interlog.com>
16915 L:      linux-scsi@vger.kernel.org
16916 S:      Maintained
16917 W:      http://sg.danny.cz/sg
16918 F:      Documentation/scsi/scsi-generic.rst
16919 F:      drivers/scsi/sg.c
16920 F:      include/scsi/sg.h
16921
16922 SCSI SUBSYSTEM
16923 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
16924 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16925 L:      linux-scsi@vger.kernel.org
16926 S:      Maintained
16927 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
16928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16930 F:      Documentation/devicetree/bindings/scsi/
16931 F:      drivers/scsi/
16932 F:      include/scsi/
16933
16934 SCSI TAPE DRIVER
16935 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
16936 L:      linux-scsi@vger.kernel.org
16937 S:      Maintained
16938 F:      Documentation/scsi/st.rst
16939 F:      drivers/scsi/st.*
16940 F:      drivers/scsi/st_*.h
16941
16942 SCSI TARGET CORE USER DRIVER
16943 M:      Bodo Stroesser <bostroesser@gmail.com>
16944 L:      linux-scsi@vger.kernel.org
16945 L:      target-devel@vger.kernel.org
16946 S:      Supported
16947 F:      Documentation/target/tcmu-design.rst
16948 F:      drivers/target/target_core_user.c
16949 F:      include/uapi/linux/target_core_user.h
16950
16951 SCSI TARGET SUBSYSTEM
16952 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16953 L:      linux-scsi@vger.kernel.org
16954 L:      target-devel@vger.kernel.org
16955 S:      Supported
16956 W:      http://www.linux-iscsi.org
16957 Q:      https://patchwork.kernel.org/project/target-devel/list/
16958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16959 F:      Documentation/target/
16960 F:      drivers/target/
16961 F:      include/target/
16962
16963 SCTP PROTOCOL
16964 M:      Vlad Yasevich <vyasevich@gmail.com>
16965 M:      Neil Horman <nhorman@tuxdriver.com>
16966 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
16967 L:      linux-sctp@vger.kernel.org
16968 S:      Maintained
16969 W:      http://lksctp.sourceforge.net
16970 F:      Documentation/networking/sctp.rst
16971 F:      include/linux/sctp.h
16972 F:      include/net/sctp/
16973 F:      include/uapi/linux/sctp.h
16974 F:      net/sctp/
16975
16976 SCx200 CPU SUPPORT
16977 M:      Jim Cromie <jim.cromie@gmail.com>
16978 S:      Odd Fixes
16979 F:      Documentation/i2c/busses/scx200_acb.rst
16980 F:      arch/x86/platform/scx200/
16981 F:      drivers/i2c/busses/scx200*
16982 F:      drivers/mtd/maps/scx200_docflash.c
16983 F:      drivers/watchdog/scx200_wdt.c
16984 F:      include/linux/scx200.h
16985
16986 SCx200 GPIO DRIVER
16987 M:      Jim Cromie <jim.cromie@gmail.com>
16988 S:      Maintained
16989 F:      drivers/char/scx200_gpio.c
16990 F:      include/linux/scx200_gpio.h
16991
16992 SCx200 HRT CLOCKSOURCE DRIVER
16993 M:      Jim Cromie <jim.cromie@gmail.com>
16994 S:      Maintained
16995 F:      drivers/clocksource/scx200_hrt.c
16996
16997 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
16998 M:      Sascha Sommer <saschasommer@freenet.de>
16999 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
17000 S:      Maintained
17001 F:      drivers/mmc/host/sdricoh_cs.c
17002
17003 SECO BOARDS CEC DRIVER
17004 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
17005 S:      Maintained
17006 F:      drivers/media/cec/platform/seco/seco-cec.c
17007 F:      drivers/media/cec/platform/seco/seco-cec.h
17008
17009 SECURE COMPUTING
17010 M:      Kees Cook <keescook@chromium.org>
17011 R:      Andy Lutomirski <luto@amacapital.net>
17012 R:      Will Drewry <wad@chromium.org>
17013 S:      Supported
17014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
17015 F:      Documentation/userspace-api/seccomp_filter.rst
17016 F:      include/linux/seccomp.h
17017 F:      include/uapi/linux/seccomp.h
17018 F:      kernel/seccomp.c
17019 F:      tools/testing/selftests/kselftest_harness.h
17020 F:      tools/testing/selftests/seccomp/*
17021 K:      \bsecure_computing
17022 K:      \bTIF_SECCOMP\b
17023
17024 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
17025 M:      Al Cooper <alcooperx@gmail.com>
17026 L:      linux-mmc@vger.kernel.org
17027 L:      bcm-kernel-feedback-list@broadcom.com
17028 S:      Maintained
17029 F:      drivers/mmc/host/sdhci-brcmstb*
17030
17031 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
17032 M:      Adrian Hunter <adrian.hunter@intel.com>
17033 L:      linux-mmc@vger.kernel.org
17034 S:      Maintained
17035 F:      drivers/mmc/host/sdhci*
17036
17037 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
17038 M:      Eugen Hristev <eugen.hristev@microchip.com>
17039 L:      linux-mmc@vger.kernel.org
17040 S:      Supported
17041 F:      drivers/mmc/host/sdhci-of-at91.c
17042
17043 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
17044 M:      Ben Dooks <ben-linux@fluff.org>
17045 M:      Jaehoon Chung <jh80.chung@samsung.com>
17046 L:      linux-mmc@vger.kernel.org
17047 S:      Maintained
17048 F:      drivers/mmc/host/sdhci-s3c*
17049
17050 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
17051 M:      Viresh Kumar <vireshk@kernel.org>
17052 L:      linux-mmc@vger.kernel.org
17053 S:      Maintained
17054 F:      drivers/mmc/host/sdhci-spear.c
17055
17056 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
17057 M:      Kishon Vijay Abraham I <kishon@ti.com>
17058 L:      linux-mmc@vger.kernel.org
17059 S:      Maintained
17060 F:      drivers/mmc/host/sdhci-omap.c
17061
17062 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
17063 M:      Jonathan Derrick <jonathan.derrick@intel.com>
17064 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
17065 L:      linux-block@vger.kernel.org
17066 S:      Supported
17067 F:      block/opal_proto.h
17068 F:      block/sed*
17069 F:      include/linux/sed*
17070 F:      include/uapi/linux/sed*
17071
17072 SECURITY CONTACT
17073 M:      Security Officers <security@kernel.org>
17074 S:      Supported
17075 F:      Documentation/admin-guide/security-bugs.rst
17076
17077 SECURITY SUBSYSTEM
17078 M:      James Morris <jmorris@namei.org>
17079 M:      "Serge E. Hallyn" <serge@hallyn.com>
17080 L:      linux-security-module@vger.kernel.org (suggested Cc:)
17081 S:      Supported
17082 W:      http://kernsec.org/
17083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
17084 F:      security/
17085 X:      security/selinux/
17086
17087 SELINUX SECURITY MODULE
17088 M:      Paul Moore <paul@paul-moore.com>
17089 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
17090 M:      Eric Paris <eparis@parisplace.org>
17091 L:      selinux@vger.kernel.org
17092 S:      Supported
17093 W:      https://selinuxproject.org
17094 W:      https://github.com/SELinuxProject
17095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
17096 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
17097 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
17098 F:      Documentation/admin-guide/LSM/SELinux.rst
17099 F:      include/trace/events/avc.h
17100 F:      include/uapi/linux/selinux_netlink.h
17101 F:      scripts/selinux/
17102 F:      security/selinux/
17103
17104 SENSABLE PHANTOM
17105 M:      Jiri Slaby <jirislaby@kernel.org>
17106 S:      Maintained
17107 F:      drivers/misc/phantom.c
17108 F:      include/uapi/linux/phantom.h
17109
17110 SENSEAIR SUNRISE 006-0-0007
17111 M:      Jacopo Mondi <jacopo@jmondi.org>
17112 S:      Maintained
17113 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
17114 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
17115 F:      drivers/iio/chemical/sunrise_co2.c
17116
17117 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
17118 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
17119 S:      Maintained
17120 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
17121 F:      drivers/iio/chemical/scd30.h
17122 F:      drivers/iio/chemical/scd30_core.c
17123 F:      drivers/iio/chemical/scd30_i2c.c
17124 F:      drivers/iio/chemical/scd30_serial.c
17125
17126 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
17127 M:      Roan van Dijk <roan@protonic.nl>
17128 S:      Maintained
17129 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
17130 F:      drivers/iio/chemical/scd4x.c
17131
17132 SENSIRION SGP40 GAS SENSOR DRIVER
17133 M:      Andreas Klinger <ak@it-klinger.de>
17134 S:      Maintained
17135 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
17136 F:      drivers/iio/chemical/sgp40.c
17137
17138 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
17139 M:      Tomasz Duszynski <tduszyns@gmail.com>
17140 S:      Maintained
17141 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
17142 F:      drivers/iio/chemical/sps30.c
17143 F:      drivers/iio/chemical/sps30_i2c.c
17144 F:      drivers/iio/chemical/sps30_serial.c
17145
17146 SERIAL DEVICE BUS
17147 M:      Rob Herring <robh@kernel.org>
17148 L:      linux-serial@vger.kernel.org
17149 S:      Maintained
17150 F:      Documentation/devicetree/bindings/serial/serial.yaml
17151 F:      drivers/tty/serdev/
17152 F:      include/linux/serdev.h
17153
17154 SERIAL DRIVERS
17155 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17156 L:      linux-serial@vger.kernel.org
17157 S:      Maintained
17158 F:      Documentation/devicetree/bindings/serial/
17159 F:      drivers/tty/serial/
17160
17161 SERIAL IR RECEIVER
17162 M:      Sean Young <sean@mess.org>
17163 L:      linux-media@vger.kernel.org
17164 S:      Maintained
17165 F:      drivers/media/rc/serial_ir.c
17166
17167 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
17168 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17169 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17170 S:      Maintained
17171 F:      Documentation/devicetree/bindings/slimbus/
17172 F:      drivers/slimbus/
17173 F:      include/linux/slimbus.h
17174
17175 SFC NETWORK DRIVER
17176 M:      Edward Cree <ecree.xilinx@gmail.com>
17177 M:      Martin Habets <habetsm.xilinx@gmail.com>
17178 L:      netdev@vger.kernel.org
17179 S:      Supported
17180 F:      drivers/net/ethernet/sfc/
17181
17182 SFF/SFP/SFP+ MODULE SUPPORT
17183 M:      Russell King <linux@armlinux.org.uk>
17184 L:      netdev@vger.kernel.org
17185 S:      Maintained
17186 F:      drivers/net/phy/phylink.c
17187 F:      drivers/net/phy/sfp*
17188 F:      include/linux/mdio/mdio-i2c.h
17189 F:      include/linux/phylink.h
17190 F:      include/linux/sfp.h
17191 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)
17192
17193 SGI GRU DRIVER
17194 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
17195 S:      Maintained
17196 F:      drivers/misc/sgi-gru/
17197
17198 SGI XP/XPC/XPNET DRIVER
17199 M:      Robin Holt <robinmholt@gmail.com>
17200 M:      Steve Wahl <steve.wahl@hpe.com>
17201 R:      Mike Travis <mike.travis@hpe.com>
17202 S:      Maintained
17203 F:      drivers/misc/sgi-xp/
17204
17205 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
17206 M:      Karsten Graul <kgraul@linux.ibm.com>
17207 L:      linux-s390@vger.kernel.org
17208 S:      Supported
17209 W:      http://www.ibm.com/developerworks/linux/linux390/
17210 F:      net/smc/
17211
17212 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17213 M:      Linus Walleij <linus.walleij@linaro.org>
17214 L:      linux-iio@vger.kernel.org
17215 S:      Maintained
17216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17217 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17218 F:      drivers/iio/light/gp2ap002.c
17219
17220 SHARP RJ54N1CB0C SENSOR DRIVER
17221 M:      Jacopo Mondi <jacopo@jmondi.org>
17222 L:      linux-media@vger.kernel.org
17223 S:      Odd fixes
17224 T:      git git://linuxtv.org/media_tree.git
17225 F:      drivers/media/i2c/rj54n1cb0c.c
17226 F:      include/media/i2c/rj54n1cb0c.h
17227
17228 SH_VOU V4L2 OUTPUT DRIVER
17229 L:      linux-media@vger.kernel.org
17230 S:      Orphan
17231 F:      drivers/media/platform/sh_vou.c
17232 F:      include/media/drv-intf/sh_vou.h
17233
17234 SI2157 MEDIA DRIVER
17235 M:      Antti Palosaari <crope@iki.fi>
17236 L:      linux-media@vger.kernel.org
17237 S:      Maintained
17238 W:      https://linuxtv.org
17239 W:      http://palosaari.fi/linux/
17240 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17241 T:      git git://linuxtv.org/anttip/media_tree.git
17242 F:      drivers/media/tuners/si2157*
17243
17244 SI2165 MEDIA DRIVER
17245 M:      Matthias Schwarzott <zzam@gentoo.org>
17246 L:      linux-media@vger.kernel.org
17247 S:      Maintained
17248 W:      https://linuxtv.org
17249 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17250 F:      drivers/media/dvb-frontends/si2165*
17251
17252 SI2168 MEDIA DRIVER
17253 M:      Antti Palosaari <crope@iki.fi>
17254 L:      linux-media@vger.kernel.org
17255 S:      Maintained
17256 W:      https://linuxtv.org
17257 W:      http://palosaari.fi/linux/
17258 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17259 T:      git git://linuxtv.org/anttip/media_tree.git
17260 F:      drivers/media/dvb-frontends/si2168*
17261
17262 SI470X FM RADIO RECEIVER I2C DRIVER
17263 M:      Hans Verkuil <hverkuil@xs4all.nl>
17264 L:      linux-media@vger.kernel.org
17265 S:      Odd Fixes
17266 W:      https://linuxtv.org
17267 T:      git git://linuxtv.org/media_tree.git
17268 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
17269
17270 SI470X FM RADIO RECEIVER USB DRIVER
17271 M:      Hans Verkuil <hverkuil@xs4all.nl>
17272 L:      linux-media@vger.kernel.org
17273 S:      Maintained
17274 W:      https://linuxtv.org
17275 T:      git git://linuxtv.org/media_tree.git
17276 F:      drivers/media/radio/si470x/radio-si470x-common.c
17277 F:      drivers/media/radio/si470x/radio-si470x-usb.c
17278 F:      drivers/media/radio/si470x/radio-si470x.h
17279
17280 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17281 M:      Eduardo Valentin <edubezval@gmail.com>
17282 L:      linux-media@vger.kernel.org
17283 S:      Odd Fixes
17284 W:      https://linuxtv.org
17285 T:      git git://linuxtv.org/media_tree.git
17286 F:      drivers/media/radio/si4713/si4713.?
17287
17288 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17289 M:      Eduardo Valentin <edubezval@gmail.com>
17290 L:      linux-media@vger.kernel.org
17291 S:      Odd Fixes
17292 W:      https://linuxtv.org
17293 T:      git git://linuxtv.org/media_tree.git
17294 F:      drivers/media/radio/si4713/radio-platform-si4713.c
17295
17296 SI4713 FM RADIO TRANSMITTER USB DRIVER
17297 M:      Hans Verkuil <hverkuil@xs4all.nl>
17298 L:      linux-media@vger.kernel.org
17299 S:      Maintained
17300 W:      https://linuxtv.org
17301 T:      git git://linuxtv.org/media_tree.git
17302 F:      drivers/media/radio/si4713/radio-usb-si4713.c
17303
17304 SIANO DVB DRIVER
17305 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17306 L:      linux-media@vger.kernel.org
17307 S:      Odd fixes
17308 W:      https://linuxtv.org
17309 T:      git git://linuxtv.org/media_tree.git
17310 F:      drivers/media/common/siano/
17311 F:      drivers/media/mmc/siano/
17312 F:      drivers/media/usb/siano/
17313 F:      drivers/media/usb/siano/
17314
17315 SIFIVE DRIVERS
17316 M:      Palmer Dabbelt <palmer@dabbelt.com>
17317 M:      Paul Walmsley <paul.walmsley@sifive.com>
17318 L:      linux-riscv@lists.infradead.org
17319 S:      Supported
17320 T:      git git://github.com/sifive/riscv-linux.git
17321 N:      sifive
17322 K:      [^@]sifive
17323
17324 SIFIVE FU540 SYSTEM-ON-CHIP
17325 M:      Paul Walmsley <paul.walmsley@sifive.com>
17326 M:      Palmer Dabbelt <palmer@dabbelt.com>
17327 L:      linux-riscv@lists.infradead.org
17328 S:      Supported
17329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17330 N:      fu540
17331 K:      fu540
17332
17333 SIFIVE PDMA DRIVER
17334 M:      Green Wan <green.wan@sifive.com>
17335 S:      Maintained
17336 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17337 F:      drivers/dma/sf-pdma/
17338
17339 SILEAD TOUCHSCREEN DRIVER
17340 M:      Hans de Goede <hdegoede@redhat.com>
17341 L:      linux-input@vger.kernel.org
17342 L:      platform-driver-x86@vger.kernel.org
17343 S:      Maintained
17344 F:      drivers/input/touchscreen/silead.c
17345 F:      drivers/platform/x86/touchscreen_dmi.c
17346
17347 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
17348 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
17349 S:      Supported
17350 F:      drivers/staging/wfx/
17351
17352 SILICON MOTION SM712 FRAME BUFFER DRIVER
17353 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17354 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17355 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17356 L:      linux-fbdev@vger.kernel.org
17357 S:      Maintained
17358 F:      Documentation/fb/sm712fb.rst
17359 F:      drivers/video/fbdev/sm712*
17360
17361 SILVACO I3C DUAL-ROLE MASTER
17362 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17363 M:      Conor Culhane <conor.culhane@silvaco.com>
17364 L:      linux-i3c@lists.infradead.org
17365 S:      Maintained
17366 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
17367 F:      drivers/i3c/master/svc-i3c-master.c
17368
17369 SIMPLEFB FB DRIVER
17370 M:      Hans de Goede <hdegoede@redhat.com>
17371 L:      linux-fbdev@vger.kernel.org
17372 S:      Maintained
17373 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
17374 F:      drivers/video/fbdev/simplefb.c
17375 F:      include/linux/platform_data/simplefb.h
17376
17377 SIMTEC EB110ATX (Chalice CATS)
17378 M:      Simtec Linux Team <linux@simtec.co.uk>
17379 S:      Supported
17380 W:      http://www.simtec.co.uk/products/EB110ATX/
17381
17382 SIMTEC EB2410ITX (BAST)
17383 M:      Simtec Linux Team <linux@simtec.co.uk>
17384 S:      Supported
17385 W:      http://www.simtec.co.uk/products/EB2410ITX/
17386 F:      arch/arm/mach-s3c/bast-ide.c
17387 F:      arch/arm/mach-s3c/bast-irq.c
17388 F:      arch/arm/mach-s3c/mach-bast.c
17389
17390 SIOX
17391 M:      Thorsten Scherer <t.scherer@eckelmann.de>
17392 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17393 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
17394 S:      Supported
17395 F:      drivers/gpio/gpio-siox.c
17396 F:      drivers/siox/*
17397 F:      include/trace/events/siox.h
17398
17399 SIPHASH PRF ROUTINES
17400 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17401 S:      Maintained
17402 F:      include/linux/siphash.h
17403 F:      lib/siphash.c
17404 F:      lib/test_siphash.c
17405
17406 SIS 190 ETHERNET DRIVER
17407 M:      Francois Romieu <romieu@fr.zoreil.com>
17408 L:      netdev@vger.kernel.org
17409 S:      Maintained
17410 F:      drivers/net/ethernet/sis/sis190.c
17411
17412 SIS 900/7016 FAST ETHERNET DRIVER
17413 M:      Daniele Venzano <venza@brownhat.org>
17414 L:      netdev@vger.kernel.org
17415 S:      Maintained
17416 W:      http://www.brownhat.org/sis900.html
17417 F:      drivers/net/ethernet/sis/sis900.*
17418
17419 SIS FRAMEBUFFER DRIVER
17420 M:      Thomas Winischhofer <thomas@winischhofer.net>
17421 S:      Maintained
17422 W:      http://www.winischhofer.net/linuxsisvga.shtml
17423 F:      Documentation/fb/sisfb.rst
17424 F:      drivers/video/fbdev/sis/
17425 F:      include/video/sisfb.h
17426
17427 SIS I2C TOUCHSCREEN DRIVER
17428 M:      Mika Penttilä <mika.penttila@nextfour.com>
17429 L:      linux-input@vger.kernel.org
17430 S:      Maintained
17431 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
17432 F:      drivers/input/touchscreen/sis_i2c.c
17433
17434 SIS USB2VGA DRIVER
17435 M:      Thomas Winischhofer <thomas@winischhofer.net>
17436 S:      Maintained
17437 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
17438 F:      drivers/usb/misc/sisusbvga/
17439
17440 SLAB ALLOCATOR
17441 M:      Christoph Lameter <cl@linux.com>
17442 M:      Pekka Enberg <penberg@kernel.org>
17443 M:      David Rientjes <rientjes@google.com>
17444 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
17445 M:      Andrew Morton <akpm@linux-foundation.org>
17446 M:      Vlastimil Babka <vbabka@suse.cz>
17447 L:      linux-mm@kvack.org
17448 S:      Maintained
17449 F:      include/linux/sl?b*.h
17450 F:      mm/sl?b*
17451
17452 SLEEPABLE READ-COPY UPDATE (SRCU)
17453 M:      Lai Jiangshan <jiangshanlai@gmail.com>
17454 M:      "Paul E. McKenney" <paulmck@kernel.org>
17455 M:      Josh Triplett <josh@joshtriplett.org>
17456 R:      Steven Rostedt <rostedt@goodmis.org>
17457 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17458 L:      rcu@vger.kernel.org
17459 S:      Supported
17460 W:      http://www.rdrop.com/users/paulmck/RCU/
17461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17462 F:      include/linux/srcu*.h
17463 F:      kernel/rcu/srcu*.c
17464
17465 SMACK SECURITY MODULE
17466 M:      Casey Schaufler <casey@schaufler-ca.com>
17467 L:      linux-security-module@vger.kernel.org
17468 S:      Maintained
17469 W:      http://schaufler-ca.com
17470 T:      git git://github.com/cschaufler/smack-next
17471 F:      Documentation/admin-guide/LSM/Smack.rst
17472 F:      security/smack/
17473
17474 SMC91x ETHERNET DRIVER
17475 M:      Nicolas Pitre <nico@fluxnic.net>
17476 S:      Odd Fixes
17477 F:      drivers/net/ethernet/smsc/smc91x.*
17478
17479 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17480 M:      Mark Rutland <mark.rutland@arm.com>
17481 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17482 M:      Sudeep Holla <sudeep.holla@arm.com>
17483 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17484 S:      Maintained
17485 F:      drivers/firmware/smccc/
17486 F:      include/linux/arm-smccc.h
17487
17488 SMM665 HARDWARE MONITOR DRIVER
17489 M:      Guenter Roeck <linux@roeck-us.net>
17490 L:      linux-hwmon@vger.kernel.org
17491 S:      Maintained
17492 F:      Documentation/hwmon/smm665.rst
17493 F:      drivers/hwmon/smm665.c
17494
17495 SMSC EMC2103 HARDWARE MONITOR DRIVER
17496 M:      Steve Glendinning <steve.glendinning@shawell.net>
17497 L:      linux-hwmon@vger.kernel.org
17498 S:      Maintained
17499 F:      Documentation/hwmon/emc2103.rst
17500 F:      drivers/hwmon/emc2103.c
17501
17502 SMSC SCH5627 HARDWARE MONITOR DRIVER
17503 M:      Hans de Goede <hdegoede@redhat.com>
17504 L:      linux-hwmon@vger.kernel.org
17505 S:      Supported
17506 F:      Documentation/hwmon/sch5627.rst
17507 F:      drivers/hwmon/sch5627.c
17508
17509 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17510 M:      Steve Glendinning <steve.glendinning@shawell.net>
17511 L:      linux-fbdev@vger.kernel.org
17512 S:      Maintained
17513 F:      drivers/video/fbdev/smscufx.c
17514
17515 SMSC47B397 HARDWARE MONITOR DRIVER
17516 M:      Jean Delvare <jdelvare@suse.com>
17517 L:      linux-hwmon@vger.kernel.org
17518 S:      Maintained
17519 F:      Documentation/hwmon/smsc47b397.rst
17520 F:      drivers/hwmon/smsc47b397.c
17521
17522 SMSC911x ETHERNET DRIVER
17523 M:      Steve Glendinning <steve.glendinning@shawell.net>
17524 L:      netdev@vger.kernel.org
17525 S:      Maintained
17526 F:      drivers/net/ethernet/smsc/smsc911x.*
17527 F:      include/linux/smsc911x.h
17528
17529 SMSC9420 PCI ETHERNET DRIVER
17530 M:      Steve Glendinning <steve.glendinning@shawell.net>
17531 L:      netdev@vger.kernel.org
17532 S:      Maintained
17533 F:      drivers/net/ethernet/smsc/smsc9420.*
17534
17535 SOCIONEXT (SNI) AVE NETWORK DRIVER
17536 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17537 L:      netdev@vger.kernel.org
17538 S:      Maintained
17539 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17540 F:      drivers/net/ethernet/socionext/sni_ave.c
17541
17542 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17543 M:      Jassi Brar <jaswinder.singh@linaro.org>
17544 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
17545 L:      netdev@vger.kernel.org
17546 S:      Maintained
17547 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
17548 F:      drivers/net/ethernet/socionext/netsec.c
17549
17550 SOCIONEXT (SNI) Synquacer SPI DRIVER
17551 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
17552 M:      Jassi Brar <jaswinder.singh@linaro.org>
17553 L:      linux-spi@vger.kernel.org
17554 S:      Maintained
17555 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
17556 F:      drivers/spi/spi-synquacer.c
17557
17558 SOCIONEXT SYNQUACER I2C DRIVER
17559 M:      Ard Biesheuvel <ardb@kernel.org>
17560 L:      linux-i2c@vger.kernel.org
17561 S:      Maintained
17562 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17563 F:      drivers/i2c/busses/i2c-synquacer.c
17564
17565 SOCIONEXT UNIPHIER SOUND DRIVER
17566 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17567 S:      Orphan
17568 F:      sound/soc/uniphier/
17569
17570 SOEKRIS NET48XX LED SUPPORT
17571 M:      Chris Boot <bootc@bootc.net>
17572 S:      Maintained
17573 F:      drivers/leds/leds-net48xx.c
17574
17575 SOFT-IWARP DRIVER (siw)
17576 M:      Bernard Metzler <bmt@zurich.ibm.com>
17577 L:      linux-rdma@vger.kernel.org
17578 S:      Supported
17579 F:      drivers/infiniband/sw/siw/
17580 F:      include/uapi/rdma/siw-abi.h
17581
17582 SOFT-ROCE DRIVER (rxe)
17583 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
17584 L:      linux-rdma@vger.kernel.org
17585 S:      Supported
17586 F:      drivers/infiniband/sw/rxe/
17587 F:      include/uapi/rdma/rdma_user_rxe.h
17588
17589 SOFTLOGIC 6x10 MPEG CODEC
17590 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17591 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17592 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17593 M:      Ismael Luceno <ismael@iodev.co.uk>
17594 L:      linux-media@vger.kernel.org
17595 S:      Supported
17596 F:      drivers/media/pci/solo6x10/
17597
17598 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17599 M:      James Morse <james.morse@arm.com>
17600 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17601 S:      Maintained
17602 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
17603 F:      drivers/firmware/arm_sdei.c
17604 F:      include/linux/arm_sdei.h
17605 F:      include/uapi/linux/arm_sdei.h
17606
17607 SOFTWARE NODES
17608 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17609 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17610 L:      linux-acpi@vger.kernel.org
17611 S:      Maintained
17612 F:      drivers/base/swnode.c
17613
17614 SOFTWARE RAID (Multiple Disks) SUPPORT
17615 M:      Song Liu <song@kernel.org>
17616 L:      linux-raid@vger.kernel.org
17617 S:      Supported
17618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17619 F:      drivers/md/Kconfig
17620 F:      drivers/md/Makefile
17621 F:      drivers/md/md*
17622 F:      drivers/md/raid*
17623 F:      include/linux/raid/
17624 F:      include/uapi/linux/raid/
17625
17626 SOLIDRUN CLEARFOG SUPPORT
17627 M:      Russell King <linux@armlinux.org.uk>
17628 S:      Maintained
17629 F:      arch/arm/boot/dts/armada-388-clearfog*
17630 F:      arch/arm/boot/dts/armada-38x-solidrun-*
17631
17632 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17633 M:      Russell King <linux@armlinux.org.uk>
17634 S:      Maintained
17635 F:      arch/arm/boot/dts/imx6*-cubox-i*
17636 F:      arch/arm/boot/dts/imx6*-hummingboard*
17637 F:      arch/arm/boot/dts/imx6*-sr-*
17638
17639 SONIC NETWORK DRIVER
17640 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17641 L:      netdev@vger.kernel.org
17642 S:      Maintained
17643 F:      drivers/net/ethernet/natsemi/sonic.*
17644
17645 SONICS SILICON BACKPLANE DRIVER (SSB)
17646 M:      Michael Buesch <m@bues.ch>
17647 L:      linux-wireless@vger.kernel.org
17648 S:      Maintained
17649 F:      drivers/ssb/
17650 F:      include/linux/ssb/
17651
17652 SONY IMX208 SENSOR DRIVER
17653 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17654 L:      linux-media@vger.kernel.org
17655 S:      Maintained
17656 T:      git git://linuxtv.org/media_tree.git
17657 F:      drivers/media/i2c/imx208.c
17658
17659 SONY IMX214 SENSOR DRIVER
17660 M:      Ricardo Ribalda <ribalda@kernel.org>
17661 L:      linux-media@vger.kernel.org
17662 S:      Maintained
17663 T:      git git://linuxtv.org/media_tree.git
17664 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
17665 F:      drivers/media/i2c/imx214.c
17666
17667 SONY IMX219 SENSOR DRIVER
17668 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
17669 L:      linux-media@vger.kernel.org
17670 S:      Maintained
17671 T:      git git://linuxtv.org/media_tree.git
17672 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
17673 F:      drivers/media/i2c/imx219.c
17674
17675 SONY IMX258 SENSOR DRIVER
17676 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17677 L:      linux-media@vger.kernel.org
17678 S:      Maintained
17679 T:      git git://linuxtv.org/media_tree.git
17680 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
17681 F:      drivers/media/i2c/imx258.c
17682
17683 SONY IMX274 SENSOR DRIVER
17684 M:      Leon Luo <leonl@leopardimaging.com>
17685 L:      linux-media@vger.kernel.org
17686 S:      Maintained
17687 T:      git git://linuxtv.org/media_tree.git
17688 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
17689 F:      drivers/media/i2c/imx274.c
17690
17691 SONY IMX290 SENSOR DRIVER
17692 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17693 L:      linux-media@vger.kernel.org
17694 S:      Maintained
17695 T:      git git://linuxtv.org/media_tree.git
17696 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
17697 F:      drivers/media/i2c/imx290.c
17698
17699 SONY IMX319 SENSOR DRIVER
17700 M:      Bingbu Cao <bingbu.cao@intel.com>
17701 L:      linux-media@vger.kernel.org
17702 S:      Maintained
17703 T:      git git://linuxtv.org/media_tree.git
17704 F:      drivers/media/i2c/imx319.c
17705
17706 SONY IMX334 SENSOR DRIVER
17707 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17708 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17709 L:      linux-media@vger.kernel.org
17710 S:      Maintained
17711 T:      git git://linuxtv.org/media_tree.git
17712 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17713 F:      drivers/media/i2c/imx334.c
17714
17715 SONY IMX335 SENSOR DRIVER
17716 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17717 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17718 L:      linux-media@vger.kernel.org
17719 S:      Maintained
17720 T:      git git://linuxtv.org/media_tree.git
17721 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
17722 F:      drivers/media/i2c/imx335.c
17723
17724 SONY IMX355 SENSOR DRIVER
17725 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
17726 L:      linux-media@vger.kernel.org
17727 S:      Maintained
17728 T:      git git://linuxtv.org/media_tree.git
17729 F:      drivers/media/i2c/imx355.c
17730
17731 SONY IMX412 SENSOR DRIVER
17732 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17733 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17734 L:      linux-media@vger.kernel.org
17735 S:      Maintained
17736 T:      git git://linuxtv.org/media_tree.git
17737 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
17738 F:      drivers/media/i2c/imx412.c
17739
17740 SONY MEMORYSTICK SUBSYSTEM
17741 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17742 M:      Alex Dubov <oakad@yahoo.com>
17743 M:      Ulf Hansson <ulf.hansson@linaro.org>
17744 L:      linux-mmc@vger.kernel.org
17745 S:      Maintained
17746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17747 F:      drivers/memstick/
17748 F:      include/linux/memstick.h
17749
17750 SONY VAIO CONTROL DEVICE DRIVER
17751 M:      Mattia Dongili <malattia@linux.it>
17752 L:      platform-driver-x86@vger.kernel.org
17753 S:      Maintained
17754 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17755 F:      Documentation/admin-guide/laptops/sony-laptop.rst
17756 F:      drivers/char/sonypi.c
17757 F:      drivers/platform/x86/sony-laptop.c
17758 F:      include/linux/sony-laptop.h
17759
17760 SOUND
17761 M:      Jaroslav Kysela <perex@perex.cz>
17762 M:      Takashi Iwai <tiwai@suse.com>
17763 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17764 S:      Maintained
17765 W:      http://www.alsa-project.org/
17766 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
17767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17768 F:      Documentation/sound/
17769 F:      include/sound/
17770 F:      include/uapi/sound/
17771 F:      sound/
17772
17773 SOUND - COMPRESSED AUDIO
17774 M:      Vinod Koul <vkoul@kernel.org>
17775 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17776 S:      Supported
17777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17778 F:      Documentation/sound/designs/compress-offload.rst
17779 F:      include/sound/compress_driver.h
17780 F:      include/uapi/sound/compress_*
17781 F:      sound/core/compress_offload.c
17782 F:      sound/soc/soc-compress.c
17783
17784 SOUND - DMAENGINE HELPERS
17785 M:      Lars-Peter Clausen <lars@metafoo.de>
17786 S:      Supported
17787 F:      include/sound/dmaengine_pcm.h
17788 F:      sound/core/pcm_dmaengine.c
17789 F:      sound/soc/soc-generic-dmaengine-pcm.c
17790
17791 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17792 M:      Liam Girdwood <lgirdwood@gmail.com>
17793 M:      Mark Brown <broonie@kernel.org>
17794 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17795 S:      Supported
17796 W:      http://alsa-project.org/main/index.php/ASoC
17797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17798 F:      Documentation/devicetree/bindings/sound/
17799 F:      Documentation/sound/soc/
17800 F:      include/dt-bindings/sound/
17801 F:      include/sound/soc*
17802 F:      sound/soc/
17803
17804 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17805 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17806 M:      Liam Girdwood <lgirdwood@gmail.com>
17807 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17808 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
17809 M:      Daniel Baluta <daniel.baluta@nxp.com>
17810 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17811 S:      Supported
17812 W:      https://github.com/thesofproject/linux/
17813 F:      sound/soc/sof/
17814
17815 SOUNDWIRE SUBSYSTEM
17816 M:      Vinod Koul <vkoul@kernel.org>
17817 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
17818 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17819 R:      Sanyog Kale <sanyog.r.kale@intel.com>
17820 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17821 S:      Supported
17822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17823 F:      Documentation/driver-api/soundwire/
17824 F:      drivers/soundwire/
17825 F:      include/linux/soundwire/
17826
17827 SP2 MEDIA DRIVER
17828 M:      Olli Salonen <olli.salonen@iki.fi>
17829 L:      linux-media@vger.kernel.org
17830 S:      Maintained
17831 W:      https://linuxtv.org
17832 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17833 F:      drivers/media/dvb-frontends/sp2*
17834
17835 SPARC + UltraSPARC (sparc/sparc64)
17836 M:      "David S. Miller" <davem@davemloft.net>
17837 L:      sparclinux@vger.kernel.org
17838 S:      Maintained
17839 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
17840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17842 F:      arch/sparc/
17843 F:      drivers/sbus/
17844
17845 SPARC SERIAL DRIVERS
17846 M:      "David S. Miller" <davem@davemloft.net>
17847 L:      sparclinux@vger.kernel.org
17848 S:      Maintained
17849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17851 F:      drivers/tty/serial/suncore.c
17852 F:      drivers/tty/serial/sunhv.c
17853 F:      drivers/tty/serial/sunsab.c
17854 F:      drivers/tty/serial/sunsab.h
17855 F:      drivers/tty/serial/sunsu.c
17856 F:      drivers/tty/serial/sunzilog.c
17857 F:      drivers/tty/serial/sunzilog.h
17858 F:      drivers/tty/vcc.c
17859 F:      include/linux/sunserialcore.h
17860
17861 SPARSE CHECKER
17862 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17863 L:      linux-sparse@vger.kernel.org
17864 S:      Maintained
17865 W:      https://sparse.docs.kernel.org/
17866 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17867 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
17868 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17869 F:      include/linux/compiler.h
17870
17871 SPEAKUP CONSOLE SPEECH DRIVER
17872 M:      William Hubbs <w.d.hubbs@gmail.com>
17873 M:      Chris Brannon <chris@the-brannons.com>
17874 M:      Kirk Reiser <kirk@reisers.ca>
17875 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
17876 L:      speakup@linux-speakup.org
17877 S:      Odd Fixes
17878 W:      http://www.linux-speakup.org/
17879 W:      https://github.com/linux-speakup/speakup
17880 B:      https://github.com/linux-speakup/speakup/issues
17881 F:      drivers/accessibility/speakup/
17882
17883 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
17884 M:      Viresh Kumar <vireshk@kernel.org>
17885 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
17886 M:      soc@kernel.org
17887 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17888 S:      Maintained
17889 W:      http://www.st.com/spear
17890 F:      arch/arm/boot/dts/spear*
17891 F:      arch/arm/mach-spear/
17892 F:      drivers/clk/spear/
17893 F:      drivers/pinctrl/spear/
17894
17895 SPI NOR SUBSYSTEM
17896 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
17897 R:      Michael Walle <michael@walle.cc>
17898 R:      Pratyush Yadav <p.yadav@ti.com>
17899 L:      linux-mtd@lists.infradead.org
17900 S:      Maintained
17901 W:      http://www.linux-mtd.infradead.org/
17902 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
17903 C:      irc://irc.oftc.net/mtd
17904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17905 F:      drivers/mtd/spi-nor/
17906 F:      include/linux/mtd/spi-nor.h
17907
17908 SPI SUBSYSTEM
17909 M:      Mark Brown <broonie@kernel.org>
17910 L:      linux-spi@vger.kernel.org
17911 S:      Maintained
17912 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
17913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17914 F:      Documentation/devicetree/bindings/spi/
17915 F:      Documentation/spi/
17916 F:      drivers/spi/
17917 F:      include/linux/spi/
17918 F:      include/uapi/linux/spi/
17919 F:      tools/spi/
17920
17921 SPIDERNET NETWORK DRIVER for CELL
17922 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
17923 M:      Geoff Levand <geoff@infradead.org>
17924 L:      netdev@vger.kernel.org
17925 L:      linuxppc-dev@lists.ozlabs.org
17926 S:      Maintained
17927 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17928 F:      drivers/net/ethernet/toshiba/spider_net*
17929
17930 SPMI SUBSYSTEM
17931 M:      Stephen Boyd <sboyd@kernel.org>
17932 L:      linux-kernel@vger.kernel.org
17933 S:      Maintained
17934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17935 F:      Documentation/devicetree/bindings/spmi/
17936 F:      drivers/spmi/
17937 F:      include/dt-bindings/spmi/spmi.h
17938 F:      include/linux/spmi.h
17939 F:      include/trace/events/spmi.h
17940
17941 SPU FILE SYSTEM
17942 M:      Jeremy Kerr <jk@ozlabs.org>
17943 L:      linuxppc-dev@lists.ozlabs.org
17944 S:      Supported
17945 W:      http://www.ibm.com/developerworks/power/cell/
17946 F:      Documentation/filesystems/spufs/spufs.rst
17947 F:      arch/powerpc/platforms/cell/spufs/
17948
17949 SQUASHFS FILE SYSTEM
17950 M:      Phillip Lougher <phillip@squashfs.org.uk>
17951 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
17952 S:      Maintained
17953 W:      http://squashfs.org.uk
17954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17955 F:      Documentation/filesystems/squashfs.rst
17956 F:      fs/squashfs/
17957
17958 SRM (Alpha) environment access
17959 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
17960 S:      Maintained
17961 F:      arch/alpha/kernel/srm_env.c
17962
17963 ST LSM6DSx IMU IIO DRIVER
17964 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
17965 L:      linux-iio@vger.kernel.org
17966 S:      Maintained
17967 W:      http://www.st.com/
17968 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17969 F:      drivers/iio/imu/st_lsm6dsx/
17970
17971 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17972 M:      Mickael Guene <mickael.guene@st.com>
17973 L:      linux-media@vger.kernel.org
17974 S:      Maintained
17975 T:      git git://linuxtv.org/media_tree.git
17976 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17977 F:      drivers/media/i2c/st-mipid02.c
17978
17979 ST STM32 I2C/SMBUS DRIVER
17980 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
17981 M:      Alain Volmat <alain.volmat@foss.st.com>
17982 L:      linux-i2c@vger.kernel.org
17983 S:      Maintained
17984 F:      drivers/i2c/busses/i2c-stm32*
17985
17986 ST STM32 SPI DRIVER
17987 M:      Alain Volmat <alain.volmat@foss.st.com>
17988 L:      linux-spi@vger.kernel.org
17989 S:      Maintained
17990 F:      drivers/spi/spi-stm32.c
17991
17992 ST STPDDC60 DRIVER
17993 M:      Daniel Nilsson <daniel.nilsson@flex.com>
17994 L:      linux-hwmon@vger.kernel.org
17995 S:      Maintained
17996 F:      Documentation/hwmon/stpddc60.rst
17997 F:      drivers/hwmon/pmbus/stpddc60.c
17998
17999 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
18000 M:      Song Qiang <songqiang1304521@gmail.com>
18001 L:      linux-iio@vger.kernel.org
18002 S:      Maintained
18003 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
18004 F:      drivers/iio/proximity/vl53l0x-i2c.c
18005
18006 STABLE BRANCH
18007 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18008 M:      Sasha Levin <sashal@kernel.org>
18009 L:      stable@vger.kernel.org
18010 S:      Supported
18011 F:      Documentation/process/stable-kernel-rules.rst
18012
18013 STAGING - ATOMISP DRIVER
18014 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18015 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18016 L:      linux-media@vger.kernel.org
18017 S:      Maintained
18018 F:      drivers/staging/media/atomisp/
18019
18020 STAGING - FIELDBUS SUBSYSTEM
18021 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18022 S:      Maintained
18023 F:      drivers/staging/fieldbus/*
18024 F:      drivers/staging/fieldbus/Documentation/
18025
18026 STAGING - HMS ANYBUS-S BUS
18027 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18028 S:      Maintained
18029 F:      drivers/staging/fieldbus/anybuss/
18030
18031 STAGING - INDUSTRIAL IO
18032 M:      Jonathan Cameron <jic23@kernel.org>
18033 L:      linux-iio@vger.kernel.org
18034 S:      Odd Fixes
18035 F:      Documentation/devicetree/bindings/staging/iio/
18036 F:      drivers/staging/iio/
18037
18038 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
18039 M:      Marc Dietrich <marvin24@gmx.de>
18040 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
18041 L:      linux-tegra@vger.kernel.org
18042 S:      Maintained
18043 F:      drivers/staging/nvec/
18044
18045 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
18046 M:      Jens Frederich <jfrederich@gmail.com>
18047 M:      Jon Nettleton <jon.nettleton@gmail.com>
18048 S:      Maintained
18049 W:      http://wiki.laptop.org/go/DCON
18050 F:      drivers/staging/olpc_dcon/
18051
18052 STAGING - REALTEK RTL8188EU DRIVERS
18053 M:      Larry Finger <Larry.Finger@lwfinger.net>
18054 M:      Phillip Potter <phil@philpotter.co.uk>
18055 S:      Supported
18056 F:      drivers/staging/r8188eu/
18057
18058 STAGING - REALTEK RTL8712U DRIVERS
18059 M:      Larry Finger <Larry.Finger@lwfinger.net>
18060 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
18061 S:      Odd Fixes
18062 F:      drivers/staging/rtl8712/
18063
18064 STAGING - SEPS525 LCD CONTROLLER DRIVERS
18065 M:      Michael Hennerich <michael.hennerich@analog.com>
18066 L:      linux-fbdev@vger.kernel.org
18067 S:      Supported
18068 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
18069 F:      drivers/staging/fbtft/fb_seps525.c
18070
18071 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
18072 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18073 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18074 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18075 L:      linux-fbdev@vger.kernel.org
18076 S:      Maintained
18077 F:      drivers/staging/sm750fb/
18078
18079 STAGING - VIA VT665X DRIVERS
18080 M:      Forest Bond <forest@alittletooquiet.net>
18081 S:      Odd Fixes
18082 F:      drivers/staging/vt665?/
18083
18084 STAGING SUBSYSTEM
18085 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18086 L:      linux-staging@lists.linux.dev
18087 S:      Supported
18088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
18089 F:      drivers/staging/
18090
18091 STARFIRE/DURALAN NETWORK DRIVER
18092 M:      Ion Badulescu <ionut@badula.org>
18093 S:      Odd Fixes
18094 F:      drivers/net/ethernet/adaptec/starfire*
18095
18096 STATIC BRANCH/CALL
18097 M:      Peter Zijlstra <peterz@infradead.org>
18098 M:      Josh Poimboeuf <jpoimboe@redhat.com>
18099 M:      Jason Baron <jbaron@akamai.com>
18100 R:      Steven Rostedt <rostedt@goodmis.org>
18101 R:      Ard Biesheuvel <ardb@kernel.org>
18102 S:      Supported
18103 F:      arch/*/include/asm/jump_label*.h
18104 F:      arch/*/include/asm/static_call*.h
18105 F:      arch/*/kernel/jump_label.c
18106 F:      arch/*/kernel/static_call.c
18107 F:      include/linux/jump_label*.h
18108 F:      include/linux/static_call*.h
18109 F:      kernel/jump_label.c
18110 F:      kernel/static_call.c
18111
18112 STI AUDIO (ASoC) DRIVERS
18113 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18114 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18115 S:      Maintained
18116 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
18117 F:      sound/soc/sti/
18118
18119 STI CEC DRIVER
18120 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
18121 S:      Maintained
18122 F:      Documentation/devicetree/bindings/media/stih-cec.txt
18123 F:      drivers/media/cec/platform/sti/
18124
18125 STK1160 USB VIDEO CAPTURE DRIVER
18126 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18127 L:      linux-media@vger.kernel.org
18128 S:      Maintained
18129 T:      git git://linuxtv.org/media_tree.git
18130 F:      drivers/media/usb/stk1160/
18131
18132 STM32 AUDIO (ASoC) DRIVERS
18133 M:      Olivier Moysan <olivier.moysan@foss.st.com>
18134 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18135 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18136 S:      Maintained
18137 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
18138 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
18139 F:      sound/soc/stm/
18140
18141 STM32 TIMER/LPTIMER DRIVERS
18142 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
18143 S:      Maintained
18144 F:      Documentation/ABI/testing/*timer-stm32
18145 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
18146 F:      drivers/*/stm32-*timer*
18147 F:      drivers/pwm/pwm-stm32*
18148 F:      include/linux/*/stm32-*tim*
18149
18150 STMMAC ETHERNET DRIVER
18151 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
18152 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
18153 M:      Jose Abreu <joabreu@synopsys.com>
18154 L:      netdev@vger.kernel.org
18155 S:      Supported
18156 W:      http://www.stlinux.com
18157 F:      Documentation/networking/device_drivers/ethernet/stmicro/
18158 F:      drivers/net/ethernet/stmicro/stmmac/
18159
18160 SUN3/3X
18161 M:      Sam Creasey <sammy@sammy.net>
18162 S:      Maintained
18163 W:      http://sammy.net/sun3/
18164 F:      arch/m68k/include/asm/sun3*
18165 F:      arch/m68k/kernel/*sun3*
18166 F:      arch/m68k/sun3*/
18167 F:      drivers/net/ethernet/i825xx/sun3*
18168
18169 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
18170 M:      Hans de Goede <hdegoede@redhat.com>
18171 L:      linux-input@vger.kernel.org
18172 S:      Maintained
18173 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
18174 F:      drivers/input/keyboard/sun4i-lradc-keys.c
18175
18176 SUNDANCE NETWORK DRIVER
18177 M:      Denis Kirjanov <kda@linux-powerpc.org>
18178 L:      netdev@vger.kernel.org
18179 S:      Maintained
18180 F:      drivers/net/ethernet/dlink/sundance.c
18181
18182 SUPERH
18183 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
18184 M:      Rich Felker <dalias@libc.org>
18185 L:      linux-sh@vger.kernel.org
18186 S:      Maintained
18187 Q:      http://patchwork.kernel.org/project/linux-sh/list/
18188 F:      Documentation/sh/
18189 F:      arch/sh/
18190 F:      drivers/sh/
18191
18192 SUSPEND TO RAM
18193 M:      "Rafael J. Wysocki" <rafael@kernel.org>
18194 M:      Len Brown <len.brown@intel.com>
18195 M:      Pavel Machek <pavel@ucw.cz>
18196 L:      linux-pm@vger.kernel.org
18197 S:      Supported
18198 B:      https://bugzilla.kernel.org
18199 F:      Documentation/power/
18200 F:      arch/x86/kernel/acpi/
18201 F:      drivers/base/power/
18202 F:      include/linux/freezer.h
18203 F:      include/linux/pm.h
18204 F:      include/linux/suspend.h
18205 F:      kernel/power/
18206
18207 SVGA HANDLING
18208 M:      Martin Mares <mj@ucw.cz>
18209 L:      linux-video@atrey.karlin.mff.cuni.cz
18210 S:      Maintained
18211 F:      Documentation/admin-guide/svga.rst
18212 F:      arch/x86/boot/video*
18213
18214 SWIOTLB SUBSYSTEM
18215 M:      Christoph Hellwig <hch@infradead.org>
18216 L:      iommu@lists.linux-foundation.org
18217 S:      Supported
18218 W:      http://git.infradead.org/users/hch/dma-mapping.git
18219 T:      git git://git.infradead.org/users/hch/dma-mapping.git
18220 F:      arch/*/kernel/pci-swiotlb.c
18221 F:      include/linux/swiotlb.h
18222 F:      kernel/dma/swiotlb.c
18223
18224 SWITCHDEV
18225 M:      Jiri Pirko <jiri@resnulli.us>
18226 M:      Ivan Vecera <ivecera@redhat.com>
18227 L:      netdev@vger.kernel.org
18228 S:      Supported
18229 F:      include/net/switchdev.h
18230 F:      net/switchdev/
18231
18232 SY8106A REGULATOR DRIVER
18233 M:      Icenowy Zheng <icenowy@aosc.io>
18234 S:      Maintained
18235 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18236 F:      drivers/regulator/sy8106a-regulator.c
18237
18238 SYNC FILE FRAMEWORK
18239 M:      Sumit Semwal <sumit.semwal@linaro.org>
18240 R:      Gustavo Padovan <gustavo@padovan.org>
18241 L:      linux-media@vger.kernel.org
18242 L:      dri-devel@lists.freedesktop.org
18243 S:      Maintained
18244 T:      git git://anongit.freedesktop.org/drm/drm-misc
18245 F:      Documentation/driver-api/sync_file.rst
18246 F:      drivers/dma-buf/dma-fence*
18247 F:      drivers/dma-buf/sw_sync.c
18248 F:      drivers/dma-buf/sync_*
18249 F:      include/linux/sync_file.h
18250 F:      include/uapi/linux/sync_file.h
18251
18252 SYNOPSYS ARC ARCHITECTURE
18253 M:      Vineet Gupta <vgupta@kernel.org>
18254 L:      linux-snps-arc@lists.infradead.org
18255 S:      Supported
18256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18257 F:      Documentation/devicetree/bindings/arc/*
18258 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18259 F:      arch/arc/
18260 F:      drivers/clocksource/arc_timer.c
18261 F:      drivers/tty/serial/arc_uart.c
18262
18263 SYNOPSYS ARC HSDK SDP pll clock driver
18264 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18265 S:      Supported
18266 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
18267 F:      drivers/clk/clk-hsdk-pll.c
18268
18269 SYNOPSYS ARC SDP clock driver
18270 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18271 S:      Supported
18272 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
18273 F:      drivers/clk/axs10x/*
18274
18275 SYNOPSYS ARC SDP platform support
18276 M:      Alexey Brodkin <abrodkin@synopsys.com>
18277 S:      Supported
18278 F:      Documentation/devicetree/bindings/arc/axs10*
18279 F:      arch/arc/boot/dts/ax*
18280 F:      arch/arc/plat-axs10x
18281
18282 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
18283 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18284 S:      Supported
18285 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
18286 F:      drivers/reset/reset-axs10x.c
18287
18288 SYNOPSYS CREG GPIO DRIVER
18289 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18290 S:      Maintained
18291 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
18292 F:      drivers/gpio/gpio-creg-snps.c
18293
18294 SYNOPSYS DESIGNWARE 8250 UART DRIVER
18295 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18296 S:      Maintained
18297 F:      drivers/tty/serial/8250/8250_dw.c
18298 F:      drivers/tty/serial/8250/8250_dwlib.*
18299 F:      drivers/tty/serial/8250/8250_lpss.c
18300
18301 SYNOPSYS DESIGNWARE APB GPIO DRIVER
18302 M:      Hoan Tran <hoan@os.amperecomputing.com>
18303 M:      Serge Semin <fancer.lancer@gmail.com>
18304 L:      linux-gpio@vger.kernel.org
18305 S:      Maintained
18306 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
18307 F:      drivers/gpio/gpio-dwapb.c
18308
18309 SYNOPSYS DESIGNWARE APB SSI DRIVER
18310 M:      Serge Semin <fancer.lancer@gmail.com>
18311 L:      linux-spi@vger.kernel.org
18312 S:      Supported
18313 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
18314 F:      drivers/spi/spi-dw*
18315
18316 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
18317 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18318 S:      Maintained
18319 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
18320 F:      drivers/dma/dw-axi-dmac/
18321
18322 SYNOPSYS DESIGNWARE DMAC DRIVER
18323 M:      Viresh Kumar <vireshk@kernel.org>
18324 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18325 S:      Maintained
18326 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
18327 F:      drivers/dma/dw/
18328 F:      include/dt-bindings/dma/dw-dmac.h
18329 F:      include/linux/dma/dw.h
18330 F:      include/linux/platform_data/dma-dw.h
18331
18332 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
18333 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18334 L:      netdev@vger.kernel.org
18335 S:      Supported
18336 F:      drivers/net/ethernet/synopsys/
18337
18338 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
18339 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18340 L:      netdev@vger.kernel.org
18341 S:      Supported
18342 F:      drivers/net/pcs/pcs-xpcs.c
18343 F:      drivers/net/pcs/pcs-xpcs.h
18344 F:      include/linux/pcs/pcs-xpcs.h
18345
18346 SYNOPSYS DESIGNWARE I2C DRIVER
18347 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
18348 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18349 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
18350 L:      linux-i2c@vger.kernel.org
18351 S:      Maintained
18352 F:      drivers/i2c/busses/i2c-designware-*
18353
18354 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
18355 M:      Jaehoon Chung <jh80.chung@samsung.com>
18356 L:      linux-mmc@vger.kernel.org
18357 S:      Maintained
18358 F:      drivers/mmc/host/dw_mmc*
18359
18360 SYNOPSYS HSDK RESET CONTROLLER DRIVER
18361 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18362 S:      Supported
18363 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
18364 F:      drivers/reset/reset-hsdk.c
18365 F:      include/dt-bindings/reset/snps,hsdk-reset.h
18366
18367 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
18368 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
18369 M:      Manjunath M B <manjumb@synopsys.com>
18370 L:      linux-mmc@vger.kernel.org
18371 S:      Maintained
18372 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
18373
18374 SYSTEM CONFIGURATION (SYSCON)
18375 M:      Lee Jones <lee.jones@linaro.org>
18376 M:      Arnd Bergmann <arnd@arndb.de>
18377 S:      Supported
18378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
18379 F:      drivers/mfd/syscon.c
18380
18381 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
18382 M:      Sudeep Holla <sudeep.holla@arm.com>
18383 R:      Cristian Marussi <cristian.marussi@arm.com>
18384 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18385 S:      Maintained
18386 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
18387 F:      drivers/clk/clk-sc[mp]i.c
18388 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
18389 F:      drivers/firmware/arm_scmi/
18390 F:      drivers/firmware/arm_scpi.c
18391 F:      drivers/regulator/scmi-regulator.c
18392 F:      drivers/reset/reset-scmi.c
18393 F:      include/linux/sc[mp]i_protocol.h
18394 F:      include/trace/events/scmi.h
18395 F:      include/uapi/linux/virtio_scmi.h
18396
18397 SYSTEM RESET/SHUTDOWN DRIVERS
18398 M:      Sebastian Reichel <sre@kernel.org>
18399 L:      linux-pm@vger.kernel.org
18400 S:      Maintained
18401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
18402 F:      Documentation/devicetree/bindings/power/reset/
18403 F:      drivers/power/reset/
18404
18405 SYSTEM TRACE MODULE CLASS
18406 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
18407 S:      Maintained
18408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
18409 F:      Documentation/trace/stm.rst
18410 F:      drivers/hwtracing/stm/
18411 F:      include/linux/stm.h
18412 F:      include/uapi/linux/stm.h
18413
18414 SYSTEM76 ACPI DRIVER
18415 M:      Jeremy Soller <jeremy@system76.com>
18416 M:      System76 Product Development <productdev@system76.com>
18417 L:      platform-driver-x86@vger.kernel.org
18418 S:      Maintained
18419 F:      drivers/platform/x86/system76_acpi.c
18420
18421 SYSV FILESYSTEM
18422 M:      Christoph Hellwig <hch@infradead.org>
18423 S:      Maintained
18424 F:      Documentation/filesystems/sysv-fs.rst
18425 F:      fs/sysv/
18426 F:      include/linux/sysv_fs.h
18427
18428 TASKSTATS STATISTICS INTERFACE
18429 M:      Balbir Singh <bsingharora@gmail.com>
18430 S:      Maintained
18431 F:      Documentation/accounting/taskstats*
18432 F:      include/linux/taskstats*
18433 F:      kernel/taskstats.c
18434
18435 TC subsystem
18436 M:      Jamal Hadi Salim <jhs@mojatatu.com>
18437 M:      Cong Wang <xiyou.wangcong@gmail.com>
18438 M:      Jiri Pirko <jiri@resnulli.us>
18439 L:      netdev@vger.kernel.org
18440 S:      Maintained
18441 F:      include/net/pkt_cls.h
18442 F:      include/net/pkt_sched.h
18443 F:      include/net/tc_act/
18444 F:      include/uapi/linux/pkt_cls.h
18445 F:      include/uapi/linux/pkt_sched.h
18446 F:      include/uapi/linux/tc_act/
18447 F:      include/uapi/linux/tc_ematch/
18448 F:      net/sched/
18449
18450 TC90522 MEDIA DRIVER
18451 M:      Akihiro Tsukada <tskd08@gmail.com>
18452 L:      linux-media@vger.kernel.org
18453 S:      Odd Fixes
18454 F:      drivers/media/dvb-frontends/tc90522*
18455
18456 TCP LOW PRIORITY MODULE
18457 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
18458 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
18459 S:      Maintained
18460 W:      http://tcp-lp-mod.sourceforge.net/
18461 F:      net/ipv4/tcp_lp.c
18462
18463 TDA10071 MEDIA DRIVER
18464 M:      Antti Palosaari <crope@iki.fi>
18465 L:      linux-media@vger.kernel.org
18466 S:      Maintained
18467 W:      https://linuxtv.org
18468 W:      http://palosaari.fi/linux/
18469 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18470 T:      git git://linuxtv.org/anttip/media_tree.git
18471 F:      drivers/media/dvb-frontends/tda10071*
18472
18473 TDA18212 MEDIA DRIVER
18474 M:      Antti Palosaari <crope@iki.fi>
18475 L:      linux-media@vger.kernel.org
18476 S:      Maintained
18477 W:      https://linuxtv.org
18478 W:      http://palosaari.fi/linux/
18479 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18480 T:      git git://linuxtv.org/anttip/media_tree.git
18481 F:      drivers/media/tuners/tda18212*
18482
18483 TDA18218 MEDIA DRIVER
18484 M:      Antti Palosaari <crope@iki.fi>
18485 L:      linux-media@vger.kernel.org
18486 S:      Maintained
18487 W:      https://linuxtv.org
18488 W:      http://palosaari.fi/linux/
18489 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18490 T:      git git://linuxtv.org/anttip/media_tree.git
18491 F:      drivers/media/tuners/tda18218*
18492
18493 TDA18250 MEDIA DRIVER
18494 M:      Olli Salonen <olli.salonen@iki.fi>
18495 L:      linux-media@vger.kernel.org
18496 S:      Maintained
18497 W:      https://linuxtv.org
18498 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18499 T:      git git://linuxtv.org/media_tree.git
18500 F:      drivers/media/tuners/tda18250*
18501
18502 TDA18271 MEDIA DRIVER
18503 M:      Michael Krufky <mkrufky@linuxtv.org>
18504 L:      linux-media@vger.kernel.org
18505 S:      Maintained
18506 W:      https://linuxtv.org
18507 W:      http://github.com/mkrufky
18508 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18509 T:      git git://linuxtv.org/mkrufky/tuners.git
18510 F:      drivers/media/tuners/tda18271*
18511
18512 TDA1997x MEDIA DRIVER
18513 M:      Tim Harvey <tharvey@gateworks.com>
18514 L:      linux-media@vger.kernel.org
18515 S:      Maintained
18516 W:      https://linuxtv.org
18517 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18518 F:      drivers/media/i2c/tda1997x.*
18519
18520 TDA827x MEDIA DRIVER
18521 M:      Michael Krufky <mkrufky@linuxtv.org>
18522 L:      linux-media@vger.kernel.org
18523 S:      Maintained
18524 W:      https://linuxtv.org
18525 W:      http://github.com/mkrufky
18526 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18527 T:      git git://linuxtv.org/mkrufky/tuners.git
18528 F:      drivers/media/tuners/tda8290.*
18529
18530 TDA8290 MEDIA DRIVER
18531 M:      Michael Krufky <mkrufky@linuxtv.org>
18532 L:      linux-media@vger.kernel.org
18533 S:      Maintained
18534 W:      https://linuxtv.org
18535 W:      http://github.com/mkrufky
18536 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18537 T:      git git://linuxtv.org/mkrufky/tuners.git
18538 F:      drivers/media/tuners/tda8290.*
18539
18540 TDA9840 MEDIA DRIVER
18541 M:      Hans Verkuil <hverkuil@xs4all.nl>
18542 L:      linux-media@vger.kernel.org
18543 S:      Maintained
18544 W:      https://linuxtv.org
18545 T:      git git://linuxtv.org/media_tree.git
18546 F:      drivers/media/i2c/tda9840*
18547
18548 TEA5761 TUNER DRIVER
18549 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18550 L:      linux-media@vger.kernel.org
18551 S:      Odd fixes
18552 W:      https://linuxtv.org
18553 T:      git git://linuxtv.org/media_tree.git
18554 F:      drivers/media/tuners/tea5761.*
18555
18556 TEA5767 TUNER DRIVER
18557 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18558 L:      linux-media@vger.kernel.org
18559 S:      Maintained
18560 W:      https://linuxtv.org
18561 T:      git git://linuxtv.org/media_tree.git
18562 F:      drivers/media/tuners/tea5767.*
18563
18564 TEA6415C MEDIA DRIVER
18565 M:      Hans Verkuil <hverkuil@xs4all.nl>
18566 L:      linux-media@vger.kernel.org
18567 S:      Maintained
18568 W:      https://linuxtv.org
18569 T:      git git://linuxtv.org/media_tree.git
18570 F:      drivers/media/i2c/tea6415c*
18571
18572 TEA6420 MEDIA DRIVER
18573 M:      Hans Verkuil <hverkuil@xs4all.nl>
18574 L:      linux-media@vger.kernel.org
18575 S:      Maintained
18576 W:      https://linuxtv.org
18577 T:      git git://linuxtv.org/media_tree.git
18578 F:      drivers/media/i2c/tea6420*
18579
18580 TEAM DRIVER
18581 M:      Jiri Pirko <jiri@resnulli.us>
18582 L:      netdev@vger.kernel.org
18583 S:      Supported
18584 F:      drivers/net/team/
18585 F:      include/linux/if_team.h
18586 F:      include/uapi/linux/if_team.h
18587
18588 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18589 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
18590 S:      Maintained
18591 F:      arch/x86/platform/ts5500/
18592
18593 TECHNOTREND USB IR RECEIVER
18594 M:      Sean Young <sean@mess.org>
18595 L:      linux-media@vger.kernel.org
18596 S:      Maintained
18597 F:      drivers/media/rc/ttusbir.c
18598
18599 TECHWELL TW9910 VIDEO DECODER
18600 L:      linux-media@vger.kernel.org
18601 S:      Orphan
18602 F:      drivers/media/i2c/tw9910.c
18603 F:      include/media/i2c/tw9910.h
18604
18605 TEE SUBSYSTEM
18606 M:      Jens Wiklander <jens.wiklander@linaro.org>
18607 R:      Sumit Garg <sumit.garg@linaro.org>
18608 L:      op-tee@lists.trustedfirmware.org
18609 S:      Maintained
18610 F:      Documentation/staging/tee.rst
18611 F:      drivers/tee/
18612 F:      include/linux/tee_drv.h
18613 F:      include/uapi/linux/tee.h
18614
18615 TEGRA ARCHITECTURE SUPPORT
18616 M:      Thierry Reding <thierry.reding@gmail.com>
18617 M:      Jonathan Hunter <jonathanh@nvidia.com>
18618 L:      linux-tegra@vger.kernel.org
18619 S:      Supported
18620 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
18621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18622 N:      [^a-z]tegra
18623
18624 TEGRA CLOCK DRIVER
18625 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
18626 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
18627 S:      Supported
18628 F:      drivers/clk/tegra/
18629
18630 TEGRA DMA DRIVERS
18631 M:      Laxman Dewangan <ldewangan@nvidia.com>
18632 M:      Jon Hunter <jonathanh@nvidia.com>
18633 S:      Supported
18634 F:      drivers/dma/tegra*
18635
18636 TEGRA I2C DRIVER
18637 M:      Laxman Dewangan <ldewangan@nvidia.com>
18638 R:      Dmitry Osipenko <digetx@gmail.com>
18639 S:      Supported
18640 F:      drivers/i2c/busses/i2c-tegra.c
18641
18642 TEGRA IOMMU DRIVERS
18643 M:      Thierry Reding <thierry.reding@gmail.com>
18644 R:      Krishna Reddy <vdumpa@nvidia.com>
18645 L:      linux-tegra@vger.kernel.org
18646 S:      Supported
18647 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18648 F:      drivers/iommu/tegra*
18649
18650 TEGRA KBC DRIVER
18651 M:      Laxman Dewangan <ldewangan@nvidia.com>
18652 S:      Supported
18653 F:      drivers/input/keyboard/tegra-kbc.c
18654
18655 TEGRA NAND DRIVER
18656 M:      Stefan Agner <stefan@agner.ch>
18657 M:      Lucas Stach <dev@lynxeye.de>
18658 S:      Maintained
18659 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18660 F:      drivers/mtd/nand/raw/tegra_nand.c
18661
18662 TEGRA PWM DRIVER
18663 M:      Thierry Reding <thierry.reding@gmail.com>
18664 S:      Supported
18665 F:      drivers/pwm/pwm-tegra.c
18666
18667 TEGRA SERIAL DRIVER
18668 M:      Laxman Dewangan <ldewangan@nvidia.com>
18669 S:      Supported
18670 F:      drivers/tty/serial/serial-tegra.c
18671
18672 TEGRA SPI DRIVER
18673 M:      Laxman Dewangan <ldewangan@nvidia.com>
18674 S:      Supported
18675 F:      drivers/spi/spi-tegra*
18676
18677 TEGRA QUAD SPI DRIVER
18678 M:      Thierry Reding <thierry.reding@gmail.com>
18679 M:      Jonathan Hunter <jonathanh@nvidia.com>
18680 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18681 L:      linux-tegra@vger.kernel.org
18682 S:      Maintained
18683 F:      drivers/spi/spi-tegra210-quad.c
18684
18685 TEGRA VIDEO DRIVER
18686 M:      Thierry Reding <thierry.reding@gmail.com>
18687 M:      Jonathan Hunter <jonathanh@nvidia.com>
18688 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18689 L:      linux-media@vger.kernel.org
18690 L:      linux-tegra@vger.kernel.org
18691 S:      Maintained
18692 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
18693 F:      drivers/staging/media/tegra-video/
18694
18695 TEGRA XUSB PADCTL DRIVER
18696 M:      JC Kuo <jckuo@nvidia.com>
18697 S:      Supported
18698 F:      drivers/phy/tegra/xusb*
18699
18700 TEHUTI ETHERNET DRIVER
18701 M:      Andy Gospodarek <andy@greyhouse.net>
18702 L:      netdev@vger.kernel.org
18703 S:      Supported
18704 F:      drivers/net/ethernet/tehuti/*
18705
18706 TELECOM CLOCK DRIVER FOR MCPL0010
18707 M:      Mark Gross <markgross@kernel.org>
18708 S:      Supported
18709 F:      drivers/char/tlclk.c
18710
18711 TEMPO SEMICONDUCTOR DRIVERS
18712 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
18713 S:      Maintained
18714 F:      Documentation/devicetree/bindings/sound/tscs*.txt
18715 F:      sound/soc/codecs/tscs*.c
18716 F:      sound/soc/codecs/tscs*.h
18717
18718 TENSILICA XTENSA PORT (xtensa)
18719 M:      Chris Zankel <chris@zankel.net>
18720 M:      Max Filippov <jcmvbkbc@gmail.com>
18721 L:      linux-xtensa@linux-xtensa.org
18722 S:      Maintained
18723 T:      git git://github.com/czankel/xtensa-linux.git
18724 F:      arch/xtensa/
18725 F:      drivers/irqchip/irq-xtensa-*
18726
18727 TEXAS INSTRUMENTS ASoC DRIVERS
18728 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18729 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18730 S:      Maintained
18731 F:      sound/soc/ti/
18732
18733 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18734 M:      Ricardo Ribalda <ribalda@kernel.org>
18735 L:      linux-iio@vger.kernel.org
18736 S:      Supported
18737 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18738 F:      drivers/iio/dac/ti-dac7612.c
18739
18740 TEXAS INSTRUMENTS DMA DRIVERS
18741 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18742 L:      dmaengine@vger.kernel.org
18743 S:      Maintained
18744 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18745 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
18746 F:      Documentation/devicetree/bindings/dma/ti/
18747 F:      drivers/dma/ti/
18748 X:      drivers/dma/ti/cppi41.c
18749 F:      include/linux/dma/k3-udma-glue.h
18750 F:      include/linux/dma/ti-cppi5.h
18751 F:      include/linux/dma/k3-psil.h
18752
18753 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18754 M:      Nishanth Menon <nm@ti.com>
18755 M:      Tero Kristo <kristo@kernel.org>
18756 M:      Santosh Shilimkar <ssantosh@kernel.org>
18757 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18758 S:      Maintained
18759 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18760 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
18761 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
18762 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18763 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18764 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
18765 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
18766 F:      drivers/clk/keystone/sci-clk.c
18767 F:      drivers/firmware/ti_sci*
18768 F:      drivers/irqchip/irq-ti-sci-inta.c
18769 F:      drivers/irqchip/irq-ti-sci-intr.c
18770 F:      drivers/reset/reset-ti-sci.c
18771 F:      drivers/soc/ti/ti_sci_inta_msi.c
18772 F:      drivers/soc/ti/ti_sci_pm_domains.c
18773 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
18774 F:      include/linux/soc/ti/ti_sci_inta_msi.h
18775 F:      include/linux/soc/ti/ti_sci_protocol.h
18776
18777 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18778 M:      Robert Marko <robert.marko@sartura.hr>
18779 M:      Luka Perkov <luka.perkov@sartura.hr>
18780 L:      linux-hwmon@vger.kernel.org
18781 S:      Maintained
18782 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18783 F:      Documentation/hwmon/tps23861.rst
18784 F:      drivers/hwmon/tps23861.c
18785
18786 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
18787 M:      Puranjay Mohan <puranjay12@gmail.com>
18788 L:      linux-iio@vger.kernel.org
18789 S:      Supported
18790 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
18791 F:      drivers/iio/temperature/tmp117.c
18792
18793 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18794 M:      Hans Verkuil <hverkuil@xs4all.nl>
18795 L:      linux-media@vger.kernel.org
18796 S:      Maintained
18797 W:      https://linuxtv.org
18798 T:      git git://linuxtv.org/media_tree.git
18799 F:      drivers/media/radio/radio-raremono.c
18800
18801 THERMAL
18802 M:      Rafael J. Wysocki <rafael@kernel.org>
18803 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18804 R:      Amit Kucheria <amitk@kernel.org>
18805 R:      Zhang Rui <rui.zhang@intel.com>
18806 L:      linux-pm@vger.kernel.org
18807 S:      Supported
18808 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
18810 F:      Documentation/ABI/testing/sysfs-class-thermal
18811 F:      Documentation/devicetree/bindings/thermal/
18812 F:      Documentation/driver-api/thermal/
18813 F:      drivers/thermal/
18814 F:      include/linux/cpu_cooling.h
18815 F:      include/linux/thermal.h
18816 F:      include/uapi/linux/thermal.h
18817 F:      tools/thermal/
18818
18819 THERMAL DRIVER FOR AMLOGIC SOCS
18820 M:      Guillaume La Roque <glaroque@baylibre.com>
18821 L:      linux-pm@vger.kernel.org
18822 L:      linux-amlogic@lists.infradead.org
18823 S:      Supported
18824 W:      http://linux-meson.com/
18825 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18826 F:      drivers/thermal/amlogic_thermal.c
18827
18828 THERMAL/CPU_COOLING
18829 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
18830 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18831 M:      Viresh Kumar <viresh.kumar@linaro.org>
18832 R:      Lukasz Luba <lukasz.luba@arm.com>
18833 L:      linux-pm@vger.kernel.org
18834 S:      Supported
18835 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
18836 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
18837 F:      drivers/thermal/cpufreq_cooling.c
18838 F:      drivers/thermal/cpuidle_cooling.c
18839 F:      include/linux/cpu_cooling.h
18840
18841 THERMAL/POWER_ALLOCATOR
18842 M:      Lukasz Luba <lukasz.luba@arm.com>
18843 L:      linux-pm@vger.kernel.org
18844 S:      Maintained
18845 F:      Documentation/driver-api/thermal/power_allocator.rst
18846 F:      drivers/thermal/gov_power_allocator.c
18847 F:      include/trace/events/thermal_power_allocator.h
18848
18849 THINKPAD ACPI EXTRAS DRIVER
18850 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18851 L:      ibm-acpi-devel@lists.sourceforge.net
18852 L:      platform-driver-x86@vger.kernel.org
18853 S:      Maintained
18854 W:      http://ibm-acpi.sourceforge.net
18855 W:      http://thinkwiki.org/wiki/Ibm-acpi
18856 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18857 F:      drivers/platform/x86/thinkpad_acpi.c
18858
18859 THINKPAD LMI DRIVER
18860 M:      Mark Pearson <markpearson@lenovo.com>
18861 L:      platform-driver-x86@vger.kernel.org
18862 S:      Maintained
18863 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
18864 F:      drivers/platform/x86/think-lmi.?
18865
18866 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18867 M:      Isaac Hazan <isaac.hazan@intel.com>
18868 L:      linux-usb@vger.kernel.org
18869 S:      Maintained
18870 F:      drivers/thunderbolt/dma_test.c
18871
18872 THUNDERBOLT DRIVER
18873 M:      Andreas Noever <andreas.noever@gmail.com>
18874 M:      Michael Jamet <michael.jamet@intel.com>
18875 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18876 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18877 L:      linux-usb@vger.kernel.org
18878 S:      Maintained
18879 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18880 F:      Documentation/admin-guide/thunderbolt.rst
18881 F:      drivers/thunderbolt/
18882 F:      include/linux/thunderbolt.h
18883
18884 THUNDERBOLT NETWORK DRIVER
18885 M:      Michael Jamet <michael.jamet@intel.com>
18886 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18887 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18888 L:      netdev@vger.kernel.org
18889 S:      Maintained
18890 F:      drivers/net/thunderbolt.c
18891
18892 THUNDERX GPIO DRIVER
18893 M:      Robert Richter <rric@kernel.org>
18894 S:      Odd Fixes
18895 F:      drivers/gpio/gpio-thunderx.c
18896
18897 TI ADS131E0X ADC SERIES DRIVER
18898 M:      Tomislav Denis <tomislav.denis@avl.com>
18899 L:      linux-iio@vger.kernel.org
18900 S:      Maintained
18901 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18902 F:      drivers/iio/adc/ti-ads131e08.c
18903
18904 TI AM437X VPFE DRIVER
18905 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18906 L:      linux-media@vger.kernel.org
18907 S:      Maintained
18908 W:      https://linuxtv.org
18909 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18910 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18911 F:      drivers/media/platform/am437x/
18912
18913 TI BANDGAP AND THERMAL DRIVER
18914 M:      Eduardo Valentin <edubezval@gmail.com>
18915 M:      Keerthy <j-keerthy@ti.com>
18916 L:      linux-pm@vger.kernel.org
18917 L:      linux-omap@vger.kernel.org
18918 S:      Maintained
18919 F:      drivers/thermal/ti-soc-thermal/
18920
18921 TI BQ27XXX POWER SUPPLY DRIVER
18922 F:      drivers/power/supply/bq27xxx_battery.c
18923 F:      drivers/power/supply/bq27xxx_battery_i2c.c
18924 F:      include/linux/power/bq27xxx_battery.h
18925
18926 TI CDCE706 CLOCK DRIVER
18927 M:      Max Filippov <jcmvbkbc@gmail.com>
18928 S:      Maintained
18929 F:      drivers/clk/clk-cdce706.c
18930
18931 TI CLOCK DRIVER
18932 M:      Tero Kristo <kristo@kernel.org>
18933 L:      linux-omap@vger.kernel.org
18934 S:      Odd Fixes
18935 F:      drivers/clk/ti/
18936 F:      include/linux/clk/ti.h
18937
18938 TI DAVINCI MACHINE SUPPORT
18939 M:      Sekhar Nori <nsekhar@ti.com>
18940 R:      Bartosz Golaszewski <brgl@bgdev.pl>
18941 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18942 S:      Supported
18943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18944 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18945 F:      arch/arm/boot/dts/da850*
18946 F:      arch/arm/mach-davinci/
18947 F:      drivers/i2c/busses/i2c-davinci.c
18948
18949 TI DAVINCI SERIES CLOCK DRIVER
18950 M:      David Lechner <david@lechnology.com>
18951 R:      Sekhar Nori <nsekhar@ti.com>
18952 S:      Maintained
18953 F:      Documentation/devicetree/bindings/clock/ti/davinci/
18954 F:      drivers/clk/davinci/
18955
18956 TI DAVINCI SERIES GPIO DRIVER
18957 M:      Keerthy <j-keerthy@ti.com>
18958 L:      linux-gpio@vger.kernel.org
18959 S:      Maintained
18960 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
18961 F:      drivers/gpio/gpio-davinci.c
18962
18963 TI DAVINCI SERIES MEDIA DRIVER
18964 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18965 L:      linux-media@vger.kernel.org
18966 S:      Maintained
18967 W:      https://linuxtv.org
18968 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18969 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18970 F:      drivers/media/platform/davinci/
18971 F:      include/media/davinci/
18972
18973 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18974 R:      David Lechner <david@lechnology.com>
18975 L:      linux-iio@vger.kernel.org
18976 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
18977 F:      drivers/counter/ti-eqep.c
18978
18979 TI ETHERNET SWITCH DRIVER (CPSW)
18980 R:      Grygorii Strashko <grygorii.strashko@ti.com>
18981 L:      linux-omap@vger.kernel.org
18982 L:      netdev@vger.kernel.org
18983 S:      Maintained
18984 F:      drivers/net/ethernet/ti/cpsw*
18985 F:      drivers/net/ethernet/ti/davinci*
18986
18987 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18988 M:      Alex Dubov <oakad@yahoo.com>
18989 S:      Maintained
18990 W:      http://tifmxx.berlios.de/
18991 F:      drivers/memstick/host/tifm_ms.c
18992 F:      drivers/misc/tifm*
18993 F:      drivers/mmc/host/tifm_sd.c
18994 F:      include/linux/tifm.h
18995
18996 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
18997 M:      Santosh Shilimkar <ssantosh@kernel.org>
18998 L:      linux-kernel@vger.kernel.org
18999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19000 S:      Maintained
19001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
19002 F:      drivers/soc/ti/*
19003
19004 TI LM49xxx FAMILY ASoC CODEC DRIVERS
19005 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
19006 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
19007 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19008 S:      Maintained
19009 F:      sound/soc/codecs/isabelle*
19010 F:      sound/soc/codecs/lm49453*
19011
19012 TI PCM3060 ASoC CODEC DRIVER
19013 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
19014 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19015 S:      Maintained
19016 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
19017 F:      sound/soc/codecs/pcm3060*
19018
19019 TI TAS571X FAMILY ASoC CODEC DRIVER
19020 M:      Kevin Cernekee <cernekee@chromium.org>
19021 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19022 S:      Odd Fixes
19023 F:      sound/soc/codecs/tas571x*
19024
19025 TI TRF7970A NFC DRIVER
19026 M:      Mark Greer <mgreer@animalcreek.com>
19027 L:      linux-wireless@vger.kernel.org
19028 L:      linux-nfc@lists.01.org (subscribers-only)
19029 S:      Supported
19030 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
19031 F:      drivers/nfc/trf7970a.c
19032
19033 TI TSC2046 ADC DRIVER
19034 M:      Oleksij Rempel <o.rempel@pengutronix.de>
19035 R:      kernel@pengutronix.de
19036 L:      linux-iio@vger.kernel.org
19037 S:      Maintained
19038 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
19039 F:      drivers/iio/adc/ti-tsc2046.c
19040
19041 TI TWL4030 SERIES SOC CODEC DRIVER
19042 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19043 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19044 S:      Maintained
19045 F:      sound/soc/codecs/twl4030*
19046
19047 TI VPE/CAL DRIVERS
19048 M:      Benoit Parrot <bparrot@ti.com>
19049 L:      linux-media@vger.kernel.org
19050 S:      Maintained
19051 W:      http://linuxtv.org/
19052 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19053 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
19054 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
19055 F:      drivers/media/platform/ti-vpe/
19056
19057 TI WILINK WIRELESS DRIVERS
19058 L:      linux-wireless@vger.kernel.org
19059 S:      Orphan
19060 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
19061 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
19062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
19063 F:      drivers/net/wireless/ti/
19064 F:      include/linux/wl12xx.h
19065
19066 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
19067 M:      John Stultz <john.stultz@linaro.org>
19068 M:      Thomas Gleixner <tglx@linutronix.de>
19069 R:      Stephen Boyd <sboyd@kernel.org>
19070 L:      linux-kernel@vger.kernel.org
19071 S:      Supported
19072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
19073 F:      include/linux/clocksource.h
19074 F:      include/linux/time.h
19075 F:      include/linux/timex.h
19076 F:      include/uapi/linux/time.h
19077 F:      include/uapi/linux/timex.h
19078 F:      kernel/time/alarmtimer.c
19079 F:      kernel/time/clocksource.c
19080 F:      kernel/time/ntp.c
19081 F:      kernel/time/time*.c
19082 F:      tools/testing/selftests/timers/
19083
19084 TIPC NETWORK LAYER
19085 M:      Jon Maloy <jmaloy@redhat.com>
19086 M:      Ying Xue <ying.xue@windriver.com>
19087 L:      netdev@vger.kernel.org (core kernel code)
19088 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
19089 S:      Maintained
19090 W:      http://tipc.sourceforge.net/
19091 F:      include/uapi/linux/tipc*.h
19092 F:      net/tipc/
19093
19094 TLAN NETWORK DRIVER
19095 M:      Samuel Chessman <chessman@tux.org>
19096 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
19097 S:      Maintained
19098 W:      http://sourceforge.net/projects/tlan/
19099 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
19100 F:      drivers/net/ethernet/ti/tlan.*
19101
19102 TM6000 VIDEO4LINUX DRIVER
19103 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19104 L:      linux-media@vger.kernel.org
19105 S:      Odd fixes
19106 W:      https://linuxtv.org
19107 T:      git git://linuxtv.org/media_tree.git
19108 F:      Documentation/admin-guide/media/tm6000*
19109 F:      drivers/media/usb/tm6000/
19110
19111 TMIO/SDHI MMC DRIVER
19112 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
19113 L:      linux-mmc@vger.kernel.org
19114 S:      Supported
19115 F:      drivers/mmc/host/renesas_sdhi*
19116 F:      drivers/mmc/host/tmio_mmc*
19117 F:      include/linux/mfd/tmio.h
19118
19119 TMP401 HARDWARE MONITOR DRIVER
19120 M:      Guenter Roeck <linux@roeck-us.net>
19121 L:      linux-hwmon@vger.kernel.org
19122 S:      Maintained
19123 F:      Documentation/hwmon/tmp401.rst
19124 F:      drivers/hwmon/tmp401.c
19125
19126 TMP513 HARDWARE MONITOR DRIVER
19127 M:      Eric Tremblay <etremblay@distech-controls.com>
19128 L:      linux-hwmon@vger.kernel.org
19129 S:      Maintained
19130 F:      Documentation/hwmon/tmp513.rst
19131 F:      drivers/hwmon/tmp513.c
19132
19133 TMPFS (SHMEM FILESYSTEM)
19134 M:      Hugh Dickins <hughd@google.com>
19135 L:      linux-mm@kvack.org
19136 S:      Maintained
19137 F:      include/linux/shmem_fs.h
19138 F:      mm/shmem.c
19139
19140 TOMOYO SECURITY MODULE
19141 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
19142 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
19143 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
19144 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
19145 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
19146 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
19147 S:      Maintained
19148 W:      https://tomoyo.osdn.jp/
19149 F:      security/tomoyo/
19150
19151 TOPSTAR LAPTOP EXTRAS DRIVER
19152 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
19153 L:      platform-driver-x86@vger.kernel.org
19154 S:      Maintained
19155 F:      drivers/platform/x86/topstar-laptop.c
19156
19157 TORTURE-TEST MODULES
19158 M:      Davidlohr Bueso <dave@stgolabs.net>
19159 M:      "Paul E. McKenney" <paulmck@kernel.org>
19160 M:      Josh Triplett <josh@joshtriplett.org>
19161 L:      linux-kernel@vger.kernel.org
19162 S:      Supported
19163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19164 F:      Documentation/RCU/torture.rst
19165 F:      kernel/locking/locktorture.c
19166 F:      kernel/rcu/rcuscale.c
19167 F:      kernel/rcu/rcutorture.c
19168 F:      kernel/rcu/refscale.c
19169 F:      kernel/torture.c
19170
19171 TOSHIBA ACPI EXTRAS DRIVER
19172 M:      Azael Avalos <coproscefalo@gmail.com>
19173 L:      platform-driver-x86@vger.kernel.org
19174 S:      Maintained
19175 F:      drivers/platform/x86/toshiba_acpi.c
19176
19177 TOSHIBA BLUETOOTH DRIVER
19178 M:      Azael Avalos <coproscefalo@gmail.com>
19179 L:      platform-driver-x86@vger.kernel.org
19180 S:      Maintained
19181 F:      drivers/platform/x86/toshiba_bluetooth.c
19182
19183 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
19184 M:      Azael Avalos <coproscefalo@gmail.com>
19185 L:      platform-driver-x86@vger.kernel.org
19186 S:      Maintained
19187 F:      drivers/platform/x86/toshiba_haps.c
19188
19189 TOSHIBA SMM DRIVER
19190 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
19191 S:      Maintained
19192 W:      http://www.buzzard.org.uk/toshiba/
19193 F:      drivers/char/toshiba.c
19194 F:      include/linux/toshiba.h
19195 F:      include/uapi/linux/toshiba.h
19196
19197 TOSHIBA TC358743 DRIVER
19198 M:      Mats Randgaard <matrandg@cisco.com>
19199 L:      linux-media@vger.kernel.org
19200 S:      Maintained
19201 F:      drivers/media/i2c/tc358743*
19202 F:      include/media/i2c/tc358743.h
19203
19204 TOSHIBA WMI HOTKEYS DRIVER
19205 M:      Azael Avalos <coproscefalo@gmail.com>
19206 L:      platform-driver-x86@vger.kernel.org
19207 S:      Maintained
19208 F:      drivers/platform/x86/toshiba-wmi.c
19209
19210 TPM DEVICE DRIVER
19211 M:      Peter Huewe <peterhuewe@gmx.de>
19212 M:      Jarkko Sakkinen <jarkko@kernel.org>
19213 R:      Jason Gunthorpe <jgg@ziepe.ca>
19214 L:      linux-integrity@vger.kernel.org
19215 S:      Maintained
19216 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
19217 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
19218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
19219 F:      drivers/char/tpm/
19220
19221 TRACING
19222 M:      Steven Rostedt <rostedt@goodmis.org>
19223 M:      Ingo Molnar <mingo@redhat.com>
19224 S:      Maintained
19225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
19226 F:      Documentation/trace/ftrace.rst
19227 F:      arch/*/*/*/ftrace.h
19228 F:      arch/*/kernel/ftrace.c
19229 F:      fs/tracefs/
19230 F:      include/*/ftrace.h
19231 F:      include/linux/trace*.h
19232 F:      include/trace/
19233 F:      kernel/trace/
19234 F:      tools/testing/selftests/ftrace/
19235
19236 TRACING MMIO ACCESSES (MMIOTRACE)
19237 M:      Steven Rostedt <rostedt@goodmis.org>
19238 M:      Ingo Molnar <mingo@kernel.org>
19239 R:      Karol Herbst <karolherbst@gmail.com>
19240 R:      Pekka Paalanen <ppaalanen@gmail.com>
19241 L:      linux-kernel@vger.kernel.org
19242 L:      nouveau@lists.freedesktop.org
19243 S:      Maintained
19244 F:      arch/x86/mm/kmmio.c
19245 F:      arch/x86/mm/mmio-mod.c
19246 F:      arch/x86/mm/testmmiotrace.c
19247 F:      include/linux/mmiotrace.h
19248 F:      kernel/trace/trace_mmiotrace.c
19249
19250 TRACING OS NOISE / LATENCY TRACERS
19251 M:      Steven Rostedt <rostedt@goodmis.org>
19252 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
19253 S:      Maintained
19254 F:      kernel/trace/trace_osnoise.c
19255 F:      include/trace/events/osnoise.h
19256 F:      kernel/trace/trace_hwlat.c
19257 F:      kernel/trace/trace_irqsoff.c
19258 F:      kernel/trace/trace_sched_wakeup.c
19259 F:      Documentation/trace/osnoise-tracer.rst
19260 F:      Documentation/trace/timerlat-tracer.rst
19261 F:      Documentation/trace/hwlat_detector.rst
19262 F:      arch/*/kernel/trace.c
19263
19264 TRADITIONAL CHINESE DOCUMENTATION
19265 M:      Hu Haowen <src.res@email.cn>
19266 L:      linux-doc-tw-discuss@lists.sourceforge.net
19267 S:      Maintained
19268 W:      https://github.com/srcres258/linux-doc
19269 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
19270 F:      Documentation/translations/zh_TW/
19271
19272 TRIVIAL PATCHES
19273 M:      Jiri Kosina <trivial@kernel.org>
19274 S:      Maintained
19275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
19276 K:      ^Subject:.*(?i)trivial
19277
19278 TTY LAYER
19279 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19280 M:      Jiri Slaby <jirislaby@kernel.org>
19281 S:      Supported
19282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
19283 F:      Documentation/driver-api/serial/
19284 F:      drivers/tty/
19285 F:      drivers/tty/serial/serial_core.c
19286 F:      include/linux/selection.h
19287 F:      include/linux/serial.h
19288 F:      include/linux/serial_core.h
19289 F:      include/linux/sysrq.h
19290 F:      include/linux/tty*.h
19291 F:      include/linux/vt.h
19292 F:      include/linux/vt_*.h
19293 F:      include/uapi/linux/serial.h
19294 F:      include/uapi/linux/serial_core.h
19295 F:      include/uapi/linux/tty.h
19296
19297 TUA9001 MEDIA DRIVER
19298 M:      Antti Palosaari <crope@iki.fi>
19299 L:      linux-media@vger.kernel.org
19300 S:      Maintained
19301 W:      https://linuxtv.org
19302 W:      http://palosaari.fi/linux/
19303 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19304 T:      git git://linuxtv.org/anttip/media_tree.git
19305 F:      drivers/media/tuners/tua9001*
19306
19307 TULIP NETWORK DRIVERS
19308 L:      netdev@vger.kernel.org
19309 L:      linux-parisc@vger.kernel.org
19310 S:      Orphan
19311 F:      drivers/net/ethernet/dec/tulip/
19312
19313 TUN/TAP driver
19314 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
19315 S:      Maintained
19316 W:      http://vtun.sourceforge.net/tun
19317 F:      Documentation/networking/tuntap.rst
19318 F:      arch/um/os-Linux/drivers/
19319
19320 TURBOCHANNEL SUBSYSTEM
19321 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
19322 M:      Ralf Baechle <ralf@linux-mips.org>
19323 L:      linux-mips@vger.kernel.org
19324 S:      Maintained
19325 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
19326 F:      drivers/tc/
19327 F:      include/linux/tc.h
19328
19329 TURBOSTAT UTILITY
19330 M:      "Len Brown" <lenb@kernel.org>
19331 L:      linux-pm@vger.kernel.org
19332 S:      Supported
19333 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19334 B:      https://bugzilla.kernel.org
19335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
19336 F:      tools/power/x86/turbostat/
19337
19338 TW5864 VIDEO4LINUX DRIVER
19339 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19340 M:      Anton Sviridenko <anton@corp.bluecherry.net>
19341 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
19342 M:      Andrey Utkin <andrey_utkin@fastmail.com>
19343 L:      linux-media@vger.kernel.org
19344 S:      Supported
19345 F:      drivers/media/pci/tw5864/
19346
19347 TW68 VIDEO4LINUX DRIVER
19348 M:      Hans Verkuil <hverkuil@xs4all.nl>
19349 L:      linux-media@vger.kernel.org
19350 S:      Odd Fixes
19351 W:      https://linuxtv.org
19352 T:      git git://linuxtv.org/media_tree.git
19353 F:      drivers/media/pci/tw68/
19354
19355 TW686X VIDEO4LINUX DRIVER
19356 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19357 L:      linux-media@vger.kernel.org
19358 S:      Maintained
19359 W:      http://linuxtv.org
19360 T:      git git://linuxtv.org/media_tree.git
19361 F:      drivers/media/pci/tw686x/
19362
19363 UACCE ACCELERATOR FRAMEWORK
19364 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
19365 M:      Zhou Wang <wangzhou1@hisilicon.com>
19366 L:      linux-accelerators@lists.ozlabs.org
19367 L:      linux-kernel@vger.kernel.org
19368 S:      Maintained
19369 F:      Documentation/ABI/testing/sysfs-driver-uacce
19370 F:      Documentation/misc-devices/uacce.rst
19371 F:      drivers/misc/uacce/
19372 F:      include/linux/uacce.h
19373 F:      include/uapi/misc/uacce/
19374
19375 UBI FILE SYSTEM (UBIFS)
19376 M:      Richard Weinberger <richard@nod.at>
19377 L:      linux-mtd@lists.infradead.org
19378 S:      Supported
19379 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
19380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19382 F:      Documentation/filesystems/ubifs-authentication.rst
19383 F:      Documentation/filesystems/ubifs.rst
19384 F:      fs/ubifs/
19385
19386 UCLINUX (M68KNOMMU AND COLDFIRE)
19387 M:      Greg Ungerer <gerg@linux-m68k.org>
19388 L:      linux-m68k@lists.linux-m68k.org
19389 L:      uclinux-dev@uclinux.org  (subscribers-only)
19390 S:      Maintained
19391 W:      http://www.linux-m68k.org/
19392 W:      http://www.uclinux.org/
19393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
19394 F:      arch/m68k/*/*_no.*
19395 F:      arch/m68k/68*/
19396 F:      arch/m68k/coldfire/
19397 F:      arch/m68k/include/asm/*_no.*
19398
19399 UDF FILESYSTEM
19400 M:      Jan Kara <jack@suse.com>
19401 S:      Maintained
19402 F:      Documentation/filesystems/udf.rst
19403 F:      fs/udf/
19404
19405 UDRAW TABLET
19406 M:      Bastien Nocera <hadess@hadess.net>
19407 L:      linux-input@vger.kernel.org
19408 S:      Maintained
19409 F:      drivers/hid/hid-udraw-ps3.c
19410
19411 UFS FILESYSTEM
19412 M:      Evgeniy Dushistov <dushistov@mail.ru>
19413 S:      Maintained
19414 F:      Documentation/admin-guide/ufs.rst
19415 F:      fs/ufs/
19416
19417 UHID USERSPACE HID IO DRIVER
19418 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19419 L:      linux-input@vger.kernel.org
19420 S:      Maintained
19421 F:      drivers/hid/uhid.c
19422 F:      include/uapi/linux/uhid.h
19423
19424 ULPI BUS
19425 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19426 L:      linux-usb@vger.kernel.org
19427 S:      Maintained
19428 F:      drivers/usb/common/ulpi.c
19429 F:      include/linux/ulpi/
19430
19431 UNICODE SUBSYSTEM
19432 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
19433 L:      linux-fsdevel@vger.kernel.org
19434 S:      Supported
19435 F:      fs/unicode/
19436
19437 UNIFDEF
19438 M:      Tony Finch <dot@dotat.at>
19439 S:      Maintained
19440 W:      http://dotat.at/prog/unifdef
19441 F:      scripts/unifdef.c
19442
19443 UNIFORM CDROM DRIVER
19444 M:      Phillip Potter <phil@philpotter.co.uk>
19445 S:      Maintained
19446 F:      Documentation/cdrom/
19447 F:      drivers/cdrom/cdrom.c
19448 F:      include/linux/cdrom.h
19449 F:      include/uapi/linux/cdrom.h
19450
19451 UNISYS S-PAR DRIVERS
19452 M:      David Kershner <david.kershner@unisys.com>
19453 L:      sparmaintainer@unisys.com (Unisys internal)
19454 S:      Supported
19455 F:      drivers/staging/unisys/
19456 F:      drivers/visorbus/
19457 F:      include/linux/visorbus.h
19458
19459 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
19460 R:      Alim Akhtar <alim.akhtar@samsung.com>
19461 R:      Avri Altman <avri.altman@wdc.com>
19462 L:      linux-scsi@vger.kernel.org
19463 S:      Supported
19464 F:      Documentation/scsi/ufs.rst
19465 F:      drivers/scsi/ufs/
19466
19467 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
19468 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
19469 L:      linux-scsi@vger.kernel.org
19470 S:      Supported
19471 F:      drivers/scsi/ufs/*dwc*
19472
19473 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
19474 M:      Stanley Chu <stanley.chu@mediatek.com>
19475 L:      linux-scsi@vger.kernel.org
19476 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
19477 S:      Maintained
19478 F:      drivers/scsi/ufs/ufs-mediatek*
19479
19480 UNSORTED BLOCK IMAGES (UBI)
19481 M:      Richard Weinberger <richard@nod.at>
19482 L:      linux-mtd@lists.infradead.org
19483 S:      Supported
19484 W:      http://www.linux-mtd.infradead.org/
19485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19487 F:      drivers/mtd/ubi/
19488 F:      include/linux/mtd/ubi.h
19489 F:      include/uapi/mtd/ubi-user.h
19490
19491 USB "USBNET" DRIVER FRAMEWORK
19492 M:      Oliver Neukum <oneukum@suse.com>
19493 L:      netdev@vger.kernel.org
19494 S:      Maintained
19495 W:      http://www.linux-usb.org/usbnet
19496 F:      drivers/net/usb/usbnet.c
19497 F:      include/linux/usb/usbnet.h
19498
19499 USB ACM DRIVER
19500 M:      Oliver Neukum <oneukum@suse.com>
19501 L:      linux-usb@vger.kernel.org
19502 S:      Maintained
19503 F:      Documentation/usb/acm.rst
19504 F:      drivers/usb/class/cdc-acm.*
19505
19506 USB APPLE MFI FASTCHARGE DRIVER
19507 M:      Bastien Nocera <hadess@hadess.net>
19508 L:      linux-usb@vger.kernel.org
19509 S:      Maintained
19510 F:      drivers/usb/misc/apple-mfi-fastcharge.c
19511
19512 USB AR5523 WIRELESS DRIVER
19513 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
19514 L:      linux-wireless@vger.kernel.org
19515 S:      Maintained
19516 F:      drivers/net/wireless/ath/ar5523/
19517
19518 USB ATTACHED SCSI
19519 M:      Oliver Neukum <oneukum@suse.com>
19520 L:      linux-usb@vger.kernel.org
19521 L:      linux-scsi@vger.kernel.org
19522 S:      Maintained
19523 F:      drivers/usb/storage/uas.c
19524
19525 USB CDC ETHERNET DRIVER
19526 M:      Oliver Neukum <oliver@neukum.org>
19527 L:      linux-usb@vger.kernel.org
19528 S:      Maintained
19529 F:      drivers/net/usb/cdc_*.c
19530 F:      include/uapi/linux/usb/cdc.h
19531
19532 USB CHAOSKEY DRIVER
19533 M:      Keith Packard <keithp@keithp.com>
19534 L:      linux-usb@vger.kernel.org
19535 S:      Maintained
19536 F:      drivers/usb/misc/chaoskey.c
19537
19538 USB CYPRESS C67X00 DRIVER
19539 L:      linux-usb@vger.kernel.org
19540 S:      Orphan
19541 F:      drivers/usb/c67x00/
19542
19543 USB DAVICOM DM9601 DRIVER
19544 M:      Peter Korsgaard <peter@korsgaard.com>
19545 L:      netdev@vger.kernel.org
19546 S:      Maintained
19547 W:      http://www.linux-usb.org/usbnet
19548 F:      drivers/net/usb/dm9601.c
19549
19550 USB EHCI DRIVER
19551 M:      Alan Stern <stern@rowland.harvard.edu>
19552 L:      linux-usb@vger.kernel.org
19553 S:      Maintained
19554 F:      Documentation/usb/ehci.rst
19555 F:      drivers/usb/host/ehci*
19556
19557 USB GADGET/PERIPHERAL SUBSYSTEM
19558 M:      Felipe Balbi <balbi@kernel.org>
19559 L:      linux-usb@vger.kernel.org
19560 S:      Maintained
19561 W:      http://www.linux-usb.org/gadget
19562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19563 F:      drivers/usb/gadget/
19564 F:      include/linux/usb/gadget*
19565
19566 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19567 M:      Jiri Kosina <jikos@kernel.org>
19568 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
19569 L:      linux-usb@vger.kernel.org
19570 S:      Maintained
19571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19572 F:      Documentation/hid/hiddev.rst
19573 F:      drivers/hid/usbhid/
19574
19575 USB INTEL XHCI ROLE MUX DRIVER
19576 M:      Hans de Goede <hdegoede@redhat.com>
19577 L:      linux-usb@vger.kernel.org
19578 S:      Maintained
19579 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
19580
19581 USB IP DRIVER FOR HISILICON KIRIN 960
19582 M:      Yu Chen <chenyu56@huawei.com>
19583 M:      Binghui Wang <wangbinghui@hisilicon.com>
19584 L:      linux-usb@vger.kernel.org
19585 S:      Maintained
19586 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19587 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
19588
19589 USB IP DRIVER FOR HISILICON KIRIN 970
19590 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19591 L:      linux-usb@vger.kernel.org
19592 S:      Maintained
19593 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
19594 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
19595
19596 USB ISP116X DRIVER
19597 M:      Olav Kongas <ok@artecdesign.ee>
19598 L:      linux-usb@vger.kernel.org
19599 S:      Maintained
19600 F:      drivers/usb/host/isp116x*
19601 F:      include/linux/usb/isp116x.h
19602
19603 USB ISP1760 DRIVER
19604 M:      Rui Miguel Silva <rui.silva@linaro.org>
19605 L:      linux-usb@vger.kernel.org
19606 S:      Maintained
19607 F:      drivers/usb/isp1760/*
19608 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19609
19610 USB LAN78XX ETHERNET DRIVER
19611 M:      Woojung Huh <woojung.huh@microchip.com>
19612 M:      UNGLinuxDriver@microchip.com
19613 L:      netdev@vger.kernel.org
19614 S:      Maintained
19615 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19616 F:      drivers/net/usb/lan78xx.*
19617 F:      include/dt-bindings/net/microchip-lan78xx.h
19618
19619 USB MASS STORAGE DRIVER
19620 M:      Alan Stern <stern@rowland.harvard.edu>
19621 L:      linux-usb@vger.kernel.org
19622 L:      usb-storage@lists.one-eyed-alien.net
19623 S:      Maintained
19624 F:      drivers/usb/storage/
19625
19626 USB MIDI DRIVER
19627 M:      Clemens Ladisch <clemens@ladisch.de>
19628 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19629 S:      Maintained
19630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19631 F:      sound/usb/midi.*
19632
19633 USB NETWORKING DRIVERS
19634 L:      linux-usb@vger.kernel.org
19635 S:      Odd Fixes
19636 F:      drivers/net/usb/
19637
19638 USB OHCI DRIVER
19639 M:      Alan Stern <stern@rowland.harvard.edu>
19640 L:      linux-usb@vger.kernel.org
19641 S:      Maintained
19642 F:      Documentation/usb/ohci.rst
19643 F:      drivers/usb/host/ohci*
19644
19645 USB OTG FSM (Finite State Machine)
19646 M:      Peter Chen <peter.chen@kernel.org>
19647 L:      linux-usb@vger.kernel.org
19648 S:      Maintained
19649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19650 F:      drivers/usb/common/usb-otg-fsm.c
19651
19652 USB OVER IP DRIVER
19653 M:      Valentina Manea <valentina.manea.m@gmail.com>
19654 M:      Shuah Khan <shuah@kernel.org>
19655 M:      Shuah Khan <skhan@linuxfoundation.org>
19656 L:      linux-usb@vger.kernel.org
19657 S:      Maintained
19658 F:      Documentation/usb/usbip_protocol.rst
19659 F:      drivers/usb/usbip/
19660 F:      tools/testing/selftests/drivers/usb/usbip/
19661 F:      tools/usb/usbip/
19662
19663 USB PEGASUS DRIVER
19664 M:      Petko Manolov <petkan@nucleusys.com>
19665 L:      linux-usb@vger.kernel.org
19666 L:      netdev@vger.kernel.org
19667 S:      Maintained
19668 W:      https://github.com/petkan/pegasus
19669 T:      git git://github.com/petkan/pegasus.git
19670 F:      drivers/net/usb/pegasus.*
19671
19672 USB PHY LAYER
19673 M:      Felipe Balbi <balbi@kernel.org>
19674 L:      linux-usb@vger.kernel.org
19675 S:      Maintained
19676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19677 F:      drivers/usb/phy/
19678
19679 USB PRINTER DRIVER (usblp)
19680 M:      Pete Zaitcev <zaitcev@redhat.com>
19681 L:      linux-usb@vger.kernel.org
19682 S:      Supported
19683 F:      drivers/usb/class/usblp.c
19684
19685 USB RAW GADGET DRIVER
19686 R:      Andrey Konovalov <andreyknvl@gmail.com>
19687 L:      linux-usb@vger.kernel.org
19688 S:      Maintained
19689 F:      Documentation/usb/raw-gadget.rst
19690 F:      drivers/usb/gadget/legacy/raw_gadget.c
19691 F:      include/uapi/linux/usb/raw_gadget.h
19692
19693 USB QMI WWAN NETWORK DRIVER
19694 M:      Bjørn Mork <bjorn@mork.no>
19695 L:      netdev@vger.kernel.org
19696 S:      Maintained
19697 F:      Documentation/ABI/testing/sysfs-class-net-qmi
19698 F:      drivers/net/usb/qmi_wwan.c
19699
19700 USB RTL8150 DRIVER
19701 M:      Petko Manolov <petkan@nucleusys.com>
19702 L:      linux-usb@vger.kernel.org
19703 L:      netdev@vger.kernel.org
19704 S:      Maintained
19705 W:      https://github.com/petkan/rtl8150
19706 T:      git git://github.com/petkan/rtl8150.git
19707 F:      drivers/net/usb/rtl8150.c
19708
19709 USB SERIAL SUBSYSTEM
19710 M:      Johan Hovold <johan@kernel.org>
19711 L:      linux-usb@vger.kernel.org
19712 S:      Maintained
19713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
19714 F:      Documentation/usb/usb-serial.rst
19715 F:      drivers/usb/serial/
19716 F:      include/linux/usb/serial.h
19717
19718 USB SMSC75XX ETHERNET DRIVER
19719 M:      Steve Glendinning <steve.glendinning@shawell.net>
19720 L:      netdev@vger.kernel.org
19721 S:      Maintained
19722 F:      drivers/net/usb/smsc75xx.*
19723
19724 USB SMSC95XX ETHERNET DRIVER
19725 M:      Steve Glendinning <steve.glendinning@shawell.net>
19726 M:      UNGLinuxDriver@microchip.com
19727 L:      netdev@vger.kernel.org
19728 S:      Maintained
19729 F:      drivers/net/usb/smsc95xx.*
19730
19731 USB SUBSYSTEM
19732 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19733 L:      linux-usb@vger.kernel.org
19734 S:      Supported
19735 W:      http://www.linux-usb.org
19736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
19737 F:      Documentation/devicetree/bindings/usb/
19738 F:      Documentation/usb/
19739 F:      drivers/usb/
19740 F:      include/linux/usb.h
19741 F:      include/linux/usb/
19742
19743 USB TYPEC BUS FOR ALTERNATE MODES
19744 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19745 L:      linux-usb@vger.kernel.org
19746 S:      Maintained
19747 F:      Documentation/ABI/testing/sysfs-bus-typec
19748 F:      Documentation/driver-api/usb/typec_bus.rst
19749 F:      drivers/usb/typec/altmodes/
19750 F:      include/linux/usb/typec_altmode.h
19751
19752 USB TYPEC CLASS
19753 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19754 L:      linux-usb@vger.kernel.org
19755 S:      Maintained
19756 F:      Documentation/ABI/testing/sysfs-class-typec
19757 F:      Documentation/driver-api/usb/typec.rst
19758 F:      drivers/usb/typec/
19759 F:      include/linux/usb/typec.h
19760
19761 USB TYPEC INTEL PMC MUX DRIVER
19762 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19763 L:      linux-usb@vger.kernel.org
19764 S:      Maintained
19765 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19766 F:      drivers/usb/typec/mux/intel_pmc_mux.c
19767
19768 USB TYPEC PI3USB30532 MUX DRIVER
19769 M:      Hans de Goede <hdegoede@redhat.com>
19770 L:      linux-usb@vger.kernel.org
19771 S:      Maintained
19772 F:      drivers/usb/typec/mux/pi3usb30532.c
19773
19774 USB TYPEC PORT CONTROLLER DRIVERS
19775 M:      Guenter Roeck <linux@roeck-us.net>
19776 L:      linux-usb@vger.kernel.org
19777 S:      Maintained
19778 F:      drivers/usb/typec/tcpm/
19779
19780 USB UHCI DRIVER
19781 M:      Alan Stern <stern@rowland.harvard.edu>
19782 L:      linux-usb@vger.kernel.org
19783 S:      Maintained
19784 F:      drivers/usb/host/uhci*
19785
19786 USB VIDEO CLASS
19787 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19788 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
19789 L:      linux-media@vger.kernel.org
19790 S:      Maintained
19791 W:      http://www.ideasonboard.org/uvc/
19792 T:      git git://linuxtv.org/media_tree.git
19793 F:      drivers/media/usb/uvc/
19794 F:      include/uapi/linux/uvcvideo.h
19795
19796 USB WEBCAM GADGET
19797 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19798 L:      linux-usb@vger.kernel.org
19799 S:      Maintained
19800 F:      drivers/usb/gadget/function/*uvc*
19801 F:      drivers/usb/gadget/legacy/webcam.c
19802 F:      include/uapi/linux/usb/g_uvc.h
19803
19804 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19805 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
19806 L:      linux-wireless@vger.kernel.org
19807 S:      Maintained
19808 F:      drivers/net/wireless/rndis_wlan.c
19809
19810 USB XHCI DRIVER
19811 M:      Mathias Nyman <mathias.nyman@intel.com>
19812 L:      linux-usb@vger.kernel.org
19813 S:      Supported
19814 F:      drivers/usb/host/pci-quirks*
19815 F:      drivers/usb/host/xhci*
19816
19817 USB ZD1201 DRIVER
19818 L:      linux-wireless@vger.kernel.org
19819 S:      Orphan
19820 W:      http://linux-lc100020.sourceforge.net
19821 F:      drivers/net/wireless/zydas/zd1201.*
19822
19823 USB ZR364XX DRIVER
19824 M:      Antoine Jacquet <royale@zerezo.com>
19825 L:      linux-usb@vger.kernel.org
19826 L:      linux-media@vger.kernel.org
19827 S:      Maintained
19828 W:      http://royale.zerezo.com/zr364xx/
19829 T:      git git://linuxtv.org/media_tree.git
19830 F:      Documentation/admin-guide/media/zr364xx*
19831 F:      drivers/media/usb/zr364xx/
19832
19833 USER-MODE LINUX (UML)
19834 M:      Jeff Dike <jdike@addtoit.com>
19835 M:      Richard Weinberger <richard@nod.at>
19836 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
19837 L:      linux-um@lists.infradead.org
19838 S:      Maintained
19839 W:      http://user-mode-linux.sourceforge.net
19840 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
19841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19842 F:      Documentation/virt/uml/
19843 F:      arch/um/
19844 F:      arch/x86/um/
19845 F:      fs/hostfs/
19846
19847 USERSPACE COPYIN/COPYOUT (UIOVEC)
19848 M:      Alexander Viro <viro@zeniv.linux.org.uk>
19849 S:      Maintained
19850 F:      include/linux/uio.h
19851 F:      lib/iov_iter.c
19852
19853 USERSPACE DMA BUFFER DRIVER
19854 M:      Gerd Hoffmann <kraxel@redhat.com>
19855 L:      dri-devel@lists.freedesktop.org
19856 S:      Maintained
19857 T:      git git://anongit.freedesktop.org/drm/drm-misc
19858 F:      drivers/dma-buf/udmabuf.c
19859 F:      include/uapi/linux/udmabuf.h
19860
19861 USERSPACE I/O (UIO)
19862 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19863 S:      Maintained
19864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19865 F:      Documentation/driver-api/uio-howto.rst
19866 F:      drivers/uio/
19867 F:      include/linux/uio_driver.h
19868
19869 UTIL-LINUX PACKAGE
19870 M:      Karel Zak <kzak@redhat.com>
19871 L:      util-linux@vger.kernel.org
19872 S:      Maintained
19873 W:      http://en.wikipedia.org/wiki/Util-linux
19874 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19875
19876 UUID HELPERS
19877 M:      Christoph Hellwig <hch@lst.de>
19878 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19879 L:      linux-kernel@vger.kernel.org
19880 S:      Maintained
19881 T:      git git://git.infradead.org/users/hch/uuid.git
19882 F:      include/linux/uuid.h
19883 F:      include/uapi/linux/uuid.h
19884 F:      lib/test_uuid.c
19885 F:      lib/uuid.c
19886
19887 UV SYSFS DRIVER
19888 M:      Justin Ernst <justin.ernst@hpe.com>
19889 L:      platform-driver-x86@vger.kernel.org
19890 S:      Maintained
19891 F:      drivers/platform/x86/uv_sysfs.c
19892
19893 UVESAFB DRIVER
19894 M:      Michal Januszewski <spock@gentoo.org>
19895 L:      linux-fbdev@vger.kernel.org
19896 S:      Maintained
19897 W:      https://github.com/mjanusz/v86d
19898 F:      Documentation/fb/uvesafb.rst
19899 F:      drivers/video/fbdev/uvesafb.*
19900
19901 Ux500 CLOCK DRIVERS
19902 M:      Ulf Hansson <ulf.hansson@linaro.org>
19903 L:      linux-clk@vger.kernel.org
19904 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19905 S:      Maintained
19906 F:      drivers/clk/ux500/
19907
19908 VF610 NAND DRIVER
19909 M:      Stefan Agner <stefan@agner.ch>
19910 L:      linux-mtd@lists.infradead.org
19911 S:      Supported
19912 F:      drivers/mtd/nand/raw/vf610_nfc.c
19913
19914 VFAT/FAT/MSDOS FILESYSTEM
19915 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
19916 S:      Maintained
19917 F:      Documentation/filesystems/vfat.rst
19918 F:      fs/fat/
19919
19920 VFIO DRIVER
19921 M:      Alex Williamson <alex.williamson@redhat.com>
19922 R:      Cornelia Huck <cohuck@redhat.com>
19923 L:      kvm@vger.kernel.org
19924 S:      Maintained
19925 T:      git git://github.com/awilliam/linux-vfio.git
19926 F:      Documentation/driver-api/vfio.rst
19927 F:      drivers/vfio/
19928 F:      include/linux/vfio.h
19929 F:      include/linux/vfio_pci_core.h
19930 F:      include/uapi/linux/vfio.h
19931
19932 VFIO FSL-MC DRIVER
19933 M:      Diana Craciun <diana.craciun@oss.nxp.com>
19934 L:      kvm@vger.kernel.org
19935 S:      Maintained
19936 F:      drivers/vfio/fsl-mc/
19937
19938 VFIO MEDIATED DEVICE DRIVERS
19939 M:      Kirti Wankhede <kwankhede@nvidia.com>
19940 L:      kvm@vger.kernel.org
19941 S:      Maintained
19942 F:      Documentation/driver-api/vfio-mediated-device.rst
19943 F:      drivers/vfio/mdev/
19944 F:      include/linux/mdev.h
19945 F:      samples/vfio-mdev/
19946
19947 VFIO PLATFORM DRIVER
19948 M:      Eric Auger <eric.auger@redhat.com>
19949 L:      kvm@vger.kernel.org
19950 S:      Maintained
19951 F:      drivers/vfio/platform/
19952
19953 VGA_SWITCHEROO
19954 R:      Lukas Wunner <lukas@wunner.de>
19955 S:      Maintained
19956 T:      git git://anongit.freedesktop.org/drm/drm-misc
19957 F:      Documentation/gpu/vga-switcheroo.rst
19958 F:      drivers/gpu/vga/vga_switcheroo.c
19959 F:      include/linux/vga_switcheroo.h
19960
19961 VIA RHINE NETWORK DRIVER
19962 S:      Maintained
19963 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
19964 F:      drivers/net/ethernet/via/via-rhine.c
19965
19966 VIA SD/MMC CARD CONTROLLER DRIVER
19967 M:      Bruce Chang <brucechang@via.com.tw>
19968 M:      Harald Welte <HaraldWelte@viatech.com>
19969 S:      Maintained
19970 F:      drivers/mmc/host/via-sdmmc.c
19971
19972 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19973 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
19974 L:      linux-fbdev@vger.kernel.org
19975 S:      Maintained
19976 F:      drivers/video/fbdev/via/
19977 F:      include/linux/via-core.h
19978 F:      include/linux/via-gpio.h
19979 F:      include/linux/via_i2c.h
19980
19981 VIA VELOCITY NETWORK DRIVER
19982 M:      Francois Romieu <romieu@fr.zoreil.com>
19983 L:      netdev@vger.kernel.org
19984 S:      Maintained
19985 F:      drivers/net/ethernet/via/via-velocity.*
19986
19987 VICODEC VIRTUAL CODEC DRIVER
19988 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
19989 L:      linux-media@vger.kernel.org
19990 S:      Maintained
19991 W:      https://linuxtv.org
19992 T:      git git://linuxtv.org/media_tree.git
19993 F:      drivers/media/test-drivers/vicodec/*
19994
19995 VIDEO I2C POLLING DRIVER
19996 M:      Matt Ranostay <matt.ranostay@konsulko.com>
19997 L:      linux-media@vger.kernel.org
19998 S:      Maintained
19999 F:      drivers/media/i2c/video-i2c.c
20000
20001 VIDEO MULTIPLEXER DRIVER
20002 M:      Philipp Zabel <p.zabel@pengutronix.de>
20003 L:      linux-media@vger.kernel.org
20004 S:      Maintained
20005 F:      drivers/media/platform/video-mux.c
20006
20007 VIDEOBUF2 FRAMEWORK
20008 M:      Tomasz Figa <tfiga@chromium.org>
20009 M:      Marek Szyprowski <m.szyprowski@samsung.com>
20010 L:      linux-media@vger.kernel.org
20011 S:      Maintained
20012 F:      drivers/media/common/videobuf2/*
20013 F:      include/media/videobuf2-*
20014
20015 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
20016 M:      Helen Koike <helen.koike@collabora.com>
20017 R:      Shuah Khan <skhan@linuxfoundation.org>
20018 L:      linux-media@vger.kernel.org
20019 S:      Maintained
20020 W:      https://linuxtv.org
20021 T:      git git://linuxtv.org/media_tree.git
20022 F:      drivers/media/test-drivers/vimc/*
20023
20024 VIRT LIB
20025 M:      Alex Williamson <alex.williamson@redhat.com>
20026 M:      Paolo Bonzini <pbonzini@redhat.com>
20027 L:      kvm@vger.kernel.org
20028 S:      Supported
20029 F:      virt/lib/
20030
20031 VIRTIO AND VHOST VSOCK DRIVER
20032 M:      Stefan Hajnoczi <stefanha@redhat.com>
20033 M:      Stefano Garzarella <sgarzare@redhat.com>
20034 L:      kvm@vger.kernel.org
20035 L:      virtualization@lists.linux-foundation.org
20036 L:      netdev@vger.kernel.org
20037 S:      Maintained
20038 F:      drivers/vhost/vsock.c
20039 F:      include/linux/virtio_vsock.h
20040 F:      include/uapi/linux/virtio_vsock.h
20041 F:      net/vmw_vsock/virtio_transport.c
20042 F:      net/vmw_vsock/virtio_transport_common.c
20043
20044 VIRTIO BLOCK AND SCSI DRIVERS
20045 M:      "Michael S. Tsirkin" <mst@redhat.com>
20046 M:      Jason Wang <jasowang@redhat.com>
20047 R:      Paolo Bonzini <pbonzini@redhat.com>
20048 R:      Stefan Hajnoczi <stefanha@redhat.com>
20049 L:      virtualization@lists.linux-foundation.org
20050 S:      Maintained
20051 F:      drivers/block/virtio_blk.c
20052 F:      drivers/scsi/virtio_scsi.c
20053 F:      drivers/vhost/scsi.c
20054 F:      include/uapi/linux/virtio_blk.h
20055 F:      include/uapi/linux/virtio_scsi.h
20056
20057 VIRTIO CONSOLE DRIVER
20058 M:      Amit Shah <amit@kernel.org>
20059 L:      virtualization@lists.linux-foundation.org
20060 S:      Maintained
20061 F:      drivers/char/virtio_console.c
20062 F:      include/linux/virtio_console.h
20063 F:      include/uapi/linux/virtio_console.h
20064
20065 VIRTIO CORE AND NET DRIVERS
20066 M:      "Michael S. Tsirkin" <mst@redhat.com>
20067 M:      Jason Wang <jasowang@redhat.com>
20068 L:      virtualization@lists.linux-foundation.org
20069 S:      Maintained
20070 F:      Documentation/devicetree/bindings/virtio/
20071 F:      drivers/block/virtio_blk.c
20072 F:      drivers/crypto/virtio/
20073 F:      drivers/net/virtio_net.c
20074 F:      drivers/vdpa/
20075 F:      drivers/virtio/
20076 F:      include/linux/vdpa.h
20077 F:      include/linux/virtio*.h
20078 F:      include/uapi/linux/virtio_*.h
20079 F:      tools/virtio/
20080
20081 VIRTIO BALLOON
20082 M:      "Michael S. Tsirkin" <mst@redhat.com>
20083 M:      David Hildenbrand <david@redhat.com>
20084 L:      virtualization@lists.linux-foundation.org
20085 S:      Maintained
20086 F:      drivers/virtio/virtio_balloon.c
20087 F:      include/uapi/linux/virtio_balloon.h
20088 F:      include/linux/balloon_compaction.h
20089 F:      mm/balloon_compaction.c
20090
20091 VIRTIO CRYPTO DRIVER
20092 M:      Gonglei <arei.gonglei@huawei.com>
20093 L:      virtualization@lists.linux-foundation.org
20094 L:      linux-crypto@vger.kernel.org
20095 S:      Maintained
20096 F:      drivers/crypto/virtio/
20097 F:      include/uapi/linux/virtio_crypto.h
20098
20099 VIRTIO DRIVERS FOR S390
20100 M:      Cornelia Huck <cohuck@redhat.com>
20101 M:      Halil Pasic <pasic@linux.ibm.com>
20102 L:      linux-s390@vger.kernel.org
20103 L:      virtualization@lists.linux-foundation.org
20104 L:      kvm@vger.kernel.org
20105 S:      Supported
20106 F:      arch/s390/include/uapi/asm/virtio-ccw.h
20107 F:      drivers/s390/virtio/
20108
20109 VIRTIO FILE SYSTEM
20110 M:      Vivek Goyal <vgoyal@redhat.com>
20111 M:      Stefan Hajnoczi <stefanha@redhat.com>
20112 M:      Miklos Szeredi <miklos@szeredi.hu>
20113 L:      virtualization@lists.linux-foundation.org
20114 L:      linux-fsdevel@vger.kernel.org
20115 S:      Supported
20116 W:      https://virtio-fs.gitlab.io/
20117 F:      Documentation/filesystems/virtiofs.rst
20118 F:      fs/fuse/virtio_fs.c
20119 F:      include/uapi/linux/virtio_fs.h
20120
20121 VIRTIO GPIO DRIVER
20122 M:      Enrico Weigelt, metux IT consult <info@metux.net>
20123 M:      Viresh Kumar <vireshk@kernel.org>
20124 L:      linux-gpio@vger.kernel.org
20125 L:      virtualization@lists.linux-foundation.org
20126 S:      Maintained
20127 F:      drivers/gpio/gpio-virtio.c
20128 F:      include/uapi/linux/virtio_gpio.h
20129
20130 VIRTIO GPU DRIVER
20131 M:      David Airlie <airlied@linux.ie>
20132 M:      Gerd Hoffmann <kraxel@redhat.com>
20133 L:      dri-devel@lists.freedesktop.org
20134 L:      virtualization@lists.linux-foundation.org
20135 S:      Maintained
20136 T:      git git://anongit.freedesktop.org/drm/drm-misc
20137 F:      drivers/gpu/drm/virtio/
20138 F:      include/uapi/linux/virtio_gpu.h
20139
20140 VIRTIO HOST (VHOST)
20141 M:      "Michael S. Tsirkin" <mst@redhat.com>
20142 M:      Jason Wang <jasowang@redhat.com>
20143 L:      kvm@vger.kernel.org
20144 L:      virtualization@lists.linux-foundation.org
20145 L:      netdev@vger.kernel.org
20146 S:      Maintained
20147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
20148 F:      drivers/vhost/
20149 F:      include/linux/vhost_iotlb.h
20150 F:      include/uapi/linux/vhost.h
20151
20152 VIRTIO INPUT DRIVER
20153 M:      Gerd Hoffmann <kraxel@redhat.com>
20154 S:      Maintained
20155 F:      drivers/virtio/virtio_input.c
20156 F:      include/uapi/linux/virtio_input.h
20157
20158 VIRTIO IOMMU DRIVER
20159 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
20160 L:      virtualization@lists.linux-foundation.org
20161 S:      Maintained
20162 F:      drivers/iommu/virtio-iommu.c
20163 F:      include/uapi/linux/virtio_iommu.h
20164
20165 VIRTIO MEM DRIVER
20166 M:      David Hildenbrand <david@redhat.com>
20167 L:      virtualization@lists.linux-foundation.org
20168 S:      Maintained
20169 W:      https://virtio-mem.gitlab.io/
20170 F:      drivers/virtio/virtio_mem.c
20171 F:      include/uapi/linux/virtio_mem.h
20172
20173 VIRTIO SOUND DRIVER
20174 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
20175 M:      "Michael S. Tsirkin" <mst@redhat.com>
20176 L:      virtualization@lists.linux-foundation.org
20177 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20178 S:      Maintained
20179 F:      include/uapi/linux/virtio_snd.h
20180 F:      sound/virtio/*
20181
20182 VIRTIO I2C DRIVER
20183 M:      Jie Deng <jie.deng@intel.com>
20184 M:      Viresh Kumar <viresh.kumar@linaro.org>
20185 L:      linux-i2c@vger.kernel.org
20186 L:      virtualization@lists.linux-foundation.org
20187 S:      Maintained
20188 F:      drivers/i2c/busses/i2c-virtio.c
20189 F:      include/uapi/linux/virtio_i2c.h
20190
20191 VIRTIO PMEM DRIVER
20192 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
20193 L:      virtualization@lists.linux-foundation.org
20194 S:      Maintained
20195 F:      drivers/nvdimm/virtio_pmem.c
20196 F:      drivers/nvdimm/nd_virtio.c
20197
20198 VIRTUAL BOX GUEST DEVICE DRIVER
20199 M:      Hans de Goede <hdegoede@redhat.com>
20200 M:      Arnd Bergmann <arnd@arndb.de>
20201 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20202 S:      Maintained
20203 F:      drivers/virt/vboxguest/
20204 F:      include/linux/vbox_utils.h
20205 F:      include/uapi/linux/vbox*.h
20206
20207 VIRTUAL BOX SHARED FOLDER VFS DRIVER
20208 M:      Hans de Goede <hdegoede@redhat.com>
20209 L:      linux-fsdevel@vger.kernel.org
20210 S:      Maintained
20211 F:      fs/vboxsf/*
20212
20213 VIRTUAL SERIO DEVICE DRIVER
20214 M:      Stephen Chandler Paul <thatslyude@gmail.com>
20215 S:      Maintained
20216 F:      drivers/input/serio/userio.c
20217 F:      include/uapi/linux/userio.h
20218
20219 VIVID VIRTUAL VIDEO DRIVER
20220 M:      Hans Verkuil <hverkuil@xs4all.nl>
20221 L:      linux-media@vger.kernel.org
20222 S:      Maintained
20223 W:      https://linuxtv.org
20224 T:      git git://linuxtv.org/media_tree.git
20225 F:      drivers/media/test-drivers/vivid/*
20226
20227 VIDTV VIRTUAL DIGITAL TV DRIVER
20228 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
20229 L:      linux-media@vger.kernel.org
20230 S:      Maintained
20231 W:      https://linuxtv.org
20232 T:      git git://linuxtv.org/media_tree.git
20233 F:      drivers/media/test-drivers/vidtv/*
20234
20235 VLYNQ BUS
20236 M:      Florian Fainelli <f.fainelli@gmail.com>
20237 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
20238 S:      Maintained
20239 F:      drivers/vlynq/vlynq.c
20240 F:      include/linux/vlynq.h
20241
20242 VME SUBSYSTEM
20243 M:      Martyn Welch <martyn@welchs.me.uk>
20244 M:      Manohar Vanga <manohar.vanga@gmail.com>
20245 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20246 L:      linux-kernel@vger.kernel.org
20247 S:      Maintained
20248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20249 F:      Documentation/driver-api/vme.rst
20250 F:      drivers/staging/vme/
20251 F:      drivers/vme/
20252 F:      include/linux/vme*
20253
20254 VM SOCKETS (AF_VSOCK)
20255 M:      Stefano Garzarella <sgarzare@redhat.com>
20256 L:      virtualization@lists.linux-foundation.org
20257 L:      netdev@vger.kernel.org
20258 S:      Maintained
20259 F:      drivers/net/vsockmon.c
20260 F:      include/net/af_vsock.h
20261 F:      include/uapi/linux/vm_sockets.h
20262 F:      include/uapi/linux/vm_sockets_diag.h
20263 F:      include/uapi/linux/vsockmon.h
20264 F:      net/vmw_vsock/
20265 F:      tools/testing/vsock/
20266
20267 VMWARE BALLOON DRIVER
20268 M:      Nadav Amit <namit@vmware.com>
20269 M:      "VMware, Inc." <pv-drivers@vmware.com>
20270 L:      linux-kernel@vger.kernel.org
20271 S:      Maintained
20272 F:      drivers/misc/vmw_balloon.c
20273
20274 VMWARE HYPERVISOR INTERFACE
20275 M:      Deep Shah <sdeep@vmware.com>
20276 M:      "VMware, Inc." <pv-drivers@vmware.com>
20277 L:      virtualization@lists.linux-foundation.org
20278 S:      Supported
20279 F:      arch/x86/include/asm/vmware.h
20280 F:      arch/x86/kernel/cpu/vmware.c
20281
20282 VMWARE PVRDMA DRIVER
20283 M:      Adit Ranadive <aditr@vmware.com>
20284 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20285 L:      linux-rdma@vger.kernel.org
20286 S:      Maintained
20287 F:      drivers/infiniband/hw/vmw_pvrdma/
20288
20289 VMware PVSCSI driver
20290 M:      Vishal Bhakta <vbhakta@vmware.com>
20291 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20292 L:      linux-scsi@vger.kernel.org
20293 S:      Maintained
20294 F:      drivers/scsi/vmw_pvscsi.c
20295 F:      drivers/scsi/vmw_pvscsi.h
20296
20297 VMWARE VIRTUAL PTP CLOCK DRIVER
20298 M:      Vivek Thampi <vithampi@vmware.com>
20299 M:      "VMware, Inc." <pv-drivers@vmware.com>
20300 L:      netdev@vger.kernel.org
20301 S:      Supported
20302 F:      drivers/ptp/ptp_vmw.c
20303
20304 VMWARE VMCI DRIVER
20305 M:      Jorgen Hansen <jhansen@vmware.com>
20306 M:      Vishnu Dasa <vdasa@vmware.com>
20307 L:      linux-kernel@vger.kernel.org
20308 L:      pv-drivers@vmware.com (private)
20309 S:      Maintained
20310 F:      drivers/misc/vmw_vmci/
20311
20312 VMWARE VMMOUSE SUBDRIVER
20313 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
20314 M:      "VMware, Inc." <pv-drivers@vmware.com>
20315 L:      linux-input@vger.kernel.org
20316 S:      Maintained
20317 F:      drivers/input/mouse/vmmouse.c
20318 F:      drivers/input/mouse/vmmouse.h
20319
20320 VMWARE VMXNET3 ETHERNET DRIVER
20321 M:      Ronak Doshi <doshir@vmware.com>
20322 M:      pv-drivers@vmware.com
20323 L:      netdev@vger.kernel.org
20324 S:      Maintained
20325 F:      drivers/net/vmxnet3/
20326
20327 VOCORE VOCORE2 BOARD
20328 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
20329 L:      linux-mips@vger.kernel.org
20330 S:      Maintained
20331 F:      arch/mips/boot/dts/ralink/vocore2.dts
20332
20333 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
20334 M:      Liam Girdwood <lgirdwood@gmail.com>
20335 M:      Mark Brown <broonie@kernel.org>
20336 L:      linux-kernel@vger.kernel.org
20337 S:      Supported
20338 W:      http://www.slimlogic.co.uk/?p=48
20339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
20340 F:      Documentation/devicetree/bindings/regulator/
20341 F:      Documentation/power/regulator/
20342 F:      drivers/regulator/
20343 F:      include/dt-bindings/regulator/
20344 F:      include/linux/regulator/
20345 K:      regulator_get_optional
20346
20347 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
20348 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
20349 F:      drivers/regulator/irq_helpers.c
20350
20351 VRF
20352 M:      David Ahern <dsahern@kernel.org>
20353 L:      netdev@vger.kernel.org
20354 S:      Maintained
20355 F:      Documentation/networking/vrf.rst
20356 F:      drivers/net/vrf.c
20357
20358 VSPRINTF
20359 M:      Petr Mladek <pmladek@suse.com>
20360 M:      Steven Rostedt <rostedt@goodmis.org>
20361 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
20362 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20363 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
20364 S:      Maintained
20365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
20366 F:      Documentation/core-api/printk-formats.rst
20367 F:      lib/test_printf.c
20368 F:      lib/test_scanf.c
20369 F:      lib/vsprintf.c
20370
20371 VT1211 HARDWARE MONITOR DRIVER
20372 M:      Juerg Haefliger <juergh@gmail.com>
20373 L:      linux-hwmon@vger.kernel.org
20374 S:      Maintained
20375 F:      Documentation/hwmon/vt1211.rst
20376 F:      drivers/hwmon/vt1211.c
20377
20378 VT8231 HARDWARE MONITOR DRIVER
20379 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
20380 L:      linux-hwmon@vger.kernel.org
20381 S:      Maintained
20382 F:      drivers/hwmon/vt8231.c
20383
20384 VUB300 USB to SDIO/SD/MMC bridge chip
20385 L:      linux-mmc@vger.kernel.org
20386 S:      Orphan
20387 F:      drivers/mmc/host/vub300.c
20388
20389 W1 DALLAS'S 1-WIRE BUS
20390 M:      Evgeniy Polyakov <zbr@ioremap.net>
20391 S:      Maintained
20392 F:      Documentation/devicetree/bindings/w1/
20393 F:      Documentation/w1/
20394 F:      drivers/w1/
20395 F:      include/linux/w1.h
20396
20397 W83791D HARDWARE MONITORING DRIVER
20398 M:      Marc Hulsman <m.hulsman@tudelft.nl>
20399 L:      linux-hwmon@vger.kernel.org
20400 S:      Maintained
20401 F:      Documentation/hwmon/w83791d.rst
20402 F:      drivers/hwmon/w83791d.c
20403
20404 W83793 HARDWARE MONITORING DRIVER
20405 M:      Rudolf Marek <r.marek@assembler.cz>
20406 L:      linux-hwmon@vger.kernel.org
20407 S:      Maintained
20408 F:      Documentation/hwmon/w83793.rst
20409 F:      drivers/hwmon/w83793.c
20410
20411 W83795 HARDWARE MONITORING DRIVER
20412 M:      Jean Delvare <jdelvare@suse.com>
20413 L:      linux-hwmon@vger.kernel.org
20414 S:      Maintained
20415 F:      drivers/hwmon/w83795.c
20416
20417 W83L51xD SD/MMC CARD INTERFACE DRIVER
20418 M:      Pierre Ossman <pierre@ossman.eu>
20419 S:      Maintained
20420 F:      drivers/mmc/host/wbsd.*
20421
20422 WACOM PROTOCOL 4 SERIAL TABLETS
20423 M:      Julian Squires <julian@cipht.net>
20424 M:      Hans de Goede <hdegoede@redhat.com>
20425 L:      linux-input@vger.kernel.org
20426 S:      Maintained
20427 F:      drivers/input/tablet/wacom_serial4.c
20428
20429 WATCHDOG DEVICE DRIVERS
20430 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
20431 M:      Guenter Roeck <linux@roeck-us.net>
20432 L:      linux-watchdog@vger.kernel.org
20433 S:      Maintained
20434 W:      http://www.linux-watchdog.org/
20435 T:      git git://www.linux-watchdog.org/linux-watchdog.git
20436 F:      Documentation/devicetree/bindings/watchdog/
20437 F:      Documentation/watchdog/
20438 F:      drivers/watchdog/
20439 F:      include/linux/watchdog.h
20440 F:      include/uapi/linux/watchdog.h
20441
20442 WHISKEYCOVE PMIC GPIO DRIVER
20443 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
20444 L:      linux-gpio@vger.kernel.org
20445 S:      Maintained
20446 F:      drivers/gpio/gpio-wcove.c
20447
20448 WHWAVE RTC DRIVER
20449 M:      Dianlong Li <long17.cool@163.com>
20450 L:      linux-rtc@vger.kernel.org
20451 S:      Maintained
20452 F:      drivers/rtc/rtc-sd3078.c
20453
20454 WIIMOTE HID DRIVER
20455 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20456 L:      linux-input@vger.kernel.org
20457 S:      Maintained
20458 F:      drivers/hid/hid-wiimote*
20459
20460 WILOCITY WIL6210 WIRELESS DRIVER
20461 M:      Maya Erez <merez@codeaurora.org>
20462 L:      linux-wireless@vger.kernel.org
20463 L:      wil6210@qti.qualcomm.com
20464 S:      Supported
20465 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
20466 F:      drivers/net/wireless/ath/wil6210/
20467
20468 WINBOND CIR DRIVER
20469 M:      David Härdeman <david@hardeman.nu>
20470 S:      Maintained
20471 F:      drivers/media/rc/winbond-cir.c
20472
20473 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
20474 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20475 L:      linux-watchdog@vger.kernel.org
20476 S:      Maintained
20477 F:      drivers/watchdog/ebc-c384_wdt.c
20478
20479 WINSYSTEMS WS16C48 GPIO DRIVER
20480 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20481 L:      linux-gpio@vger.kernel.org
20482 S:      Maintained
20483 F:      drivers/gpio/gpio-ws16c48.c
20484
20485 WIREGUARD SECURE NETWORK TUNNEL
20486 M:      Jason A. Donenfeld <Jason@zx2c4.com>
20487 L:      wireguard@lists.zx2c4.com
20488 L:      netdev@vger.kernel.org
20489 S:      Maintained
20490 F:      drivers/net/wireguard/
20491 F:      tools/testing/selftests/wireguard/
20492
20493 WISTRON LAPTOP BUTTON DRIVER
20494 M:      Miloslav Trmac <mitr@volny.cz>
20495 S:      Maintained
20496 F:      drivers/input/misc/wistron_btns.c
20497
20498 WL3501 WIRELESS PCMCIA CARD DRIVER
20499 L:      linux-wireless@vger.kernel.org
20500 S:      Odd fixes
20501 F:      drivers/net/wireless/wl3501*
20502
20503 WOLFSON MICROELECTRONICS DRIVERS
20504 L:      patches@opensource.cirrus.com
20505 S:      Supported
20506 W:      https://github.com/CirrusLogic/linux-drivers/wiki
20507 T:      git https://github.com/CirrusLogic/linux-drivers.git
20508 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
20509 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
20510 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
20511 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
20512 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
20513 F:      Documentation/devicetree/bindings/sound/wm*
20514 F:      Documentation/hwmon/wm83??.rst
20515 F:      arch/arm/mach-s3c/mach-crag6410*
20516 F:      drivers/clk/clk-wm83*.c
20517 F:      drivers/gpio/gpio-*wm*.c
20518 F:      drivers/gpio/gpio-arizona.c
20519 F:      drivers/hwmon/wm83??-hwmon.c
20520 F:      drivers/input/misc/wm831x-on.c
20521 F:      drivers/input/touchscreen/wm831x-ts.c
20522 F:      drivers/input/touchscreen/wm97*.c
20523 F:      drivers/leds/leds-wm83*.c
20524 F:      drivers/mfd/arizona*
20525 F:      drivers/mfd/cs47l24*
20526 F:      drivers/mfd/wm*.c
20527 F:      drivers/power/supply/wm83*.c
20528 F:      drivers/regulator/arizona*
20529 F:      drivers/regulator/wm8*.c
20530 F:      drivers/rtc/rtc-wm83*.c
20531 F:      drivers/video/backlight/wm83*_bl.c
20532 F:      drivers/watchdog/wm83*_wdt.c
20533 F:      include/linux/mfd/arizona/
20534 F:      include/linux/mfd/wm831x/
20535 F:      include/linux/mfd/wm8350/
20536 F:      include/linux/mfd/wm8400*
20537 F:      include/linux/regulator/arizona*
20538 F:      include/linux/wm97xx.h
20539 F:      include/sound/wm????.h
20540 F:      sound/soc/codecs/arizona*
20541 F:      sound/soc/codecs/cs47l24*
20542 F:      sound/soc/codecs/wm*
20543
20544 WORKQUEUE
20545 M:      Tejun Heo <tj@kernel.org>
20546 R:      Lai Jiangshan <jiangshanlai@gmail.com>
20547 S:      Maintained
20548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
20549 F:      Documentation/core-api/workqueue.rst
20550 F:      include/linux/workqueue.h
20551 F:      kernel/workqueue.c
20552
20553 WWAN DRIVERS
20554 M:      Loic Poulain <loic.poulain@linaro.org>
20555 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
20556 R:      Johannes Berg <johannes@sipsolutions.net>
20557 L:      netdev@vger.kernel.org
20558 S:      Maintained
20559 F:      drivers/net/wwan/
20560 F:      include/linux/wwan.h
20561 F:      include/uapi/linux/wwan.h
20562
20563 X-POWERS AXP288 PMIC DRIVERS
20564 M:      Hans de Goede <hdegoede@redhat.com>
20565 S:      Maintained
20566 F:      drivers/acpi/pmic/intel_pmic_xpower.c
20567 N:      axp288
20568
20569 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
20570 M:      Chen-Yu Tsai <wens@csie.org>
20571 L:      linux-kernel@vger.kernel.org
20572 S:      Maintained
20573 N:      axp[128]
20574
20575 X.25 STACK
20576 M:      Martin Schiller <ms@dev.tdt.de>
20577 L:      linux-x25@vger.kernel.org
20578 S:      Maintained
20579 F:      Documentation/networking/lapb-module.rst
20580 F:      Documentation/networking/x25*
20581 F:      drivers/net/wan/hdlc_x25.c
20582 F:      drivers/net/wan/lapbether.c
20583 F:      include/*/lapb.h
20584 F:      include/net/x25*
20585 F:      include/uapi/linux/x25.h
20586 F:      net/lapb/
20587 F:      net/x25/
20588
20589 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20590 M:      Thomas Gleixner <tglx@linutronix.de>
20591 M:      Ingo Molnar <mingo@redhat.com>
20592 M:      Borislav Petkov <bp@alien8.de>
20593 M:      Dave Hansen <dave.hansen@linux.intel.com>
20594 M:      x86@kernel.org
20595 R:      "H. Peter Anvin" <hpa@zytor.com>
20596 L:      linux-kernel@vger.kernel.org
20597 S:      Maintained
20598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20599 F:      Documentation/devicetree/bindings/x86/
20600 F:      Documentation/x86/
20601 F:      arch/x86/
20602
20603 X86 ENTRY CODE
20604 M:      Andy Lutomirski <luto@kernel.org>
20605 L:      linux-kernel@vger.kernel.org
20606 S:      Maintained
20607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
20608 F:      arch/x86/entry/
20609
20610 X86 MCE INFRASTRUCTURE
20611 M:      Tony Luck <tony.luck@intel.com>
20612 M:      Borislav Petkov <bp@alien8.de>
20613 L:      linux-edac@vger.kernel.org
20614 S:      Maintained
20615 F:      Documentation/ABI/testing/sysfs-mce
20616 F:      Documentation/x86/x86_64/machinecheck.rst
20617 F:      arch/x86/kernel/cpu/mce/*
20618
20619 X86 MICROCODE UPDATE SUPPORT
20620 M:      Borislav Petkov <bp@alien8.de>
20621 S:      Maintained
20622 F:      arch/x86/kernel/cpu/microcode/*
20623
20624 X86 MM
20625 M:      Dave Hansen <dave.hansen@linux.intel.com>
20626 M:      Andy Lutomirski <luto@kernel.org>
20627 M:      Peter Zijlstra <peterz@infradead.org>
20628 L:      linux-kernel@vger.kernel.org
20629 S:      Maintained
20630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20631 F:      arch/x86/mm/
20632
20633 X86 PLATFORM DRIVERS
20634 M:      Hans de Goede <hdegoede@redhat.com>
20635 M:      Mark Gross <markgross@kernel.org>
20636 L:      platform-driver-x86@vger.kernel.org
20637 S:      Maintained
20638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20639 F:      drivers/platform/olpc/
20640 F:      drivers/platform/x86/
20641
20642 X86 PLATFORM DRIVERS - ARCH
20643 R:      Darren Hart <dvhart@infradead.org>
20644 R:      Andy Shevchenko <andy@infradead.org>
20645 L:      platform-driver-x86@vger.kernel.org
20646 L:      x86@kernel.org
20647 S:      Maintained
20648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20649 F:      arch/x86/platform
20650
20651 X86 PLATFORM UV HPE SUPERDOME FLEX
20652 M:      Steve Wahl <steve.wahl@hpe.com>
20653 R:      Mike Travis <mike.travis@hpe.com>
20654 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
20655 R:      Russ Anderson <russ.anderson@hpe.com>
20656 S:      Supported
20657 F:      arch/x86/include/asm/uv/
20658 F:      arch/x86/kernel/apic/x2apic_uv_x.c
20659 F:      arch/x86/platform/uv/
20660
20661 X86 VDSO
20662 M:      Andy Lutomirski <luto@kernel.org>
20663 L:      linux-kernel@vger.kernel.org
20664 S:      Maintained
20665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20666 F:      arch/x86/entry/vdso/
20667
20668 XARRAY
20669 M:      Matthew Wilcox <willy@infradead.org>
20670 L:      linux-fsdevel@vger.kernel.org
20671 S:      Supported
20672 F:      Documentation/core-api/xarray.rst
20673 F:      include/linux/idr.h
20674 F:      include/linux/xarray.h
20675 F:      lib/idr.c
20676 F:      lib/xarray.c
20677 F:      tools/testing/radix-tree
20678
20679 XBOX DVD IR REMOTE
20680 M:      Benjamin Valentin <benpicco@googlemail.com>
20681 S:      Maintained
20682 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
20683 F:      drivers/media/rc/xbox_remote.c
20684
20685 XC2028/3028 TUNER DRIVER
20686 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20687 L:      linux-media@vger.kernel.org
20688 S:      Maintained
20689 W:      https://linuxtv.org
20690 T:      git git://linuxtv.org/media_tree.git
20691 F:      drivers/media/tuners/tuner-xc2028.*
20692
20693 XDP (eXpress Data Path)
20694 M:      Alexei Starovoitov <ast@kernel.org>
20695 M:      Daniel Borkmann <daniel@iogearbox.net>
20696 M:      David S. Miller <davem@davemloft.net>
20697 M:      Jakub Kicinski <kuba@kernel.org>
20698 M:      Jesper Dangaard Brouer <hawk@kernel.org>
20699 M:      John Fastabend <john.fastabend@gmail.com>
20700 L:      netdev@vger.kernel.org
20701 L:      bpf@vger.kernel.org
20702 S:      Supported
20703 F:      include/net/xdp.h
20704 F:      include/net/xdp_priv.h
20705 F:      include/trace/events/xdp.h
20706 F:      kernel/bpf/cpumap.c
20707 F:      kernel/bpf/devmap.c
20708 F:      net/core/xdp.c
20709 F:      samples/bpf/xdp*
20710 F:      tools/testing/selftests/bpf/*xdp*
20711 F:      tools/testing/selftests/bpf/*/*xdp*
20712 F:      drivers/net/ethernet/*/*/*/*/*xdp*
20713 F:      drivers/net/ethernet/*/*/*xdp*
20714 K:      (?:\b|_)xdp(?:\b|_)
20715
20716 XDP SOCKETS (AF_XDP)
20717 M:      Björn Töpel <bjorn@kernel.org>
20718 M:      Magnus Karlsson <magnus.karlsson@intel.com>
20719 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
20720 L:      netdev@vger.kernel.org
20721 L:      bpf@vger.kernel.org
20722 S:      Maintained
20723 F:      Documentation/networking/af_xdp.rst
20724 F:      include/net/xdp_sock*
20725 F:      include/net/xsk_buff_pool.h
20726 F:      include/uapi/linux/if_xdp.h
20727 F:      include/uapi/linux/xdp_diag.h
20728 F:      include/net/netns/xdp.h
20729 F:      net/xdp/
20730 F:      samples/bpf/xdpsock*
20731 F:      tools/lib/bpf/xsk*
20732
20733 XEN BLOCK SUBSYSTEM
20734 M:      Roger Pau Monné <roger.pau@citrix.com>
20735 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20736 S:      Supported
20737 F:      drivers/block/xen*
20738 F:      drivers/block/xen-blkback/*
20739
20740 XEN HYPERVISOR ARM
20741 M:      Stefano Stabellini <sstabellini@kernel.org>
20742 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20743 S:      Maintained
20744 F:      arch/arm/include/asm/xen/
20745 F:      arch/arm/xen/
20746
20747 XEN HYPERVISOR ARM64
20748 M:      Stefano Stabellini <sstabellini@kernel.org>
20749 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20750 S:      Maintained
20751 F:      arch/arm64/include/asm/xen/
20752 F:      arch/arm64/xen/
20753
20754 XEN HYPERVISOR INTERFACE
20755 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
20756 M:      Juergen Gross <jgross@suse.com>
20757 R:      Stefano Stabellini <sstabellini@kernel.org>
20758 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20759 S:      Supported
20760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
20761 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
20762 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
20763 F:      arch/x86/include/asm/pvclock-abi.h
20764 F:      arch/x86/include/asm/xen/
20765 F:      arch/x86/platform/pvh/
20766 F:      arch/x86/xen/
20767 F:      drivers/*/xen-*front.c
20768 F:      drivers/xen/
20769 F:      include/uapi/xen/
20770 F:      include/xen/
20771
20772 XEN NETWORK BACKEND DRIVER
20773 M:      Wei Liu <wei.liu@kernel.org>
20774 M:      Paul Durrant <paul@xen.org>
20775 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20776 L:      netdev@vger.kernel.org
20777 S:      Supported
20778 F:      drivers/net/xen-netback/*
20779
20780 XEN PCI SUBSYSTEM
20781 M:      Juergen Gross <jgross@suse.com>
20782 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20783 S:      Supported
20784 F:      arch/x86/pci/*xen*
20785 F:      drivers/pci/*xen*
20786
20787 XEN PVSCSI DRIVERS
20788 M:      Juergen Gross <jgross@suse.com>
20789 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20790 L:      linux-scsi@vger.kernel.org
20791 S:      Supported
20792 F:      drivers/scsi/xen-scsifront.c
20793 F:      drivers/xen/xen-scsiback.c
20794 F:      include/xen/interface/io/vscsiif.h
20795
20796 XEN SOUND FRONTEND DRIVER
20797 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
20798 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20799 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20800 S:      Supported
20801 F:      sound/xen/*
20802
20803 XEN SWIOTLB SUBSYSTEM
20804 M:      Juergen Gross <jgross@suse.com>
20805 M:      Stefano Stabellini <sstabellini@kernel.org>
20806 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20807 L:      iommu@lists.linux-foundation.org
20808 S:      Supported
20809 F:      arch/x86/xen/*swiotlb*
20810 F:      drivers/xen/*swiotlb*
20811
20812 XFS FILESYSTEM
20813 C:      irc://irc.oftc.net/xfs
20814 M:      Darrick J. Wong <djwong@kernel.org>
20815 M:      linux-xfs@vger.kernel.org
20816 L:      linux-xfs@vger.kernel.org
20817 S:      Supported
20818 W:      http://xfs.org/
20819 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
20820 F:      Documentation/ABI/testing/sysfs-fs-xfs
20821 F:      Documentation/admin-guide/xfs.rst
20822 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
20823 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
20824 F:      fs/xfs/
20825 F:      include/uapi/linux/dqblk_xfs.h
20826 F:      include/uapi/linux/fsmap.h
20827
20828 XILINX AXI ETHERNET DRIVER
20829 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
20830 S:      Maintained
20831 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
20832
20833 XILINX CAN DRIVER
20834 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
20835 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
20836 L:      linux-can@vger.kernel.org
20837 S:      Maintained
20838 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
20839 F:      drivers/net/can/xilinx_can.c
20840
20841 XILINX GPIO DRIVER
20842 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
20843 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
20844 R:      Michal Simek <michal.simek@xilinx.com>
20845 S:      Maintained
20846 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20847 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
20848 F:      drivers/gpio/gpio-xilinx.c
20849 F:      drivers/gpio/gpio-zynq.c
20850
20851 XILINX SD-FEC IP CORES
20852 M:      Derek Kiernan <derek.kiernan@xilinx.com>
20853 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
20854 S:      Maintained
20855 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
20856 F:      Documentation/misc-devices/xilinx_sdfec.rst
20857 F:      drivers/misc/Kconfig
20858 F:      drivers/misc/Makefile
20859 F:      drivers/misc/xilinx_sdfec.c
20860 F:      include/uapi/misc/xilinx_sdfec.h
20861
20862 XILINX UARTLITE SERIAL DRIVER
20863 M:      Peter Korsgaard <jacmet@sunsite.dk>
20864 L:      linux-serial@vger.kernel.org
20865 S:      Maintained
20866 F:      drivers/tty/serial/uartlite.c
20867
20868 XILINX VIDEO IP CORES
20869 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20870 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20871 L:      linux-media@vger.kernel.org
20872 S:      Supported
20873 T:      git git://linuxtv.org/media_tree.git
20874 F:      Documentation/devicetree/bindings/media/xilinx/
20875 F:      drivers/media/platform/xilinx/
20876 F:      include/uapi/linux/xilinx-v4l2-controls.h
20877
20878 XILINX ZYNQMP DPDMA DRIVER
20879 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20880 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20881 L:      dmaengine@vger.kernel.org
20882 S:      Supported
20883 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20884 F:      drivers/dma/xilinx/xilinx_dpdma.c
20885 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20886
20887 XILINX ZYNQMP PSGTR PHY DRIVER
20888 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
20889 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20890 L:      linux-kernel@vger.kernel.org
20891 S:      Supported
20892 T:      git https://github.com/Xilinx/linux-xlnx.git
20893 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20894 F:      drivers/phy/xilinx/phy-zynqmp.c
20895
20896 XILLYBUS DRIVER
20897 M:      Eli Billauer <eli.billauer@gmail.com>
20898 L:      linux-kernel@vger.kernel.org
20899 S:      Supported
20900 F:      drivers/char/xillybus/
20901
20902 XLP9XX I2C DRIVER
20903 M:      George Cherian <gcherian@marvell.com>
20904 L:      linux-i2c@vger.kernel.org
20905 S:      Supported
20906 W:      http://www.marvell.com
20907 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20908 F:      drivers/i2c/busses/i2c-xlp9xx.c
20909
20910 XRA1403 GPIO EXPANDER
20911 M:      Nandor Han <nandor.han@ge.com>
20912 M:      Semi Malinen <semi.malinen@ge.com>
20913 L:      linux-gpio@vger.kernel.org
20914 S:      Maintained
20915 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20916 F:      drivers/gpio/gpio-xra1403.c
20917
20918 XTENSA XTFPGA PLATFORM SUPPORT
20919 M:      Max Filippov <jcmvbkbc@gmail.com>
20920 L:      linux-xtensa@linux-xtensa.org
20921 S:      Maintained
20922 F:      drivers/spi/spi-xtensa-xtfpga.c
20923 F:      sound/soc/xtensa/xtfpga-i2s.c
20924
20925 YAM DRIVER FOR AX.25
20926 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
20927 L:      linux-hams@vger.kernel.org
20928 S:      Maintained
20929 F:      drivers/net/hamradio/yam*
20930 F:      include/linux/yam.h
20931
20932 YAMA SECURITY MODULE
20933 M:      Kees Cook <keescook@chromium.org>
20934 S:      Supported
20935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20936 F:      Documentation/admin-guide/LSM/Yama.rst
20937 F:      security/yama/
20938
20939 YEALINK PHONE DRIVER
20940 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
20941 L:      usbb2k-api-dev@nongnu.org
20942 S:      Maintained
20943 F:      Documentation/input/devices/yealink.rst
20944 F:      drivers/input/misc/yealink.*
20945
20946 Z8530 DRIVER FOR AX.25
20947 M:      Joerg Reuter <jreuter@yaina.de>
20948 L:      linux-hams@vger.kernel.org
20949 S:      Maintained
20950 W:      http://yaina.de/jreuter/
20951 W:      http://www.qsl.net/dl1bke/
20952 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
20953 F:      drivers/net/hamradio/*scc.c
20954 F:      drivers/net/hamradio/z8530.h
20955
20956 ZBUD COMPRESSED PAGE ALLOCATOR
20957 M:      Seth Jennings <sjenning@redhat.com>
20958 M:      Dan Streetman <ddstreet@ieee.org>
20959 L:      linux-mm@kvack.org
20960 S:      Maintained
20961 F:      mm/zbud.c
20962
20963 ZD1211RW WIRELESS DRIVER
20964 M:      Ulrich Kunitz <kune@deine-taler.de>
20965 L:      linux-wireless@vger.kernel.org
20966 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
20967 S:      Maintained
20968 W:      http://zd1211.ath.cx/wiki/DriverRewrite
20969 F:      drivers/net/wireless/zydas/zd1211rw/
20970
20971 ZD1301 MEDIA DRIVER
20972 M:      Antti Palosaari <crope@iki.fi>
20973 L:      linux-media@vger.kernel.org
20974 S:      Maintained
20975 W:      https://linuxtv.org/
20976 W:      http://palosaari.fi/linux/
20977 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20978 F:      drivers/media/usb/dvb-usb-v2/zd1301*
20979
20980 ZD1301_DEMOD MEDIA DRIVER
20981 M:      Antti Palosaari <crope@iki.fi>
20982 L:      linux-media@vger.kernel.org
20983 S:      Maintained
20984 W:      https://linuxtv.org/
20985 W:      http://palosaari.fi/linux/
20986 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20987 F:      drivers/media/dvb-frontends/zd1301_demod*
20988
20989 ZHAOXIN PROCESSOR SUPPORT
20990 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
20991 L:      linux-kernel@vger.kernel.org
20992 S:      Maintained
20993 F:      arch/x86/kernel/cpu/zhaoxin.c
20994
20995 ZONEFS FILESYSTEM
20996 M:      Damien Le Moal <damien.lemoal@wdc.com>
20997 M:      Naohiro Aota <naohiro.aota@wdc.com>
20998 R:      Johannes Thumshirn <jth@kernel.org>
20999 L:      linux-fsdevel@vger.kernel.org
21000 S:      Maintained
21001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
21002 F:      Documentation/filesystems/zonefs.rst
21003 F:      fs/zonefs/
21004
21005 ZPOOL COMPRESSED PAGE STORAGE API
21006 M:      Dan Streetman <ddstreet@ieee.org>
21007 L:      linux-mm@kvack.org
21008 S:      Maintained
21009 F:      include/linux/zpool.h
21010 F:      mm/zpool.c
21011
21012 ZR36067 VIDEO FOR LINUX DRIVER
21013 M:      Corentin Labbe <clabbe@baylibre.com>
21014 L:      mjpeg-users@lists.sourceforge.net
21015 L:      linux-media@vger.kernel.org
21016 S:      Maintained
21017 W:      http://mjpeg.sourceforge.net/driver-zoran/
21018 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21019 F:      Documentation/driver-api/media/drivers/zoran.rst
21020 F:      drivers/staging/media/zoran/
21021
21022 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
21023 M:      Minchan Kim <minchan@kernel.org>
21024 M:      Nitin Gupta <ngupta@vflare.org>
21025 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
21026 L:      linux-kernel@vger.kernel.org
21027 S:      Maintained
21028 F:      Documentation/admin-guide/blockdev/zram.rst
21029 F:      drivers/block/zram/
21030
21031 ZS DECSTATION Z85C30 SERIAL DRIVER
21032 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
21033 S:      Maintained
21034 F:      drivers/tty/serial/zs.*
21035
21036 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
21037 M:      Minchan Kim <minchan@kernel.org>
21038 M:      Nitin Gupta <ngupta@vflare.org>
21039 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
21040 L:      linux-mm@kvack.org
21041 S:      Maintained
21042 F:      Documentation/vm/zsmalloc.rst
21043 F:      include/linux/zsmalloc.h
21044 F:      mm/zsmalloc.c
21045
21046 ZSWAP COMPRESSED SWAP CACHING
21047 M:      Seth Jennings <sjenning@redhat.com>
21048 M:      Dan Streetman <ddstreet@ieee.org>
21049 M:      Vitaly Wool <vitaly.wool@konsulko.com>
21050 L:      linux-mm@kvack.org
21051 S:      Maintained
21052 F:      mm/zswap.c
21053
21054 THE REST
21055 M:      Linus Torvalds <torvalds@linux-foundation.org>
21056 L:      linux-kernel@vger.kernel.org
21057 S:      Buried alive in reporters
21058 Q:      http://patchwork.kernel.org/project/LKML/list/
21059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
21060 F:      *
21061 F:      */