Merge tag 'kbuild-v5.16' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy...
[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:      Documentation/devicetree/bindings/auxdisplay/
3174 F:      drivers/auxdisplay/
3175 F:      include/linux/cfag12864b.h
3176
3177 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3178 M:      Andreas Klinger <ak@it-klinger.de>
3179 L:      linux-iio@vger.kernel.org
3180 S:      Maintained
3181 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3182 F:      drivers/iio/adc/hx711.c
3183
3184 AX.25 NETWORK LAYER
3185 M:      Ralf Baechle <ralf@linux-mips.org>
3186 L:      linux-hams@vger.kernel.org
3187 S:      Maintained
3188 W:      http://www.linux-ax25.org/
3189 F:      include/net/ax25.h
3190 F:      include/uapi/linux/ax25.h
3191 F:      net/ax25/
3192
3193 AXENTIA ARM DEVICES
3194 M:      Peter Rosin <peda@axentia.se>
3195 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3196 S:      Maintained
3197 F:      arch/arm/boot/dts/at91-linea.dtsi
3198 F:      arch/arm/boot/dts/at91-natte.dtsi
3199 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3200 F:      arch/arm/boot/dts/at91-tse850-3.dts
3201
3202 AXENTIA ASOC DRIVERS
3203 M:      Peter Rosin <peda@axentia.se>
3204 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3205 S:      Maintained
3206 F:      Documentation/devicetree/bindings/sound/axentia,*
3207 F:      sound/soc/atmel/tse850-pcm5142.c
3208
3209 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3210 M:      Nuno Sá <nuno.sa@analog.com>
3211 L:      linux-hwmon@vger.kernel.org
3212 S:      Supported
3213 W:      http://ez.analog.com/community/linux-device-drivers
3214 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3215 F:      drivers/hwmon/axi-fan-control.c
3216
3217 AXXIA I2C CONTROLLER
3218 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3219 L:      linux-i2c@vger.kernel.org
3220 S:      Maintained
3221 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3222 F:      drivers/i2c/busses/i2c-axxia.c
3223
3224 AZ6007 DVB DRIVER
3225 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3226 L:      linux-media@vger.kernel.org
3227 S:      Maintained
3228 W:      https://linuxtv.org
3229 T:      git git://linuxtv.org/media_tree.git
3230 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3231
3232 AZTECH FM RADIO RECEIVER DRIVER
3233 M:      Hans Verkuil <hverkuil@xs4all.nl>
3234 L:      linux-media@vger.kernel.org
3235 S:      Maintained
3236 W:      https://linuxtv.org
3237 T:      git git://linuxtv.org/media_tree.git
3238 F:      drivers/media/radio/radio-aztech*
3239
3240 B43 WIRELESS DRIVER
3241 L:      linux-wireless@vger.kernel.org
3242 L:      b43-dev@lists.infradead.org
3243 S:      Odd Fixes
3244 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3245 F:      drivers/net/wireless/broadcom/b43/
3246
3247 B43LEGACY WIRELESS DRIVER
3248 M:      Larry Finger <Larry.Finger@lwfinger.net>
3249 L:      linux-wireless@vger.kernel.org
3250 L:      b43-dev@lists.infradead.org
3251 S:      Maintained
3252 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3253 F:      drivers/net/wireless/broadcom/b43legacy/
3254
3255 BACKLIGHT CLASS/SUBSYSTEM
3256 M:      Lee Jones <lee.jones@linaro.org>
3257 M:      Daniel Thompson <daniel.thompson@linaro.org>
3258 M:      Jingoo Han <jingoohan1@gmail.com>
3259 L:      dri-devel@lists.freedesktop.org
3260 S:      Maintained
3261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3262 F:      Documentation/ABI/stable/sysfs-class-backlight
3263 F:      Documentation/ABI/testing/sysfs-class-backlight
3264 F:      Documentation/devicetree/bindings/leds/backlight
3265 F:      drivers/video/backlight/
3266 F:      include/linux/backlight.h
3267 F:      include/linux/pwm_backlight.h
3268
3269 BARCO P50 GPIO DRIVER
3270 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3271 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3272 S:      Maintained
3273 F:      drivers/platform/x86/barco-p50-gpio.c
3274
3275 BATMAN ADVANCED
3276 M:      Marek Lindner <mareklindner@neomailbox.ch>
3277 M:      Simon Wunderlich <sw@simonwunderlich.de>
3278 M:      Antonio Quartulli <a@unstable.cc>
3279 M:      Sven Eckelmann <sven@narfation.org>
3280 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3281 S:      Maintained
3282 W:      https://www.open-mesh.org/
3283 Q:      https://patchwork.open-mesh.org/project/batman/list/
3284 B:      https://www.open-mesh.org/projects/batman-adv/issues
3285 C:      ircs://irc.hackint.org/batadv
3286 T:      git https://git.open-mesh.org/linux-merge.git
3287 F:      Documentation/networking/batman-adv.rst
3288 F:      include/uapi/linux/batadv_packet.h
3289 F:      include/uapi/linux/batman_adv.h
3290 F:      net/batman-adv/
3291
3292 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3293 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3294 L:      linux-hams@vger.kernel.org
3295 S:      Maintained
3296 W:      http://www.baycom.org/~tom/ham/ham.html
3297 F:      drivers/net/hamradio/baycom*
3298
3299 BCACHE (BLOCK LAYER CACHE)
3300 M:      Coly Li <colyli@suse.de>
3301 M:      Kent Overstreet <kent.overstreet@gmail.com>
3302 L:      linux-bcache@vger.kernel.org
3303 S:      Maintained
3304 W:      http://bcache.evilpiepirate.org
3305 C:      irc://irc.oftc.net/bcache
3306 F:      drivers/md/bcache/
3307
3308 BDISP ST MEDIA DRIVER
3309 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3310 L:      linux-media@vger.kernel.org
3311 S:      Supported
3312 W:      https://linuxtv.org
3313 T:      git git://linuxtv.org/media_tree.git
3314 F:      drivers/media/platform/sti/bdisp
3315
3316 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3317 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3318 L:      netdev@vger.kernel.org
3319 S:      Maintained
3320 F:      drivers/net/ethernet/ec_bhf.c
3321
3322 BEFS FILE SYSTEM
3323 M:      Luis de Bethencourt <luisbg@kernel.org>
3324 M:      Salah Triki <salah.triki@gmail.com>
3325 S:      Maintained
3326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3327 F:      Documentation/filesystems/befs.rst
3328 F:      fs/befs/
3329
3330 BFQ I/O SCHEDULER
3331 M:      Paolo Valente <paolo.valente@linaro.org>
3332 M:      Jens Axboe <axboe@kernel.dk>
3333 L:      linux-block@vger.kernel.org
3334 S:      Maintained
3335 F:      Documentation/block/bfq-iosched.rst
3336 F:      block/bfq-*
3337
3338 BFS FILE SYSTEM
3339 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3340 S:      Maintained
3341 F:      Documentation/filesystems/bfs.rst
3342 F:      fs/bfs/
3343 F:      include/uapi/linux/bfs_fs.h
3344
3345 BITMAP API
3346 M:      Yury Norov <yury.norov@gmail.com>
3347 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3348 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3349 S:      Maintained
3350 F:      include/asm-generic/bitops/find.h
3351 F:      include/linux/bitmap.h
3352 F:      lib/bitmap.c
3353 F:      lib/find_bit.c
3354 F:      lib/find_bit_benchmark.c
3355 F:      lib/test_bitmap.c
3356 F:      tools/include/asm-generic/bitops/find.h
3357 F:      tools/include/linux/bitmap.h
3358 F:      tools/lib/bitmap.c
3359 F:      tools/lib/find_bit.c
3360
3361 BLINKM RGB LED DRIVER
3362 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3363 S:      Maintained
3364 F:      drivers/leds/leds-blinkm.c
3365
3366 BLOCK LAYER
3367 M:      Jens Axboe <axboe@kernel.dk>
3368 L:      linux-block@vger.kernel.org
3369 S:      Maintained
3370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3371 F:      block/
3372 F:      drivers/block/
3373 F:      include/linux/blk*
3374 F:      kernel/trace/blktrace.c
3375 F:      lib/sbitmap.c
3376
3377 BLOCK2MTD DRIVER
3378 M:      Joern Engel <joern@lazybastard.org>
3379 L:      linux-mtd@lists.infradead.org
3380 S:      Maintained
3381 F:      drivers/mtd/devices/block2mtd.c
3382
3383 BLUETOOTH DRIVERS
3384 M:      Marcel Holtmann <marcel@holtmann.org>
3385 M:      Johan Hedberg <johan.hedberg@gmail.com>
3386 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3387 L:      linux-bluetooth@vger.kernel.org
3388 S:      Supported
3389 W:      http://www.bluez.org/
3390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3392 F:      drivers/bluetooth/
3393
3394 BLUETOOTH SUBSYSTEM
3395 M:      Marcel Holtmann <marcel@holtmann.org>
3396 M:      Johan Hedberg <johan.hedberg@gmail.com>
3397 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3398 L:      linux-bluetooth@vger.kernel.org
3399 S:      Supported
3400 W:      http://www.bluez.org/
3401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3403 F:      include/net/bluetooth/
3404 F:      net/bluetooth/
3405
3406 BONDING DRIVER
3407 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3408 M:      Veaceslav Falico <vfalico@gmail.com>
3409 M:      Andy Gospodarek <andy@greyhouse.net>
3410 L:      netdev@vger.kernel.org
3411 S:      Supported
3412 W:      http://sourceforge.net/projects/bonding/
3413 F:      drivers/net/bonding/
3414 F:      include/net/bonding.h
3415 F:      include/uapi/linux/if_bonding.h
3416
3417 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3418 M:      Dan Robertson <dan@dlrobertson.com>
3419 L:      linux-iio@vger.kernel.org
3420 S:      Maintained
3421 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3422 F:      drivers/iio/accel/bma400*
3423
3424 BPF (Safe dynamic programs and tools)
3425 M:      Alexei Starovoitov <ast@kernel.org>
3426 M:      Daniel Borkmann <daniel@iogearbox.net>
3427 M:      Andrii Nakryiko <andrii@kernel.org>
3428 R:      Martin KaFai Lau <kafai@fb.com>
3429 R:      Song Liu <songliubraving@fb.com>
3430 R:      Yonghong Song <yhs@fb.com>
3431 R:      John Fastabend <john.fastabend@gmail.com>
3432 R:      KP Singh <kpsingh@kernel.org>
3433 L:      netdev@vger.kernel.org
3434 L:      bpf@vger.kernel.org
3435 S:      Supported
3436 W:      https://bpf.io/
3437 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3440 F:      Documentation/bpf/
3441 F:      Documentation/networking/filter.rst
3442 F:      Documentation/userspace-api/ebpf/
3443 F:      arch/*/net/*
3444 F:      include/linux/bpf*
3445 F:      include/linux/btf*
3446 F:      include/linux/filter.h
3447 F:      include/trace/events/xdp.h
3448 F:      include/uapi/linux/bpf*
3449 F:      include/uapi/linux/btf*
3450 F:      include/uapi/linux/filter.h
3451 F:      kernel/bpf/
3452 F:      kernel/trace/bpf_trace.c
3453 F:      lib/test_bpf.c
3454 F:      net/bpf/
3455 F:      net/core/filter.c
3456 F:      net/sched/act_bpf.c
3457 F:      net/sched/cls_bpf.c
3458 F:      samples/bpf/
3459 F:      scripts/bpf_doc.py
3460 F:      tools/bpf/
3461 F:      tools/lib/bpf/
3462 F:      tools/testing/selftests/bpf/
3463 N:      bpf
3464 K:      bpf
3465
3466 BPF JIT for ARM
3467 M:      Shubham Bansal <illusionist.neo@gmail.com>
3468 L:      netdev@vger.kernel.org
3469 L:      bpf@vger.kernel.org
3470 S:      Maintained
3471 F:      arch/arm/net/
3472
3473 BPF JIT for ARM64
3474 M:      Daniel Borkmann <daniel@iogearbox.net>
3475 M:      Alexei Starovoitov <ast@kernel.org>
3476 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3477 L:      netdev@vger.kernel.org
3478 L:      bpf@vger.kernel.org
3479 S:      Supported
3480 F:      arch/arm64/net/
3481
3482 BPF JIT for MIPS (32-BIT AND 64-BIT)
3483 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3484 M:      Paul Burton <paulburton@kernel.org>
3485 L:      netdev@vger.kernel.org
3486 L:      bpf@vger.kernel.org
3487 S:      Maintained
3488 F:      arch/mips/net/
3489
3490 BPF JIT for NFP NICs
3491 M:      Jakub Kicinski <kuba@kernel.org>
3492 L:      netdev@vger.kernel.org
3493 L:      bpf@vger.kernel.org
3494 S:      Supported
3495 F:      drivers/net/ethernet/netronome/nfp/bpf/
3496
3497 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3498 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3499 L:      netdev@vger.kernel.org
3500 L:      bpf@vger.kernel.org
3501 S:      Maintained
3502 F:      arch/powerpc/net/
3503
3504 BPF JIT for RISC-V (32-bit)
3505 M:      Luke Nelson <luke.r.nels@gmail.com>
3506 M:      Xi Wang <xi.wang@gmail.com>
3507 L:      netdev@vger.kernel.org
3508 L:      bpf@vger.kernel.org
3509 S:      Maintained
3510 F:      arch/riscv/net/
3511 X:      arch/riscv/net/bpf_jit_comp64.c
3512
3513 BPF JIT for RISC-V (64-bit)
3514 M:      Björn Töpel <bjorn@kernel.org>
3515 L:      netdev@vger.kernel.org
3516 L:      bpf@vger.kernel.org
3517 S:      Maintained
3518 F:      arch/riscv/net/
3519 X:      arch/riscv/net/bpf_jit_comp32.c
3520
3521 BPF JIT for S390
3522 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3523 M:      Heiko Carstens <hca@linux.ibm.com>
3524 M:      Vasily Gorbik <gor@linux.ibm.com>
3525 L:      netdev@vger.kernel.org
3526 L:      bpf@vger.kernel.org
3527 S:      Maintained
3528 F:      arch/s390/net/
3529 X:      arch/s390/net/pnet.c
3530
3531 BPF JIT for SPARC (32-BIT AND 64-BIT)
3532 M:      David S. Miller <davem@davemloft.net>
3533 L:      netdev@vger.kernel.org
3534 L:      bpf@vger.kernel.org
3535 S:      Maintained
3536 F:      arch/sparc/net/
3537
3538 BPF JIT for X86 32-BIT
3539 M:      Wang YanQing <udknight@gmail.com>
3540 L:      netdev@vger.kernel.org
3541 L:      bpf@vger.kernel.org
3542 S:      Maintained
3543 F:      arch/x86/net/bpf_jit_comp32.c
3544
3545 BPF JIT for X86 64-BIT
3546 M:      Alexei Starovoitov <ast@kernel.org>
3547 M:      Daniel Borkmann <daniel@iogearbox.net>
3548 L:      netdev@vger.kernel.org
3549 L:      bpf@vger.kernel.org
3550 S:      Supported
3551 F:      arch/x86/net/
3552 X:      arch/x86/net/bpf_jit_comp32.c
3553
3554 BPF LSM (Security Audit and Enforcement using BPF)
3555 M:      KP Singh <kpsingh@kernel.org>
3556 R:      Florent Revest <revest@chromium.org>
3557 R:      Brendan Jackman <jackmanb@chromium.org>
3558 L:      bpf@vger.kernel.org
3559 S:      Maintained
3560 F:      Documentation/bpf/bpf_lsm.rst
3561 F:      include/linux/bpf_lsm.h
3562 F:      kernel/bpf/bpf_lsm.c
3563 F:      security/bpf/
3564
3565 BROADCOM B44 10/100 ETHERNET DRIVER
3566 M:      Michael Chan <michael.chan@broadcom.com>
3567 L:      netdev@vger.kernel.org
3568 S:      Supported
3569 F:      drivers/net/ethernet/broadcom/b44.*
3570
3571 BROADCOM B53 ETHERNET SWITCH DRIVER
3572 M:      Florian Fainelli <f.fainelli@gmail.com>
3573 L:      netdev@vger.kernel.org
3574 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3575 S:      Supported
3576 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3577 F:      drivers/net/dsa/b53/*
3578 F:      include/linux/dsa/brcm.h
3579 F:      include/linux/platform_data/b53.h
3580
3581 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3582 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3583 L:      bcm-kernel-feedback-list@broadcom.com
3584 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3585 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3586 S:      Maintained
3587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3588 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3589 F:      drivers/pci/controller/pcie-brcmstb.c
3590 F:      drivers/staging/vc04_services
3591 N:      bcm2711
3592 N:      bcm283*
3593
3594 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3595 M:      Florian Fainelli <f.fainelli@gmail.com>
3596 M:      Ray Jui <rjui@broadcom.com>
3597 M:      Scott Branden <sbranden@broadcom.com>
3598 M:      bcm-kernel-feedback-list@broadcom.com
3599 S:      Maintained
3600 T:      git git://github.com/broadcom/mach-bcm
3601 F:      arch/arm/mach-bcm/
3602 N:      bcm281*
3603 N:      bcm113*
3604 N:      bcm216*
3605 N:      kona
3606
3607 BROADCOM BCM47XX MIPS ARCHITECTURE
3608 M:      Hauke Mehrtens <hauke@hauke-m.de>
3609 M:      Rafał Miłecki <zajec5@gmail.com>
3610 L:      linux-mips@vger.kernel.org
3611 S:      Maintained
3612 F:      Documentation/devicetree/bindings/mips/brcm/
3613 F:      arch/mips/bcm47xx/*
3614 F:      arch/mips/include/asm/mach-bcm47xx/*
3615
3616 BROADCOM BCM4908 ETHERNET DRIVER
3617 M:      Rafał Miłecki <rafal@milecki.pl>
3618 M:      bcm-kernel-feedback-list@broadcom.com
3619 L:      netdev@vger.kernel.org
3620 S:      Maintained
3621 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3622 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3623 F:      drivers/net/ethernet/broadcom/unimac.h
3624
3625 BROADCOM BCM5301X ARM ARCHITECTURE
3626 M:      Hauke Mehrtens <hauke@hauke-m.de>
3627 M:      Rafał Miłecki <zajec5@gmail.com>
3628 M:      bcm-kernel-feedback-list@broadcom.com
3629 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3630 S:      Maintained
3631 F:      arch/arm/boot/dts/bcm470*
3632 F:      arch/arm/boot/dts/bcm5301*
3633 F:      arch/arm/boot/dts/bcm953012*
3634 F:      arch/arm/mach-bcm/bcm_5301x.c
3635
3636 BROADCOM BCM53573 ARM ARCHITECTURE
3637 M:      Rafał Miłecki <rafal@milecki.pl>
3638 L:      bcm-kernel-feedback-list@broadcom.com
3639 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3640 S:      Maintained
3641 F:      arch/arm/boot/dts/bcm47189*
3642 F:      arch/arm/boot/dts/bcm53573*
3643
3644 BROADCOM BCM63XX ARM ARCHITECTURE
3645 M:      Florian Fainelli <f.fainelli@gmail.com>
3646 M:      bcm-kernel-feedback-list@broadcom.com
3647 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3648 S:      Maintained
3649 T:      git git://github.com/broadcom/stblinux.git
3650 N:      bcm63xx
3651
3652 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3653 M:      Kevin Cernekee <cernekee@gmail.com>
3654 L:      linux-usb@vger.kernel.org
3655 S:      Maintained
3656 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3657
3658 BROADCOM BCM7XXX ARM ARCHITECTURE
3659 M:      Florian Fainelli <f.fainelli@gmail.com>
3660 M:      bcm-kernel-feedback-list@broadcom.com
3661 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3662 S:      Maintained
3663 T:      git git://github.com/broadcom/stblinux.git
3664 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3665 F:      arch/arm/boot/dts/bcm7*.dts*
3666 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3667 F:      arch/arm/mach-bcm/*brcmstb*
3668 F:      arch/arm/mm/cache-b15-rac.c
3669 F:      drivers/bus/brcmstb_gisb.c
3670 F:      drivers/pci/controller/pcie-brcmstb.c
3671 N:      brcmstb
3672 N:      bcm7038
3673 N:      bcm7120
3674
3675 BROADCOM BDC DRIVER
3676 M:      Al Cooper <alcooperx@gmail.com>
3677 L:      linux-usb@vger.kernel.org
3678 L:      bcm-kernel-feedback-list@broadcom.com
3679 S:      Maintained
3680 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3681 F:      drivers/usb/gadget/udc/bdc/
3682
3683 BROADCOM BMIPS CPUFREQ DRIVER
3684 M:      Markus Mayer <mmayer@broadcom.com>
3685 M:      bcm-kernel-feedback-list@broadcom.com
3686 L:      linux-pm@vger.kernel.org
3687 S:      Maintained
3688 F:      drivers/cpufreq/bmips-cpufreq.c
3689
3690 BROADCOM BMIPS MIPS ARCHITECTURE
3691 M:      Florian Fainelli <f.fainelli@gmail.com>
3692 L:      bcm-kernel-feedback-list@broadcom.com
3693 L:      linux-mips@vger.kernel.org
3694 S:      Maintained
3695 T:      git git://github.com/broadcom/stblinux.git
3696 F:      arch/mips/bmips/*
3697 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3698 F:      arch/mips/include/asm/mach-bmips/*
3699 F:      arch/mips/kernel/*bmips*
3700 F:      drivers/soc/bcm/bcm63xx
3701 F:      drivers/irqchip/irq-bcm63*
3702 F:      drivers/irqchip/irq-bcm7*
3703 F:      drivers/irqchip/irq-brcmstb*
3704 F:      include/linux/bcm963xx_nvram.h
3705 F:      include/linux/bcm963xx_tag.h
3706
3707 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3708 M:      Rasesh Mody <rmody@marvell.com>
3709 M:      GR-Linux-NIC-Dev@marvell.com
3710 L:      netdev@vger.kernel.org
3711 S:      Supported
3712 F:      drivers/net/ethernet/broadcom/bnx2.*
3713 F:      drivers/net/ethernet/broadcom/bnx2_*
3714
3715 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3716 M:      Saurav Kashyap <skashyap@marvell.com>
3717 M:      Javed Hasan <jhasan@marvell.com>
3718 M:      GR-QLogic-Storage-Upstream@marvell.com
3719 L:      linux-scsi@vger.kernel.org
3720 S:      Supported
3721 F:      drivers/scsi/bnx2fc/
3722
3723 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3724 M:      Nilesh Javali <njavali@marvell.com>
3725 M:      Manish Rangankar <mrangankar@marvell.com>
3726 M:      GR-QLogic-Storage-Upstream@marvell.com
3727 L:      linux-scsi@vger.kernel.org
3728 S:      Supported
3729 F:      drivers/scsi/bnx2i/
3730
3731 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3732 M:      Ariel Elior <aelior@marvell.com>
3733 M:      Sudarsana Kalluru <skalluru@marvell.com>
3734 M:      GR-everest-linux-l2@marvell.com
3735 L:      netdev@vger.kernel.org
3736 S:      Supported
3737 F:      drivers/net/ethernet/broadcom/bnx2x/
3738
3739 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3740 M:      Michael Chan <michael.chan@broadcom.com>
3741 L:      netdev@vger.kernel.org
3742 S:      Supported
3743 F:      drivers/net/ethernet/broadcom/bnxt/
3744
3745 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3746 M:      Arend van Spriel <aspriel@gmail.com>
3747 M:      Franky Lin <franky.lin@broadcom.com>
3748 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3749 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3750 M:      Wright Feng <wright.feng@infineon.com>
3751 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3752 L:      linux-wireless@vger.kernel.org
3753 L:      brcm80211-dev-list.pdl@broadcom.com
3754 L:      SHA-cyfmac-dev-list@infineon.com
3755 S:      Supported
3756 F:      drivers/net/wireless/broadcom/brcm80211/
3757
3758 BROADCOM BRCMSTB GPIO DRIVER
3759 M:      Gregory Fong <gregory.0xf0@gmail.com>
3760 L:      bcm-kernel-feedback-list@broadcom.com
3761 S:      Supported
3762 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3763 F:      drivers/gpio/gpio-brcmstb.c
3764
3765 BROADCOM BRCMSTB I2C DRIVER
3766 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3767 L:      linux-i2c@vger.kernel.org
3768 L:      bcm-kernel-feedback-list@broadcom.com
3769 S:      Supported
3770 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3771 F:      drivers/i2c/busses/i2c-brcmstb.c
3772
3773 BROADCOM BRCMSTB UART DRIVER
3774 M:      Al Cooper <alcooperx@gmail.com>
3775 L:      linux-serial@vger.kernel.org
3776 L:      bcm-kernel-feedback-list@broadcom.com
3777 S:      Maintained
3778 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3779 F:      drivers/tty/serial/8250/8250_bcm7271.c
3780
3781 BROADCOM BRCMSTB USB EHCI DRIVER
3782 M:      Al Cooper <alcooperx@gmail.com>
3783 L:      linux-usb@vger.kernel.org
3784 L:      bcm-kernel-feedback-list@broadcom.com
3785 S:      Maintained
3786 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3787 F:      drivers/usb/host/ehci-brcm.*
3788
3789 BROADCOM BRCMSTB USB PIN MAP DRIVER
3790 M:      Al Cooper <alcooperx@gmail.com>
3791 L:      linux-usb@vger.kernel.org
3792 L:      bcm-kernel-feedback-list@broadcom.com
3793 S:      Maintained
3794 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3795 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3796
3797 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3798 M:      Al Cooper <alcooperx@gmail.com>
3799 L:      linux-kernel@vger.kernel.org
3800 L:      bcm-kernel-feedback-list@broadcom.com
3801 S:      Maintained
3802 F:      drivers/phy/broadcom/phy-brcm-usb*
3803
3804 BROADCOM ETHERNET PHY DRIVERS
3805 M:      Florian Fainelli <f.fainelli@gmail.com>
3806 L:      bcm-kernel-feedback-list@broadcom.com
3807 L:      netdev@vger.kernel.org
3808 S:      Supported
3809 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3810 F:      drivers/net/phy/bcm*.[ch]
3811 F:      drivers/net/phy/broadcom.c
3812 F:      include/linux/brcmphy.h
3813
3814 BROADCOM GENET ETHERNET DRIVER
3815 M:      Doug Berger <opendmb@gmail.com>
3816 M:      Florian Fainelli <f.fainelli@gmail.com>
3817 L:      bcm-kernel-feedback-list@broadcom.com
3818 L:      netdev@vger.kernel.org
3819 S:      Supported
3820 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3821 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
3822 F:      drivers/net/ethernet/broadcom/genet/
3823 F:      drivers/net/ethernet/broadcom/unimac.h
3824 F:      drivers/net/mdio/mdio-bcm-unimac.c
3825 F:      include/linux/platform_data/bcmgenet.h
3826 F:      include/linux/platform_data/mdio-bcm-unimac.h
3827
3828 BROADCOM IPROC ARM ARCHITECTURE
3829 M:      Ray Jui <rjui@broadcom.com>
3830 M:      Scott Branden <sbranden@broadcom.com>
3831 M:      bcm-kernel-feedback-list@broadcom.com
3832 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3833 S:      Maintained
3834 T:      git git://github.com/broadcom/cygnus-linux.git
3835 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3836 F:      arch/arm64/boot/dts/broadcom/stingray/*
3837 F:      drivers/clk/bcm/clk-ns*
3838 F:      drivers/clk/bcm/clk-sr*
3839 F:      drivers/pinctrl/bcm/pinctrl-ns*
3840 F:      include/dt-bindings/clock/bcm-sr*
3841 N:      iproc
3842 N:      cygnus
3843 N:      bcm[-_]nsp
3844 N:      bcm9113*
3845 N:      bcm9583*
3846 N:      bcm9585*
3847 N:      bcm9586*
3848 N:      bcm988312
3849 N:      bcm113*
3850 N:      bcm583*
3851 N:      bcm585*
3852 N:      bcm586*
3853 N:      bcm88312
3854 N:      hr2
3855 N:      stingray
3856
3857 BROADCOM IPROC GBIT ETHERNET DRIVER
3858 M:      Rafał Miłecki <rafal@milecki.pl>
3859 M:      bcm-kernel-feedback-list@broadcom.com
3860 L:      netdev@vger.kernel.org
3861 S:      Maintained
3862 F:      Documentation/devicetree/bindings/net/brcm,amac.txt
3863 F:      drivers/net/ethernet/broadcom/bgmac*
3864 F:      drivers/net/ethernet/broadcom/unimac.h
3865
3866 BROADCOM KONA GPIO DRIVER
3867 M:      Ray Jui <rjui@broadcom.com>
3868 L:      bcm-kernel-feedback-list@broadcom.com
3869 S:      Supported
3870 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3871 F:      drivers/gpio/gpio-bcm-kona.c
3872
3873 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
3874 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
3875 M:      Kashyap Desai <kashyap.desai@broadcom.com>
3876 M:      Sumit Saxena <sumit.saxena@broadcom.com>
3877 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
3878 L:      mpi3mr-linuxdrv.pdl@broadcom.com
3879 L:      linux-scsi@vger.kernel.org
3880 S:      Supported
3881 W:      https://www.broadcom.com/support/storage
3882 F:      drivers/scsi/mpi3mr/
3883
3884 BROADCOM NETXTREME-E ROCE DRIVER
3885 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3886 L:      linux-rdma@vger.kernel.org
3887 S:      Supported
3888 W:      http://www.broadcom.com
3889 F:      drivers/infiniband/hw/bnxt_re/
3890 F:      include/uapi/rdma/bnxt_re-abi.h
3891
3892 BROADCOM NVRAM DRIVER
3893 M:      Rafał Miłecki <zajec5@gmail.com>
3894 L:      linux-mips@vger.kernel.org
3895 S:      Maintained
3896 F:      drivers/firmware/broadcom/*
3897
3898 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3899 M:      Rafał Miłecki <rafal@milecki.pl>
3900 M:      Florian Fainelli <f.fainelli@gmail.com>
3901 M:      bcm-kernel-feedback-list@broadcom.com
3902 L:      linux-pm@vger.kernel.org
3903 S:      Maintained
3904 T:      git git://github.com/broadcom/stblinux.git
3905 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
3906 F:      include/dt-bindings/soc/bcm-pmb.h
3907
3908 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3909 M:      Rafał Miłecki <zajec5@gmail.com>
3910 L:      linux-wireless@vger.kernel.org
3911 S:      Maintained
3912 F:      drivers/bcma/
3913 F:      include/linux/bcma/
3914
3915 BROADCOM SPI DRIVER
3916 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3917 M:      bcm-kernel-feedback-list@broadcom.com
3918 S:      Maintained
3919 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3920 F:      drivers/spi/spi-bcm-qspi.*
3921 F:      drivers/spi/spi-brcmstb-qspi.c
3922 F:      drivers/spi/spi-iproc-qspi.c
3923
3924 BROADCOM STB AVS CPUFREQ DRIVER
3925 M:      Markus Mayer <mmayer@broadcom.com>
3926 M:      bcm-kernel-feedback-list@broadcom.com
3927 L:      linux-pm@vger.kernel.org
3928 S:      Maintained
3929 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3930 F:      drivers/cpufreq/brcmstb*
3931
3932 BROADCOM STB AVS TMON DRIVER
3933 M:      Markus Mayer <mmayer@broadcom.com>
3934 M:      bcm-kernel-feedback-list@broadcom.com
3935 L:      linux-pm@vger.kernel.org
3936 S:      Maintained
3937 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3938 F:      drivers/thermal/broadcom/brcmstb*
3939
3940 BROADCOM STB DPFE DRIVER
3941 M:      Markus Mayer <mmayer@broadcom.com>
3942 M:      bcm-kernel-feedback-list@broadcom.com
3943 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3944 S:      Maintained
3945 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
3946 F:      drivers/memory/brcmstb_dpfe.c
3947
3948 BROADCOM STB NAND FLASH DRIVER
3949 M:      Brian Norris <computersforpeace@gmail.com>
3950 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3951 L:      linux-mtd@lists.infradead.org
3952 L:      bcm-kernel-feedback-list@broadcom.com
3953 S:      Maintained
3954 F:      drivers/mtd/nand/raw/brcmnand/
3955
3956 BROADCOM STB PCIE DRIVER
3957 M:      Jim Quinlan <jim2101024@gmail.com>
3958 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3959 M:      Florian Fainelli <f.fainelli@gmail.com>
3960 M:      bcm-kernel-feedback-list@broadcom.com
3961 L:      linux-pci@vger.kernel.org
3962 S:      Maintained
3963 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3964 F:      drivers/pci/controller/pcie-brcmstb.c
3965
3966 BROADCOM SYSTEMPORT ETHERNET DRIVER
3967 M:      Florian Fainelli <f.fainelli@gmail.com>
3968 L:      bcm-kernel-feedback-list@broadcom.com
3969 L:      netdev@vger.kernel.org
3970 S:      Supported
3971 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3972 F:      drivers/net/ethernet/broadcom/unimac.h
3973
3974 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3975 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3976 M:      Prashant Sreedharan <prashant@broadcom.com>
3977 M:      Michael Chan <mchan@broadcom.com>
3978 L:      netdev@vger.kernel.org
3979 S:      Supported
3980 F:      drivers/net/ethernet/broadcom/tg3.*
3981
3982 BROADCOM VK DRIVER
3983 M:      Scott Branden <scott.branden@broadcom.com>
3984 L:      bcm-kernel-feedback-list@broadcom.com
3985 S:      Supported
3986 F:      drivers/misc/bcm-vk/
3987 F:      include/uapi/linux/misc/bcm_vk.h
3988
3989 BROCADE BFA FC SCSI DRIVER
3990 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3991 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3992 L:      linux-scsi@vger.kernel.org
3993 S:      Supported
3994 F:      drivers/scsi/bfa/
3995
3996 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3997 M:      Rasesh Mody <rmody@marvell.com>
3998 M:      Sudarsana Kalluru <skalluru@marvell.com>
3999 M:      GR-Linux-NIC-Dev@marvell.com
4000 L:      netdev@vger.kernel.org
4001 S:      Supported
4002 F:      drivers/net/ethernet/brocade/bna/
4003
4004 BSG (block layer generic sg v4 driver)
4005 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4006 L:      linux-scsi@vger.kernel.org
4007 S:      Supported
4008 F:      block/bsg.c
4009 F:      include/linux/bsg.h
4010 F:      include/uapi/linux/bsg.h
4011
4012 BT87X AUDIO DRIVER
4013 M:      Clemens Ladisch <clemens@ladisch.de>
4014 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4015 S:      Maintained
4016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4017 F:      Documentation/sound/cards/bt87x.rst
4018 F:      sound/pci/bt87x.c
4019
4020 BT8XXGPIO DRIVER
4021 M:      Michael Buesch <m@bues.ch>
4022 S:      Maintained
4023 W:      http://bu3sch.de/btgpio.php
4024 F:      drivers/gpio/gpio-bt8xx.c
4025
4026 BTRFS FILE SYSTEM
4027 M:      Chris Mason <clm@fb.com>
4028 M:      Josef Bacik <josef@toxicpanda.com>
4029 M:      David Sterba <dsterba@suse.com>
4030 L:      linux-btrfs@vger.kernel.org
4031 S:      Maintained
4032 W:      http://btrfs.wiki.kernel.org/
4033 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4034 C:      irc://irc.libera.chat/btrfs
4035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4036 F:      Documentation/filesystems/btrfs.rst
4037 F:      fs/btrfs/
4038 F:      include/linux/btrfs*
4039 F:      include/uapi/linux/btrfs*
4040
4041 BTTV VIDEO4LINUX DRIVER
4042 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4043 L:      linux-media@vger.kernel.org
4044 S:      Odd fixes
4045 W:      https://linuxtv.org
4046 T:      git git://linuxtv.org/media_tree.git
4047 F:      Documentation/driver-api/media/drivers/bttv*
4048 F:      drivers/media/pci/bt8xx/bttv*
4049
4050 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4051 M:      Chanwoo Choi <cw00.choi@samsung.com>
4052 L:      linux-pm@vger.kernel.org
4053 L:      linux-samsung-soc@vger.kernel.org
4054 S:      Maintained
4055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4056 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4057 F:      drivers/devfreq/exynos-bus.c
4058
4059 BUSLOGIC SCSI DRIVER
4060 M:      Khalid Aziz <khalid@gonehiking.org>
4061 L:      linux-scsi@vger.kernel.org
4062 S:      Maintained
4063 F:      drivers/scsi/BusLogic.*
4064 F:      drivers/scsi/FlashPoint.*
4065
4066 C-MEDIA CMI8788 DRIVER
4067 M:      Clemens Ladisch <clemens@ladisch.de>
4068 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4069 S:      Maintained
4070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4071 F:      sound/pci/oxygen/
4072
4073 C-SKY ARCHITECTURE
4074 M:      Guo Ren <guoren@kernel.org>
4075 L:      linux-csky@vger.kernel.org
4076 S:      Supported
4077 T:      git https://github.com/c-sky/csky-linux.git
4078 F:      Documentation/devicetree/bindings/csky/
4079 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4080 F:      Documentation/devicetree/bindings/timer/csky,*
4081 F:      arch/csky/
4082 F:      drivers/clocksource/timer-gx6605s.c
4083 F:      drivers/clocksource/timer-mp-csky.c
4084 F:      drivers/irqchip/irq-csky-*
4085 N:      csky
4086 K:      csky
4087
4088 CA8210 IEEE-802.15.4 RADIO DRIVER
4089 M:      Harry Morris <h.morris@cascoda.com>
4090 L:      linux-wpan@vger.kernel.org
4091 S:      Maintained
4092 W:      https://github.com/Cascoda/ca8210-linux.git
4093 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4094 F:      drivers/net/ieee802154/ca8210.c
4095
4096 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4097 M:      Damien Le Moal <damien.lemoal@wdc.com>
4098 L:      linux-riscv@lists.infradead.org
4099 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4100 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4101 F:      drivers/pinctrl/pinctrl-k210.c
4102
4103 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4104 M:      Damien Le Moal <damien.lemoal@wdc.com>
4105 L:      linux-kernel@vger.kernel.org
4106 L:      linux-riscv@lists.infradead.org
4107 S:      Maintained
4108 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4109 F:      drivers/reset/reset-k210.c
4110
4111 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4112 M:      Damien Le Moal <damien.lemoal@wdc.com>
4113 L:      linux-riscv@lists.infradead.org
4114 S:      Maintained
4115 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4116 F:      drivers/soc/canaan/
4117 F:      include/soc/canaan/
4118
4119 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4120 M:      David Howells <dhowells@redhat.com>
4121 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4122 S:      Supported
4123 F:      Documentation/filesystems/caching/cachefiles.rst
4124 F:      fs/cachefiles/
4125
4126 CADENCE MIPI-CSI2 BRIDGES
4127 M:      Maxime Ripard <mripard@kernel.org>
4128 L:      linux-media@vger.kernel.org
4129 S:      Maintained
4130 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4131 F:      drivers/media/platform/cadence/cdns-csi2*
4132
4133 CADENCE NAND DRIVER
4134 L:      linux-mtd@lists.infradead.org
4135 S:      Orphan
4136 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4137 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4138
4139 CADENCE USB3 DRD IP DRIVER
4140 M:      Peter Chen <peter.chen@kernel.org>
4141 M:      Pawel Laszczak <pawell@cadence.com>
4142 R:      Roger Quadros <rogerq@kernel.org>
4143 R:      Aswath Govindraju <a-govindraju@ti.com>
4144 L:      linux-usb@vger.kernel.org
4145 S:      Maintained
4146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4147 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4148 F:      drivers/usb/cdns3/
4149 X:      drivers/usb/cdns3/cdnsp*
4150
4151 CADENCE USBSSP DRD IP DRIVER
4152 M:      Pawel Laszczak <pawell@cadence.com>
4153 L:      linux-usb@vger.kernel.org
4154 S:      Maintained
4155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4156 F:      drivers/usb/cdns3/
4157 X:      drivers/usb/cdns3/cdns3*
4158
4159 CADET FM/AM RADIO RECEIVER DRIVER
4160 M:      Hans Verkuil <hverkuil@xs4all.nl>
4161 L:      linux-media@vger.kernel.org
4162 S:      Maintained
4163 W:      https://linuxtv.org
4164 T:      git git://linuxtv.org/media_tree.git
4165 F:      drivers/media/radio/radio-cadet*
4166
4167 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4168 L:      linux-media@vger.kernel.org
4169 S:      Orphan
4170 T:      git git://linuxtv.org/media_tree.git
4171 F:      Documentation/admin-guide/media/cafe_ccic*
4172 F:      drivers/media/platform/marvell-ccic/
4173
4174 CAIF NETWORK LAYER
4175 L:      netdev@vger.kernel.org
4176 S:      Orphan
4177 F:      Documentation/networking/caif/
4178 F:      drivers/net/caif/
4179 F:      include/net/caif/
4180 F:      include/uapi/linux/caif/
4181 F:      net/caif/
4182
4183 CAKE QDISC
4184 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4185 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4186 S:      Maintained
4187 F:      net/sched/sch_cake.c
4188
4189 CAN NETWORK DRIVERS
4190 M:      Wolfgang Grandegger <wg@grandegger.com>
4191 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4192 L:      linux-can@vger.kernel.org
4193 S:      Maintained
4194 W:      https://github.com/linux-can
4195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4197 F:      Documentation/devicetree/bindings/net/can/
4198 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4199 F:      drivers/net/can/
4200 F:      drivers/phy/phy-can-transceiver.c
4201 F:      include/linux/can/bittiming.h
4202 F:      include/linux/can/dev.h
4203 F:      include/linux/can/led.h
4204 F:      include/linux/can/length.h
4205 F:      include/linux/can/platform/
4206 F:      include/linux/can/rx-offload.h
4207 F:      include/uapi/linux/can/error.h
4208 F:      include/uapi/linux/can/netlink.h
4209 F:      include/uapi/linux/can/vxcan.h
4210
4211 CAN NETWORK LAYER
4212 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4213 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4214 L:      linux-can@vger.kernel.org
4215 S:      Maintained
4216 W:      https://github.com/linux-can
4217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4219 F:      Documentation/networking/can.rst
4220 F:      include/linux/can/can-ml.h
4221 F:      include/linux/can/core.h
4222 F:      include/linux/can/skb.h
4223 F:      include/net/netns/can.h
4224 F:      include/uapi/linux/can.h
4225 F:      include/uapi/linux/can/bcm.h
4226 F:      include/uapi/linux/can/gw.h
4227 F:      include/uapi/linux/can/isotp.h
4228 F:      include/uapi/linux/can/raw.h
4229 F:      net/can/
4230
4231 CAN-J1939 NETWORK LAYER
4232 M:      Robin van der Gracht <robin@protonic.nl>
4233 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4234 R:      kernel@pengutronix.de
4235 L:      linux-can@vger.kernel.org
4236 S:      Maintained
4237 F:      Documentation/networking/j1939.rst
4238 F:      include/uapi/linux/can/j1939.h
4239 F:      net/can/j1939/
4240
4241 CAPABILITIES
4242 M:      Serge Hallyn <serge@hallyn.com>
4243 L:      linux-security-module@vger.kernel.org
4244 S:      Supported
4245 F:      include/linux/capability.h
4246 F:      include/uapi/linux/capability.h
4247 F:      kernel/capability.c
4248 F:      security/commoncap.c
4249
4250 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4251 M:      Kevin Tsai <ktsai@capellamicro.com>
4252 S:      Maintained
4253 F:      drivers/iio/light/cm*
4254
4255 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4256 M:      Christian Lamparter <chunkeey@googlemail.com>
4257 L:      linux-wireless@vger.kernel.org
4258 S:      Maintained
4259 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4260 F:      drivers/net/wireless/ath/carl9170/
4261
4262 CAVIUM I2C DRIVER
4263 M:      Robert Richter <rric@kernel.org>
4264 S:      Odd Fixes
4265 W:      http://www.marvell.com
4266 F:      drivers/i2c/busses/i2c-octeon*
4267 F:      drivers/i2c/busses/i2c-thunderx*
4268
4269 CAVIUM LIQUIDIO NETWORK DRIVER
4270 M:      Derek Chickles <dchickles@marvell.com>
4271 M:      Satanand Burla <sburla@marvell.com>
4272 M:      Felix Manlunas <fmanlunas@marvell.com>
4273 L:      netdev@vger.kernel.org
4274 S:      Supported
4275 W:      http://www.marvell.com
4276 F:      drivers/net/ethernet/cavium/liquidio/
4277
4278 CAVIUM MMC DRIVER
4279 M:      Robert Richter <rric@kernel.org>
4280 S:      Odd Fixes
4281 W:      http://www.marvell.com
4282 F:      drivers/mmc/host/cavium*
4283
4284 CAVIUM OCTEON-TX CRYPTO DRIVER
4285 M:      George Cherian <gcherian@marvell.com>
4286 L:      linux-crypto@vger.kernel.org
4287 S:      Supported
4288 W:      http://www.marvell.com
4289 F:      drivers/crypto/cavium/cpt/
4290
4291 CAVIUM THUNDERX2 ARM64 SOC
4292 M:      Robert Richter <rric@kernel.org>
4293 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4294 S:      Odd Fixes
4295 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4296 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4297
4298 CBS/ETF/TAPRIO QDISCS
4299 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4300 S:      Maintained
4301 L:      netdev@vger.kernel.org
4302 F:      net/sched/sch_cbs.c
4303 F:      net/sched/sch_etf.c
4304 F:      net/sched/sch_taprio.c
4305
4306 CC2520 IEEE-802.15.4 RADIO DRIVER
4307 M:      Varka Bhadram <varkabhadram@gmail.com>
4308 L:      linux-wpan@vger.kernel.org
4309 S:      Maintained
4310 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4311 F:      drivers/net/ieee802154/cc2520.c
4312 F:      include/linux/spi/cc2520.h
4313
4314 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4315 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4316 L:      linux-crypto@vger.kernel.org
4317 S:      Supported
4318 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4319 F:      drivers/crypto/ccree/
4320
4321 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4322 M:      Hadar Gat <hadar.gat@arm.com>
4323 L:      linux-crypto@vger.kernel.org
4324 S:      Supported
4325 F:      drivers/char/hw_random/cctrng.c
4326 F:      drivers/char/hw_random/cctrng.h
4327 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4328 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4329
4330 CEC FRAMEWORK
4331 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4332 L:      linux-media@vger.kernel.org
4333 S:      Supported
4334 W:      http://linuxtv.org
4335 T:      git git://linuxtv.org/media_tree.git
4336 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4337 F:      Documentation/devicetree/bindings/media/cec.txt
4338 F:      Documentation/driver-api/media/cec-core.rst
4339 F:      Documentation/userspace-api/media/cec
4340 F:      drivers/media/cec/
4341 F:      drivers/media/rc/keymaps/rc-cec.c
4342 F:      include/media/cec-notifier.h
4343 F:      include/media/cec.h
4344 F:      include/uapi/linux/cec-funcs.h
4345 F:      include/uapi/linux/cec.h
4346
4347 CEC GPIO DRIVER
4348 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4349 L:      linux-media@vger.kernel.org
4350 S:      Supported
4351 W:      http://linuxtv.org
4352 T:      git git://linuxtv.org/media_tree.git
4353 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4354 F:      drivers/media/cec/platform/cec-gpio/
4355
4356 CELL BROADBAND ENGINE ARCHITECTURE
4357 M:      Arnd Bergmann <arnd@arndb.de>
4358 L:      linuxppc-dev@lists.ozlabs.org
4359 S:      Supported
4360 W:      http://www.ibm.com/developerworks/power/cell/
4361 F:      arch/powerpc/include/asm/cell*.h
4362 F:      arch/powerpc/include/asm/spu*.h
4363 F:      arch/powerpc/include/uapi/asm/spu*.h
4364 F:      arch/powerpc/platforms/cell/
4365
4366 CELLWISE CW2015 BATTERY DRIVER
4367 M:      Tobias Schrammm <t.schramm@manjaro.org>
4368 S:      Maintained
4369 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4370 F:      drivers/power/supply/cw2015_battery.c
4371
4372 CEPH COMMON CODE (LIBCEPH)
4373 M:      Ilya Dryomov <idryomov@gmail.com>
4374 M:      Jeff Layton <jlayton@kernel.org>
4375 L:      ceph-devel@vger.kernel.org
4376 S:      Supported
4377 W:      http://ceph.com/
4378 T:      git git://github.com/ceph/ceph-client.git
4379 F:      include/linux/ceph/
4380 F:      include/linux/crush/
4381 F:      net/ceph/
4382
4383 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4384 M:      Jeff Layton <jlayton@kernel.org>
4385 M:      Ilya Dryomov <idryomov@gmail.com>
4386 L:      ceph-devel@vger.kernel.org
4387 S:      Supported
4388 W:      http://ceph.com/
4389 T:      git git://github.com/ceph/ceph-client.git
4390 F:      Documentation/filesystems/ceph.rst
4391 F:      fs/ceph/
4392
4393 CERTIFICATE HANDLING
4394 M:      David Howells <dhowells@redhat.com>
4395 M:      David Woodhouse <dwmw2@infradead.org>
4396 L:      keyrings@vger.kernel.org
4397 S:      Maintained
4398 F:      Documentation/admin-guide/module-signing.rst
4399 F:      certs/
4400 F:      scripts/extract-cert.c
4401 F:      scripts/sign-file.c
4402
4403 CFAG12864B LCD DRIVER
4404 M:      Miguel Ojeda <ojeda@kernel.org>
4405 S:      Maintained
4406 F:      drivers/auxdisplay/cfag12864b.c
4407 F:      include/linux/cfag12864b.h
4408
4409 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4410 M:      Miguel Ojeda <ojeda@kernel.org>
4411 S:      Maintained
4412 F:      drivers/auxdisplay/cfag12864bfb.c
4413 F:      include/linux/cfag12864b.h
4414
4415 CHAR and MISC DRIVERS
4416 M:      Arnd Bergmann <arnd@arndb.de>
4417 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4418 S:      Supported
4419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4420 F:      drivers/char/
4421 F:      drivers/misc/
4422 F:      include/linux/miscdevice.h
4423 X:      drivers/char/agp/
4424 X:      drivers/char/hw_random/
4425 X:      drivers/char/ipmi/
4426 X:      drivers/char/random.c
4427 X:      drivers/char/tpm/
4428
4429 CHECKPATCH
4430 M:      Andy Whitcroft <apw@canonical.com>
4431 M:      Joe Perches <joe@perches.com>
4432 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4433 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4434 S:      Maintained
4435 F:      scripts/checkpatch.pl
4436
4437 CHECKPATCH DOCUMENTATION
4438 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4439 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4440 R:      Joe Perches <joe@perches.com>
4441 S:      Maintained
4442 F:      Documentation/dev-tools/checkpatch.rst
4443
4444 CHINESE DOCUMENTATION
4445 M:      Alex Shi <alexs@kernel.org>
4446 S:      Maintained
4447 F:      Documentation/translations/zh_CN/
4448
4449 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4450 M:      Peter Chen <peter.chen@kernel.org>
4451 L:      linux-usb@vger.kernel.org
4452 S:      Maintained
4453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4454 F:      drivers/usb/chipidea/
4455
4456 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4457 M:      Hans de Goede <hdegoede@redhat.com>
4458 L:      linux-input@vger.kernel.org
4459 S:      Maintained
4460 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4461 F:      drivers/input/touchscreen/chipone_icn8318.c
4462
4463 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4464 M:      Hans de Goede <hdegoede@redhat.com>
4465 L:      linux-input@vger.kernel.org
4466 S:      Maintained
4467 F:      drivers/input/touchscreen/chipone_icn8505.c
4468
4469 CHROME HARDWARE PLATFORM SUPPORT
4470 M:      Benson Leung <bleung@chromium.org>
4471 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4472 S:      Maintained
4473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4474 F:      drivers/platform/chrome/
4475
4476 CHROMEOS EC CODEC DRIVER
4477 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4478 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4479 R:      Guenter Roeck <groeck@chromium.org>
4480 S:      Maintained
4481 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4482 F:      sound/soc/codecs/cros_ec_codec.*
4483
4484 CHROMEOS EC SUBDRIVERS
4485 M:      Benson Leung <bleung@chromium.org>
4486 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4487 R:      Guenter Roeck <groeck@chromium.org>
4488 S:      Maintained
4489 F:      drivers/power/supply/cros_usbpd-charger.c
4490 N:      cros_ec
4491 N:      cros-ec
4492
4493 CHRONTEL CH7322 CEC DRIVER
4494 M:      Joe Tessler <jrt@google.com>
4495 L:      linux-media@vger.kernel.org
4496 S:      Maintained
4497 T:      git git://linuxtv.org/media_tree.git
4498 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4499 F:      drivers/media/cec/i2c/ch7322.c
4500
4501 CIRRUS LOGIC AUDIO CODEC DRIVERS
4502 M:      James Schulman <james.schulman@cirrus.com>
4503 M:      David Rhodes <david.rhodes@cirrus.com>
4504 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4505 L:      patches@opensource.cirrus.com
4506 S:      Maintained
4507 F:      sound/soc/codecs/cs*
4508
4509 CIRRUS LOGIC DSP FIRMWARE DRIVER
4510 M:      Simon Trimmer <simont@opensource.cirrus.com>
4511 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4512 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4513 L:      patches@opensource.cirrus.com
4514 S:      Supported
4515 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4516 T:      git https://github.com/CirrusLogic/linux-drivers.git
4517 F:      drivers/firmware/cirrus/*
4518 F:      include/linux/firmware/cirrus/*
4519
4520 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4521 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4522 L:      netdev@vger.kernel.org
4523 S:      Maintained
4524 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4525
4526 CIRRUS LOGIC LOCHNAGAR DRIVER
4527 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4528 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4529 L:      patches@opensource.cirrus.com
4530 S:      Supported
4531 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4532 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4533 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4534 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4535 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4536 F:      Documentation/hwmon/lochnagar.rst
4537 F:      drivers/clk/clk-lochnagar.c
4538 F:      drivers/hwmon/lochnagar-hwmon.c
4539 F:      drivers/mfd/lochnagar-i2c.c
4540 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4541 F:      drivers/regulator/lochnagar-regulator.c
4542 F:      include/dt-bindings/clk/lochnagar.h
4543 F:      include/dt-bindings/pinctrl/lochnagar.h
4544 F:      include/linux/mfd/lochnagar*
4545 F:      sound/soc/codecs/lochnagar-sc.c
4546
4547 CIRRUS LOGIC MADERA CODEC DRIVERS
4548 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4549 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4550 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4551 L:      patches@opensource.cirrus.com
4552 S:      Supported
4553 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4554 T:      git https://github.com/CirrusLogic/linux-drivers.git
4555 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4556 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4557 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4558 F:      drivers/gpio/gpio-madera*
4559 F:      drivers/irqchip/irq-madera*
4560 F:      drivers/mfd/cs47l*
4561 F:      drivers/mfd/madera*
4562 F:      drivers/pinctrl/cirrus/*
4563 F:      include/dt-bindings/sound/madera*
4564 F:      include/linux/irqchip/irq-madera*
4565 F:      include/linux/mfd/madera/*
4566 F:      include/sound/madera*
4567 F:      sound/soc/codecs/cs47l*
4568 F:      sound/soc/codecs/madera*
4569
4570 CISCO FCOE HBA DRIVER
4571 M:      Satish Kharat <satishkh@cisco.com>
4572 M:      Sesidhar Baddela <sebaddel@cisco.com>
4573 M:      Karan Tilak Kumar <kartilak@cisco.com>
4574 L:      linux-scsi@vger.kernel.org
4575 S:      Supported
4576 F:      drivers/scsi/fnic/
4577
4578 CISCO SCSI HBA DRIVER
4579 M:      Karan Tilak Kumar <kartilak@cisco.com>
4580 M:      Sesidhar Baddela <sebaddel@cisco.com>
4581 L:      linux-scsi@vger.kernel.org
4582 S:      Supported
4583 F:      drivers/scsi/snic/
4584
4585 CISCO VIC ETHERNET NIC DRIVER
4586 M:      Christian Benvenuti <benve@cisco.com>
4587 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4588 S:      Supported
4589 F:      drivers/net/ethernet/cisco/enic/
4590
4591 CISCO VIC LOW LATENCY NIC DRIVER
4592 M:      Christian Benvenuti <benve@cisco.com>
4593 M:      Nelson Escobar <neescoba@cisco.com>
4594 S:      Supported
4595 F:      drivers/infiniband/hw/usnic/
4596
4597 CLANG-FORMAT FILE
4598 M:      Miguel Ojeda <ojeda@kernel.org>
4599 S:      Maintained
4600 F:      .clang-format
4601
4602 CLANG/LLVM BUILD SUPPORT
4603 M:      Nathan Chancellor <nathan@kernel.org>
4604 M:      Nick Desaulniers <ndesaulniers@google.com>
4605 L:      llvm@lists.linux.dev
4606 S:      Supported
4607 W:      https://clangbuiltlinux.github.io/
4608 B:      https://github.com/ClangBuiltLinux/linux/issues
4609 C:      irc://irc.libera.chat/clangbuiltlinux
4610 F:      Documentation/kbuild/llvm.rst
4611 F:      include/linux/compiler-clang.h
4612 F:      scripts/Makefile.clang
4613 F:      scripts/clang-tools/
4614 K:      \b(?i:clang|llvm)\b
4615
4616 CLANG CONTROL FLOW INTEGRITY SUPPORT
4617 M:      Sami Tolvanen <samitolvanen@google.com>
4618 M:      Kees Cook <keescook@chromium.org>
4619 R:      Nathan Chancellor <nathan@kernel.org>
4620 R:      Nick Desaulniers <ndesaulniers@google.com>
4621 L:      llvm@lists.linux.dev
4622 S:      Supported
4623 B:      https://github.com/ClangBuiltLinux/linux/issues
4624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4625 F:      include/linux/cfi.h
4626 F:      kernel/cfi.c
4627
4628 CLEANCACHE API
4629 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4630 L:      linux-kernel@vger.kernel.org
4631 S:      Maintained
4632 F:      include/linux/cleancache.h
4633 F:      mm/cleancache.c
4634
4635 CLK API
4636 M:      Russell King <linux@armlinux.org.uk>
4637 L:      linux-clk@vger.kernel.org
4638 S:      Maintained
4639 F:      include/linux/clk.h
4640
4641 CLOCKSOURCE, CLOCKEVENT DRIVERS
4642 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4643 M:      Thomas Gleixner <tglx@linutronix.de>
4644 L:      linux-kernel@vger.kernel.org
4645 S:      Supported
4646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4647 F:      Documentation/devicetree/bindings/timer/
4648 F:      drivers/clocksource/
4649
4650 CMPC ACPI DRIVER
4651 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4652 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4653 L:      platform-driver-x86@vger.kernel.org
4654 S:      Supported
4655 F:      drivers/platform/x86/classmate-laptop.c
4656
4657 COBALT MEDIA DRIVER
4658 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4659 L:      linux-media@vger.kernel.org
4660 S:      Supported
4661 W:      https://linuxtv.org
4662 T:      git git://linuxtv.org/media_tree.git
4663 F:      drivers/media/pci/cobalt/
4664
4665 COCCINELLE/Semantic Patches (SmPL)
4666 M:      Julia Lawall <Julia.Lawall@inria.fr>
4667 M:      Gilles Muller <Gilles.Muller@inria.fr>
4668 M:      Nicolas Palix <nicolas.palix@imag.fr>
4669 M:      Michal Marek <michal.lkml@markovi.net>
4670 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4671 S:      Supported
4672 W:      http://coccinelle.lip6.fr/
4673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4674 F:      Documentation/dev-tools/coccinelle.rst
4675 F:      scripts/coccicheck
4676 F:      scripts/coccinelle/
4677
4678 CODA FILE SYSTEM
4679 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4680 M:      coda@cs.cmu.edu
4681 L:      codalist@coda.cs.cmu.edu
4682 S:      Maintained
4683 W:      http://www.coda.cs.cmu.edu/
4684 F:      Documentation/filesystems/coda.rst
4685 F:      fs/coda/
4686 F:      include/linux/coda*.h
4687 F:      include/uapi/linux/coda*.h
4688
4689 CODA V4L2 MEM2MEM DRIVER
4690 M:      Philipp Zabel <p.zabel@pengutronix.de>
4691 L:      linux-media@vger.kernel.org
4692 S:      Maintained
4693 F:      Documentation/devicetree/bindings/media/coda.yaml
4694 F:      drivers/media/platform/coda/
4695
4696 CODE OF CONDUCT
4697 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4698 S:      Supported
4699 F:      Documentation/process/code-of-conduct-interpretation.rst
4700 F:      Documentation/process/code-of-conduct.rst
4701
4702 COMEDI DRIVERS
4703 M:      Ian Abbott <abbotti@mev.co.uk>
4704 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4705 S:      Odd Fixes
4706 F:      drivers/comedi/
4707
4708 COMMON CLK FRAMEWORK
4709 M:      Michael Turquette <mturquette@baylibre.com>
4710 M:      Stephen Boyd <sboyd@kernel.org>
4711 L:      linux-clk@vger.kernel.org
4712 S:      Maintained
4713 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4715 F:      Documentation/devicetree/bindings/clock/
4716 F:      drivers/clk/
4717 F:      include/linux/clk-pr*
4718 F:      include/linux/clk/
4719 F:      include/linux/of_clk.h
4720 X:      drivers/clk/clkdev.c
4721
4722 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4723 M:      Steve French <sfrench@samba.org>
4724 L:      linux-cifs@vger.kernel.org
4725 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4726 S:      Supported
4727 W:      http://linux-cifs.samba.org/
4728 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4729 F:      Documentation/admin-guide/cifs/
4730 F:      fs/cifs/
4731 F:      fs/smbfs_common/
4732
4733 COMPACTPCI HOTPLUG CORE
4734 M:      Scott Murray <scott@spiteful.org>
4735 L:      linux-pci@vger.kernel.org
4736 S:      Maintained
4737 F:      drivers/pci/hotplug/cpci_hotplug*
4738
4739 COMPACTPCI HOTPLUG GENERIC DRIVER
4740 M:      Scott Murray <scott@spiteful.org>
4741 L:      linux-pci@vger.kernel.org
4742 S:      Maintained
4743 F:      drivers/pci/hotplug/cpcihp_generic.c
4744
4745 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4746 M:      Scott Murray <scott@spiteful.org>
4747 L:      linux-pci@vger.kernel.org
4748 S:      Maintained
4749 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4750
4751 COMPAL LAPTOP SUPPORT
4752 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4753 L:      platform-driver-x86@vger.kernel.org
4754 S:      Maintained
4755 F:      drivers/platform/x86/compal-laptop.c
4756
4757 COMPILER ATTRIBUTES
4758 M:      Miguel Ojeda <ojeda@kernel.org>
4759 R:      Nick Desaulniers <ndesaulniers@google.com>
4760 S:      Maintained
4761 F:      include/linux/compiler_attributes.h
4762
4763 COMPUTE EXPRESS LINK (CXL)
4764 M:      Alison Schofield <alison.schofield@intel.com>
4765 M:      Vishal Verma <vishal.l.verma@intel.com>
4766 M:      Ira Weiny <ira.weiny@intel.com>
4767 M:      Ben Widawsky <ben.widawsky@intel.com>
4768 M:      Dan Williams <dan.j.williams@intel.com>
4769 L:      linux-cxl@vger.kernel.org
4770 S:      Maintained
4771 F:      drivers/cxl/
4772 F:      include/uapi/linux/cxl_mem.h
4773
4774 CONEXANT ACCESSRUNNER USB DRIVER
4775 L:      accessrunner-general@lists.sourceforge.net
4776 S:      Orphan
4777 W:      http://accessrunner.sourceforge.net/
4778 F:      drivers/usb/atm/cxacru.c
4779
4780 CONFIGFS
4781 M:      Joel Becker <jlbec@evilplan.org>
4782 M:      Christoph Hellwig <hch@lst.de>
4783 S:      Supported
4784 T:      git git://git.infradead.org/users/hch/configfs.git
4785 F:      fs/configfs/
4786 F:      include/linux/configfs.h
4787 F:      samples/configfs/
4788
4789 CONSOLE SUBSYSTEM
4790 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4791 S:      Supported
4792 F:      drivers/video/console/
4793 F:      include/linux/console*
4794
4795 CONTEXT TRACKING
4796 M:      Frederic Weisbecker <frederic@kernel.org>
4797 S:      Maintained
4798 F:      kernel/context_tracking.c
4799 F:      include/linux/context_tracking*
4800
4801 CONTROL GROUP (CGROUP)
4802 M:      Tejun Heo <tj@kernel.org>
4803 M:      Zefan Li <lizefan.x@bytedance.com>
4804 M:      Johannes Weiner <hannes@cmpxchg.org>
4805 L:      cgroups@vger.kernel.org
4806 S:      Maintained
4807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4808 F:      Documentation/admin-guide/cgroup-v1/
4809 F:      Documentation/admin-guide/cgroup-v2.rst
4810 F:      include/linux/cgroup*
4811 F:      kernel/cgroup/
4812
4813 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4814 M:      Tejun Heo <tj@kernel.org>
4815 M:      Jens Axboe <axboe@kernel.dk>
4816 L:      cgroups@vger.kernel.org
4817 L:      linux-block@vger.kernel.org
4818 T:      git git://git.kernel.dk/linux-block
4819 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4820 F:      block/bfq-cgroup.c
4821 F:      block/blk-cgroup.c
4822 F:      block/blk-iolatency.c
4823 F:      block/blk-throttle.c
4824 F:      include/linux/blk-cgroup.h
4825
4826 CONTROL GROUP - CPUSET
4827 M:      Zefan Li <lizefan.x@bytedance.com>
4828 L:      cgroups@vger.kernel.org
4829 S:      Maintained
4830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4831 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4832 F:      include/linux/cpuset.h
4833 F:      kernel/cgroup/cpuset.c
4834
4835 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4836 M:      Johannes Weiner <hannes@cmpxchg.org>
4837 M:      Michal Hocko <mhocko@kernel.org>
4838 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4839 L:      cgroups@vger.kernel.org
4840 L:      linux-mm@kvack.org
4841 S:      Maintained
4842 F:      mm/memcontrol.c
4843 F:      mm/swap_cgroup.c
4844
4845 CORETEMP HARDWARE MONITORING DRIVER
4846 M:      Fenghua Yu <fenghua.yu@intel.com>
4847 L:      linux-hwmon@vger.kernel.org
4848 S:      Maintained
4849 F:      Documentation/hwmon/coretemp.rst
4850 F:      drivers/hwmon/coretemp.c
4851
4852 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4853 M:      Marius Zachmann <mail@mariuszachmann.de>
4854 L:      linux-hwmon@vger.kernel.org
4855 S:      Maintained
4856 F:      drivers/hwmon/corsair-cpro.c
4857
4858 CORSAIR-PSU HARDWARE MONITOR DRIVER
4859 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4860 L:      linux-hwmon@vger.kernel.org
4861 S:      Maintained
4862 F:      Documentation/hwmon/corsair-psu.rst
4863 F:      drivers/hwmon/corsair-psu.c
4864
4865 COSA/SRP SYNC SERIAL DRIVER
4866 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4867 S:      Maintained
4868 W:      http://www.fi.muni.cz/~kas/cosa/
4869 F:      drivers/net/wan/cosa*
4870
4871 COUNTER SUBSYSTEM
4872 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4873 L:      linux-iio@vger.kernel.org
4874 S:      Maintained
4875 F:      Documentation/ABI/testing/sysfs-bus-counter
4876 F:      Documentation/driver-api/generic-counter.rst
4877 F:      drivers/counter/
4878 F:      include/linux/counter.h
4879 F:      include/uapi/linux/counter.h
4880 F:      tools/counter/
4881
4882 CP2615 I2C DRIVER
4883 M:      Bence Csókás <bence98@sch.bme.hu>
4884 S:      Maintained
4885 F:      drivers/i2c/busses/i2c-cp2615.c
4886
4887 CPMAC ETHERNET DRIVER
4888 M:      Florian Fainelli <f.fainelli@gmail.com>
4889 L:      netdev@vger.kernel.org
4890 S:      Maintained
4891 F:      drivers/net/ethernet/ti/cpmac.c
4892
4893 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4894 M:      Viresh Kumar <viresh.kumar@linaro.org>
4895 M:      Sudeep Holla <sudeep.holla@arm.com>
4896 L:      linux-pm@vger.kernel.org
4897 S:      Maintained
4898 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4899 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4900
4901 CPU FREQUENCY SCALING FRAMEWORK
4902 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4903 M:      Viresh Kumar <viresh.kumar@linaro.org>
4904 L:      linux-pm@vger.kernel.org
4905 S:      Maintained
4906 B:      https://bugzilla.kernel.org
4907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4909 F:      Documentation/admin-guide/pm/cpufreq.rst
4910 F:      Documentation/admin-guide/pm/intel_pstate.rst
4911 F:      Documentation/cpu-freq/
4912 F:      Documentation/devicetree/bindings/cpufreq/
4913 F:      drivers/cpufreq/
4914 F:      include/linux/cpufreq.h
4915 F:      include/linux/sched/cpufreq.h
4916 F:      kernel/sched/cpufreq*.c
4917 F:      tools/testing/selftests/cpufreq/
4918
4919 CPU IDLE TIME MANAGEMENT FRAMEWORK
4920 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4921 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4922 L:      linux-pm@vger.kernel.org
4923 S:      Maintained
4924 B:      https://bugzilla.kernel.org
4925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4926 F:      Documentation/admin-guide/pm/cpuidle.rst
4927 F:      Documentation/driver-api/pm/cpuidle.rst
4928 F:      drivers/cpuidle/
4929 F:      include/linux/cpuidle.h
4930
4931 CPU POWER MONITORING SUBSYSTEM
4932 M:      Thomas Renninger <trenn@suse.com>
4933 M:      Shuah Khan <shuah@kernel.org>
4934 M:      Shuah Khan <skhan@linuxfoundation.org>
4935 L:      linux-pm@vger.kernel.org
4936 S:      Maintained
4937 F:      tools/power/cpupower/
4938
4939 CPUID/MSR DRIVER
4940 M:      "H. Peter Anvin" <hpa@zytor.com>
4941 S:      Maintained
4942 F:      arch/x86/kernel/cpuid.c
4943 F:      arch/x86/kernel/msr.c
4944
4945 CPUIDLE DRIVER - ARM BIG LITTLE
4946 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4947 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4948 L:      linux-pm@vger.kernel.org
4949 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4950 S:      Maintained
4951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4952 F:      drivers/cpuidle/cpuidle-big_little.c
4953
4954 CPUIDLE DRIVER - ARM EXYNOS
4955 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4956 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4957 M:      Kukjin Kim <kgene@kernel.org>
4958 L:      linux-pm@vger.kernel.org
4959 L:      linux-samsung-soc@vger.kernel.org
4960 S:      Supported
4961 F:      arch/arm/mach-exynos/pm.c
4962 F:      drivers/cpuidle/cpuidle-exynos.c
4963 F:      include/linux/platform_data/cpuidle-exynos.h
4964
4965 CPUIDLE DRIVER - ARM PSCI
4966 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4967 M:      Sudeep Holla <sudeep.holla@arm.com>
4968 L:      linux-pm@vger.kernel.org
4969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4970 S:      Supported
4971 F:      drivers/cpuidle/cpuidle-psci.c
4972
4973 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4974 M:      Ulf Hansson <ulf.hansson@linaro.org>
4975 L:      linux-pm@vger.kernel.org
4976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4977 S:      Supported
4978 F:      drivers/cpuidle/cpuidle-psci.h
4979 F:      drivers/cpuidle/cpuidle-psci-domain.c
4980
4981 CRAMFS FILESYSTEM
4982 M:      Nicolas Pitre <nico@fluxnic.net>
4983 S:      Maintained
4984 F:      Documentation/filesystems/cramfs.rst
4985 F:      fs/cramfs/
4986
4987 CREATIVE SB0540
4988 M:      Bastien Nocera <hadess@hadess.net>
4989 L:      linux-input@vger.kernel.org
4990 S:      Maintained
4991 F:      drivers/hid/hid-creative-sb0540.c
4992
4993 CRYPTO API
4994 M:      Herbert Xu <herbert@gondor.apana.org.au>
4995 M:      "David S. Miller" <davem@davemloft.net>
4996 L:      linux-crypto@vger.kernel.org
4997 S:      Maintained
4998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5000 F:      Documentation/crypto/
5001 F:      Documentation/devicetree/bindings/crypto/
5002 F:      arch/*/crypto/
5003 F:      crypto/
5004 F:      drivers/crypto/
5005 F:      include/crypto/
5006 F:      include/linux/crypto*
5007 F:      lib/crypto/
5008
5009 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5010 M:      Neil Horman <nhorman@tuxdriver.com>
5011 L:      linux-crypto@vger.kernel.org
5012 S:      Maintained
5013 F:      crypto/ansi_cprng.c
5014 F:      crypto/rng.c
5015
5016 CS3308 MEDIA DRIVER
5017 M:      Hans Verkuil <hverkuil@xs4all.nl>
5018 L:      linux-media@vger.kernel.org
5019 S:      Odd Fixes
5020 W:      http://linuxtv.org
5021 T:      git git://linuxtv.org/media_tree.git
5022 F:      drivers/media/i2c/cs3308.c
5023
5024 CS5535 Audio ALSA driver
5025 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5026 S:      Maintained
5027 F:      sound/pci/cs5535audio/
5028
5029 CSI DRIVERS FOR ALLWINNER V3s
5030 M:      Yong Deng <yong.deng@magewell.com>
5031 L:      linux-media@vger.kernel.org
5032 S:      Maintained
5033 T:      git git://linuxtv.org/media_tree.git
5034 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5035 F:      drivers/media/platform/sunxi/sun6i-csi/
5036
5037 CW1200 WLAN driver
5038 M:      Solomon Peachy <pizza@shaftnet.org>
5039 S:      Maintained
5040 F:      drivers/net/wireless/st/cw1200/
5041
5042 CX18 VIDEO4LINUX DRIVER
5043 M:      Andy Walls <awalls@md.metrocast.net>
5044 L:      linux-media@vger.kernel.org
5045 S:      Maintained
5046 W:      https://linuxtv.org
5047 T:      git git://linuxtv.org/media_tree.git
5048 F:      drivers/media/pci/cx18/
5049 F:      include/uapi/linux/ivtv*
5050
5051 CX2341X MPEG ENCODER HELPER MODULE
5052 M:      Hans Verkuil <hverkuil@xs4all.nl>
5053 L:      linux-media@vger.kernel.org
5054 S:      Maintained
5055 W:      https://linuxtv.org
5056 T:      git git://linuxtv.org/media_tree.git
5057 F:      drivers/media/common/cx2341x*
5058 F:      include/media/drv-intf/cx2341x.h
5059
5060 CX24120 MEDIA DRIVER
5061 M:      Jemma Denson <jdenson@gmail.com>
5062 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5063 L:      linux-media@vger.kernel.org
5064 S:      Maintained
5065 W:      https://linuxtv.org
5066 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5067 F:      drivers/media/dvb-frontends/cx24120*
5068
5069 CX88 VIDEO4LINUX DRIVER
5070 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5071 L:      linux-media@vger.kernel.org
5072 S:      Odd fixes
5073 W:      https://linuxtv.org
5074 T:      git git://linuxtv.org/media_tree.git
5075 F:      Documentation/driver-api/media/drivers/cx88*
5076 F:      drivers/media/pci/cx88/
5077
5078 CXD2820R MEDIA DRIVER
5079 M:      Antti Palosaari <crope@iki.fi>
5080 L:      linux-media@vger.kernel.org
5081 S:      Maintained
5082 W:      https://linuxtv.org
5083 W:      http://palosaari.fi/linux/
5084 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5085 T:      git git://linuxtv.org/anttip/media_tree.git
5086 F:      drivers/media/dvb-frontends/cxd2820r*
5087
5088 CXGB3 ETHERNET DRIVER (CXGB3)
5089 M:      Raju Rangoju <rajur@chelsio.com>
5090 L:      netdev@vger.kernel.org
5091 S:      Supported
5092 W:      http://www.chelsio.com
5093 F:      drivers/net/ethernet/chelsio/cxgb3/
5094
5095 CXGB3 ISCSI DRIVER (CXGB3I)
5096 M:      Karen Xie <kxie@chelsio.com>
5097 L:      linux-scsi@vger.kernel.org
5098 S:      Supported
5099 W:      http://www.chelsio.com
5100 F:      drivers/scsi/cxgbi/cxgb3i
5101
5102 CXGB4 CRYPTO DRIVER (chcr)
5103 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5104 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5105 M:      Rohit Maheshwari <rohitm@chelsio.com>
5106 L:      linux-crypto@vger.kernel.org
5107 S:      Supported
5108 W:      http://www.chelsio.com
5109 F:      drivers/crypto/chelsio
5110
5111 CXGB4 INLINE CRYPTO DRIVER
5112 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5113 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5114 M:      Rohit Maheshwari <rohitm@chelsio.com>
5115 L:      netdev@vger.kernel.org
5116 S:      Supported
5117 W:      http://www.chelsio.com
5118 F:      drivers/net/ethernet/chelsio/inline_crypto/
5119
5120 CXGB4 ETHERNET DRIVER (CXGB4)
5121 M:      Raju Rangoju <rajur@chelsio.com>
5122 L:      netdev@vger.kernel.org
5123 S:      Supported
5124 W:      http://www.chelsio.com
5125 F:      drivers/net/ethernet/chelsio/cxgb4/
5126
5127 CXGB4 ISCSI DRIVER (CXGB4I)
5128 M:      Karen Xie <kxie@chelsio.com>
5129 L:      linux-scsi@vger.kernel.org
5130 S:      Supported
5131 W:      http://www.chelsio.com
5132 F:      drivers/scsi/cxgbi/cxgb4i
5133
5134 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5135 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5136 L:      linux-rdma@vger.kernel.org
5137 S:      Supported
5138 W:      http://www.openfabrics.org
5139 F:      drivers/infiniband/hw/cxgb4/
5140 F:      include/uapi/rdma/cxgb4-abi.h
5141
5142 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5143 M:      Raju Rangoju <rajur@chelsio.com>
5144 L:      netdev@vger.kernel.org
5145 S:      Supported
5146 W:      http://www.chelsio.com
5147 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5148
5149 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5150 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5151 M:      Andrew Donnellan <ajd@linux.ibm.com>
5152 L:      linuxppc-dev@lists.ozlabs.org
5153 S:      Supported
5154 F:      Documentation/ABI/testing/sysfs-class-cxl
5155 F:      Documentation/powerpc/cxl.rst
5156 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5157 F:      drivers/misc/cxl/
5158 F:      include/misc/cxl*
5159 F:      include/uapi/misc/cxl.h
5160
5161 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5162 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5163 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5164 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5165 L:      linux-scsi@vger.kernel.org
5166 S:      Supported
5167 F:      Documentation/powerpc/cxlflash.rst
5168 F:      drivers/scsi/cxlflash/
5169 F:      include/uapi/scsi/cxlflash_ioctl.h
5170
5171 CYBERPRO FB DRIVER
5172 M:      Russell King <linux@armlinux.org.uk>
5173 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5174 S:      Maintained
5175 W:      http://www.armlinux.org.uk/
5176 F:      drivers/video/fbdev/cyber2000fb.*
5177
5178 CYCLADES PC300 DRIVER
5179 S:      Orphan
5180 F:      drivers/net/wan/pc300*
5181
5182 CYPRESS_FIRMWARE MEDIA DRIVER
5183 M:      Antti Palosaari <crope@iki.fi>
5184 L:      linux-media@vger.kernel.org
5185 S:      Maintained
5186 W:      https://linuxtv.org
5187 W:      http://palosaari.fi/linux/
5188 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5189 T:      git git://linuxtv.org/anttip/media_tree.git
5190 F:      drivers/media/common/cypress_firmware*
5191
5192 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5193 M:      Linus Walleij <linus.walleij@linaro.org>
5194 L:      linux-input@vger.kernel.org
5195 S:      Maintained
5196 F:      drivers/input/touchscreen/cy8ctma140.c
5197
5198 CYTTSP TOUCHSCREEN DRIVER
5199 M:      Linus Walleij <linus.walleij@linaro.org>
5200 L:      linux-input@vger.kernel.org
5201 S:      Maintained
5202 F:      drivers/input/touchscreen/cyttsp*
5203
5204 D-LINK DIR-685 TOUCHKEYS DRIVER
5205 M:      Linus Walleij <linus.walleij@linaro.org>
5206 L:      linux-input@vger.kernel.org
5207 S:      Supported
5208 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5209
5210 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5211 M:      Joshua Kinard <kumba@gentoo.org>
5212 S:      Maintained
5213 F:      drivers/rtc/rtc-ds1685.c
5214 F:      include/linux/rtc/ds1685.h
5215
5216 DAMA SLAVE for AX.25
5217 M:      Joerg Reuter <jreuter@yaina.de>
5218 L:      linux-hams@vger.kernel.org
5219 S:      Maintained
5220 W:      http://yaina.de/jreuter/
5221 W:      http://www.qsl.net/dl1bke/
5222 F:      net/ax25/af_ax25.c
5223 F:      net/ax25/ax25_dev.c
5224 F:      net/ax25/ax25_ds_*
5225 F:      net/ax25/ax25_in.c
5226 F:      net/ax25/ax25_out.c
5227 F:      net/ax25/ax25_timer.c
5228 F:      net/ax25/sysctl_net_ax25.c
5229
5230 DATA ACCESS MONITOR
5231 M:      SeongJae Park <sj@kernel.org>
5232 L:      linux-mm@kvack.org
5233 S:      Maintained
5234 F:      Documentation/admin-guide/mm/damon/
5235 F:      Documentation/vm/damon/
5236 F:      include/linux/damon.h
5237 F:      include/trace/events/damon.h
5238 F:      mm/damon/
5239 F:      tools/testing/selftests/damon/
5240
5241 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5242 L:      netdev@vger.kernel.org
5243 S:      Orphan
5244 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5245 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5246
5247 DC390/AM53C974 SCSI driver
5248 M:      Hannes Reinecke <hare@suse.com>
5249 L:      linux-scsi@vger.kernel.org
5250 S:      Maintained
5251 F:      drivers/scsi/am53c974.c
5252
5253 DC395x SCSI driver
5254 M:      Oliver Neukum <oliver@neukum.org>
5255 M:      Ali Akcaagac <aliakc@web.de>
5256 M:      Jamie Lenehan <lenehan@twibble.org>
5257 L:      dc395x@twibble.org
5258 S:      Maintained
5259 W:      http://twibble.org/dist/dc395x/
5260 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5261 F:      Documentation/scsi/dc395x.rst
5262 F:      drivers/scsi/dc395x.*
5263
5264 DCCP PROTOCOL
5265 L:      dccp@vger.kernel.org
5266 S:      Orphan
5267 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5268 F:      include/linux/dccp.h
5269 F:      include/linux/tfrc.h
5270 F:      include/uapi/linux/dccp.h
5271 F:      net/dccp/
5272
5273 DECnet NETWORK LAYER
5274 L:      linux-decnet-user@lists.sourceforge.net
5275 S:      Orphan
5276 W:      http://linux-decnet.sourceforge.net
5277 F:      Documentation/networking/decnet.rst
5278 F:      net/decnet/
5279
5280 DECSTATION PLATFORM SUPPORT
5281 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5282 L:      linux-mips@vger.kernel.org
5283 S:      Maintained
5284 W:      http://www.linux-mips.org/wiki/DECstation
5285 F:      arch/mips/dec/
5286 F:      arch/mips/include/asm/dec/
5287 F:      arch/mips/include/asm/mach-dec/
5288
5289 DEFXX FDDI NETWORK DRIVER
5290 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5291 S:      Maintained
5292 F:      drivers/net/fddi/defxx.*
5293
5294 DEFZA FDDI NETWORK DRIVER
5295 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5296 S:      Maintained
5297 F:      drivers/net/fddi/defza.*
5298
5299 DEINTERLACE DRIVERS FOR ALLWINNER H3
5300 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5301 L:      linux-media@vger.kernel.org
5302 S:      Maintained
5303 T:      git git://linuxtv.org/media_tree.git
5304 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5305 F:      drivers/media/platform/sunxi/sun8i-di/
5306
5307 DELL LAPTOP DRIVER
5308 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5309 M:      Pali Rohár <pali@kernel.org>
5310 L:      platform-driver-x86@vger.kernel.org
5311 S:      Maintained
5312 F:      drivers/platform/x86/dell/dell-laptop.c
5313
5314 DELL LAPTOP FREEFALL DRIVER
5315 M:      Pali Rohár <pali@kernel.org>
5316 S:      Maintained
5317 F:      drivers/platform/x86/dell/dell-smo8800.c
5318
5319 DELL LAPTOP RBTN DRIVER
5320 M:      Pali Rohár <pali@kernel.org>
5321 S:      Maintained
5322 F:      drivers/platform/x86/dell/dell-rbtn.*
5323
5324 DELL LAPTOP SMM DRIVER
5325 M:      Pali Rohár <pali@kernel.org>
5326 S:      Maintained
5327 F:      drivers/hwmon/dell-smm-hwmon.c
5328 F:      include/uapi/linux/i8k.h
5329
5330 DELL REMOTE BIOS UPDATE DRIVER
5331 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5332 L:      platform-driver-x86@vger.kernel.org
5333 S:      Maintained
5334 F:      drivers/platform/x86/dell/dell_rbu.c
5335
5336 DELL SMBIOS DRIVER
5337 M:      Pali Rohár <pali@kernel.org>
5338 L:      Dell.Client.Kernel@dell.com
5339 L:      platform-driver-x86@vger.kernel.org
5340 S:      Maintained
5341 F:      drivers/platform/x86/dell/dell-smbios.*
5342
5343 DELL SMBIOS SMM DRIVER
5344 L:      Dell.Client.Kernel@dell.com
5345 L:      platform-driver-x86@vger.kernel.org
5346 S:      Maintained
5347 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5348
5349 DELL SMBIOS WMI DRIVER
5350 L:      Dell.Client.Kernel@dell.com
5351 L:      platform-driver-x86@vger.kernel.org
5352 S:      Maintained
5353 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5354 F:      tools/wmi/dell-smbios-example.c
5355
5356 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5357 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5358 L:      platform-driver-x86@vger.kernel.org
5359 S:      Maintained
5360 F:      Documentation/driver-api/dcdbas.rst
5361 F:      drivers/platform/x86/dell/dcdbas.*
5362
5363 DELL WMI DESCRIPTOR DRIVER
5364 L:      Dell.Client.Kernel@dell.com
5365 S:      Maintained
5366 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5367
5368 DELL WMI SYSMAN DRIVER
5369 M:      Divya Bharathi <divya.bharathi@dell.com>
5370 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5371 L:      Dell.Client.Kernel@dell.com
5372 L:      platform-driver-x86@vger.kernel.org
5373 S:      Maintained
5374 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5375 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5376
5377 DELL WMI NOTIFICATIONS DRIVER
5378 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5379 M:      Pali Rohár <pali@kernel.org>
5380 S:      Maintained
5381 F:      drivers/platform/x86/dell/dell-wmi-base.c
5382
5383 DELL WMI HARDWARE PRIVACY SUPPORT
5384 M:      Perry Yuan <Perry.Yuan@dell.com>
5385 L:      Dell.Client.Kernel@dell.com
5386 L:      platform-driver-x86@vger.kernel.org
5387 S:      Maintained
5388 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5389
5390 DELTA ST MEDIA DRIVER
5391 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5392 L:      linux-media@vger.kernel.org
5393 S:      Supported
5394 W:      https://linuxtv.org
5395 T:      git git://linuxtv.org/media_tree.git
5396 F:      drivers/media/platform/sti/delta
5397
5398 DELTA DPS920AB PSU DRIVER
5399 M:      Robert Marko <robert.marko@sartura.hr>
5400 L:      linux-hwmon@vger.kernel.org
5401 S:      Maintained
5402 F:      Documentation/hwmon/dps920ab.rst
5403 F:      drivers/hwmon/pmbus/dps920ab.c
5404
5405 DENALI NAND DRIVER
5406 L:      linux-mtd@lists.infradead.org
5407 S:      Orphan
5408 F:      drivers/mtd/nand/raw/denali*
5409
5410 DESIGNWARE EDMA CORE IP DRIVER
5411 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5412 L:      dmaengine@vger.kernel.org
5413 S:      Maintained
5414 F:      drivers/dma/dw-edma/
5415 F:      include/linux/dma/edma.h
5416
5417 DESIGNWARE XDATA IP DRIVER
5418 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5419 L:      linux-pci@vger.kernel.org
5420 S:      Maintained
5421 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5422 F:      drivers/misc/dw-xdata-pcie.c
5423
5424 DESIGNWARE USB2 DRD IP DRIVER
5425 M:      Minas Harutyunyan <hminas@synopsys.com>
5426 L:      linux-usb@vger.kernel.org
5427 S:      Maintained
5428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5429 F:      drivers/usb/dwc2/
5430
5431 DESIGNWARE USB3 DRD IP DRIVER
5432 M:      Felipe Balbi <balbi@kernel.org>
5433 L:      linux-usb@vger.kernel.org
5434 S:      Maintained
5435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5436 F:      drivers/usb/dwc3/
5437
5438 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5439 M:      Andreas Klinger <ak@it-klinger.de>
5440 L:      linux-iio@vger.kernel.org
5441 S:      Maintained
5442 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5443 F:      drivers/iio/proximity/srf*.c
5444
5445 DEVICE COREDUMP (DEV_COREDUMP)
5446 M:      Johannes Berg <johannes@sipsolutions.net>
5447 L:      linux-kernel@vger.kernel.org
5448 S:      Maintained
5449 F:      drivers/base/devcoredump.c
5450 F:      include/linux/devcoredump.h
5451
5452 DEVICE DEPENDENCY HELPER SCRIPT
5453 M:      Saravana Kannan <saravanak@google.com>
5454 L:      linux-kernel@vger.kernel.org
5455 S:      Maintained
5456 F:      scripts/dev-needs.sh
5457
5458 DEVICE DIRECT ACCESS (DAX)
5459 M:      Dan Williams <dan.j.williams@intel.com>
5460 M:      Vishal Verma <vishal.l.verma@intel.com>
5461 M:      Dave Jiang <dave.jiang@intel.com>
5462 L:      nvdimm@lists.linux.dev
5463 S:      Supported
5464 F:      drivers/dax/
5465
5466 DEVICE FREQUENCY (DEVFREQ)
5467 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5468 M:      Kyungmin Park <kyungmin.park@samsung.com>
5469 M:      Chanwoo Choi <cw00.choi@samsung.com>
5470 L:      linux-pm@vger.kernel.org
5471 S:      Maintained
5472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5473 F:      Documentation/devicetree/bindings/devfreq/
5474 F:      drivers/devfreq/
5475 F:      include/linux/devfreq.h
5476 F:      include/trace/events/devfreq.h
5477
5478 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5479 M:      Chanwoo Choi <cw00.choi@samsung.com>
5480 L:      linux-pm@vger.kernel.org
5481 S:      Supported
5482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5483 F:      Documentation/devicetree/bindings/devfreq/event/
5484 F:      drivers/devfreq/devfreq-event.c
5485 F:      drivers/devfreq/event/
5486 F:      include/dt-bindings/pmu/exynos_ppmu.h
5487 F:      include/linux/devfreq-event.h
5488
5489 DEVICE NUMBER REGISTRY
5490 M:      Torben Mathiasen <device@lanana.org>
5491 S:      Maintained
5492 W:      http://lanana.org/docs/device-list/index.html
5493
5494 DEVICE RESOURCE MANAGEMENT HELPERS
5495 M:      Hans de Goede <hdegoede@redhat.com>
5496 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5497 S:      Maintained
5498 F:      include/linux/devm-helpers.h
5499
5500 DEVICE-MAPPER  (LVM)
5501 M:      Alasdair Kergon <agk@redhat.com>
5502 M:      Mike Snitzer <snitzer@redhat.com>
5503 M:      dm-devel@redhat.com
5504 L:      dm-devel@redhat.com
5505 S:      Maintained
5506 W:      http://sources.redhat.com/dm
5507 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5509 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5510 F:      Documentation/admin-guide/device-mapper/
5511 F:      drivers/md/Kconfig
5512 F:      drivers/md/Makefile
5513 F:      drivers/md/dm*
5514 F:      drivers/md/persistent-data/
5515 F:      include/linux/device-mapper.h
5516 F:      include/linux/dm-*.h
5517 F:      include/uapi/linux/dm-*.h
5518
5519 DEVLINK
5520 M:      Jiri Pirko <jiri@nvidia.com>
5521 L:      netdev@vger.kernel.org
5522 S:      Supported
5523 F:      Documentation/networking/devlink
5524 F:      include/net/devlink.h
5525 F:      include/uapi/linux/devlink.h
5526 F:      net/core/devlink.c
5527
5528 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5529 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5530 L:      kernel@dh-electronics.com
5531 S:      Maintained
5532 F:      arch/arm/boot/dts/imx6*-dhcom-*
5533
5534 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5535 M:      Marek Vasut <marex@denx.de>
5536 L:      kernel@dh-electronics.com
5537 S:      Maintained
5538 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5539 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5540
5541 DIALOG SEMICONDUCTOR DRIVERS
5542 M:      Support Opensource <support.opensource@diasemi.com>
5543 S:      Supported
5544 W:      http://www.dialog-semiconductor.com/products
5545 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5546 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5547 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5548 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5549 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5550 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5551 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5552 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5553 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5554 F:      Documentation/hwmon/da90??.rst
5555 F:      drivers/gpio/gpio-da90??.c
5556 F:      drivers/hwmon/da90??-hwmon.c
5557 F:      drivers/iio/adc/da91??-*.c
5558 F:      drivers/input/misc/da72??.[ch]
5559 F:      drivers/input/misc/da90??_onkey.c
5560 F:      drivers/input/touchscreen/da9052_tsi.c
5561 F:      drivers/leds/leds-da90??.c
5562 F:      drivers/mfd/da903x.c
5563 F:      drivers/mfd/da90??-*.c
5564 F:      drivers/mfd/da91??-*.c
5565 F:      drivers/pinctrl/pinctrl-da90??.c
5566 F:      drivers/power/supply/da9052-battery.c
5567 F:      drivers/power/supply/da91??-*.c
5568 F:      drivers/regulator/da9???-regulator.[ch]
5569 F:      drivers/regulator/slg51000-regulator.[ch]
5570 F:      drivers/rtc/rtc-da90??.c
5571 F:      drivers/thermal/da90??-thermal.c
5572 F:      drivers/video/backlight/da90??_bl.c
5573 F:      drivers/watchdog/da90??_wdt.c
5574 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5575 F:      include/linux/mfd/da903x.h
5576 F:      include/linux/mfd/da9052/
5577 F:      include/linux/mfd/da9055/
5578 F:      include/linux/mfd/da9062/
5579 F:      include/linux/mfd/da9063/
5580 F:      include/linux/mfd/da9150/
5581 F:      include/linux/regulator/da9211.h
5582 F:      include/sound/da[79]*.h
5583 F:      sound/soc/codecs/da[79]*.[ch]
5584
5585 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5586 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5587 L:      linux-gpio@vger.kernel.org
5588 S:      Maintained
5589 F:      drivers/gpio/gpio-gpio-mm.c
5590
5591 DIOLAN U2C-12 I2C DRIVER
5592 M:      Guenter Roeck <linux@roeck-us.net>
5593 L:      linux-i2c@vger.kernel.org
5594 S:      Maintained
5595 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5596
5597 DIRECTORY NOTIFICATION (DNOTIFY)
5598 M:      Jan Kara <jack@suse.cz>
5599 R:      Amir Goldstein <amir73il@gmail.com>
5600 L:      linux-fsdevel@vger.kernel.org
5601 S:      Maintained
5602 F:      Documentation/filesystems/dnotify.rst
5603 F:      fs/notify/dnotify/
5604 F:      include/linux/dnotify.h
5605
5606 DISK GEOMETRY AND PARTITION HANDLING
5607 M:      Andries Brouwer <aeb@cwi.nl>
5608 S:      Maintained
5609 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5610 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5611 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5612
5613 DISKQUOTA
5614 M:      Jan Kara <jack@suse.com>
5615 S:      Maintained
5616 F:      Documentation/filesystems/quota.rst
5617 F:      fs/quota/
5618 F:      include/linux/quota*.h
5619 F:      include/uapi/linux/quota*.h
5620
5621 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5622 M:      Bernie Thompson <bernie@plugable.com>
5623 L:      linux-fbdev@vger.kernel.org
5624 S:      Maintained
5625 W:      http://plugable.com/category/projects/udlfb/
5626 F:      Documentation/fb/udlfb.rst
5627 F:      drivers/video/fbdev/udlfb.c
5628 F:      include/video/udlfb.h
5629
5630 DISTRIBUTED LOCK MANAGER (DLM)
5631 M:      Christine Caulfield <ccaulfie@redhat.com>
5632 M:      David Teigland <teigland@redhat.com>
5633 L:      cluster-devel@redhat.com
5634 S:      Supported
5635 W:      http://sources.redhat.com/cluster/
5636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5637 F:      fs/dlm/
5638
5639 DMA BUFFER SHARING FRAMEWORK
5640 M:      Sumit Semwal <sumit.semwal@linaro.org>
5641 M:      Christian König <christian.koenig@amd.com>
5642 L:      linux-media@vger.kernel.org
5643 L:      dri-devel@lists.freedesktop.org
5644 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5645 S:      Maintained
5646 T:      git git://anongit.freedesktop.org/drm/drm-misc
5647 F:      Documentation/driver-api/dma-buf.rst
5648 F:      drivers/dma-buf/
5649 F:      include/linux/*fence.h
5650 F:      include/linux/dma-buf*
5651 F:      include/linux/dma-resv.h
5652 K:      \bdma_(?:buf|fence|resv)\b
5653
5654 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5655 M:      Vinod Koul <vkoul@kernel.org>
5656 L:      dmaengine@vger.kernel.org
5657 S:      Maintained
5658 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5660 F:      Documentation/devicetree/bindings/dma/
5661 F:      Documentation/driver-api/dmaengine/
5662 F:      drivers/dma/
5663 F:      include/linux/dma/
5664 F:      include/linux/dmaengine.h
5665 F:      include/linux/of_dma.h
5666
5667 DMA MAPPING HELPERS
5668 M:      Christoph Hellwig <hch@lst.de>
5669 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5670 R:      Robin Murphy <robin.murphy@arm.com>
5671 L:      iommu@lists.linux-foundation.org
5672 S:      Supported
5673 W:      http://git.infradead.org/users/hch/dma-mapping.git
5674 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5675 F:      include/asm-generic/dma-mapping.h
5676 F:      include/linux/dma-direct.h
5677 F:      include/linux/dma-mapping.h
5678 F:      include/linux/dma-map-ops.h
5679 F:      kernel/dma/
5680
5681 DMA MAPPING BENCHMARK
5682 M:      Barry Song <song.bao.hua@hisilicon.com>
5683 L:      iommu@lists.linux-foundation.org
5684 F:      kernel/dma/map_benchmark.c
5685 F:      tools/testing/selftests/dma/
5686
5687 DMA-BUF HEAPS FRAMEWORK
5688 M:      Sumit Semwal <sumit.semwal@linaro.org>
5689 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5690 R:      Liam Mark <lmark@codeaurora.org>
5691 R:      Laura Abbott <labbott@redhat.com>
5692 R:      Brian Starkey <Brian.Starkey@arm.com>
5693 R:      John Stultz <john.stultz@linaro.org>
5694 L:      linux-media@vger.kernel.org
5695 L:      dri-devel@lists.freedesktop.org
5696 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5697 S:      Maintained
5698 T:      git git://anongit.freedesktop.org/drm/drm-misc
5699 F:      drivers/dma-buf/dma-heap.c
5700 F:      drivers/dma-buf/heaps/*
5701 F:      include/linux/dma-heap.h
5702 F:      include/uapi/linux/dma-heap.h
5703
5704 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5705 M:      Lukasz Luba <lukasz.luba@arm.com>
5706 L:      linux-pm@vger.kernel.org
5707 L:      linux-samsung-soc@vger.kernel.org
5708 S:      Maintained
5709 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5710 F:      drivers/memory/samsung/exynos5422-dmc.c
5711
5712 DME1737 HARDWARE MONITOR DRIVER
5713 M:      Juerg Haefliger <juergh@gmail.com>
5714 L:      linux-hwmon@vger.kernel.org
5715 S:      Maintained
5716 F:      Documentation/hwmon/dme1737.rst
5717 F:      drivers/hwmon/dme1737.c
5718
5719 DMI/SMBIOS SUPPORT
5720 M:      Jean Delvare <jdelvare@suse.com>
5721 S:      Maintained
5722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5723 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5724 F:      drivers/firmware/dmi-id.c
5725 F:      drivers/firmware/dmi_scan.c
5726 F:      include/linux/dmi.h
5727
5728 DOCUMENTATION
5729 M:      Jonathan Corbet <corbet@lwn.net>
5730 L:      linux-doc@vger.kernel.org
5731 S:      Maintained
5732 P:      Documentation/doc-guide/maintainer-profile.rst
5733 T:      git git://git.lwn.net/linux.git docs-next
5734 F:      Documentation/
5735 F:      scripts/documentation-file-ref-check
5736 F:      scripts/kernel-doc
5737 F:      scripts/sphinx-pre-install
5738 X:      Documentation/ABI/
5739 X:      Documentation/admin-guide/media/
5740 X:      Documentation/devicetree/
5741 X:      Documentation/driver-api/media/
5742 X:      Documentation/firmware-guide/acpi/
5743 X:      Documentation/i2c/
5744 X:      Documentation/power/
5745 X:      Documentation/spi/
5746 X:      Documentation/userspace-api/media/
5747
5748 DOCUMENTATION REPORTING ISSUES
5749 M:      Thorsten Leemhuis <linux@leemhuis.info>
5750 L:      linux-doc@vger.kernel.org
5751 S:      Maintained
5752 F:      Documentation/admin-guide/reporting-issues.rst
5753
5754 DOCUMENTATION SCRIPTS
5755 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5756 L:      linux-doc@vger.kernel.org
5757 S:      Maintained
5758 F:      Documentation/sphinx/parse-headers.pl
5759 F:      scripts/documentation-file-ref-check
5760 F:      scripts/sphinx-pre-install
5761
5762 DOCUMENTATION/ITALIAN
5763 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5764 L:      linux-doc@vger.kernel.org
5765 S:      Maintained
5766 F:      Documentation/translations/it_IT
5767
5768 DONGWOON DW9714 LENS VOICE COIL DRIVER
5769 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5770 L:      linux-media@vger.kernel.org
5771 S:      Maintained
5772 T:      git git://linuxtv.org/media_tree.git
5773 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5774 F:      drivers/media/i2c/dw9714.c
5775
5776 DONGWOON DW9768 LENS VOICE COIL DRIVER
5777 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5778 L:      linux-media@vger.kernel.org
5779 S:      Maintained
5780 T:      git git://linuxtv.org/media_tree.git
5781 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5782 F:      drivers/media/i2c/dw9768.c
5783
5784 DONGWOON DW9807 LENS VOICE COIL DRIVER
5785 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5786 L:      linux-media@vger.kernel.org
5787 S:      Maintained
5788 T:      git git://linuxtv.org/media_tree.git
5789 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5790 F:      drivers/media/i2c/dw9807-vcm.c
5791
5792 DOUBLETALK DRIVER
5793 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5794 L:      blinux-list@redhat.com
5795 S:      Maintained
5796 F:      drivers/char/dtlk.c
5797 F:      include/linux/dtlk.h
5798
5799 DPAA2 DATAPATH I/O (DPIO) DRIVER
5800 M:      Roy Pledge <Roy.Pledge@nxp.com>
5801 L:      linux-kernel@vger.kernel.org
5802 S:      Maintained
5803 F:      drivers/soc/fsl/dpio
5804
5805 DPAA2 ETHERNET DRIVER
5806 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5807 L:      netdev@vger.kernel.org
5808 S:      Maintained
5809 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5810 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5811 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5812 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5813 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5814 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5815 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5816 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5817 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5818
5819 DPAA2 ETHERNET SWITCH DRIVER
5820 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5821 L:      netdev@vger.kernel.org
5822 S:      Maintained
5823 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
5824 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5825 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
5826
5827 DPT_I2O SCSI RAID DRIVER
5828 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5829 L:      linux-scsi@vger.kernel.org
5830 S:      Maintained
5831 W:      http://www.adaptec.com/
5832 F:      drivers/scsi/dpt*
5833 F:      drivers/scsi/dpt/
5834
5835 DRBD DRIVER
5836 M:      Philipp Reisner <philipp.reisner@linbit.com>
5837 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5838 L:      drbd-dev@lists.linbit.com
5839 S:      Supported
5840 W:      http://www.drbd.org
5841 T:      git git://git.linbit.com/linux-drbd.git
5842 T:      git git://git.linbit.com/drbd-8.4.git
5843 F:      Documentation/admin-guide/blockdev/
5844 F:      drivers/block/drbd/
5845 F:      lib/lru_cache.c
5846
5847 DRIVER COMPONENT FRAMEWORK
5848 L:      dri-devel@lists.freedesktop.org
5849 F:      drivers/base/component.c
5850 F:      include/linux/component.h
5851
5852 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5853 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5854 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5855 S:      Supported
5856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5857 F:      Documentation/core-api/kobject.rst
5858 F:      drivers/base/
5859 F:      fs/debugfs/
5860 F:      fs/sysfs/
5861 F:      include/linux/debugfs.h
5862 F:      include/linux/kobj*
5863 F:      lib/kobj*
5864
5865 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5866 M:      Nishanth Menon <nm@ti.com>
5867 L:      linux-pm@vger.kernel.org
5868 S:      Maintained
5869 F:      drivers/soc/ti/smartreflex.c
5870 F:      include/linux/power/smartreflex.h
5871
5872 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5873 M:      Maxime Ripard <mripard@kernel.org>
5874 M:      Chen-Yu Tsai <wens@csie.org>
5875 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
5876 L:      dri-devel@lists.freedesktop.org
5877 S:      Supported
5878 T:      git git://anongit.freedesktop.org/drm/drm-misc
5879 F:      drivers/gpu/drm/sun4i/sun8i*
5880
5881 DRM DRIVER FOR ARM PL111 CLCD
5882 M:      Emma Anholt <emma@anholt.net>
5883 S:      Supported
5884 T:      git git://anongit.freedesktop.org/drm/drm-misc
5885 F:      drivers/gpu/drm/pl111/
5886
5887 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5888 M:      Linus Walleij <linus.walleij@linaro.org>
5889 S:      Maintained
5890 T:      git git://anongit.freedesktop.org/drm/drm-misc
5891 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5892 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5893
5894 DRM DRIVER FOR ASPEED BMC GFX
5895 M:      Joel Stanley <joel@jms.id.au>
5896 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5897 S:      Supported
5898 T:      git git://anongit.freedesktop.org/drm/drm-misc
5899 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5900 F:      drivers/gpu/drm/aspeed/
5901
5902 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5903 M:      Dave Airlie <airlied@redhat.com>
5904 R:      Thomas Zimmermann <tzimmermann@suse.de>
5905 L:      dri-devel@lists.freedesktop.org
5906 S:      Supported
5907 T:      git git://anongit.freedesktop.org/drm/drm-misc
5908 F:      drivers/gpu/drm/ast/
5909
5910 DRM DRIVER FOR BOCHS VIRTUAL GPU
5911 M:      Gerd Hoffmann <kraxel@redhat.com>
5912 L:      virtualization@lists.linux-foundation.org
5913 S:      Maintained
5914 T:      git git://anongit.freedesktop.org/drm/drm-misc
5915 F:      drivers/gpu/drm/tiny/bochs.c
5916
5917 DRM DRIVER FOR BOE HIMAX8279D PANELS
5918 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5919 S:      Maintained
5920 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5921 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5922
5923 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5924 M:      Jagan Teki <jagan@amarulasolutions.com>
5925 S:      Maintained
5926 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5927 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
5928
5929 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5930 M:      Linus Walleij <linus.walleij@linaro.org>
5931 S:      Maintained
5932 T:      git git://anongit.freedesktop.org/drm/drm-misc
5933 F:      drivers/gpu/drm/tve200/
5934
5935 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5936 M:      Icenowy Zheng <icenowy@aosc.io>
5937 S:      Maintained
5938 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5939 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5940
5941 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5942 M:      Jagan Teki <jagan@amarulasolutions.com>
5943 S:      Maintained
5944 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5945 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5946
5947 DRM DRIVER FOR GENERIC USB DISPLAY
5948 M:      Noralf Trønnes <noralf@tronnes.org>
5949 S:      Maintained
5950 W:      https://github.com/notro/gud/wiki
5951 T:      git git://anongit.freedesktop.org/drm/drm-misc
5952 F:      drivers/gpu/drm/gud/
5953 F:      include/drm/gud.h
5954
5955 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5956 M:      Hans de Goede <hdegoede@redhat.com>
5957 S:      Maintained
5958 T:      git git://anongit.freedesktop.org/drm/drm-misc
5959 F:      drivers/gpu/drm/tiny/gm12u320.c
5960
5961 DRM DRIVER FOR HX8357D PANELS
5962 M:      Emma Anholt <emma@anholt.net>
5963 S:      Maintained
5964 T:      git git://anongit.freedesktop.org/drm/drm-misc
5965 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5966 F:      drivers/gpu/drm/tiny/hx8357d.c
5967
5968 DRM DRIVER FOR ILITEK ILI9225 PANELS
5969 M:      David Lechner <david@lechnology.com>
5970 S:      Maintained
5971 T:      git git://anongit.freedesktop.org/drm/drm-misc
5972 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5973 F:      drivers/gpu/drm/tiny/ili9225.c
5974
5975 DRM DRIVER FOR ILITEK ILI9486 PANELS
5976 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5977 S:      Maintained
5978 T:      git git://anongit.freedesktop.org/drm/drm-misc
5979 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5980 F:      drivers/gpu/drm/tiny/ili9486.c
5981
5982 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5983 S:      Orphan / Obsolete
5984 F:      drivers/gpu/drm/i810/
5985 F:      include/uapi/drm/i810_drm.h
5986
5987 DRM DRIVER FOR LVDS PANELS
5988 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5989 L:      dri-devel@lists.freedesktop.org
5990 T:      git git://anongit.freedesktop.org/drm/drm-misc
5991 S:      Maintained
5992 F:      drivers/gpu/drm/panel/panel-lvds.c
5993 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5994
5995 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5996 M:      Guido Günther <agx@sigxcpu.org>
5997 R:      Purism Kernel Team <kernel@puri.sm>
5998 S:      Maintained
5999 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6000 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6001
6002 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6003 S:      Orphan / Obsolete
6004 F:      drivers/gpu/drm/mga/
6005 F:      include/uapi/drm/mga_drm.h
6006
6007 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6008 M:      Dave Airlie <airlied@redhat.com>
6009 R:      Thomas Zimmermann <tzimmermann@suse.de>
6010 L:      dri-devel@lists.freedesktop.org
6011 S:      Supported
6012 T:      git git://anongit.freedesktop.org/drm/drm-misc
6013 F:      drivers/gpu/drm/mgag200/
6014
6015 DRM DRIVER FOR MI0283QT
6016 M:      Noralf Trønnes <noralf@tronnes.org>
6017 S:      Maintained
6018 T:      git git://anongit.freedesktop.org/drm/drm-misc
6019 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6020 F:      drivers/gpu/drm/tiny/mi0283qt.c
6021
6022 DRM DRIVER FOR MSM ADRENO GPU
6023 M:      Rob Clark <robdclark@gmail.com>
6024 M:      Sean Paul <sean@poorly.run>
6025 L:      linux-arm-msm@vger.kernel.org
6026 L:      dri-devel@lists.freedesktop.org
6027 L:      freedreno@lists.freedesktop.org
6028 S:      Maintained
6029 T:      git https://gitlab.freedesktop.org/drm/msm.git
6030 F:      Documentation/devicetree/bindings/display/msm/
6031 F:      drivers/gpu/drm/msm/
6032 F:      include/uapi/drm/msm_drm.h
6033
6034 DRM DRIVER FOR NOVATEK NT35510 PANELS
6035 M:      Linus Walleij <linus.walleij@linaro.org>
6036 S:      Maintained
6037 T:      git git://anongit.freedesktop.org/drm/drm-misc
6038 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6039 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6040
6041 DRM DRIVER FOR NOVATEK NT36672A PANELS
6042 M:      Sumit Semwal <sumit.semwal@linaro.org>
6043 S:      Maintained
6044 T:      git git://anongit.freedesktop.org/drm/drm-misc
6045 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6046 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6047
6048 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6049 M:      Ben Skeggs <bskeggs@redhat.com>
6050 L:      dri-devel@lists.freedesktop.org
6051 L:      nouveau@lists.freedesktop.org
6052 S:      Supported
6053 T:      git git://github.com/skeggsb/linux
6054 F:      drivers/gpu/drm/nouveau/
6055 F:      include/uapi/drm/nouveau_drm.h
6056
6057 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6058 M:      Stefan Mavrodiev <stefan@olimex.com>
6059 S:      Maintained
6060 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6061 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6062
6063 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6064 M:      Noralf Trønnes <noralf@tronnes.org>
6065 S:      Maintained
6066 T:      git git://anongit.freedesktop.org/drm/drm-misc
6067 F:      Documentation/devicetree/bindings/display/repaper.txt
6068 F:      drivers/gpu/drm/tiny/repaper.c
6069
6070 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6071 M:      Dave Airlie <airlied@redhat.com>
6072 M:      Gerd Hoffmann <kraxel@redhat.com>
6073 L:      virtualization@lists.linux-foundation.org
6074 S:      Obsolete
6075 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6076 T:      git git://anongit.freedesktop.org/drm/drm-misc
6077 F:      drivers/gpu/drm/tiny/cirrus.c
6078
6079 DRM DRIVER FOR QXL VIRTUAL GPU
6080 M:      Dave Airlie <airlied@redhat.com>
6081 M:      Gerd Hoffmann <kraxel@redhat.com>
6082 L:      virtualization@lists.linux-foundation.org
6083 L:      spice-devel@lists.freedesktop.org
6084 S:      Maintained
6085 T:      git git://anongit.freedesktop.org/drm/drm-misc
6086 F:      drivers/gpu/drm/qxl/
6087 F:      include/uapi/drm/qxl_drm.h
6088
6089 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6090 S:      Orphan / Obsolete
6091 F:      drivers/gpu/drm/r128/
6092 F:      include/uapi/drm/r128_drm.h
6093
6094 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6095 M:      Robert Chiras <robert.chiras@nxp.com>
6096 S:      Maintained
6097 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6098 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6099
6100 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6101 M:      Linus Walleij <linus.walleij@linaro.org>
6102 S:      Maintained
6103 T:      git git://anongit.freedesktop.org/drm/drm-misc
6104 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6105 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6106
6107 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6108 M:      Markuss Broks <markuss.broks@gmail.com>
6109 S:      Maintained
6110 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6111 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6112
6113 DRM DRIVER FOR SITRONIX ST7703 PANELS
6114 M:      Guido Günther <agx@sigxcpu.org>
6115 R:      Purism Kernel Team <kernel@puri.sm>
6116 R:      Ondrej Jirman <megous@megous.com>
6117 S:      Maintained
6118 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6119 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6120
6121 DRM DRIVER FOR SAVAGE VIDEO CARDS
6122 S:      Orphan / Obsolete
6123 F:      drivers/gpu/drm/savage/
6124 F:      include/uapi/drm/savage_drm.h
6125
6126 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6127 M:      Thomas Zimmermann <tzimmermann@suse.de>
6128 L:      dri-devel@lists.freedesktop.org
6129 S:      Maintained
6130 T:      git git://anongit.freedesktop.org/drm/drm-misc
6131 F:      drivers/gpu/drm/tiny/simpledrm.c
6132
6133 DRM DRIVER FOR SIS VIDEO CARDS
6134 S:      Orphan / Obsolete
6135 F:      drivers/gpu/drm/sis/
6136 F:      include/uapi/drm/sis_drm.h
6137
6138 DRM DRIVER FOR SITRONIX ST7586 PANELS
6139 M:      David Lechner <david@lechnology.com>
6140 S:      Maintained
6141 T:      git git://anongit.freedesktop.org/drm/drm-misc
6142 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6143 F:      drivers/gpu/drm/tiny/st7586.c
6144
6145 DRM DRIVER FOR SITRONIX ST7701 PANELS
6146 M:      Jagan Teki <jagan@amarulasolutions.com>
6147 S:      Maintained
6148 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6149 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6150
6151 DRM DRIVER FOR SITRONIX ST7735R PANELS
6152 M:      David Lechner <david@lechnology.com>
6153 S:      Maintained
6154 T:      git git://anongit.freedesktop.org/drm/drm-misc
6155 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6156 F:      drivers/gpu/drm/tiny/st7735r.c
6157
6158 DRM DRIVER FOR SONY ACX424AKP PANELS
6159 M:      Linus Walleij <linus.walleij@linaro.org>
6160 S:      Maintained
6161 T:      git git://anongit.freedesktop.org/drm/drm-misc
6162 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
6163
6164 DRM DRIVER FOR ST-ERICSSON MCDE
6165 M:      Linus Walleij <linus.walleij@linaro.org>
6166 S:      Maintained
6167 T:      git git://anongit.freedesktop.org/drm/drm-misc
6168 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6169 F:      drivers/gpu/drm/mcde/
6170
6171 DRM DRIVER FOR TDFX VIDEO CARDS
6172 S:      Orphan / Obsolete
6173 F:      drivers/gpu/drm/tdfx/
6174
6175 DRM DRIVER FOR TPO TPG110 PANELS
6176 M:      Linus Walleij <linus.walleij@linaro.org>
6177 S:      Maintained
6178 T:      git git://anongit.freedesktop.org/drm/drm-misc
6179 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6180 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6181
6182 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6183 M:      Dave Airlie <airlied@redhat.com>
6184 R:      Sean Paul <sean@poorly.run>
6185 R:      Thomas Zimmermann <tzimmermann@suse.de>
6186 L:      dri-devel@lists.freedesktop.org
6187 S:      Supported
6188 T:      git git://anongit.freedesktop.org/drm/drm-misc
6189 F:      drivers/gpu/drm/udl/
6190
6191 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6192 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6193 M:      Melissa Wen <melissa.srw@gmail.com>
6194 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6195 R:      Daniel Vetter <daniel@ffwll.ch>
6196 L:      dri-devel@lists.freedesktop.org
6197 S:      Maintained
6198 T:      git git://anongit.freedesktop.org/drm/drm-misc
6199 F:      Documentation/gpu/vkms.rst
6200 F:      drivers/gpu/drm/vkms/
6201
6202 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6203 M:      Hans de Goede <hdegoede@redhat.com>
6204 L:      dri-devel@lists.freedesktop.org
6205 S:      Maintained
6206 T:      git git://anongit.freedesktop.org/drm/drm-misc
6207 F:      drivers/gpu/drm/vboxvideo/
6208
6209 DRM DRIVER FOR VMWARE VIRTUAL GPU
6210 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
6211 M:      Zack Rusin <zackr@vmware.com>
6212 L:      dri-devel@lists.freedesktop.org
6213 S:      Supported
6214 T:      git git://anongit.freedesktop.org/drm/drm-misc
6215 F:      drivers/gpu/drm/vmwgfx/
6216 F:      include/uapi/drm/vmwgfx_drm.h
6217
6218 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6219 M:      Linus Walleij <linus.walleij@linaro.org>
6220 S:      Maintained
6221 T:      git git://anongit.freedesktop.org/drm/drm-misc
6222 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6223 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6224
6225 DRM DRIVERS
6226 M:      David Airlie <airlied@linux.ie>
6227 M:      Daniel Vetter <daniel@ffwll.ch>
6228 L:      dri-devel@lists.freedesktop.org
6229 S:      Maintained
6230 B:      https://gitlab.freedesktop.org/drm
6231 C:      irc://irc.oftc.net/dri-devel
6232 T:      git git://anongit.freedesktop.org/drm/drm
6233 F:      Documentation/devicetree/bindings/display/
6234 F:      Documentation/devicetree/bindings/gpu/
6235 F:      Documentation/gpu/
6236 F:      drivers/gpu/
6237 F:      include/drm/
6238 F:      include/linux/vga*
6239 F:      include/uapi/drm/
6240
6241 DRM DRIVERS AND MISC GPU PATCHES
6242 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6243 M:      Maxime Ripard <mripard@kernel.org>
6244 M:      Thomas Zimmermann <tzimmermann@suse.de>
6245 S:      Maintained
6246 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6247 T:      git git://anongit.freedesktop.org/drm/drm-misc
6248 F:      Documentation/gpu/
6249 F:      drivers/gpu/drm/*
6250 F:      drivers/gpu/vga/
6251 F:      include/drm/drm*
6252 F:      include/linux/vga*
6253 F:      include/uapi/drm/drm*
6254
6255 DRM DRIVERS FOR ALLWINNER A10
6256 M:      Maxime Ripard <mripard@kernel.org>
6257 M:      Chen-Yu Tsai <wens@csie.org>
6258 L:      dri-devel@lists.freedesktop.org
6259 S:      Supported
6260 T:      git git://anongit.freedesktop.org/drm/drm-misc
6261 F:      Documentation/devicetree/bindings/display/allwinner*
6262 F:      drivers/gpu/drm/sun4i/
6263
6264 DRM DRIVERS FOR AMLOGIC SOCS
6265 M:      Neil Armstrong <narmstrong@baylibre.com>
6266 L:      dri-devel@lists.freedesktop.org
6267 L:      linux-amlogic@lists.infradead.org
6268 S:      Supported
6269 W:      http://linux-meson.com/
6270 T:      git git://anongit.freedesktop.org/drm/drm-misc
6271 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6272 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6273 F:      Documentation/gpu/meson.rst
6274 F:      drivers/gpu/drm/meson/
6275
6276 DRM DRIVERS FOR ATMEL HLCDC
6277 M:      Sam Ravnborg <sam@ravnborg.org>
6278 M:      Boris Brezillon <bbrezillon@kernel.org>
6279 L:      dri-devel@lists.freedesktop.org
6280 S:      Supported
6281 T:      git git://anongit.freedesktop.org/drm/drm-misc
6282 F:      Documentation/devicetree/bindings/display/atmel/
6283 F:      drivers/gpu/drm/atmel-hlcdc/
6284
6285 DRM DRIVERS FOR BRIDGE CHIPS
6286 M:      Andrzej Hajda <a.hajda@samsung.com>
6287 M:      Neil Armstrong <narmstrong@baylibre.com>
6288 M:      Robert Foss <robert.foss@linaro.org>
6289 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6290 R:      Jonas Karlman <jonas@kwiboo.se>
6291 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6292 S:      Maintained
6293 T:      git git://anongit.freedesktop.org/drm/drm-misc
6294 F:      drivers/gpu/drm/bridge/
6295
6296 DRM DRIVERS FOR EXYNOS
6297 M:      Inki Dae <inki.dae@samsung.com>
6298 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6299 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6300 M:      Kyungmin Park <kyungmin.park@samsung.com>
6301 L:      dri-devel@lists.freedesktop.org
6302 S:      Supported
6303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6304 F:      Documentation/devicetree/bindings/display/exynos/
6305 F:      drivers/gpu/drm/exynos/
6306 F:      include/uapi/drm/exynos_drm.h
6307
6308 DRM DRIVERS FOR FREESCALE DCU
6309 M:      Stefan Agner <stefan@agner.ch>
6310 M:      Alison Wang <alison.wang@nxp.com>
6311 L:      dri-devel@lists.freedesktop.org
6312 S:      Supported
6313 T:      git git://anongit.freedesktop.org/drm/drm-misc
6314 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6315 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6316 F:      drivers/gpu/drm/fsl-dcu/
6317
6318 DRM DRIVERS FOR FREESCALE IMX
6319 M:      Philipp Zabel <p.zabel@pengutronix.de>
6320 L:      dri-devel@lists.freedesktop.org
6321 S:      Maintained
6322 F:      Documentation/devicetree/bindings/display/imx/
6323 F:      drivers/gpu/drm/imx/
6324 F:      drivers/gpu/ipu-v3/
6325
6326 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6327 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6328 L:      dri-devel@lists.freedesktop.org
6329 S:      Maintained
6330 T:      git git://github.com/patjak/drm-gma500
6331 F:      drivers/gpu/drm/gma500/
6332
6333 DRM DRIVERS FOR HISILICON
6334 M:      Xinliang Liu <xinliang.liu@linaro.org>
6335 M:      Tian Tao  <tiantao6@hisilicon.com>
6336 R:      John Stultz <john.stultz@linaro.org>
6337 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6338 R:      Chen Feng <puck.chen@hisilicon.com>
6339 L:      dri-devel@lists.freedesktop.org
6340 S:      Maintained
6341 T:      git git://anongit.freedesktop.org/drm/drm-misc
6342 F:      Documentation/devicetree/bindings/display/hisilicon/
6343 F:      drivers/gpu/drm/hisilicon/
6344
6345 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6346 M:      Deepak Rawat <drawat.floss@gmail.com>
6347 L:      linux-hyperv@vger.kernel.org
6348 L:      dri-devel@lists.freedesktop.org
6349 S:      Maintained
6350 T:      git git://anongit.freedesktop.org/drm/drm-misc
6351 F:      drivers/gpu/drm/hyperv
6352
6353 DRM DRIVERS FOR LIMA
6354 M:      Qiang Yu <yuq825@gmail.com>
6355 L:      dri-devel@lists.freedesktop.org
6356 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6357 S:      Maintained
6358 T:      git git://anongit.freedesktop.org/drm/drm-misc
6359 F:      drivers/gpu/drm/lima/
6360 F:      include/uapi/drm/lima_drm.h
6361
6362 DRM DRIVERS FOR MEDIATEK
6363 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6364 M:      Philipp Zabel <p.zabel@pengutronix.de>
6365 L:      dri-devel@lists.freedesktop.org
6366 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6367 S:      Supported
6368 F:      Documentation/devicetree/bindings/display/mediatek/
6369 F:      drivers/gpu/drm/mediatek/
6370 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6371 F:      drivers/phy/mediatek/phy-mtk-mipi*
6372
6373 DRM DRIVERS FOR NVIDIA TEGRA
6374 M:      Thierry Reding <thierry.reding@gmail.com>
6375 L:      dri-devel@lists.freedesktop.org
6376 L:      linux-tegra@vger.kernel.org
6377 S:      Supported
6378 T:      git git://anongit.freedesktop.org/tegra/linux.git
6379 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6380 F:      Documentation/devicetree/bindings/gpu/host1x/
6381 F:      drivers/gpu/drm/tegra/
6382 F:      drivers/gpu/host1x/
6383 F:      include/linux/host1x.h
6384 F:      include/uapi/drm/tegra_drm.h
6385
6386 DRM DRIVERS FOR RENESAS
6387 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6388 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6389 L:      dri-devel@lists.freedesktop.org
6390 L:      linux-renesas-soc@vger.kernel.org
6391 S:      Supported
6392 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6393 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6394 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6395 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6396 F:      drivers/gpu/drm/rcar-du/
6397 F:      drivers/gpu/drm/shmobile/
6398 F:      include/linux/platform_data/shmob_drm.h
6399
6400 DRM DRIVERS FOR ROCKCHIP
6401 M:      Sandy Huang <hjc@rock-chips.com>
6402 M:      Heiko Stübner <heiko@sntech.de>
6403 L:      dri-devel@lists.freedesktop.org
6404 S:      Maintained
6405 T:      git git://anongit.freedesktop.org/drm/drm-misc
6406 F:      Documentation/devicetree/bindings/display/rockchip/
6407 F:      drivers/gpu/drm/rockchip/
6408
6409 DRM DRIVERS FOR STI
6410 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6411 L:      dri-devel@lists.freedesktop.org
6412 S:      Maintained
6413 T:      git git://anongit.freedesktop.org/drm/drm-misc
6414 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6415 F:      drivers/gpu/drm/sti
6416
6417 DRM DRIVERS FOR STM
6418 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6419 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6420 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6421 L:      dri-devel@lists.freedesktop.org
6422 S:      Maintained
6423 T:      git git://anongit.freedesktop.org/drm/drm-misc
6424 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6425 F:      drivers/gpu/drm/stm
6426
6427 DRM DRIVERS FOR TI KEYSTONE
6428 M:      Jyri Sarha <jyri.sarha@iki.fi>
6429 M:      Tomi Valkeinen <tomba@kernel.org>
6430 L:      dri-devel@lists.freedesktop.org
6431 S:      Maintained
6432 T:      git git://anongit.freedesktop.org/drm/drm-misc
6433 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6434 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6435 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6436 F:      drivers/gpu/drm/tidss/
6437
6438 DRM DRIVERS FOR TI LCDC
6439 M:      Jyri Sarha <jyri.sarha@iki.fi>
6440 R:      Tomi Valkeinen <tomba@kernel.org>
6441 L:      dri-devel@lists.freedesktop.org
6442 S:      Maintained
6443 F:      Documentation/devicetree/bindings/display/tilcdc/
6444 F:      drivers/gpu/drm/tilcdc/
6445
6446 DRM DRIVERS FOR TI OMAP
6447 M:      Tomi Valkeinen <tomba@kernel.org>
6448 L:      dri-devel@lists.freedesktop.org
6449 S:      Maintained
6450 F:      Documentation/devicetree/bindings/display/ti/
6451 F:      drivers/gpu/drm/omapdrm/
6452
6453 DRM DRIVERS FOR V3D
6454 M:      Emma Anholt <emma@anholt.net>
6455 S:      Supported
6456 T:      git git://anongit.freedesktop.org/drm/drm-misc
6457 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6458 F:      drivers/gpu/drm/v3d/
6459 F:      include/uapi/drm/v3d_drm.h
6460
6461 DRM DRIVERS FOR VC4
6462 M:      Emma Anholt <emma@anholt.net>
6463 M:      Maxime Ripard <mripard@kernel.org>
6464 S:      Supported
6465 T:      git git://github.com/anholt/linux
6466 T:      git git://anongit.freedesktop.org/drm/drm-misc
6467 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6468 F:      drivers/gpu/drm/vc4/
6469 F:      include/uapi/drm/vc4_drm.h
6470
6471 DRM DRIVERS FOR VIVANTE GPU IP
6472 M:      Lucas Stach <l.stach@pengutronix.de>
6473 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6474 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6475 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6476 L:      dri-devel@lists.freedesktop.org
6477 S:      Maintained
6478 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6479 F:      drivers/gpu/drm/etnaviv/
6480 F:      include/uapi/drm/etnaviv_drm.h
6481
6482 DRM DRIVERS FOR XEN
6483 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6484 L:      dri-devel@lists.freedesktop.org
6485 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6486 S:      Supported
6487 T:      git git://anongit.freedesktop.org/drm/drm-misc
6488 F:      Documentation/gpu/xen-front.rst
6489 F:      drivers/gpu/drm/xen/
6490
6491 DRM DRIVERS FOR XILINX
6492 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6493 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6494 L:      dri-devel@lists.freedesktop.org
6495 S:      Maintained
6496 T:      git git://anongit.freedesktop.org/drm/drm-misc
6497 F:      Documentation/devicetree/bindings/display/xlnx/
6498 F:      drivers/gpu/drm/xlnx/
6499
6500 DRM PANEL DRIVERS
6501 M:      Thierry Reding <thierry.reding@gmail.com>
6502 R:      Sam Ravnborg <sam@ravnborg.org>
6503 L:      dri-devel@lists.freedesktop.org
6504 S:      Maintained
6505 T:      git git://anongit.freedesktop.org/drm/drm-misc
6506 F:      Documentation/devicetree/bindings/display/panel/
6507 F:      drivers/gpu/drm/drm_panel.c
6508 F:      drivers/gpu/drm/panel/
6509 F:      include/drm/drm_panel.h
6510
6511 DRM TTM SUBSYSTEM
6512 M:      Christian Koenig <christian.koenig@amd.com>
6513 M:      Huang Rui <ray.huang@amd.com>
6514 L:      dri-devel@lists.freedesktop.org
6515 S:      Maintained
6516 T:      git git://anongit.freedesktop.org/drm/drm-misc
6517 F:      drivers/gpu/drm/ttm/
6518 F:      include/drm/ttm/
6519
6520 DRM GPU SCHEDULER
6521 M:      Andrey Grodzovsky <andrey.grodzovsky@amd.com>
6522 L:      dri-devel@lists.freedesktop.org
6523 S:      Maintained
6524 T:      git git://anongit.freedesktop.org/drm/drm-misc
6525 F:      drivers/gpu/drm/scheduler/
6526 F:      include/drm/gpu_scheduler.h
6527
6528 DSBR100 USB FM RADIO DRIVER
6529 M:      Alexey Klimov <klimov.linux@gmail.com>
6530 L:      linux-media@vger.kernel.org
6531 S:      Maintained
6532 T:      git git://linuxtv.org/media_tree.git
6533 F:      drivers/media/radio/dsbr100.c
6534
6535 DT3155 MEDIA DRIVER
6536 M:      Hans Verkuil <hverkuil@xs4all.nl>
6537 L:      linux-media@vger.kernel.org
6538 S:      Odd Fixes
6539 W:      https://linuxtv.org
6540 T:      git git://linuxtv.org/media_tree.git
6541 F:      drivers/media/pci/dt3155/
6542
6543 DVB_USB_AF9015 MEDIA DRIVER
6544 M:      Antti Palosaari <crope@iki.fi>
6545 L:      linux-media@vger.kernel.org
6546 S:      Maintained
6547 W:      https://linuxtv.org
6548 W:      http://palosaari.fi/linux/
6549 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6550 T:      git git://linuxtv.org/anttip/media_tree.git
6551 F:      drivers/media/usb/dvb-usb-v2/af9015*
6552
6553 DVB_USB_AF9035 MEDIA DRIVER
6554 M:      Antti Palosaari <crope@iki.fi>
6555 L:      linux-media@vger.kernel.org
6556 S:      Maintained
6557 W:      https://linuxtv.org
6558 W:      http://palosaari.fi/linux/
6559 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6560 T:      git git://linuxtv.org/anttip/media_tree.git
6561 F:      drivers/media/usb/dvb-usb-v2/af9035*
6562
6563 DVB_USB_ANYSEE MEDIA DRIVER
6564 M:      Antti Palosaari <crope@iki.fi>
6565 L:      linux-media@vger.kernel.org
6566 S:      Maintained
6567 W:      https://linuxtv.org
6568 W:      http://palosaari.fi/linux/
6569 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6570 T:      git git://linuxtv.org/anttip/media_tree.git
6571 F:      drivers/media/usb/dvb-usb-v2/anysee*
6572
6573 DVB_USB_AU6610 MEDIA DRIVER
6574 M:      Antti Palosaari <crope@iki.fi>
6575 L:      linux-media@vger.kernel.org
6576 S:      Maintained
6577 W:      https://linuxtv.org
6578 W:      http://palosaari.fi/linux/
6579 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6580 T:      git git://linuxtv.org/anttip/media_tree.git
6581 F:      drivers/media/usb/dvb-usb-v2/au6610*
6582
6583 DVB_USB_CE6230 MEDIA DRIVER
6584 M:      Antti Palosaari <crope@iki.fi>
6585 L:      linux-media@vger.kernel.org
6586 S:      Maintained
6587 W:      https://linuxtv.org
6588 W:      http://palosaari.fi/linux/
6589 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6590 T:      git git://linuxtv.org/anttip/media_tree.git
6591 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6592
6593 DVB_USB_CXUSB MEDIA DRIVER
6594 M:      Michael Krufky <mkrufky@linuxtv.org>
6595 L:      linux-media@vger.kernel.org
6596 S:      Maintained
6597 W:      https://linuxtv.org
6598 W:      http://github.com/mkrufky
6599 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6600 T:      git git://linuxtv.org/media_tree.git
6601 F:      drivers/media/usb/dvb-usb/cxusb*
6602
6603 DVB_USB_EC168 MEDIA DRIVER
6604 M:      Antti Palosaari <crope@iki.fi>
6605 L:      linux-media@vger.kernel.org
6606 S:      Maintained
6607 W:      https://linuxtv.org
6608 W:      http://palosaari.fi/linux/
6609 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6610 T:      git git://linuxtv.org/anttip/media_tree.git
6611 F:      drivers/media/usb/dvb-usb-v2/ec168*
6612
6613 DVB_USB_GL861 MEDIA DRIVER
6614 M:      Antti Palosaari <crope@iki.fi>
6615 L:      linux-media@vger.kernel.org
6616 S:      Maintained
6617 W:      https://linuxtv.org
6618 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6619 T:      git git://linuxtv.org/anttip/media_tree.git
6620 F:      drivers/media/usb/dvb-usb-v2/gl861*
6621
6622 DVB_USB_MXL111SF MEDIA DRIVER
6623 M:      Michael Krufky <mkrufky@linuxtv.org>
6624 L:      linux-media@vger.kernel.org
6625 S:      Maintained
6626 W:      https://linuxtv.org
6627 W:      http://github.com/mkrufky
6628 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6629 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6630 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6631
6632 DVB_USB_RTL28XXU MEDIA DRIVER
6633 M:      Antti Palosaari <crope@iki.fi>
6634 L:      linux-media@vger.kernel.org
6635 S:      Maintained
6636 W:      https://linuxtv.org
6637 W:      http://palosaari.fi/linux/
6638 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6639 T:      git git://linuxtv.org/anttip/media_tree.git
6640 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6641
6642 DVB_USB_V2 MEDIA DRIVER
6643 M:      Antti Palosaari <crope@iki.fi>
6644 L:      linux-media@vger.kernel.org
6645 S:      Maintained
6646 W:      https://linuxtv.org
6647 W:      http://palosaari.fi/linux/
6648 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6649 T:      git git://linuxtv.org/anttip/media_tree.git
6650 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6651 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6652
6653 DYNAMIC DEBUG
6654 M:      Jason Baron <jbaron@akamai.com>
6655 S:      Maintained
6656 F:      include/linux/dynamic_debug.h
6657 F:      lib/dynamic_debug.c
6658
6659 DYNAMIC INTERRUPT MODERATION
6660 M:      Tal Gilboa <talgi@nvidia.com>
6661 S:      Maintained
6662 F:      Documentation/networking/net_dim.rst
6663 F:      include/linux/dim.h
6664 F:      lib/dim/
6665
6666 DZ DECSTATION DZ11 SERIAL DRIVER
6667 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6668 S:      Maintained
6669 F:      drivers/tty/serial/dz.*
6670
6671 E3X0 POWER BUTTON DRIVER
6672 M:      Moritz Fischer <moritz.fischer@ettus.com>
6673 L:      usrp-users@lists.ettus.com
6674 S:      Supported
6675 W:      http://www.ettus.com
6676 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6677 F:      drivers/input/misc/e3x0-button.c
6678
6679 E4000 MEDIA DRIVER
6680 M:      Antti Palosaari <crope@iki.fi>
6681 L:      linux-media@vger.kernel.org
6682 S:      Maintained
6683 W:      https://linuxtv.org
6684 W:      http://palosaari.fi/linux/
6685 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6686 T:      git git://linuxtv.org/anttip/media_tree.git
6687 F:      drivers/media/tuners/e4000*
6688
6689 EARTH_PT1 MEDIA DRIVER
6690 M:      Akihiro Tsukada <tskd08@gmail.com>
6691 L:      linux-media@vger.kernel.org
6692 S:      Odd Fixes
6693 F:      drivers/media/pci/pt1/
6694
6695 EARTH_PT3 MEDIA DRIVER
6696 M:      Akihiro Tsukada <tskd08@gmail.com>
6697 L:      linux-media@vger.kernel.org
6698 S:      Odd Fixes
6699 F:      drivers/media/pci/pt3/
6700
6701 EC100 MEDIA DRIVER
6702 M:      Antti Palosaari <crope@iki.fi>
6703 L:      linux-media@vger.kernel.org
6704 S:      Maintained
6705 W:      https://linuxtv.org
6706 W:      http://palosaari.fi/linux/
6707 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6708 T:      git git://linuxtv.org/anttip/media_tree.git
6709 F:      drivers/media/dvb-frontends/ec100*
6710
6711 ECRYPT FILE SYSTEM
6712 M:      Tyler Hicks <code@tyhicks.com>
6713 L:      ecryptfs@vger.kernel.org
6714 S:      Odd Fixes
6715 W:      http://ecryptfs.org
6716 W:      https://launchpad.net/ecryptfs
6717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6718 F:      Documentation/filesystems/ecryptfs.rst
6719 F:      fs/ecryptfs/
6720
6721 EDAC-AMD64
6722 M:      Yazen Ghannam <yazen.ghannam@amd.com>
6723 L:      linux-edac@vger.kernel.org
6724 S:      Supported
6725 F:      drivers/edac/amd64_edac*
6726 F:      drivers/edac/mce_amd*
6727
6728 EDAC-ARMADA
6729 M:      Jan Luebbe <jlu@pengutronix.de>
6730 L:      linux-edac@vger.kernel.org
6731 S:      Maintained
6732 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
6733 F:      drivers/edac/armada_xp_*
6734
6735 EDAC-AST2500
6736 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6737 S:      Supported
6738 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6739 F:      drivers/edac/aspeed_edac.c
6740
6741 EDAC-BLUEFIELD
6742 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6743 S:      Supported
6744 F:      drivers/edac/bluefield_edac.c
6745
6746 EDAC-CALXEDA
6747 M:      Andre Przywara <andre.przywara@arm.com>
6748 L:      linux-edac@vger.kernel.org
6749 S:      Maintained
6750 F:      drivers/edac/highbank*
6751
6752 EDAC-CAVIUM OCTEON
6753 M:      Ralf Baechle <ralf@linux-mips.org>
6754 L:      linux-edac@vger.kernel.org
6755 L:      linux-mips@vger.kernel.org
6756 S:      Supported
6757 F:      drivers/edac/octeon_edac*
6758
6759 EDAC-CAVIUM THUNDERX
6760 M:      Robert Richter <rric@kernel.org>
6761 L:      linux-edac@vger.kernel.org
6762 S:      Odd Fixes
6763 F:      drivers/edac/thunderx_edac*
6764
6765 EDAC-CORE
6766 M:      Borislav Petkov <bp@alien8.de>
6767 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6768 M:      Tony Luck <tony.luck@intel.com>
6769 R:      James Morse <james.morse@arm.com>
6770 R:      Robert Richter <rric@kernel.org>
6771 L:      linux-edac@vger.kernel.org
6772 S:      Supported
6773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6774 F:      Documentation/admin-guide/ras.rst
6775 F:      Documentation/driver-api/edac.rst
6776 F:      drivers/edac/
6777 F:      include/linux/edac.h
6778
6779 EDAC-DMC520
6780 M:      Lei Wang <lewan@microsoft.com>
6781 L:      linux-edac@vger.kernel.org
6782 S:      Supported
6783 F:      drivers/edac/dmc520_edac.c
6784
6785 EDAC-E752X
6786 M:      Mark Gross <markgross@kernel.org>
6787 L:      linux-edac@vger.kernel.org
6788 S:      Maintained
6789 F:      drivers/edac/e752x_edac.c
6790
6791 EDAC-E7XXX
6792 L:      linux-edac@vger.kernel.org
6793 S:      Maintained
6794 F:      drivers/edac/e7xxx_edac.c
6795
6796 EDAC-FSL_DDR
6797 M:      York Sun <york.sun@nxp.com>
6798 L:      linux-edac@vger.kernel.org
6799 S:      Maintained
6800 F:      drivers/edac/fsl_ddr_edac.*
6801
6802 EDAC-GHES
6803 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6804 L:      linux-edac@vger.kernel.org
6805 S:      Maintained
6806 F:      drivers/edac/ghes_edac.c
6807
6808 EDAC-I10NM
6809 M:      Tony Luck <tony.luck@intel.com>
6810 L:      linux-edac@vger.kernel.org
6811 S:      Maintained
6812 F:      drivers/edac/i10nm_base.c
6813
6814 EDAC-I3000
6815 L:      linux-edac@vger.kernel.org
6816 S:      Orphan
6817 F:      drivers/edac/i3000_edac.c
6818
6819 EDAC-I5000
6820 L:      linux-edac@vger.kernel.org
6821 S:      Maintained
6822 F:      drivers/edac/i5000_edac.c
6823
6824 EDAC-I5400
6825 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6826 L:      linux-edac@vger.kernel.org
6827 S:      Maintained
6828 F:      drivers/edac/i5400_edac.c
6829
6830 EDAC-I7300
6831 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6832 L:      linux-edac@vger.kernel.org
6833 S:      Maintained
6834 F:      drivers/edac/i7300_edac.c
6835
6836 EDAC-I7CORE
6837 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6838 L:      linux-edac@vger.kernel.org
6839 S:      Maintained
6840 F:      drivers/edac/i7core_edac.c
6841
6842 EDAC-I82443BXGX
6843 M:      Tim Small <tim@buttersideup.com>
6844 L:      linux-edac@vger.kernel.org
6845 S:      Maintained
6846 F:      drivers/edac/i82443bxgx_edac.c
6847
6848 EDAC-I82975X
6849 M:      "Arvind R." <arvino55@gmail.com>
6850 L:      linux-edac@vger.kernel.org
6851 S:      Maintained
6852 F:      drivers/edac/i82975x_edac.c
6853
6854 EDAC-IE31200
6855 M:      Jason Baron <jbaron@akamai.com>
6856 L:      linux-edac@vger.kernel.org
6857 S:      Maintained
6858 F:      drivers/edac/ie31200_edac.c
6859
6860 EDAC-IGEN6
6861 M:      Tony Luck <tony.luck@intel.com>
6862 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6863 L:      linux-edac@vger.kernel.org
6864 S:      Maintained
6865 F:      drivers/edac/igen6_edac.c
6866
6867 EDAC-MPC85XX
6868 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6869 L:      linux-edac@vger.kernel.org
6870 S:      Maintained
6871 F:      drivers/edac/mpc85xx_edac.[ch]
6872
6873 EDAC-PASEMI
6874 M:      Egor Martovetsky <egor@pasemi.com>
6875 L:      linux-edac@vger.kernel.org
6876 S:      Maintained
6877 F:      drivers/edac/pasemi_edac.c
6878
6879 EDAC-PND2
6880 M:      Tony Luck <tony.luck@intel.com>
6881 L:      linux-edac@vger.kernel.org
6882 S:      Maintained
6883 F:      drivers/edac/pnd2_edac.[ch]
6884
6885 EDAC-QCOM
6886 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6887 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6888 L:      linux-arm-msm@vger.kernel.org
6889 L:      linux-edac@vger.kernel.org
6890 S:      Maintained
6891 F:      drivers/edac/qcom_edac.c
6892
6893 EDAC-R82600
6894 M:      Tim Small <tim@buttersideup.com>
6895 L:      linux-edac@vger.kernel.org
6896 S:      Maintained
6897 F:      drivers/edac/r82600_edac.c
6898
6899 EDAC-SBRIDGE
6900 M:      Tony Luck <tony.luck@intel.com>
6901 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6902 L:      linux-edac@vger.kernel.org
6903 S:      Maintained
6904 F:      drivers/edac/sb_edac.c
6905
6906 EDAC-SIFIVE
6907 M:      Yash Shah <yash.shah@sifive.com>
6908 L:      linux-edac@vger.kernel.org
6909 S:      Supported
6910 F:      drivers/edac/sifive_edac.c
6911
6912 EDAC-SKYLAKE
6913 M:      Tony Luck <tony.luck@intel.com>
6914 L:      linux-edac@vger.kernel.org
6915 S:      Maintained
6916 F:      drivers/edac/skx_*.[ch]
6917
6918 EDAC-TI
6919 M:      Tero Kristo <kristo@kernel.org>
6920 L:      linux-edac@vger.kernel.org
6921 S:      Odd Fixes
6922 F:      drivers/edac/ti_edac.c
6923
6924 EDIROL UA-101/UA-1000 DRIVER
6925 M:      Clemens Ladisch <clemens@ladisch.de>
6926 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6927 S:      Maintained
6928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6929 F:      sound/usb/misc/ua101.c
6930
6931 EFI TEST DRIVER
6932 M:      Ivan Hu <ivan.hu@canonical.com>
6933 M:      Ard Biesheuvel <ardb@kernel.org>
6934 L:      linux-efi@vger.kernel.org
6935 S:      Maintained
6936 F:      drivers/firmware/efi/test/
6937
6938 EFI VARIABLE FILESYSTEM
6939 M:      Matthew Garrett <matthew.garrett@nebula.com>
6940 M:      Jeremy Kerr <jk@ozlabs.org>
6941 M:      Ard Biesheuvel <ardb@kernel.org>
6942 L:      linux-efi@vger.kernel.org
6943 S:      Maintained
6944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6945 F:      fs/efivarfs/
6946
6947 EFIFB FRAMEBUFFER DRIVER
6948 M:      Peter Jones <pjones@redhat.com>
6949 L:      linux-fbdev@vger.kernel.org
6950 S:      Maintained
6951 F:      drivers/video/fbdev/efifb.c
6952
6953 EFS FILESYSTEM
6954 S:      Orphan
6955 W:      http://aeschi.ch.eu.org/efs/
6956 F:      fs/efs/
6957
6958 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6959 M:      Douglas Miller <dougmill@linux.ibm.com>
6960 L:      netdev@vger.kernel.org
6961 S:      Maintained
6962 F:      drivers/net/ethernet/ibm/ehea/
6963
6964 EM28XX VIDEO4LINUX DRIVER
6965 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6966 L:      linux-media@vger.kernel.org
6967 S:      Maintained
6968 W:      https://linuxtv.org
6969 T:      git git://linuxtv.org/media_tree.git
6970 F:      Documentation/admin-guide/media/em28xx*
6971 F:      drivers/media/usb/em28xx/
6972
6973 EMBEDDED LINUX
6974 M:      Matt Mackall <mpm@selenic.com>
6975 M:      David Woodhouse <dwmw2@infradead.org>
6976 L:      linux-embedded@vger.kernel.org
6977 S:      Maintained
6978
6979 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6980 M:      Adrian Hunter <adrian.hunter@intel.com>
6981 M:      Ritesh Harjani <riteshh@codeaurora.org>
6982 M:      Asutosh Das <asutoshd@codeaurora.org>
6983 L:      linux-mmc@vger.kernel.org
6984 S:      Maintained
6985 F:      drivers/mmc/host/cqhci*
6986
6987 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6988 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6989 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6990 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6991 L:      linux-scsi@vger.kernel.org
6992 S:      Supported
6993 W:      http://www.broadcom.com
6994 F:      drivers/scsi/be2iscsi/
6995
6996 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6997 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6998 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6999 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7000 L:      netdev@vger.kernel.org
7001 S:      Supported
7002 W:      http://www.emulex.com
7003 F:      drivers/net/ethernet/emulex/benet/
7004
7005 EMULEX ONECONNECT ROCE DRIVER
7006 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7007 L:      linux-rdma@vger.kernel.org
7008 S:      Odd Fixes
7009 W:      http://www.broadcom.com
7010 F:      drivers/infiniband/hw/ocrdma/
7011 F:      include/uapi/rdma/ocrdma-abi.h
7012
7013 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7014 M:      James Smart <james.smart@broadcom.com>
7015 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7016 L:      linux-scsi@vger.kernel.org
7017 S:      Supported
7018 W:      http://www.broadcom.com
7019 F:      drivers/scsi/lpfc/
7020
7021 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7022 M:      James Smart <james.smart@broadcom.com>
7023 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7024 L:      linux-scsi@vger.kernel.org
7025 L:      target-devel@vger.kernel.org
7026 S:      Supported
7027 W:      http://www.broadcom.com
7028 F:      drivers/scsi/elx/
7029
7030 ENE CB710 FLASH CARD READER DRIVER
7031 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7032 S:      Maintained
7033 F:      drivers/misc/cb710/
7034 F:      drivers/mmc/host/cb710-mmc.*
7035 F:      include/linux/cb710.h
7036
7037 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7038 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7039 S:      Maintained
7040 F:      drivers/media/rc/ene_ir.*
7041
7042 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7043 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7044 L:      linuxppc-dev@lists.ozlabs.org
7045 S:      Maintained
7046 F:      drivers/tty/ehv_bytechan.c
7047
7048 EPSON S1D13XXX FRAMEBUFFER DRIVER
7049 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7050 S:      Maintained
7051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7052 F:      drivers/video/fbdev/s1d13xxxfb.c
7053 F:      include/video/s1d13xxxfb.h
7054
7055 EROFS FILE SYSTEM
7056 M:      Gao Xiang <xiang@kernel.org>
7057 M:      Chao Yu <chao@kernel.org>
7058 L:      linux-erofs@lists.ozlabs.org
7059 S:      Maintained
7060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7061 F:      Documentation/filesystems/erofs.rst
7062 F:      fs/erofs/
7063 F:      include/trace/events/erofs.h
7064
7065 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7066 M:      Jeff Layton <jlayton@kernel.org>
7067 S:      Maintained
7068 F:      include/linux/errseq.h
7069 F:      lib/errseq.c
7070
7071 ET131X NETWORK DRIVER
7072 M:      Mark Einon <mark.einon@gmail.com>
7073 S:      Odd Fixes
7074 F:      drivers/net/ethernet/agere/
7075
7076 ETAS ES58X CAN/USB DRIVER
7077 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7078 L:      linux-can@vger.kernel.org
7079 S:      Maintained
7080 F:      drivers/net/can/usb/etas_es58x/
7081
7082 ETHERNET BRIDGE
7083 M:      Roopa Prabhu <roopa@nvidia.com>
7084 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
7085 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7086 L:      netdev@vger.kernel.org
7087 S:      Maintained
7088 W:      http://www.linuxfoundation.org/en/Net:Bridge
7089 F:      include/linux/netfilter_bridge/
7090 F:      net/bridge/
7091
7092 ETHERNET PHY LIBRARY
7093 M:      Andrew Lunn <andrew@lunn.ch>
7094 M:      Heiner Kallweit <hkallweit1@gmail.com>
7095 R:      Russell King <linux@armlinux.org.uk>
7096 L:      netdev@vger.kernel.org
7097 S:      Maintained
7098 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7099 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7100 F:      Documentation/devicetree/bindings/net/mdio*
7101 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7102 F:      Documentation/networking/phy.rst
7103 F:      drivers/net/mdio/
7104 F:      drivers/net/mdio/acpi_mdio.c
7105 F:      drivers/net/mdio/fwnode_mdio.c
7106 F:      drivers/net/mdio/of_mdio.c
7107 F:      drivers/net/pcs/
7108 F:      drivers/net/phy/
7109 F:      include/dt-bindings/net/qca-ar803x.h
7110 F:      include/linux/*mdio*.h
7111 F:      include/linux/mdio/*.h
7112 F:      include/linux/of_net.h
7113 F:      include/linux/phy.h
7114 F:      include/linux/phy_fixed.h
7115 F:      include/linux/platform_data/mdio-bcm-unimac.h
7116 F:      include/linux/platform_data/mdio-gpio.h
7117 F:      include/trace/events/mdio.h
7118 F:      include/uapi/linux/mdio.h
7119 F:      include/uapi/linux/mii.h
7120 F:      net/core/of_net.c
7121
7122 EXFAT FILE SYSTEM
7123 M:      Namjae Jeon <linkinjeon@kernel.org>
7124 M:      Sungjong Seo <sj1557.seo@samsung.com>
7125 L:      linux-fsdevel@vger.kernel.org
7126 S:      Maintained
7127 F:      fs/exfat/
7128
7129 EXT2 FILE SYSTEM
7130 M:      Jan Kara <jack@suse.com>
7131 L:      linux-ext4@vger.kernel.org
7132 S:      Maintained
7133 F:      Documentation/filesystems/ext2.rst
7134 F:      fs/ext2/
7135 F:      include/linux/ext2*
7136
7137 EXT4 FILE SYSTEM
7138 M:      "Theodore Ts'o" <tytso@mit.edu>
7139 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7140 L:      linux-ext4@vger.kernel.org
7141 S:      Maintained
7142 W:      http://ext4.wiki.kernel.org
7143 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7145 F:      Documentation/filesystems/ext4/
7146 F:      fs/ext4/
7147 F:      include/trace/events/ext4.h
7148
7149 Extended Verification Module (EVM)
7150 M:      Mimi Zohar <zohar@linux.ibm.com>
7151 L:      linux-integrity@vger.kernel.org
7152 S:      Supported
7153 F:      security/integrity/evm/
7154
7155 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7156 M:      Ard Biesheuvel <ardb@kernel.org>
7157 L:      linux-efi@vger.kernel.org
7158 S:      Maintained
7159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7160 F:      Documentation/admin-guide/efi-stub.rst
7161 F:      arch/*/include/asm/efi.h
7162 F:      arch/*/kernel/efi.c
7163 F:      arch/arm/boot/compressed/efi-header.S
7164 F:      arch/arm64/kernel/efi-entry.S
7165 F:      arch/x86/platform/efi/
7166 F:      drivers/firmware/efi/
7167 F:      include/linux/efi*.h
7168
7169 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7170 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7171 M:      Chanwoo Choi <cw00.choi@samsung.com>
7172 L:      linux-kernel@vger.kernel.org
7173 S:      Maintained
7174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7175 F:      Documentation/devicetree/bindings/extcon/
7176 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7177 F:      drivers/extcon/
7178 F:      include/linux/extcon.h
7179 F:      include/linux/extcon/
7180
7181 EXTRA BOOT CONFIG
7182 M:      Masami Hiramatsu <mhiramat@kernel.org>
7183 S:      Maintained
7184 F:      Documentation/admin-guide/bootconfig.rst
7185 F:      fs/proc/bootconfig.c
7186 F:      include/linux/bootconfig.h
7187 F:      lib/bootconfig.c
7188 F:      tools/bootconfig/*
7189 F:      tools/bootconfig/scripts/*
7190
7191 EXYNOS DP DRIVER
7192 M:      Jingoo Han <jingoohan1@gmail.com>
7193 L:      dri-devel@lists.freedesktop.org
7194 S:      Maintained
7195 F:      drivers/gpu/drm/exynos/exynos_dp*
7196
7197 EXYNOS SYSMMU (IOMMU) driver
7198 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7199 L:      iommu@lists.linux-foundation.org
7200 S:      Maintained
7201 F:      drivers/iommu/exynos-iommu.c
7202
7203 F2FS FILE SYSTEM
7204 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7205 M:      Chao Yu <chao@kernel.org>
7206 L:      linux-f2fs-devel@lists.sourceforge.net
7207 S:      Maintained
7208 W:      https://f2fs.wiki.kernel.org/
7209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7210 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7211 F:      Documentation/filesystems/f2fs.rst
7212 F:      fs/f2fs/
7213 F:      include/linux/f2fs_fs.h
7214 F:      include/trace/events/f2fs.h
7215 F:      include/uapi/linux/f2fs.h
7216
7217 F71805F HARDWARE MONITORING DRIVER
7218 M:      Jean Delvare <jdelvare@suse.com>
7219 L:      linux-hwmon@vger.kernel.org
7220 S:      Maintained
7221 F:      Documentation/hwmon/f71805f.rst
7222 F:      drivers/hwmon/f71805f.c
7223
7224 FADDR2LINE
7225 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7226 S:      Maintained
7227 F:      scripts/faddr2line
7228
7229 FAILOVER MODULE
7230 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7231 L:      netdev@vger.kernel.org
7232 S:      Supported
7233 F:      Documentation/networking/failover.rst
7234 F:      include/net/failover.h
7235 F:      net/core/failover.c
7236
7237 FANOTIFY
7238 M:      Jan Kara <jack@suse.cz>
7239 R:      Amir Goldstein <amir73il@gmail.com>
7240 R:      Matthew Bobrowski <repnop@google.com>
7241 L:      linux-fsdevel@vger.kernel.org
7242 S:      Maintained
7243 F:      fs/notify/fanotify/
7244 F:      include/linux/fanotify.h
7245 F:      include/uapi/linux/fanotify.h
7246
7247 FARSYNC SYNCHRONOUS DRIVER
7248 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7249 S:      Supported
7250 W:      http://www.farsite.co.uk/
7251 F:      drivers/net/wan/farsync.*
7252
7253 FAULT INJECTION SUPPORT
7254 M:      Akinobu Mita <akinobu.mita@gmail.com>
7255 S:      Supported
7256 F:      Documentation/fault-injection/
7257 F:      lib/fault-inject.c
7258
7259 FBTFT Framebuffer drivers
7260 L:      dri-devel@lists.freedesktop.org
7261 L:      linux-fbdev@vger.kernel.org
7262 S:      Orphan
7263 F:      drivers/staging/fbtft/
7264
7265 FC0011 TUNER DRIVER
7266 M:      Michael Buesch <m@bues.ch>
7267 L:      linux-media@vger.kernel.org
7268 S:      Maintained
7269 F:      drivers/media/tuners/fc0011.c
7270 F:      drivers/media/tuners/fc0011.h
7271
7272 FC2580 MEDIA DRIVER
7273 M:      Antti Palosaari <crope@iki.fi>
7274 L:      linux-media@vger.kernel.org
7275 S:      Maintained
7276 W:      https://linuxtv.org
7277 W:      http://palosaari.fi/linux/
7278 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7279 T:      git git://linuxtv.org/anttip/media_tree.git
7280 F:      drivers/media/tuners/fc2580*
7281
7282 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7283 M:      Hannes Reinecke <hare@suse.de>
7284 L:      linux-scsi@vger.kernel.org
7285 S:      Supported
7286 W:      www.Open-FCoE.org
7287 F:      drivers/scsi/fcoe/
7288 F:      drivers/scsi/libfc/
7289 F:      include/scsi/fc/
7290 F:      include/scsi/libfc.h
7291 F:      include/scsi/libfcoe.h
7292 F:      include/uapi/scsi/fc/
7293
7294 FILE LOCKING (flock() and fcntl()/lockf())
7295 M:      Jeff Layton <jlayton@kernel.org>
7296 M:      "J. Bruce Fields" <bfields@fieldses.org>
7297 L:      linux-fsdevel@vger.kernel.org
7298 S:      Maintained
7299 F:      fs/fcntl.c
7300 F:      fs/locks.c
7301 F:      include/linux/fcntl.h
7302 F:      include/uapi/linux/fcntl.h
7303
7304 FILESYSTEM DIRECT ACCESS (DAX)
7305 M:      Dan Williams <dan.j.williams@intel.com>
7306 R:      Matthew Wilcox <willy@infradead.org>
7307 R:      Jan Kara <jack@suse.cz>
7308 L:      linux-fsdevel@vger.kernel.org
7309 L:      nvdimm@lists.linux.dev
7310 S:      Supported
7311 F:      fs/dax.c
7312 F:      include/linux/dax.h
7313 F:      include/trace/events/fs_dax.h
7314
7315 FILESYSTEMS (VFS and infrastructure)
7316 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7317 L:      linux-fsdevel@vger.kernel.org
7318 S:      Maintained
7319 F:      fs/*
7320 F:      include/linux/fs.h
7321 F:      include/linux/fs_types.h
7322 F:      include/uapi/linux/fs.h
7323 F:      include/uapi/linux/openat2.h
7324 X:      fs/io-wq.c
7325 X:      fs/io-wq.h
7326 X:      fs/io_uring.c
7327
7328 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7329 M:      Riku Voipio <riku.voipio@iki.fi>
7330 L:      linux-hwmon@vger.kernel.org
7331 S:      Maintained
7332 F:      drivers/hwmon/f75375s.c
7333 F:      include/linux/f75375s.h
7334
7335 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7336 M:      Clemens Ladisch <clemens@ladisch.de>
7337 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7338 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7339 S:      Maintained
7340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7341 F:      include/uapi/sound/firewire.h
7342 F:      sound/firewire/
7343
7344 FIREWIRE MEDIA DRIVERS (firedtv)
7345 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7346 L:      linux-media@vger.kernel.org
7347 L:      linux1394-devel@lists.sourceforge.net
7348 S:      Maintained
7349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7350 F:      drivers/media/firewire/
7351
7352 FIREWIRE SBP-2 TARGET
7353 M:      Chris Boot <bootc@bootc.net>
7354 L:      linux-scsi@vger.kernel.org
7355 L:      target-devel@vger.kernel.org
7356 L:      linux1394-devel@lists.sourceforge.net
7357 S:      Maintained
7358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7359 F:      drivers/target/sbp/
7360
7361 FIREWIRE SUBSYSTEM
7362 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7363 L:      linux1394-devel@lists.sourceforge.net
7364 S:      Maintained
7365 W:      http://ieee1394.wiki.kernel.org/
7366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7367 F:      drivers/firewire/
7368 F:      include/linux/firewire.h
7369 F:      include/uapi/linux/firewire*.h
7370 F:      tools/firewire/
7371
7372 FIRMWARE FRAMEWORK FOR ARMV8-A
7373 M:      Sudeep Holla <sudeep.holla@arm.com>
7374 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7375 S:      Maintained
7376 F:      drivers/firmware/arm_ffa/
7377 F:      include/linux/arm_ffa.h
7378
7379 FIRMWARE LOADER (request_firmware)
7380 M:      Luis Chamberlain <mcgrof@kernel.org>
7381 L:      linux-kernel@vger.kernel.org
7382 S:      Maintained
7383 F:      Documentation/firmware_class/
7384 F:      drivers/base/firmware_loader/
7385 F:      include/linux/firmware.h
7386
7387 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7388 M:      Joshua Morris <josh.h.morris@us.ibm.com>
7389 M:      Philip Kelleher <pjk1939@linux.ibm.com>
7390 S:      Maintained
7391 F:      drivers/block/rsxx/
7392
7393 FLEXTIMER FTM-QUADDEC DRIVER
7394 M:      Patrick Havelange <patrick.havelange@essensium.com>
7395 L:      linux-iio@vger.kernel.org
7396 S:      Maintained
7397 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7398 F:      drivers/counter/ftm-quaddec.c
7399
7400 FLOPPY DRIVER
7401 M:      Denis Efremov <efremov@linux.com>
7402 L:      linux-block@vger.kernel.org
7403 S:      Odd Fixes
7404 F:      drivers/block/floppy.c
7405
7406 FLYSKY FSIA6B RC RECEIVER
7407 M:      Markus Koch <markus@notsyncing.net>
7408 L:      linux-input@vger.kernel.org
7409 S:      Maintained
7410 F:      drivers/input/joystick/fsia6b.c
7411
7412 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7413 M:      Geoffrey D. Bennett <g@b4.vu>
7414 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7415 S:      Maintained
7416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7417 F:      sound/usb/mixer_scarlett_gen2.c
7418
7419 FORCEDETH GIGABIT ETHERNET DRIVER
7420 M:      Rain River <rain.1986.08.12@gmail.com>
7421 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7422 L:      netdev@vger.kernel.org
7423 S:      Maintained
7424 F:      drivers/net/ethernet/nvidia/*
7425
7426 FORTIFY_SOURCE
7427 M:      Kees Cook <keescook@chromium.org>
7428 L:      linux-hardening@vger.kernel.org
7429 S:      Supported
7430 F:      include/linux/fortify-string.h
7431 F:      lib/test_fortify/*
7432 F:      scripts/test_fortify.sh
7433 K:      \b__NO_FORTIFY\b
7434
7435 FPGA DFL DRIVERS
7436 M:      Wu Hao <hao.wu@intel.com>
7437 R:      Tom Rix <trix@redhat.com>
7438 L:      linux-fpga@vger.kernel.org
7439 S:      Maintained
7440 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7441 F:      Documentation/fpga/dfl.rst
7442 F:      drivers/fpga/dfl*
7443 F:      drivers/uio/uio_dfl.c
7444 F:      include/linux/dfl.h
7445 F:      include/uapi/linux/fpga-dfl.h
7446
7447 FPGA MANAGER FRAMEWORK
7448 M:      Moritz Fischer <mdf@kernel.org>
7449 M:      Wu Hao <hao.wu@intel.com>
7450 M:      Xu Yilun <yilun.xu@intel.com>
7451 R:      Tom Rix <trix@redhat.com>
7452 L:      linux-fpga@vger.kernel.org
7453 S:      Maintained
7454 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7456 F:      Documentation/devicetree/bindings/fpga/
7457 F:      Documentation/driver-api/fpga/
7458 F:      Documentation/fpga/
7459 F:      drivers/fpga/
7460 F:      include/linux/fpga/
7461
7462 FPU EMULATOR
7463 M:      Bill Metzenthen <billm@melbpc.org.au>
7464 S:      Maintained
7465 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7466 F:      arch/x86/math-emu/
7467
7468 FRAMEBUFFER LAYER
7469 L:      dri-devel@lists.freedesktop.org
7470 L:      linux-fbdev@vger.kernel.org
7471 S:      Orphan
7472 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7473 T:      git git://anongit.freedesktop.org/drm/drm-misc
7474 F:      Documentation/fb/
7475 F:      drivers/video/
7476 F:      include/linux/fb.h
7477 F:      include/uapi/linux/fb.h
7478 F:      include/uapi/video/
7479 F:      include/video/
7480
7481 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7482 M:      Horia Geantă <horia.geanta@nxp.com>
7483 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7484 L:      linux-crypto@vger.kernel.org
7485 S:      Maintained
7486 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7487 F:      drivers/crypto/caam/
7488
7489 FREESCALE COLDFIRE M5441X MMC DRIVER
7490 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7491 L:      linux-mmc@vger.kernel.org
7492 S:      Maintained
7493 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7494 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7495
7496 FREESCALE DIU FRAMEBUFFER DRIVER
7497 M:      Timur Tabi <timur@kernel.org>
7498 L:      linux-fbdev@vger.kernel.org
7499 S:      Maintained
7500 F:      drivers/video/fbdev/fsl-diu-fb.*
7501
7502 FREESCALE DMA DRIVER
7503 M:      Li Yang <leoyang.li@nxp.com>
7504 M:      Zhang Wei <zw@zh-kernel.org>
7505 L:      linuxppc-dev@lists.ozlabs.org
7506 S:      Maintained
7507 F:      drivers/dma/fsldma.*
7508
7509 FREESCALE DSPI DRIVER
7510 M:      Vladimir Oltean <olteanv@gmail.com>
7511 L:      linux-spi@vger.kernel.org
7512 S:      Maintained
7513 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7514 F:      drivers/spi/spi-fsl-dspi.c
7515 F:      include/linux/spi/spi-fsl-dspi.h
7516
7517 FREESCALE ENETC ETHERNET DRIVERS
7518 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7519 L:      netdev@vger.kernel.org
7520 S:      Maintained
7521 F:      drivers/net/ethernet/freescale/enetc/
7522
7523 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7524 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7525 L:      netdev@vger.kernel.org
7526 S:      Maintained
7527 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7528 F:      drivers/net/ethernet/freescale/gianfar*
7529
7530 FREESCALE GPMI NAND DRIVER
7531 M:      Han Xu <han.xu@nxp.com>
7532 L:      linux-mtd@lists.infradead.org
7533 S:      Maintained
7534 F:      drivers/mtd/nand/raw/gpmi-nand/*
7535
7536 FREESCALE I2C CPM DRIVER
7537 M:      Jochen Friedrich <jochen@scram.de>
7538 L:      linuxppc-dev@lists.ozlabs.org
7539 L:      linux-i2c@vger.kernel.org
7540 S:      Maintained
7541 F:      drivers/i2c/busses/i2c-cpm.c
7542
7543 FREESCALE IMX / MXC FEC DRIVER
7544 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7545 L:      netdev@vger.kernel.org
7546 S:      Maintained
7547 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7548 F:      drivers/net/ethernet/freescale/fec.h
7549 F:      drivers/net/ethernet/freescale/fec_main.c
7550 F:      drivers/net/ethernet/freescale/fec_ptp.c
7551
7552 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7553 M:      Sascha Hauer <s.hauer@pengutronix.de>
7554 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7555 L:      linux-fbdev@vger.kernel.org
7556 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7557 S:      Maintained
7558 F:      drivers/video/fbdev/imxfb.c
7559 F:      include/linux/platform_data/video-imxfb.h
7560
7561 FREESCALE IMX DDR PMU DRIVER
7562 M:      Frank Li <Frank.li@nxp.com>
7563 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7564 S:      Maintained
7565 F:      Documentation/admin-guide/perf/imx-ddr.rst
7566 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7567 F:      drivers/perf/fsl_imx8_ddr_perf.c
7568
7569 FREESCALE IMX I2C DRIVER
7570 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7571 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7572 L:      linux-i2c@vger.kernel.org
7573 S:      Maintained
7574 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7575 F:      drivers/i2c/busses/i2c-imx.c
7576
7577 FREESCALE IMX LPI2C DRIVER
7578 M:      Dong Aisheng <aisheng.dong@nxp.com>
7579 L:      linux-i2c@vger.kernel.org
7580 L:      linux-imx@nxp.com
7581 S:      Maintained
7582 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7583 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7584
7585 FREESCALE MPC I2C DRIVER
7586 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7587 L:      linux-i2c@vger.kernel.org
7588 S:      Maintained
7589 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7590 F:      drivers/i2c/busses/i2c-mpc.c
7591
7592 FREESCALE QORIQ DPAA ETHERNET DRIVER
7593 M:      Madalin Bucur <madalin.bucur@nxp.com>
7594 L:      netdev@vger.kernel.org
7595 S:      Maintained
7596 F:      drivers/net/ethernet/freescale/dpaa
7597
7598 FREESCALE QORIQ DPAA FMAN DRIVER
7599 M:      Madalin Bucur <madalin.bucur@nxp.com>
7600 L:      netdev@vger.kernel.org
7601 S:      Maintained
7602 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7603 F:      drivers/net/ethernet/freescale/fman
7604
7605 FREESCALE QORIQ PTP CLOCK DRIVER
7606 M:      Yangbo Lu <yangbo.lu@nxp.com>
7607 L:      netdev@vger.kernel.org
7608 S:      Maintained
7609 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7610 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7611 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7612 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7613 F:      drivers/ptp/ptp_qoriq.c
7614 F:      drivers/ptp/ptp_qoriq_debugfs.c
7615 F:      include/linux/fsl/ptp_qoriq.h
7616
7617 FREESCALE QUAD SPI DRIVER
7618 M:      Han Xu <han.xu@nxp.com>
7619 L:      linux-spi@vger.kernel.org
7620 S:      Maintained
7621 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7622 F:      drivers/spi/spi-fsl-qspi.c
7623
7624 FREESCALE QUICC ENGINE LIBRARY
7625 M:      Qiang Zhao <qiang.zhao@nxp.com>
7626 L:      linuxppc-dev@lists.ozlabs.org
7627 S:      Maintained
7628 F:      drivers/soc/fsl/qe/
7629 F:      include/soc/fsl/*qe*.h
7630 F:      include/soc/fsl/*ucc*.h
7631
7632 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7633 M:      Li Yang <leoyang.li@nxp.com>
7634 L:      netdev@vger.kernel.org
7635 L:      linuxppc-dev@lists.ozlabs.org
7636 S:      Maintained
7637 F:      drivers/net/ethernet/freescale/ucc_geth*
7638
7639 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7640 M:      Zhao Qiang <qiang.zhao@nxp.com>
7641 L:      netdev@vger.kernel.org
7642 L:      linuxppc-dev@lists.ozlabs.org
7643 S:      Maintained
7644 F:      drivers/net/wan/fsl_ucc_hdlc*
7645
7646 FREESCALE QUICC ENGINE UCC UART DRIVER
7647 M:      Timur Tabi <timur@kernel.org>
7648 L:      linuxppc-dev@lists.ozlabs.org
7649 S:      Maintained
7650 F:      drivers/tty/serial/ucc_uart.c
7651
7652 FREESCALE SOC DRIVERS
7653 M:      Li Yang <leoyang.li@nxp.com>
7654 L:      linuxppc-dev@lists.ozlabs.org
7655 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7656 S:      Maintained
7657 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7658 F:      Documentation/devicetree/bindings/soc/fsl/
7659 F:      drivers/soc/fsl/
7660 F:      include/linux/fsl/
7661
7662 FREESCALE SOC FS_ENET DRIVER
7663 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7664 L:      linuxppc-dev@lists.ozlabs.org
7665 L:      netdev@vger.kernel.org
7666 S:      Maintained
7667 F:      drivers/net/ethernet/freescale/fs_enet/
7668 F:      include/linux/fs_enet_pd.h
7669
7670 FREESCALE SOC SOUND DRIVERS
7671 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7672 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7673 R:      Fabio Estevam <festevam@gmail.com>
7674 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7675 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7676 L:      linuxppc-dev@lists.ozlabs.org
7677 S:      Maintained
7678 F:      sound/soc/fsl/fsl*
7679 F:      sound/soc/fsl/imx*
7680 F:      sound/soc/fsl/mpc8610_hpcd.c
7681
7682 FREESCALE USB PERIPHERAL DRIVERS
7683 M:      Li Yang <leoyang.li@nxp.com>
7684 L:      linux-usb@vger.kernel.org
7685 L:      linuxppc-dev@lists.ozlabs.org
7686 S:      Maintained
7687 F:      drivers/usb/gadget/udc/fsl*
7688
7689 FREESCALE USB PHY DRIVER
7690 M:      Ran Wang <ran.wang_1@nxp.com>
7691 L:      linux-usb@vger.kernel.org
7692 L:      linuxppc-dev@lists.ozlabs.org
7693 S:      Maintained
7694 F:      drivers/usb/phy/phy-fsl-usb*
7695
7696 FREEVXFS FILESYSTEM
7697 M:      Christoph Hellwig <hch@infradead.org>
7698 S:      Maintained
7699 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7700 F:      fs/freevxfs/
7701
7702 FREEZER
7703 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7704 M:      Pavel Machek <pavel@ucw.cz>
7705 L:      linux-pm@vger.kernel.org
7706 S:      Supported
7707 F:      Documentation/power/freezing-of-tasks.rst
7708 F:      include/linux/freezer.h
7709 F:      kernel/freezer.c
7710
7711 FRONTSWAP API
7712 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7713 L:      linux-kernel@vger.kernel.org
7714 S:      Maintained
7715 F:      include/linux/frontswap.h
7716 F:      mm/frontswap.c
7717
7718 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7719 M:      David Howells <dhowells@redhat.com>
7720 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7721 S:      Supported
7722 F:      Documentation/filesystems/caching/
7723 F:      fs/fscache/
7724 F:      include/linux/fscache*.h
7725
7726 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7727 M:      Theodore Y. Ts'o <tytso@mit.edu>
7728 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7729 M:      Eric Biggers <ebiggers@kernel.org>
7730 L:      linux-fscrypt@vger.kernel.org
7731 S:      Supported
7732 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7733 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7734 F:      Documentation/filesystems/fscrypt.rst
7735 F:      fs/crypto/
7736 F:      include/linux/fscrypt*.h
7737 F:      include/uapi/linux/fscrypt.h
7738
7739 FSI SUBSYSTEM
7740 M:      Jeremy Kerr <jk@ozlabs.org>
7741 M:      Joel Stanley <joel@jms.id.au>
7742 R:      Alistar Popple <alistair@popple.id.au>
7743 R:      Eddie James <eajames@linux.ibm.com>
7744 L:      linux-fsi@lists.ozlabs.org
7745 S:      Supported
7746 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7748 F:      drivers/fsi/
7749 F:      include/linux/fsi*.h
7750 F:      include/trace/events/fsi*.h
7751
7752 FSI-ATTACHED I2C DRIVER
7753 M:      Eddie James <eajames@linux.ibm.com>
7754 L:      linux-i2c@vger.kernel.org
7755 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7756 S:      Maintained
7757 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7758 F:      drivers/i2c/busses/i2c-fsi.c
7759
7760 FSI-ATTACHED SPI DRIVER
7761 M:      Eddie James <eajames@linux.ibm.com>
7762 L:      linux-spi@vger.kernel.org
7763 S:      Maintained
7764 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7765 F:      drivers/spi/spi-fsi.c
7766
7767 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7768 M:      Jan Kara <jack@suse.cz>
7769 R:      Amir Goldstein <amir73il@gmail.com>
7770 L:      linux-fsdevel@vger.kernel.org
7771 S:      Maintained
7772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7773 F:      fs/notify/
7774 F:      include/linux/fsnotify*.h
7775
7776 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7777 M:      Eric Biggers <ebiggers@kernel.org>
7778 M:      Theodore Y. Ts'o <tytso@mit.edu>
7779 L:      linux-fscrypt@vger.kernel.org
7780 S:      Supported
7781 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7782 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7783 F:      Documentation/filesystems/fsverity.rst
7784 F:      fs/verity/
7785 F:      include/linux/fsverity.h
7786 F:      include/uapi/linux/fsverity.h
7787
7788 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7789 M:      Michael Zaidman <michael.zaidman@gmail.com>
7790 L:      linux-i2c@vger.kernel.org
7791 L:      linux-input@vger.kernel.org
7792 S:      Maintained
7793 F:      drivers/hid/hid-ft260.c
7794
7795 FUJITSU LAPTOP EXTRAS
7796 M:      Jonathan Woithe <jwoithe@just42.net>
7797 L:      platform-driver-x86@vger.kernel.org
7798 S:      Maintained
7799 F:      drivers/platform/x86/fujitsu-laptop.c
7800
7801 FUJITSU M-5MO LS CAMERA ISP DRIVER
7802 M:      Kyungmin Park <kyungmin.park@samsung.com>
7803 M:      Heungjun Kim <riverful.kim@samsung.com>
7804 L:      linux-media@vger.kernel.org
7805 S:      Maintained
7806 F:      drivers/media/i2c/m5mols/
7807 F:      include/media/i2c/m5mols.h
7808
7809 FUJITSU TABLET EXTRAS
7810 M:      Robert Gerlach <khnz@gmx.de>
7811 L:      platform-driver-x86@vger.kernel.org
7812 S:      Maintained
7813 F:      drivers/platform/x86/fujitsu-tablet.c
7814
7815 FUSE: FILESYSTEM IN USERSPACE
7816 M:      Miklos Szeredi <miklos@szeredi.hu>
7817 L:      linux-fsdevel@vger.kernel.org
7818 S:      Maintained
7819 W:      https://github.com/libfuse/
7820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7821 F:      Documentation/filesystems/fuse.rst
7822 F:      fs/fuse/
7823 F:      include/uapi/linux/fuse.h
7824
7825 FUTEX SUBSYSTEM
7826 M:      Thomas Gleixner <tglx@linutronix.de>
7827 M:      Ingo Molnar <mingo@redhat.com>
7828 R:      Peter Zijlstra <peterz@infradead.org>
7829 R:      Darren Hart <dvhart@infradead.org>
7830 R:      Davidlohr Bueso <dave@stgolabs.net>
7831 R:      André Almeida <andrealmeid@collabora.com>
7832 L:      linux-kernel@vger.kernel.org
7833 S:      Maintained
7834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7835 F:      Documentation/locking/*futex*
7836 F:      include/asm-generic/futex.h
7837 F:      include/linux/futex.h
7838 F:      include/uapi/linux/futex.h
7839 F:      kernel/futex/*
7840 F:      tools/perf/bench/futex*
7841 F:      tools/testing/selftests/futex/
7842
7843 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7844 M:      Tim Harvey <tharvey@gateworks.com>
7845 M:      Robert Jones <rjones@gateworks.com>
7846 S:      Maintained
7847 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7848 F:      drivers/mfd/gateworks-gsc.c
7849 F:      include/linux/mfd/gsc.h
7850 F:      Documentation/hwmon/gsc-hwmon.rst
7851 F:      drivers/hwmon/gsc-hwmon.c
7852 F:      include/linux/platform_data/gsc_hwmon.h
7853
7854 GCC PLUGINS
7855 M:      Kees Cook <keescook@chromium.org>
7856 L:      linux-hardening@vger.kernel.org
7857 S:      Maintained
7858 F:      Documentation/kbuild/gcc-plugins.rst
7859 F:      scripts/Makefile.gcc-plugins
7860 F:      scripts/gcc-plugins/
7861
7862 GCOV BASED KERNEL PROFILING
7863 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7864 S:      Maintained
7865 F:      Documentation/dev-tools/gcov.rst
7866 F:      kernel/gcov/
7867
7868 GDB KERNEL DEBUGGING HELPER SCRIPTS
7869 M:      Jan Kiszka <jan.kiszka@siemens.com>
7870 M:      Kieran Bingham <kbingham@kernel.org>
7871 S:      Supported
7872 F:      scripts/gdb/
7873
7874 GEMINI CRYPTO DRIVER
7875 M:      Corentin Labbe <clabbe@baylibre.com>
7876 L:      linux-crypto@vger.kernel.org
7877 S:      Maintained
7878 F:      drivers/crypto/gemini/
7879
7880 GEMTEK FM RADIO RECEIVER DRIVER
7881 M:      Hans Verkuil <hverkuil@xs4all.nl>
7882 L:      linux-media@vger.kernel.org
7883 S:      Maintained
7884 W:      https://linuxtv.org
7885 T:      git git://linuxtv.org/media_tree.git
7886 F:      drivers/media/radio/radio-gemtek*
7887
7888 GENERIC ARCHITECTURE TOPOLOGY
7889 M:      Sudeep Holla <sudeep.holla@arm.com>
7890 L:      linux-kernel@vger.kernel.org
7891 S:      Maintained
7892 F:      drivers/base/arch_topology.c
7893 F:      include/linux/arch_topology.h
7894
7895 GENERIC ENTRY CODE
7896 M:      Thomas Gleixner <tglx@linutronix.de>
7897 M:      Peter Zijlstra <peterz@infradead.org>
7898 M:      Andy Lutomirski <luto@kernel.org>
7899 L:      linux-kernel@vger.kernel.org
7900 S:      Maintained
7901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7902 F:      include/linux/entry-common.h
7903 F:      include/linux/entry-kvm.h
7904 F:      kernel/entry/
7905
7906 GENERIC GPIO I2C DRIVER
7907 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7908 S:      Supported
7909 F:      drivers/i2c/busses/i2c-gpio.c
7910 F:      include/linux/platform_data/i2c-gpio.h
7911
7912 GENERIC GPIO I2C MULTIPLEXER DRIVER
7913 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7914 L:      linux-i2c@vger.kernel.org
7915 S:      Supported
7916 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7917 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7918 F:      include/linux/platform_data/i2c-mux-gpio.h
7919
7920 GENERIC HDLC (WAN) DRIVERS
7921 M:      Krzysztof Halasa <khc@pm.waw.pl>
7922 S:      Maintained
7923 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7924 F:      drivers/net/wan/c101.c
7925 F:      drivers/net/wan/hd6457*
7926 F:      drivers/net/wan/hdlc*
7927 F:      drivers/net/wan/n2.c
7928 F:      drivers/net/wan/pc300too.c
7929 F:      drivers/net/wan/pci200syn.c
7930 F:      drivers/net/wan/wanxl*
7931
7932 GENERIC INCLUDE/ASM HEADER FILES
7933 M:      Arnd Bergmann <arnd@arndb.de>
7934 L:      linux-arch@vger.kernel.org
7935 S:      Maintained
7936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7937 F:      include/asm-generic/
7938 F:      include/uapi/asm-generic/
7939
7940 GENERIC PHY FRAMEWORK
7941 M:      Kishon Vijay Abraham I <kishon@ti.com>
7942 M:      Vinod Koul <vkoul@kernel.org>
7943 L:      linux-phy@lists.infradead.org
7944 S:      Supported
7945 Q:      https://patchwork.kernel.org/project/linux-phy/list/
7946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7947 F:      Documentation/devicetree/bindings/phy/
7948 F:      drivers/phy/
7949 F:      include/linux/phy/
7950
7951 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7952 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7953 S:      Supported
7954 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7955
7956 GENERIC PM DOMAINS
7957 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7958 M:      Kevin Hilman <khilman@kernel.org>
7959 M:      Ulf Hansson <ulf.hansson@linaro.org>
7960 L:      linux-pm@vger.kernel.org
7961 S:      Supported
7962 F:      Documentation/devicetree/bindings/power/power?domain*
7963 F:      drivers/base/power/domain*.c
7964 F:      include/linux/pm_domain.h
7965
7966 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7967 M:      Eugen Hristev <eugen.hristev@microchip.com>
7968 L:      linux-input@vger.kernel.org
7969 S:      Maintained
7970 F:      drivers/input/touchscreen/resistive-adc-touch.c
7971
7972 GENERIC STRING LIBRARY
7973 R:      Andy Shevchenko <andy@kernel.org>
7974 S:      Maintained
7975 F:      lib/string.c
7976 F:      lib/string_helpers.c
7977 F:      lib/test_string.c
7978 F:      lib/test-string_helpers.c
7979
7980 GENERIC UIO DRIVER FOR PCI DEVICES
7981 M:      "Michael S. Tsirkin" <mst@redhat.com>
7982 L:      kvm@vger.kernel.org
7983 S:      Supported
7984 F:      drivers/uio/uio_pci_generic.c
7985
7986 GENERIC VDSO LIBRARY
7987 M:      Andy Lutomirski <luto@kernel.org>
7988 M:      Thomas Gleixner <tglx@linutronix.de>
7989 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7990 L:      linux-kernel@vger.kernel.org
7991 S:      Maintained
7992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7993 F:      include/asm-generic/vdso/vsyscall.h
7994 F:      include/vdso/
7995 F:      kernel/time/vsyscall.c
7996 F:      lib/vdso/
7997
7998 GENWQE (IBM Generic Workqueue Card)
7999 M:      Frank Haverkamp <haver@linux.ibm.com>
8000 S:      Supported
8001 F:      drivers/misc/genwqe/
8002
8003 GET_MAINTAINER SCRIPT
8004 M:      Joe Perches <joe@perches.com>
8005 S:      Maintained
8006 F:      scripts/get_maintainer.pl
8007
8008 GFS2 FILE SYSTEM
8009 M:      Bob Peterson <rpeterso@redhat.com>
8010 M:      Andreas Gruenbacher <agruenba@redhat.com>
8011 L:      cluster-devel@redhat.com
8012 S:      Supported
8013 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8015 F:      Documentation/filesystems/gfs2*
8016 F:      fs/gfs2/
8017 F:      include/uapi/linux/gfs2_ondisk.h
8018
8019 GIGABYTE WMI DRIVER
8020 M:      Thomas Weißschuh <thomas@weissschuh.net>
8021 L:      platform-driver-x86@vger.kernel.org
8022 S:      Maintained
8023 F:      drivers/platform/x86/gigabyte-wmi.c
8024
8025 GNSS SUBSYSTEM
8026 M:      Johan Hovold <johan@kernel.org>
8027 S:      Maintained
8028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8029 F:      Documentation/ABI/testing/sysfs-class-gnss
8030 F:      Documentation/devicetree/bindings/gnss/
8031 F:      drivers/gnss/
8032 F:      include/linux/gnss.h
8033
8034 GO7007 MPEG CODEC
8035 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8036 L:      linux-media@vger.kernel.org
8037 S:      Maintained
8038 F:      drivers/media/usb/go7007/
8039
8040 GOODIX TOUCHSCREEN
8041 M:      Bastien Nocera <hadess@hadess.net>
8042 L:      linux-input@vger.kernel.org
8043 S:      Maintained
8044 F:      drivers/input/touchscreen/goodix.c
8045
8046 GOOGLE ETHERNET DRIVERS
8047 M:      Jeroen de Borst <jeroendb@google.com>
8048 R:      Catherine Sullivan <csully@google.com>
8049 R:      David Awogbemila <awogbemila@google.com>
8050 L:      netdev@vger.kernel.org
8051 S:      Supported
8052 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8053 F:      drivers/net/ethernet/google
8054
8055 GPD POCKET FAN DRIVER
8056 M:      Hans de Goede <hdegoede@redhat.com>
8057 L:      platform-driver-x86@vger.kernel.org
8058 S:      Maintained
8059 F:      drivers/platform/x86/gpd-pocket-fan.c
8060
8061 GPIO ACPI SUPPORT
8062 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8063 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8064 L:      linux-gpio@vger.kernel.org
8065 L:      linux-acpi@vger.kernel.org
8066 S:      Maintained
8067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8068 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8069 F:      drivers/gpio/gpiolib-acpi.c
8070 F:      drivers/gpio/gpiolib-acpi.h
8071
8072 GPIO AGGREGATOR
8073 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8074 L:      linux-gpio@vger.kernel.org
8075 S:      Supported
8076 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8077 F:      drivers/gpio/gpio-aggregator.c
8078
8079 GPIO IR Transmitter
8080 M:      Sean Young <sean@mess.org>
8081 L:      linux-media@vger.kernel.org
8082 S:      Maintained
8083 F:      drivers/media/rc/gpio-ir-tx.c
8084
8085 GPIO MOCKUP DRIVER
8086 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8087 L:      linux-gpio@vger.kernel.org
8088 S:      Maintained
8089 F:      drivers/gpio/gpio-mockup.c
8090 F:      tools/testing/selftests/gpio/
8091
8092 GPIO REGMAP
8093 R:      Michael Walle <michael@walle.cc>
8094 S:      Maintained
8095 F:      drivers/gpio/gpio-regmap.c
8096 F:      include/linux/gpio/regmap.h
8097
8098 GPIO SUBSYSTEM
8099 M:      Linus Walleij <linus.walleij@linaro.org>
8100 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8101 L:      linux-gpio@vger.kernel.org
8102 S:      Maintained
8103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
8104 F:      Documentation/ABI/obsolete/sysfs-gpio
8105 F:      Documentation/ABI/testing/gpio-cdev
8106 F:      Documentation/admin-guide/gpio/
8107 F:      Documentation/devicetree/bindings/gpio/
8108 F:      Documentation/driver-api/gpio/
8109 F:      drivers/gpio/
8110 F:      include/asm-generic/gpio.h
8111 F:      include/linux/gpio.h
8112 F:      include/linux/gpio/
8113 F:      include/linux/of_gpio.h
8114 F:      include/uapi/linux/gpio.h
8115 F:      tools/gpio/
8116
8117 GRE DEMULTIPLEXER DRIVER
8118 M:      Dmitry Kozlov <xeb@mail.ru>
8119 L:      netdev@vger.kernel.org
8120 S:      Maintained
8121 F:      include/net/gre.h
8122 F:      net/ipv4/gre_demux.c
8123 F:      net/ipv4/gre_offload.c
8124
8125 GRETH 10/100/1G Ethernet MAC device driver
8126 M:      Andreas Larsson <andreas@gaisler.com>
8127 L:      netdev@vger.kernel.org
8128 S:      Maintained
8129 F:      drivers/net/ethernet/aeroflex/
8130
8131 GREYBUS AUDIO PROTOCOLS DRIVERS
8132 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8133 M:      Mark Greer <mgreer@animalcreek.com>
8134 S:      Maintained
8135 F:      drivers/staging/greybus/audio_apbridgea.c
8136 F:      drivers/staging/greybus/audio_apbridgea.h
8137 F:      drivers/staging/greybus/audio_codec.c
8138 F:      drivers/staging/greybus/audio_codec.h
8139 F:      drivers/staging/greybus/audio_gb.c
8140 F:      drivers/staging/greybus/audio_manager.c
8141 F:      drivers/staging/greybus/audio_manager.h
8142 F:      drivers/staging/greybus/audio_manager_module.c
8143 F:      drivers/staging/greybus/audio_manager_private.h
8144 F:      drivers/staging/greybus/audio_manager_sysfs.c
8145 F:      drivers/staging/greybus/audio_module.c
8146 F:      drivers/staging/greybus/audio_topology.c
8147
8148 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8149 M:      Viresh Kumar <vireshk@kernel.org>
8150 S:      Maintained
8151 F:      drivers/staging/greybus/authentication.c
8152 F:      drivers/staging/greybus/bootrom.c
8153 F:      drivers/staging/greybus/firmware.h
8154 F:      drivers/staging/greybus/fw-core.c
8155 F:      drivers/staging/greybus/fw-download.c
8156 F:      drivers/staging/greybus/fw-management.c
8157 F:      drivers/staging/greybus/greybus_authentication.h
8158 F:      drivers/staging/greybus/greybus_firmware.h
8159 F:      drivers/staging/greybus/hid.c
8160 F:      drivers/staging/greybus/i2c.c
8161 F:      drivers/staging/greybus/spi.c
8162 F:      drivers/staging/greybus/spilib.c
8163 F:      drivers/staging/greybus/spilib.h
8164
8165 GREYBUS LOOPBACK DRIVER
8166 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8167 S:      Maintained
8168 F:      drivers/staging/greybus/loopback.c
8169
8170 GREYBUS PLATFORM DRIVERS
8171 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8172 S:      Maintained
8173 F:      drivers/staging/greybus/arche-apb-ctrl.c
8174 F:      drivers/staging/greybus/arche-platform.c
8175 F:      drivers/staging/greybus/arche_platform.h
8176
8177 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8178 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8179 S:      Maintained
8180 F:      drivers/staging/greybus/gpio.c
8181 F:      drivers/staging/greybus/light.c
8182 F:      drivers/staging/greybus/power_supply.c
8183 F:      drivers/staging/greybus/sdio.c
8184 F:      drivers/staging/greybus/spi.c
8185 F:      drivers/staging/greybus/spilib.c
8186
8187 GREYBUS SUBSYSTEM
8188 M:      Johan Hovold <johan@kernel.org>
8189 M:      Alex Elder <elder@kernel.org>
8190 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8191 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8192 S:      Maintained
8193 F:      drivers/greybus/
8194 F:      drivers/staging/greybus/
8195 F:      include/linux/greybus.h
8196 F:      include/linux/greybus/
8197
8198 GREYBUS UART PROTOCOLS DRIVERS
8199 M:      David Lin <dtwlin@gmail.com>
8200 S:      Maintained
8201 F:      drivers/staging/greybus/log.c
8202 F:      drivers/staging/greybus/uart.c
8203
8204 GS1662 VIDEO SERIALIZER
8205 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8206 L:      linux-media@vger.kernel.org
8207 S:      Maintained
8208 T:      git git://linuxtv.org/media_tree.git
8209 F:      drivers/media/spi/gs1662.c
8210
8211 GSPCA FINEPIX SUBDRIVER
8212 M:      Frank Zago <frank@zago.net>
8213 L:      linux-media@vger.kernel.org
8214 S:      Maintained
8215 T:      git git://linuxtv.org/media_tree.git
8216 F:      drivers/media/usb/gspca/finepix.c
8217
8218 GSPCA GL860 SUBDRIVER
8219 M:      Olivier Lorin <o.lorin@laposte.net>
8220 L:      linux-media@vger.kernel.org
8221 S:      Maintained
8222 T:      git git://linuxtv.org/media_tree.git
8223 F:      drivers/media/usb/gspca/gl860/
8224
8225 GSPCA M5602 SUBDRIVER
8226 M:      Erik Andren <erik.andren@gmail.com>
8227 L:      linux-media@vger.kernel.org
8228 S:      Maintained
8229 T:      git git://linuxtv.org/media_tree.git
8230 F:      drivers/media/usb/gspca/m5602/
8231
8232 GSPCA PAC207 SONIXB SUBDRIVER
8233 M:      Hans Verkuil <hverkuil@xs4all.nl>
8234 L:      linux-media@vger.kernel.org
8235 S:      Odd Fixes
8236 T:      git git://linuxtv.org/media_tree.git
8237 F:      drivers/media/usb/gspca/pac207.c
8238
8239 GSPCA SN9C20X SUBDRIVER
8240 M:      Brian Johnson <brijohn@gmail.com>
8241 L:      linux-media@vger.kernel.org
8242 S:      Maintained
8243 T:      git git://linuxtv.org/media_tree.git
8244 F:      drivers/media/usb/gspca/sn9c20x.c
8245
8246 GSPCA T613 SUBDRIVER
8247 M:      Leandro Costantino <lcostantino@gmail.com>
8248 L:      linux-media@vger.kernel.org
8249 S:      Maintained
8250 T:      git git://linuxtv.org/media_tree.git
8251 F:      drivers/media/usb/gspca/t613.c
8252
8253 GSPCA USB WEBCAM DRIVER
8254 M:      Hans Verkuil <hverkuil@xs4all.nl>
8255 L:      linux-media@vger.kernel.org
8256 S:      Odd Fixes
8257 T:      git git://linuxtv.org/media_tree.git
8258 F:      drivers/media/usb/gspca/
8259
8260 GTP (GPRS Tunneling Protocol)
8261 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8262 M:      Harald Welte <laforge@gnumonks.org>
8263 L:      osmocom-net-gprs@lists.osmocom.org
8264 S:      Maintained
8265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8266 F:      drivers/net/gtp.c
8267
8268 GUID PARTITION TABLE (GPT)
8269 M:      Davidlohr Bueso <dave@stgolabs.net>
8270 L:      linux-efi@vger.kernel.org
8271 S:      Maintained
8272 F:      block/partitions/efi.*
8273
8274 H8/300 ARCHITECTURE
8275 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8276 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8277 S:      Maintained
8278 W:      http://uclinux-h8.sourceforge.jp
8279 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8280 F:      arch/h8300/
8281 F:      drivers/clk/h8300/
8282 F:      drivers/clocksource/h8300_*.c
8283 F:      drivers/irqchip/irq-renesas-h8*.c
8284
8285 HABANALABS PCI DRIVER
8286 M:      Oded Gabbay <ogabbay@kernel.org>
8287 S:      Supported
8288 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8289 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8290 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8291 F:      drivers/misc/habanalabs/
8292 F:      include/uapi/misc/habanalabs.h
8293
8294 HACKRF MEDIA DRIVER
8295 M:      Antti Palosaari <crope@iki.fi>
8296 L:      linux-media@vger.kernel.org
8297 S:      Maintained
8298 W:      https://linuxtv.org
8299 W:      http://palosaari.fi/linux/
8300 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8301 T:      git git://linuxtv.org/anttip/media_tree.git
8302 F:      drivers/media/usb/hackrf/
8303
8304 HANTRO VPU CODEC DRIVER
8305 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8306 M:      Philipp Zabel <p.zabel@pengutronix.de>
8307 L:      linux-media@vger.kernel.org
8308 L:      linux-rockchip@lists.infradead.org
8309 S:      Maintained
8310 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8311 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8312 F:      drivers/staging/media/hantro/
8313
8314 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8315 M:      Frank Seidel <frank@f-seidel.de>
8316 L:      platform-driver-x86@vger.kernel.org
8317 S:      Maintained
8318 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8319 F:      drivers/platform/x86/hdaps.c
8320
8321 HARDWARE MONITORING
8322 M:      Jean Delvare <jdelvare@suse.com>
8323 M:      Guenter Roeck <linux@roeck-us.net>
8324 L:      linux-hwmon@vger.kernel.org
8325 S:      Maintained
8326 W:      http://hwmon.wiki.kernel.org/
8327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8328 F:      Documentation/ABI/testing/sysfs-class-hwmon
8329 F:      Documentation/devicetree/bindings/hwmon/
8330 F:      Documentation/hwmon/
8331 F:      drivers/hwmon/
8332 F:      include/linux/hwmon*.h
8333 F:      include/trace/events/hwmon*.h
8334 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8335
8336 HARDWARE RANDOM NUMBER GENERATOR CORE
8337 M:      Matt Mackall <mpm@selenic.com>
8338 M:      Herbert Xu <herbert@gondor.apana.org.au>
8339 L:      linux-crypto@vger.kernel.org
8340 S:      Odd fixes
8341 F:      Documentation/admin-guide/hw_random.rst
8342 F:      Documentation/devicetree/bindings/rng/
8343 F:      drivers/char/hw_random/
8344 F:      include/linux/hw_random.h
8345
8346 HARDWARE SPINLOCK CORE
8347 M:      Ohad Ben-Cohen <ohad@wizery.com>
8348 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8349 R:      Baolin Wang <baolin.wang7@gmail.com>
8350 L:      linux-remoteproc@vger.kernel.org
8351 S:      Maintained
8352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8353 F:      Documentation/devicetree/bindings/hwlock/
8354 F:      Documentation/locking/hwspinlock.rst
8355 F:      drivers/hwspinlock/
8356 F:      include/linux/hwspinlock.h
8357
8358 HARDWARE TRACING FACILITIES
8359 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8360 S:      Maintained
8361 F:      drivers/hwtracing/
8362
8363 HARMONY SOUND DRIVER
8364 L:      linux-parisc@vger.kernel.org
8365 S:      Maintained
8366 F:      sound/parisc/harmony.*
8367
8368 HDPVR USB VIDEO ENCODER DRIVER
8369 M:      Hans Verkuil <hverkuil@xs4all.nl>
8370 L:      linux-media@vger.kernel.org
8371 S:      Odd Fixes
8372 W:      https://linuxtv.org
8373 T:      git git://linuxtv.org/media_tree.git
8374 F:      drivers/media/usb/hdpvr/
8375
8376 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8377 M:      Matt Hsiao <matt.hsiao@hpe.com>
8378 S:      Supported
8379 F:      drivers/misc/hpilo.[ch]
8380
8381 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8382 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8383 S:      Supported
8384 F:      Documentation/watchdog/hpwdt.rst
8385 F:      drivers/watchdog/hpwdt.c
8386
8387 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8388 M:      Don Brace <don.brace@microchip.com>
8389 L:      storagedev@microchip.com
8390 L:      linux-scsi@vger.kernel.org
8391 S:      Supported
8392 F:      Documentation/scsi/hpsa.rst
8393 F:      drivers/scsi/hpsa*.[ch]
8394 F:      include/linux/cciss*.h
8395 F:      include/uapi/linux/cciss*.h
8396
8397 HFI1 DRIVER
8398 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8399 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8400 L:      linux-rdma@vger.kernel.org
8401 S:      Supported
8402 F:      drivers/infiniband/hw/hfi1
8403
8404 HFS FILESYSTEM
8405 L:      linux-fsdevel@vger.kernel.org
8406 S:      Orphan
8407 F:      Documentation/filesystems/hfs.rst
8408 F:      fs/hfs/
8409
8410 HFSPLUS FILESYSTEM
8411 L:      linux-fsdevel@vger.kernel.org
8412 S:      Orphan
8413 F:      Documentation/filesystems/hfsplus.rst
8414 F:      fs/hfsplus/
8415
8416 HGA FRAMEBUFFER DRIVER
8417 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8418 L:      linux-nvidia@lists.surfsouth.com
8419 S:      Maintained
8420 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8421 F:      drivers/video/fbdev/hgafb.c
8422
8423 HIBERNATION (aka Software Suspend, aka swsusp)
8424 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8425 M:      Pavel Machek <pavel@ucw.cz>
8426 L:      linux-pm@vger.kernel.org
8427 S:      Supported
8428 B:      https://bugzilla.kernel.org
8429 F:      arch/*/include/asm/suspend*.h
8430 F:      arch/x86/power/
8431 F:      drivers/base/power/
8432 F:      include/linux/freezer.h
8433 F:      include/linux/pm.h
8434 F:      include/linux/suspend.h
8435 F:      kernel/power/
8436
8437 HID CORE LAYER
8438 M:      Jiri Kosina <jikos@kernel.org>
8439 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8440 L:      linux-input@vger.kernel.org
8441 S:      Maintained
8442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8443 F:      drivers/hid/
8444 F:      include/linux/hid*
8445 F:      include/uapi/linux/hid*
8446
8447 HID PLAYSTATION DRIVER
8448 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8449 L:      linux-input@vger.kernel.org
8450 S:      Supported
8451 F:      drivers/hid/hid-playstation.c
8452
8453 HID SENSOR HUB DRIVERS
8454 M:      Jiri Kosina <jikos@kernel.org>
8455 M:      Jonathan Cameron <jic23@kernel.org>
8456 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8457 L:      linux-input@vger.kernel.org
8458 L:      linux-iio@vger.kernel.org
8459 S:      Maintained
8460 F:      Documentation/hid/hid-sensor*
8461 F:      drivers/hid/hid-sensor-*
8462 F:      drivers/iio/*/hid-*
8463 F:      include/linux/hid-sensor-*
8464
8465 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8466 M:      Thomas Gleixner <tglx@linutronix.de>
8467 L:      linux-kernel@vger.kernel.org
8468 S:      Maintained
8469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8470 F:      Documentation/timers/
8471 F:      include/linux/clockchips.h
8472 F:      include/linux/hrtimer.h
8473 F:      kernel/time/clockevents.c
8474 F:      kernel/time/hrtimer.c
8475 F:      kernel/time/timer_*.c
8476
8477 HIGH-SPEED SCC DRIVER FOR AX.25
8478 L:      linux-hams@vger.kernel.org
8479 S:      Orphan
8480 F:      drivers/net/hamradio/dmascc.c
8481 F:      drivers/net/hamradio/scc.c
8482
8483 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8484 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8485 S:      Supported
8486 W:      http://www.highpoint-tech.com
8487 F:      Documentation/scsi/hptiop.rst
8488 F:      drivers/scsi/hptiop.c
8489
8490 HIPPI
8491 M:      Jes Sorensen <jes@trained-monkey.org>
8492 L:      linux-hippi@sunsite.dk
8493 S:      Maintained
8494 F:      drivers/net/hippi/
8495 F:      include/linux/hippidevice.h
8496 F:      include/uapi/linux/if_hippi.h
8497 F:      net/802/hippi.c
8498
8499 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8500 M:      Kurt Kanzenbach <kurt@linutronix.de>
8501 L:      netdev@vger.kernel.org
8502 S:      Maintained
8503 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8504 F:      drivers/net/dsa/hirschmann/*
8505 F:      include/linux/platform_data/hirschmann-hellcreek.h
8506 F:      net/dsa/tag_hellcreek.c
8507
8508 HISILICON DMA DRIVER
8509 M:      Zhou Wang <wangzhou1@hisilicon.com>
8510 L:      dmaengine@vger.kernel.org
8511 S:      Maintained
8512 F:      drivers/dma/hisi_dma.c
8513
8514 HISILICON GPIO DRIVER
8515 M:      Luo Jiaxing <luojiaxing@huawei.com>
8516 L:      linux-gpio@vger.kernel.org
8517 S:      Maintained
8518 F:      drivers/gpio/gpio-hisi.c
8519
8520 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8521 M:      Zaibo Xu <xuzaibo@huawei.com>
8522 L:      linux-crypto@vger.kernel.org
8523 S:      Maintained
8524 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8525 F:      drivers/crypto/hisilicon/hpre/hpre.h
8526 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8527 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8528
8529 HISILICON I2C CONTROLLER DRIVER
8530 M:      Yicong Yang <yangyicong@hisilicon.com>
8531 L:      linux-i2c@vger.kernel.org
8532 S:      Maintained
8533 W:      https://www.hisilicon.com
8534 F:      drivers/i2c/busses/i2c-hisi.c
8535
8536 HISILICON LPC BUS DRIVER
8537 M:      john.garry@huawei.com
8538 S:      Maintained
8539 W:      http://www.hisilicon.com
8540 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8541 F:      drivers/bus/hisi_lpc.c
8542
8543 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8544 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8545 M:      Salil Mehta <salil.mehta@huawei.com>
8546 L:      netdev@vger.kernel.org
8547 S:      Maintained
8548 W:      http://www.hisilicon.com
8549 F:      drivers/net/ethernet/hisilicon/hns3/
8550
8551 HISILICON NETWORK SUBSYSTEM DRIVER
8552 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8553 M:      Salil Mehta <salil.mehta@huawei.com>
8554 L:      netdev@vger.kernel.org
8555 S:      Maintained
8556 W:      http://www.hisilicon.com
8557 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8558 F:      drivers/net/ethernet/hisilicon/
8559
8560 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8561 M:      John Stultz <john.stultz@linaro.org>
8562 L:      linux-kernel@vger.kernel.org
8563 S:      Maintained
8564 F:      drivers/misc/hisi_hikey_usb.c
8565 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8566
8567 HISILICON PMU DRIVER
8568 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8569 S:      Supported
8570 W:      http://www.hisilicon.com
8571 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8572 F:      drivers/perf/hisilicon
8573
8574 HISILICON QM AND ZIP Controller DRIVER
8575 M:      Zhou Wang <wangzhou1@hisilicon.com>
8576 L:      linux-crypto@vger.kernel.org
8577 S:      Maintained
8578 F:      Documentation/ABI/testing/debugfs-hisi-zip
8579 F:      drivers/crypto/hisilicon/qm.c
8580 F:      drivers/crypto/hisilicon/qm.h
8581 F:      drivers/crypto/hisilicon/sgl.c
8582 F:      drivers/crypto/hisilicon/zip/
8583
8584 HISILICON ROCE DRIVER
8585 M:      Wenpeng Liang <liangwenpeng@huawei.com>
8586 M:      Weihang Li <liweihang@huawei.com>
8587 L:      linux-rdma@vger.kernel.org
8588 S:      Maintained
8589 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8590 F:      drivers/infiniband/hw/hns/
8591
8592 HISILICON SAS Controller
8593 M:      John Garry <john.garry@huawei.com>
8594 S:      Supported
8595 W:      http://www.hisilicon.com
8596 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8597 F:      drivers/scsi/hisi_sas/
8598
8599 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8600 M:      Zaibo Xu <xuzaibo@huawei.com>
8601 L:      linux-crypto@vger.kernel.org
8602 S:      Maintained
8603 F:      Documentation/ABI/testing/debugfs-hisi-sec
8604 F:      drivers/crypto/hisilicon/sec2/sec.h
8605 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8606 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8607 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8608
8609 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8610 M:      Jay Fang <f.fangjian@huawei.com>
8611 L:      linux-spi@vger.kernel.org
8612 S:      Maintained
8613 W:      http://www.hisilicon.com
8614 F:      drivers/spi/spi-hisi-kunpeng.c
8615
8616 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8617 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8618 L:      linux-kernel@vger.kernel.org
8619 S:      Maintained
8620 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8621 F:      drivers/spmi/hisi-spmi-controller.c
8622
8623 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8624 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8625 L:      linux-kernel@vger.kernel.org
8626 S:      Maintained
8627 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8628 F:      drivers/mfd/hi6421-spmi-pmic.c
8629
8630 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8631 M:      Zaibo Xu <xuzaibo@huawei.com>
8632 S:      Maintained
8633 F:      drivers/crypto/hisilicon/trng/trng.c
8634
8635 HISILICON V3XX SPI NOR FLASH Controller Driver
8636 M:      John Garry <john.garry@huawei.com>
8637 S:      Maintained
8638 W:      http://www.hisilicon.com
8639 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8640
8641 HMM - Heterogeneous Memory Management
8642 M:      Jérôme Glisse <jglisse@redhat.com>
8643 L:      linux-mm@kvack.org
8644 S:      Maintained
8645 F:      Documentation/vm/hmm.rst
8646 F:      include/linux/hmm*
8647 F:      lib/test_hmm*
8648 F:      mm/hmm*
8649 F:      tools/testing/selftests/vm/*hmm*
8650
8651 HOST AP DRIVER
8652 M:      Jouni Malinen <j@w1.fi>
8653 L:      linux-wireless@vger.kernel.org
8654 S:      Obsolete
8655 W:      http://w1.fi/hostap-driver.html
8656 F:      drivers/net/wireless/intersil/hostap/
8657
8658 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8659 L:      platform-driver-x86@vger.kernel.org
8660 S:      Orphan
8661 F:      drivers/platform/x86/tc1100-wmi.c
8662
8663 HPET:   High Precision Event Timers driver
8664 M:      Clemens Ladisch <clemens@ladisch.de>
8665 S:      Maintained
8666 F:      Documentation/timers/hpet.rst
8667 F:      drivers/char/hpet.c
8668 F:      include/linux/hpet.h
8669 F:      include/uapi/linux/hpet.h
8670
8671 HPET:   x86
8672 S:      Orphan
8673 F:      arch/x86/include/asm/hpet.h
8674 F:      arch/x86/kernel/hpet.c
8675
8676 HPFS FILESYSTEM
8677 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8678 S:      Maintained
8679 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8680 F:      fs/hpfs/
8681
8682 HSI SUBSYSTEM
8683 M:      Sebastian Reichel <sre@kernel.org>
8684 S:      Maintained
8685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8686 F:      Documentation/ABI/testing/sysfs-bus-hsi
8687 F:      Documentation/driver-api/hsi.rst
8688 F:      drivers/hsi/
8689 F:      include/linux/hsi/
8690 F:      include/uapi/linux/hsi/
8691
8692 HSO 3G MODEM DRIVER
8693 L:      linux-usb@vger.kernel.org
8694 S:      Orphan
8695 F:      drivers/net/usb/hso.c
8696
8697 HSR NETWORK PROTOCOL
8698 L:      netdev@vger.kernel.org
8699 S:      Orphan
8700 F:      net/hsr/
8701
8702 HT16K33 LED CONTROLLER DRIVER
8703 M:      Robin van der Gracht <robin@protonic.nl>
8704 S:      Maintained
8705 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8706 F:      drivers/auxdisplay/ht16k33.c
8707
8708 HTCPEN TOUCHSCREEN DRIVER
8709 M:      Pau Oliva Fora <pof@eslack.org>
8710 L:      linux-input@vger.kernel.org
8711 S:      Maintained
8712 F:      drivers/input/touchscreen/htcpen.c
8713
8714 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8715 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8716 L:      linux-iio@vger.kernel.org
8717 S:      Maintained
8718 W:      http://www.st.com/
8719 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8720 F:      drivers/iio/humidity/hts221*
8721
8722 HUAWEI ETHERNET DRIVER
8723 L:      netdev@vger.kernel.org
8724 S:      Orphan
8725 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8726 F:      drivers/net/ethernet/huawei/hinic/
8727
8728 HUGETLB FILESYSTEM
8729 M:      Mike Kravetz <mike.kravetz@oracle.com>
8730 L:      linux-mm@kvack.org
8731 S:      Maintained
8732 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8733 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8734 F:      Documentation/vm/hugetlbfs_reserv.rst
8735 F:      fs/hugetlbfs/
8736 F:      include/linux/hugetlb.h
8737 F:      mm/hugetlb.c
8738
8739 HVA ST MEDIA DRIVER
8740 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8741 L:      linux-media@vger.kernel.org
8742 S:      Supported
8743 W:      https://linuxtv.org
8744 T:      git git://linuxtv.org/media_tree.git
8745 F:      drivers/media/platform/sti/hva
8746
8747 HWPOISON MEMORY FAILURE HANDLING
8748 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8749 L:      linux-mm@kvack.org
8750 S:      Maintained
8751 F:      mm/hwpoison-inject.c
8752 F:      mm/memory-failure.c
8753
8754 HYCON HY46XX TOUCHSCREEN SUPPORT
8755 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
8756 L:      linux-input@vger.kernel.org
8757 S:      Maintained
8758 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8759 F:      drivers/input/touchscreen/hycon-hy46xx.c
8760
8761 HYGON PROCESSOR SUPPORT
8762 M:      Pu Wen <puwen@hygon.cn>
8763 L:      linux-kernel@vger.kernel.org
8764 S:      Maintained
8765 F:      arch/x86/kernel/cpu/hygon.c
8766
8767 HYNIX HI556 SENSOR DRIVER
8768 M:      Shawn Tu <shawnx.tu@intel.com>
8769 L:      linux-media@vger.kernel.org
8770 S:      Maintained
8771 T:      git git://linuxtv.org/media_tree.git
8772 F:      drivers/media/i2c/hi556.c
8773
8774 HYNIX HI846 SENSOR DRIVER
8775 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
8776 L:      linux-media@vger.kernel.org
8777 S:      Maintained
8778 F:      drivers/media/i2c/hi846.c
8779
8780 Hyper-V/Azure CORE AND DRIVERS
8781 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8782 M:      Haiyang Zhang <haiyangz@microsoft.com>
8783 M:      Stephen Hemminger <sthemmin@microsoft.com>
8784 M:      Wei Liu <wei.liu@kernel.org>
8785 M:      Dexuan Cui <decui@microsoft.com>
8786 L:      linux-hyperv@vger.kernel.org
8787 S:      Supported
8788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8789 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8790 F:      Documentation/ABI/testing/debugfs-hyperv
8791 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8792 F:      arch/arm64/hyperv
8793 F:      arch/arm64/include/asm/hyperv-tlfs.h
8794 F:      arch/arm64/include/asm/mshyperv.h
8795 F:      arch/x86/hyperv
8796 F:      arch/x86/include/asm/hyperv-tlfs.h
8797 F:      arch/x86/include/asm/mshyperv.h
8798 F:      arch/x86/include/asm/trace/hyperv.h
8799 F:      arch/x86/kernel/cpu/mshyperv.c
8800 F:      drivers/clocksource/hyperv_timer.c
8801 F:      drivers/hid/hid-hyperv.c
8802 F:      drivers/hv/
8803 F:      drivers/input/serio/hyperv-keyboard.c
8804 F:      drivers/iommu/hyperv-iommu.c
8805 F:      drivers/net/ethernet/microsoft/
8806 F:      drivers/net/hyperv/
8807 F:      drivers/pci/controller/pci-hyperv-intf.c
8808 F:      drivers/pci/controller/pci-hyperv.c
8809 F:      drivers/scsi/storvsc_drv.c
8810 F:      drivers/uio/uio_hv_generic.c
8811 F:      drivers/video/fbdev/hyperv_fb.c
8812 F:      include/asm-generic/hyperv-tlfs.h
8813 F:      include/asm-generic/mshyperv.h
8814 F:      include/clocksource/hyperv_timer.h
8815 F:      include/linux/hyperv.h
8816 F:      include/uapi/linux/hyperv.h
8817 F:      net/vmw_vsock/hyperv_transport.c
8818 F:      tools/hv/
8819
8820 HYPERBUS SUPPORT
8821 M:      Vignesh Raghavendra <vigneshr@ti.com>
8822 L:      linux-mtd@lists.infradead.org
8823 S:      Supported
8824 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8825 C:      irc://irc.oftc.net/mtd
8826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8827 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8828 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8829 F:      drivers/mtd/hyperbus/
8830 F:      include/linux/mtd/hyperbus.h
8831
8832 HYPERVISOR VIRTUAL CONSOLE DRIVER
8833 L:      linuxppc-dev@lists.ozlabs.org
8834 S:      Odd Fixes
8835 F:      drivers/tty/hvc/
8836
8837 I2C ACPI SUPPORT
8838 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8839 L:      linux-i2c@vger.kernel.org
8840 L:      linux-acpi@vger.kernel.org
8841 S:      Maintained
8842 F:      drivers/i2c/i2c-core-acpi.c
8843
8844 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8845 M:      Ajay Gupta <ajayg@nvidia.com>
8846 L:      linux-i2c@vger.kernel.org
8847 S:      Maintained
8848 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8849 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8850
8851 I2C MUXES
8852 M:      Peter Rosin <peda@axentia.se>
8853 L:      linux-i2c@vger.kernel.org
8854 S:      Maintained
8855 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8856 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8857 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8858 F:      Documentation/i2c/i2c-topology.rst
8859 F:      Documentation/i2c/muxes/
8860 F:      drivers/i2c/i2c-mux.c
8861 F:      drivers/i2c/muxes/
8862 F:      include/linux/i2c-mux.h
8863
8864 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8865 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8866 L:      linux-i2c@vger.kernel.org
8867 S:      Maintained
8868 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8869 F:      drivers/i2c/busses/i2c-mv64xxx.c
8870
8871 I2C OVER PARALLEL PORT
8872 M:      Jean Delvare <jdelvare@suse.com>
8873 L:      linux-i2c@vger.kernel.org
8874 S:      Maintained
8875 F:      Documentation/i2c/busses/i2c-parport.rst
8876 F:      drivers/i2c/busses/i2c-parport.c
8877
8878 I2C SUBSYSTEM
8879 M:      Wolfram Sang <wsa@kernel.org>
8880 L:      linux-i2c@vger.kernel.org
8881 S:      Maintained
8882 W:      https://i2c.wiki.kernel.org/
8883 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8885 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8886 F:      Documentation/i2c/
8887 F:      drivers/i2c/*
8888 F:      include/linux/i2c-dev.h
8889 F:      include/linux/i2c-smbus.h
8890 F:      include/linux/i2c.h
8891 F:      include/uapi/linux/i2c-*.h
8892 F:      include/uapi/linux/i2c.h
8893
8894 I2C SUBSYSTEM HOST DRIVERS
8895 L:      linux-i2c@vger.kernel.org
8896 S:      Odd Fixes
8897 W:      https://i2c.wiki.kernel.org/
8898 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8900 F:      Documentation/devicetree/bindings/i2c/
8901 F:      drivers/i2c/algos/
8902 F:      drivers/i2c/busses/
8903
8904 I2C-TAOS-EVM DRIVER
8905 M:      Jean Delvare <jdelvare@suse.com>
8906 L:      linux-i2c@vger.kernel.org
8907 S:      Maintained
8908 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8909 F:      drivers/i2c/busses/i2c-taos-evm.c
8910
8911 I2C-TINY-USB DRIVER
8912 M:      Till Harbaum <till@harbaum.org>
8913 L:      linux-i2c@vger.kernel.org
8914 S:      Maintained
8915 W:      http://www.harbaum.org/till/i2c_tiny_usb
8916 F:      drivers/i2c/busses/i2c-tiny-usb.c
8917
8918 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8919 M:      Jean Delvare <jdelvare@suse.com>
8920 L:      linux-i2c@vger.kernel.org
8921 S:      Maintained
8922 F:      Documentation/i2c/busses/i2c-ali1535.rst
8923 F:      Documentation/i2c/busses/i2c-ali1563.rst
8924 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8925 F:      Documentation/i2c/busses/i2c-amd756.rst
8926 F:      Documentation/i2c/busses/i2c-amd8111.rst
8927 F:      Documentation/i2c/busses/i2c-i801.rst
8928 F:      Documentation/i2c/busses/i2c-nforce2.rst
8929 F:      Documentation/i2c/busses/i2c-piix4.rst
8930 F:      Documentation/i2c/busses/i2c-sis5595.rst
8931 F:      Documentation/i2c/busses/i2c-sis630.rst
8932 F:      Documentation/i2c/busses/i2c-sis96x.rst
8933 F:      Documentation/i2c/busses/i2c-via.rst
8934 F:      Documentation/i2c/busses/i2c-viapro.rst
8935 F:      drivers/i2c/busses/i2c-ali1535.c
8936 F:      drivers/i2c/busses/i2c-ali1563.c
8937 F:      drivers/i2c/busses/i2c-ali15x3.c
8938 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8939 F:      drivers/i2c/busses/i2c-amd756.c
8940 F:      drivers/i2c/busses/i2c-amd8111.c
8941 F:      drivers/i2c/busses/i2c-i801.c
8942 F:      drivers/i2c/busses/i2c-isch.c
8943 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8944 F:      drivers/i2c/busses/i2c-nforce2.c
8945 F:      drivers/i2c/busses/i2c-piix4.c
8946 F:      drivers/i2c/busses/i2c-sis5595.c
8947 F:      drivers/i2c/busses/i2c-sis630.c
8948 F:      drivers/i2c/busses/i2c-sis96x.c
8949 F:      drivers/i2c/busses/i2c-via.c
8950 F:      drivers/i2c/busses/i2c-viapro.c
8951
8952 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8953 M:      Hans de Goede <hdegoede@redhat.com>
8954 L:      linux-i2c@vger.kernel.org
8955 S:      Maintained
8956 F:      drivers/i2c/busses/i2c-cht-wc.c
8957
8958 I2C/SMBUS ISMT DRIVER
8959 M:      Seth Heasley <seth.heasley@intel.com>
8960 M:      Neil Horman <nhorman@tuxdriver.com>
8961 L:      linux-i2c@vger.kernel.org
8962 F:      Documentation/i2c/busses/i2c-ismt.rst
8963 F:      drivers/i2c/busses/i2c-ismt.c
8964
8965 I2C/SMBUS STUB DRIVER
8966 M:      Jean Delvare <jdelvare@suse.com>
8967 L:      linux-i2c@vger.kernel.org
8968 S:      Maintained
8969 F:      drivers/i2c/i2c-stub.c
8970
8971 I3C DRIVER FOR CADENCE I3C MASTER IP
8972 M:      Przemysław Gaj <pgaj@cadence.com>
8973 S:      Maintained
8974 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8975 F:      drivers/i3c/master/i3c-master-cdns.c
8976
8977 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8978 M:      Vitor Soares <vitor.soares@synopsys.com>
8979 S:      Maintained
8980 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8981 F:      drivers/i3c/master/dw*
8982
8983 I3C SUBSYSTEM
8984 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
8985 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8986 S:      Maintained
8987 C:      irc://chat.freenode.net/linux-i3c
8988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8989 F:      Documentation/ABI/testing/sysfs-bus-i3c
8990 F:      Documentation/devicetree/bindings/i3c/
8991 F:      Documentation/driver-api/i3c
8992 F:      drivers/i3c/
8993 F:      include/linux/i3c/
8994
8995 IA64 (Itanium) PLATFORM
8996 L:      linux-ia64@vger.kernel.org
8997 S:      Orphan
8998 F:      Documentation/ia64/
8999 F:      arch/ia64/
9000
9001 IBM Power 842 compression accelerator
9002 M:      Haren Myneni <haren@us.ibm.com>
9003 S:      Supported
9004 F:      crypto/842.c
9005 F:      drivers/crypto/nx/Kconfig
9006 F:      drivers/crypto/nx/Makefile
9007 F:      drivers/crypto/nx/nx-842*
9008 F:      include/linux/sw842.h
9009 F:      lib/842/
9010
9011 IBM Power in-Nest Crypto Acceleration
9012 M:      Breno Leitão <leitao@debian.org>
9013 M:      Nayna Jain <nayna@linux.ibm.com>
9014 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9015 L:      linux-crypto@vger.kernel.org
9016 S:      Supported
9017 F:      drivers/crypto/nx/Kconfig
9018 F:      drivers/crypto/nx/Makefile
9019 F:      drivers/crypto/nx/nx-aes*
9020 F:      drivers/crypto/nx/nx-sha*
9021 F:      drivers/crypto/nx/nx.*
9022 F:      drivers/crypto/nx/nx_csbcpb.h
9023 F:      drivers/crypto/nx/nx_debugfs.c
9024
9025 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9026 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9027 L:      linux-pci@vger.kernel.org
9028 L:      linuxppc-dev@lists.ozlabs.org
9029 S:      Supported
9030 F:      drivers/pci/hotplug/rpadlpar*
9031
9032 IBM Power Linux RAID adapter
9033 M:      Brian King <brking@us.ibm.com>
9034 S:      Supported
9035 F:      drivers/scsi/ipr.*
9036
9037 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9038 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9039 L:      linux-pci@vger.kernel.org
9040 L:      linuxppc-dev@lists.ozlabs.org
9041 S:      Supported
9042 F:      drivers/pci/hotplug/rpaphp*
9043
9044 IBM Power SRIOV Virtual NIC Device Driver
9045 M:      Dany Madden <drt@linux.ibm.com>
9046 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9047 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9048 L:      netdev@vger.kernel.org
9049 S:      Supported
9050 F:      drivers/net/ethernet/ibm/ibmvnic.*
9051
9052 IBM Power Virtual Accelerator Switchboard
9053 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9054 L:      linuxppc-dev@lists.ozlabs.org
9055 S:      Supported
9056 F:      arch/powerpc/include/asm/vas.h
9057 F:      arch/powerpc/platforms/powernv/copy-paste.h
9058 F:      arch/powerpc/platforms/powernv/vas*
9059
9060 IBM Power Virtual Ethernet Device Driver
9061 M:      Cristobal Forno <cforno12@linux.ibm.com>
9062 L:      netdev@vger.kernel.org
9063 S:      Supported
9064 F:      drivers/net/ethernet/ibm/ibmveth.*
9065
9066 IBM Power Virtual FC Device Drivers
9067 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9068 L:      linux-scsi@vger.kernel.org
9069 S:      Supported
9070 F:      drivers/scsi/ibmvscsi/ibmvfc*
9071
9072 IBM Power Virtual Management Channel Driver
9073 M:      Brad Warrum <bwarrum@linux.ibm.com>
9074 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9075 S:      Supported
9076 F:      drivers/misc/ibmvmc.*
9077
9078 IBM Power Virtual SCSI Device Drivers
9079 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9080 L:      linux-scsi@vger.kernel.org
9081 S:      Supported
9082 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9083 F:      include/scsi/viosrp.h
9084
9085 IBM Power Virtual SCSI Device Target Driver
9086 M:      Michael Cyr <mikecyr@linux.ibm.com>
9087 L:      linux-scsi@vger.kernel.org
9088 L:      target-devel@vger.kernel.org
9089 S:      Supported
9090 F:      drivers/scsi/ibmvscsi_tgt/
9091
9092 IBM Power VMX Cryptographic instructions
9093 M:      Breno Leitão <leitao@debian.org>
9094 M:      Nayna Jain <nayna@linux.ibm.com>
9095 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9096 L:      linux-crypto@vger.kernel.org
9097 S:      Supported
9098 F:      drivers/crypto/vmx/Kconfig
9099 F:      drivers/crypto/vmx/Makefile
9100 F:      drivers/crypto/vmx/aes*
9101 F:      drivers/crypto/vmx/ghash*
9102 F:      drivers/crypto/vmx/ppc-xlate.pl
9103 F:      drivers/crypto/vmx/vmx.c
9104
9105 IBM ServeRAID RAID DRIVER
9106 S:      Orphan
9107 F:      drivers/scsi/ips.*
9108
9109 ICH LPC AND GPIO DRIVER
9110 M:      Peter Tyser <ptyser@xes-inc.com>
9111 S:      Maintained
9112 F:      drivers/gpio/gpio-ich.c
9113 F:      drivers/mfd/lpc_ich.c
9114
9115 ICY I2C DRIVER
9116 M:      Max Staudt <max@enpas.org>
9117 L:      linux-i2c@vger.kernel.org
9118 S:      Maintained
9119 F:      drivers/i2c/busses/i2c-icy.c
9120
9121 IDEAPAD LAPTOP EXTRAS DRIVER
9122 M:      Ike Panhc <ike.pan@canonical.com>
9123 L:      platform-driver-x86@vger.kernel.org
9124 S:      Maintained
9125 W:      http://launchpad.net/ideapad-laptop
9126 F:      drivers/platform/x86/ideapad-laptop.c
9127
9128 IDEAPAD LAPTOP SLIDEBAR DRIVER
9129 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9130 L:      linux-input@vger.kernel.org
9131 S:      Maintained
9132 W:      https://github.com/o2genum/ideapad-slidebar
9133 F:      drivers/input/misc/ideapad_slidebar.c
9134
9135 IDT VersaClock 5 CLOCK DRIVER
9136 M:      Luca Ceresoli <luca@lucaceresoli.net>
9137 S:      Maintained
9138 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9139 F:      drivers/clk/clk-versaclock5.c
9140
9141 IEEE 802.15.4 SUBSYSTEM
9142 M:      Alexander Aring <alex.aring@gmail.com>
9143 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9144 L:      linux-wpan@vger.kernel.org
9145 S:      Maintained
9146 W:      https://linux-wpan.org/
9147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9149 F:      Documentation/networking/ieee802154.rst
9150 F:      drivers/net/ieee802154/
9151 F:      include/linux/ieee802154.h
9152 F:      include/linux/nl802154.h
9153 F:      include/net/af_ieee802154.h
9154 F:      include/net/cfg802154.h
9155 F:      include/net/ieee802154_netdev.h
9156 F:      include/net/mac802154.h
9157 F:      include/net/nl802154.h
9158 F:      net/ieee802154/
9159 F:      net/mac802154/
9160
9161 IFE PROTOCOL
9162 M:      Yotam Gigi <yotam.gi@gmail.com>
9163 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9164 F:      include/net/ife.h
9165 F:      include/uapi/linux/ife.h
9166 F:      net/ife
9167
9168 IGORPLUG-USB IR RECEIVER
9169 M:      Sean Young <sean@mess.org>
9170 L:      linux-media@vger.kernel.org
9171 S:      Maintained
9172 F:      drivers/media/rc/igorplugusb.c
9173
9174 IGUANAWORKS USB IR TRANSCEIVER
9175 M:      Sean Young <sean@mess.org>
9176 L:      linux-media@vger.kernel.org
9177 S:      Maintained
9178 F:      drivers/media/rc/iguanair.c
9179
9180 IIO DIGITAL POTENTIOMETER DAC
9181 M:      Peter Rosin <peda@axentia.se>
9182 L:      linux-iio@vger.kernel.org
9183 S:      Maintained
9184 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9185 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9186 F:      drivers/iio/dac/dpot-dac.c
9187
9188 IIO ENVELOPE DETECTOR
9189 M:      Peter Rosin <peda@axentia.se>
9190 L:      linux-iio@vger.kernel.org
9191 S:      Maintained
9192 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9193 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9194 F:      drivers/iio/adc/envelope-detector.c
9195
9196 IIO MULTIPLEXER
9197 M:      Peter Rosin <peda@axentia.se>
9198 L:      linux-iio@vger.kernel.org
9199 S:      Maintained
9200 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9201 F:      drivers/iio/multiplexer/iio-mux.c
9202
9203 IIO SCMI BASED DRIVER
9204 M:      Jyoti Bhayana <jbhayana@google.com>
9205 L:      linux-iio@vger.kernel.org
9206 S:      Maintained
9207 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9208
9209 IIO SUBSYSTEM AND DRIVERS
9210 M:      Jonathan Cameron <jic23@kernel.org>
9211 R:      Lars-Peter Clausen <lars@metafoo.de>
9212 L:      linux-iio@vger.kernel.org
9213 S:      Maintained
9214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9215 F:      Documentation/ABI/testing/configfs-iio*
9216 F:      Documentation/ABI/testing/sysfs-bus-iio*
9217 F:      Documentation/devicetree/bindings/iio/
9218 F:      drivers/iio/
9219 F:      drivers/staging/iio/
9220 F:      include/linux/iio/
9221 F:      tools/iio/
9222
9223 IIO UNIT CONVERTER
9224 M:      Peter Rosin <peda@axentia.se>
9225 L:      linux-iio@vger.kernel.org
9226 S:      Maintained
9227 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9228 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9229 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9230 F:      drivers/iio/afe/iio-rescale.c
9231
9232 IKANOS/ADI EAGLE ADSL USB DRIVER
9233 M:      Matthieu Castet <castet.matthieu@free.fr>
9234 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9235 S:      Maintained
9236 F:      drivers/usb/atm/ueagle-atm.c
9237
9238 IMGTEC ASCII LCD DRIVER
9239 M:      Paul Burton <paulburton@kernel.org>
9240 S:      Maintained
9241 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9242 F:      drivers/auxdisplay/img-ascii-lcd.c
9243
9244 IMGTEC IR DECODER DRIVER
9245 S:      Orphan
9246 F:      drivers/media/rc/img-ir/
9247
9248 IMON SOUNDGRAPH USB IR RECEIVER
9249 M:      Sean Young <sean@mess.org>
9250 L:      linux-media@vger.kernel.org
9251 S:      Maintained
9252 F:      drivers/media/rc/imon.c
9253 F:      drivers/media/rc/imon_raw.c
9254
9255 IMS TWINTURBO FRAMEBUFFER DRIVER
9256 L:      linux-fbdev@vger.kernel.org
9257 S:      Orphan
9258 F:      drivers/video/fbdev/imsttfb.c
9259
9260 INA209 HARDWARE MONITOR DRIVER
9261 M:      Guenter Roeck <linux@roeck-us.net>
9262 L:      linux-hwmon@vger.kernel.org
9263 S:      Maintained
9264 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9265 F:      Documentation/hwmon/ina209.rst
9266 F:      drivers/hwmon/ina209.c
9267
9268 INA2XX HARDWARE MONITOR DRIVER
9269 M:      Guenter Roeck <linux@roeck-us.net>
9270 L:      linux-hwmon@vger.kernel.org
9271 S:      Maintained
9272 F:      Documentation/hwmon/ina2xx.rst
9273 F:      drivers/hwmon/ina2xx.c
9274 F:      include/linux/platform_data/ina2xx.h
9275
9276 INDUSTRY PACK SUBSYSTEM (IPACK)
9277 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9278 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9279 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9280 L:      industrypack-devel@lists.sourceforge.net
9281 S:      Maintained
9282 W:      http://industrypack.sourceforge.net
9283 F:      drivers/ipack/
9284
9285 INFINEON DPS310 Driver
9286 M:      Eddie James <eajames@linux.ibm.com>
9287 L:      linux-iio@vger.kernel.org
9288 S:      Maintained
9289 F:      drivers/iio/pressure/dps310.c
9290
9291 INFINIBAND SUBSYSTEM
9292 M:      Doug Ledford <dledford@redhat.com>
9293 M:      Jason Gunthorpe <jgg@nvidia.com>
9294 L:      linux-rdma@vger.kernel.org
9295 S:      Supported
9296 W:      https://github.com/linux-rdma/rdma-core
9297 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9299 F:      Documentation/devicetree/bindings/infiniband/
9300 F:      Documentation/infiniband/
9301 F:      drivers/infiniband/
9302 F:      include/rdma/
9303 F:      include/trace/events/ib_mad.h
9304 F:      include/trace/events/ib_umad.h
9305 F:      include/uapi/linux/if_infiniband.h
9306 F:      include/uapi/rdma/
9307 F:      samples/bpf/ibumad_kern.c
9308 F:      samples/bpf/ibumad_user.c
9309
9310 INGENIC JZ4780 NAND DRIVER
9311 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9312 L:      linux-mtd@lists.infradead.org
9313 L:      linux-mips@vger.kernel.org
9314 S:      Maintained
9315 F:      drivers/mtd/nand/raw/ingenic/
9316
9317 INGENIC JZ47xx SoCs
9318 M:      Paul Cercueil <paul@crapouillou.net>
9319 L:      linux-mips@vger.kernel.org
9320 S:      Maintained
9321 F:      arch/mips/boot/dts/ingenic/
9322 F:      arch/mips/generic/board-ingenic.c
9323 F:      arch/mips/include/asm/mach-ingenic/
9324 F:      arch/mips/ingenic/Kconfig
9325 F:      drivers/clk/ingenic/
9326 F:      drivers/dma/dma-jz4780.c
9327 F:      drivers/gpu/drm/ingenic/
9328 F:      drivers/i2c/busses/i2c-jz4780.c
9329 F:      drivers/iio/adc/ingenic-adc.c
9330 F:      drivers/irqchip/irq-ingenic.c
9331 F:      drivers/memory/jz4780-nemc.c
9332 F:      drivers/mmc/host/jz4740_mmc.c
9333 F:      drivers/mtd/nand/raw/ingenic/
9334 F:      drivers/pinctrl/pinctrl-ingenic.c
9335 F:      drivers/power/supply/ingenic-battery.c
9336 F:      drivers/pwm/pwm-jz4740.c
9337 F:      drivers/remoteproc/ingenic_rproc.c
9338 F:      drivers/rtc/rtc-jz4740.c
9339 F:      drivers/tty/serial/8250/8250_ingenic.c
9340 F:      drivers/usb/musb/jz4740.c
9341 F:      drivers/watchdog/jz4740_wdt.c
9342 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9343 F:      include/linux/mfd/ingenic-tcu.h
9344 F:      sound/soc/codecs/jz47*
9345 F:      sound/soc/jz4740/
9346
9347 INOTIFY
9348 M:      Jan Kara <jack@suse.cz>
9349 R:      Amir Goldstein <amir73il@gmail.com>
9350 L:      linux-fsdevel@vger.kernel.org
9351 S:      Maintained
9352 F:      Documentation/filesystems/inotify.rst
9353 F:      fs/notify/inotify/
9354 F:      include/linux/inotify.h
9355 F:      include/uapi/linux/inotify.h
9356
9357 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9358 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9359 L:      linux-input@vger.kernel.org
9360 S:      Maintained
9361 Q:      http://patchwork.kernel.org/project/linux-input/list/
9362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9363 F:      Documentation/devicetree/bindings/input/
9364 F:      Documentation/devicetree/bindings/serio/
9365 F:      Documentation/input/
9366 F:      drivers/input/
9367 F:      include/linux/input.h
9368 F:      include/linux/input/
9369 F:      include/uapi/linux/input-event-codes.h
9370 F:      include/uapi/linux/input.h
9371
9372 INPUT MULTITOUCH (MT) PROTOCOL
9373 M:      Henrik Rydberg <rydberg@bitmath.org>
9374 L:      linux-input@vger.kernel.org
9375 S:      Odd fixes
9376 F:      Documentation/input/multi-touch-protocol.rst
9377 F:      drivers/input/input-mt.c
9378 K:      \b(ABS|SYN)_MT_
9379
9380 INSIDE SECURE CRYPTO DRIVER
9381 M:      Antoine Tenart <atenart@kernel.org>
9382 L:      linux-crypto@vger.kernel.org
9383 S:      Maintained
9384 F:      drivers/crypto/inside-secure/
9385
9386 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9387 M:      Mimi Zohar <zohar@linux.ibm.com>
9388 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9389 L:      linux-integrity@vger.kernel.org
9390 S:      Supported
9391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9392 F:      security/integrity/ima/
9393
9394 INTEL 810/815 FRAMEBUFFER DRIVER
9395 M:      Antonino Daplas <adaplas@gmail.com>
9396 L:      linux-fbdev@vger.kernel.org
9397 S:      Maintained
9398 F:      drivers/video/fbdev/i810/
9399
9400 INTEL ASoC DRIVERS
9401 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9402 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9403 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9404 M:      Jie Yang <yang.jie@linux.intel.com>
9405 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9406 S:      Supported
9407 F:      sound/soc/intel/
9408
9409 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9410 M:      Hans de Goede <hdegoede@redhat.com>
9411 L:      platform-driver-x86@vger.kernel.org
9412 S:      Maintained
9413 F:      drivers/platform/x86/intel/atomisp2/pm.c
9414
9415 INTEL ATOMISP2 LED DRIVER
9416 M:      Hans de Goede <hdegoede@redhat.com>
9417 L:      platform-driver-x86@vger.kernel.org
9418 S:      Maintained
9419 F:      drivers/platform/x86/intel/atomisp2/led.c
9420
9421 INTEL BIOS SAR INT1092 DRIVER
9422 M:      Shravan Sudhakar <s.shravan@intel.com>
9423 M:      Intel Corporation <linuxwwan@intel.com>
9424 L:      platform-driver-x86@vger.kernel.org
9425 S:      Maintained
9426 F:      drivers/platform/x86/intel/int1092/
9427
9428 INTEL BROXTON PMC DRIVER
9429 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9430 M:      Zha Qipeng <qipeng.zha@intel.com>
9431 S:      Maintained
9432 F:      drivers/mfd/intel_pmc_bxt.c
9433 F:      include/linux/mfd/intel_pmc_bxt.h
9434
9435 INTEL C600 SERIES SAS CONTROLLER DRIVER
9436 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9437 L:      linux-scsi@vger.kernel.org
9438 S:      Supported
9439 T:      git git://git.code.sf.net/p/intel-sas/isci
9440 F:      drivers/scsi/isci/
9441
9442 INTEL CPU family model numbers
9443 M:      Tony Luck <tony.luck@intel.com>
9444 M:      x86@kernel.org
9445 L:      linux-kernel@vger.kernel.org
9446 S:      Supported
9447 F:      arch/x86/include/asm/intel-family.h
9448
9449 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9450 M:      Jani Nikula <jani.nikula@linux.intel.com>
9451 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9452 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9453 L:      intel-gfx@lists.freedesktop.org
9454 S:      Supported
9455 W:      https://01.org/linuxgraphics/
9456 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9457 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9458 C:      irc://irc.oftc.net/intel-gfx
9459 T:      git git://anongit.freedesktop.org/drm-intel
9460 F:      Documentation/gpu/i915.rst
9461 F:      drivers/gpu/drm/i915/
9462 F:      include/drm/i915*
9463 F:      include/uapi/drm/i915_drm.h
9464
9465 INTEL ETHERNET DRIVERS
9466 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9467 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9468 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9469 S:      Supported
9470 W:      http://www.intel.com/support/feedback.htm
9471 W:      http://e1000.sourceforge.net/
9472 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9475 F:      Documentation/networking/device_drivers/ethernet/intel/
9476 F:      drivers/net/ethernet/intel/
9477 F:      drivers/net/ethernet/intel/*/
9478 F:      include/linux/avf/virtchnl.h
9479 F:      include/linux/net/intel/iidc.h
9480
9481 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9482 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9483 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9484 L:      linux-rdma@vger.kernel.org
9485 S:      Supported
9486 F:      drivers/infiniband/hw/irdma/
9487 F:      include/uapi/rdma/irdma-abi.h
9488
9489 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9490 M:      Maik Broemme <mbroemme@libmpq.org>
9491 L:      linux-fbdev@vger.kernel.org
9492 S:      Maintained
9493 F:      Documentation/fb/intelfb.rst
9494 F:      drivers/video/fbdev/intelfb/
9495
9496 INTEL GPIO DRIVERS
9497 M:      Andy Shevchenko <andy@kernel.org>
9498 L:      linux-gpio@vger.kernel.org
9499 S:      Maintained
9500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9501 F:      drivers/gpio/gpio-ich.c
9502 F:      drivers/gpio/gpio-merrifield.c
9503 F:      drivers/gpio/gpio-ml-ioh.c
9504 F:      drivers/gpio/gpio-pch.c
9505 F:      drivers/gpio/gpio-sch.c
9506 F:      drivers/gpio/gpio-sodaville.c
9507
9508 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9509 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9510 M:      Zhi Wang <zhi.a.wang@intel.com>
9511 L:      intel-gvt-dev@lists.freedesktop.org
9512 L:      intel-gfx@lists.freedesktop.org
9513 S:      Supported
9514 W:      https://01.org/igvt-g
9515 T:      git https://github.com/intel/gvt-linux.git
9516 F:      drivers/gpu/drm/i915/gvt/
9517
9518 INTEL HID EVENT DRIVER
9519 M:      Alex Hung <alex.hung@canonical.com>
9520 L:      platform-driver-x86@vger.kernel.org
9521 S:      Maintained
9522 F:      drivers/platform/x86/intel/hid.c
9523
9524 INTEL I/OAT DMA DRIVER
9525 M:      Dave Jiang <dave.jiang@intel.com>
9526 R:      Dan Williams <dan.j.williams@intel.com>
9527 L:      dmaengine@vger.kernel.org
9528 S:      Supported
9529 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9530 F:      drivers/dma/ioat*
9531
9532 INTEL IADX DRIVER
9533 M:      Dave Jiang <dave.jiang@intel.com>
9534 L:      dmaengine@vger.kernel.org
9535 S:      Supported
9536 F:      drivers/dma/idxd/*
9537 F:      include/uapi/linux/idxd.h
9538
9539 INTEL IDLE DRIVER
9540 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9541 M:      Len Brown <lenb@kernel.org>
9542 L:      linux-pm@vger.kernel.org
9543 S:      Supported
9544 B:      https://bugzilla.kernel.org
9545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9546 F:      drivers/idle/intel_idle.c
9547
9548 INTEL INTEGRATED SENSOR HUB DRIVER
9549 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9550 M:      Jiri Kosina <jikos@kernel.org>
9551 L:      linux-input@vger.kernel.org
9552 S:      Maintained
9553 F:      drivers/hid/intel-ish-hid/
9554
9555 INTEL IOMMU (VT-d)
9556 M:      David Woodhouse <dwmw2@infradead.org>
9557 M:      Lu Baolu <baolu.lu@linux.intel.com>
9558 L:      iommu@lists.linux-foundation.org
9559 S:      Supported
9560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9561 F:      drivers/iommu/intel/
9562 F:      include/linux/intel-iommu.h
9563 F:      include/linux/intel-svm.h
9564
9565 INTEL IOP-ADMA DMA DRIVER
9566 R:      Dan Williams <dan.j.williams@intel.com>
9567 S:      Odd fixes
9568 F:      drivers/dma/iop-adma.c
9569
9570 INTEL IPU3 CSI-2 CIO2 DRIVER
9571 M:      Yong Zhi <yong.zhi@intel.com>
9572 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9573 M:      Bingbu Cao <bingbu.cao@intel.com>
9574 M:      Dan Scally <djrscally@gmail.com>
9575 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9576 L:      linux-media@vger.kernel.org
9577 S:      Maintained
9578 T:      git git://linuxtv.org/media_tree.git
9579 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9580 F:      drivers/media/pci/intel/ipu3/
9581
9582 INTEL IPU3 CSI-2 IMGU DRIVER
9583 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9584 R:      Bingbu Cao <bingbu.cao@intel.com>
9585 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9586 L:      linux-media@vger.kernel.org
9587 S:      Maintained
9588 F:      Documentation/admin-guide/media/ipu3.rst
9589 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9590 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9591 F:      drivers/staging/media/ipu3/
9592
9593 INTEL IXP4XX CRYPTO SUPPORT
9594 M:      Corentin Labbe <clabbe@baylibre.com>
9595 L:      linux-crypto@vger.kernel.org
9596 S:      Maintained
9597 F:      drivers/crypto/ixp4xx_crypto.c
9598
9599 INTEL ISHTP ECLITE DRIVER
9600 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
9601 L:      platform-driver-x86@vger.kernel.org
9602 S:      Supported
9603 F:      drivers/platform/x86/intel/ishtp_eclite.c
9604
9605 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9606 M:      Krzysztof Halasa <khalasa@piap.pl>
9607 S:      Maintained
9608 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9609 F:      drivers/net/wan/ixp4xx_hss.c
9610 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9611 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9612 F:      include/linux/soc/ixp4xx/npe.h
9613 F:      include/linux/soc/ixp4xx/qmgr.h
9614
9615 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9616 M:      Deepak Saxena <dsaxena@plexity.net>
9617 S:      Maintained
9618 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
9619 F:      drivers/char/hw_random/ixp4xx-rng.c
9620
9621 INTEL KEEM BAY DRM DRIVER
9622 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9623 M:      Edmund Dea <edmund.j.dea@intel.com>
9624 S:      Maintained
9625 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9626 F:      drivers/gpu/drm/kmb/
9627
9628 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9629 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9630 S:      Maintained
9631 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9632 F:      drivers/crypto/keembay/Kconfig
9633 F:      drivers/crypto/keembay/Makefile
9634 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9635 F:      drivers/crypto/keembay/ocs-aes.c
9636 F:      drivers/crypto/keembay/ocs-aes.h
9637
9638 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
9639 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9640 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
9641 M:      Mark Gross <mgross@linux.intel.com>
9642 S:      Maintained
9643 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
9644 F:      drivers/crypto/keembay/Kconfig
9645 F:      drivers/crypto/keembay/Makefile
9646 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
9647 F:      drivers/crypto/keembay/ocs-ecc-curve-defs.h
9648
9649 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9650 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9651 M:      Declan Murphy <declan.murphy@intel.com>
9652 S:      Maintained
9653 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9654 F:      drivers/crypto/keembay/Kconfig
9655 F:      drivers/crypto/keembay/Makefile
9656 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9657 F:      drivers/crypto/keembay/ocs-hcu.c
9658 F:      drivers/crypto/keembay/ocs-hcu.h
9659
9660 INTEL MANAGEMENT ENGINE (mei)
9661 M:      Tomas Winkler <tomas.winkler@intel.com>
9662 L:      linux-kernel@vger.kernel.org
9663 S:      Supported
9664 F:      Documentation/driver-api/mei/*
9665 F:      drivers/misc/mei/
9666 F:      drivers/watchdog/mei_wdt.c
9667 F:      include/linux/mei_cl_bus.h
9668 F:      include/uapi/linux/mei.h
9669 F:      samples/mei/*
9670
9671 INTEL MAX 10 BMC MFD DRIVER
9672 M:      Xu Yilun <yilun.xu@intel.com>
9673 R:      Tom Rix <trix@redhat.com>
9674 S:      Maintained
9675 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9676 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9677 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9678 F:      drivers/mfd/intel-m10-bmc.c
9679 F:      include/linux/mfd/intel-m10-bmc.h
9680
9681 INTEL MENLOW THERMAL DRIVER
9682 M:      Sujith Thomas <sujith.thomas@intel.com>
9683 L:      linux-pm@vger.kernel.org
9684 S:      Supported
9685 W:      https://01.org/linux-acpi
9686 F:      drivers/thermal/intel/intel_menlow.c
9687
9688 INTEL P-Unit IPC DRIVER
9689 M:      Zha Qipeng <qipeng.zha@intel.com>
9690 L:      platform-driver-x86@vger.kernel.org
9691 S:      Maintained
9692 F:      arch/x86/include/asm/intel_punit_ipc.h
9693 F:      drivers/platform/x86/intel/punit_ipc.c
9694
9695 INTEL PMC CORE DRIVER
9696 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9697 M:      David E Box <david.e.box@intel.com>
9698 L:      platform-driver-x86@vger.kernel.org
9699 S:      Maintained
9700 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9701 F:      drivers/platform/x86/intel/pmc/
9702
9703 INTEL PMIC GPIO DRIVERS
9704 M:      Andy Shevchenko <andy@kernel.org>
9705 S:      Maintained
9706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9707 F:      drivers/gpio/gpio-*cove.c
9708
9709 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9710 M:      Andy Shevchenko <andy@kernel.org>
9711 S:      Maintained
9712 F:      drivers/mfd/intel_soc_pmic*
9713 F:      include/linux/mfd/intel_soc_pmic*
9714
9715 INTEL PMT DRIVER
9716 M:      "David E. Box" <david.e.box@linux.intel.com>
9717 S:      Maintained
9718 F:      drivers/mfd/intel_pmt.c
9719 F:      drivers/platform/x86/intel/pmt/
9720
9721 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9722 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9723 L:      linux-wireless@vger.kernel.org
9724 S:      Maintained
9725 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9726 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9727 F:      drivers/net/wireless/intel/ipw2x00/
9728
9729 INTEL PSTATE DRIVER
9730 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9731 M:      Len Brown <lenb@kernel.org>
9732 L:      linux-pm@vger.kernel.org
9733 S:      Supported
9734 F:      drivers/cpufreq/intel_pstate.c
9735
9736 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
9737 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9738 L:      linux-iio@vger.kernel.org
9739 F:      drivers/counter/intel-qep.c
9740
9741 INTEL SCU DRIVERS
9742 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9743 S:      Maintained
9744 F:      arch/x86/include/asm/intel_scu_ipc.h
9745 F:      drivers/platform/x86/intel_scu_*
9746
9747 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9748 M:      Daniel Scally <djrscally@gmail.com>
9749 S:      Maintained
9750 F:      drivers/platform/x86/intel/int3472/
9751
9752 INTEL SPEED SELECT TECHNOLOGY
9753 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9754 L:      platform-driver-x86@vger.kernel.org
9755 S:      Maintained
9756 F:      drivers/platform/x86/intel/speed_select_if/
9757 F:      include/uapi/linux/isst_if.h
9758 F:      tools/power/x86/intel-speed-select/
9759
9760 INTEL STRATIX10 FIRMWARE DRIVERS
9761 M:      Dinh Nguyen <dinguyen@kernel.org>
9762 L:      linux-kernel@vger.kernel.org
9763 S:      Maintained
9764 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9765 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9766 F:      drivers/firmware/stratix10-rsu.c
9767 F:      drivers/firmware/stratix10-svc.c
9768 F:      include/linux/firmware/intel/stratix10-smc.h
9769 F:      include/linux/firmware/intel/stratix10-svc-client.h
9770
9771 INTEL TELEMETRY DRIVER
9772 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9773 M:      "David E. Box" <david.e.box@linux.intel.com>
9774 L:      platform-driver-x86@vger.kernel.org
9775 S:      Maintained
9776 F:      arch/x86/include/asm/intel_telemetry.h
9777 F:      drivers/platform/x86/intel/telemetry/
9778
9779 INTEL UNCORE FREQUENCY CONTROL
9780 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9781 L:      platform-driver-x86@vger.kernel.org
9782 S:      Maintained
9783 F:      drivers/platform/x86/intel/uncore-frequency.c
9784
9785 INTEL VIRTUAL BUTTON DRIVER
9786 M:      AceLan Kao <acelan.kao@canonical.com>
9787 L:      platform-driver-x86@vger.kernel.org
9788 S:      Maintained
9789 F:      drivers/platform/x86/intel/vbtn.c
9790
9791 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9792 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9793 L:      linux-wireless@vger.kernel.org
9794 S:      Supported
9795 F:      drivers/net/wireless/intel/iwlegacy/
9796
9797 INTEL WIRELESS WIFI LINK (iwlwifi)
9798 M:      Luca Coelho <luciano.coelho@intel.com>
9799 L:      linux-wireless@vger.kernel.org
9800 S:      Supported
9801 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9803 F:      drivers/net/wireless/intel/iwlwifi/
9804
9805 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9806 M:      Jithu Joseph <jithu.joseph@intel.com>
9807 R:      Maurice Ma <maurice.ma@intel.com>
9808 S:      Maintained
9809 W:      https://slimbootloader.github.io/security/firmware-update.html
9810 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
9811
9812 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9813 L:      Dell.Client.Kernel@dell.com
9814 S:      Maintained
9815 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
9816
9817 INTEL WWAN IOSM DRIVER
9818 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
9819 M:      Intel Corporation <linuxwwan@intel.com>
9820 L:      netdev@vger.kernel.org
9821 S:      Maintained
9822 F:      drivers/net/wwan/iosm/
9823
9824 INTEL(R) TRACE HUB
9825 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9826 S:      Supported
9827 F:      Documentation/trace/intel_th.rst
9828 F:      drivers/hwtracing/intel_th/
9829 F:      include/linux/intel_th.h
9830
9831 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9832 M:      Ning Sun <ning.sun@intel.com>
9833 L:      tboot-devel@lists.sourceforge.net
9834 S:      Supported
9835 W:      http://tboot.sourceforge.net
9836 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9837 F:      Documentation/x86/intel_txt.rst
9838 F:      arch/x86/kernel/tboot.c
9839 F:      include/linux/tboot.h
9840
9841 INTEL SGX
9842 M:      Jarkko Sakkinen <jarkko@kernel.org>
9843 R:      Dave Hansen <dave.hansen@linux.intel.com>
9844 L:      linux-sgx@vger.kernel.org
9845 S:      Supported
9846 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9848 F:      Documentation/x86/sgx.rst
9849 F:      arch/x86/entry/vdso/vsgx.S
9850 F:      arch/x86/include/asm/sgx.h
9851 F:      arch/x86/include/uapi/asm/sgx.h
9852 F:      arch/x86/kernel/cpu/sgx/*
9853 F:      tools/testing/selftests/sgx/*
9854 K:      \bSGX_
9855
9856 INTERCONNECT API
9857 M:      Georgi Djakov <djakov@kernel.org>
9858 L:      linux-pm@vger.kernel.org
9859 S:      Maintained
9860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9861 F:      Documentation/devicetree/bindings/interconnect/
9862 F:      Documentation/driver-api/interconnect.rst
9863 F:      drivers/interconnect/
9864 F:      include/dt-bindings/interconnect/
9865 F:      include/linux/interconnect-provider.h
9866 F:      include/linux/interconnect.h
9867
9868 INTERRUPT COUNTER DRIVER
9869 M:      Oleksij Rempel <o.rempel@pengutronix.de>
9870 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
9871 L:      linux-iio@vger.kernel.org
9872 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9873 F:      drivers/counter/interrupt-cnt.c
9874
9875 INVENSENSE ICM-426xx IMU DRIVER
9876 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9877 L:      linux-iio@vger.kernel.org
9878 S:      Maintained
9879 W:      https://invensense.tdk.com/
9880 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9881 F:      drivers/iio/imu/inv_icm42600/
9882
9883 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9884 M:      Linus Walleij <linus.walleij@linaro.org>
9885 L:      linux-iio@vger.kernel.org
9886 S:      Maintained
9887 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9888 F:      drivers/iio/gyro/mpu3050*
9889
9890 IOC3 ETHERNET DRIVER
9891 M:      Ralf Baechle <ralf@linux-mips.org>
9892 L:      linux-mips@vger.kernel.org
9893 S:      Maintained
9894 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9895
9896 IOMAP FILESYSTEM LIBRARY
9897 M:      Christoph Hellwig <hch@infradead.org>
9898 M:      Darrick J. Wong <djwong@kernel.org>
9899 M:      linux-xfs@vger.kernel.org
9900 M:      linux-fsdevel@vger.kernel.org
9901 L:      linux-xfs@vger.kernel.org
9902 L:      linux-fsdevel@vger.kernel.org
9903 S:      Supported
9904 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9905 F:      fs/iomap/
9906 F:      include/linux/iomap.h
9907
9908 IOMMU DRIVERS
9909 M:      Joerg Roedel <joro@8bytes.org>
9910 M:      Will Deacon <will@kernel.org>
9911 L:      iommu@lists.linux-foundation.org
9912 S:      Maintained
9913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9914 F:      Documentation/devicetree/bindings/iommu/
9915 F:      Documentation/userspace-api/iommu.rst
9916 F:      drivers/iommu/
9917 F:      include/linux/iommu.h
9918 F:      include/linux/iova.h
9919 F:      include/linux/of_iommu.h
9920 F:      include/uapi/linux/iommu.h
9921
9922 IO_URING
9923 M:      Jens Axboe <axboe@kernel.dk>
9924 R:      Pavel Begunkov <asml.silence@gmail.com>
9925 L:      io-uring@vger.kernel.org
9926 S:      Maintained
9927 T:      git git://git.kernel.dk/linux-block
9928 T:      git git://git.kernel.dk/liburing
9929 F:      fs/io-wq.c
9930 F:      fs/io-wq.h
9931 F:      fs/io_uring.c
9932 F:      include/linux/io_uring.h
9933 F:      include/uapi/linux/io_uring.h
9934 F:      tools/io_uring/
9935
9936 IPMI SUBSYSTEM
9937 M:      Corey Minyard <minyard@acm.org>
9938 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9939 S:      Supported
9940 W:      http://openipmi.sourceforge.net/
9941 F:      Documentation/driver-api/ipmi.rst
9942 F:      Documentation/devicetree/bindings/ipmi/
9943 F:      drivers/char/ipmi/
9944 F:      include/linux/ipmi*
9945 F:      include/uapi/linux/ipmi*
9946
9947 IPS SCSI RAID DRIVER
9948 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9949 L:      linux-scsi@vger.kernel.org
9950 S:      Maintained
9951 W:      http://www.adaptec.com/
9952 F:      drivers/scsi/ips*
9953
9954 IPVS
9955 M:      Simon Horman <horms@verge.net.au>
9956 M:      Julian Anastasov <ja@ssi.bg>
9957 L:      netdev@vger.kernel.org
9958 L:      lvs-devel@vger.kernel.org
9959 S:      Maintained
9960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9962 F:      Documentation/networking/ipvs-sysctl.rst
9963 F:      include/net/ip_vs.h
9964 F:      include/uapi/linux/ip_vs.h
9965 F:      net/netfilter/ipvs/
9966
9967 IPWIRELESS DRIVER
9968 M:      Jiri Kosina <jikos@kernel.org>
9969 M:      David Sterba <dsterba@suse.com>
9970 S:      Odd Fixes
9971 F:      drivers/tty/ipwireless/
9972
9973 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9974 M:      Marc Zyngier <maz@kernel.org>
9975 S:      Maintained
9976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9977 F:      Documentation/core-api/irq/irq-domain.rst
9978 F:      include/linux/irqdomain.h
9979 F:      kernel/irq/irqdomain.c
9980 F:      kernel/irq/msi.c
9981
9982 IRQ SUBSYSTEM
9983 M:      Thomas Gleixner <tglx@linutronix.de>
9984 L:      linux-kernel@vger.kernel.org
9985 S:      Maintained
9986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9987 F:      kernel/irq/
9988
9989 IRQCHIP DRIVERS
9990 M:      Thomas Gleixner <tglx@linutronix.de>
9991 M:      Marc Zyngier <maz@kernel.org>
9992 L:      linux-kernel@vger.kernel.org
9993 S:      Maintained
9994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9995 F:      Documentation/devicetree/bindings/interrupt-controller/
9996 F:      drivers/irqchip/
9997
9998 ISA
9999 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10000 S:      Maintained
10001 F:      Documentation/driver-api/isa.rst
10002 F:      drivers/base/isa.c
10003 F:      include/linux/isa.h
10004
10005 ISA RADIO MODULE
10006 M:      Hans Verkuil <hverkuil@xs4all.nl>
10007 L:      linux-media@vger.kernel.org
10008 S:      Maintained
10009 W:      https://linuxtv.org
10010 T:      git git://linuxtv.org/media_tree.git
10011 F:      drivers/media/radio/radio-isa*
10012
10013 ISAPNP
10014 M:      Jaroslav Kysela <perex@perex.cz>
10015 S:      Maintained
10016 F:      Documentation/driver-api/isapnp.rst
10017 F:      drivers/pnp/isapnp/
10018 F:      include/linux/isapnp.h
10019
10020 ISCSI
10021 M:      Lee Duncan <lduncan@suse.com>
10022 M:      Chris Leech <cleech@redhat.com>
10023 L:      open-iscsi@googlegroups.com
10024 L:      linux-scsi@vger.kernel.org
10025 S:      Maintained
10026 W:      www.open-iscsi.com
10027 F:      drivers/scsi/*iscsi*
10028 F:      include/scsi/*iscsi*
10029
10030 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10031 M:      Peter Jones <pjones@redhat.com>
10032 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10033 S:      Maintained
10034 F:      drivers/firmware/iscsi_ibft*
10035
10036 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10037 M:      Sagi Grimberg <sagi@grimberg.me>
10038 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10039 L:      linux-rdma@vger.kernel.org
10040 S:      Supported
10041 W:      http://www.openfabrics.org
10042 W:      www.open-iscsi.org
10043 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10044 F:      drivers/infiniband/ulp/iser/
10045
10046 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10047 M:      Sagi Grimberg <sagi@grimberg.me>
10048 L:      linux-rdma@vger.kernel.org
10049 L:      target-devel@vger.kernel.org
10050 S:      Supported
10051 W:      http://www.linux-iscsi.org
10052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10053 F:      drivers/infiniband/ulp/isert
10054
10055 ISDN/CMTP OVER BLUETOOTH
10056 M:      Karsten Keil <isdn@linux-pingi.de>
10057 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10058 L:      netdev@vger.kernel.org
10059 S:      Odd Fixes
10060 W:      http://www.isdn4linux.de
10061 F:      Documentation/isdn/
10062 F:      drivers/isdn/capi/
10063 F:      include/linux/isdn/
10064 F:      include/uapi/linux/isdn/
10065 F:      net/bluetooth/cmtp/
10066
10067 ISDN/mISDN SUBSYSTEM
10068 M:      Karsten Keil <isdn@linux-pingi.de>
10069 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10070 L:      netdev@vger.kernel.org
10071 S:      Maintained
10072 W:      http://www.isdn4linux.de
10073 F:      drivers/isdn/Kconfig
10074 F:      drivers/isdn/Makefile
10075 F:      drivers/isdn/hardware/
10076 F:      drivers/isdn/mISDN/
10077
10078 IT87 HARDWARE MONITORING DRIVER
10079 M:      Jean Delvare <jdelvare@suse.com>
10080 L:      linux-hwmon@vger.kernel.org
10081 S:      Maintained
10082 F:      Documentation/hwmon/it87.rst
10083 F:      drivers/hwmon/it87.c
10084
10085 IT913X MEDIA DRIVER
10086 M:      Antti Palosaari <crope@iki.fi>
10087 L:      linux-media@vger.kernel.org
10088 S:      Maintained
10089 W:      https://linuxtv.org
10090 W:      http://palosaari.fi/linux/
10091 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10092 T:      git git://linuxtv.org/anttip/media_tree.git
10093 F:      drivers/media/tuners/it913x*
10094
10095 ITE IT66121 HDMI BRIDGE DRIVER
10096 M:      Phong LE <ple@baylibre.com>
10097 M:      Neil Armstrong <narmstrong@baylibre.com>
10098 S:      Maintained
10099 T:      git git://anongit.freedesktop.org/drm/drm-misc
10100 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10101 F:      drivers/gpu/drm/bridge/ite-it66121.c
10102
10103 IVTV VIDEO4LINUX DRIVER
10104 M:      Andy Walls <awalls@md.metrocast.net>
10105 L:      linux-media@vger.kernel.org
10106 S:      Maintained
10107 W:      https://linuxtv.org
10108 T:      git git://linuxtv.org/media_tree.git
10109 F:      Documentation/admin-guide/media/ivtv*
10110 F:      drivers/media/pci/ivtv/
10111 F:      include/uapi/linux/ivtv*
10112
10113 IX2505V MEDIA DRIVER
10114 M:      Malcolm Priestley <tvboxspy@gmail.com>
10115 L:      linux-media@vger.kernel.org
10116 S:      Maintained
10117 W:      https://linuxtv.org
10118 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10119 F:      drivers/media/dvb-frontends/ix2505v*
10120
10121 JAILHOUSE HYPERVISOR INTERFACE
10122 M:      Jan Kiszka <jan.kiszka@siemens.com>
10123 L:      jailhouse-dev@googlegroups.com
10124 S:      Maintained
10125 F:      arch/x86/include/asm/jailhouse_para.h
10126 F:      arch/x86/kernel/jailhouse.c
10127
10128 JC42.4 TEMPERATURE SENSOR DRIVER
10129 M:      Guenter Roeck <linux@roeck-us.net>
10130 L:      linux-hwmon@vger.kernel.org
10131 S:      Maintained
10132 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10133 F:      Documentation/hwmon/jc42.rst
10134 F:      drivers/hwmon/jc42.c
10135
10136 JFS FILESYSTEM
10137 M:      Dave Kleikamp <shaggy@kernel.org>
10138 L:      jfs-discussion@lists.sourceforge.net
10139 S:      Maintained
10140 W:      http://jfs.sourceforge.net/
10141 T:      git git://github.com/kleikamp/linux-shaggy.git
10142 F:      Documentation/admin-guide/jfs.rst
10143 F:      fs/jfs/
10144
10145 JME NETWORK DRIVER
10146 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10147 L:      netdev@vger.kernel.org
10148 S:      Maintained
10149 F:      drivers/net/ethernet/jme.*
10150
10151 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10152 M:      David Woodhouse <dwmw2@infradead.org>
10153 M:      Richard Weinberger <richard@nod.at>
10154 L:      linux-mtd@lists.infradead.org
10155 S:      Odd Fixes
10156 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10157 T:      git git://git.infradead.org/ubifs-2.6.git
10158 F:      fs/jffs2/
10159 F:      include/uapi/linux/jffs2.h
10160
10161 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10162 M:      "Theodore Ts'o" <tytso@mit.edu>
10163 M:      Jan Kara <jack@suse.com>
10164 L:      linux-ext4@vger.kernel.org
10165 S:      Maintained
10166 F:      fs/jbd2/
10167 F:      include/linux/jbd2.h
10168
10169 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10170 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10171 L:      linux-media@vger.kernel.org
10172 L:      linux-renesas-soc@vger.kernel.org
10173 S:      Maintained
10174 F:      drivers/media/platform/rcar_jpu.c
10175
10176 JSM Neo PCI based serial card
10177 L:      linux-serial@vger.kernel.org
10178 S:      Orphan
10179 F:      drivers/tty/serial/jsm/
10180
10181 K10TEMP HARDWARE MONITORING DRIVER
10182 M:      Clemens Ladisch <clemens@ladisch.de>
10183 L:      linux-hwmon@vger.kernel.org
10184 S:      Maintained
10185 F:      Documentation/hwmon/k10temp.rst
10186 F:      drivers/hwmon/k10temp.c
10187
10188 K8TEMP HARDWARE MONITORING DRIVER
10189 M:      Rudolf Marek <r.marek@assembler.cz>
10190 L:      linux-hwmon@vger.kernel.org
10191 S:      Maintained
10192 F:      Documentation/hwmon/k8temp.rst
10193 F:      drivers/hwmon/k8temp.c
10194
10195 KASAN
10196 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10197 R:      Alexander Potapenko <glider@google.com>
10198 R:      Andrey Konovalov <andreyknvl@gmail.com>
10199 R:      Dmitry Vyukov <dvyukov@google.com>
10200 L:      kasan-dev@googlegroups.com
10201 S:      Maintained
10202 F:      Documentation/dev-tools/kasan.rst
10203 F:      arch/*/include/asm/*kasan.h
10204 F:      arch/*/mm/kasan_init*
10205 F:      include/linux/kasan*.h
10206 F:      lib/Kconfig.kasan
10207 F:      lib/test_kasan*.c
10208 F:      mm/kasan/
10209 F:      scripts/Makefile.kasan
10210
10211 KCONFIG
10212 M:      Masahiro Yamada <masahiroy@kernel.org>
10213 L:      linux-kbuild@vger.kernel.org
10214 S:      Maintained
10215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10216 F:      Documentation/kbuild/kconfig*
10217 F:      scripts/Kconfig.include
10218 F:      scripts/kconfig/
10219
10220 KCOV
10221 R:      Dmitry Vyukov <dvyukov@google.com>
10222 R:      Andrey Konovalov <andreyknvl@gmail.com>
10223 L:      kasan-dev@googlegroups.com
10224 S:      Maintained
10225 F:      Documentation/dev-tools/kcov.rst
10226 F:      include/linux/kcov.h
10227 F:      include/uapi/linux/kcov.h
10228 F:      kernel/kcov.c
10229 F:      scripts/Makefile.kcov
10230
10231 KCSAN
10232 M:      Marco Elver <elver@google.com>
10233 R:      Dmitry Vyukov <dvyukov@google.com>
10234 L:      kasan-dev@googlegroups.com
10235 S:      Maintained
10236 F:      Documentation/dev-tools/kcsan.rst
10237 F:      include/linux/kcsan*.h
10238 F:      kernel/kcsan/
10239 F:      lib/Kconfig.kcsan
10240 F:      scripts/Makefile.kcsan
10241
10242 KDUMP
10243 M:      Dave Young <dyoung@redhat.com>
10244 M:      Baoquan He <bhe@redhat.com>
10245 R:      Vivek Goyal <vgoyal@redhat.com>
10246 L:      kexec@lists.infradead.org
10247 S:      Maintained
10248 W:      http://lse.sourceforge.net/kdump/
10249 F:      Documentation/admin-guide/kdump/
10250 F:      fs/proc/vmcore.c
10251 F:      include/linux/crash_core.h
10252 F:      include/linux/crash_dump.h
10253 F:      include/uapi/linux/vmcore.h
10254 F:      kernel/crash_*.c
10255
10256 KEENE FM RADIO TRANSMITTER DRIVER
10257 M:      Hans Verkuil <hverkuil@xs4all.nl>
10258 L:      linux-media@vger.kernel.org
10259 S:      Maintained
10260 W:      https://linuxtv.org
10261 T:      git git://linuxtv.org/media_tree.git
10262 F:      drivers/media/radio/radio-keene*
10263
10264 KERNEL AUTOMOUNTER
10265 M:      Ian Kent <raven@themaw.net>
10266 L:      autofs@vger.kernel.org
10267 S:      Maintained
10268 F:      fs/autofs/
10269
10270 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10271 M:      Masahiro Yamada <masahiroy@kernel.org>
10272 M:      Michal Marek <michal.lkml@markovi.net>
10273 R:      Nick Desaulniers <ndesaulniers@google.com>
10274 L:      linux-kbuild@vger.kernel.org
10275 S:      Maintained
10276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10277 F:      Documentation/kbuild/
10278 F:      Makefile
10279 F:      scripts/*vmlinux*
10280 F:      scripts/Kbuild*
10281 F:      scripts/Makefile*
10282 F:      scripts/basic/
10283 F:      scripts/dummy-tools/
10284 F:      scripts/mk*
10285 F:      scripts/mod/
10286 F:      scripts/package/
10287
10288 KERNEL JANITORS
10289 L:      kernel-janitors@vger.kernel.org
10290 S:      Odd Fixes
10291 W:      http://kernelnewbies.org/KernelJanitors
10292
10293 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10294 M:      "J. Bruce Fields" <bfields@fieldses.org>
10295 M:      Chuck Lever <chuck.lever@oracle.com>
10296 L:      linux-nfs@vger.kernel.org
10297 S:      Supported
10298 W:      http://nfs.sourceforge.net/
10299 T:      git git://linux-nfs.org/~bfields/linux.git
10300 F:      fs/lockd/
10301 F:      fs/nfs_common/
10302 F:      fs/nfsd/
10303 F:      include/linux/lockd/
10304 F:      include/linux/sunrpc/
10305 F:      include/uapi/linux/nfsd/
10306 F:      include/uapi/linux/sunrpc/
10307 F:      net/sunrpc/
10308 F:      Documentation/filesystems/nfs/
10309
10310 KERNEL REGRESSIONS
10311 M:      Thorsten Leemhuis <linux@leemhuis.info>
10312 L:      regressions@lists.linux.dev
10313 S:      Supported
10314
10315 KERNEL SELFTEST FRAMEWORK
10316 M:      Shuah Khan <shuah@kernel.org>
10317 M:      Shuah Khan <skhan@linuxfoundation.org>
10318 L:      linux-kselftest@vger.kernel.org
10319 S:      Maintained
10320 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10322 F:      Documentation/dev-tools/kselftest*
10323 F:      tools/testing/selftests/
10324
10325 KERNEL SMB3 SERVER (KSMBD)
10326 M:      Namjae Jeon <linkinjeon@kernel.org>
10327 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
10328 M:      Steve French <sfrench@samba.org>
10329 M:      Hyunchul Lee <hyc.lee@gmail.com>
10330 L:      linux-cifs@vger.kernel.org
10331 S:      Maintained
10332 T:      git git://git.samba.org/ksmbd.git
10333 F:      fs/ksmbd/
10334 F:      fs/smbfs_common/
10335
10336 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10337 M:      Brendan Higgins <brendanhiggins@google.com>
10338 L:      linux-kselftest@vger.kernel.org
10339 L:      kunit-dev@googlegroups.com
10340 S:      Maintained
10341 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10342 F:      Documentation/dev-tools/kunit/
10343 F:      include/kunit/
10344 F:      lib/kunit/
10345 F:      tools/testing/kunit/
10346
10347 KERNEL USERMODE HELPER
10348 M:      Luis Chamberlain <mcgrof@kernel.org>
10349 L:      linux-kernel@vger.kernel.org
10350 S:      Maintained
10351 F:      include/linux/umh.h
10352 F:      kernel/umh.c
10353
10354 KERNEL VIRTUAL MACHINE (KVM)
10355 M:      Paolo Bonzini <pbonzini@redhat.com>
10356 L:      kvm@vger.kernel.org
10357 S:      Supported
10358 W:      http://www.linux-kvm.org
10359 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10360 F:      Documentation/virt/kvm/
10361 F:      include/asm-generic/kvm*
10362 F:      include/kvm/iodev.h
10363 F:      include/linux/kvm*
10364 F:      include/trace/events/kvm.h
10365 F:      include/uapi/asm-generic/kvm*
10366 F:      include/uapi/linux/kvm*
10367 F:      tools/kvm/
10368 F:      tools/testing/selftests/kvm/
10369 F:      virt/kvm/*
10370
10371 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10372 M:      Marc Zyngier <maz@kernel.org>
10373 R:      James Morse <james.morse@arm.com>
10374 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10375 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10376 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10377 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10378 S:      Maintained
10379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10380 F:      arch/arm64/include/asm/kvm*
10381 F:      arch/arm64/include/uapi/asm/kvm*
10382 F:      arch/arm64/kvm/
10383 F:      include/kvm/arm_*
10384 F:      tools/testing/selftests/kvm/*/aarch64/
10385 F:      tools/testing/selftests/kvm/aarch64/
10386
10387 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10388 M:      Huacai Chen <chenhuacai@kernel.org>
10389 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10390 L:      linux-mips@vger.kernel.org
10391 L:      kvm@vger.kernel.org
10392 S:      Maintained
10393 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10394 F:      arch/mips/include/asm/kvm*
10395 F:      arch/mips/include/uapi/asm/kvm*
10396 F:      arch/mips/kvm/
10397
10398 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10399 L:      linuxppc-dev@lists.ozlabs.org
10400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
10401 F:      arch/powerpc/include/asm/kvm*
10402 F:      arch/powerpc/include/uapi/asm/kvm*
10403 F:      arch/powerpc/kernel/kvm*
10404 F:      arch/powerpc/kvm/
10405
10406 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
10407 M:      Anup Patel <anup.patel@wdc.com>
10408 R:      Atish Patra <atish.patra@wdc.com>
10409 L:      kvm@vger.kernel.org
10410 L:      kvm-riscv@lists.infradead.org
10411 L:      linux-riscv@lists.infradead.org
10412 S:      Maintained
10413 T:      git git://github.com/kvm-riscv/linux.git
10414 F:      arch/riscv/include/asm/kvm*
10415 F:      arch/riscv/include/uapi/asm/kvm*
10416 F:      arch/riscv/kvm/
10417
10418 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10419 M:      Christian Borntraeger <borntraeger@de.ibm.com>
10420 M:      Janosch Frank <frankja@linux.ibm.com>
10421 R:      David Hildenbrand <david@redhat.com>
10422 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10423 L:      kvm@vger.kernel.org
10424 S:      Supported
10425 W:      http://www.ibm.com/developerworks/linux/linux390/
10426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10427 F:      Documentation/virt/kvm/s390*
10428 F:      arch/s390/include/asm/gmap.h
10429 F:      arch/s390/include/asm/kvm*
10430 F:      arch/s390/include/uapi/asm/kvm*
10431 F:      arch/s390/kernel/uv.c
10432 F:      arch/s390/kvm/
10433 F:      arch/s390/mm/gmap.c
10434 F:      tools/testing/selftests/kvm/*/s390x/
10435 F:      tools/testing/selftests/kvm/s390x/
10436
10437 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10438 M:      Paolo Bonzini <pbonzini@redhat.com>
10439 R:      Sean Christopherson <seanjc@google.com>
10440 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10441 R:      Wanpeng Li <wanpengli@tencent.com>
10442 R:      Jim Mattson <jmattson@google.com>
10443 R:      Joerg Roedel <joro@8bytes.org>
10444 L:      kvm@vger.kernel.org
10445 S:      Supported
10446 W:      http://www.linux-kvm.org
10447 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10448 F:      arch/x86/include/asm/kvm*
10449 F:      arch/x86/include/asm/pvclock-abi.h
10450 F:      arch/x86/include/asm/svm.h
10451 F:      arch/x86/include/asm/vmx*.h
10452 F:      arch/x86/include/uapi/asm/kvm*
10453 F:      arch/x86/include/uapi/asm/svm.h
10454 F:      arch/x86/include/uapi/asm/vmx.h
10455 F:      arch/x86/kernel/kvm.c
10456 F:      arch/x86/kernel/kvmclock.c
10457 F:      arch/x86/kvm/
10458 F:      arch/x86/kvm/*/
10459
10460 KERNFS
10461 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10462 M:      Tejun Heo <tj@kernel.org>
10463 S:      Supported
10464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10465 F:      fs/kernfs/
10466 F:      include/linux/kernfs.h
10467
10468 KEXEC
10469 M:      Eric Biederman <ebiederm@xmission.com>
10470 L:      kexec@lists.infradead.org
10471 S:      Maintained
10472 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10473 F:      include/linux/kexec.h
10474 F:      include/uapi/linux/kexec.h
10475 F:      kernel/kexec*
10476
10477 KEYS-ENCRYPTED
10478 M:      Mimi Zohar <zohar@linux.ibm.com>
10479 L:      linux-integrity@vger.kernel.org
10480 L:      keyrings@vger.kernel.org
10481 S:      Supported
10482 F:      Documentation/security/keys/trusted-encrypted.rst
10483 F:      include/keys/encrypted-type.h
10484 F:      security/keys/encrypted-keys/
10485
10486 KEYS-TRUSTED
10487 M:      James Bottomley <jejb@linux.ibm.com>
10488 M:      Jarkko Sakkinen <jarkko@kernel.org>
10489 M:      Mimi Zohar <zohar@linux.ibm.com>
10490 L:      linux-integrity@vger.kernel.org
10491 L:      keyrings@vger.kernel.org
10492 S:      Supported
10493 F:      Documentation/security/keys/trusted-encrypted.rst
10494 F:      include/keys/trusted-type.h
10495 F:      include/keys/trusted_tpm.h
10496 F:      security/keys/trusted-keys/
10497
10498 KEYS-TRUSTED-TEE
10499 M:      Sumit Garg <sumit.garg@linaro.org>
10500 L:      linux-integrity@vger.kernel.org
10501 L:      keyrings@vger.kernel.org
10502 S:      Supported
10503 F:      include/keys/trusted_tee.h
10504 F:      security/keys/trusted-keys/trusted_tee.c
10505
10506 KEYS/KEYRINGS
10507 M:      David Howells <dhowells@redhat.com>
10508 M:      Jarkko Sakkinen <jarkko@kernel.org>
10509 L:      keyrings@vger.kernel.org
10510 S:      Maintained
10511 F:      Documentation/security/keys/core.rst
10512 F:      include/keys/
10513 F:      include/linux/key-type.h
10514 F:      include/linux/key.h
10515 F:      include/linux/keyctl.h
10516 F:      include/uapi/linux/keyctl.h
10517 F:      security/keys/
10518
10519 KFENCE
10520 M:      Alexander Potapenko <glider@google.com>
10521 M:      Marco Elver <elver@google.com>
10522 R:      Dmitry Vyukov <dvyukov@google.com>
10523 L:      kasan-dev@googlegroups.com
10524 S:      Maintained
10525 F:      Documentation/dev-tools/kfence.rst
10526 F:      arch/*/include/asm/kfence.h
10527 F:      include/linux/kfence.h
10528 F:      lib/Kconfig.kfence
10529 F:      mm/kfence/
10530
10531 KFIFO
10532 M:      Stefani Seibold <stefani@seibold.net>
10533 S:      Maintained
10534 F:      include/linux/kfifo.h
10535 F:      lib/kfifo.c
10536 F:      samples/kfifo/
10537
10538 KGDB / KDB /debug_core
10539 M:      Jason Wessel <jason.wessel@windriver.com>
10540 M:      Daniel Thompson <daniel.thompson@linaro.org>
10541 R:      Douglas Anderson <dianders@chromium.org>
10542 L:      kgdb-bugreport@lists.sourceforge.net
10543 S:      Maintained
10544 W:      http://kgdb.wiki.kernel.org/
10545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10546 F:      Documentation/dev-tools/kgdb.rst
10547 F:      drivers/misc/kgdbts.c
10548 F:      drivers/tty/serial/kgdboc.c
10549 F:      include/linux/kdb.h
10550 F:      include/linux/kgdb.h
10551 F:      kernel/debug/
10552
10553 KHADAS MCU MFD DRIVER
10554 M:      Neil Armstrong <narmstrong@baylibre.com>
10555 L:      linux-amlogic@lists.infradead.org
10556 S:      Maintained
10557 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10558 F:      drivers/mfd/khadas-mcu.c
10559 F:      include/linux/mfd/khadas-mcu.h
10560 F:      drivers/thermal/khadas_mcu_fan.c
10561
10562 KMEMLEAK
10563 M:      Catalin Marinas <catalin.marinas@arm.com>
10564 S:      Maintained
10565 F:      Documentation/dev-tools/kmemleak.rst
10566 F:      include/linux/kmemleak.h
10567 F:      mm/kmemleak.c
10568 F:      samples/kmemleak/kmemleak-test.c
10569
10570 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10571 M:      Luis Chamberlain <mcgrof@kernel.org>
10572 L:      linux-kernel@vger.kernel.org
10573 S:      Maintained
10574 F:      include/linux/kmod.h
10575 F:      kernel/kmod.c
10576 F:      lib/test_kmod.c
10577 F:      tools/testing/selftests/kmod/
10578
10579 KPROBES
10580 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10581 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10582 M:      "David S. Miller" <davem@davemloft.net>
10583 M:      Masami Hiramatsu <mhiramat@kernel.org>
10584 S:      Maintained
10585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
10586 F:      Documentation/trace/kprobes.rst
10587 F:      include/asm-generic/kprobes.h
10588 F:      include/linux/kprobes.h
10589 F:      kernel/kprobes.c
10590 F:      lib/test_kprobes.c
10591 F:      samples/kprobes
10592
10593 KS0108 LCD CONTROLLER DRIVER
10594 M:      Miguel Ojeda <ojeda@kernel.org>
10595 S:      Maintained
10596 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10597 F:      drivers/auxdisplay/ks0108.c
10598 F:      include/linux/ks0108.h
10599
10600 KTD253 BACKLIGHT DRIVER
10601 M:      Linus Walleij <linus.walleij@linaro.org>
10602 S:      Maintained
10603 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10604 F:      drivers/video/backlight/ktd253-backlight.c
10605
10606 KTEST
10607 M:      Steven Rostedt <rostedt@goodmis.org>
10608 M:      John Hawley <warthog9@eaglescrag.net>
10609 S:      Maintained
10610 F:      tools/testing/ktest
10611
10612 L3MDEV
10613 M:      David Ahern <dsahern@kernel.org>
10614 L:      netdev@vger.kernel.org
10615 S:      Maintained
10616 F:      include/net/l3mdev.h
10617 F:      net/l3mdev
10618
10619 L7 BPF FRAMEWORK
10620 M:      John Fastabend <john.fastabend@gmail.com>
10621 M:      Daniel Borkmann <daniel@iogearbox.net>
10622 M:      Jakub Sitnicki <jakub@cloudflare.com>
10623 M:      Lorenz Bauer <lmb@cloudflare.com>
10624 L:      netdev@vger.kernel.org
10625 L:      bpf@vger.kernel.org
10626 S:      Maintained
10627 F:      include/linux/skmsg.h
10628 F:      net/core/skmsg.c
10629 F:      net/core/sock_map.c
10630 F:      net/ipv4/tcp_bpf.c
10631 F:      net/ipv4/udp_bpf.c
10632 F:      net/unix/unix_bpf.c
10633
10634 LANDLOCK SECURITY MODULE
10635 M:      Mickaël Salaün <mic@digikod.net>
10636 L:      linux-security-module@vger.kernel.org
10637 S:      Supported
10638 W:      https://landlock.io
10639 T:      git https://github.com/landlock-lsm/linux.git
10640 F:      Documentation/security/landlock.rst
10641 F:      Documentation/userspace-api/landlock.rst
10642 F:      include/uapi/linux/landlock.h
10643 F:      samples/landlock/
10644 F:      security/landlock/
10645 F:      tools/testing/selftests/landlock/
10646 K:      landlock
10647 K:      LANDLOCK
10648
10649 LANTIQ / INTEL Ethernet drivers
10650 M:      Hauke Mehrtens <hauke@hauke-m.de>
10651 L:      netdev@vger.kernel.org
10652 S:      Maintained
10653 F:      drivers/net/dsa/lantiq_gswip.c
10654 F:      drivers/net/dsa/lantiq_pce.h
10655 F:      drivers/net/ethernet/lantiq_xrx200.c
10656 F:      net/dsa/tag_gswip.c
10657
10658 LANTIQ MIPS ARCHITECTURE
10659 M:      John Crispin <john@phrozen.org>
10660 L:      linux-mips@vger.kernel.org
10661 S:      Maintained
10662 F:      arch/mips/lantiq
10663 F:      drivers/soc/lantiq
10664
10665 LASI 53c700 driver for PARISC
10666 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10667 L:      linux-scsi@vger.kernel.org
10668 S:      Maintained
10669 F:      Documentation/scsi/53c700.rst
10670 F:      drivers/scsi/53c700*
10671
10672 LEAKING_ADDRESSES
10673 M:      Tobin C. Harding <me@tobin.cc>
10674 M:      Tycho Andersen <tycho@tycho.pizza>
10675 L:      linux-hardening@vger.kernel.org
10676 S:      Maintained
10677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10678 F:      scripts/leaking_addresses.pl
10679
10680 LED SUBSYSTEM
10681 M:      Pavel Machek <pavel@ucw.cz>
10682 L:      linux-leds@vger.kernel.org
10683 S:      Maintained
10684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10685 F:      Documentation/devicetree/bindings/leds/
10686 F:      drivers/leds/
10687 F:      include/linux/leds.h
10688
10689 LEGACY EEPROM DRIVER
10690 M:      Jean Delvare <jdelvare@suse.com>
10691 S:      Maintained
10692 F:      Documentation/misc-devices/eeprom.rst
10693 F:      drivers/misc/eeprom/eeprom.c
10694
10695 LEGO MINDSTORMS EV3
10696 R:      David Lechner <david@lechnology.com>
10697 S:      Maintained
10698 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10699 F:      arch/arm/boot/dts/da850-lego-ev3.dts
10700 F:      drivers/power/supply/lego_ev3_battery.c
10701
10702 LEGO USB Tower driver
10703 M:      Juergen Stuber <starblue@users.sourceforge.net>
10704 L:      legousb-devel@lists.sourceforge.net
10705 S:      Maintained
10706 W:      http://legousb.sourceforge.net/
10707 F:      drivers/usb/misc/legousbtower.c
10708
10709 LG LAPTOP EXTRAS
10710 M:      Matan Ziv-Av <matan@svgalib.org>
10711 L:      platform-driver-x86@vger.kernel.org
10712 S:      Maintained
10713 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10714 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10715 F:      drivers/platform/x86/lg-laptop.c
10716
10717 LG2160 MEDIA DRIVER
10718 M:      Michael Krufky <mkrufky@linuxtv.org>
10719 L:      linux-media@vger.kernel.org
10720 S:      Maintained
10721 W:      https://linuxtv.org
10722 W:      http://github.com/mkrufky
10723 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10724 T:      git git://linuxtv.org/mkrufky/tuners.git
10725 F:      drivers/media/dvb-frontends/lg2160.*
10726
10727 LGDT3305 MEDIA DRIVER
10728 M:      Michael Krufky <mkrufky@linuxtv.org>
10729 L:      linux-media@vger.kernel.org
10730 S:      Maintained
10731 W:      https://linuxtv.org
10732 W:      http://github.com/mkrufky
10733 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10734 T:      git git://linuxtv.org/mkrufky/tuners.git
10735 F:      drivers/media/dvb-frontends/lgdt3305.*
10736
10737 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10738 M:      Viresh Kumar <vireshk@kernel.org>
10739 L:      linux-ide@vger.kernel.org
10740 S:      Maintained
10741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10742 F:      drivers/ata/pata_arasan_cf.c
10743 F:      include/linux/pata_arasan_cf_data.h
10744
10745 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10746 M:      Linus Walleij <linus.walleij@linaro.org>
10747 L:      linux-ide@vger.kernel.org
10748 S:      Maintained
10749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10750 F:      drivers/ata/pata_ftide010.c
10751 F:      drivers/ata/sata_gemini.c
10752 F:      drivers/ata/sata_gemini.h
10753
10754 LIBATA SATA AHCI PLATFORM devices support
10755 M:      Hans de Goede <hdegoede@redhat.com>
10756 M:      Jens Axboe <axboe@kernel.dk>
10757 L:      linux-ide@vger.kernel.org
10758 S:      Maintained
10759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10760 F:      drivers/ata/ahci_platform.c
10761 F:      drivers/ata/libahci_platform.c
10762 F:      include/linux/ahci_platform.h
10763
10764 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10765 M:      Mikael Pettersson <mikpelinux@gmail.com>
10766 L:      linux-ide@vger.kernel.org
10767 S:      Maintained
10768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10769 F:      drivers/ata/sata_promise.*
10770
10771 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10772 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
10773 L:      linux-ide@vger.kernel.org
10774 S:      Maintained
10775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
10776 F:      Documentation/devicetree/bindings/ata/
10777 F:      drivers/ata/
10778 F:      include/linux/ata.h
10779 F:      include/linux/libata.h
10780
10781 LIBLOCKDEP
10782 M:      Sasha Levin <alexander.levin@microsoft.com>
10783 S:      Maintained
10784 F:      tools/lib/lockdep/
10785
10786 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10787 M:      Dan Williams <dan.j.williams@intel.com>
10788 M:      Vishal Verma <vishal.l.verma@intel.com>
10789 M:      Dave Jiang <dave.jiang@intel.com>
10790 L:      nvdimm@lists.linux.dev
10791 S:      Supported
10792 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10793 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10794 F:      drivers/nvdimm/blk.c
10795 F:      drivers/nvdimm/region_devs.c
10796
10797 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10798 M:      Vishal Verma <vishal.l.verma@intel.com>
10799 M:      Dan Williams <dan.j.williams@intel.com>
10800 M:      Dave Jiang <dave.jiang@intel.com>
10801 L:      nvdimm@lists.linux.dev
10802 S:      Supported
10803 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10804 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10805 F:      drivers/nvdimm/btt*
10806
10807 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10808 M:      Dan Williams <dan.j.williams@intel.com>
10809 M:      Vishal Verma <vishal.l.verma@intel.com>
10810 M:      Dave Jiang <dave.jiang@intel.com>
10811 L:      nvdimm@lists.linux.dev
10812 S:      Supported
10813 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10814 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10815 F:      drivers/nvdimm/pmem*
10816
10817 LIBNVDIMM: DEVICETREE BINDINGS
10818 M:      Oliver O'Halloran <oohall@gmail.com>
10819 L:      nvdimm@lists.linux.dev
10820 S:      Supported
10821 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10822 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10823 F:      drivers/nvdimm/of_pmem.c
10824
10825 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10826 M:      Dan Williams <dan.j.williams@intel.com>
10827 M:      Vishal Verma <vishal.l.verma@intel.com>
10828 M:      Dave Jiang <dave.jiang@intel.com>
10829 M:      Ira Weiny <ira.weiny@intel.com>
10830 L:      nvdimm@lists.linux.dev
10831 S:      Supported
10832 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10833 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10835 F:      drivers/acpi/nfit/*
10836 F:      drivers/nvdimm/*
10837 F:      include/linux/libnvdimm.h
10838 F:      include/linux/nd.h
10839 F:      include/uapi/linux/ndctl.h
10840 F:      tools/testing/nvdimm/
10841
10842 LICENSES and SPDX stuff
10843 M:      Thomas Gleixner <tglx@linutronix.de>
10844 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10845 L:      linux-spdx@vger.kernel.org
10846 S:      Maintained
10847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10848 F:      COPYING
10849 F:      Documentation/process/license-rules.rst
10850 F:      LICENSES/
10851 F:      scripts/spdxcheck-test.sh
10852 F:      scripts/spdxcheck.py
10853
10854 LINEAR RANGES HELPERS
10855 M:      Mark Brown <broonie@kernel.org>
10856 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10857 F:      lib/linear_ranges.c
10858 F:      lib/test_linear_ranges.c
10859 F:      include/linux/linear_range.h
10860
10861 LINUX FOR POWER MACINTOSH
10862 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10863 L:      linuxppc-dev@lists.ozlabs.org
10864 S:      Odd Fixes
10865 F:      arch/powerpc/platforms/powermac/
10866 F:      drivers/macintosh/
10867
10868 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10869 M:      Michael Ellerman <mpe@ellerman.id.au>
10870 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10871 R:      Paul Mackerras <paulus@samba.org>
10872 L:      linuxppc-dev@lists.ozlabs.org
10873 S:      Supported
10874 W:      https://github.com/linuxppc/wiki/wiki
10875 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10877 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10878 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10879 F:      Documentation/devicetree/bindings/powerpc/
10880 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10881 F:      Documentation/powerpc/
10882 F:      arch/powerpc/
10883 F:      drivers/*/*/*pasemi*
10884 F:      drivers/*/*pasemi*
10885 F:      drivers/char/tpm/tpm_ibmvtpm*
10886 F:      drivers/crypto/nx/
10887 F:      drivers/crypto/vmx/
10888 F:      drivers/i2c/busses/i2c-opal.c
10889 F:      drivers/net/ethernet/ibm/ibmveth.*
10890 F:      drivers/net/ethernet/ibm/ibmvnic.*
10891 F:      drivers/pci/hotplug/pnv_php.c
10892 F:      drivers/pci/hotplug/rpa*
10893 F:      drivers/rtc/rtc-opal.c
10894 F:      drivers/scsi/ibmvscsi/
10895 F:      drivers/tty/hvc/hvc_opal.c
10896 F:      drivers/watchdog/wdrtas.c
10897 F:      tools/testing/selftests/powerpc
10898 N:      /pmac
10899 N:      powermac
10900 N:      powernv
10901 N:      [^a-z0-9]ps3
10902 N:      pseries
10903
10904 LINUX FOR POWERPC EMBEDDED MPC5XXX
10905 M:      Anatolij Gustschin <agust@denx.de>
10906 L:      linuxppc-dev@lists.ozlabs.org
10907 S:      Odd Fixes
10908 F:      arch/powerpc/platforms/512x/
10909 F:      arch/powerpc/platforms/52xx/
10910
10911 LINUX FOR POWERPC EMBEDDED PPC4XX
10912 L:      linuxppc-dev@lists.ozlabs.org
10913 S:      Orphan
10914 F:      arch/powerpc/platforms/40x/
10915 F:      arch/powerpc/platforms/44x/
10916
10917 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10918 M:      Scott Wood <oss@buserror.net>
10919 L:      linuxppc-dev@lists.ozlabs.org
10920 S:      Odd fixes
10921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10922 F:      Documentation/devicetree/bindings/powerpc/fsl/
10923 F:      arch/powerpc/platforms/83xx/
10924 F:      arch/powerpc/platforms/85xx/
10925
10926 LINUX FOR POWERPC EMBEDDED PPC8XX
10927 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10928 L:      linuxppc-dev@lists.ozlabs.org
10929 S:      Maintained
10930 F:      arch/powerpc/platforms/8xx/
10931
10932 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10933 M:      Kees Cook <keescook@chromium.org>
10934 S:      Maintained
10935 F:      drivers/misc/lkdtm/*
10936 F:      tools/testing/selftests/lkdtm/*
10937
10938 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10939 M:      Alan Stern <stern@rowland.harvard.edu>
10940 M:      Andrea Parri <parri.andrea@gmail.com>
10941 M:      Will Deacon <will@kernel.org>
10942 M:      Peter Zijlstra <peterz@infradead.org>
10943 M:      Boqun Feng <boqun.feng@gmail.com>
10944 M:      Nicholas Piggin <npiggin@gmail.com>
10945 M:      David Howells <dhowells@redhat.com>
10946 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10947 M:      Luc Maranget <luc.maranget@inria.fr>
10948 M:      "Paul E. McKenney" <paulmck@kernel.org>
10949 R:      Akira Yokosawa <akiyks@gmail.com>
10950 R:      Daniel Lustig <dlustig@nvidia.com>
10951 R:      Joel Fernandes <joel@joelfernandes.org>
10952 L:      linux-kernel@vger.kernel.org
10953 L:      linux-arch@vger.kernel.org
10954 S:      Supported
10955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10956 F:      Documentation/atomic_bitops.txt
10957 F:      Documentation/atomic_t.txt
10958 F:      Documentation/core-api/refcount-vs-atomic.rst
10959 F:      Documentation/litmus-tests/
10960 F:      Documentation/memory-barriers.txt
10961 F:      tools/memory-model/
10962
10963 LIS3LV02D ACCELEROMETER DRIVER
10964 M:      Eric Piel <eric.piel@tremplin-utc.net>
10965 S:      Maintained
10966 F:      Documentation/misc-devices/lis3lv02d.rst
10967 F:      drivers/misc/lis3lv02d/
10968 F:      drivers/platform/x86/hp_accel.c
10969
10970 LIST KUNIT TEST
10971 M:      David Gow <davidgow@google.com>
10972 L:      linux-kselftest@vger.kernel.org
10973 L:      kunit-dev@googlegroups.com
10974 S:      Maintained
10975 F:      lib/list-test.c
10976
10977 LITEX PLATFORM
10978 M:      Karol Gugala <kgugala@antmicro.com>
10979 M:      Mateusz Holenko <mholenko@antmicro.com>
10980 S:      Maintained
10981 F:      Documentation/devicetree/bindings/*/litex,*.yaml
10982 F:      arch/openrisc/boot/dts/or1klitex.dts
10983 F:      drivers/soc/litex/litex_soc_ctrl.c
10984 F:      drivers/tty/serial/liteuart.c
10985 F:      include/linux/litex.h
10986
10987 LIVE PATCHING
10988 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10989 M:      Jiri Kosina <jikos@kernel.org>
10990 M:      Miroslav Benes <mbenes@suse.cz>
10991 M:      Petr Mladek <pmladek@suse.com>
10992 R:      Joe Lawrence <joe.lawrence@redhat.com>
10993 L:      live-patching@vger.kernel.org
10994 S:      Maintained
10995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10996 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10997 F:      Documentation/livepatch/
10998 F:      arch/powerpc/include/asm/livepatch.h
10999 F:      arch/s390/include/asm/livepatch.h
11000 F:      arch/x86/include/asm/livepatch.h
11001 F:      include/linux/livepatch.h
11002 F:      kernel/livepatch/
11003 F:      lib/livepatch/
11004 F:      samples/livepatch/
11005 F:      tools/testing/selftests/livepatch/
11006
11007 LLC (802.2)
11008 L:      netdev@vger.kernel.org
11009 S:      Odd fixes
11010 F:      include/linux/llc.h
11011 F:      include/net/llc*
11012 F:      include/uapi/linux/llc.h
11013 F:      net/llc/
11014
11015 LM73 HARDWARE MONITOR DRIVER
11016 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11017 L:      linux-hwmon@vger.kernel.org
11018 S:      Maintained
11019 F:      drivers/hwmon/lm73.c
11020
11021 LM78 HARDWARE MONITOR DRIVER
11022 M:      Jean Delvare <jdelvare@suse.com>
11023 L:      linux-hwmon@vger.kernel.org
11024 S:      Maintained
11025 F:      Documentation/hwmon/lm78.rst
11026 F:      drivers/hwmon/lm78.c
11027
11028 LM83 HARDWARE MONITOR DRIVER
11029 M:      Jean Delvare <jdelvare@suse.com>
11030 L:      linux-hwmon@vger.kernel.org
11031 S:      Maintained
11032 F:      Documentation/hwmon/lm83.rst
11033 F:      drivers/hwmon/lm83.c
11034
11035 LM90 HARDWARE MONITOR DRIVER
11036 M:      Jean Delvare <jdelvare@suse.com>
11037 L:      linux-hwmon@vger.kernel.org
11038 S:      Maintained
11039 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11040 F:      Documentation/hwmon/lm90.rst
11041 F:      drivers/hwmon/lm90.c
11042 F:      include/dt-bindings/thermal/lm90.h
11043
11044 LM95234 HARDWARE MONITOR DRIVER
11045 M:      Guenter Roeck <linux@roeck-us.net>
11046 L:      linux-hwmon@vger.kernel.org
11047 S:      Maintained
11048 F:      Documentation/hwmon/lm95234.rst
11049 F:      drivers/hwmon/lm95234.c
11050
11051 LME2510 MEDIA DRIVER
11052 M:      Malcolm Priestley <tvboxspy@gmail.com>
11053 L:      linux-media@vger.kernel.org
11054 S:      Maintained
11055 W:      https://linuxtv.org
11056 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11057 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11058
11059 LOADPIN SECURITY MODULE
11060 M:      Kees Cook <keescook@chromium.org>
11061 S:      Supported
11062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11063 F:      Documentation/admin-guide/LSM/LoadPin.rst
11064 F:      security/loadpin/
11065
11066 LOCKING PRIMITIVES
11067 M:      Peter Zijlstra <peterz@infradead.org>
11068 M:      Ingo Molnar <mingo@redhat.com>
11069 M:      Will Deacon <will@kernel.org>
11070 R:      Waiman Long <longman@redhat.com>
11071 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11072 L:      linux-kernel@vger.kernel.org
11073 S:      Maintained
11074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11075 F:      Documentation/locking/
11076 F:      arch/*/include/asm/spinlock*.h
11077 F:      include/linux/lockdep.h
11078 F:      include/linux/mutex*.h
11079 F:      include/linux/rwlock*.h
11080 F:      include/linux/rwsem*.h
11081 F:      include/linux/seqlock.h
11082 F:      include/linux/spinlock*.h
11083 F:      kernel/locking/
11084 F:      lib/locking*.[ch]
11085 X:      kernel/locking/locktorture.c
11086
11087 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11088 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11089 L:      linux-ntfs-dev@lists.sourceforge.net
11090 S:      Maintained
11091 W:      http://www.linux-ntfs.org/content/view/19/37/
11092 F:      Documentation/admin-guide/ldm.rst
11093 F:      block/partitions/ldm.*
11094
11095 LOGITECH HID GAMING KEYBOARDS
11096 M:      Hans de Goede <hdegoede@redhat.com>
11097 L:      linux-input@vger.kernel.org
11098 S:      Maintained
11099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11100 F:      drivers/hid/hid-lg-g15.c
11101
11102 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11103 M:      Adrien Grassein <adrien.grassein@gmail.com>
11104 S:      Maintained
11105 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11106 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11107
11108 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11109 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11110 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11111 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11112 L:      MPT-FusionLinux.pdl@broadcom.com
11113 L:      linux-scsi@vger.kernel.org
11114 S:      Supported
11115 W:      http://www.avagotech.com/support/
11116 F:      drivers/message/fusion/
11117 F:      drivers/scsi/mpt3sas/
11118
11119 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11120 M:      Matthew Wilcox <willy@infradead.org>
11121 L:      linux-scsi@vger.kernel.org
11122 S:      Maintained
11123 F:      drivers/scsi/sym53c8xx_2/
11124
11125 LTC1660 DAC DRIVER
11126 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11127 L:      linux-iio@vger.kernel.org
11128 S:      Maintained
11129 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11130 F:      drivers/iio/dac/ltc1660.c
11131
11132 LTC2947 HARDWARE MONITOR DRIVER
11133 M:      Nuno Sá <nuno.sa@analog.com>
11134 L:      linux-hwmon@vger.kernel.org
11135 S:      Supported
11136 W:      http://ez.analog.com/community/linux-device-drivers
11137 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11138 F:      drivers/hwmon/ltc2947-core.c
11139 F:      drivers/hwmon/ltc2947-i2c.c
11140 F:      drivers/hwmon/ltc2947-spi.c
11141 F:      drivers/hwmon/ltc2947.h
11142
11143 LTC2983 IIO TEMPERATURE DRIVER
11144 M:      Nuno Sá <nuno.sa@analog.com>
11145 L:      linux-iio@vger.kernel.org
11146 S:      Supported
11147 W:      http://ez.analog.com/community/linux-device-drivers
11148 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11149 F:      drivers/iio/temperature/ltc2983.c
11150
11151 LTC4261 HARDWARE MONITOR DRIVER
11152 M:      Guenter Roeck <linux@roeck-us.net>
11153 L:      linux-hwmon@vger.kernel.org
11154 S:      Maintained
11155 F:      Documentation/hwmon/ltc4261.rst
11156 F:      drivers/hwmon/ltc4261.c
11157
11158 LTC4306 I2C MULTIPLEXER DRIVER
11159 M:      Michael Hennerich <michael.hennerich@analog.com>
11160 L:      linux-i2c@vger.kernel.org
11161 S:      Supported
11162 W:      http://ez.analog.com/community/linux-device-drivers
11163 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11164 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11165
11166 LTP (Linux Test Project)
11167 M:      Mike Frysinger <vapier@gentoo.org>
11168 M:      Cyril Hrubis <chrubis@suse.cz>
11169 M:      Wanlong Gao <wanlong.gao@gmail.com>
11170 M:      Jan Stancek <jstancek@redhat.com>
11171 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11172 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11173 L:      ltp@lists.linux.it (subscribers-only)
11174 S:      Maintained
11175 W:      http://linux-test-project.github.io/
11176 T:      git git://github.com/linux-test-project/ltp.git
11177
11178 LYNX PCS MODULE
11179 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11180 L:      netdev@vger.kernel.org
11181 S:      Supported
11182 F:      drivers/net/pcs/pcs-lynx.c
11183 F:      include/linux/pcs-lynx.h
11184
11185 M68K ARCHITECTURE
11186 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11187 L:      linux-m68k@lists.linux-m68k.org
11188 S:      Maintained
11189 W:      http://www.linux-m68k.org/
11190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11191 F:      arch/m68k/
11192 F:      drivers/zorro/
11193
11194 M68K ON APPLE MACINTOSH
11195 M:      Joshua Thompson <funaho@jurai.org>
11196 L:      linux-m68k@lists.linux-m68k.org
11197 S:      Maintained
11198 W:      http://www.mac.linux-m68k.org/
11199 F:      arch/m68k/mac/
11200 F:      drivers/macintosh/adb-iop.c
11201 F:      drivers/macintosh/via-macii.c
11202
11203 M68K ON HP9000/300
11204 M:      Philip Blundell <philb@gnu.org>
11205 S:      Maintained
11206 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11207 F:      arch/m68k/hp300/
11208
11209 M88DS3103 MEDIA DRIVER
11210 M:      Antti Palosaari <crope@iki.fi>
11211 L:      linux-media@vger.kernel.org
11212 S:      Maintained
11213 W:      https://linuxtv.org
11214 W:      http://palosaari.fi/linux/
11215 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11216 T:      git git://linuxtv.org/anttip/media_tree.git
11217 F:      drivers/media/dvb-frontends/m88ds3103*
11218
11219 M88RS2000 MEDIA DRIVER
11220 M:      Malcolm Priestley <tvboxspy@gmail.com>
11221 L:      linux-media@vger.kernel.org
11222 S:      Maintained
11223 W:      https://linuxtv.org
11224 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11225 F:      drivers/media/dvb-frontends/m88rs2000*
11226
11227 MA901 MASTERKIT USB FM RADIO DRIVER
11228 M:      Alexey Klimov <klimov.linux@gmail.com>
11229 L:      linux-media@vger.kernel.org
11230 S:      Maintained
11231 T:      git git://linuxtv.org/media_tree.git
11232 F:      drivers/media/radio/radio-ma901.c
11233
11234 MAC80211
11235 M:      Johannes Berg <johannes@sipsolutions.net>
11236 L:      linux-wireless@vger.kernel.org
11237 S:      Maintained
11238 W:      https://wireless.wiki.kernel.org/
11239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11241 F:      Documentation/networking/mac80211-injection.rst
11242 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11243 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11244 F:      include/net/mac80211.h
11245 F:      net/mac80211/
11246
11247 MAILBOX API
11248 M:      Jassi Brar <jassisinghbrar@gmail.com>
11249 L:      linux-kernel@vger.kernel.org
11250 S:      Maintained
11251 F:      drivers/mailbox/
11252 F:      include/linux/mailbox_client.h
11253 F:      include/linux/mailbox_controller.h
11254 F:      include/dt-bindings/mailbox/
11255 F:      Documentation/devicetree/bindings/mailbox/
11256
11257 MAILBOX ARM MHUv2
11258 M:      Viresh Kumar <viresh.kumar@linaro.org>
11259 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11260 L:      linux-kernel@vger.kernel.org
11261 S:      Maintained
11262 F:      drivers/mailbox/arm_mhuv2.c
11263 F:      include/linux/mailbox/arm_mhuv2_message.h
11264 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11265
11266 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11267 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11268 M:      Matt Johnston <matt@codeconstruct.com.au>
11269 L:      netdev@vger.kernel.org
11270 S:      Maintained
11271 F:      Documentation/networking/mctp.rst
11272 F:      drivers/net/mctp/
11273 F:      include/net/mctp.h
11274 F:      include/net/mctpdevice.h
11275 F:      include/net/netns/mctp.h
11276 F:      net/mctp/
11277
11278 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11279 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11280 L:      linux-man@vger.kernel.org
11281 S:      Maintained
11282 W:      http://www.kernel.org/doc/man-pages
11283
11284 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11285 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11286 L:      linux-mips@vger.kernel.org
11287 S:      Maintained
11288 F:      arch/mips/boot/dts/img/pistachio*
11289
11290 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11291 M:      Andrew Lunn <andrew@lunn.ch>
11292 M:      Vivien Didelot <vivien.didelot@gmail.com>
11293 L:      netdev@vger.kernel.org
11294 S:      Maintained
11295 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11296 F:      Documentation/networking/devlink/mv88e6xxx.rst
11297 F:      drivers/net/dsa/mv88e6xxx/
11298 F:      include/linux/dsa/mv88e6xxx.h
11299 F:      include/linux/platform_data/mv88e6xxx.h
11300
11301 MARVELL ARMADA 3700 PHY DRIVERS
11302 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11303 S:      Maintained
11304 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11305 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11306 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11307 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11308
11309 MARVELL ARMADA DRM SUPPORT
11310 M:      Russell King <linux@armlinux.org.uk>
11311 S:      Maintained
11312 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11313 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11314 F:      Documentation/devicetree/bindings/display/armada/
11315 F:      drivers/gpu/drm/armada/
11316 F:      include/uapi/drm/armada_drm.h
11317
11318 MARVELL CRYPTO DRIVER
11319 M:      Boris Brezillon <bbrezillon@kernel.org>
11320 M:      Arnaud Ebalard <arno@natisbad.org>
11321 M:      Srujana Challa <schalla@marvell.com>
11322 L:      linux-crypto@vger.kernel.org
11323 S:      Maintained
11324 F:      drivers/crypto/marvell/
11325 F:      include/linux/soc/marvell/octeontx2/
11326
11327 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11328 M:      Mirko Lindner <mlindner@marvell.com>
11329 M:      Stephen Hemminger <stephen@networkplumber.org>
11330 L:      netdev@vger.kernel.org
11331 S:      Maintained
11332 F:      drivers/net/ethernet/marvell/sk*
11333
11334 MARVELL LIBERTAS WIRELESS DRIVER
11335 L:      libertas-dev@lists.infradead.org
11336 S:      Orphan
11337 F:      drivers/net/wireless/marvell/libertas/
11338
11339 MARVELL MACCHIATOBIN SUPPORT
11340 M:      Russell King <linux@armlinux.org.uk>
11341 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11342 S:      Maintained
11343 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11344
11345 MARVELL MV643XX ETHERNET DRIVER
11346 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11347 L:      netdev@vger.kernel.org
11348 S:      Maintained
11349 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11350 F:      include/linux/mv643xx.h
11351
11352 MARVELL MV88X3310 PHY DRIVER
11353 M:      Russell King <linux@armlinux.org.uk>
11354 M:      Marek Behún <kabel@kernel.org>
11355 L:      netdev@vger.kernel.org
11356 S:      Maintained
11357 F:      drivers/net/phy/marvell10g.c
11358
11359 MARVELL MVEBU THERMAL DRIVER
11360 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11361 S:      Maintained
11362 F:      drivers/thermal/armada_thermal.c
11363
11364 MARVELL MVNETA ETHERNET DRIVER
11365 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11366 L:      netdev@vger.kernel.org
11367 S:      Maintained
11368 F:      drivers/net/ethernet/marvell/mvneta.*
11369
11370 MARVELL MVPP2 ETHERNET DRIVER
11371 M:      Marcin Wojtas <mw@semihalf.com>
11372 M:      Russell King <linux@armlinux.org.uk>
11373 L:      netdev@vger.kernel.org
11374 S:      Maintained
11375 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11376 F:      drivers/net/ethernet/marvell/mvpp2/
11377
11378 MARVELL MWIFIEX WIRELESS DRIVER
11379 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11380 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11381 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11382 M:      Xinming Hu <huxinming820@gmail.com>
11383 L:      linux-wireless@vger.kernel.org
11384 S:      Maintained
11385 F:      drivers/net/wireless/marvell/mwifiex/
11386
11387 MARVELL MWL8K WIRELESS DRIVER
11388 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11389 L:      linux-wireless@vger.kernel.org
11390 S:      Odd Fixes
11391 F:      drivers/net/wireless/marvell/mwl8k.c
11392
11393 MARVELL NAND CONTROLLER DRIVER
11394 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11395 L:      linux-mtd@lists.infradead.org
11396 S:      Maintained
11397 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11398 F:      drivers/mtd/nand/raw/marvell_nand.c
11399
11400 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11401 M:      Sunil Goutham <sgoutham@marvell.com>
11402 M:      Geetha sowjanya <gakula@marvell.com>
11403 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11404 M:      hariprasad <hkelam@marvell.com>
11405 L:      netdev@vger.kernel.org
11406 S:      Supported
11407 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11408 F:      include/linux/soc/marvell/octeontx2/
11409
11410 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11411 M:      Sunil Goutham <sgoutham@marvell.com>
11412 M:      Linu Cherian <lcherian@marvell.com>
11413 M:      Geetha sowjanya <gakula@marvell.com>
11414 M:      Jerin Jacob <jerinj@marvell.com>
11415 M:      hariprasad <hkelam@marvell.com>
11416 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11417 L:      netdev@vger.kernel.org
11418 S:      Supported
11419 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11420 F:      drivers/net/ethernet/marvell/octeontx2/af/
11421
11422 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11423 M:      Taras Chornyi <tchornyi@marvell.com>
11424 S:      Supported
11425 W:      https://github.com/Marvell-switching/switchdev-prestera
11426 F:      drivers/net/ethernet/marvell/prestera/
11427
11428 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11429 M:      Nicolas Pitre <nico@fluxnic.net>
11430 S:      Odd Fixes
11431 F:      drivers/mmc/host/mvsdio.*
11432
11433 MARVELL USB MDIO CONTROLLER DRIVER
11434 M:      Tobias Waldekranz <tobias@waldekranz.com>
11435 L:      netdev@vger.kernel.org
11436 S:      Maintained
11437 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11438 F:      drivers/net/mdio/mdio-mvusb.c
11439
11440 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11441 M:      Hu Ziji <huziji@marvell.com>
11442 L:      linux-mmc@vger.kernel.org
11443 S:      Supported
11444 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11445 F:      drivers/mmc/host/sdhci-xenon*
11446
11447 MATROX FRAMEBUFFER DRIVER
11448 L:      linux-fbdev@vger.kernel.org
11449 S:      Orphan
11450 F:      drivers/video/fbdev/matrox/matroxfb_*
11451 F:      include/uapi/linux/matroxfb.h
11452
11453 MAX15301 DRIVER
11454 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11455 L:      linux-hwmon@vger.kernel.org
11456 S:      Maintained
11457 F:      Documentation/hwmon/max15301.rst
11458 F:      drivers/hwmon/pmbus/max15301.c
11459
11460 MAX16065 HARDWARE MONITOR DRIVER
11461 M:      Guenter Roeck <linux@roeck-us.net>
11462 L:      linux-hwmon@vger.kernel.org
11463 S:      Maintained
11464 F:      Documentation/hwmon/max16065.rst
11465 F:      drivers/hwmon/max16065.c
11466
11467 MAX2175 SDR TUNER DRIVER
11468 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11469 L:      linux-media@vger.kernel.org
11470 S:      Maintained
11471 T:      git git://linuxtv.org/media_tree.git
11472 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11473 F:      Documentation/userspace-api/media/drivers/max2175.rst
11474 F:      drivers/media/i2c/max2175*
11475 F:      include/uapi/linux/max2175.h
11476
11477 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11478 L:      linux-hwmon@vger.kernel.org
11479 S:      Orphan
11480 F:      Documentation/hwmon/max6650.rst
11481 F:      drivers/hwmon/max6650.c
11482
11483 MAX6697 HARDWARE MONITOR DRIVER
11484 M:      Guenter Roeck <linux@roeck-us.net>
11485 L:      linux-hwmon@vger.kernel.org
11486 S:      Maintained
11487 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11488 F:      Documentation/hwmon/max6697.rst
11489 F:      drivers/hwmon/max6697.c
11490 F:      include/linux/platform_data/max6697.h
11491
11492 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11493 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11494 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11495 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11496 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11497 L:      linux-media@vger.kernel.org
11498 S:      Maintained
11499 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11500 F:      drivers/media/i2c/max9286.c
11501
11502 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11503 M:      Peter Rosin <peda@axentia.se>
11504 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11505 S:      Maintained
11506 F:      Documentation/devicetree/bindings/sound/max9860.txt
11507 F:      sound/soc/codecs/max9860.*
11508
11509 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11510 M:      Andreas Klinger <ak@it-klinger.de>
11511 L:      linux-iio@vger.kernel.org
11512 S:      Maintained
11513 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11514 F:      drivers/iio/proximity/mb1232.c
11515
11516 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
11517 R:      Iskren Chernev <iskren.chernev@gmail.com>
11518 R:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11519 R:      Marek Szyprowski <m.szyprowski@samsung.com>
11520 R:      Matheus Castello <matheus@castello.eng.br>
11521 L:      linux-pm@vger.kernel.org
11522 S:      Maintained
11523 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
11524 F:      drivers/power/supply/max17040_battery.c
11525
11526 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
11527 R:      Hans de Goede <hdegoede@redhat.com>
11528 R:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11529 R:      Marek Szyprowski <m.szyprowski@samsung.com>
11530 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
11531 R:      Purism Kernel Team <kernel@puri.sm>
11532 L:      linux-pm@vger.kernel.org
11533 S:      Maintained
11534 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
11535 F:      drivers/power/supply/max17042_battery.c
11536
11537 MAXIM MAX77650 PMIC MFD DRIVER
11538 M:      Bartosz Golaszewski <brgl@bgdev.pl>
11539 L:      linux-kernel@vger.kernel.org
11540 S:      Maintained
11541 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11542 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11543 F:      drivers/gpio/gpio-max77650.c
11544 F:      drivers/input/misc/max77650-onkey.c
11545 F:      drivers/leds/leds-max77650.c
11546 F:      drivers/mfd/max77650.c
11547 F:      drivers/power/supply/max77650-charger.c
11548 F:      drivers/regulator/max77650-regulator.c
11549 F:      include/linux/mfd/max77650.h
11550
11551 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11552 M:      Javier Martinez Canillas <javier@dowhile0.org>
11553 L:      linux-kernel@vger.kernel.org
11554 S:      Supported
11555 F:      Documentation/devicetree/bindings/*/*max77802.txt
11556 F:      drivers/regulator/max77802-regulator.c
11557 F:      include/dt-bindings/*/*max77802.h
11558
11559 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11560 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11561 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11562 L:      linux-pm@vger.kernel.org
11563 S:      Supported
11564 F:      drivers/power/supply/max14577_charger.c
11565 F:      drivers/power/supply/max77693_charger.c
11566
11567 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11568 M:      Chanwoo Choi <cw00.choi@samsung.com>
11569 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11570 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11571 L:      linux-kernel@vger.kernel.org
11572 S:      Supported
11573 F:      Documentation/devicetree/bindings/*/max77686.txt
11574 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11575 F:      Documentation/devicetree/bindings/mfd/max14577.txt
11576 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11577 F:      drivers/*/max14577*.c
11578 F:      drivers/*/max77686*.c
11579 F:      drivers/*/max77693*.c
11580 F:      drivers/clk/clk-max77686.c
11581 F:      drivers/extcon/extcon-max14577.c
11582 F:      drivers/extcon/extcon-max77693.c
11583 F:      drivers/rtc/rtc-max77686.c
11584 F:      include/linux/mfd/max14577*.h
11585 F:      include/linux/mfd/max77686*.h
11586 F:      include/linux/mfd/max77693*.h
11587
11588 MAXIRADIO FM RADIO RECEIVER DRIVER
11589 M:      Hans Verkuil <hverkuil@xs4all.nl>
11590 L:      linux-media@vger.kernel.org
11591 S:      Maintained
11592 W:      https://linuxtv.org
11593 T:      git git://linuxtv.org/media_tree.git
11594 F:      drivers/media/radio/radio-maxiradio*
11595
11596 MAXLINEAR ETHERNET PHY DRIVER
11597 M:      Xu Liang <lxu@maxlinear.com>
11598 L:      netdev@vger.kernel.org
11599 S:      Supported
11600 F:      drivers/net/phy/mxl-gpy.c
11601
11602 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11603 R:      Yasushi SHOJI <yashi@spacecubics.com>
11604 L:      linux-can@vger.kernel.org
11605 S:      Maintained
11606 F:      drivers/net/can/usb/mcba_usb.c
11607
11608 MCAN MMIO DEVICE DRIVER
11609 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11610 L:      linux-can@vger.kernel.org
11611 S:      Maintained
11612 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11613 F:      drivers/net/can/m_can/m_can.c
11614 F:      drivers/net/can/m_can/m_can.h
11615 F:      drivers/net/can/m_can/m_can_platform.c
11616
11617 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11618 M:      Rishi Gupta <gupt21@gmail.com>
11619 L:      linux-i2c@vger.kernel.org
11620 L:      linux-input@vger.kernel.org
11621 S:      Maintained
11622 F:      drivers/hid/hid-mcp2221.c
11623
11624 MCP251XFD SPI-CAN NETWORK DRIVER
11625 M:      Marc Kleine-Budde <mkl@pengutronix.de>
11626 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11627 R:      Thomas Kopp <thomas.kopp@microchip.com>
11628 L:      linux-can@vger.kernel.org
11629 S:      Maintained
11630 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11631 F:      drivers/net/can/spi/mcp251xfd/
11632
11633 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11634 M:      Peter Rosin <peda@axentia.se>
11635 L:      linux-iio@vger.kernel.org
11636 S:      Maintained
11637 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11638 F:      drivers/iio/potentiometer/mcp4018.c
11639 F:      drivers/iio/potentiometer/mcp4531.c
11640
11641 MCR20A IEEE-802.15.4 RADIO DRIVER
11642 M:      Xue Liu <liuxuenetmail@gmail.com>
11643 L:      linux-wpan@vger.kernel.org
11644 S:      Maintained
11645 W:      https://github.com/xueliu/mcr20a-linux
11646 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11647 F:      drivers/net/ieee802154/mcr20a.c
11648 F:      drivers/net/ieee802154/mcr20a.h
11649
11650 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11651 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
11652 L:      linux-iio@vger.kernel.org
11653 S:      Maintained
11654 F:      drivers/iio/dac/cio-dac.c
11655
11656 MEDIA CONTROLLER FRAMEWORK
11657 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11658 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11659 L:      linux-media@vger.kernel.org
11660 S:      Supported
11661 W:      https://www.linuxtv.org
11662 T:      git git://linuxtv.org/media_tree.git
11663 F:      drivers/media/mc/
11664 F:      include/media/media-*.h
11665 F:      include/uapi/linux/media.h
11666
11667 MEDIA DRIVER FOR FREESCALE IMX PXP
11668 M:      Philipp Zabel <p.zabel@pengutronix.de>
11669 L:      linux-media@vger.kernel.org
11670 S:      Maintained
11671 T:      git git://linuxtv.org/media_tree.git
11672 F:      drivers/media/platform/imx-pxp.[ch]
11673
11674 MEDIA DRIVERS FOR ASCOT2E
11675 M:      Sergey Kozlov <serjk@netup.ru>
11676 M:      Abylay Ospan <aospan@netup.ru>
11677 L:      linux-media@vger.kernel.org
11678 S:      Supported
11679 W:      https://linuxtv.org
11680 W:      http://netup.tv/
11681 T:      git git://linuxtv.org/media_tree.git
11682 F:      drivers/media/dvb-frontends/ascot2e*
11683
11684 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11685 M:      Jasmin Jessich <jasmin@anw.at>
11686 L:      linux-media@vger.kernel.org
11687 S:      Maintained
11688 W:      https://linuxtv.org
11689 T:      git git://linuxtv.org/media_tree.git
11690 F:      drivers/media/dvb-frontends/cxd2099*
11691
11692 MEDIA DRIVERS FOR CXD2841ER
11693 M:      Sergey Kozlov <serjk@netup.ru>
11694 M:      Abylay Ospan <aospan@netup.ru>
11695 L:      linux-media@vger.kernel.org
11696 S:      Supported
11697 W:      https://linuxtv.org
11698 W:      http://netup.tv/
11699 T:      git git://linuxtv.org/media_tree.git
11700 F:      drivers/media/dvb-frontends/cxd2841er*
11701
11702 MEDIA DRIVERS FOR CXD2880
11703 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11704 L:      linux-media@vger.kernel.org
11705 S:      Supported
11706 W:      http://linuxtv.org/
11707 T:      git git://linuxtv.org/media_tree.git
11708 F:      drivers/media/dvb-frontends/cxd2880/*
11709 F:      drivers/media/spi/cxd2880*
11710
11711 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11712 L:      linux-media@vger.kernel.org
11713 S:      Orphan
11714 W:      https://linuxtv.org
11715 T:      git git://linuxtv.org/media_tree.git
11716 F:      drivers/media/pci/ddbridge/*
11717
11718 MEDIA DRIVERS FOR FREESCALE IMX
11719 M:      Steve Longerbeam <slongerbeam@gmail.com>
11720 M:      Philipp Zabel <p.zabel@pengutronix.de>
11721 L:      linux-media@vger.kernel.org
11722 S:      Maintained
11723 T:      git git://linuxtv.org/media_tree.git
11724 F:      Documentation/admin-guide/media/imx.rst
11725 F:      Documentation/devicetree/bindings/media/imx.txt
11726 F:      drivers/staging/media/imx/
11727 F:      include/linux/imx-media.h
11728 F:      include/media/imx.h
11729
11730 MEDIA DRIVERS FOR FREESCALE IMX7
11731 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11732 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11733 L:      linux-media@vger.kernel.org
11734 S:      Maintained
11735 T:      git git://linuxtv.org/media_tree.git
11736 F:      Documentation/admin-guide/media/imx7.rst
11737 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11738 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11739 F:      drivers/staging/media/imx/imx7-media-csi.c
11740 F:      drivers/staging/media/imx/imx7-mipi-csis.c
11741
11742 MEDIA DRIVERS FOR HELENE
11743 M:      Abylay Ospan <aospan@netup.ru>
11744 L:      linux-media@vger.kernel.org
11745 S:      Supported
11746 W:      https://linuxtv.org
11747 W:      http://netup.tv/
11748 T:      git git://linuxtv.org/media_tree.git
11749 F:      drivers/media/dvb-frontends/helene*
11750
11751 MEDIA DRIVERS FOR HORUS3A
11752 M:      Sergey Kozlov <serjk@netup.ru>
11753 M:      Abylay Ospan <aospan@netup.ru>
11754 L:      linux-media@vger.kernel.org
11755 S:      Supported
11756 W:      https://linuxtv.org
11757 W:      http://netup.tv/
11758 T:      git git://linuxtv.org/media_tree.git
11759 F:      drivers/media/dvb-frontends/horus3a*
11760
11761 MEDIA DRIVERS FOR LNBH25
11762 M:      Sergey Kozlov <serjk@netup.ru>
11763 M:      Abylay Ospan <aospan@netup.ru>
11764 L:      linux-media@vger.kernel.org
11765 S:      Supported
11766 W:      https://linuxtv.org
11767 W:      http://netup.tv/
11768 T:      git git://linuxtv.org/media_tree.git
11769 F:      drivers/media/dvb-frontends/lnbh25*
11770
11771 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11772 L:      linux-media@vger.kernel.org
11773 S:      Orphan
11774 W:      https://linuxtv.org
11775 T:      git git://linuxtv.org/media_tree.git
11776 F:      drivers/media/dvb-frontends/mxl5xx*
11777
11778 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11779 M:      Sergey Kozlov <serjk@netup.ru>
11780 M:      Abylay Ospan <aospan@netup.ru>
11781 L:      linux-media@vger.kernel.org
11782 S:      Supported
11783 W:      https://linuxtv.org
11784 W:      http://netup.tv/
11785 T:      git git://linuxtv.org/media_tree.git
11786 F:      drivers/media/pci/netup_unidvb/*
11787
11788 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11789 M:      Dmitry Osipenko <digetx@gmail.com>
11790 L:      linux-media@vger.kernel.org
11791 L:      linux-tegra@vger.kernel.org
11792 S:      Maintained
11793 T:      git git://linuxtv.org/media_tree.git
11794 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11795 F:      drivers/staging/media/tegra-vde/
11796
11797 MEDIA DRIVERS FOR RENESAS - CEU
11798 M:      Jacopo Mondi <jacopo@jmondi.org>
11799 L:      linux-media@vger.kernel.org
11800 L:      linux-renesas-soc@vger.kernel.org
11801 S:      Supported
11802 T:      git git://linuxtv.org/media_tree.git
11803 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11804 F:      drivers/media/platform/renesas-ceu.c
11805 F:      include/media/drv-intf/renesas-ceu.h
11806
11807 MEDIA DRIVERS FOR RENESAS - DRIF
11808 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11809 L:      linux-media@vger.kernel.org
11810 L:      linux-renesas-soc@vger.kernel.org
11811 S:      Supported
11812 T:      git git://linuxtv.org/media_tree.git
11813 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
11814 F:      drivers/media/platform/rcar_drif.c
11815
11816 MEDIA DRIVERS FOR RENESAS - FCP
11817 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11818 L:      linux-media@vger.kernel.org
11819 L:      linux-renesas-soc@vger.kernel.org
11820 S:      Supported
11821 T:      git git://linuxtv.org/media_tree.git
11822 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11823 F:      drivers/media/platform/rcar-fcp.c
11824 F:      include/media/rcar-fcp.h
11825
11826 MEDIA DRIVERS FOR RENESAS - FDP1
11827 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11828 L:      linux-media@vger.kernel.org
11829 L:      linux-renesas-soc@vger.kernel.org
11830 S:      Supported
11831 T:      git git://linuxtv.org/media_tree.git
11832 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11833 F:      drivers/media/platform/rcar_fdp1.c
11834
11835 MEDIA DRIVERS FOR RENESAS - VIN
11836 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11837 L:      linux-media@vger.kernel.org
11838 L:      linux-renesas-soc@vger.kernel.org
11839 S:      Supported
11840 T:      git git://linuxtv.org/media_tree.git
11841 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11842 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
11843 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11844 F:      drivers/media/platform/rcar-isp.c
11845 F:      drivers/media/platform/rcar-vin/
11846
11847 MEDIA DRIVERS FOR RENESAS - VSP1
11848 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11849 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11850 L:      linux-media@vger.kernel.org
11851 L:      linux-renesas-soc@vger.kernel.org
11852 S:      Supported
11853 T:      git git://linuxtv.org/media_tree.git
11854 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11855 F:      drivers/media/platform/vsp1/
11856
11857 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11858 L:      linux-media@vger.kernel.org
11859 S:      Orphan
11860 W:      https://linuxtv.org
11861 T:      git git://linuxtv.org/media_tree.git
11862 F:      drivers/media/dvb-frontends/stv0910*
11863
11864 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11865 L:      linux-media@vger.kernel.org
11866 S:      Orphan
11867 W:      https://linuxtv.org
11868 T:      git git://linuxtv.org/media_tree.git
11869 F:      drivers/media/dvb-frontends/stv6111*
11870
11871 MEDIA DRIVERS FOR STM32 - DCMI
11872 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
11873 L:      linux-media@vger.kernel.org
11874 S:      Supported
11875 T:      git git://linuxtv.org/media_tree.git
11876 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11877 F:      drivers/media/platform/stm32/stm32-dcmi.c
11878
11879 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11880 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11881 L:      linux-media@vger.kernel.org
11882 S:      Maintained
11883 W:      https://linuxtv.org
11884 Q:      http://patchwork.kernel.org/project/linux-media/list/
11885 T:      git git://linuxtv.org/media_tree.git
11886 F:      Documentation/admin-guide/media/
11887 F:      Documentation/devicetree/bindings/media/
11888 F:      Documentation/driver-api/media/
11889 F:      Documentation/userspace-api/media/
11890 F:      drivers/media/
11891 F:      drivers/staging/media/
11892 F:      include/linux/platform_data/media/
11893 F:      include/media/
11894 F:      include/uapi/linux/dvb/
11895 F:      include/uapi/linux/ivtv*
11896 F:      include/uapi/linux/media.h
11897 F:      include/uapi/linux/meye.h
11898 F:      include/uapi/linux/uvcvideo.h
11899 F:      include/uapi/linux/v4l2-*
11900 F:      include/uapi/linux/videodev2.h
11901
11902 MEDIATEK BLUETOOTH DRIVER
11903 M:      Sean Wang <sean.wang@mediatek.com>
11904 L:      linux-bluetooth@vger.kernel.org
11905 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11906 S:      Maintained
11907 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11908 F:      drivers/bluetooth/btmtkuart.c
11909
11910 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11911 M:      Sean Wang <sean.wang@mediatek.com>
11912 L:      linux-pm@vger.kernel.org
11913 S:      Maintained
11914 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11915 F:      drivers/power/reset/mt6323-poweroff.c
11916
11917 MEDIATEK CIR DRIVER
11918 M:      Sean Wang <sean.wang@mediatek.com>
11919 S:      Maintained
11920 F:      drivers/media/rc/mtk-cir.c
11921
11922 MEDIATEK DMA DRIVER
11923 M:      Sean Wang <sean.wang@mediatek.com>
11924 L:      dmaengine@vger.kernel.org
11925 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11926 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11927 S:      Maintained
11928 F:      Documentation/devicetree/bindings/dma/mtk-*
11929 F:      drivers/dma/mediatek/
11930
11931 MEDIATEK ETHERNET DRIVER
11932 M:      Felix Fietkau <nbd@nbd.name>
11933 M:      John Crispin <john@phrozen.org>
11934 M:      Sean Wang <sean.wang@mediatek.com>
11935 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11936 L:      netdev@vger.kernel.org
11937 S:      Maintained
11938 F:      drivers/net/ethernet/mediatek/
11939
11940 MEDIATEK I2C CONTROLLER DRIVER
11941 M:      Qii Wang <qii.wang@mediatek.com>
11942 L:      linux-i2c@vger.kernel.org
11943 S:      Maintained
11944 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11945 F:      drivers/i2c/busses/i2c-mt65xx.c
11946
11947 MEDIATEK IOMMU DRIVER
11948 M:      Yong Wu <yong.wu@mediatek.com>
11949 L:      iommu@lists.linux-foundation.org
11950 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11951 S:      Supported
11952 F:      Documentation/devicetree/bindings/iommu/mediatek*
11953 F:      drivers/iommu/mtk_iommu*
11954 F:      include/dt-bindings/memory/mt*-port.h
11955
11956 MEDIATEK JPEG DRIVER
11957 M:      Rick Chang <rick.chang@mediatek.com>
11958 M:      Bin Liu <bin.liu@mediatek.com>
11959 S:      Supported
11960 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11961 F:      drivers/media/platform/mtk-jpeg/
11962
11963 MEDIATEK MDP DRIVER
11964 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11965 M:      Houlong Wei <houlong.wei@mediatek.com>
11966 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11967 S:      Supported
11968 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11969 F:      drivers/media/platform/mtk-mdp/
11970 F:      drivers/media/platform/mtk-vpu/
11971
11972 MEDIATEK MEDIA DRIVER
11973 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11974 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11975 S:      Supported
11976 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11977 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11978 F:      drivers/media/platform/mtk-vcodec/
11979 F:      drivers/media/platform/mtk-vpu/
11980
11981 MEDIATEK MMC/SD/SDIO DRIVER
11982 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11983 S:      Maintained
11984 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11985 F:      drivers/mmc/host/mtk-sd.c
11986
11987 MEDIATEK MT76 WIRELESS LAN DRIVER
11988 M:      Felix Fietkau <nbd@nbd.name>
11989 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11990 M:      Ryder Lee <ryder.lee@mediatek.com>
11991 R:      Shayne Chen <shayne.chen@mediatek.com>
11992 R:      Sean Wang <sean.wang@mediatek.com>
11993 L:      linux-wireless@vger.kernel.org
11994 S:      Maintained
11995 F:      drivers/net/wireless/mediatek/mt76/
11996
11997 MEDIATEK MT7601U WIRELESS LAN DRIVER
11998 M:      Jakub Kicinski <kubakici@wp.pl>
11999 L:      linux-wireless@vger.kernel.org
12000 S:      Maintained
12001 F:      drivers/net/wireless/mediatek/mt7601u/
12002
12003 MEDIATEK MT7621 CLOCK DRIVER
12004 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12005 S:      Maintained
12006 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
12007 F:      drivers/clk/ralink/clk-mt7621.c
12008
12009 MEDIATEK MT7621/28/88 I2C DRIVER
12010 M:      Stefan Roese <sr@denx.de>
12011 L:      linux-i2c@vger.kernel.org
12012 S:      Maintained
12013 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
12014 F:      drivers/i2c/busses/i2c-mt7621.c
12015
12016 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
12017 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12018 S:      Maintained
12019 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
12020 F:      drivers/pci/controller/pcie-mt7621.c
12021
12022 MEDIATEK MT7621 PHY PCI DRIVER
12023 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12024 S:      Maintained
12025 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
12026 F:      drivers/phy/ralink/phy-mt7621-pci.c
12027
12028 MEDIATEK NAND CONTROLLER DRIVER
12029 L:      linux-mtd@lists.infradead.org
12030 S:      Orphan
12031 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
12032 F:      drivers/mtd/nand/raw/mtk_*
12033
12034 MEDIATEK PMIC LED DRIVER
12035 M:      Sean Wang <sean.wang@mediatek.com>
12036 S:      Maintained
12037 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
12038 F:      drivers/leds/leds-mt6323.c
12039
12040 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
12041 M:      Sean Wang <sean.wang@mediatek.com>
12042 S:      Maintained
12043 F:      drivers/char/hw_random/mtk-rng.c
12044
12045 MEDIATEK SMI DRIVER
12046 M:      Yong Wu <yong.wu@mediatek.com>
12047 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12048 S:      Supported
12049 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
12050 F:      drivers/memory/mtk-smi.c
12051 F:      include/soc/mediatek/smi.h
12052
12053 MEDIATEK SWITCH DRIVER
12054 M:      Sean Wang <sean.wang@mediatek.com>
12055 M:      Landen Chao <Landen.Chao@mediatek.com>
12056 M:      DENG Qingfang <dqfext@gmail.com>
12057 L:      netdev@vger.kernel.org
12058 S:      Maintained
12059 F:      drivers/net/dsa/mt7530.*
12060 F:      net/dsa/tag_mtk.c
12061
12062 MEDIATEK USB3 DRD IP DRIVER
12063 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
12064 L:      linux-usb@vger.kernel.org
12065 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12066 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12067 S:      Maintained
12068 F:      Documentation/devicetree/bindings/usb/mediatek,*
12069 F:      drivers/usb/host/xhci-mtk*
12070 F:      drivers/usb/mtu3/
12071
12072 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
12073 M:      Peter Senna Tschudin <peter.senna@gmail.com>
12074 M:      Martin Donnelly <martin.donnelly@ge.com>
12075 M:      Martyn Welch <martyn.welch@collabora.co.uk>
12076 S:      Maintained
12077 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
12078 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
12079
12080 MEGARAID SCSI/SAS DRIVERS
12081 M:      Kashyap Desai <kashyap.desai@broadcom.com>
12082 M:      Sumit Saxena <sumit.saxena@broadcom.com>
12083 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
12084 L:      megaraidlinux.pdl@broadcom.com
12085 L:      linux-scsi@vger.kernel.org
12086 S:      Maintained
12087 W:      http://www.avagotech.com/support/
12088 F:      Documentation/scsi/megaraid.rst
12089 F:      drivers/scsi/megaraid.*
12090 F:      drivers/scsi/megaraid/
12091
12092 MELEXIS MLX90614 DRIVER
12093 M:      Crt Mori <cmo@melexis.com>
12094 L:      linux-iio@vger.kernel.org
12095 S:      Supported
12096 W:      http://www.melexis.com
12097 F:      drivers/iio/temperature/mlx90614.c
12098
12099 MELEXIS MLX90632 DRIVER
12100 M:      Crt Mori <cmo@melexis.com>
12101 L:      linux-iio@vger.kernel.org
12102 S:      Supported
12103 W:      http://www.melexis.com
12104 F:      drivers/iio/temperature/mlx90632.c
12105
12106 MELFAS MIP4 TOUCHSCREEN DRIVER
12107 M:      Sangwon Jee <jeesw@melfas.com>
12108 S:      Supported
12109 W:      http://www.melfas.com
12110 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
12111 F:      drivers/input/touchscreen/melfas_mip4.c
12112
12113 MELLANOX BLUEFIELD I2C DRIVER
12114 M:      Khalil Blaiech <kblaiech@nvidia.com>
12115 L:      linux-i2c@vger.kernel.org
12116 S:      Supported
12117 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12118 F:      drivers/i2c/busses/i2c-mlxbf.c
12119
12120 MELLANOX ETHERNET DRIVER (mlx4_en)
12121 M:      Tariq Toukan <tariqt@nvidia.com>
12122 L:      netdev@vger.kernel.org
12123 S:      Supported
12124 W:      http://www.mellanox.com
12125 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12126 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12127
12128 MELLANOX ETHERNET DRIVER (mlx5e)
12129 M:      Saeed Mahameed <saeedm@nvidia.com>
12130 L:      netdev@vger.kernel.org
12131 S:      Supported
12132 W:      http://www.mellanox.com
12133 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12134 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12135
12136 MELLANOX ETHERNET INNOVA DRIVERS
12137 R:      Boris Pismenny <borisp@nvidia.com>
12138 L:      netdev@vger.kernel.org
12139 S:      Supported
12140 W:      http://www.mellanox.com
12141 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12142 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
12143 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12144 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12145 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12146
12147 MELLANOX ETHERNET SWITCH DRIVERS
12148 M:      Jiri Pirko <jiri@nvidia.com>
12149 M:      Ido Schimmel <idosch@nvidia.com>
12150 L:      netdev@vger.kernel.org
12151 S:      Supported
12152 W:      http://www.mellanox.com
12153 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12154 F:      drivers/net/ethernet/mellanox/mlxsw/
12155 F:      tools/testing/selftests/drivers/net/mlxsw/
12156
12157 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12158 M:      mlxsw@nvidia.com
12159 L:      netdev@vger.kernel.org
12160 S:      Supported
12161 W:      http://www.mellanox.com
12162 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12163 F:      drivers/net/ethernet/mellanox/mlxfw/
12164
12165 MELLANOX HARDWARE PLATFORM SUPPORT
12166 M:      Hans de Goede <hdegoede@redhat.com>
12167 M:      Mark Gross <markgross@kernel.org>
12168 M:      Vadim Pasternak <vadimp@nvidia.com>
12169 L:      platform-driver-x86@vger.kernel.org
12170 S:      Supported
12171 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12172 F:      drivers/platform/mellanox/
12173 F:      include/linux/platform_data/mlxreg.h
12174
12175 MELLANOX MLX4 core VPI driver
12176 M:      Tariq Toukan <tariqt@nvidia.com>
12177 L:      netdev@vger.kernel.org
12178 L:      linux-rdma@vger.kernel.org
12179 S:      Supported
12180 W:      http://www.mellanox.com
12181 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12182 F:      drivers/net/ethernet/mellanox/mlx4/
12183 F:      include/linux/mlx4/
12184
12185 MELLANOX MLX4 IB driver
12186 M:      Yishai Hadas <yishaih@nvidia.com>
12187 L:      linux-rdma@vger.kernel.org
12188 S:      Supported
12189 W:      http://www.mellanox.com
12190 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12191 F:      drivers/infiniband/hw/mlx4/
12192 F:      include/linux/mlx4/
12193 F:      include/uapi/rdma/mlx4-abi.h
12194
12195 MELLANOX MLX5 core VPI driver
12196 M:      Saeed Mahameed <saeedm@nvidia.com>
12197 M:      Leon Romanovsky <leonro@nvidia.com>
12198 L:      netdev@vger.kernel.org
12199 L:      linux-rdma@vger.kernel.org
12200 S:      Supported
12201 W:      http://www.mellanox.com
12202 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12203 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12204 F:      drivers/net/ethernet/mellanox/mlx5/core/
12205 F:      include/linux/mlx5/
12206
12207 MELLANOX MLX5 IB driver
12208 M:      Leon Romanovsky <leonro@nvidia.com>
12209 L:      linux-rdma@vger.kernel.org
12210 S:      Supported
12211 W:      http://www.mellanox.com
12212 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12213 F:      drivers/infiniband/hw/mlx5/
12214 F:      include/linux/mlx5/
12215 F:      include/uapi/rdma/mlx5-abi.h
12216
12217 MELLANOX MLXCPLD I2C AND MUX DRIVER
12218 M:      Vadim Pasternak <vadimp@nvidia.com>
12219 M:      Michael Shych <michaelsh@nvidia.com>
12220 L:      linux-i2c@vger.kernel.org
12221 S:      Supported
12222 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12223 F:      drivers/i2c/busses/i2c-mlxcpld.c
12224 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12225
12226 MELLANOX MLXCPLD LED DRIVER
12227 M:      Vadim Pasternak <vadimp@nvidia.com>
12228 L:      linux-leds@vger.kernel.org
12229 S:      Supported
12230 F:      Documentation/leds/leds-mlxcpld.rst
12231 F:      drivers/leds/leds-mlxcpld.c
12232 F:      drivers/leds/leds-mlxreg.c
12233
12234 MELLANOX PLATFORM DRIVER
12235 M:      Vadim Pasternak <vadimp@nvidia.com>
12236 L:      platform-driver-x86@vger.kernel.org
12237 S:      Supported
12238 F:      drivers/platform/x86/mlx-platform.c
12239
12240 MEMBARRIER SUPPORT
12241 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12242 M:      "Paul E. McKenney" <paulmck@kernel.org>
12243 L:      linux-kernel@vger.kernel.org
12244 S:      Supported
12245 F:      arch/powerpc/include/asm/membarrier.h
12246 F:      include/uapi/linux/membarrier.h
12247 F:      kernel/sched/membarrier.c
12248
12249 MEMBLOCK
12250 M:      Mike Rapoport <rppt@linux.ibm.com>
12251 L:      linux-mm@kvack.org
12252 S:      Maintained
12253 F:      Documentation/core-api/boot-time-mm.rst
12254 F:      include/linux/memblock.h
12255 F:      mm/memblock.c
12256
12257 MEMORY CONTROLLER DRIVERS
12258 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
12259 L:      linux-kernel@vger.kernel.org
12260 S:      Maintained
12261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12262 F:      Documentation/devicetree/bindings/memory-controllers/
12263 F:      drivers/memory/
12264 F:      include/dt-bindings/memory/
12265 F:      include/memory/
12266
12267 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12268 M:      Dmitry Osipenko <digetx@gmail.com>
12269 L:      linux-pm@vger.kernel.org
12270 L:      linux-tegra@vger.kernel.org
12271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12272 S:      Maintained
12273 F:      drivers/devfreq/tegra30-devfreq.c
12274
12275 MEMORY MANAGEMENT
12276 M:      Andrew Morton <akpm@linux-foundation.org>
12277 L:      linux-mm@kvack.org
12278 S:      Maintained
12279 W:      http://www.linux-mm.org
12280 T:      quilt https://ozlabs.org/~akpm/mmotm/
12281 T:      quilt https://ozlabs.org/~akpm/mmots/
12282 T:      git git://github.com/hnaz/linux-mm.git
12283 F:      include/linux/gfp.h
12284 F:      include/linux/memory_hotplug.h
12285 F:      include/linux/mm.h
12286 F:      include/linux/mmzone.h
12287 F:      include/linux/pagewalk.h
12288 F:      include/linux/vmalloc.h
12289 F:      mm/
12290 F:      tools/testing/selftests/vm/
12291
12292 MEMORY TECHNOLOGY DEVICES (MTD)
12293 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12294 M:      Richard Weinberger <richard@nod.at>
12295 M:      Vignesh Raghavendra <vigneshr@ti.com>
12296 L:      linux-mtd@lists.infradead.org
12297 S:      Maintained
12298 W:      http://www.linux-mtd.infradead.org/
12299 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12300 C:      irc://irc.oftc.net/mtd
12301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12303 F:      Documentation/devicetree/bindings/mtd/
12304 F:      drivers/mtd/
12305 F:      include/linux/mtd/
12306 F:      include/uapi/mtd/
12307
12308 MEN A21 WATCHDOG DRIVER
12309 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12310 L:      linux-watchdog@vger.kernel.org
12311 S:      Maintained
12312 F:      drivers/watchdog/mena21_wdt.c
12313
12314 MEN CHAMELEON BUS (mcb)
12315 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12316 S:      Maintained
12317 F:      Documentation/driver-api/men-chameleon-bus.rst
12318 F:      drivers/mcb/
12319 F:      include/linux/mcb.h
12320
12321 MEN F21BMC (Board Management Controller)
12322 M:      Andreas Werner <andreas.werner@men.de>
12323 S:      Supported
12324 F:      Documentation/hwmon/menf21bmc.rst
12325 F:      drivers/hwmon/menf21bmc_hwmon.c
12326 F:      drivers/leds/leds-menf21bmc.c
12327 F:      drivers/mfd/menf21bmc.c
12328 F:      drivers/watchdog/menf21bmc_wdt.c
12329
12330 MEN Z069 WATCHDOG DRIVER
12331 M:      Johannes Thumshirn <jth@kernel.org>
12332 L:      linux-watchdog@vger.kernel.org
12333 S:      Maintained
12334 F:      drivers/watchdog/menz69_wdt.c
12335
12336 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12337 M:      Neil Armstrong <narmstrong@baylibre.com>
12338 L:      linux-media@vger.kernel.org
12339 L:      linux-amlogic@lists.infradead.org
12340 S:      Supported
12341 W:      http://linux-meson.com/
12342 T:      git git://linuxtv.org/media_tree.git
12343 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12344 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12345 F:      drivers/media/cec/platform/meson/ao-cec.c
12346
12347 MESON GE2D DRIVER FOR AMLOGIC SOCS
12348 M:      Neil Armstrong <narmstrong@baylibre.com>
12349 L:      linux-media@vger.kernel.org
12350 L:      linux-amlogic@lists.infradead.org
12351 S:      Supported
12352 T:      git git://linuxtv.org/media_tree.git
12353 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12354 F:      drivers/media/platform/meson/ge2d/
12355
12356 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12357 M:      Liang Yang <liang.yang@amlogic.com>
12358 L:      linux-mtd@lists.infradead.org
12359 S:      Maintained
12360 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12361 F:      drivers/mtd/nand/raw/meson_*
12362
12363 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12364 M:      Neil Armstrong <narmstrong@baylibre.com>
12365 L:      linux-media@vger.kernel.org
12366 L:      linux-amlogic@lists.infradead.org
12367 S:      Supported
12368 T:      git git://linuxtv.org/media_tree.git
12369 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12370 F:      drivers/staging/media/meson/vdec/
12371
12372 METHODE UDPU SUPPORT
12373 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12374 S:      Maintained
12375 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12376
12377 MHI BUS
12378 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12379 R:      Hemant Kumar <hemantk@codeaurora.org>
12380 L:      mhi@lists.linux.dev
12381 L:      linux-arm-msm@vger.kernel.org
12382 S:      Maintained
12383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12384 F:      Documentation/ABI/stable/sysfs-bus-mhi
12385 F:      Documentation/mhi/
12386 F:      drivers/bus/mhi/
12387 F:      include/linux/mhi.h
12388
12389 MICROBLAZE ARCHITECTURE
12390 M:      Michal Simek <monstr@monstr.eu>
12391 S:      Supported
12392 W:      http://www.monstr.eu/fdt/
12393 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12394 F:      arch/microblaze/
12395
12396 MICROCHIP AT91 DMA DRIVERS
12397 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12398 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12399 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12400 L:      dmaengine@vger.kernel.org
12401 S:      Supported
12402 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12403 F:      drivers/dma/at_hdmac.c
12404 F:      drivers/dma/at_hdmac_regs.h
12405 F:      drivers/dma/at_xdmac.c
12406 F:      include/dt-bindings/dma/at91.h
12407
12408 MICROCHIP AT91 SERIAL DRIVER
12409 M:      Richard Genoud <richard.genoud@gmail.com>
12410 S:      Maintained
12411 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12412 F:      drivers/tty/serial/atmel_serial.c
12413 F:      drivers/tty/serial/atmel_serial.h
12414
12415 MICROCHIP AT91 USART MFD DRIVER
12416 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12417 L:      linux-kernel@vger.kernel.org
12418 S:      Supported
12419 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12420 F:      drivers/mfd/at91-usart.c
12421 F:      include/dt-bindings/mfd/at91-usart.h
12422
12423 MICROCHIP AT91 USART SPI DRIVER
12424 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12425 L:      linux-spi@vger.kernel.org
12426 S:      Supported
12427 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12428 F:      drivers/spi/spi-at91-usart.c
12429
12430 MICROCHIP AUDIO ASOC DRIVERS
12431 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12432 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12433 S:      Supported
12434 F:      sound/soc/atmel
12435
12436 MICROCHIP ECC DRIVER
12437 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12438 L:      linux-crypto@vger.kernel.org
12439 S:      Maintained
12440 F:      drivers/crypto/atmel-ecc.*
12441
12442 MICROCHIP EIC DRIVER
12443 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12444 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12445 S:      Supported
12446 F:      drivers/irqchip/irq-mchp-eic.c
12447
12448 MICROCHIP I2C DRIVER
12449 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12450 L:      linux-i2c@vger.kernel.org
12451 S:      Supported
12452 F:      drivers/i2c/busses/i2c-at91-*.c
12453 F:      drivers/i2c/busses/i2c-at91.h
12454
12455 MICROCHIP ISC DRIVER
12456 M:      Eugen Hristev <eugen.hristev@microchip.com>
12457 L:      linux-media@vger.kernel.org
12458 S:      Supported
12459 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12460 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12461 F:      drivers/media/platform/atmel/atmel-isc-base.c
12462 F:      drivers/media/platform/atmel/atmel-isc-regs.h
12463 F:      drivers/media/platform/atmel/atmel-isc.h
12464 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
12465 F:      drivers/media/platform/atmel/atmel-sama7g5-isc.c
12466 F:      include/linux/atmel-isc-media.h
12467
12468 MICROCHIP ISI DRIVER
12469 M:      Eugen Hristev <eugen.hristev@microchip.com>
12470 L:      linux-media@vger.kernel.org
12471 S:      Supported
12472 F:      drivers/media/platform/atmel/atmel-isi.c
12473 F:      drivers/media/platform/atmel/atmel-isi.h
12474
12475 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12476 M:      Woojung Huh <woojung.huh@microchip.com>
12477 M:      UNGLinuxDriver@microchip.com
12478 L:      netdev@vger.kernel.org
12479 S:      Maintained
12480 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12481 F:      drivers/net/dsa/microchip/*
12482 F:      include/linux/platform_data/microchip-ksz.h
12483 F:      net/dsa/tag_ksz.c
12484
12485 MICROCHIP LAN743X ETHERNET DRIVER
12486 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12487 M:      UNGLinuxDriver@microchip.com
12488 L:      netdev@vger.kernel.org
12489 S:      Maintained
12490 F:      drivers/net/ethernet/microchip/lan743x_*
12491
12492 MICROCHIP LCDFB DRIVER
12493 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
12494 L:      linux-fbdev@vger.kernel.org
12495 S:      Maintained
12496 F:      drivers/video/fbdev/atmel_lcdfb.c
12497 F:      include/video/atmel_lcdc.h
12498
12499 MICROCHIP MCP16502 PMIC DRIVER
12500 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12501 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12502 S:      Supported
12503 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12504 F:      drivers/regulator/mcp16502.c
12505
12506 MICROCHIP MCP3911 ADC DRIVER
12507 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12508 M:      Kent Gustavsson <kent@minoris.se>
12509 L:      linux-iio@vger.kernel.org
12510 S:      Supported
12511 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12512 F:      drivers/iio/adc/mcp3911.c
12513
12514 MICROCHIP MMC/SD/SDIO MCI DRIVER
12515 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12516 S:      Maintained
12517 F:      drivers/mmc/host/atmel-mci.c
12518
12519 MICROCHIP NAND DRIVER
12520 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12521 L:      linux-mtd@lists.infradead.org
12522 S:      Supported
12523 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12524 F:      drivers/mtd/nand/raw/atmel/*
12525
12526 MICROCHIP PWM DRIVER
12527 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12528 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12529 L:      linux-pwm@vger.kernel.org
12530 S:      Supported
12531 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12532 F:      drivers/pwm/pwm-atmel.c
12533
12534 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12535 M:      Eugen Hristev <eugen.hristev@microchip.com>
12536 L:      linux-iio@vger.kernel.org
12537 S:      Supported
12538 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12539 F:      drivers/iio/adc/at91-sama5d2_adc.c
12540 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12541
12542 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12543 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12544 S:      Supported
12545 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12546
12547 MICROCHIP SPI DRIVER
12548 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12549 S:      Supported
12550 F:      drivers/spi/spi-atmel.*
12551
12552 MICROCHIP SSC DRIVER
12553 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12554 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12555 S:      Supported
12556 F:      drivers/misc/atmel-ssc.c
12557 F:      include/linux/atmel-ssc.h
12558
12559 MICROCHIP USB251XB DRIVER
12560 M:      Richard Leitner <richard.leitner@skidata.com>
12561 L:      linux-usb@vger.kernel.org
12562 S:      Maintained
12563 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12564 F:      drivers/usb/misc/usb251xb.c
12565
12566 MICROCHIP USBA UDC DRIVER
12567 M:      Cristian Birsan <cristian.birsan@microchip.com>
12568 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12569 S:      Supported
12570 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12571
12572 MICROCHIP WILC1000 WIFI DRIVER
12573 M:      Ajay Singh <ajay.kathat@microchip.com>
12574 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12575 L:      linux-wireless@vger.kernel.org
12576 S:      Supported
12577 F:      drivers/net/wireless/microchip/wilc1000/
12578
12579 MICROSEMI MIPS SOCS
12580 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12581 M:      UNGLinuxDriver@microchip.com
12582 L:      linux-mips@vger.kernel.org
12583 S:      Supported
12584 F:      Documentation/devicetree/bindings/mips/mscc.txt
12585 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12586 F:      arch/mips/boot/dts/mscc/
12587 F:      arch/mips/configs/generic/board-ocelot.config
12588 F:      arch/mips/generic/board-ocelot.c
12589
12590 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12591 M:      Don Brace <don.brace@microchip.com>
12592 L:      storagedev@microchip.com
12593 L:      linux-scsi@vger.kernel.org
12594 S:      Supported
12595 F:      Documentation/scsi/smartpqi.rst
12596 F:      drivers/scsi/smartpqi/Kconfig
12597 F:      drivers/scsi/smartpqi/Makefile
12598 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
12599 F:      include/linux/cciss*.h
12600 F:      include/uapi/linux/cciss*.h
12601
12602 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12603 M:      Maximilian Luz <luzmaximilian@gmail.com>
12604 L:      linux-pm@vger.kernel.org
12605 L:      platform-driver-x86@vger.kernel.org
12606 S:      Maintained
12607 F:      drivers/power/supply/surface_battery.c
12608 F:      drivers/power/supply/surface_charger.c
12609
12610 MICROSOFT SURFACE DTX DRIVER
12611 M:      Maximilian Luz <luzmaximilian@gmail.com>
12612 L:      platform-driver-x86@vger.kernel.org
12613 S:      Maintained
12614 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
12615 F:      drivers/platform/surface/surface_dtx.c
12616 F:      include/uapi/linux/surface_aggregator/dtx.h
12617
12618 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12619 M:      Maximilian Luz <luzmaximilian@gmail.com>
12620 L:      platform-driver-x86@vger.kernel.org
12621 S:      Maintained
12622 F:      drivers/platform/surface/surface_gpe.c
12623
12624 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12625 M:      Hans de Goede <hdegoede@redhat.com>
12626 M:      Mark Gross <markgross@kernel.org>
12627 M:      Maximilian Luz <luzmaximilian@gmail.com>
12628 L:      platform-driver-x86@vger.kernel.org
12629 S:      Maintained
12630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12631 F:      drivers/platform/surface/
12632
12633 MICROSOFT SURFACE HID TRANSPORT DRIVER
12634 M:      Maximilian Luz <luzmaximilian@gmail.com>
12635 L:      linux-input@vger.kernel.org
12636 L:      platform-driver-x86@vger.kernel.org
12637 S:      Maintained
12638 F:      drivers/hid/surface-hid/
12639
12640 MICROSOFT SURFACE HOT-PLUG DRIVER
12641 M:      Maximilian Luz <luzmaximilian@gmail.com>
12642 L:      platform-driver-x86@vger.kernel.org
12643 S:      Maintained
12644 F:      drivers/platform/surface/surface_hotplug.c
12645
12646 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12647 M:      Maximilian Luz <luzmaximilian@gmail.com>
12648 L:      platform-driver-x86@vger.kernel.org
12649 S:      Maintained
12650 F:      drivers/platform/surface/surface_platform_profile.c
12651
12652 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12653 M:      Chen Yu <yu.c.chen@intel.com>
12654 L:      platform-driver-x86@vger.kernel.org
12655 S:      Supported
12656 F:      drivers/platform/surface/surfacepro3_button.c
12657
12658 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12659 M:      Maximilian Luz <luzmaximilian@gmail.com>
12660 L:      platform-driver-x86@vger.kernel.org
12661 S:      Maintained
12662 W:      https://github.com/linux-surface/surface-aggregator-module
12663 C:      irc://irc.libera.chat/linux-surface
12664 F:      Documentation/driver-api/surface_aggregator/
12665 F:      drivers/platform/surface/aggregator/
12666 F:      drivers/platform/surface/surface_acpi_notify.c
12667 F:      drivers/platform/surface/surface_aggregator_cdev.c
12668 F:      drivers/platform/surface/surface_aggregator_registry.c
12669 F:      include/linux/surface_acpi_notify.h
12670 F:      include/linux/surface_aggregator/
12671 F:      include/uapi/linux/surface_aggregator/
12672
12673 MICROTEK X6 SCANNER
12674 M:      Oliver Neukum <oliver@neukum.org>
12675 S:      Maintained
12676 F:      drivers/usb/image/microtek.*
12677
12678 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12679 M:      Luka Kovacic <luka.kovacic@sartura.hr>
12680 M:      Luka Perkov <luka.perkov@sartura.hr>
12681 S:      Maintained
12682 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12683 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12684 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12685 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12686 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12687 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12688
12689 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12690 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12691 L:      linux-media@vger.kernel.org
12692 S:      Maintained
12693 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12694 F:      Documentation/driver-api/media/drivers/ccs/
12695 F:      Documentation/userspace-api/media/drivers/ccs.rst
12696 F:      drivers/media/i2c/ccs-pll.c
12697 F:      drivers/media/i2c/ccs-pll.h
12698 F:      drivers/media/i2c/ccs/
12699 F:      include/uapi/linux/ccs.h
12700 F:      include/uapi/linux/smiapp.h
12701
12702 MIPS
12703 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12704 L:      linux-mips@vger.kernel.org
12705 S:      Maintained
12706 W:      http://www.linux-mips.org/
12707 Q:      https://patchwork.kernel.org/project/linux-mips/list/
12708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12709 F:      Documentation/devicetree/bindings/mips/
12710 F:      Documentation/mips/
12711 F:      arch/mips/
12712 F:      drivers/platform/mips/
12713
12714 MIPS BOSTON DEVELOPMENT BOARD
12715 M:      Paul Burton <paulburton@kernel.org>
12716 L:      linux-mips@vger.kernel.org
12717 S:      Maintained
12718 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
12719 F:      arch/mips/boot/dts/img/boston.dts
12720 F:      arch/mips/configs/generic/board-boston.config
12721 F:      drivers/clk/imgtec/clk-boston.c
12722 F:      include/dt-bindings/clock/boston-clock.h
12723
12724 MIPS CORE DRIVERS
12725 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12726 M:      Serge Semin <fancer.lancer@gmail.com>
12727 L:      linux-mips@vger.kernel.org
12728 S:      Supported
12729 F:      drivers/bus/mips_cdmm.c
12730 F:      drivers/clocksource/mips-gic-timer.c
12731 F:      drivers/cpuidle/cpuidle-cps.c
12732 F:      drivers/irqchip/irq-mips-cpu.c
12733 F:      drivers/irqchip/irq-mips-gic.c
12734
12735 MIPS GENERIC PLATFORM
12736 M:      Paul Burton <paulburton@kernel.org>
12737 L:      linux-mips@vger.kernel.org
12738 S:      Supported
12739 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12740 F:      arch/mips/generic/
12741 F:      arch/mips/tools/generic-board-config.sh
12742
12743 MIPS RINT INSTRUCTION EMULATION
12744 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
12745 L:      linux-mips@vger.kernel.org
12746 S:      Supported
12747 F:      arch/mips/math-emu/dp_rint.c
12748 F:      arch/mips/math-emu/sp_rint.c
12749
12750 MIPS/LOONGSON1 ARCHITECTURE
12751 M:      Keguang Zhang <keguang.zhang@gmail.com>
12752 L:      linux-mips@vger.kernel.org
12753 S:      Maintained
12754 F:      arch/mips/include/asm/mach-loongson32/
12755 F:      arch/mips/loongson32/
12756 F:      drivers/*/*/*loongson1*
12757 F:      drivers/*/*loongson1*
12758
12759 MIPS/LOONGSON2EF ARCHITECTURE
12760 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12761 L:      linux-mips@vger.kernel.org
12762 S:      Maintained
12763 F:      arch/mips/include/asm/mach-loongson2ef/
12764 F:      arch/mips/loongson2ef/
12765 F:      drivers/cpufreq/loongson2_cpufreq.c
12766
12767 MIPS/LOONGSON64 ARCHITECTURE
12768 M:      Huacai Chen <chenhuacai@kernel.org>
12769 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12770 L:      linux-mips@vger.kernel.org
12771 S:      Maintained
12772 F:      arch/mips/include/asm/mach-loongson64/
12773 F:      arch/mips/loongson64/
12774 F:      drivers/irqchip/irq-loongson*
12775 F:      drivers/platform/mips/cpu_hwmon.c
12776
12777 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12778 M:      Hans Verkuil <hverkuil@xs4all.nl>
12779 L:      linux-media@vger.kernel.org
12780 S:      Odd Fixes
12781 W:      https://linuxtv.org
12782 T:      git git://linuxtv.org/media_tree.git
12783 F:      drivers/media/radio/radio-miropcm20*
12784
12785 MMP SUPPORT
12786 R:      Lubomir Rintel <lkundrak@v3.sk>
12787 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12788 S:      Odd Fixes
12789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12790 F:      arch/arm/boot/dts/mmp*
12791 F:      arch/arm/mach-mmp/
12792 F:      include/linux/soc/mmp/
12793
12794 MMP USB PHY DRIVERS
12795 R:      Lubomir Rintel <lkundrak@v3.sk>
12796 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12797 S:      Maintained
12798 F:      drivers/phy/marvell/phy-mmp3-usb.c
12799 F:      drivers/phy/marvell/phy-pxa-usb.c
12800
12801 MMU GATHER AND TLB INVALIDATION
12802 M:      Will Deacon <will@kernel.org>
12803 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12804 M:      Andrew Morton <akpm@linux-foundation.org>
12805 M:      Nick Piggin <npiggin@gmail.com>
12806 M:      Peter Zijlstra <peterz@infradead.org>
12807 L:      linux-arch@vger.kernel.org
12808 L:      linux-mm@kvack.org
12809 S:      Maintained
12810 F:      arch/*/include/asm/tlb.h
12811 F:      include/asm-generic/tlb.h
12812 F:      mm/mmu_gather.c
12813
12814 MN88472 MEDIA DRIVER
12815 M:      Antti Palosaari <crope@iki.fi>
12816 L:      linux-media@vger.kernel.org
12817 S:      Maintained
12818 W:      https://linuxtv.org
12819 W:      http://palosaari.fi/linux/
12820 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12821 F:      drivers/media/dvb-frontends/mn88472*
12822
12823 MN88473 MEDIA DRIVER
12824 M:      Antti Palosaari <crope@iki.fi>
12825 L:      linux-media@vger.kernel.org
12826 S:      Maintained
12827 W:      https://linuxtv.org
12828 W:      http://palosaari.fi/linux/
12829 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12830 F:      drivers/media/dvb-frontends/mn88473*
12831
12832 MODULE SUPPORT
12833 M:      Luis Chamberlain <mcgrof@kernel.org>
12834 M:      Jessica Yu <jeyu@kernel.org>
12835 S:      Maintained
12836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12837 F:      include/linux/module.h
12838 F:      kernel/module.c
12839
12840 MONOLITHIC POWER SYSTEM PMIC DRIVER
12841 M:      Saravanan Sekar <sravanhome@gmail.com>
12842 S:      Maintained
12843 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12844 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12845 F:      drivers/iio/adc/mp2629_adc.c
12846 F:      drivers/mfd/mp2629.c
12847 F:      drivers/power/supply/mp2629_charger.c
12848 F:      drivers/regulator/mp5416.c
12849 F:      drivers/regulator/mpq7920.c
12850 F:      drivers/regulator/mpq7920.h
12851 F:      include/linux/mfd/mp2629.h
12852
12853 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12854 S:      Orphan
12855 W:      http://popies.net/meye/
12856 F:      Documentation/userspace-api/media/drivers/meye*
12857 F:      drivers/media/pci/meye/
12858 F:      include/uapi/linux/meye.h
12859
12860 MOTORCOMM PHY DRIVER
12861 M:      Peter Geis <pgwipeout@gmail.com>
12862 L:      netdev@vger.kernel.org
12863 S:      Maintained
12864 F:      drivers/net/phy/motorcomm.c
12865
12866 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12867 M:      Jiri Slaby <jirislaby@kernel.org>
12868 S:      Maintained
12869 F:      Documentation/driver-api/serial/moxa-smartio.rst
12870 F:      drivers/tty/mxser.*
12871
12872 MR800 AVERMEDIA USB FM RADIO DRIVER
12873 M:      Alexey Klimov <klimov.linux@gmail.com>
12874 L:      linux-media@vger.kernel.org
12875 S:      Maintained
12876 T:      git git://linuxtv.org/media_tree.git
12877 F:      drivers/media/radio/radio-mr800.c
12878
12879 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12880 M:      Alan Ott <alan@signal11.us>
12881 L:      linux-wpan@vger.kernel.org
12882 S:      Maintained
12883 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12884 F:      drivers/net/ieee802154/mrf24j40.c
12885
12886 MSI LAPTOP SUPPORT
12887 M:      "Lee, Chun-Yi" <jlee@suse.com>
12888 L:      platform-driver-x86@vger.kernel.org
12889 S:      Maintained
12890 F:      drivers/platform/x86/msi-laptop.c
12891
12892 MSI WMI SUPPORT
12893 L:      platform-driver-x86@vger.kernel.org
12894 S:      Orphan
12895 F:      drivers/platform/x86/msi-wmi.c
12896
12897 MSI001 MEDIA DRIVER
12898 M:      Antti Palosaari <crope@iki.fi>
12899 L:      linux-media@vger.kernel.org
12900 S:      Maintained
12901 W:      https://linuxtv.org
12902 W:      http://palosaari.fi/linux/
12903 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12904 T:      git git://linuxtv.org/anttip/media_tree.git
12905 F:      drivers/media/tuners/msi001*
12906
12907 MSI2500 MEDIA DRIVER
12908 M:      Antti Palosaari <crope@iki.fi>
12909 L:      linux-media@vger.kernel.org
12910 S:      Maintained
12911 W:      https://linuxtv.org
12912 W:      http://palosaari.fi/linux/
12913 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12914 T:      git git://linuxtv.org/anttip/media_tree.git
12915 F:      drivers/media/usb/msi2500/
12916
12917 MSTAR INTERRUPT CONTROLLER DRIVER
12918 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12919 M:      Daniel Palmer <daniel@thingy.jp>
12920 S:      Maintained
12921 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12922 F:      drivers/irqchip/irq-mst-intc.c
12923
12924 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12925 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12926 L:      linux-mtd@lists.infradead.org
12927 S:      Maintained
12928 F:      drivers/mtd/devices/docg3*
12929
12930 MT9M032 APTINA SENSOR DRIVER
12931 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12932 L:      linux-media@vger.kernel.org
12933 S:      Maintained
12934 T:      git git://linuxtv.org/media_tree.git
12935 F:      drivers/media/i2c/mt9m032.c
12936 F:      include/media/i2c/mt9m032.h
12937
12938 MT9P031 APTINA CAMERA SENSOR
12939 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12940 L:      linux-media@vger.kernel.org
12941 S:      Maintained
12942 T:      git git://linuxtv.org/media_tree.git
12943 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
12944 F:      drivers/media/i2c/mt9p031.c
12945 F:      include/media/i2c/mt9p031.h
12946
12947 MT9T001 APTINA CAMERA SENSOR
12948 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12949 L:      linux-media@vger.kernel.org
12950 S:      Maintained
12951 T:      git git://linuxtv.org/media_tree.git
12952 F:      drivers/media/i2c/mt9t001.c
12953 F:      include/media/i2c/mt9t001.h
12954
12955 MT9T112 APTINA CAMERA SENSOR
12956 M:      Jacopo Mondi <jacopo@jmondi.org>
12957 L:      linux-media@vger.kernel.org
12958 S:      Odd Fixes
12959 T:      git git://linuxtv.org/media_tree.git
12960 F:      drivers/media/i2c/mt9t112.c
12961 F:      include/media/i2c/mt9t112.h
12962
12963 MT9V032 APTINA CAMERA SENSOR
12964 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12965 L:      linux-media@vger.kernel.org
12966 S:      Maintained
12967 T:      git git://linuxtv.org/media_tree.git
12968 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12969 F:      drivers/media/i2c/mt9v032.c
12970 F:      include/media/i2c/mt9v032.h
12971
12972 MT9V111 APTINA CAMERA SENSOR
12973 M:      Jacopo Mondi <jacopo@jmondi.org>
12974 L:      linux-media@vger.kernel.org
12975 S:      Maintained
12976 T:      git git://linuxtv.org/media_tree.git
12977 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12978 F:      drivers/media/i2c/mt9v111.c
12979
12980 MULTIFUNCTION DEVICES (MFD)
12981 M:      Lee Jones <lee.jones@linaro.org>
12982 S:      Supported
12983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12984 F:      Documentation/devicetree/bindings/mfd/
12985 F:      drivers/mfd/
12986 F:      include/dt-bindings/mfd/
12987 F:      include/linux/mfd/
12988
12989 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12990 S:      Orphan
12991 F:      drivers/mmc/host/mmc_spi.c
12992 F:      include/linux/spi/mmc_spi.h
12993
12994 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12995 M:      Ulf Hansson <ulf.hansson@linaro.org>
12996 L:      linux-mmc@vger.kernel.org
12997 S:      Maintained
12998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12999 F:      Documentation/devicetree/bindings/mmc/
13000 F:      drivers/mmc/
13001 F:      include/linux/mmc/
13002 F:      include/uapi/linux/mmc/
13003
13004 MULTIPLEXER SUBSYSTEM
13005 M:      Peter Rosin <peda@axentia.se>
13006 S:      Maintained
13007 F:      Documentation/ABI/testing/sysfs-class-mux*
13008 F:      Documentation/devicetree/bindings/mux/
13009 F:      drivers/mux/
13010 F:      include/dt-bindings/mux/
13011 F:      include/linux/mux/
13012
13013 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
13014 M:      Bin Liu <b-liu@ti.com>
13015 L:      linux-usb@vger.kernel.org
13016 S:      Maintained
13017 F:      drivers/usb/musb/
13018
13019 MXL301RF MEDIA DRIVER
13020 M:      Akihiro Tsukada <tskd08@gmail.com>
13021 L:      linux-media@vger.kernel.org
13022 S:      Odd Fixes
13023 F:      drivers/media/tuners/mxl301rf*
13024
13025 MXL5007T MEDIA DRIVER
13026 M:      Michael Krufky <mkrufky@linuxtv.org>
13027 L:      linux-media@vger.kernel.org
13028 S:      Maintained
13029 W:      https://linuxtv.org
13030 W:      http://github.com/mkrufky
13031 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13032 T:      git git://linuxtv.org/mkrufky/tuners.git
13033 F:      drivers/media/tuners/mxl5007t.*
13034
13035 MXSFB DRM DRIVER
13036 M:      Marek Vasut <marex@denx.de>
13037 M:      Stefan Agner <stefan@agner.ch>
13038 L:      dri-devel@lists.freedesktop.org
13039 S:      Supported
13040 T:      git git://anongit.freedesktop.org/drm/drm-misc
13041 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
13042 F:      drivers/gpu/drm/mxsfb/
13043
13044 MYLEX DAC960 PCI RAID Controller
13045 M:      Hannes Reinecke <hare@kernel.org>
13046 L:      linux-scsi@vger.kernel.org
13047 S:      Supported
13048 F:      drivers/scsi/myrb.*
13049 F:      drivers/scsi/myrs.*
13050
13051 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
13052 M:      Chris Lee <christopher.lee@cspi.com>
13053 L:      netdev@vger.kernel.org
13054 S:      Supported
13055 W:      https://www.cspi.com/ethernet-products/support/downloads/
13056 F:      drivers/net/ethernet/myricom/myri10ge/
13057
13058 NAND FLASH SUBSYSTEM
13059 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13060 R:      Richard Weinberger <richard@nod.at>
13061 L:      linux-mtd@lists.infradead.org
13062 S:      Maintained
13063 W:      http://www.linux-mtd.infradead.org/
13064 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13065 C:      irc://irc.oftc.net/mtd
13066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
13067 F:      drivers/mtd/nand/
13068 F:      include/linux/mtd/*nand*.h
13069
13070 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
13071 M:      Daniel Mack <zonque@gmail.com>
13072 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13073 S:      Maintained
13074 W:      http://www.native-instruments.com
13075 F:      sound/usb/caiaq/
13076
13077 NATSEMI ETHERNET DRIVER (DP8381x)
13078 S:      Orphan
13079 F:      drivers/net/ethernet/natsemi/natsemi.c
13080
13081 NCR 5380 SCSI DRIVERS
13082 M:      Finn Thain <fthain@linux-m68k.org>
13083 M:      Michael Schmitz <schmitzmic@gmail.com>
13084 L:      linux-scsi@vger.kernel.org
13085 S:      Maintained
13086 F:      Documentation/scsi/g_NCR5380.rst
13087 F:      drivers/scsi/NCR5380.*
13088 F:      drivers/scsi/arm/cumana_1.c
13089 F:      drivers/scsi/arm/oak.c
13090 F:      drivers/scsi/atari_scsi.*
13091 F:      drivers/scsi/dmx3191d.c
13092 F:      drivers/scsi/g_NCR5380.*
13093 F:      drivers/scsi/mac_scsi.*
13094 F:      drivers/scsi/sun3_scsi.*
13095 F:      drivers/scsi/sun3_scsi_vme.c
13096
13097 NCSI LIBRARY
13098 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
13099 S:      Maintained
13100 F:      net/ncsi/
13101
13102 NCT6775 HARDWARE MONITOR DRIVER
13103 M:      Guenter Roeck <linux@roeck-us.net>
13104 L:      linux-hwmon@vger.kernel.org
13105 S:      Maintained
13106 F:      Documentation/hwmon/nct6775.rst
13107 F:      drivers/hwmon/nct6775.c
13108
13109 NETDEVSIM
13110 M:      Jakub Kicinski <kuba@kernel.org>
13111 S:      Maintained
13112 F:      drivers/net/netdevsim/*
13113
13114 NETEM NETWORK EMULATOR
13115 M:      Stephen Hemminger <stephen@networkplumber.org>
13116 L:      netdev@vger.kernel.org
13117 S:      Maintained
13118 F:      net/sched/sch_netem.c
13119
13120 NETERION 10GbE DRIVERS (s2io/vxge)
13121 M:      Jon Mason <jdmason@kudzu.us>
13122 L:      netdev@vger.kernel.org
13123 S:      Supported
13124 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13125 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
13126 F:      drivers/net/ethernet/neterion/
13127
13128 NETFILTER
13129 M:      Pablo Neira Ayuso <pablo@netfilter.org>
13130 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
13131 M:      Florian Westphal <fw@strlen.de>
13132 L:      netfilter-devel@vger.kernel.org
13133 L:      coreteam@netfilter.org
13134 S:      Maintained
13135 W:      http://www.netfilter.org/
13136 W:      http://www.iptables.org/
13137 W:      http://www.nftables.org/
13138 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13139 C:      irc://irc.libera.chat/netfilter
13140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
13141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
13142 F:      include/linux/netfilter*
13143 F:      include/linux/netfilter/
13144 F:      include/net/netfilter/
13145 F:      include/uapi/linux/netfilter*
13146 F:      include/uapi/linux/netfilter/
13147 F:      net/*/netfilter.c
13148 F:      net/*/netfilter/
13149 F:      net/bridge/br_netfilter*.c
13150 F:      net/netfilter/
13151
13152 NETROM NETWORK LAYER
13153 M:      Ralf Baechle <ralf@linux-mips.org>
13154 L:      linux-hams@vger.kernel.org
13155 S:      Maintained
13156 W:      http://www.linux-ax25.org/
13157 F:      include/net/netrom.h
13158 F:      include/uapi/linux/netrom.h
13159 F:      net/netrom/
13160
13161 NETRONIX EMBEDDED CONTROLLER
13162 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13163 S:      Maintained
13164 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13165 F:      drivers/mfd/ntxec.c
13166 F:      drivers/pwm/pwm-ntxec.c
13167 F:      drivers/rtc/rtc-ntxec.c
13168 F:      include/linux/mfd/ntxec.h
13169
13170 NETRONOME ETHERNET DRIVERS
13171 M:      Simon Horman <simon.horman@corigine.com>
13172 R:      Jakub Kicinski <kuba@kernel.org>
13173 L:      oss-drivers@corigine.com
13174 S:      Maintained
13175 F:      drivers/net/ethernet/netronome/
13176
13177 NETWORK BLOCK DEVICE (NBD)
13178 M:      Josef Bacik <josef@toxicpanda.com>
13179 L:      linux-block@vger.kernel.org
13180 L:      nbd@other.debian.org
13181 S:      Maintained
13182 F:      Documentation/admin-guide/blockdev/nbd.rst
13183 F:      drivers/block/nbd.c
13184 F:      include/trace/events/nbd.h
13185 F:      include/uapi/linux/nbd.h
13186
13187 NETWORK DROP MONITOR
13188 M:      Neil Horman <nhorman@tuxdriver.com>
13189 L:      netdev@vger.kernel.org
13190 S:      Maintained
13191 W:      https://fedorahosted.org/dropwatch/
13192 F:      include/uapi/linux/net_dropmon.h
13193 F:      net/core/drop_monitor.c
13194
13195 NETWORKING DRIVERS
13196 M:      "David S. Miller" <davem@davemloft.net>
13197 M:      Jakub Kicinski <kuba@kernel.org>
13198 L:      netdev@vger.kernel.org
13199 S:      Maintained
13200 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13203 F:      Documentation/devicetree/bindings/net/
13204 F:      drivers/connector/
13205 F:      drivers/net/
13206 F:      include/linux/etherdevice.h
13207 F:      include/linux/fcdevice.h
13208 F:      include/linux/fddidevice.h
13209 F:      include/linux/hippidevice.h
13210 F:      include/linux/if_*
13211 F:      include/linux/inetdevice.h
13212 F:      include/linux/netdevice.h
13213 F:      include/uapi/linux/if_*
13214 F:      include/uapi/linux/netdevice.h
13215
13216 NETWORKING DRIVERS (WIRELESS)
13217 M:      Kalle Valo <kvalo@codeaurora.org>
13218 L:      linux-wireless@vger.kernel.org
13219 S:      Maintained
13220 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
13222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
13223 F:      Documentation/devicetree/bindings/net/wireless/
13224 F:      drivers/net/wireless/
13225
13226 NETWORKING [DSA]
13227 M:      Andrew Lunn <andrew@lunn.ch>
13228 M:      Vivien Didelot <vivien.didelot@gmail.com>
13229 M:      Florian Fainelli <f.fainelli@gmail.com>
13230 M:      Vladimir Oltean <olteanv@gmail.com>
13231 S:      Maintained
13232 F:      Documentation/devicetree/bindings/net/dsa/
13233 F:      drivers/net/dsa/
13234 F:      include/linux/dsa/
13235 F:      include/linux/platform_data/dsa.h
13236 F:      include/net/dsa.h
13237 F:      net/dsa/
13238 F:      tools/testing/selftests/drivers/net/dsa/
13239
13240 NETWORKING [GENERAL]
13241 M:      "David S. Miller" <davem@davemloft.net>
13242 M:      Jakub Kicinski <kuba@kernel.org>
13243 L:      netdev@vger.kernel.org
13244 S:      Maintained
13245 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13246 B:      mailto:netdev@vger.kernel.org
13247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13249 F:      Documentation/networking/
13250 F:      include/linux/in.h
13251 F:      include/linux/net.h
13252 F:      include/linux/netdevice.h
13253 F:      include/net/
13254 F:      include/uapi/linux/in.h
13255 F:      include/uapi/linux/net.h
13256 F:      include/uapi/linux/net_namespace.h
13257 F:      include/uapi/linux/netdevice.h
13258 F:      lib/net_utils.c
13259 F:      lib/random32.c
13260 F:      net/
13261 F:      tools/testing/selftests/net/
13262
13263 NETWORKING [IPSEC]
13264 M:      Steffen Klassert <steffen.klassert@secunet.com>
13265 M:      Herbert Xu <herbert@gondor.apana.org.au>
13266 M:      "David S. Miller" <davem@davemloft.net>
13267 L:      netdev@vger.kernel.org
13268 S:      Maintained
13269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13271 F:      include/net/xfrm.h
13272 F:      include/uapi/linux/xfrm.h
13273 F:      net/ipv4/ah4.c
13274 F:      net/ipv4/esp4*
13275 F:      net/ipv4/ip_vti.c
13276 F:      net/ipv4/ipcomp.c
13277 F:      net/ipv4/xfrm*
13278 F:      net/ipv6/ah6.c
13279 F:      net/ipv6/esp6*
13280 F:      net/ipv6/ip6_vti.c
13281 F:      net/ipv6/ipcomp6.c
13282 F:      net/ipv6/xfrm*
13283 F:      net/key/
13284 F:      net/xfrm/
13285 F:      tools/testing/selftests/net/ipsec.c
13286
13287 NETWORKING [IPv4/IPv6]
13288 M:      "David S. Miller" <davem@davemloft.net>
13289 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13290 M:      David Ahern <dsahern@kernel.org>
13291 L:      netdev@vger.kernel.org
13292 S:      Maintained
13293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13294 F:      arch/x86/net/*
13295 F:      include/net/ip*
13296 F:      net/ipv4/
13297 F:      net/ipv6/
13298
13299 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13300 M:      Paul Moore <paul@paul-moore.com>
13301 L:      netdev@vger.kernel.org
13302 L:      linux-security-module@vger.kernel.org
13303 S:      Maintained
13304 W:      https://github.com/netlabel
13305 F:      Documentation/netlabel/
13306 F:      include/net/calipso.h
13307 F:      include/net/cipso_ipv4.h
13308 F:      include/net/netlabel.h
13309 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13310 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13311 F:      net/ipv4/cipso_ipv4.c
13312 F:      net/ipv6/calipso.c
13313 F:      net/netfilter/xt_CONNSECMARK.c
13314 F:      net/netfilter/xt_SECMARK.c
13315 F:      net/netlabel/
13316
13317 NETWORKING [MPTCP]
13318 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13319 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13320 L:      netdev@vger.kernel.org
13321 L:      mptcp@lists.linux.dev
13322 S:      Maintained
13323 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13324 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13325 F:      Documentation/networking/mptcp-sysctl.rst
13326 F:      include/net/mptcp.h
13327 F:      include/trace/events/mptcp.h
13328 F:      include/uapi/linux/mptcp.h
13329 F:      net/mptcp/
13330 F:      tools/testing/selftests/net/mptcp/
13331
13332 NETWORKING [TCP]
13333 M:      Eric Dumazet <edumazet@google.com>
13334 L:      netdev@vger.kernel.org
13335 S:      Maintained
13336 F:      include/linux/tcp.h
13337 F:      include/net/tcp.h
13338 F:      include/trace/events/tcp.h
13339 F:      include/uapi/linux/tcp.h
13340 F:      net/ipv4/syncookies.c
13341 F:      net/ipv4/tcp*.c
13342 F:      net/ipv6/syncookies.c
13343 F:      net/ipv6/tcp*.c
13344
13345 NETWORKING [TLS]
13346 M:      Boris Pismenny <borisp@nvidia.com>
13347 M:      John Fastabend <john.fastabend@gmail.com>
13348 M:      Daniel Borkmann <daniel@iogearbox.net>
13349 M:      Jakub Kicinski <kuba@kernel.org>
13350 L:      netdev@vger.kernel.org
13351 S:      Maintained
13352 F:      include/net/tls.h
13353 F:      include/uapi/linux/tls.h
13354 F:      net/tls/*
13355
13356 NETWORKING [WIRELESS]
13357 L:      linux-wireless@vger.kernel.org
13358 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13359
13360 NETXEN (1/10) GbE SUPPORT
13361 M:      Manish Chopra <manishc@marvell.com>
13362 M:      Rahul Verma <rahulv@marvell.com>
13363 M:      GR-Linux-NIC-Dev@marvell.com
13364 L:      netdev@vger.kernel.org
13365 S:      Supported
13366 F:      drivers/net/ethernet/qlogic/netxen/
13367
13368 NET_FAILOVER MODULE
13369 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13370 L:      netdev@vger.kernel.org
13371 S:      Supported
13372 F:      Documentation/networking/net_failover.rst
13373 F:      drivers/net/net_failover.c
13374 F:      include/net/net_failover.h
13375
13376 NEXTHOP
13377 M:      David Ahern <dsahern@kernel.org>
13378 L:      netdev@vger.kernel.org
13379 S:      Maintained
13380 F:      include/net/netns/nexthop.h
13381 F:      include/net/nexthop.h
13382 F:      include/uapi/linux/nexthop.h
13383 F:      net/ipv4/nexthop.c
13384
13385 NFC SUBSYSTEM
13386 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13387 L:      linux-nfc@lists.01.org (subscribers-only)
13388 L:      netdev@vger.kernel.org
13389 S:      Maintained
13390 F:      Documentation/devicetree/bindings/net/nfc/
13391 F:      drivers/nfc/
13392 F:      include/linux/platform_data/nfcmrvl.h
13393 F:      include/net/nfc/
13394 F:      include/uapi/linux/nfc.h
13395 F:      net/nfc/
13396
13397 NFC VIRTUAL NCI DEVICE DRIVER
13398 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13399 L:      netdev@vger.kernel.org
13400 L:      linux-nfc@lists.01.org (subscribers-only)
13401 S:      Supported
13402 F:      drivers/nfc/virtual_ncidev.c
13403 F:      tools/testing/selftests/nci/
13404
13405 NFS, SUNRPC, AND LOCKD CLIENTS
13406 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13407 M:      Anna Schumaker <anna.schumaker@netapp.com>
13408 L:      linux-nfs@vger.kernel.org
13409 S:      Maintained
13410 W:      http://client.linux-nfs.org
13411 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13412 F:      fs/lockd/
13413 F:      fs/nfs/
13414 F:      fs/nfs_common/
13415 F:      include/linux/lockd/
13416 F:      include/linux/nfs*
13417 F:      include/linux/sunrpc/
13418 F:      include/uapi/linux/nfs*
13419 F:      include/uapi/linux/sunrpc/
13420 F:      net/sunrpc/
13421 F:      Documentation/filesystems/nfs/
13422
13423 NILFS2 FILESYSTEM
13424 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13425 L:      linux-nilfs@vger.kernel.org
13426 S:      Supported
13427 W:      https://nilfs.sourceforge.io/
13428 W:      https://nilfs.osdn.jp/
13429 T:      git git://github.com/konis/nilfs2.git
13430 F:      Documentation/filesystems/nilfs2.rst
13431 F:      fs/nilfs2/
13432 F:      include/trace/events/nilfs2.h
13433 F:      include/uapi/linux/nilfs2_api.h
13434 F:      include/uapi/linux/nilfs2_ondisk.h
13435
13436 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13437 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13438 S:      Maintained
13439 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13440 F:      Documentation/scsi/NinjaSCSI.rst
13441 F:      drivers/scsi/pcmcia/nsp_*
13442
13443 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13444 M:      GOTO Masanori <gotom@debian.or.jp>
13445 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13446 S:      Maintained
13447 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13448 F:      Documentation/scsi/NinjaSCSI.rst
13449 F:      drivers/scsi/nsp32*
13450
13451 NINTENDO HID DRIVER
13452 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
13453 L:      linux-input@vger.kernel.org
13454 S:      Maintained
13455 F:      drivers/hid/hid-nintendo*
13456
13457 NIOS2 ARCHITECTURE
13458 M:      Dinh Nguyen <dinguyen@kernel.org>
13459 S:      Maintained
13460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13461 F:      arch/nios2/
13462
13463 NITRO ENCLAVES (NE)
13464 M:      Andra Paraschiv <andraprs@amazon.com>
13465 M:      Alexandru Vasile <lexnv@amazon.com>
13466 M:      Alexandru Ciobotaru <alcioa@amazon.com>
13467 L:      linux-kernel@vger.kernel.org
13468 S:      Supported
13469 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13470 F:      Documentation/virt/ne_overview.rst
13471 F:      drivers/virt/nitro_enclaves/
13472 F:      include/linux/nitro_enclaves.h
13473 F:      include/uapi/linux/nitro_enclaves.h
13474 F:      samples/nitro_enclaves/
13475
13476 NOHZ, DYNTICKS SUPPORT
13477 M:      Frederic Weisbecker <fweisbec@gmail.com>
13478 M:      Thomas Gleixner <tglx@linutronix.de>
13479 M:      Ingo Molnar <mingo@kernel.org>
13480 L:      linux-kernel@vger.kernel.org
13481 S:      Maintained
13482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13483 F:      include/linux/sched/nohz.h
13484 F:      include/linux/tick.h
13485 F:      kernel/time/tick*.*
13486
13487 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13488 M:      Pavel Machek <pavel@ucw.cz>
13489 M:      Sakari Ailus <sakari.ailus@iki.fi>
13490 L:      linux-media@vger.kernel.org
13491 S:      Maintained
13492 F:      drivers/media/i2c/ad5820.c
13493 F:      drivers/media/i2c/et8ek8
13494
13495 NOKIA N900 POWER SUPPLY DRIVERS
13496 R:      Pali Rohár <pali@kernel.org>
13497 F:      drivers/power/supply/bq2415x_charger.c
13498 F:      drivers/power/supply/bq27xxx_battery.c
13499 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13500 F:      drivers/power/supply/isp1704_charger.c
13501 F:      drivers/power/supply/rx51_battery.c
13502 F:      include/linux/power/bq2415x_charger.h
13503 F:      include/linux/power/bq27xxx_battery.h
13504
13505 NOLIBC HEADER FILE
13506 M:      Willy Tarreau <w@1wt.eu>
13507 S:      Maintained
13508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13509 F:      tools/include/nolibc/
13510
13511 NSDEPS
13512 M:      Matthias Maennich <maennich@google.com>
13513 S:      Maintained
13514 F:      Documentation/core-api/symbol-namespaces.rst
13515 F:      scripts/nsdeps
13516
13517 NTB AMD DRIVER
13518 M:      Sanjay R Mehta <sanju.mehta@amd.com>
13519 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13520 L:      linux-ntb@googlegroups.com
13521 S:      Supported
13522 F:      drivers/ntb/hw/amd/
13523
13524 NTB DRIVER CORE
13525 M:      Jon Mason <jdmason@kudzu.us>
13526 M:      Dave Jiang <dave.jiang@intel.com>
13527 M:      Allen Hubbe <allenbh@gmail.com>
13528 L:      linux-ntb@googlegroups.com
13529 S:      Supported
13530 W:      https://github.com/jonmason/ntb/wiki
13531 T:      git git://github.com/jonmason/ntb.git
13532 F:      drivers/net/ntb_netdev.c
13533 F:      drivers/ntb/
13534 F:      include/linux/ntb.h
13535 F:      include/linux/ntb_transport.h
13536 F:      tools/testing/selftests/ntb/
13537
13538 NTB IDT DRIVER
13539 M:      Serge Semin <fancer.lancer@gmail.com>
13540 L:      linux-ntb@googlegroups.com
13541 S:      Supported
13542 F:      drivers/ntb/hw/idt/
13543
13544 NTB INTEL DRIVER
13545 M:      Dave Jiang <dave.jiang@intel.com>
13546 L:      linux-ntb@googlegroups.com
13547 S:      Supported
13548 W:      https://github.com/davejiang/linux/wiki
13549 T:      git https://github.com/davejiang/linux.git
13550 F:      drivers/ntb/hw/intel/
13551
13552 NTFS FILESYSTEM
13553 M:      Anton Altaparmakov <anton@tuxera.com>
13554 L:      linux-ntfs-dev@lists.sourceforge.net
13555 S:      Supported
13556 W:      http://www.tuxera.com/
13557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13558 F:      Documentation/filesystems/ntfs.rst
13559 F:      fs/ntfs/
13560
13561 NTFS3 FILESYSTEM
13562 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
13563 L:      ntfs3@lists.linux.dev
13564 S:      Supported
13565 W:      http://www.paragon-software.com/
13566 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
13567 F:      Documentation/filesystems/ntfs3.rst
13568 F:      fs/ntfs3/
13569
13570 NUBUS SUBSYSTEM
13571 M:      Finn Thain <fthain@linux-m68k.org>
13572 L:      linux-m68k@lists.linux-m68k.org
13573 S:      Maintained
13574 F:      arch/*/include/asm/nubus.h
13575 F:      drivers/nubus/
13576 F:      include/linux/nubus.h
13577 F:      include/uapi/linux/nubus.h
13578
13579 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13580 M:      Antonino Daplas <adaplas@gmail.com>
13581 L:      linux-fbdev@vger.kernel.org
13582 S:      Maintained
13583 F:      drivers/video/fbdev/nvidia/
13584 F:      drivers/video/fbdev/riva/
13585
13586 NVIDIA WMI EC BACKLIGHT DRIVER
13587 M:      Daniel Dadap <ddadap@nvidia.com>
13588 L:      platform-driver-x86@vger.kernel.org
13589 S:      Supported
13590 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
13591
13592 NVM EXPRESS DRIVER
13593 M:      Keith Busch <kbusch@kernel.org>
13594 M:      Jens Axboe <axboe@fb.com>
13595 M:      Christoph Hellwig <hch@lst.de>
13596 M:      Sagi Grimberg <sagi@grimberg.me>
13597 L:      linux-nvme@lists.infradead.org
13598 S:      Supported
13599 W:      http://git.infradead.org/nvme.git
13600 T:      git://git.infradead.org/nvme.git
13601 F:      drivers/nvme/host/
13602 F:      include/linux/nvme.h
13603 F:      include/uapi/linux/nvme_ioctl.h
13604
13605 NVM EXPRESS FC TRANSPORT DRIVERS
13606 M:      James Smart <james.smart@broadcom.com>
13607 L:      linux-nvme@lists.infradead.org
13608 S:      Supported
13609 F:      drivers/nvme/host/fc.c
13610 F:      drivers/nvme/target/fc.c
13611 F:      drivers/nvme/target/fcloop.c
13612 F:      include/linux/nvme-fc-driver.h
13613 F:      include/linux/nvme-fc.h
13614
13615 NVM EXPRESS TARGET DRIVER
13616 M:      Christoph Hellwig <hch@lst.de>
13617 M:      Sagi Grimberg <sagi@grimberg.me>
13618 M:      Chaitanya Kulkarni <kch@nvidia.com>
13619 L:      linux-nvme@lists.infradead.org
13620 S:      Supported
13621 W:      http://git.infradead.org/nvme.git
13622 T:      git://git.infradead.org/nvme.git
13623 F:      drivers/nvme/target/
13624
13625 NVMEM FRAMEWORK
13626 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13627 S:      Maintained
13628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13629 F:      Documentation/ABI/stable/sysfs-bus-nvmem
13630 F:      Documentation/devicetree/bindings/nvmem/
13631 F:      drivers/nvmem/
13632 F:      include/linux/nvmem-consumer.h
13633 F:      include/linux/nvmem-provider.h
13634
13635 NXP C45 TJA11XX PHY DRIVER
13636 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13637 L:      netdev@vger.kernel.org
13638 S:      Maintained
13639 F:      drivers/net/phy/nxp-c45-tja11xx.c
13640
13641 NXP FSPI DRIVER
13642 M:      Ashish Kumar <ashish.kumar@nxp.com>
13643 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
13644 L:      linux-spi@vger.kernel.org
13645 S:      Maintained
13646 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
13647 F:      drivers/spi/spi-nxp-fspi.c
13648
13649 NXP FXAS21002C DRIVER
13650 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13651 L:      linux-iio@vger.kernel.org
13652 S:      Maintained
13653 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13654 F:      drivers/iio/gyro/fxas21002c.h
13655 F:      drivers/iio/gyro/fxas21002c_core.c
13656 F:      drivers/iio/gyro/fxas21002c_i2c.c
13657 F:      drivers/iio/gyro/fxas21002c_spi.c
13658
13659 NXP i.MX CLOCK DRIVERS
13660 M:      Abel Vesa <abel.vesa@nxp.com>
13661 L:      linux-clk@vger.kernel.org
13662 L:      linux-imx@nxp.com
13663 S:      Maintained
13664 F:      drivers/clk/imx/
13665
13666 NXP i.MX 8MQ DCSS DRIVER
13667 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13668 R:      Lucas Stach <l.stach@pengutronix.de>
13669 L:      dri-devel@lists.freedesktop.org
13670 S:      Maintained
13671 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13672 F:      drivers/gpu/drm/imx/dcss/
13673
13674 NXP i.MX 8QXP ADC DRIVER
13675 M:      Cai Huoqing <caihuoqing@baidu.com>
13676 L:      linux-iio@vger.kernel.org
13677 S:      Supported
13678 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
13679 F:      drivers/iio/adc/imx8qxp-adc.c
13680
13681 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13682 M:      Jagan Teki <jagan@amarulasolutions.com>
13683 S:      Maintained
13684 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13685 F:      drivers/regulator/pf8x00-regulator.c
13686
13687 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13688 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13689 L:      linux-kernel@vger.kernel.org
13690 S:      Maintained
13691 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13692 F:      drivers/extcon/extcon-ptn5150.c
13693
13694 NXP SGTL5000 DRIVER
13695 M:      Fabio Estevam <festevam@gmail.com>
13696 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13697 S:      Maintained
13698 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
13699 F:      sound/soc/codecs/sgtl5000*
13700
13701 NXP SJA1105 ETHERNET SWITCH DRIVER
13702 M:      Vladimir Oltean <olteanv@gmail.com>
13703 L:      linux-kernel@vger.kernel.org
13704 S:      Maintained
13705 F:      drivers/net/dsa/sja1105
13706 F:      drivers/net/pcs/pcs-xpcs-nxp.c
13707
13708 NXP TDA998X DRM DRIVER
13709 M:      Russell King <linux@armlinux.org.uk>
13710 S:      Maintained
13711 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13712 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13713 F:      drivers/gpu/drm/i2c/tda998x_drv.c
13714 F:      include/drm/i2c/tda998x.h
13715 F:      include/dt-bindings/display/tda998x.h
13716 K:      "nxp,tda998x"
13717
13718 NXP TFA9879 DRIVER
13719 M:      Peter Rosin <peda@axentia.se>
13720 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13721 S:      Maintained
13722 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
13723 F:      sound/soc/codecs/tfa9879*
13724
13725 NXP/Goodix TFA989X (TFA1) DRIVER
13726 M:      Stephan Gerhold <stephan@gerhold.net>
13727 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13728 S:      Maintained
13729 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13730 F:      sound/soc/codecs/tfa989x.c
13731
13732 NXP-NCI NFC DRIVER
13733 R:      Charles Gorand <charles.gorand@effinnov.com>
13734 L:      linux-nfc@lists.01.org (subscribers-only)
13735 S:      Supported
13736 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
13737 F:      drivers/nfc/nxp-nci
13738
13739 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13740 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
13741 R:      NXP Linux Team <linux-imx@nxp.com>
13742 L:      linux-media@vger.kernel.org
13743 S:      Maintained
13744 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
13745 F:      drivers/media/platform/imx-jpeg
13746
13747 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13748 M:      Jonas Malaco <jonas@protocubo.io>
13749 L:      linux-hwmon@vger.kernel.org
13750 S:      Maintained
13751 F:      Documentation/hwmon/nzxt-kraken2.rst
13752 F:      drivers/hwmon/nzxt-kraken2.c
13753
13754 OBJAGG
13755 M:      Jiri Pirko <jiri@nvidia.com>
13756 L:      netdev@vger.kernel.org
13757 S:      Supported
13758 F:      include/linux/objagg.h
13759 F:      lib/objagg.c
13760 F:      lib/test_objagg.c
13761
13762 OBJTOOL
13763 M:      Josh Poimboeuf <jpoimboe@redhat.com>
13764 M:      Peter Zijlstra <peterz@infradead.org>
13765 S:      Supported
13766 F:      tools/objtool/
13767 F:      include/linux/objtool.h
13768
13769 OCELOT ETHERNET SWITCH DRIVER
13770 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
13771 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
13772 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13773 M:      UNGLinuxDriver@microchip.com
13774 L:      netdev@vger.kernel.org
13775 S:      Supported
13776 F:      drivers/net/dsa/ocelot/*
13777 F:      drivers/net/ethernet/mscc/
13778 F:      include/soc/mscc/ocelot*
13779 F:      net/dsa/tag_ocelot.c
13780 F:      net/dsa/tag_ocelot_8021q.c
13781 F:      tools/testing/selftests/drivers/net/ocelot/*
13782
13783 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13784 M:      Frederic Barrat <fbarrat@linux.ibm.com>
13785 M:      Andrew Donnellan <ajd@linux.ibm.com>
13786 L:      linuxppc-dev@lists.ozlabs.org
13787 S:      Supported
13788 F:      Documentation/userspace-api/accelerators/ocxl.rst
13789 F:      arch/powerpc/include/asm/pnv-ocxl.h
13790 F:      arch/powerpc/platforms/powernv/ocxl.c
13791 F:      drivers/misc/ocxl/
13792 F:      include/misc/ocxl*
13793 F:      include/uapi/misc/ocxl.h
13794
13795 OMAP AUDIO SUPPORT
13796 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
13797 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
13798 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13799 L:      linux-omap@vger.kernel.org
13800 S:      Maintained
13801 F:      sound/soc/ti/n810.c
13802 F:      sound/soc/ti/omap*
13803 F:      sound/soc/ti/rx51.c
13804 F:      sound/soc/ti/sdma-pcm.*
13805
13806 OMAP CLOCK FRAMEWORK SUPPORT
13807 M:      Paul Walmsley <paul@pwsan.com>
13808 L:      linux-omap@vger.kernel.org
13809 S:      Maintained
13810 F:      arch/arm/*omap*/*clock*
13811
13812 OMAP DEVICE TREE SUPPORT
13813 M:      Benoît Cousson <bcousson@baylibre.com>
13814 M:      Tony Lindgren <tony@atomide.com>
13815 L:      linux-omap@vger.kernel.org
13816 L:      devicetree@vger.kernel.org
13817 S:      Maintained
13818 F:      arch/arm/boot/dts/*am3*
13819 F:      arch/arm/boot/dts/*am4*
13820 F:      arch/arm/boot/dts/*am5*
13821 F:      arch/arm/boot/dts/*dra7*
13822 F:      arch/arm/boot/dts/*omap*
13823 F:      arch/arm/boot/dts/logicpd-som-lv*
13824 F:      arch/arm/boot/dts/logicpd-torpedo*
13825
13826 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13827 L:      linux-omap@vger.kernel.org
13828 L:      linux-fbdev@vger.kernel.org
13829 S:      Orphan
13830 F:      Documentation/arm/omap/dss.rst
13831 F:      drivers/video/fbdev/omap2/
13832
13833 OMAP FRAMEBUFFER SUPPORT
13834 L:      linux-fbdev@vger.kernel.org
13835 L:      linux-omap@vger.kernel.org
13836 S:      Orphan
13837 F:      drivers/video/fbdev/omap/
13838
13839 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13840 M:      Roger Quadros <rogerq@kernel.org>
13841 M:      Tony Lindgren <tony@atomide.com>
13842 L:      linux-omap@vger.kernel.org
13843 S:      Maintained
13844 F:      arch/arm/mach-omap2/*gpmc*
13845 F:      drivers/memory/omap-gpmc.c
13846
13847 OMAP GPIO DRIVER
13848 M:      Grygorii Strashko <grygorii.strashko@ti.com>
13849 M:      Santosh Shilimkar <ssantosh@kernel.org>
13850 M:      Kevin Hilman <khilman@kernel.org>
13851 L:      linux-omap@vger.kernel.org
13852 S:      Maintained
13853 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
13854 F:      drivers/gpio/gpio-omap.c
13855
13856 OMAP HARDWARE SPINLOCK SUPPORT
13857 M:      Ohad Ben-Cohen <ohad@wizery.com>
13858 L:      linux-omap@vger.kernel.org
13859 S:      Maintained
13860 F:      drivers/hwspinlock/omap_hwspinlock.c
13861
13862 OMAP HS MMC SUPPORT
13863 L:      linux-mmc@vger.kernel.org
13864 L:      linux-omap@vger.kernel.org
13865 S:      Orphan
13866 F:      drivers/mmc/host/omap_hsmmc.c
13867
13868 OMAP HWMOD DATA
13869 M:      Paul Walmsley <paul@pwsan.com>
13870 L:      linux-omap@vger.kernel.org
13871 S:      Maintained
13872 F:      arch/arm/mach-omap2/omap_hwmod*data*
13873
13874 OMAP HWMOD SUPPORT
13875 M:      Benoît Cousson <bcousson@baylibre.com>
13876 M:      Paul Walmsley <paul@pwsan.com>
13877 L:      linux-omap@vger.kernel.org
13878 S:      Maintained
13879 F:      arch/arm/mach-omap2/omap_hwmod.*
13880
13881 OMAP I2C DRIVER
13882 M:      Vignesh R <vigneshr@ti.com>
13883 L:      linux-omap@vger.kernel.org
13884 L:      linux-i2c@vger.kernel.org
13885 S:      Maintained
13886 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
13887 F:      drivers/i2c/busses/i2c-omap.c
13888
13889 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13890 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13891 L:      linux-media@vger.kernel.org
13892 S:      Maintained
13893 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
13894 F:      drivers/media/platform/omap3isp/
13895 F:      drivers/staging/media/omap4iss/
13896
13897 OMAP MMC SUPPORT
13898 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13899 L:      linux-omap@vger.kernel.org
13900 S:      Odd Fixes
13901 F:      drivers/mmc/host/omap.c
13902
13903 OMAP POWER MANAGEMENT SUPPORT
13904 M:      Kevin Hilman <khilman@kernel.org>
13905 L:      linux-omap@vger.kernel.org
13906 S:      Maintained
13907 F:      arch/arm/*omap*/*pm*
13908 F:      drivers/cpufreq/omap-cpufreq.c
13909
13910 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13911 M:      Rajendra Nayak <rnayak@codeaurora.org>
13912 M:      Paul Walmsley <paul@pwsan.com>
13913 L:      linux-omap@vger.kernel.org
13914 S:      Maintained
13915 F:      arch/arm/mach-omap2/prm*
13916
13917 OMAP RANDOM NUMBER GENERATOR SUPPORT
13918 M:      Deepak Saxena <dsaxena@plexity.net>
13919 S:      Maintained
13920 F:      drivers/char/hw_random/omap-rng.c
13921
13922 OMAP USB SUPPORT
13923 L:      linux-usb@vger.kernel.org
13924 L:      linux-omap@vger.kernel.org
13925 S:      Orphan
13926 F:      arch/arm/*omap*/usb*
13927 F:      drivers/usb/*/*omap*
13928
13929 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13930 M:      Mark Jackson <mpfj@newflow.co.uk>
13931 L:      linux-omap@vger.kernel.org
13932 S:      Maintained
13933 F:      arch/arm/boot/dts/am335x-nano.dts
13934
13935 OMAP1 SUPPORT
13936 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13937 M:      Tony Lindgren <tony@atomide.com>
13938 L:      linux-omap@vger.kernel.org
13939 S:      Maintained
13940 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13942 F:      arch/arm/configs/omap1_defconfig
13943 F:      arch/arm/mach-omap1/
13944 F:      arch/arm/plat-omap/
13945 F:      drivers/i2c/busses/i2c-omap.c
13946 F:      include/linux/platform_data/ams-delta-fiq.h
13947 F:      include/linux/platform_data/i2c-omap.h
13948
13949 OMAP2+ SUPPORT
13950 M:      Tony Lindgren <tony@atomide.com>
13951 L:      linux-omap@vger.kernel.org
13952 S:      Maintained
13953 W:      http://www.muru.com/linux/omap/
13954 W:      http://linux.omap.com/
13955 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13957 F:      arch/arm/configs/omap2plus_defconfig
13958 F:      arch/arm/mach-omap2/
13959 F:      arch/arm/plat-omap/
13960 F:      drivers/bus/ti-sysc.c
13961 F:      drivers/i2c/busses/i2c-omap.c
13962 F:      drivers/irqchip/irq-omap-intc.c
13963 F:      drivers/mfd/*omap*.c
13964 F:      drivers/mfd/menelaus.c
13965 F:      drivers/mfd/palmas.c
13966 F:      drivers/mfd/tps65217.c
13967 F:      drivers/mfd/tps65218.c
13968 F:      drivers/mfd/tps65910.c
13969 F:      drivers/mfd/twl-core.[ch]
13970 F:      drivers/mfd/twl4030*.c
13971 F:      drivers/mfd/twl6030*.c
13972 F:      drivers/mfd/twl6040*.c
13973 F:      drivers/regulator/palmas-regulator*.c
13974 F:      drivers/regulator/pbias-regulator.c
13975 F:      drivers/regulator/tps65217-regulator.c
13976 F:      drivers/regulator/tps65218-regulator.c
13977 F:      drivers/regulator/tps65910-regulator.c
13978 F:      drivers/regulator/twl-regulator.c
13979 F:      drivers/regulator/twl6030-regulator.c
13980 F:      include/linux/platform_data/i2c-omap.h
13981 F:      include/linux/platform_data/ti-sysc.h
13982
13983 OMFS FILESYSTEM
13984 M:      Bob Copeland <me@bobcopeland.com>
13985 L:      linux-karma-devel@lists.sourceforge.net
13986 S:      Maintained
13987 F:      Documentation/filesystems/omfs.rst
13988 F:      fs/omfs/
13989
13990 OMNIKEY CARDMAN 4000 DRIVER
13991 M:      Harald Welte <laforge@gnumonks.org>
13992 S:      Maintained
13993 F:      drivers/char/pcmcia/cm4000_cs.c
13994 F:      include/linux/cm4000_cs.h
13995 F:      include/uapi/linux/cm4000_cs.h
13996
13997 OMNIKEY CARDMAN 4040 DRIVER
13998 M:      Harald Welte <laforge@gnumonks.org>
13999 S:      Maintained
14000 F:      drivers/char/pcmcia/cm4040_cs.*
14001
14002 OMNIVISION OV02A10 SENSOR DRIVER
14003 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14004 L:      linux-media@vger.kernel.org
14005 S:      Maintained
14006 T:      git git://linuxtv.org/media_tree.git
14007 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
14008 F:      drivers/media/i2c/ov02a10.c
14009
14010 OMNIVISION OV13858 SENSOR DRIVER
14011 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14012 L:      linux-media@vger.kernel.org
14013 S:      Maintained
14014 T:      git git://linuxtv.org/media_tree.git
14015 F:      drivers/media/i2c/ov13858.c
14016
14017 OMNIVISION OV13B10 SENSOR DRIVER
14018 M:      Arec Kao <arec.kao@intel.com>
14019 L:      linux-media@vger.kernel.org
14020 S:      Maintained
14021 T:      git git://linuxtv.org/media_tree.git
14022 F:      drivers/media/i2c/ov13b10.c
14023
14024 OMNIVISION OV2680 SENSOR DRIVER
14025 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14026 L:      linux-media@vger.kernel.org
14027 S:      Maintained
14028 T:      git git://linuxtv.org/media_tree.git
14029 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
14030 F:      drivers/media/i2c/ov2680.c
14031
14032 OMNIVISION OV2685 SENSOR DRIVER
14033 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14034 L:      linux-media@vger.kernel.org
14035 S:      Maintained
14036 T:      git git://linuxtv.org/media_tree.git
14037 F:      drivers/media/i2c/ov2685.c
14038
14039 OMNIVISION OV2740 SENSOR DRIVER
14040 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14041 R:      Shawn Tu <shawnx.tu@intel.com>
14042 R:      Bingbu Cao <bingbu.cao@intel.com>
14043 L:      linux-media@vger.kernel.org
14044 S:      Maintained
14045 T:      git git://linuxtv.org/media_tree.git
14046 F:      drivers/media/i2c/ov2740.c
14047
14048 OMNIVISION OV5640 SENSOR DRIVER
14049 M:      Steve Longerbeam <slongerbeam@gmail.com>
14050 L:      linux-media@vger.kernel.org
14051 S:      Maintained
14052 T:      git git://linuxtv.org/media_tree.git
14053 F:      drivers/media/i2c/ov5640.c
14054
14055 OMNIVISION OV5647 SENSOR DRIVER
14056 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
14057 M:      Jacopo Mondi <jacopo@jmondi.org>
14058 L:      linux-media@vger.kernel.org
14059 S:      Maintained
14060 T:      git git://linuxtv.org/media_tree.git
14061 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
14062 F:      drivers/media/i2c/ov5647.c
14063
14064 OMNIVISION OV5670 SENSOR DRIVER
14065 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
14066 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
14067 L:      linux-media@vger.kernel.org
14068 S:      Maintained
14069 T:      git git://linuxtv.org/media_tree.git
14070 F:      drivers/media/i2c/ov5670.c
14071
14072 OMNIVISION OV5675 SENSOR DRIVER
14073 M:      Shawn Tu <shawnx.tu@intel.com>
14074 L:      linux-media@vger.kernel.org
14075 S:      Maintained
14076 T:      git git://linuxtv.org/media_tree.git
14077 F:      drivers/media/i2c/ov5675.c
14078
14079 OMNIVISION OV5695 SENSOR DRIVER
14080 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14081 L:      linux-media@vger.kernel.org
14082 S:      Maintained
14083 T:      git git://linuxtv.org/media_tree.git
14084 F:      drivers/media/i2c/ov5695.c
14085
14086 OMNIVISION OV7670 SENSOR DRIVER
14087 L:      linux-media@vger.kernel.org
14088 S:      Orphan
14089 T:      git git://linuxtv.org/media_tree.git
14090 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
14091 F:      drivers/media/i2c/ov7670.c
14092
14093 OMNIVISION OV772x SENSOR DRIVER
14094 M:      Jacopo Mondi <jacopo@jmondi.org>
14095 L:      linux-media@vger.kernel.org
14096 S:      Odd fixes
14097 T:      git git://linuxtv.org/media_tree.git
14098 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
14099 F:      drivers/media/i2c/ov772x.c
14100 F:      include/media/i2c/ov772x.h
14101
14102 OMNIVISION OV7740 SENSOR DRIVER
14103 M:      Wenyou Yang <wenyou.yang@microchip.com>
14104 L:      linux-media@vger.kernel.org
14105 S:      Maintained
14106 T:      git git://linuxtv.org/media_tree.git
14107 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
14108 F:      drivers/media/i2c/ov7740.c
14109
14110 OMNIVISION OV8856 SENSOR DRIVER
14111 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14112 L:      linux-media@vger.kernel.org
14113 S:      Maintained
14114 T:      git git://linuxtv.org/media_tree.git
14115 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
14116 F:      drivers/media/i2c/ov8856.c
14117
14118 OMNIVISION OV9282 SENSOR DRIVER
14119 M:      Paul J. Murphy <paul.j.murphy@intel.com>
14120 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
14121 L:      linux-media@vger.kernel.org
14122 S:      Maintained
14123 T:      git git://linuxtv.org/media_tree.git
14124 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
14125 F:      drivers/media/i2c/ov9282.c
14126
14127 OMNIVISION OV9640 SENSOR DRIVER
14128 M:      Petr Cvek <petrcvekcz@gmail.com>
14129 L:      linux-media@vger.kernel.org
14130 S:      Maintained
14131 F:      drivers/media/i2c/ov9640.*
14132
14133 OMNIVISION OV9650 SENSOR DRIVER
14134 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14135 R:      Akinobu Mita <akinobu.mita@gmail.com>
14136 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14137 L:      linux-media@vger.kernel.org
14138 S:      Maintained
14139 T:      git git://linuxtv.org/media_tree.git
14140 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
14141 F:      drivers/media/i2c/ov9650.c
14142
14143 OMNIVISION OV9734 SENSOR DRIVER
14144 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14145 R:      Bingbu Cao <bingbu.cao@intel.com>
14146 L:      linux-media@vger.kernel.org
14147 S:      Maintained
14148 T:      git git://linuxtv.org/media_tree.git
14149 F:      drivers/media/i2c/ov9734.c
14150
14151 ONENAND FLASH DRIVER
14152 M:      Kyungmin Park <kyungmin.park@samsung.com>
14153 L:      linux-mtd@lists.infradead.org
14154 S:      Maintained
14155 F:      drivers/mtd/nand/onenand/
14156 F:      include/linux/mtd/onenand*.h
14157
14158 ONION OMEGA2+ BOARD
14159 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14160 L:      linux-mips@vger.kernel.org
14161 S:      Maintained
14162 F:      arch/mips/boot/dts/ralink/omega2p.dts
14163
14164 OP-TEE DRIVER
14165 M:      Jens Wiklander <jens.wiklander@linaro.org>
14166 L:      op-tee@lists.trustedfirmware.org
14167 S:      Maintained
14168 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
14169 F:      drivers/tee/optee/
14170
14171 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14172 M:      Sumit Garg <sumit.garg@linaro.org>
14173 L:      op-tee@lists.trustedfirmware.org
14174 S:      Maintained
14175 F:      drivers/char/hw_random/optee-rng.c
14176
14177 OPA-VNIC DRIVER
14178 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14179 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14180 L:      linux-rdma@vger.kernel.org
14181 S:      Supported
14182 F:      drivers/infiniband/ulp/opa_vnic
14183
14184 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14185 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14186 M:      Frank Rowand <frowand.list@gmail.com>
14187 L:      devicetree@vger.kernel.org
14188 S:      Maintained
14189 F:      Documentation/devicetree/dynamic-resolution-notes.rst
14190 F:      Documentation/devicetree/overlay-notes.rst
14191 F:      drivers/of/overlay.c
14192 F:      drivers/of/resolver.c
14193 K:      of_overlay_notifier_
14194
14195 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14196 M:      Rob Herring <robh+dt@kernel.org>
14197 M:      Frank Rowand <frowand.list@gmail.com>
14198 L:      devicetree@vger.kernel.org
14199 S:      Maintained
14200 W:      http://www.devicetree.org/
14201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14202 F:      Documentation/ABI/testing/sysfs-firmware-ofw
14203 F:      drivers/of/
14204 F:      include/linux/of*.h
14205 F:      scripts/dtc/
14206
14207 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14208 M:      Rob Herring <robh+dt@kernel.org>
14209 L:      devicetree@vger.kernel.org
14210 S:      Maintained
14211 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14213 F:      Documentation/devicetree/
14214 F:      arch/*/boot/dts/
14215 F:      include/dt-bindings/
14216
14217 OPENCOMPUTE PTP CLOCK DRIVER
14218 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
14219 L:      netdev@vger.kernel.org
14220 S:      Maintained
14221 F:      drivers/ptp/ptp_ocp.c
14222
14223 OPENCORES I2C BUS DRIVER
14224 M:      Peter Korsgaard <peter@korsgaard.com>
14225 M:      Andrew Lunn <andrew@lunn.ch>
14226 L:      linux-i2c@vger.kernel.org
14227 S:      Maintained
14228 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14229 F:      Documentation/i2c/busses/i2c-ocores.rst
14230 F:      drivers/i2c/busses/i2c-ocores.c
14231 F:      include/linux/platform_data/i2c-ocores.h
14232
14233 OPENRISC ARCHITECTURE
14234 M:      Jonas Bonn <jonas@southpole.se>
14235 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14236 M:      Stafford Horne <shorne@gmail.com>
14237 L:      openrisc@lists.librecores.org
14238 S:      Maintained
14239 W:      http://openrisc.io
14240 T:      git git://github.com/openrisc/linux.git
14241 F:      Documentation/devicetree/bindings/openrisc/
14242 F:      Documentation/openrisc/
14243 F:      arch/openrisc/
14244 F:      drivers/irqchip/irq-ompic.c
14245 F:      drivers/irqchip/irq-or1k-*
14246
14247 OPENVSWITCH
14248 M:      Pravin B Shelar <pshelar@ovn.org>
14249 L:      netdev@vger.kernel.org
14250 L:      dev@openvswitch.org
14251 S:      Maintained
14252 W:      http://openvswitch.org
14253 F:      include/uapi/linux/openvswitch.h
14254 F:      net/openvswitch/
14255
14256 OPERATING PERFORMANCE POINTS (OPP)
14257 M:      Viresh Kumar <vireshk@kernel.org>
14258 M:      Nishanth Menon <nm@ti.com>
14259 M:      Stephen Boyd <sboyd@kernel.org>
14260 L:      linux-pm@vger.kernel.org
14261 S:      Maintained
14262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14263 F:      Documentation/devicetree/bindings/opp/
14264 F:      Documentation/power/opp.rst
14265 F:      drivers/opp/
14266 F:      include/linux/pm_opp.h
14267
14268 OPL4 DRIVER
14269 M:      Clemens Ladisch <clemens@ladisch.de>
14270 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14271 S:      Maintained
14272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14273 F:      sound/drivers/opl4/
14274
14275 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14276 M:      Mark Fasheh <mark@fasheh.com>
14277 M:      Joel Becker <jlbec@evilplan.org>
14278 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
14279 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14280 S:      Supported
14281 W:      http://ocfs2.wiki.kernel.org
14282 F:      Documentation/filesystems/dlmfs.rst
14283 F:      Documentation/filesystems/ocfs2.rst
14284 F:      fs/ocfs2/
14285
14286 ORANGEFS FILESYSTEM
14287 M:      Mike Marshall <hubcap@omnibond.com>
14288 R:      Martin Brandenburg <martin@omnibond.com>
14289 L:      devel@lists.orangefs.org
14290 S:      Supported
14291 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14292 F:      Documentation/filesystems/orangefs.rst
14293 F:      fs/orangefs/
14294
14295 ORINOCO DRIVER
14296 L:      linux-wireless@vger.kernel.org
14297 S:      Orphan
14298 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14299 W:      http://www.nongnu.org/orinoco/
14300 F:      drivers/net/wireless/intersil/orinoco/
14301
14302 OV2659 OMNIVISION SENSOR DRIVER
14303 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14304 L:      linux-media@vger.kernel.org
14305 S:      Maintained
14306 W:      https://linuxtv.org
14307 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14308 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14309 F:      drivers/media/i2c/ov2659.c
14310 F:      include/media/i2c/ov2659.h
14311
14312 OVERLAY FILESYSTEM
14313 M:      Miklos Szeredi <miklos@szeredi.hu>
14314 L:      linux-unionfs@vger.kernel.org
14315 S:      Supported
14316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14317 F:      Documentation/filesystems/overlayfs.rst
14318 F:      fs/overlayfs/
14319
14320 P54 WIRELESS DRIVER
14321 M:      Christian Lamparter <chunkeey@googlemail.com>
14322 L:      linux-wireless@vger.kernel.org
14323 S:      Maintained
14324 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14325 F:      drivers/net/wireless/intersil/p54/
14326
14327 PACKING
14328 M:      Vladimir Oltean <olteanv@gmail.com>
14329 L:      netdev@vger.kernel.org
14330 S:      Supported
14331 F:      Documentation/core-api/packing.rst
14332 F:      include/linux/packing.h
14333 F:      lib/packing.c
14334
14335 PADATA PARALLEL EXECUTION MECHANISM
14336 M:      Steffen Klassert <steffen.klassert@secunet.com>
14337 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14338 L:      linux-crypto@vger.kernel.org
14339 L:      linux-kernel@vger.kernel.org
14340 S:      Maintained
14341 F:      Documentation/core-api/padata.rst
14342 F:      include/linux/padata.h
14343 F:      kernel/padata.c
14344
14345 PAGE POOL
14346 M:      Jesper Dangaard Brouer <hawk@kernel.org>
14347 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
14348 L:      netdev@vger.kernel.org
14349 S:      Supported
14350 F:      Documentation/networking/page_pool.rst
14351 F:      include/net/page_pool.h
14352 F:      include/trace/events/page_pool.h
14353 F:      net/core/page_pool.c
14354
14355 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14356 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
14357 L:      platform-driver-x86@vger.kernel.org
14358 S:      Maintained
14359 F:      drivers/platform/x86/panasonic-laptop.c
14360
14361 PARALLAX PING IIO SENSOR DRIVER
14362 M:      Andreas Klinger <ak@it-klinger.de>
14363 L:      linux-iio@vger.kernel.org
14364 S:      Maintained
14365 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14366 F:      drivers/iio/proximity/ping.c
14367
14368 PARALLEL LCD/KEYPAD PANEL DRIVER
14369 M:      Willy Tarreau <willy@haproxy.com>
14370 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14371 S:      Odd Fixes
14372 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14373 F:      drivers/auxdisplay/panel.c
14374
14375 PARALLEL PORT SUBSYSTEM
14376 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14377 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14378 L:      linux-parport@lists.infradead.org (subscribers-only)
14379 S:      Maintained
14380 F:      Documentation/driver-api/parport*.rst
14381 F:      drivers/char/ppdev.c
14382 F:      drivers/parport/
14383 F:      include/linux/parport*.h
14384 F:      include/uapi/linux/ppdev.h
14385
14386 PARAVIRT_OPS INTERFACE
14387 M:      Juergen Gross <jgross@suse.com>
14388 M:      Deep Shah <sdeep@vmware.com>
14389 M:      "VMware, Inc." <pv-drivers@vmware.com>
14390 L:      virtualization@lists.linux-foundation.org
14391 S:      Supported
14392 F:      Documentation/virt/paravirt_ops.rst
14393 F:      arch/*/include/asm/paravirt*.h
14394 F:      arch/*/kernel/paravirt*
14395 F:      include/linux/hypervisor.h
14396
14397 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14398 M:      Tim Waugh <tim@cyberelk.net>
14399 L:      linux-parport@lists.infradead.org (subscribers-only)
14400 S:      Maintained
14401 F:      Documentation/admin-guide/blockdev/paride.rst
14402 F:      drivers/block/paride/
14403
14404 PARISC ARCHITECTURE
14405 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14406 M:      Helge Deller <deller@gmx.de>
14407 L:      linux-parisc@vger.kernel.org
14408 S:      Maintained
14409 W:      https://parisc.wiki.kernel.org
14410 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14413 F:      Documentation/parisc/
14414 F:      arch/parisc/
14415 F:      drivers/char/agp/parisc-agp.c
14416 F:      drivers/input/misc/hp_sdc_rtc.c
14417 F:      drivers/input/serio/gscps2.c
14418 F:      drivers/input/serio/hp_sdc*
14419 F:      drivers/parisc/
14420 F:      drivers/parport/parport_gsc.*
14421 F:      drivers/tty/serial/8250/8250_gsc.c
14422 F:      drivers/video/console/sti*
14423 F:      drivers/video/fbdev/sti*
14424 F:      drivers/video/logo/logo_parisc*
14425 F:      include/linux/hp_sdc.h
14426
14427 PARMAN
14428 M:      Jiri Pirko <jiri@nvidia.com>
14429 L:      netdev@vger.kernel.org
14430 S:      Supported
14431 F:      include/linux/parman.h
14432 F:      lib/parman.c
14433 F:      lib/test_parman.c
14434
14435 PC ENGINES APU BOARD DRIVER
14436 M:      Enrico Weigelt, metux IT consult <info@metux.net>
14437 S:      Maintained
14438 F:      drivers/platform/x86/pcengines-apuv2.c
14439
14440 PC87360 HARDWARE MONITORING DRIVER
14441 M:      Jim Cromie <jim.cromie@gmail.com>
14442 L:      linux-hwmon@vger.kernel.org
14443 S:      Maintained
14444 F:      Documentation/hwmon/pc87360.rst
14445 F:      drivers/hwmon/pc87360.c
14446
14447 PC8736x GPIO DRIVER
14448 M:      Jim Cromie <jim.cromie@gmail.com>
14449 S:      Maintained
14450 F:      drivers/char/pc8736x_gpio.c
14451
14452 PC87427 HARDWARE MONITORING DRIVER
14453 M:      Jean Delvare <jdelvare@suse.com>
14454 L:      linux-hwmon@vger.kernel.org
14455 S:      Maintained
14456 F:      Documentation/hwmon/pc87427.rst
14457 F:      drivers/hwmon/pc87427.c
14458
14459 PCA9532 LED DRIVER
14460 M:      Riku Voipio <riku.voipio@iki.fi>
14461 S:      Maintained
14462 F:      drivers/leds/leds-pca9532.c
14463 F:      include/linux/leds-pca9532.h
14464
14465 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14466 M:      Guenter Roeck <linux@roeck-us.net>
14467 L:      linux-i2c@vger.kernel.org
14468 S:      Maintained
14469 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14470
14471 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14472 M:      Khalid Aziz <khalid@gonehiking.org>
14473 S:      Maintained
14474 F:      drivers/firmware/pcdp.*
14475
14476 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14477 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14478 M:      Pali Rohár <pali@kernel.org>
14479 L:      linux-pci@vger.kernel.org
14480 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14481 S:      Maintained
14482 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14483 F:      drivers/pci/controller/pci-aardvark.c
14484
14485 PCI DRIVER FOR ALTERA PCIE IP
14486 M:      Joyce Ooi <joyce.ooi@intel.com>
14487 L:      linux-pci@vger.kernel.org
14488 S:      Supported
14489 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
14490 F:      drivers/pci/controller/pcie-altera.c
14491
14492 PCI DRIVER FOR APPLIEDMICRO XGENE
14493 M:      Toan Le <toan@os.amperecomputing.com>
14494 L:      linux-pci@vger.kernel.org
14495 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14496 S:      Maintained
14497 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
14498 F:      drivers/pci/controller/pci-xgene.c
14499
14500 PCI DRIVER FOR ARM VERSATILE PLATFORM
14501 M:      Rob Herring <robh@kernel.org>
14502 L:      linux-pci@vger.kernel.org
14503 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14504 S:      Maintained
14505 F:      Documentation/devicetree/bindings/pci/versatile.yaml
14506 F:      drivers/pci/controller/pci-versatile.c
14507
14508 PCI DRIVER FOR ARMADA 8K
14509 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14510 L:      linux-pci@vger.kernel.org
14511 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14512 S:      Maintained
14513 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
14514 F:      drivers/pci/controller/dwc/pcie-armada8k.c
14515
14516 PCI DRIVER FOR CADENCE PCIE IP
14517 M:      Tom Joseph <tjoseph@cadence.com>
14518 L:      linux-pci@vger.kernel.org
14519 S:      Maintained
14520 F:      Documentation/devicetree/bindings/pci/cdns,*
14521 F:      drivers/pci/controller/cadence/
14522
14523 PCI DRIVER FOR FREESCALE LAYERSCAPE
14524 M:      Minghuan Lian <minghuan.Lian@nxp.com>
14525 M:      Mingkai Hu <mingkai.hu@nxp.com>
14526 M:      Roy Zang <roy.zang@nxp.com>
14527 L:      linuxppc-dev@lists.ozlabs.org
14528 L:      linux-pci@vger.kernel.org
14529 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14530 S:      Maintained
14531 F:      drivers/pci/controller/dwc/*layerscape*
14532
14533 PCI DRIVER FOR GENERIC OF HOSTS
14534 M:      Will Deacon <will@kernel.org>
14535 L:      linux-pci@vger.kernel.org
14536 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14537 S:      Maintained
14538 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14539 F:      drivers/pci/controller/pci-host-common.c
14540 F:      drivers/pci/controller/pci-host-generic.c
14541
14542 PCI DRIVER FOR IMX6
14543 M:      Richard Zhu <hongxing.zhu@nxp.com>
14544 M:      Lucas Stach <l.stach@pengutronix.de>
14545 L:      linux-pci@vger.kernel.org
14546 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14547 S:      Maintained
14548 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
14549 F:      drivers/pci/controller/dwc/*imx6*
14550
14551 PCI DRIVER FOR FU740
14552 M:      Paul Walmsley <paul.walmsley@sifive.com>
14553 M:      Greentime Hu <greentime.hu@sifive.com>
14554 L:      linux-pci@vger.kernel.org
14555 S:      Maintained
14556 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14557 F:      drivers/pci/controller/dwc/pcie-fu740.c
14558
14559 PCI DRIVER FOR INTEL IXP4XX
14560 M:      Linus Walleij <linus.walleij@linaro.org>
14561 S:      Maintained
14562 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
14563 F:      drivers/pci/controller/pci-ixp4xx.c
14564
14565 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14566 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
14567 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
14568 L:      linux-pci@vger.kernel.org
14569 S:      Supported
14570 F:      drivers/pci/controller/vmd.c
14571
14572 PCI DRIVER FOR MICROSEMI SWITCHTEC
14573 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14574 M:      Logan Gunthorpe <logang@deltatee.com>
14575 L:      linux-pci@vger.kernel.org
14576 S:      Maintained
14577 F:      Documentation/ABI/testing/sysfs-class-switchtec
14578 F:      Documentation/driver-api/switchtec.rst
14579 F:      drivers/ntb/hw/mscc/
14580 F:      drivers/pci/switch/switchtec*
14581 F:      include/linux/switchtec.h
14582 F:      include/uapi/linux/switchtec_ioctl.h
14583
14584 PCI DRIVER FOR MOBIVEIL PCIE IP
14585 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14586 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14587 L:      linux-pci@vger.kernel.org
14588 S:      Supported
14589 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14590 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
14591
14592 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14593 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14594 L:      linux-pci@vger.kernel.org
14595 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14596 S:      Maintained
14597 F:      drivers/pci/controller/*mvebu*
14598
14599 PCI DRIVER FOR NVIDIA TEGRA
14600 M:      Thierry Reding <thierry.reding@gmail.com>
14601 L:      linux-tegra@vger.kernel.org
14602 L:      linux-pci@vger.kernel.org
14603 S:      Supported
14604 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14605 F:      drivers/pci/controller/pci-tegra.c
14606
14607 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14608 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14609 L:      linux-pci@vger.kernel.org
14610 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14611 S:      Maintained
14612 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14613 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14614
14615 PCI DRIVER FOR RENESAS R-CAR
14616 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14617 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14618 L:      linux-pci@vger.kernel.org
14619 L:      linux-renesas-soc@vger.kernel.org
14620 S:      Maintained
14621 F:      Documentation/devicetree/bindings/pci/*rcar*
14622 F:      drivers/pci/controller/*rcar*
14623
14624 PCI DRIVER FOR SAMSUNG EXYNOS
14625 M:      Jingoo Han <jingoohan1@gmail.com>
14626 L:      linux-pci@vger.kernel.org
14627 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14628 L:      linux-samsung-soc@vger.kernel.org
14629 S:      Maintained
14630 F:      drivers/pci/controller/dwc/pci-exynos.c
14631
14632 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14633 M:      Jingoo Han <jingoohan1@gmail.com>
14634 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14635 L:      linux-pci@vger.kernel.org
14636 S:      Maintained
14637 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
14638 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
14639 F:      drivers/pci/controller/dwc/*designware*
14640
14641 PCI DRIVER FOR TI DRA7XX/J721E
14642 M:      Kishon Vijay Abraham I <kishon@ti.com>
14643 L:      linux-omap@vger.kernel.org
14644 L:      linux-pci@vger.kernel.org
14645 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14646 S:      Supported
14647 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
14648 F:      drivers/pci/controller/cadence/pci-j721e.c
14649 F:      drivers/pci/controller/dwc/pci-dra7xx.c
14650
14651 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14652 M:      Linus Walleij <linus.walleij@linaro.org>
14653 L:      linux-pci@vger.kernel.org
14654 S:      Maintained
14655 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14656 F:      drivers/pci/controller/pci-v3-semi.c
14657
14658 PCI ENDPOINT SUBSYSTEM
14659 M:      Kishon Vijay Abraham I <kishon@ti.com>
14660 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14661 R:      Krzysztof Wilczyński <kw@linux.com>
14662 L:      linux-pci@vger.kernel.org
14663 S:      Supported
14664 Q:      https://patchwork.kernel.org/project/linux-pci/list/
14665 B:      https://bugzilla.kernel.org
14666 C:      irc://irc.oftc.net/linux-pci
14667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
14668 F:      Documentation/PCI/endpoint/*
14669 F:      Documentation/misc-devices/pci-endpoint-test.rst
14670 F:      drivers/misc/pci_endpoint_test.c
14671 F:      drivers/pci/endpoint/
14672 F:      tools/pci/
14673
14674 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14675 M:      Russell Currey <ruscur@russell.cc>
14676 M:      Oliver O'Halloran <oohall@gmail.com>
14677 L:      linuxppc-dev@lists.ozlabs.org
14678 S:      Supported
14679 F:      Documentation/PCI/pci-error-recovery.rst
14680 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
14681 F:      arch/powerpc/include/*/eeh*.h
14682 F:      arch/powerpc/kernel/eeh*.c
14683 F:      arch/powerpc/platforms/*/eeh*.c
14684 F:      drivers/pci/pcie/aer.c
14685 F:      drivers/pci/pcie/dpc.c
14686 F:      drivers/pci/pcie/err.c
14687
14688 PCI ERROR RECOVERY
14689 M:      Linas Vepstas <linasvepstas@gmail.com>
14690 L:      linux-pci@vger.kernel.org
14691 S:      Supported
14692 F:      Documentation/PCI/pci-error-recovery.rst
14693
14694 PCI MSI DRIVER FOR ALTERA MSI IP
14695 M:      Joyce Ooi <joyce.ooi@intel.com>
14696 L:      linux-pci@vger.kernel.org
14697 S:      Supported
14698 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14699 F:      drivers/pci/controller/pcie-altera-msi.c
14700
14701 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14702 M:      Toan Le <toan@os.amperecomputing.com>
14703 L:      linux-pci@vger.kernel.org
14704 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14705 S:      Maintained
14706 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14707 F:      drivers/pci/controller/pci-xgene-msi.c
14708
14709 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14710 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14711 R:      Rob Herring <robh@kernel.org>
14712 R:      Krzysztof Wilczyński <kw@linux.com>
14713 L:      linux-pci@vger.kernel.org
14714 S:      Supported
14715 Q:      https://patchwork.kernel.org/project/linux-pci/list/
14716 B:      https://bugzilla.kernel.org
14717 C:      irc://irc.oftc.net/linux-pci
14718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
14719 F:      drivers/pci/controller/
14720 F:      drivers/pci/pci-bridge-emul.c
14721 F:      drivers/pci/pci-bridge-emul.h
14722
14723 PCI SUBSYSTEM
14724 M:      Bjorn Helgaas <bhelgaas@google.com>
14725 L:      linux-pci@vger.kernel.org
14726 S:      Supported
14727 Q:      https://patchwork.kernel.org/project/linux-pci/list/
14728 B:      https://bugzilla.kernel.org
14729 C:      irc://irc.oftc.net/linux-pci
14730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14731 F:      Documentation/PCI/
14732 F:      Documentation/devicetree/bindings/pci/
14733 F:      arch/x86/kernel/early-quirks.c
14734 F:      arch/x86/kernel/quirks.c
14735 F:      arch/x86/pci/
14736 F:      drivers/acpi/pci*
14737 F:      drivers/pci/
14738 F:      include/asm-generic/pci*
14739 F:      include/linux/of_pci.h
14740 F:      include/linux/pci*
14741 F:      include/uapi/linux/pci*
14742 F:      lib/pci*
14743
14744 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14745 M:      Jonathan Chocron <jonnyc@amazon.com>
14746 L:      linux-pci@vger.kernel.org
14747 S:      Maintained
14748 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
14749 F:      drivers/pci/controller/dwc/pcie-al.c
14750
14751 PCIE DRIVER FOR AMLOGIC MESON
14752 M:      Yue Wang <yue.wang@Amlogic.com>
14753 L:      linux-pci@vger.kernel.org
14754 L:      linux-amlogic@lists.infradead.org
14755 S:      Maintained
14756 F:      drivers/pci/controller/dwc/pci-meson.c
14757
14758 PCIE DRIVER FOR AXIS ARTPEC
14759 M:      Jesper Nilsson <jesper.nilsson@axis.com>
14760 L:      linux-arm-kernel@axis.com
14761 L:      linux-pci@vger.kernel.org
14762 S:      Maintained
14763 F:      Documentation/devicetree/bindings/pci/axis,artpec*
14764 F:      drivers/pci/controller/dwc/*artpec*
14765
14766 PCIE DRIVER FOR CAVIUM THUNDERX
14767 M:      Robert Richter <rric@kernel.org>
14768 L:      linux-pci@vger.kernel.org
14769 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14770 S:      Odd Fixes
14771 F:      drivers/pci/controller/pci-thunder-*
14772
14773 PCIE DRIVER FOR HISILICON
14774 M:      Zhou Wang <wangzhou1@hisilicon.com>
14775 L:      linux-pci@vger.kernel.org
14776 S:      Maintained
14777 F:      drivers/pci/controller/dwc/pcie-hisi.c
14778
14779 PCIE DRIVER FOR HISILICON KIRIN
14780 M:      Xiaowei Song <songxiaowei@hisilicon.com>
14781 M:      Binghui Wang <wangbinghui@hisilicon.com>
14782 L:      linux-pci@vger.kernel.org
14783 S:      Maintained
14784 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
14785 F:      drivers/pci/controller/dwc/pcie-kirin.c
14786
14787 PCIE DRIVER FOR HISILICON STB
14788 M:      Shawn Guo <shawn.guo@linaro.org>
14789 L:      linux-pci@vger.kernel.org
14790 S:      Maintained
14791 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14792 F:      drivers/pci/controller/dwc/pcie-histb.c
14793
14794 PCIE DRIVER FOR INTEL KEEM BAY
14795 M:      Srikanth Thokala <srikanth.thokala@intel.com>
14796 L:      linux-pci@vger.kernel.org
14797 S:      Supported
14798 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
14799 F:      drivers/pci/controller/dwc/pcie-keembay.c
14800
14801 PCIE DRIVER FOR INTEL LGM GW SOC
14802 M:      Rahul Tanwar <rtanwar@maxlinear.com>
14803 L:      linux-pci@vger.kernel.org
14804 S:      Maintained
14805 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
14806 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
14807
14808 PCIE DRIVER FOR MEDIATEK
14809 M:      Ryder Lee <ryder.lee@mediatek.com>
14810 M:      Jianjun Wang <jianjun.wang@mediatek.com>
14811 L:      linux-pci@vger.kernel.org
14812 L:      linux-mediatek@lists.infradead.org
14813 S:      Supported
14814 F:      Documentation/devicetree/bindings/pci/mediatek*
14815 F:      drivers/pci/controller/*mediatek*
14816
14817 PCIE DRIVER FOR MICROCHIP
14818 M:      Daire McNamara <daire.mcnamara@microchip.com>
14819 L:      linux-pci@vger.kernel.org
14820 S:      Supported
14821 F:      Documentation/devicetree/bindings/pci/microchip*
14822 F:      drivers/pci/controller/*microchip*
14823
14824 PCIE DRIVER FOR QUALCOMM MSM
14825 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
14826 L:      linux-pci@vger.kernel.org
14827 L:      linux-arm-msm@vger.kernel.org
14828 S:      Maintained
14829 F:      drivers/pci/controller/dwc/pcie-qcom.c
14830
14831 PCIE ENDPOINT DRIVER FOR QUALCOMM
14832 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
14833 L:      linux-pci@vger.kernel.org
14834 L:      linux-arm-msm@vger.kernel.org
14835 S:      Maintained
14836 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
14837 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
14838
14839 PCIE DRIVER FOR ROCKCHIP
14840 M:      Shawn Lin <shawn.lin@rock-chips.com>
14841 L:      linux-pci@vger.kernel.org
14842 L:      linux-rockchip@lists.infradead.org
14843 S:      Maintained
14844 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
14845 F:      drivers/pci/controller/pcie-rockchip*
14846
14847 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14848 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14849 L:      linux-pci@vger.kernel.org
14850 S:      Maintained
14851 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
14852 F:      drivers/pci/controller/dwc/pcie-uniphier*
14853
14854 PCIE DRIVER FOR ST SPEAR13XX
14855 M:      Pratyush Anand <pratyush.anand@gmail.com>
14856 L:      linux-pci@vger.kernel.org
14857 S:      Maintained
14858 F:      drivers/pci/controller/dwc/*spear*
14859
14860 PCMCIA SUBSYSTEM
14861 M:      Dominik Brodowski <linux@dominikbrodowski.net>
14862 S:      Odd Fixes
14863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14864 F:      Documentation/pcmcia/
14865 F:      drivers/pcmcia/
14866 F:      include/pcmcia/
14867 F:      tools/pcmcia/
14868
14869 PCNET32 NETWORK DRIVER
14870 M:      Don Fry <pcnet32@frontier.com>
14871 L:      netdev@vger.kernel.org
14872 S:      Maintained
14873 F:      drivers/net/ethernet/amd/pcnet32.c
14874
14875 PCRYPT PARALLEL CRYPTO ENGINE
14876 M:      Steffen Klassert <steffen.klassert@secunet.com>
14877 L:      linux-crypto@vger.kernel.org
14878 S:      Maintained
14879 F:      crypto/pcrypt.c
14880 F:      include/crypto/pcrypt.h
14881
14882 PEAQ WMI HOTKEYS DRIVER
14883 M:      Hans de Goede <hdegoede@redhat.com>
14884 L:      platform-driver-x86@vger.kernel.org
14885 S:      Maintained
14886 F:      drivers/platform/x86/peaq-wmi.c
14887
14888 PENSANDO ETHERNET DRIVERS
14889 M:      Shannon Nelson <snelson@pensando.io>
14890 M:      drivers@pensando.io
14891 L:      netdev@vger.kernel.org
14892 S:      Supported
14893 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14894 F:      drivers/net/ethernet/pensando/
14895
14896 PER-CPU MEMORY ALLOCATOR
14897 M:      Dennis Zhou <dennis@kernel.org>
14898 M:      Tejun Heo <tj@kernel.org>
14899 M:      Christoph Lameter <cl@linux.com>
14900 L:      linux-mm@kvack.org
14901 S:      Maintained
14902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14903 F:      arch/*/include/asm/percpu.h
14904 F:      include/linux/percpu*.h
14905 F:      lib/percpu*.c
14906 F:      mm/percpu*.c
14907
14908 PER-TASK DELAY ACCOUNTING
14909 M:      Balbir Singh <bsingharora@gmail.com>
14910 S:      Maintained
14911 F:      include/linux/delayacct.h
14912 F:      kernel/delayacct.c
14913
14914 PERFORMANCE EVENTS SUBSYSTEM
14915 M:      Peter Zijlstra <peterz@infradead.org>
14916 M:      Ingo Molnar <mingo@redhat.com>
14917 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
14918 R:      Mark Rutland <mark.rutland@arm.com>
14919 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
14920 R:      Jiri Olsa <jolsa@redhat.com>
14921 R:      Namhyung Kim <namhyung@kernel.org>
14922 L:      linux-perf-users@vger.kernel.org
14923 L:      linux-kernel@vger.kernel.org
14924 S:      Supported
14925 W:      https://perf.wiki.kernel.org/
14926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14927 F:      arch/*/events/*
14928 F:      arch/*/events/*/*
14929 F:      arch/*/include/asm/perf_event.h
14930 F:      arch/*/kernel/*/*/perf_event*.c
14931 F:      arch/*/kernel/*/perf_event*.c
14932 F:      arch/*/kernel/perf_callchain.c
14933 F:      arch/*/kernel/perf_event*.c
14934 F:      include/linux/perf_event.h
14935 F:      include/uapi/linux/perf_event.h
14936 F:      kernel/events/*
14937 F:      tools/lib/perf/
14938 F:      tools/perf/
14939
14940 PERFORMANCE EVENTS TOOLING ARM64
14941 R:      John Garry <john.garry@huawei.com>
14942 R:      Will Deacon <will@kernel.org>
14943 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
14944 R:      Leo Yan <leo.yan@linaro.org>
14945 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14946 S:      Supported
14947 F:      tools/build/feature/test-libopencsd.c
14948 F:      tools/perf/arch/arm*/
14949 F:      tools/perf/pmu-events/arch/arm64/
14950 F:      tools/perf/util/arm-spe*
14951 F:      tools/perf/util/cs-etm*
14952
14953 PERSONALITY HANDLING
14954 M:      Christoph Hellwig <hch@infradead.org>
14955 L:      linux-abi-devel@lists.sourceforge.net
14956 S:      Maintained
14957 F:      include/linux/personality.h
14958 F:      include/uapi/linux/personality.h
14959
14960 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14961 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
14962 L:      linux-input@vger.kernel.org
14963 S:      Maintained
14964 F:      Documentation/input/devices/pxrc.rst
14965 F:      drivers/input/joystick/pxrc.c
14966
14967 PHONET PROTOCOL
14968 M:      Remi Denis-Courmont <courmisch@gmail.com>
14969 S:      Supported
14970 F:      Documentation/networking/phonet.rst
14971 F:      include/linux/phonet.h
14972 F:      include/net/phonet/
14973 F:      include/uapi/linux/phonet.h
14974 F:      net/phonet/
14975
14976 PHRAM MTD DRIVER
14977 M:      Joern Engel <joern@lazybastard.org>
14978 L:      linux-mtd@lists.infradead.org
14979 S:      Maintained
14980 F:      drivers/mtd/devices/phram.c
14981
14982 PICOLCD HID DRIVER
14983 M:      Bruno Prémont <bonbons@linux-vserver.org>
14984 L:      linux-input@vger.kernel.org
14985 S:      Maintained
14986 F:      drivers/hid/hid-picolcd*
14987
14988 PIDFD API
14989 M:      Christian Brauner <christian@brauner.io>
14990 L:      linux-kernel@vger.kernel.org
14991 S:      Maintained
14992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14993 F:      samples/pidfd/
14994 F:      tools/testing/selftests/clone3/
14995 F:      tools/testing/selftests/pid_namespace/
14996 F:      tools/testing/selftests/pidfd/
14997 K:      (?i)pidfd
14998 K:      (?i)clone3
14999 K:      \b(clone_args|kernel_clone_args)\b
15000
15001 PIN CONTROL SUBSYSTEM
15002 M:      Linus Walleij <linus.walleij@linaro.org>
15003 L:      linux-gpio@vger.kernel.org
15004 S:      Maintained
15005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
15006 F:      Documentation/devicetree/bindings/pinctrl/
15007 F:      Documentation/driver-api/pin-control.rst
15008 F:      drivers/pinctrl/
15009 F:      include/linux/pinctrl/
15010
15011 PIN CONTROLLER - AMD
15012 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
15013 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
15014 S:      Maintained
15015 F:      drivers/pinctrl/pinctrl-amd.c
15016
15017 PIN CONTROLLER - FREESCALE
15018 M:      Dong Aisheng <aisheng.dong@nxp.com>
15019 M:      Fabio Estevam <festevam@gmail.com>
15020 M:      Shawn Guo <shawnguo@kernel.org>
15021 M:      Stefan Agner <stefan@agner.ch>
15022 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15023 L:      linux-gpio@vger.kernel.org
15024 S:      Maintained
15025 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
15026 F:      drivers/pinctrl/freescale/
15027
15028 PIN CONTROLLER - INTEL
15029 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
15030 M:      Andy Shevchenko <andy@kernel.org>
15031 S:      Maintained
15032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
15033 F:      drivers/pinctrl/intel/
15034
15035 PIN CONTROLLER - KEEMBAY
15036 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15037 S:      Supported
15038 F:      drivers/pinctrl/pinctrl-keembay*
15039
15040 PIN CONTROLLER - MEDIATEK
15041 M:      Sean Wang <sean.wang@kernel.org>
15042 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15043 S:      Maintained
15044 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
15045 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
15046 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
15047 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
15048 F:      drivers/pinctrl/mediatek/
15049
15050 PIN CONTROLLER - MICROCHIP AT91
15051 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15052 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15053 L:      linux-gpio@vger.kernel.org
15054 S:      Supported
15055 F:      drivers/gpio/gpio-sama5d2-piobu.c
15056 F:      drivers/pinctrl/pinctrl-at91*
15057
15058 PIN CONTROLLER - QUALCOMM
15059 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15060 L:      linux-arm-msm@vger.kernel.org
15061 S:      Maintained
15062 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
15063 F:      drivers/pinctrl/qcom/
15064
15065 PIN CONTROLLER - RENESAS
15066 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15067 L:      linux-renesas-soc@vger.kernel.org
15068 S:      Supported
15069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
15070 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
15071 F:      drivers/pinctrl/renesas/
15072
15073 PIN CONTROLLER - SAMSUNG
15074 M:      Tomasz Figa <tomasz.figa@gmail.com>
15075 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
15076 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15077 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15078 L:      linux-samsung-soc@vger.kernel.org
15079 S:      Maintained
15080 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
15081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
15082 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
15083 F:      drivers/pinctrl/samsung/
15084 F:      include/dt-bindings/pinctrl/samsung.h
15085
15086 PIN CONTROLLER - SINGLE
15087 M:      Tony Lindgren <tony@atomide.com>
15088 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
15089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15090 L:      linux-omap@vger.kernel.org
15091 S:      Maintained
15092 F:      drivers/pinctrl/pinctrl-single.c
15093
15094 PKTCDVD DRIVER
15095 M:      linux-block@vger.kernel.org
15096 S:      Orphan
15097 F:      drivers/block/pktcdvd.c
15098 F:      include/linux/pktcdvd.h
15099 F:      include/uapi/linux/pktcdvd.h
15100
15101 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
15102 M:      Tomasz Duszynski <tduszyns@gmail.com>
15103 S:      Maintained
15104 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
15105 F:      drivers/iio/chemical/pms7003.c
15106
15107 PLDMFW LIBRARY
15108 M:      Jacob Keller <jacob.e.keller@intel.com>
15109 S:      Maintained
15110 F:      Documentation/driver-api/pldmfw/
15111 F:      include/linux/pldmfw.h
15112 F:      lib/pldmfw/
15113
15114 PLX DMA DRIVER
15115 M:      Logan Gunthorpe <logang@deltatee.com>
15116 S:      Maintained
15117 F:      drivers/dma/plx_dma.c
15118
15119 PM6764TR DRIVER
15120 M:      Charles Hsu     <hsu.yungteng@gmail.com>
15121 L:      linux-hwmon@vger.kernel.org
15122 S:      Maintained
15123 F:      Documentation/hwmon/pm6764tr.rst
15124 F:      drivers/hwmon/pmbus/pm6764tr.c
15125
15126 PM-GRAPH UTILITY
15127 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
15128 L:      linux-pm@vger.kernel.org
15129 S:      Supported
15130 W:      https://01.org/pm-graph
15131 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
15132 T:      git git://github.com/intel/pm-graph
15133 F:      tools/power/pm-graph
15134
15135 PMBUS HARDWARE MONITORING DRIVERS
15136 M:      Guenter Roeck <linux@roeck-us.net>
15137 L:      linux-hwmon@vger.kernel.org
15138 S:      Maintained
15139 W:      http://hwmon.wiki.kernel.org/
15140 W:      http://www.roeck-us.net/linux/drivers/
15141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
15142 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
15143 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
15144 F:      Documentation/hwmon/adm1275.rst
15145 F:      Documentation/hwmon/ibm-cffps.rst
15146 F:      Documentation/hwmon/ir35221.rst
15147 F:      Documentation/hwmon/lm25066.rst
15148 F:      Documentation/hwmon/ltc2978.rst
15149 F:      Documentation/hwmon/ltc3815.rst
15150 F:      Documentation/hwmon/max16064.rst
15151 F:      Documentation/hwmon/max20751.rst
15152 F:      Documentation/hwmon/max31785.rst
15153 F:      Documentation/hwmon/max34440.rst
15154 F:      Documentation/hwmon/max8688.rst
15155 F:      Documentation/hwmon/pmbus-core.rst
15156 F:      Documentation/hwmon/pmbus.rst
15157 F:      Documentation/hwmon/tps40422.rst
15158 F:      Documentation/hwmon/ucd9000.rst
15159 F:      Documentation/hwmon/ucd9200.rst
15160 F:      Documentation/hwmon/zl6100.rst
15161 F:      drivers/hwmon/pmbus/
15162 F:      include/linux/pmbus.h
15163
15164 PMC SIERRA MaxRAID DRIVER
15165 L:      linux-scsi@vger.kernel.org
15166 S:      Orphan
15167 W:      http://www.pmc-sierra.com/
15168 F:      drivers/scsi/pmcraid.*
15169
15170 PMC SIERRA PM8001 DRIVER
15171 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15172 L:      linux-scsi@vger.kernel.org
15173 S:      Supported
15174 F:      drivers/scsi/pm8001/
15175
15176 PNI RM3100 IIO DRIVER
15177 M:      Song Qiang <songqiang1304521@gmail.com>
15178 L:      linux-iio@vger.kernel.org
15179 S:      Maintained
15180 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15181 F:      drivers/iio/magnetometer/rm3100*
15182
15183 PNP SUPPORT
15184 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15185 L:      linux-acpi@vger.kernel.org
15186 S:      Maintained
15187 F:      drivers/pnp/
15188 F:      include/linux/pnp.h
15189
15190 POSIX CLOCKS and TIMERS
15191 M:      Thomas Gleixner <tglx@linutronix.de>
15192 L:      linux-kernel@vger.kernel.org
15193 S:      Maintained
15194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15195 F:      fs/timerfd.c
15196 F:      include/linux/time_namespace.h
15197 F:      include/linux/timer*
15198 F:      kernel/time/*timer*
15199 F:      kernel/time/namespace.c
15200
15201 POWER MANAGEMENT CORE
15202 M:      "Rafael J. Wysocki" <rafael@kernel.org>
15203 L:      linux-pm@vger.kernel.org
15204 S:      Supported
15205 B:      https://bugzilla.kernel.org
15206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15207 F:      drivers/base/power/
15208 F:      drivers/powercap/
15209 F:      include/linux/intel_rapl.h
15210 F:      include/linux/pm.h
15211 F:      include/linux/pm_*
15212 F:      include/linux/powercap.h
15213 F:      kernel/configs/nopm.config
15214
15215 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15216 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
15217 L:      linux-pm@vger.kernel.org
15218 S:      Supported
15219 B:      https://bugzilla.kernel.org
15220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15221 F:      drivers/powercap/dtpm*
15222 F:      include/linux/dtpm.h
15223
15224 POWER STATE COORDINATION INTERFACE (PSCI)
15225 M:      Mark Rutland <mark.rutland@arm.com>
15226 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15227 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15228 S:      Maintained
15229 F:      drivers/firmware/psci/
15230 F:      include/linux/psci.h
15231 F:      include/uapi/linux/psci.h
15232
15233 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15234 M:      Sebastian Reichel <sre@kernel.org>
15235 L:      linux-pm@vger.kernel.org
15236 S:      Maintained
15237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15238 F:      Documentation/ABI/testing/sysfs-class-power
15239 F:      Documentation/devicetree/bindings/power/supply/
15240 F:      drivers/power/supply/
15241 F:      include/linux/power/
15242 F:      include/linux/power_supply.h
15243
15244 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15245 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15246 L:      linuxppc-dev@lists.ozlabs.org
15247 S:      Maintained
15248 F:      drivers/char/powernv-op-panel.c
15249
15250 PPP OVER ATM (RFC 2364)
15251 M:      Mitchell Blank Jr <mitch@sfgoth.com>
15252 S:      Maintained
15253 F:      include/uapi/linux/atmppp.h
15254 F:      net/atm/pppoatm.c
15255
15256 PPP OVER ETHERNET
15257 M:      Michal Ostrowski <mostrows@earthlink.net>
15258 S:      Maintained
15259 F:      drivers/net/ppp/pppoe.c
15260 F:      drivers/net/ppp/pppox.c
15261
15262 PPP OVER L2TP
15263 M:      James Chapman <jchapman@katalix.com>
15264 S:      Maintained
15265 F:      include/linux/if_pppol2tp.h
15266 F:      include/uapi/linux/if_pppol2tp.h
15267 F:      net/l2tp/l2tp_ppp.c
15268
15269 PPP PROTOCOL DRIVERS AND COMPRESSORS
15270 M:      Paul Mackerras <paulus@samba.org>
15271 L:      linux-ppp@vger.kernel.org
15272 S:      Maintained
15273 F:      drivers/net/ppp/ppp_*
15274
15275 PPS SUPPORT
15276 M:      Rodolfo Giometti <giometti@enneenne.com>
15277 L:      linuxpps@ml.enneenne.com (subscribers-only)
15278 S:      Maintained
15279 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
15280 F:      Documentation/ABI/testing/sysfs-pps
15281 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
15282 F:      Documentation/driver-api/pps.rst
15283 F:      drivers/pps/
15284 F:      include/linux/pps*.h
15285 F:      include/uapi/linux/pps.h
15286
15287 PPTP DRIVER
15288 M:      Dmitry Kozlov <xeb@mail.ru>
15289 L:      netdev@vger.kernel.org
15290 S:      Maintained
15291 W:      http://sourceforge.net/projects/accel-pptp
15292 F:      drivers/net/ppp/pptp.c
15293
15294 PRESSURE STALL INFORMATION (PSI)
15295 M:      Johannes Weiner <hannes@cmpxchg.org>
15296 S:      Maintained
15297 F:      include/linux/psi*
15298 F:      kernel/sched/psi.c
15299
15300 PRINTK
15301 M:      Petr Mladek <pmladek@suse.com>
15302 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
15303 R:      Steven Rostedt <rostedt@goodmis.org>
15304 R:      John Ogness <john.ogness@linutronix.de>
15305 S:      Maintained
15306 F:      include/linux/printk.h
15307 F:      kernel/printk/
15308
15309 PRINTK INDEXING
15310 R:      Chris Down <chris@chrisdown.name>
15311 S:      Maintained
15312 F:      kernel/printk/index.c
15313
15314 PROC FILESYSTEM
15315 L:      linux-kernel@vger.kernel.org
15316 L:      linux-fsdevel@vger.kernel.org
15317 S:      Maintained
15318 F:      Documentation/filesystems/proc.rst
15319 F:      fs/proc/
15320 F:      include/linux/proc_fs.h
15321 F:      tools/testing/selftests/proc/
15322
15323 PROC SYSCTL
15324 M:      Luis Chamberlain <mcgrof@kernel.org>
15325 M:      Kees Cook <keescook@chromium.org>
15326 M:      Iurii Zaikin <yzaikin@google.com>
15327 L:      linux-kernel@vger.kernel.org
15328 L:      linux-fsdevel@vger.kernel.org
15329 S:      Maintained
15330 F:      fs/proc/proc_sysctl.c
15331 F:      include/linux/sysctl.h
15332 F:      kernel/sysctl-test.c
15333 F:      kernel/sysctl.c
15334 F:      tools/testing/selftests/sysctl/
15335
15336 PS3 NETWORK SUPPORT
15337 M:      Geoff Levand <geoff@infradead.org>
15338 L:      netdev@vger.kernel.org
15339 L:      linuxppc-dev@lists.ozlabs.org
15340 S:      Maintained
15341 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
15342
15343 PS3 PLATFORM SUPPORT
15344 M:      Geoff Levand <geoff@infradead.org>
15345 L:      linuxppc-dev@lists.ozlabs.org
15346 S:      Maintained
15347 F:      arch/powerpc/boot/ps3*
15348 F:      arch/powerpc/include/asm/lv1call.h
15349 F:      arch/powerpc/include/asm/ps3*.h
15350 F:      arch/powerpc/platforms/ps3/
15351 F:      drivers/*/ps3*
15352 F:      drivers/ps3/
15353 F:      drivers/rtc/rtc-ps3.c
15354 F:      drivers/usb/host/*ps3.c
15355 F:      sound/ppc/snd_ps3*
15356
15357 PS3VRAM DRIVER
15358 M:      Jim Paris <jim@jtan.com>
15359 M:      Geoff Levand <geoff@infradead.org>
15360 L:      linuxppc-dev@lists.ozlabs.org
15361 S:      Maintained
15362 F:      drivers/block/ps3vram.c
15363
15364 PSAMPLE PACKET SAMPLING SUPPORT
15365 M:      Yotam Gigi <yotam.gi@gmail.com>
15366 S:      Maintained
15367 F:      include/net/psample.h
15368 F:      include/uapi/linux/psample.h
15369 F:      net/psample
15370
15371 PSTORE FILESYSTEM
15372 M:      Kees Cook <keescook@chromium.org>
15373 M:      Anton Vorontsov <anton@enomsg.org>
15374 M:      Colin Cross <ccross@android.com>
15375 M:      Tony Luck <tony.luck@intel.com>
15376 S:      Maintained
15377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15378 F:      Documentation/admin-guide/ramoops.rst
15379 F:      Documentation/admin-guide/pstore-blk.rst
15380 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
15381 F:      drivers/acpi/apei/erst.c
15382 F:      drivers/firmware/efi/efi-pstore.c
15383 F:      fs/pstore/
15384 F:      include/linux/pstore*
15385 K:      \b(pstore|ramoops)
15386
15387 PTP HARDWARE CLOCK SUPPORT
15388 M:      Richard Cochran <richardcochran@gmail.com>
15389 L:      netdev@vger.kernel.org
15390 S:      Maintained
15391 W:      http://linuxptp.sourceforge.net/
15392 F:      Documentation/ABI/testing/sysfs-ptp
15393 F:      Documentation/driver-api/ptp.rst
15394 F:      drivers/net/phy/dp83640*
15395 F:      drivers/ptp/*
15396 F:      include/linux/ptp_cl*
15397
15398 PTP VIRTUAL CLOCK SUPPORT
15399 M:      Yangbo Lu <yangbo.lu@nxp.com>
15400 L:      netdev@vger.kernel.org
15401 S:      Maintained
15402 F:      drivers/ptp/ptp_vclock.c
15403 F:      net/ethtool/phc_vclocks.c
15404
15405 PTRACE SUPPORT
15406 M:      Oleg Nesterov <oleg@redhat.com>
15407 S:      Maintained
15408 F:      arch/*/*/ptrace*.c
15409 F:      arch/*/include/asm/ptrace*.h
15410 F:      arch/*/ptrace*.c
15411 F:      include/asm-generic/syscall.h
15412 F:      include/linux/ptrace.h
15413 F:      include/linux/regset.h
15414 F:      include/linux/tracehook.h
15415 F:      include/uapi/linux/ptrace.h
15416 F:      include/uapi/linux/ptrace.h
15417 F:      kernel/ptrace.c
15418
15419 PULSE8-CEC DRIVER
15420 M:      Hans Verkuil <hverkuil@xs4all.nl>
15421 L:      linux-media@vger.kernel.org
15422 S:      Maintained
15423 T:      git git://linuxtv.org/media_tree.git
15424 F:      Documentation/admin-guide/media/pulse8-cec.rst
15425 F:      drivers/media/cec/usb/pulse8/
15426
15427 PVRUSB2 VIDEO4LINUX DRIVER
15428 M:      Mike Isely <isely@pobox.com>
15429 L:      pvrusb2@isely.net       (subscribers-only)
15430 L:      linux-media@vger.kernel.org
15431 S:      Maintained
15432 W:      http://www.isely.net/pvrusb2/
15433 T:      git git://linuxtv.org/media_tree.git
15434 F:      Documentation/driver-api/media/drivers/pvrusb2*
15435 F:      drivers/media/usb/pvrusb2/
15436
15437 PWC WEBCAM DRIVER
15438 M:      Hans Verkuil <hverkuil@xs4all.nl>
15439 L:      linux-media@vger.kernel.org
15440 S:      Odd Fixes
15441 T:      git git://linuxtv.org/media_tree.git
15442 F:      drivers/media/usb/pwc/*
15443 F:      include/trace/events/pwc.h
15444
15445 PWM FAN DRIVER
15446 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15447 L:      linux-hwmon@vger.kernel.org
15448 S:      Supported
15449 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15450 F:      Documentation/hwmon/pwm-fan.rst
15451 F:      drivers/hwmon/pwm-fan.c
15452
15453 PWM IR Transmitter
15454 M:      Sean Young <sean@mess.org>
15455 L:      linux-media@vger.kernel.org
15456 S:      Maintained
15457 F:      drivers/media/rc/pwm-ir-tx.c
15458
15459 PWM SUBSYSTEM
15460 M:      Thierry Reding <thierry.reding@gmail.com>
15461 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15462 M:      Lee Jones <lee.jones@linaro.org>
15463 L:      linux-pwm@vger.kernel.org
15464 S:      Maintained
15465 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
15466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15467 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15468 F:      Documentation/devicetree/bindings/pwm/
15469 F:      Documentation/driver-api/pwm.rst
15470 F:      drivers/gpio/gpio-mvebu.c
15471 F:      drivers/pwm/
15472 F:      drivers/video/backlight/pwm_bl.c
15473 F:      include/linux/pwm.h
15474 F:      include/linux/pwm_backlight.h
15475 K:      pwm_(config|apply_state|ops)
15476
15477 PXA GPIO DRIVER
15478 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15479 L:      linux-gpio@vger.kernel.org
15480 S:      Maintained
15481 F:      drivers/gpio/gpio-pxa.c
15482
15483 PXA MMCI DRIVER
15484 S:      Orphan
15485
15486 PXA RTC DRIVER
15487 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15488 L:      linux-rtc@vger.kernel.org
15489 S:      Maintained
15490
15491 PXA2xx/PXA3xx SUPPORT
15492 M:      Daniel Mack <daniel@zonque.org>
15493 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
15494 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15495 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15496 S:      Maintained
15497 T:      git git://github.com/hzhuang1/linux.git
15498 T:      git git://github.com/rjarzmik/linux.git
15499 F:      arch/arm/boot/dts/pxa*
15500 F:      arch/arm/mach-pxa/
15501 F:      drivers/dma/pxa*
15502 F:      drivers/pcmcia/pxa2xx*
15503 F:      drivers/pinctrl/pxa/
15504 F:      drivers/spi/spi-pxa2xx*
15505 F:      drivers/usb/gadget/udc/pxa2*
15506 F:      include/sound/pxa2xx-lib.h
15507 F:      sound/arm/pxa*
15508 F:      sound/soc/pxa/
15509
15510 QAT DRIVER
15511 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15512 L:      qat-linux@intel.com
15513 S:      Supported
15514 F:      drivers/crypto/qat/
15515
15516 QCOM AUDIO (ASoC) DRIVERS
15517 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15518 M:      Banajit Goswami <bgoswami@codeaurora.org>
15519 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15520 S:      Supported
15521 F:      sound/soc/codecs/lpass-va-macro.c
15522 F:      sound/soc/codecs/lpass-wsa-macro.*
15523 F:      sound/soc/codecs/msm8916-wcd-analog.c
15524 F:      sound/soc/codecs/msm8916-wcd-digital.c
15525 F:      sound/soc/codecs/wcd9335.*
15526 F:      sound/soc/codecs/wcd934x.c
15527 F:      sound/soc/codecs/wcd-clsh-v2.*
15528 F:      sound/soc/codecs/wsa881x.c
15529 F:      sound/soc/qcom/
15530
15531 QCOM IPA DRIVER
15532 M:      Alex Elder <elder@kernel.org>
15533 L:      netdev@vger.kernel.org
15534 S:      Supported
15535 F:      drivers/net/ipa/
15536
15537 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15538 M:      Gabriel Somlo <somlo@cmu.edu>
15539 M:      "Michael S. Tsirkin" <mst@redhat.com>
15540 L:      qemu-devel@nongnu.org
15541 S:      Maintained
15542 F:      drivers/firmware/qemu_fw_cfg.c
15543 F:      include/uapi/linux/qemu_fw_cfg.h
15544
15545 QIB DRIVER
15546 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15547 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15548 L:      linux-rdma@vger.kernel.org
15549 S:      Supported
15550 F:      drivers/infiniband/hw/qib/
15551
15552 QLOGIC QL41xxx FCOE DRIVER
15553 M:      Saurav Kashyap <skashyap@marvell.com>
15554 M:      Javed Hasan <jhasan@marvell.com>
15555 M:      GR-QLogic-Storage-Upstream@marvell.com
15556 L:      linux-scsi@vger.kernel.org
15557 S:      Supported
15558 F:      drivers/scsi/qedf/
15559
15560 QLOGIC QL41xxx ISCSI DRIVER
15561 M:      Nilesh Javali <njavali@marvell.com>
15562 M:      Manish Rangankar <mrangankar@marvell.com>
15563 M:      GR-QLogic-Storage-Upstream@marvell.com
15564 L:      linux-scsi@vger.kernel.org
15565 S:      Supported
15566 F:      drivers/scsi/qedi/
15567
15568 QLOGIC QL4xxx ETHERNET DRIVER
15569 M:      Ariel Elior <aelior@marvell.com>
15570 M:      GR-everest-linux-l2@marvell.com
15571 L:      netdev@vger.kernel.org
15572 S:      Supported
15573 F:      drivers/net/ethernet/qlogic/qed/
15574 F:      drivers/net/ethernet/qlogic/qede/
15575 F:      include/linux/qed/
15576
15577 QLOGIC QL4xxx RDMA DRIVER
15578 M:      Michal Kalderon <mkalderon@marvell.com>
15579 M:      Ariel Elior <aelior@marvell.com>
15580 L:      linux-rdma@vger.kernel.org
15581 S:      Supported
15582 F:      drivers/infiniband/hw/qedr/
15583 F:      include/uapi/rdma/qedr-abi.h
15584
15585 QLOGIC QLA1280 SCSI DRIVER
15586 M:      Michael Reed <mdr@sgi.com>
15587 L:      linux-scsi@vger.kernel.org
15588 S:      Maintained
15589 F:      drivers/scsi/qla1280.[ch]
15590
15591 QLOGIC QLA2XXX FC-SCSI DRIVER
15592 M:      Nilesh Javali <njavali@marvell.com>
15593 M:      GR-QLogic-Storage-Upstream@marvell.com
15594 L:      linux-scsi@vger.kernel.org
15595 S:      Supported
15596 F:      drivers/scsi/qla2xxx/
15597
15598 QLOGIC QLA3XXX NETWORK DRIVER
15599 M:      GR-Linux-NIC-Dev@marvell.com
15600 L:      netdev@vger.kernel.org
15601 S:      Supported
15602 F:      drivers/net/ethernet/qlogic/qla3xxx.*
15603
15604 QLOGIC QLA4XXX iSCSI DRIVER
15605 M:      Nilesh Javali <njavali@marvell.com>
15606 M:      Manish Rangankar <mrangankar@marvell.com>
15607 M:      GR-QLogic-Storage-Upstream@marvell.com
15608 L:      linux-scsi@vger.kernel.org
15609 S:      Supported
15610 F:      drivers/scsi/qla4xxx/
15611
15612 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15613 M:      Shahed Shaikh <shshaikh@marvell.com>
15614 M:      Manish Chopra <manishc@marvell.com>
15615 M:      GR-Linux-NIC-Dev@marvell.com
15616 L:      netdev@vger.kernel.org
15617 S:      Supported
15618 F:      drivers/net/ethernet/qlogic/qlcnic/
15619
15620 QLOGIC QLGE 10Gb ETHERNET DRIVER
15621 M:      Manish Chopra <manishc@marvell.com>
15622 M:      GR-Linux-NIC-Dev@marvell.com
15623 M:      Coiby Xu <coiby.xu@gmail.com>
15624 L:      netdev@vger.kernel.org
15625 S:      Supported
15626 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
15627 F:      drivers/staging/qlge/
15628
15629 QM1D1B0004 MEDIA DRIVER
15630 M:      Akihiro Tsukada <tskd08@gmail.com>
15631 L:      linux-media@vger.kernel.org
15632 S:      Odd Fixes
15633 F:      drivers/media/tuners/qm1d1b0004*
15634
15635 QM1D1C0042 MEDIA DRIVER
15636 M:      Akihiro Tsukada <tskd08@gmail.com>
15637 L:      linux-media@vger.kernel.org
15638 S:      Odd Fixes
15639 F:      drivers/media/tuners/qm1d1c0042*
15640
15641 QNX4 FILESYSTEM
15642 M:      Anders Larsen <al@alarsen.net>
15643 S:      Maintained
15644 W:      http://www.alarsen.net/linux/qnx4fs/
15645 F:      fs/qnx4/
15646 F:      include/uapi/linux/qnx4_fs.h
15647 F:      include/uapi/linux/qnxtypes.h
15648
15649 QORIQ DPAA2 FSL-MC BUS DRIVER
15650 M:      Stuart Yoder <stuyoder@gmail.com>
15651 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
15652 L:      linux-kernel@vger.kernel.org
15653 S:      Maintained
15654 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
15655 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15656 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15657 F:      drivers/bus/fsl-mc/
15658 F:      include/uapi/linux/fsl_mc.h
15659
15660 QT1010 MEDIA DRIVER
15661 M:      Antti Palosaari <crope@iki.fi>
15662 L:      linux-media@vger.kernel.org
15663 S:      Maintained
15664 W:      https://linuxtv.org
15665 W:      http://palosaari.fi/linux/
15666 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15667 T:      git git://linuxtv.org/anttip/media_tree.git
15668 F:      drivers/media/tuners/qt1010*
15669
15670 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15671 M:      Kalle Valo <kvalo@codeaurora.org>
15672 L:      ath10k@lists.infradead.org
15673 S:      Supported
15674 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15676 F:      drivers/net/wireless/ath/ath10k/
15677
15678 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15679 M:      Kalle Valo <kvalo@codeaurora.org>
15680 L:      ath11k@lists.infradead.org
15681 S:      Supported
15682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15683 F:      drivers/net/wireless/ath/ath11k/
15684
15685 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15686 M:      ath9k-devel@qca.qualcomm.com
15687 L:      linux-wireless@vger.kernel.org
15688 S:      Supported
15689 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15690 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
15691 F:      drivers/net/wireless/ath/ath9k/
15692
15693 QUALCOMM CAMERA SUBSYSTEM DRIVER
15694 M:      Robert Foss <robert.foss@linaro.org>
15695 M:      Todor Tomov <todor.too@gmail.com>
15696 L:      linux-media@vger.kernel.org
15697 S:      Maintained
15698 F:      Documentation/admin-guide/media/qcom_camss.rst
15699 F:      Documentation/devicetree/bindings/media/*camss*
15700 F:      drivers/media/platform/qcom/camss/
15701
15702 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15703 M:      Niklas Cassel <nks@flawful.org>
15704 L:      linux-pm@vger.kernel.org
15705 L:      linux-arm-msm@vger.kernel.org
15706 S:      Maintained
15707 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15708 F:      drivers/soc/qcom/cpr.c
15709
15710 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15711 M:      Ilia Lin <ilia.lin@kernel.org>
15712 L:      linux-pm@vger.kernel.org
15713 S:      Maintained
15714 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15715 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
15716
15717 QUALCOMM CRYPTO DRIVERS
15718 M:      Thara Gopinath <thara.gopinath@linaro.org>
15719 L:      linux-crypto@vger.kernel.org
15720 L:      linux-arm-msm@vger.kernel.org
15721 S:      Maintained
15722 F:      drivers/crypto/qce/
15723
15724 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15725 M:      Timur Tabi <timur@kernel.org>
15726 L:      netdev@vger.kernel.org
15727 S:      Maintained
15728 F:      drivers/net/ethernet/qualcomm/emac/
15729
15730 QUALCOMM ETHQOS ETHERNET DRIVER
15731 M:      Vinod Koul <vkoul@kernel.org>
15732 L:      netdev@vger.kernel.org
15733 S:      Maintained
15734 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
15735 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15736
15737 QUALCOMM GENERIC INTERFACE I2C DRIVER
15738 M:      Akash Asthana <akashast@codeaurora.org>
15739 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
15740 L:      linux-i2c@vger.kernel.org
15741 L:      linux-arm-msm@vger.kernel.org
15742 S:      Supported
15743 F:      drivers/i2c/busses/i2c-qcom-geni.c
15744
15745 QUALCOMM HEXAGON ARCHITECTURE
15746 M:      Brian Cain <bcain@codeaurora.org>
15747 L:      linux-hexagon@vger.kernel.org
15748 S:      Supported
15749 F:      arch/hexagon/
15750
15751 QUALCOMM HIDMA DRIVER
15752 M:      Sinan Kaya <okaya@kernel.org>
15753 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15754 L:      linux-arm-msm@vger.kernel.org
15755 L:      dmaengine@vger.kernel.org
15756 S:      Supported
15757 F:      drivers/dma/qcom/hidma*
15758
15759 QUALCOMM I2C CCI DRIVER
15760 M:      Loic Poulain <loic.poulain@linaro.org>
15761 M:      Robert Foss <robert.foss@linaro.org>
15762 L:      linux-i2c@vger.kernel.org
15763 L:      linux-arm-msm@vger.kernel.org
15764 S:      Maintained
15765 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15766 F:      drivers/i2c/busses/i2c-qcom-cci.c
15767
15768 QUALCOMM IOMMU
15769 M:      Rob Clark <robdclark@gmail.com>
15770 L:      iommu@lists.linux-foundation.org
15771 L:      linux-arm-msm@vger.kernel.org
15772 S:      Maintained
15773 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
15774
15775 QUALCOMM IPC ROUTER (QRTR) DRIVER
15776 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15777 L:      linux-arm-msm@vger.kernel.org
15778 S:      Maintained
15779 F:      include/trace/events/qrtr.h
15780 F:      include/uapi/linux/qrtr.h
15781 F:      net/qrtr/
15782
15783 QUALCOMM IPCC MAILBOX DRIVER
15784 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15785 L:      linux-arm-msm@vger.kernel.org
15786 S:      Supported
15787 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15788 F:      drivers/mailbox/qcom-ipcc.c
15789 F:      include/dt-bindings/mailbox/qcom-ipcc.h
15790
15791 QUALCOMM IPQ4019 USB PHY DRIVER
15792 M:      Robert Marko <robert.marko@sartura.hr>
15793 M:      Luka Perkov <luka.perkov@sartura.hr>
15794 L:      linux-arm-msm@vger.kernel.org
15795 S:      Maintained
15796 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15797 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15798
15799 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15800 M:      Robert Marko <robert.marko@sartura.hr>
15801 M:      Luka Perkov <luka.perkov@sartura.hr>
15802 L:      linux-arm-msm@vger.kernel.org
15803 S:      Maintained
15804 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15805 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
15806
15807 QUALCOMM RMNET DRIVER
15808 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15809 M:      Sean Tranchetti <stranche@codeaurora.org>
15810 L:      netdev@vger.kernel.org
15811 S:      Maintained
15812 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15813 F:      drivers/net/ethernet/qualcomm/rmnet/
15814 F:      include/linux/if_rmnet.h
15815
15816 QUALCOMM TSENS THERMAL DRIVER
15817 M:      Amit Kucheria <amitk@kernel.org>
15818 M:      Thara Gopinath <thara.gopinath@linaro.org>
15819 L:      linux-pm@vger.kernel.org
15820 L:      linux-arm-msm@vger.kernel.org
15821 S:      Maintained
15822 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15823 F:      drivers/thermal/qcom/
15824
15825 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15826 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
15827 L:      linux-media@vger.kernel.org
15828 L:      linux-arm-msm@vger.kernel.org
15829 S:      Maintained
15830 T:      git git://linuxtv.org/media_tree.git
15831 F:      Documentation/devicetree/bindings/media/*venus*
15832 F:      drivers/media/platform/qcom/venus/
15833
15834 QUALCOMM WCN36XX WIRELESS DRIVER
15835 M:      Kalle Valo <kvalo@codeaurora.org>
15836 L:      wcn36xx@lists.infradead.org
15837 S:      Supported
15838 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15839 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
15840 F:      drivers/net/wireless/ath/wcn36xx/
15841
15842 QUANTENNA QTNFMAC WIRELESS DRIVER
15843 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
15844 R:      Sergey Matyukevich <geomatsi@gmail.com>
15845 L:      linux-wireless@vger.kernel.org
15846 S:      Maintained
15847 F:      drivers/net/wireless/quantenna
15848
15849 RADEON and AMDGPU DRM DRIVERS
15850 M:      Alex Deucher <alexander.deucher@amd.com>
15851 M:      Christian König <christian.koenig@amd.com>
15852 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
15853 L:      amd-gfx@lists.freedesktop.org
15854 S:      Supported
15855 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
15856 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
15857 C:      irc://irc.oftc.net/radeon
15858 F:      drivers/gpu/drm/amd/
15859 F:      drivers/gpu/drm/radeon/
15860 F:      include/uapi/drm/amdgpu_drm.h
15861 F:      include/uapi/drm/radeon_drm.h
15862
15863 RADEON FRAMEBUFFER DISPLAY DRIVER
15864 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
15865 L:      linux-fbdev@vger.kernel.org
15866 S:      Maintained
15867 F:      drivers/video/fbdev/aty/radeon*
15868 F:      include/uapi/linux/radeonfb.h
15869
15870 RADIOSHARK RADIO DRIVER
15871 M:      Hans Verkuil <hverkuil@xs4all.nl>
15872 L:      linux-media@vger.kernel.org
15873 S:      Maintained
15874 T:      git git://linuxtv.org/media_tree.git
15875 F:      drivers/media/radio/radio-shark.c
15876
15877 RADIOSHARK2 RADIO DRIVER
15878 M:      Hans Verkuil <hverkuil@xs4all.nl>
15879 L:      linux-media@vger.kernel.org
15880 S:      Maintained
15881 T:      git git://linuxtv.org/media_tree.git
15882 F:      drivers/media/radio/radio-shark2.c
15883 F:      drivers/media/radio/radio-tea5777.c
15884
15885 RADOS BLOCK DEVICE (RBD)
15886 M:      Ilya Dryomov <idryomov@gmail.com>
15887 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
15888 L:      ceph-devel@vger.kernel.org
15889 S:      Supported
15890 W:      http://ceph.com/
15891 T:      git git://github.com/ceph/ceph-client.git
15892 F:      Documentation/ABI/testing/sysfs-bus-rbd
15893 F:      drivers/block/rbd.c
15894 F:      drivers/block/rbd_types.h
15895
15896 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15897 M:      Paul Mackerras <paulus@samba.org>
15898 L:      linux-fbdev@vger.kernel.org
15899 S:      Maintained
15900 F:      drivers/video/fbdev/aty/aty128fb.c
15901
15902 RAINSHADOW-CEC DRIVER
15903 M:      Hans Verkuil <hverkuil@xs4all.nl>
15904 L:      linux-media@vger.kernel.org
15905 S:      Maintained
15906 T:      git git://linuxtv.org/media_tree.git
15907 F:      drivers/media/cec/usb/rainshadow/
15908
15909 RALINK MIPS ARCHITECTURE
15910 M:      John Crispin <john@phrozen.org>
15911 L:      linux-mips@vger.kernel.org
15912 S:      Maintained
15913 F:      arch/mips/ralink
15914
15915 RALINK RT2X00 WIRELESS LAN DRIVER
15916 M:      Stanislaw Gruszka <stf_xl@wp.pl>
15917 M:      Helmut Schaa <helmut.schaa@googlemail.com>
15918 L:      linux-wireless@vger.kernel.org
15919 S:      Maintained
15920 F:      drivers/net/wireless/ralink/rt2x00/
15921
15922 RAMDISK RAM BLOCK DEVICE DRIVER
15923 M:      Jens Axboe <axboe@kernel.dk>
15924 S:      Maintained
15925 F:      Documentation/admin-guide/blockdev/ramdisk.rst
15926 F:      drivers/block/brd.c
15927
15928 RANCHU VIRTUAL BOARD FOR MIPS
15929 M:      Miodrag Dinic <miodrag.dinic@mips.com>
15930 L:      linux-mips@vger.kernel.org
15931 S:      Supported
15932 F:      arch/mips/configs/generic/board-ranchu.config
15933 F:      arch/mips/generic/board-ranchu.c
15934
15935 RANDOM NUMBER DRIVER
15936 M:      "Theodore Ts'o" <tytso@mit.edu>
15937 S:      Maintained
15938 F:      drivers/char/random.c
15939
15940 RAPIDIO SUBSYSTEM
15941 M:      Matt Porter <mporter@kernel.crashing.org>
15942 M:      Alexandre Bounine <alex.bou9@gmail.com>
15943 S:      Maintained
15944 F:      drivers/rapidio/
15945
15946 RAS INFRASTRUCTURE
15947 M:      Tony Luck <tony.luck@intel.com>
15948 M:      Borislav Petkov <bp@alien8.de>
15949 L:      linux-edac@vger.kernel.org
15950 S:      Maintained
15951 F:      Documentation/admin-guide/ras.rst
15952 F:      drivers/ras/
15953 F:      include/linux/ras.h
15954 F:      include/ras/ras_event.h
15955
15956 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15957 L:      linux-wireless@vger.kernel.org
15958 S:      Orphan
15959 F:      drivers/net/wireless/ray*
15960
15961 RC-CORE / LIRC FRAMEWORK
15962 M:      Sean Young <sean@mess.org>
15963 L:      linux-media@vger.kernel.org
15964 S:      Maintained
15965 W:      http://linuxtv.org
15966 T:      git git://linuxtv.org/media_tree.git
15967 F:      Documentation/driver-api/media/rc-core.rst
15968 F:      Documentation/userspace-api/media/rc/
15969 F:      drivers/media/rc/
15970 F:      include/media/rc-map.h
15971 F:      include/media/rc-core.h
15972 F:      include/uapi/linux/lirc.h
15973
15974 RCMM REMOTE CONTROLS DECODER
15975 M:      Patrick Lerda <patrick9876@free.fr>
15976 S:      Maintained
15977 F:      drivers/media/rc/ir-rcmm-decoder.c
15978
15979 RCUTORTURE TEST FRAMEWORK
15980 M:      "Paul E. McKenney" <paulmck@kernel.org>
15981 M:      Josh Triplett <josh@joshtriplett.org>
15982 R:      Steven Rostedt <rostedt@goodmis.org>
15983 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15984 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15985 L:      rcu@vger.kernel.org
15986 S:      Supported
15987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15988 F:      tools/testing/selftests/rcutorture
15989
15990 RDACM20 Camera Sensor
15991 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15992 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15993 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15994 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15995 L:      linux-media@vger.kernel.org
15996 S:      Maintained
15997 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15998 F:      drivers/media/i2c/max9271.c
15999 F:      drivers/media/i2c/max9271.h
16000 F:      drivers/media/i2c/rdacm20.c
16001
16002 RDACM21 Camera Sensor
16003 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16004 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16005 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16006 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16007 L:      linux-media@vger.kernel.org
16008 S:      Maintained
16009 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16010 F:      drivers/media/i2c/max9271.c
16011 F:      drivers/media/i2c/max9271.h
16012 F:      drivers/media/i2c/rdacm21.c
16013
16014 RDC R-321X SoC
16015 M:      Florian Fainelli <florian@openwrt.org>
16016 S:      Maintained
16017
16018 RDC R6040 FAST ETHERNET DRIVER
16019 M:      Florian Fainelli <f.fainelli@gmail.com>
16020 L:      netdev@vger.kernel.org
16021 S:      Maintained
16022 F:      drivers/net/ethernet/rdc/r6040.c
16023
16024 RDMAVT - RDMA verbs software
16025 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16026 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
16027 L:      linux-rdma@vger.kernel.org
16028 S:      Supported
16029 F:      drivers/infiniband/sw/rdmavt
16030
16031 RDS - RELIABLE DATAGRAM SOCKETS
16032 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
16033 L:      netdev@vger.kernel.org
16034 L:      linux-rdma@vger.kernel.org
16035 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
16036 S:      Supported
16037 W:      https://oss.oracle.com/projects/rds/
16038 F:      Documentation/networking/rds.rst
16039 F:      net/rds/
16040
16041 RDT - RESOURCE ALLOCATION
16042 M:      Fenghua Yu <fenghua.yu@intel.com>
16043 M:      Reinette Chatre <reinette.chatre@intel.com>
16044 L:      linux-kernel@vger.kernel.org
16045 S:      Supported
16046 F:      Documentation/x86/resctrl*
16047 F:      arch/x86/include/asm/resctrl.h
16048 F:      arch/x86/kernel/cpu/resctrl/
16049 F:      tools/testing/selftests/resctrl/
16050
16051 READ-COPY UPDATE (RCU)
16052 M:      "Paul E. McKenney" <paulmck@kernel.org>
16053 M:      Josh Triplett <josh@joshtriplett.org>
16054 R:      Steven Rostedt <rostedt@goodmis.org>
16055 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16056 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16057 R:      Joel Fernandes <joel@joelfernandes.org>
16058 L:      rcu@vger.kernel.org
16059 S:      Supported
16060 W:      http://www.rdrop.com/users/paulmck/RCU/
16061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16062 F:      Documentation/RCU/
16063 F:      include/linux/rcu*
16064 F:      kernel/rcu/
16065 X:      Documentation/RCU/torture.rst
16066 X:      include/linux/srcu*.h
16067 X:      kernel/rcu/srcu*.c
16068
16069 REAL TIME CLOCK (RTC) SUBSYSTEM
16070 M:      Alessandro Zummo <a.zummo@towertech.it>
16071 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
16072 L:      linux-rtc@vger.kernel.org
16073 S:      Maintained
16074 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
16075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
16076 F:      Documentation/admin-guide/rtc.rst
16077 F:      Documentation/devicetree/bindings/rtc/
16078 F:      drivers/rtc/
16079 F:      include/linux/platform_data/rtc-*
16080 F:      include/linux/rtc.h
16081 F:      include/linux/rtc/
16082 F:      include/uapi/linux/rtc.h
16083 F:      tools/testing/selftests/rtc/
16084
16085 REALTEK AUDIO CODECS
16086 M:      Oder Chiou <oder_chiou@realtek.com>
16087 S:      Maintained
16088 F:      include/sound/rt*.h
16089 F:      sound/soc/codecs/rt*
16090
16091 REALTEK RTL83xx SMI DSA ROUTER CHIPS
16092 M:      Linus Walleij <linus.walleij@linaro.org>
16093 S:      Maintained
16094 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
16095 F:      drivers/net/dsa/realtek-smi*
16096 F:      drivers/net/dsa/rtl83*
16097
16098 REALTEK WIRELESS DRIVER (rtlwifi family)
16099 M:      Ping-Ke Shih <pkshih@realtek.com>
16100 L:      linux-wireless@vger.kernel.org
16101 S:      Maintained
16102 W:      https://wireless.wiki.kernel.org/
16103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16104 F:      drivers/net/wireless/realtek/rtlwifi/
16105
16106 REALTEK WIRELESS DRIVER (rtw88)
16107 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
16108 L:      linux-wireless@vger.kernel.org
16109 S:      Maintained
16110 F:      drivers/net/wireless/realtek/rtw88/
16111
16112 REALTEK WIRELESS DRIVER (rtw89)
16113 M:      Ping-Ke Shih <pkshih@realtek.com>
16114 L:      linux-wireless@vger.kernel.org
16115 S:      Maintained
16116 F:      drivers/net/wireless/realtek/rtw89/
16117
16118 REDPINE WIRELESS DRIVER
16119 M:      Amitkumar Karwar <amitkarwar@gmail.com>
16120 M:      Siva Rebbagondla <siva8118@gmail.com>
16121 L:      linux-wireless@vger.kernel.org
16122 S:      Maintained
16123 F:      drivers/net/wireless/rsi/
16124
16125 REGISTER MAP ABSTRACTION
16126 M:      Mark Brown <broonie@kernel.org>
16127 L:      linux-kernel@vger.kernel.org
16128 S:      Supported
16129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
16130 F:      Documentation/devicetree/bindings/regmap/
16131 F:      drivers/base/regmap/
16132 F:      include/linux/regmap.h
16133
16134 REISERFS FILE SYSTEM
16135 L:      reiserfs-devel@vger.kernel.org
16136 S:      Supported
16137 F:      fs/reiserfs/
16138
16139 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
16140 M:      Ohad Ben-Cohen <ohad@wizery.com>
16141 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16142 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16143 L:      linux-remoteproc@vger.kernel.org
16144 S:      Maintained
16145 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
16146 F:      Documentation/ABI/testing/sysfs-class-remoteproc
16147 F:      Documentation/devicetree/bindings/remoteproc/
16148 F:      Documentation/staging/remoteproc.rst
16149 F:      drivers/remoteproc/
16150 F:      include/linux/remoteproc.h
16151 F:      include/linux/remoteproc/
16152
16153 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
16154 M:      Ohad Ben-Cohen <ohad@wizery.com>
16155 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16156 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16157 L:      linux-remoteproc@vger.kernel.org
16158 S:      Maintained
16159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
16160 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
16161 F:      Documentation/staging/rpmsg.rst
16162 F:      drivers/rpmsg/
16163 F:      include/linux/rpmsg.h
16164 F:      include/linux/rpmsg/
16165 F:      include/uapi/linux/rpmsg.h
16166 F:      samples/rpmsg/
16167
16168 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
16169 M:      Stephan Gerhold <stephan@gerhold.net>
16170 L:      netdev@vger.kernel.org
16171 L:      linux-remoteproc@vger.kernel.org
16172 S:      Maintained
16173 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
16174
16175 RENESAS CLOCK DRIVERS
16176 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16177 L:      linux-renesas-soc@vger.kernel.org
16178 S:      Supported
16179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16180 F:      Documentation/devicetree/bindings/clock/renesas,*
16181 F:      drivers/clk/renesas/
16182
16183 RENESAS EMEV2 I2C DRIVER
16184 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16185 L:      linux-renesas-soc@vger.kernel.org
16186 S:      Supported
16187 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16188 F:      drivers/i2c/busses/i2c-emev2.c
16189
16190 RENESAS ETHERNET DRIVERS
16191 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16192 L:      netdev@vger.kernel.org
16193 L:      linux-renesas-soc@vger.kernel.org
16194 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
16195 F:      drivers/net/ethernet/renesas/
16196 F:      include/linux/sh_eth.h
16197
16198 RENESAS R-CAR GYROADC DRIVER
16199 M:      Marek Vasut <marek.vasut@gmail.com>
16200 L:      linux-iio@vger.kernel.org
16201 S:      Supported
16202 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16203 F:      drivers/iio/adc/rcar-gyroadc.c
16204
16205 RENESAS R-CAR I2C DRIVERS
16206 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16207 L:      linux-renesas-soc@vger.kernel.org
16208 S:      Supported
16209 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16210 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16211 F:      drivers/i2c/busses/i2c-rcar.c
16212 F:      drivers/i2c/busses/i2c-sh_mobile.c
16213
16214 RENESAS R-CAR THERMAL DRIVERS
16215 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
16216 L:      linux-renesas-soc@vger.kernel.org
16217 S:      Supported
16218 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16219 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16220 F:      drivers/thermal/rcar_gen3_thermal.c
16221 F:      drivers/thermal/rcar_thermal.c
16222
16223 RENESAS RIIC DRIVER
16224 M:      Chris Brandt <chris.brandt@renesas.com>
16225 L:      linux-renesas-soc@vger.kernel.org
16226 S:      Supported
16227 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16228 F:      drivers/i2c/busses/i2c-riic.c
16229
16230 RENESAS USB PHY DRIVER
16231 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16232 L:      linux-renesas-soc@vger.kernel.org
16233 S:      Maintained
16234 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
16235
16236 RENESAS RZ/G2L A/D DRIVER
16237 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16238 L:      linux-iio@vger.kernel.org
16239 L:      linux-renesas-soc@vger.kernel.org
16240 S:      Supported
16241 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16242 F:      drivers/iio/adc/rzg2l_adc.c
16243
16244 RESET CONTROLLER FRAMEWORK
16245 M:      Philipp Zabel <p.zabel@pengutronix.de>
16246 S:      Maintained
16247 T:      git git://git.pengutronix.de/git/pza/linux
16248 F:      Documentation/devicetree/bindings/reset/
16249 F:      Documentation/driver-api/reset.rst
16250 F:      drivers/reset/
16251 F:      include/dt-bindings/reset/
16252 F:      include/linux/reset-controller.h
16253 F:      include/linux/reset.h
16254 F:      include/linux/reset/
16255 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16256
16257 RESTARTABLE SEQUENCES SUPPORT
16258 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16259 M:      Peter Zijlstra <peterz@infradead.org>
16260 M:      "Paul E. McKenney" <paulmck@kernel.org>
16261 M:      Boqun Feng <boqun.feng@gmail.com>
16262 L:      linux-kernel@vger.kernel.org
16263 S:      Supported
16264 F:      include/trace/events/rseq.h
16265 F:      include/uapi/linux/rseq.h
16266 F:      kernel/rseq.c
16267 F:      tools/testing/selftests/rseq/
16268
16269 RFKILL
16270 M:      Johannes Berg <johannes@sipsolutions.net>
16271 L:      linux-wireless@vger.kernel.org
16272 S:      Maintained
16273 W:      https://wireless.wiki.kernel.org/
16274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
16275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
16276 F:      Documentation/ABI/stable/sysfs-class-rfkill
16277 F:      Documentation/driver-api/rfkill.rst
16278 F:      include/linux/rfkill.h
16279 F:      include/uapi/linux/rfkill.h
16280 F:      net/rfkill/
16281
16282 RHASHTABLE
16283 M:      Thomas Graf <tgraf@suug.ch>
16284 M:      Herbert Xu <herbert@gondor.apana.org.au>
16285 L:      netdev@vger.kernel.org
16286 S:      Maintained
16287 F:      include/linux/rhashtable-types.h
16288 F:      include/linux/rhashtable.h
16289 F:      lib/rhashtable.c
16290 F:      lib/test_rhashtable.c
16291
16292 RICOH R5C592 MEMORYSTICK DRIVER
16293 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16294 S:      Maintained
16295 F:      drivers/memstick/host/r592.*
16296
16297 RICOH SMARTMEDIA/XD DRIVER
16298 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16299 S:      Maintained
16300 F:      drivers/mtd/nand/raw/r852.c
16301 F:      drivers/mtd/nand/raw/r852.h
16302
16303 RISC-V ARCHITECTURE
16304 M:      Paul Walmsley <paul.walmsley@sifive.com>
16305 M:      Palmer Dabbelt <palmer@dabbelt.com>
16306 M:      Albert Ou <aou@eecs.berkeley.edu>
16307 L:      linux-riscv@lists.infradead.org
16308 S:      Supported
16309 P:      Documentation/riscv/patch-acceptance.rst
16310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16311 F:      arch/riscv/
16312 N:      riscv
16313 K:      riscv
16314
16315 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16316 M:      Lewis Hanly <lewis.hanly@microchip.com>
16317 L:      linux-riscv@lists.infradead.org
16318 S:      Supported
16319 F:      drivers/mailbox/mailbox-mpfs.c
16320 F:      drivers/soc/microchip/
16321 F:      include/soc/microchip/mpfs.h
16322
16323 RNBD BLOCK DRIVERS
16324 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16325 M:      Jack Wang <jinpu.wang@ionos.com>
16326 L:      linux-block@vger.kernel.org
16327 S:      Maintained
16328 F:      drivers/block/rnbd/
16329
16330 ROCCAT DRIVERS
16331 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
16332 S:      Maintained
16333 W:      http://sourceforge.net/projects/roccat/
16334 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
16335 F:      drivers/hid/hid-roccat*
16336 F:      include/linux/hid-roccat*
16337
16338 ROCKCHIP I2S TDM DRIVER
16339 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
16340 L:      linux-rockchip@lists.infradead.org
16341 S:      Maintained
16342 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
16343 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
16344
16345 ROCKCHIP ISP V1 DRIVER
16346 M:      Helen Koike <helen.koike@collabora.com>
16347 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
16348 L:      linux-media@vger.kernel.org
16349 L:      linux-rockchip@lists.infradead.org
16350 S:      Maintained
16351 F:      Documentation/admin-guide/media/rkisp1.rst
16352 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16353 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16354 F:      drivers/media/platform/rockchip/rkisp1
16355 F:      include/uapi/linux/rkisp1-config.h
16356
16357 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16358 M:      Jacob Chen <jacob-chen@iotwrt.com>
16359 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16360 L:      linux-media@vger.kernel.org
16361 L:      linux-rockchip@lists.infradead.org
16362 S:      Maintained
16363 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
16364 F:      drivers/media/platform/rockchip/rga/
16365
16366 ROCKCHIP VIDEO DECODER DRIVER
16367 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16368 L:      linux-media@vger.kernel.org
16369 L:      linux-rockchip@lists.infradead.org
16370 S:      Maintained
16371 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
16372 F:      drivers/staging/media/rkvdec/
16373
16374 ROCKER DRIVER
16375 M:      Jiri Pirko <jiri@resnulli.us>
16376 L:      netdev@vger.kernel.org
16377 S:      Supported
16378 F:      drivers/net/ethernet/rocker/
16379
16380 ROCKETPORT EXPRESS/INFINITY DRIVER
16381 M:      Kevin Cernekee <cernekee@gmail.com>
16382 L:      linux-serial@vger.kernel.org
16383 S:      Odd Fixes
16384 F:      drivers/tty/serial/rp2.*
16385
16386 ROHM BD99954 CHARGER IC
16387 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16388 L:      linux-power@fi.rohmeurope.com
16389 S:      Supported
16390 F:      drivers/power/supply/bd99954-charger.c
16391 F:      drivers/power/supply/bd99954-charger.h
16392
16393 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16394 M:      Tomasz Duszynski <tduszyns@gmail.com>
16395 S:      Maintained
16396 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
16397 F:      drivers/iio/light/bh1750.c
16398
16399 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16400 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
16401 L:      linux-kernel@vger.kernel.org
16402 L:      linux-renesas-soc@vger.kernel.org
16403 S:      Supported
16404 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
16405 F:      drivers/gpio/gpio-bd9571mwv.c
16406 F:      drivers/mfd/bd9571mwv.c
16407 F:      drivers/regulator/bd9571mwv-regulator.c
16408 F:      include/linux/mfd/bd9571mwv.h
16409
16410 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16411 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16412 L:      linux-power@fi.rohmeurope.com
16413 S:      Supported
16414 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
16415 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
16416 F:      drivers/clk/clk-bd718x7.c
16417 F:      drivers/gpio/gpio-bd70528.c
16418 F:      drivers/gpio/gpio-bd71815.c
16419 F:      drivers/gpio/gpio-bd71828.c
16420 F:      drivers/mfd/rohm-bd70528.c
16421 F:      drivers/mfd/rohm-bd71828.c
16422 F:      drivers/mfd/rohm-bd718x7.c
16423 F:      drivers/mfd/rohm-bd9576.c
16424 F:      drivers/power/supply/bd70528-charger.c
16425 F:      drivers/regulator/bd70528-regulator.c
16426 F:      drivers/regulator/bd71815-regulator.c
16427 F:      drivers/regulator/bd71828-regulator.c
16428 F:      drivers/regulator/bd718x7-regulator.c
16429 F:      drivers/regulator/bd9576-regulator.c
16430 F:      drivers/regulator/rohm-regulator.c
16431 F:      drivers/rtc/rtc-bd70528.c
16432 F:      drivers/watchdog/bd70528_wdt.c
16433 F:      drivers/watchdog/bd9576_wdt.c
16434 F:      include/linux/mfd/rohm-bd70528.h
16435 F:      include/linux/mfd/rohm-bd71815.h
16436 F:      include/linux/mfd/rohm-bd71828.h
16437 F:      include/linux/mfd/rohm-bd718x7.h
16438 F:      include/linux/mfd/rohm-bd957x.h
16439 F:      include/linux/mfd/rohm-generic.h
16440 F:      include/linux/mfd/rohm-shared.h
16441
16442 ROSE NETWORK LAYER
16443 M:      Ralf Baechle <ralf@linux-mips.org>
16444 L:      linux-hams@vger.kernel.org
16445 S:      Maintained
16446 W:      http://www.linux-ax25.org/
16447 F:      include/net/rose.h
16448 F:      include/uapi/linux/rose.h
16449 F:      net/rose/
16450
16451 ROTATION DRIVER FOR ALLWINNER A83T
16452 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
16453 L:      linux-media@vger.kernel.org
16454 S:      Maintained
16455 T:      git git://linuxtv.org/media_tree.git
16456 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16457 F:      drivers/media/platform/sunxi/sun8i-rotate/
16458
16459 RTL2830 MEDIA DRIVER
16460 M:      Antti Palosaari <crope@iki.fi>
16461 L:      linux-media@vger.kernel.org
16462 S:      Maintained
16463 W:      https://linuxtv.org
16464 W:      http://palosaari.fi/linux/
16465 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16466 T:      git git://linuxtv.org/anttip/media_tree.git
16467 F:      drivers/media/dvb-frontends/rtl2830*
16468
16469 RTL2832 MEDIA DRIVER
16470 M:      Antti Palosaari <crope@iki.fi>
16471 L:      linux-media@vger.kernel.org
16472 S:      Maintained
16473 W:      https://linuxtv.org
16474 W:      http://palosaari.fi/linux/
16475 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16476 T:      git git://linuxtv.org/anttip/media_tree.git
16477 F:      drivers/media/dvb-frontends/rtl2832*
16478
16479 RTL2832_SDR MEDIA DRIVER
16480 M:      Antti Palosaari <crope@iki.fi>
16481 L:      linux-media@vger.kernel.org
16482 S:      Maintained
16483 W:      https://linuxtv.org
16484 W:      http://palosaari.fi/linux/
16485 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16486 T:      git git://linuxtv.org/anttip/media_tree.git
16487 F:      drivers/media/dvb-frontends/rtl2832_sdr*
16488
16489 RTL8180 WIRELESS DRIVER
16490 L:      linux-wireless@vger.kernel.org
16491 S:      Orphan
16492 W:      https://wireless.wiki.kernel.org/
16493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16494 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
16495
16496 RTL8187 WIRELESS DRIVER
16497 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16498 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
16499 M:      Larry Finger <Larry.Finger@lwfinger.net>
16500 L:      linux-wireless@vger.kernel.org
16501 S:      Maintained
16502 W:      https://wireless.wiki.kernel.org/
16503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16504 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
16505
16506 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16507 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
16508 L:      linux-wireless@vger.kernel.org
16509 S:      Maintained
16510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16511 F:      drivers/net/wireless/realtek/rtl8xxxu/
16512
16513 RTRS TRANSPORT DRIVERS
16514 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16515 M:      Jack Wang <jinpu.wang@ionos.com>
16516 L:      linux-rdma@vger.kernel.org
16517 S:      Maintained
16518 F:      drivers/infiniband/ulp/rtrs/
16519
16520 RXRPC SOCKETS (AF_RXRPC)
16521 M:      David Howells <dhowells@redhat.com>
16522 M:      Marc Dionne <marc.dionne@auristor.com>
16523 L:      linux-afs@lists.infradead.org
16524 S:      Supported
16525 W:      https://www.infradead.org/~dhowells/kafs/
16526 F:      Documentation/networking/rxrpc.rst
16527 F:      include/keys/rxrpc-type.h
16528 F:      include/net/af_rxrpc.h
16529 F:      include/trace/events/rxrpc.h
16530 F:      include/uapi/linux/rxrpc.h
16531 F:      net/rxrpc/
16532
16533 S3 SAVAGE FRAMEBUFFER DRIVER
16534 M:      Antonino Daplas <adaplas@gmail.com>
16535 L:      linux-fbdev@vger.kernel.org
16536 S:      Maintained
16537 F:      drivers/video/fbdev/savage/
16538
16539 S390
16540 M:      Heiko Carstens <hca@linux.ibm.com>
16541 M:      Vasily Gorbik <gor@linux.ibm.com>
16542 M:      Christian Borntraeger <borntraeger@de.ibm.com>
16543 R:      Alexander Gordeev <agordeev@linux.ibm.com>
16544 L:      linux-s390@vger.kernel.org
16545 S:      Supported
16546 W:      http://www.ibm.com/developerworks/linux/linux390/
16547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16548 F:      Documentation/driver-api/s390-drivers.rst
16549 F:      Documentation/s390/
16550 F:      arch/s390/
16551 F:      drivers/s390/
16552
16553 S390 COMMON I/O LAYER
16554 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
16555 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
16556 L:      linux-s390@vger.kernel.org
16557 S:      Supported
16558 W:      http://www.ibm.com/developerworks/linux/linux390/
16559 F:      drivers/s390/cio/
16560
16561 S390 DASD DRIVER
16562 M:      Stefan Haberland <sth@linux.ibm.com>
16563 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
16564 L:      linux-s390@vger.kernel.org
16565 S:      Supported
16566 W:      http://www.ibm.com/developerworks/linux/linux390/
16567 F:      block/partitions/ibm.c
16568 F:      drivers/s390/block/dasd*
16569 F:      include/linux/dasd_mod.h
16570
16571 S390 IOMMU (PCI)
16572 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16573 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16574 L:      linux-s390@vger.kernel.org
16575 S:      Supported
16576 W:      http://www.ibm.com/developerworks/linux/linux390/
16577 F:      drivers/iommu/s390-iommu.c
16578
16579 S390 IUCV NETWORK LAYER
16580 M:      Julian Wiedmann <jwi@linux.ibm.com>
16581 M:      Karsten Graul <kgraul@linux.ibm.com>
16582 L:      linux-s390@vger.kernel.org
16583 L:      netdev@vger.kernel.org
16584 S:      Supported
16585 W:      http://www.ibm.com/developerworks/linux/linux390/
16586 F:      drivers/s390/net/*iucv*
16587 F:      include/net/iucv/
16588 F:      net/iucv/
16589
16590 S390 NETWORK DRIVERS
16591 M:      Julian Wiedmann <jwi@linux.ibm.com>
16592 M:      Karsten Graul <kgraul@linux.ibm.com>
16593 L:      linux-s390@vger.kernel.org
16594 L:      netdev@vger.kernel.org
16595 S:      Supported
16596 W:      http://www.ibm.com/developerworks/linux/linux390/
16597 F:      drivers/s390/net/
16598
16599 S390 PCI SUBSYSTEM
16600 M:      Niklas Schnelle <schnelle@linux.ibm.com>
16601 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16602 L:      linux-s390@vger.kernel.org
16603 S:      Supported
16604 W:      http://www.ibm.com/developerworks/linux/linux390/
16605 F:      arch/s390/pci/
16606 F:      drivers/pci/hotplug/s390_pci_hpc.c
16607 F:      Documentation/s390/pci.rst
16608
16609 S390 VFIO AP DRIVER
16610 M:      Tony Krowiak <akrowiak@linux.ibm.com>
16611 M:      Halil Pasic <pasic@linux.ibm.com>
16612 M:      Jason Herne <jjherne@linux.ibm.com>
16613 L:      linux-s390@vger.kernel.org
16614 S:      Supported
16615 W:      http://www.ibm.com/developerworks/linux/linux390/
16616 F:      Documentation/s390/vfio-ap.rst
16617 F:      drivers/s390/crypto/vfio_ap_drv.c
16618 F:      drivers/s390/crypto/vfio_ap_ops.c
16619 F:      drivers/s390/crypto/vfio_ap_private.h
16620
16621 S390 VFIO-CCW DRIVER
16622 M:      Eric Farman <farman@linux.ibm.com>
16623 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16624 R:      Halil Pasic <pasic@linux.ibm.com>
16625 L:      linux-s390@vger.kernel.org
16626 L:      kvm@vger.kernel.org
16627 S:      Supported
16628 F:      Documentation/s390/vfio-ccw.rst
16629 F:      drivers/s390/cio/vfio_ccw*
16630 F:      include/uapi/linux/vfio_ccw.h
16631
16632 S390 VFIO-PCI DRIVER
16633 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16634 M:      Eric Farman <farman@linux.ibm.com>
16635 L:      linux-s390@vger.kernel.org
16636 L:      kvm@vger.kernel.org
16637 S:      Supported
16638 F:      drivers/vfio/pci/vfio_pci_zdev.c
16639 F:      include/uapi/linux/vfio_zdev.h
16640
16641 S390 ZCRYPT DRIVER
16642 M:      Harald Freudenberger <freude@linux.ibm.com>
16643 L:      linux-s390@vger.kernel.org
16644 S:      Supported
16645 W:      http://www.ibm.com/developerworks/linux/linux390/
16646 F:      drivers/s390/crypto/
16647
16648 S390 ZFCP DRIVER
16649 M:      Steffen Maier <maier@linux.ibm.com>
16650 M:      Benjamin Block <bblock@linux.ibm.com>
16651 L:      linux-s390@vger.kernel.org
16652 S:      Supported
16653 W:      http://www.ibm.com/developerworks/linux/linux390/
16654 F:      drivers/s390/scsi/zfcp_*
16655
16656 S3C ADC BATTERY DRIVER
16657 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16658 L:      linux-samsung-soc@vger.kernel.org
16659 S:      Odd Fixes
16660 F:      drivers/power/supply/s3c_adc_battery.c
16661 F:      include/linux/s3c_adc_battery.h
16662
16663 S3C24XX SD/MMC Driver
16664 M:      Ben Dooks <ben-linux@fluff.org>
16665 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16666 S:      Supported
16667 F:      drivers/mmc/host/s3cmci.*
16668
16669 SAA6588 RDS RECEIVER DRIVER
16670 M:      Hans Verkuil <hverkuil@xs4all.nl>
16671 L:      linux-media@vger.kernel.org
16672 S:      Odd Fixes
16673 W:      https://linuxtv.org
16674 T:      git git://linuxtv.org/media_tree.git
16675 F:      drivers/media/i2c/saa6588*
16676
16677 SAA7134 VIDEO4LINUX DRIVER
16678 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16679 L:      linux-media@vger.kernel.org
16680 S:      Odd fixes
16681 W:      https://linuxtv.org
16682 T:      git git://linuxtv.org/media_tree.git
16683 F:      Documentation/driver-api/media/drivers/saa7134*
16684 F:      drivers/media/pci/saa7134/
16685
16686 SAA7146 VIDEO4LINUX-2 DRIVER
16687 M:      Hans Verkuil <hverkuil@xs4all.nl>
16688 L:      linux-media@vger.kernel.org
16689 S:      Maintained
16690 T:      git git://linuxtv.org/media_tree.git
16691 F:      drivers/media/common/saa7146/
16692 F:      drivers/media/pci/saa7146/
16693 F:      include/media/drv-intf/saa7146*
16694
16695 SAFESETID SECURITY MODULE
16696 M:      Micah Morton <mortonm@chromium.org>
16697 S:      Supported
16698 F:      Documentation/admin-guide/LSM/SafeSetID.rst
16699 F:      security/safesetid/
16700
16701 SAMSUNG AUDIO (ASoC) DRIVERS
16702 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16703 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16704 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16705 S:      Supported
16706 F:      Documentation/devicetree/bindings/sound/samsung*
16707 F:      sound/soc/samsung/
16708
16709 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16710 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16711 L:      linux-crypto@vger.kernel.org
16712 L:      linux-samsung-soc@vger.kernel.org
16713 S:      Maintained
16714 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16715 F:      drivers/crypto/exynos-rng.c
16716
16717 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16718 M:      Łukasz Stelmach <l.stelmach@samsung.com>
16719 L:      linux-samsung-soc@vger.kernel.org
16720 S:      Maintained
16721 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
16722 F:      drivers/char/hw_random/exynos-trng.c
16723
16724 SAMSUNG FRAMEBUFFER DRIVER
16725 M:      Jingoo Han <jingoohan1@gmail.com>
16726 L:      linux-fbdev@vger.kernel.org
16727 S:      Maintained
16728 F:      drivers/video/fbdev/s3c-fb.c
16729
16730 SAMSUNG INTERCONNECT DRIVERS
16731 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16732 M:      Artur Świgoń <a.swigon@samsung.com>
16733 L:      linux-pm@vger.kernel.org
16734 L:      linux-samsung-soc@vger.kernel.org
16735 S:      Supported
16736 F:      drivers/interconnect/samsung/
16737
16738 SAMSUNG LAPTOP DRIVER
16739 M:      Corentin Chary <corentin.chary@gmail.com>
16740 L:      platform-driver-x86@vger.kernel.org
16741 S:      Maintained
16742 F:      drivers/platform/x86/samsung-laptop.c
16743
16744 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16745 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16746 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16747 L:      linux-kernel@vger.kernel.org
16748 L:      linux-samsung-soc@vger.kernel.org
16749 S:      Supported
16750 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
16751 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16752 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
16753 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
16754 F:      drivers/clk/clk-s2mps11.c
16755 F:      drivers/mfd/sec*.c
16756 F:      drivers/regulator/s2m*.c
16757 F:      drivers/regulator/s5m*.c
16758 F:      drivers/rtc/rtc-s5m.c
16759 F:      include/linux/mfd/samsung/
16760
16761 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16762 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16763 L:      linux-media@vger.kernel.org
16764 L:      linux-samsung-soc@vger.kernel.org
16765 S:      Maintained
16766 F:      drivers/media/platform/s3c-camif/
16767 F:      include/media/drv-intf/s3c_camif.h
16768
16769 SAMSUNG S3FWRN5 NFC DRIVER
16770 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16771 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
16772 L:      linux-nfc@lists.01.org (subscribers-only)
16773 S:      Maintained
16774 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16775 F:      drivers/nfc/s3fwrn5
16776
16777 SAMSUNG S5C73M3 CAMERA DRIVER
16778 M:      Andrzej Hajda <a.hajda@samsung.com>
16779 L:      linux-media@vger.kernel.org
16780 S:      Supported
16781 F:      drivers/media/i2c/s5c73m3/*
16782
16783 SAMSUNG S5K5BAF CAMERA DRIVER
16784 M:      Andrzej Hajda <a.hajda@samsung.com>
16785 L:      linux-media@vger.kernel.org
16786 S:      Supported
16787 F:      drivers/media/i2c/s5k5baf.c
16788
16789 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16790 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16791 M:      Vladimir Zapolskiy <vz@mleia.com>
16792 L:      linux-crypto@vger.kernel.org
16793 L:      linux-samsung-soc@vger.kernel.org
16794 S:      Maintained
16795 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16796 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16797 F:      drivers/crypto/s5p-sss.c
16798
16799 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16800 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16801 L:      linux-media@vger.kernel.org
16802 S:      Supported
16803 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
16804 F:      drivers/media/platform/exynos4-is/
16805
16806 SAMSUNG SOC CLOCK DRIVERS
16807 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16808 M:      Tomasz Figa <tomasz.figa@gmail.com>
16809 M:      Chanwoo Choi <cw00.choi@samsung.com>
16810 L:      linux-samsung-soc@vger.kernel.org
16811 S:      Supported
16812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16813 F:      Documentation/devicetree/bindings/clock/exynos*.txt
16814 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
16815 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
16816 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
16817 F:      drivers/clk/samsung/
16818 F:      include/dt-bindings/clock/exynos*.h
16819 F:      include/dt-bindings/clock/s3c*.h
16820 F:      include/dt-bindings/clock/s5p*.h
16821 F:      include/dt-bindings/clock/samsung,*.h
16822 F:      include/linux/clk/samsung.h
16823 F:      include/linux/platform_data/clk-s3c2410.h
16824
16825 SAMSUNG SPI DRIVERS
16826 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16827 M:      Andi Shyti <andi@etezian.org>
16828 L:      linux-spi@vger.kernel.org
16829 L:      linux-samsung-soc@vger.kernel.org
16830 S:      Maintained
16831 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
16832 F:      drivers/spi/spi-s3c*
16833 F:      include/linux/platform_data/spi-s3c64xx.h
16834 F:      include/linux/spi/s3c24xx-fiq.h
16835
16836 SAMSUNG SXGBE DRIVERS
16837 M:      Byungho An <bh74.an@samsung.com>
16838 L:      netdev@vger.kernel.org
16839 S:      Supported
16840 F:      drivers/net/ethernet/samsung/sxgbe/
16841
16842 SAMSUNG THERMAL DRIVER
16843 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16844 L:      linux-pm@vger.kernel.org
16845 L:      linux-samsung-soc@vger.kernel.org
16846 S:      Supported
16847 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
16848 F:      drivers/thermal/samsung/
16849
16850 SAMSUNG USB2 PHY DRIVER
16851 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16852 L:      linux-kernel@vger.kernel.org
16853 S:      Supported
16854 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
16855 F:      Documentation/driver-api/phy/samsung-usb2.rst
16856 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
16857 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
16858 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
16859 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
16860 F:      drivers/phy/samsung/phy-samsung-usb2.c
16861 F:      drivers/phy/samsung/phy-samsung-usb2.h
16862
16863 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
16864 M:      Paul Barker <paul.barker@sancloud.com>
16865 R:      Marc Murphy <marc.murphy@sancloud.com>
16866 S:      Supported
16867 F:      arch/arm/boot/dts/am335x-sancloud*
16868
16869 SC1200 WDT DRIVER
16870 M:      Zwane Mwaikambo <zwanem@gmail.com>
16871 S:      Maintained
16872 F:      drivers/watchdog/sc1200wdt.c
16873
16874 SCHEDULER
16875 M:      Ingo Molnar <mingo@redhat.com>
16876 M:      Peter Zijlstra <peterz@infradead.org>
16877 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
16878 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
16879 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
16880 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
16881 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
16882 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
16883 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
16884 L:      linux-kernel@vger.kernel.org
16885 S:      Maintained
16886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16887 F:      include/linux/preempt.h
16888 F:      include/linux/sched.h
16889 F:      include/linux/wait.h
16890 F:      include/uapi/linux/sched.h
16891 F:      kernel/sched/
16892
16893 SCR24X CHIP CARD INTERFACE DRIVER
16894 M:      Lubomir Rintel <lkundrak@v3.sk>
16895 S:      Supported
16896 F:      drivers/char/pcmcia/scr24x_cs.c
16897
16898 SCSI RDMA PROTOCOL (SRP) INITIATOR
16899 M:      Bart Van Assche <bvanassche@acm.org>
16900 L:      linux-rdma@vger.kernel.org
16901 S:      Supported
16902 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16903 F:      drivers/infiniband/ulp/srp/
16904 F:      include/scsi/srp.h
16905
16906 SCSI RDMA PROTOCOL (SRP) TARGET
16907 M:      Bart Van Assche <bvanassche@acm.org>
16908 L:      linux-rdma@vger.kernel.org
16909 L:      target-devel@vger.kernel.org
16910 S:      Supported
16911 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16912 F:      drivers/infiniband/ulp/srpt/
16913
16914 SCSI SG DRIVER
16915 M:      Doug Gilbert <dgilbert@interlog.com>
16916 L:      linux-scsi@vger.kernel.org
16917 S:      Maintained
16918 W:      http://sg.danny.cz/sg
16919 F:      Documentation/scsi/scsi-generic.rst
16920 F:      drivers/scsi/sg.c
16921 F:      include/scsi/sg.h
16922
16923 SCSI SUBSYSTEM
16924 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
16925 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16926 L:      linux-scsi@vger.kernel.org
16927 S:      Maintained
16928 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
16929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16931 F:      Documentation/devicetree/bindings/scsi/
16932 F:      drivers/scsi/
16933 F:      include/scsi/
16934
16935 SCSI TAPE DRIVER
16936 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
16937 L:      linux-scsi@vger.kernel.org
16938 S:      Maintained
16939 F:      Documentation/scsi/st.rst
16940 F:      drivers/scsi/st.*
16941 F:      drivers/scsi/st_*.h
16942
16943 SCSI TARGET CORE USER DRIVER
16944 M:      Bodo Stroesser <bostroesser@gmail.com>
16945 L:      linux-scsi@vger.kernel.org
16946 L:      target-devel@vger.kernel.org
16947 S:      Supported
16948 F:      Documentation/target/tcmu-design.rst
16949 F:      drivers/target/target_core_user.c
16950 F:      include/uapi/linux/target_core_user.h
16951
16952 SCSI TARGET SUBSYSTEM
16953 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16954 L:      linux-scsi@vger.kernel.org
16955 L:      target-devel@vger.kernel.org
16956 S:      Supported
16957 W:      http://www.linux-iscsi.org
16958 Q:      https://patchwork.kernel.org/project/target-devel/list/
16959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16960 F:      Documentation/target/
16961 F:      drivers/target/
16962 F:      include/target/
16963
16964 SCTP PROTOCOL
16965 M:      Vlad Yasevich <vyasevich@gmail.com>
16966 M:      Neil Horman <nhorman@tuxdriver.com>
16967 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
16968 L:      linux-sctp@vger.kernel.org
16969 S:      Maintained
16970 W:      http://lksctp.sourceforge.net
16971 F:      Documentation/networking/sctp.rst
16972 F:      include/linux/sctp.h
16973 F:      include/net/sctp/
16974 F:      include/uapi/linux/sctp.h
16975 F:      net/sctp/
16976
16977 SCx200 CPU SUPPORT
16978 M:      Jim Cromie <jim.cromie@gmail.com>
16979 S:      Odd Fixes
16980 F:      Documentation/i2c/busses/scx200_acb.rst
16981 F:      arch/x86/platform/scx200/
16982 F:      drivers/i2c/busses/scx200*
16983 F:      drivers/mtd/maps/scx200_docflash.c
16984 F:      drivers/watchdog/scx200_wdt.c
16985 F:      include/linux/scx200.h
16986
16987 SCx200 GPIO DRIVER
16988 M:      Jim Cromie <jim.cromie@gmail.com>
16989 S:      Maintained
16990 F:      drivers/char/scx200_gpio.c
16991 F:      include/linux/scx200_gpio.h
16992
16993 SCx200 HRT CLOCKSOURCE DRIVER
16994 M:      Jim Cromie <jim.cromie@gmail.com>
16995 S:      Maintained
16996 F:      drivers/clocksource/scx200_hrt.c
16997
16998 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
16999 M:      Sascha Sommer <saschasommer@freenet.de>
17000 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
17001 S:      Maintained
17002 F:      drivers/mmc/host/sdricoh_cs.c
17003
17004 SECO BOARDS CEC DRIVER
17005 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
17006 S:      Maintained
17007 F:      drivers/media/cec/platform/seco/seco-cec.c
17008 F:      drivers/media/cec/platform/seco/seco-cec.h
17009
17010 SECURE COMPUTING
17011 M:      Kees Cook <keescook@chromium.org>
17012 R:      Andy Lutomirski <luto@amacapital.net>
17013 R:      Will Drewry <wad@chromium.org>
17014 S:      Supported
17015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
17016 F:      Documentation/userspace-api/seccomp_filter.rst
17017 F:      include/linux/seccomp.h
17018 F:      include/uapi/linux/seccomp.h
17019 F:      kernel/seccomp.c
17020 F:      tools/testing/selftests/kselftest_harness.h
17021 F:      tools/testing/selftests/seccomp/*
17022 K:      \bsecure_computing
17023 K:      \bTIF_SECCOMP\b
17024
17025 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
17026 M:      Al Cooper <alcooperx@gmail.com>
17027 L:      linux-mmc@vger.kernel.org
17028 L:      bcm-kernel-feedback-list@broadcom.com
17029 S:      Maintained
17030 F:      drivers/mmc/host/sdhci-brcmstb*
17031
17032 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
17033 M:      Adrian Hunter <adrian.hunter@intel.com>
17034 L:      linux-mmc@vger.kernel.org
17035 S:      Maintained
17036 F:      drivers/mmc/host/sdhci*
17037
17038 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
17039 M:      Eugen Hristev <eugen.hristev@microchip.com>
17040 L:      linux-mmc@vger.kernel.org
17041 S:      Supported
17042 F:      drivers/mmc/host/sdhci-of-at91.c
17043
17044 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
17045 M:      Ben Dooks <ben-linux@fluff.org>
17046 M:      Jaehoon Chung <jh80.chung@samsung.com>
17047 L:      linux-mmc@vger.kernel.org
17048 S:      Maintained
17049 F:      drivers/mmc/host/sdhci-s3c*
17050
17051 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
17052 M:      Viresh Kumar <vireshk@kernel.org>
17053 L:      linux-mmc@vger.kernel.org
17054 S:      Maintained
17055 F:      drivers/mmc/host/sdhci-spear.c
17056
17057 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
17058 M:      Kishon Vijay Abraham I <kishon@ti.com>
17059 L:      linux-mmc@vger.kernel.org
17060 S:      Maintained
17061 F:      drivers/mmc/host/sdhci-omap.c
17062
17063 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
17064 M:      Jonathan Derrick <jonathan.derrick@intel.com>
17065 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
17066 L:      linux-block@vger.kernel.org
17067 S:      Supported
17068 F:      block/opal_proto.h
17069 F:      block/sed*
17070 F:      include/linux/sed*
17071 F:      include/uapi/linux/sed*
17072
17073 SECURITY CONTACT
17074 M:      Security Officers <security@kernel.org>
17075 S:      Supported
17076 F:      Documentation/admin-guide/security-bugs.rst
17077
17078 SECURITY SUBSYSTEM
17079 M:      James Morris <jmorris@namei.org>
17080 M:      "Serge E. Hallyn" <serge@hallyn.com>
17081 L:      linux-security-module@vger.kernel.org (suggested Cc:)
17082 S:      Supported
17083 W:      http://kernsec.org/
17084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
17085 F:      security/
17086 X:      security/selinux/
17087
17088 SELINUX SECURITY MODULE
17089 M:      Paul Moore <paul@paul-moore.com>
17090 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
17091 M:      Eric Paris <eparis@parisplace.org>
17092 L:      selinux@vger.kernel.org
17093 S:      Supported
17094 W:      https://selinuxproject.org
17095 W:      https://github.com/SELinuxProject
17096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
17097 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
17098 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
17099 F:      Documentation/admin-guide/LSM/SELinux.rst
17100 F:      include/trace/events/avc.h
17101 F:      include/uapi/linux/selinux_netlink.h
17102 F:      scripts/selinux/
17103 F:      security/selinux/
17104
17105 SENSABLE PHANTOM
17106 M:      Jiri Slaby <jirislaby@kernel.org>
17107 S:      Maintained
17108 F:      drivers/misc/phantom.c
17109 F:      include/uapi/linux/phantom.h
17110
17111 SENSEAIR SUNRISE 006-0-0007
17112 M:      Jacopo Mondi <jacopo@jmondi.org>
17113 S:      Maintained
17114 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
17115 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
17116 F:      drivers/iio/chemical/sunrise_co2.c
17117
17118 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
17119 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
17120 S:      Maintained
17121 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
17122 F:      drivers/iio/chemical/scd30.h
17123 F:      drivers/iio/chemical/scd30_core.c
17124 F:      drivers/iio/chemical/scd30_i2c.c
17125 F:      drivers/iio/chemical/scd30_serial.c
17126
17127 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
17128 M:      Roan van Dijk <roan@protonic.nl>
17129 S:      Maintained
17130 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
17131 F:      drivers/iio/chemical/scd4x.c
17132
17133 SENSIRION SGP40 GAS SENSOR DRIVER
17134 M:      Andreas Klinger <ak@it-klinger.de>
17135 S:      Maintained
17136 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
17137 F:      drivers/iio/chemical/sgp40.c
17138
17139 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
17140 M:      Tomasz Duszynski <tduszyns@gmail.com>
17141 S:      Maintained
17142 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
17143 F:      drivers/iio/chemical/sps30.c
17144 F:      drivers/iio/chemical/sps30_i2c.c
17145 F:      drivers/iio/chemical/sps30_serial.c
17146
17147 SERIAL DEVICE BUS
17148 M:      Rob Herring <robh@kernel.org>
17149 L:      linux-serial@vger.kernel.org
17150 S:      Maintained
17151 F:      Documentation/devicetree/bindings/serial/serial.yaml
17152 F:      drivers/tty/serdev/
17153 F:      include/linux/serdev.h
17154
17155 SERIAL DRIVERS
17156 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17157 L:      linux-serial@vger.kernel.org
17158 S:      Maintained
17159 F:      Documentation/devicetree/bindings/serial/
17160 F:      drivers/tty/serial/
17161
17162 SERIAL IR RECEIVER
17163 M:      Sean Young <sean@mess.org>
17164 L:      linux-media@vger.kernel.org
17165 S:      Maintained
17166 F:      drivers/media/rc/serial_ir.c
17167
17168 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
17169 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17170 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17171 S:      Maintained
17172 F:      Documentation/devicetree/bindings/slimbus/
17173 F:      drivers/slimbus/
17174 F:      include/linux/slimbus.h
17175
17176 SFC NETWORK DRIVER
17177 M:      Edward Cree <ecree.xilinx@gmail.com>
17178 M:      Martin Habets <habetsm.xilinx@gmail.com>
17179 L:      netdev@vger.kernel.org
17180 S:      Supported
17181 F:      drivers/net/ethernet/sfc/
17182
17183 SFF/SFP/SFP+ MODULE SUPPORT
17184 M:      Russell King <linux@armlinux.org.uk>
17185 L:      netdev@vger.kernel.org
17186 S:      Maintained
17187 F:      drivers/net/phy/phylink.c
17188 F:      drivers/net/phy/sfp*
17189 F:      include/linux/mdio/mdio-i2c.h
17190 F:      include/linux/phylink.h
17191 F:      include/linux/sfp.h
17192 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)
17193
17194 SGI GRU DRIVER
17195 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
17196 S:      Maintained
17197 F:      drivers/misc/sgi-gru/
17198
17199 SGI XP/XPC/XPNET DRIVER
17200 M:      Robin Holt <robinmholt@gmail.com>
17201 M:      Steve Wahl <steve.wahl@hpe.com>
17202 R:      Mike Travis <mike.travis@hpe.com>
17203 S:      Maintained
17204 F:      drivers/misc/sgi-xp/
17205
17206 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
17207 M:      Karsten Graul <kgraul@linux.ibm.com>
17208 L:      linux-s390@vger.kernel.org
17209 S:      Supported
17210 W:      http://www.ibm.com/developerworks/linux/linux390/
17211 F:      net/smc/
17212
17213 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17214 M:      Linus Walleij <linus.walleij@linaro.org>
17215 L:      linux-iio@vger.kernel.org
17216 S:      Maintained
17217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17218 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17219 F:      drivers/iio/light/gp2ap002.c
17220
17221 SHARP RJ54N1CB0C SENSOR DRIVER
17222 M:      Jacopo Mondi <jacopo@jmondi.org>
17223 L:      linux-media@vger.kernel.org
17224 S:      Odd fixes
17225 T:      git git://linuxtv.org/media_tree.git
17226 F:      drivers/media/i2c/rj54n1cb0c.c
17227 F:      include/media/i2c/rj54n1cb0c.h
17228
17229 SH_VOU V4L2 OUTPUT DRIVER
17230 L:      linux-media@vger.kernel.org
17231 S:      Orphan
17232 F:      drivers/media/platform/sh_vou.c
17233 F:      include/media/drv-intf/sh_vou.h
17234
17235 SI2157 MEDIA DRIVER
17236 M:      Antti Palosaari <crope@iki.fi>
17237 L:      linux-media@vger.kernel.org
17238 S:      Maintained
17239 W:      https://linuxtv.org
17240 W:      http://palosaari.fi/linux/
17241 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17242 T:      git git://linuxtv.org/anttip/media_tree.git
17243 F:      drivers/media/tuners/si2157*
17244
17245 SI2165 MEDIA DRIVER
17246 M:      Matthias Schwarzott <zzam@gentoo.org>
17247 L:      linux-media@vger.kernel.org
17248 S:      Maintained
17249 W:      https://linuxtv.org
17250 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17251 F:      drivers/media/dvb-frontends/si2165*
17252
17253 SI2168 MEDIA DRIVER
17254 M:      Antti Palosaari <crope@iki.fi>
17255 L:      linux-media@vger.kernel.org
17256 S:      Maintained
17257 W:      https://linuxtv.org
17258 W:      http://palosaari.fi/linux/
17259 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17260 T:      git git://linuxtv.org/anttip/media_tree.git
17261 F:      drivers/media/dvb-frontends/si2168*
17262
17263 SI470X FM RADIO RECEIVER I2C DRIVER
17264 M:      Hans Verkuil <hverkuil@xs4all.nl>
17265 L:      linux-media@vger.kernel.org
17266 S:      Odd Fixes
17267 W:      https://linuxtv.org
17268 T:      git git://linuxtv.org/media_tree.git
17269 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
17270
17271 SI470X FM RADIO RECEIVER USB DRIVER
17272 M:      Hans Verkuil <hverkuil@xs4all.nl>
17273 L:      linux-media@vger.kernel.org
17274 S:      Maintained
17275 W:      https://linuxtv.org
17276 T:      git git://linuxtv.org/media_tree.git
17277 F:      drivers/media/radio/si470x/radio-si470x-common.c
17278 F:      drivers/media/radio/si470x/radio-si470x-usb.c
17279 F:      drivers/media/radio/si470x/radio-si470x.h
17280
17281 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17282 M:      Eduardo Valentin <edubezval@gmail.com>
17283 L:      linux-media@vger.kernel.org
17284 S:      Odd Fixes
17285 W:      https://linuxtv.org
17286 T:      git git://linuxtv.org/media_tree.git
17287 F:      drivers/media/radio/si4713/si4713.?
17288
17289 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17290 M:      Eduardo Valentin <edubezval@gmail.com>
17291 L:      linux-media@vger.kernel.org
17292 S:      Odd Fixes
17293 W:      https://linuxtv.org
17294 T:      git git://linuxtv.org/media_tree.git
17295 F:      drivers/media/radio/si4713/radio-platform-si4713.c
17296
17297 SI4713 FM RADIO TRANSMITTER USB DRIVER
17298 M:      Hans Verkuil <hverkuil@xs4all.nl>
17299 L:      linux-media@vger.kernel.org
17300 S:      Maintained
17301 W:      https://linuxtv.org
17302 T:      git git://linuxtv.org/media_tree.git
17303 F:      drivers/media/radio/si4713/radio-usb-si4713.c
17304
17305 SIANO DVB DRIVER
17306 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17307 L:      linux-media@vger.kernel.org
17308 S:      Odd fixes
17309 W:      https://linuxtv.org
17310 T:      git git://linuxtv.org/media_tree.git
17311 F:      drivers/media/common/siano/
17312 F:      drivers/media/mmc/siano/
17313 F:      drivers/media/usb/siano/
17314 F:      drivers/media/usb/siano/
17315
17316 SIFIVE DRIVERS
17317 M:      Palmer Dabbelt <palmer@dabbelt.com>
17318 M:      Paul Walmsley <paul.walmsley@sifive.com>
17319 L:      linux-riscv@lists.infradead.org
17320 S:      Supported
17321 T:      git git://github.com/sifive/riscv-linux.git
17322 N:      sifive
17323 K:      [^@]sifive
17324
17325 SIFIVE FU540 SYSTEM-ON-CHIP
17326 M:      Paul Walmsley <paul.walmsley@sifive.com>
17327 M:      Palmer Dabbelt <palmer@dabbelt.com>
17328 L:      linux-riscv@lists.infradead.org
17329 S:      Supported
17330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17331 N:      fu540
17332 K:      fu540
17333
17334 SIFIVE PDMA DRIVER
17335 M:      Green Wan <green.wan@sifive.com>
17336 S:      Maintained
17337 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17338 F:      drivers/dma/sf-pdma/
17339
17340 SILEAD TOUCHSCREEN DRIVER
17341 M:      Hans de Goede <hdegoede@redhat.com>
17342 L:      linux-input@vger.kernel.org
17343 L:      platform-driver-x86@vger.kernel.org
17344 S:      Maintained
17345 F:      drivers/input/touchscreen/silead.c
17346 F:      drivers/platform/x86/touchscreen_dmi.c
17347
17348 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
17349 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
17350 S:      Supported
17351 F:      drivers/staging/wfx/
17352
17353 SILICON MOTION SM712 FRAME BUFFER DRIVER
17354 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17355 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17356 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17357 L:      linux-fbdev@vger.kernel.org
17358 S:      Maintained
17359 F:      Documentation/fb/sm712fb.rst
17360 F:      drivers/video/fbdev/sm712*
17361
17362 SILVACO I3C DUAL-ROLE MASTER
17363 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17364 M:      Conor Culhane <conor.culhane@silvaco.com>
17365 L:      linux-i3c@lists.infradead.org
17366 S:      Maintained
17367 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
17368 F:      drivers/i3c/master/svc-i3c-master.c
17369
17370 SIMPLEFB FB DRIVER
17371 M:      Hans de Goede <hdegoede@redhat.com>
17372 L:      linux-fbdev@vger.kernel.org
17373 S:      Maintained
17374 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
17375 F:      drivers/video/fbdev/simplefb.c
17376 F:      include/linux/platform_data/simplefb.h
17377
17378 SIMTEC EB110ATX (Chalice CATS)
17379 M:      Simtec Linux Team <linux@simtec.co.uk>
17380 S:      Supported
17381 W:      http://www.simtec.co.uk/products/EB110ATX/
17382
17383 SIMTEC EB2410ITX (BAST)
17384 M:      Simtec Linux Team <linux@simtec.co.uk>
17385 S:      Supported
17386 W:      http://www.simtec.co.uk/products/EB2410ITX/
17387 F:      arch/arm/mach-s3c/bast-ide.c
17388 F:      arch/arm/mach-s3c/bast-irq.c
17389 F:      arch/arm/mach-s3c/mach-bast.c
17390
17391 SIOX
17392 M:      Thorsten Scherer <t.scherer@eckelmann.de>
17393 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17394 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
17395 S:      Supported
17396 F:      drivers/gpio/gpio-siox.c
17397 F:      drivers/siox/*
17398 F:      include/trace/events/siox.h
17399
17400 SIPHASH PRF ROUTINES
17401 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17402 S:      Maintained
17403 F:      include/linux/siphash.h
17404 F:      lib/siphash.c
17405 F:      lib/test_siphash.c
17406
17407 SIS 190 ETHERNET DRIVER
17408 M:      Francois Romieu <romieu@fr.zoreil.com>
17409 L:      netdev@vger.kernel.org
17410 S:      Maintained
17411 F:      drivers/net/ethernet/sis/sis190.c
17412
17413 SIS 900/7016 FAST ETHERNET DRIVER
17414 M:      Daniele Venzano <venza@brownhat.org>
17415 L:      netdev@vger.kernel.org
17416 S:      Maintained
17417 W:      http://www.brownhat.org/sis900.html
17418 F:      drivers/net/ethernet/sis/sis900.*
17419
17420 SIS FRAMEBUFFER DRIVER
17421 M:      Thomas Winischhofer <thomas@winischhofer.net>
17422 S:      Maintained
17423 W:      http://www.winischhofer.net/linuxsisvga.shtml
17424 F:      Documentation/fb/sisfb.rst
17425 F:      drivers/video/fbdev/sis/
17426 F:      include/video/sisfb.h
17427
17428 SIS I2C TOUCHSCREEN DRIVER
17429 M:      Mika Penttilä <mika.penttila@nextfour.com>
17430 L:      linux-input@vger.kernel.org
17431 S:      Maintained
17432 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
17433 F:      drivers/input/touchscreen/sis_i2c.c
17434
17435 SIS USB2VGA DRIVER
17436 M:      Thomas Winischhofer <thomas@winischhofer.net>
17437 S:      Maintained
17438 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
17439 F:      drivers/usb/misc/sisusbvga/
17440
17441 SLAB ALLOCATOR
17442 M:      Christoph Lameter <cl@linux.com>
17443 M:      Pekka Enberg <penberg@kernel.org>
17444 M:      David Rientjes <rientjes@google.com>
17445 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
17446 M:      Andrew Morton <akpm@linux-foundation.org>
17447 M:      Vlastimil Babka <vbabka@suse.cz>
17448 L:      linux-mm@kvack.org
17449 S:      Maintained
17450 F:      include/linux/sl?b*.h
17451 F:      mm/sl?b*
17452
17453 SLEEPABLE READ-COPY UPDATE (SRCU)
17454 M:      Lai Jiangshan <jiangshanlai@gmail.com>
17455 M:      "Paul E. McKenney" <paulmck@kernel.org>
17456 M:      Josh Triplett <josh@joshtriplett.org>
17457 R:      Steven Rostedt <rostedt@goodmis.org>
17458 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17459 L:      rcu@vger.kernel.org
17460 S:      Supported
17461 W:      http://www.rdrop.com/users/paulmck/RCU/
17462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17463 F:      include/linux/srcu*.h
17464 F:      kernel/rcu/srcu*.c
17465
17466 SMACK SECURITY MODULE
17467 M:      Casey Schaufler <casey@schaufler-ca.com>
17468 L:      linux-security-module@vger.kernel.org
17469 S:      Maintained
17470 W:      http://schaufler-ca.com
17471 T:      git git://github.com/cschaufler/smack-next
17472 F:      Documentation/admin-guide/LSM/Smack.rst
17473 F:      security/smack/
17474
17475 SMC91x ETHERNET DRIVER
17476 M:      Nicolas Pitre <nico@fluxnic.net>
17477 S:      Odd Fixes
17478 F:      drivers/net/ethernet/smsc/smc91x.*
17479
17480 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17481 M:      Mark Rutland <mark.rutland@arm.com>
17482 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17483 M:      Sudeep Holla <sudeep.holla@arm.com>
17484 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17485 S:      Maintained
17486 F:      drivers/firmware/smccc/
17487 F:      include/linux/arm-smccc.h
17488
17489 SMM665 HARDWARE MONITOR DRIVER
17490 M:      Guenter Roeck <linux@roeck-us.net>
17491 L:      linux-hwmon@vger.kernel.org
17492 S:      Maintained
17493 F:      Documentation/hwmon/smm665.rst
17494 F:      drivers/hwmon/smm665.c
17495
17496 SMSC EMC2103 HARDWARE MONITOR DRIVER
17497 M:      Steve Glendinning <steve.glendinning@shawell.net>
17498 L:      linux-hwmon@vger.kernel.org
17499 S:      Maintained
17500 F:      Documentation/hwmon/emc2103.rst
17501 F:      drivers/hwmon/emc2103.c
17502
17503 SMSC SCH5627 HARDWARE MONITOR DRIVER
17504 M:      Hans de Goede <hdegoede@redhat.com>
17505 L:      linux-hwmon@vger.kernel.org
17506 S:      Supported
17507 F:      Documentation/hwmon/sch5627.rst
17508 F:      drivers/hwmon/sch5627.c
17509
17510 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17511 M:      Steve Glendinning <steve.glendinning@shawell.net>
17512 L:      linux-fbdev@vger.kernel.org
17513 S:      Maintained
17514 F:      drivers/video/fbdev/smscufx.c
17515
17516 SMSC47B397 HARDWARE MONITOR DRIVER
17517 M:      Jean Delvare <jdelvare@suse.com>
17518 L:      linux-hwmon@vger.kernel.org
17519 S:      Maintained
17520 F:      Documentation/hwmon/smsc47b397.rst
17521 F:      drivers/hwmon/smsc47b397.c
17522
17523 SMSC911x ETHERNET DRIVER
17524 M:      Steve Glendinning <steve.glendinning@shawell.net>
17525 L:      netdev@vger.kernel.org
17526 S:      Maintained
17527 F:      drivers/net/ethernet/smsc/smsc911x.*
17528 F:      include/linux/smsc911x.h
17529
17530 SMSC9420 PCI ETHERNET DRIVER
17531 M:      Steve Glendinning <steve.glendinning@shawell.net>
17532 L:      netdev@vger.kernel.org
17533 S:      Maintained
17534 F:      drivers/net/ethernet/smsc/smsc9420.*
17535
17536 SOCIONEXT (SNI) AVE NETWORK DRIVER
17537 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17538 L:      netdev@vger.kernel.org
17539 S:      Maintained
17540 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17541 F:      drivers/net/ethernet/socionext/sni_ave.c
17542
17543 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17544 M:      Jassi Brar <jaswinder.singh@linaro.org>
17545 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
17546 L:      netdev@vger.kernel.org
17547 S:      Maintained
17548 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
17549 F:      drivers/net/ethernet/socionext/netsec.c
17550
17551 SOCIONEXT (SNI) Synquacer SPI DRIVER
17552 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
17553 M:      Jassi Brar <jaswinder.singh@linaro.org>
17554 L:      linux-spi@vger.kernel.org
17555 S:      Maintained
17556 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
17557 F:      drivers/spi/spi-synquacer.c
17558
17559 SOCIONEXT SYNQUACER I2C DRIVER
17560 M:      Ard Biesheuvel <ardb@kernel.org>
17561 L:      linux-i2c@vger.kernel.org
17562 S:      Maintained
17563 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17564 F:      drivers/i2c/busses/i2c-synquacer.c
17565
17566 SOCIONEXT UNIPHIER SOUND DRIVER
17567 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17568 S:      Orphan
17569 F:      sound/soc/uniphier/
17570
17571 SOEKRIS NET48XX LED SUPPORT
17572 M:      Chris Boot <bootc@bootc.net>
17573 S:      Maintained
17574 F:      drivers/leds/leds-net48xx.c
17575
17576 SOFT-IWARP DRIVER (siw)
17577 M:      Bernard Metzler <bmt@zurich.ibm.com>
17578 L:      linux-rdma@vger.kernel.org
17579 S:      Supported
17580 F:      drivers/infiniband/sw/siw/
17581 F:      include/uapi/rdma/siw-abi.h
17582
17583 SOFT-ROCE DRIVER (rxe)
17584 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
17585 L:      linux-rdma@vger.kernel.org
17586 S:      Supported
17587 F:      drivers/infiniband/sw/rxe/
17588 F:      include/uapi/rdma/rdma_user_rxe.h
17589
17590 SOFTLOGIC 6x10 MPEG CODEC
17591 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17592 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17593 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17594 M:      Ismael Luceno <ismael@iodev.co.uk>
17595 L:      linux-media@vger.kernel.org
17596 S:      Supported
17597 F:      drivers/media/pci/solo6x10/
17598
17599 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17600 M:      James Morse <james.morse@arm.com>
17601 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17602 S:      Maintained
17603 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
17604 F:      drivers/firmware/arm_sdei.c
17605 F:      include/linux/arm_sdei.h
17606 F:      include/uapi/linux/arm_sdei.h
17607
17608 SOFTWARE NODES
17609 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17610 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17611 L:      linux-acpi@vger.kernel.org
17612 S:      Maintained
17613 F:      drivers/base/swnode.c
17614
17615 SOFTWARE RAID (Multiple Disks) SUPPORT
17616 M:      Song Liu <song@kernel.org>
17617 L:      linux-raid@vger.kernel.org
17618 S:      Supported
17619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17620 F:      drivers/md/Kconfig
17621 F:      drivers/md/Makefile
17622 F:      drivers/md/md*
17623 F:      drivers/md/raid*
17624 F:      include/linux/raid/
17625 F:      include/uapi/linux/raid/
17626
17627 SOLIDRUN CLEARFOG SUPPORT
17628 M:      Russell King <linux@armlinux.org.uk>
17629 S:      Maintained
17630 F:      arch/arm/boot/dts/armada-388-clearfog*
17631 F:      arch/arm/boot/dts/armada-38x-solidrun-*
17632
17633 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17634 M:      Russell King <linux@armlinux.org.uk>
17635 S:      Maintained
17636 F:      arch/arm/boot/dts/imx6*-cubox-i*
17637 F:      arch/arm/boot/dts/imx6*-hummingboard*
17638 F:      arch/arm/boot/dts/imx6*-sr-*
17639
17640 SONIC NETWORK DRIVER
17641 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17642 L:      netdev@vger.kernel.org
17643 S:      Maintained
17644 F:      drivers/net/ethernet/natsemi/sonic.*
17645
17646 SONICS SILICON BACKPLANE DRIVER (SSB)
17647 M:      Michael Buesch <m@bues.ch>
17648 L:      linux-wireless@vger.kernel.org
17649 S:      Maintained
17650 F:      drivers/ssb/
17651 F:      include/linux/ssb/
17652
17653 SONY IMX208 SENSOR DRIVER
17654 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17655 L:      linux-media@vger.kernel.org
17656 S:      Maintained
17657 T:      git git://linuxtv.org/media_tree.git
17658 F:      drivers/media/i2c/imx208.c
17659
17660 SONY IMX214 SENSOR DRIVER
17661 M:      Ricardo Ribalda <ribalda@kernel.org>
17662 L:      linux-media@vger.kernel.org
17663 S:      Maintained
17664 T:      git git://linuxtv.org/media_tree.git
17665 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
17666 F:      drivers/media/i2c/imx214.c
17667
17668 SONY IMX219 SENSOR DRIVER
17669 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
17670 L:      linux-media@vger.kernel.org
17671 S:      Maintained
17672 T:      git git://linuxtv.org/media_tree.git
17673 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
17674 F:      drivers/media/i2c/imx219.c
17675
17676 SONY IMX258 SENSOR DRIVER
17677 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17678 L:      linux-media@vger.kernel.org
17679 S:      Maintained
17680 T:      git git://linuxtv.org/media_tree.git
17681 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
17682 F:      drivers/media/i2c/imx258.c
17683
17684 SONY IMX274 SENSOR DRIVER
17685 M:      Leon Luo <leonl@leopardimaging.com>
17686 L:      linux-media@vger.kernel.org
17687 S:      Maintained
17688 T:      git git://linuxtv.org/media_tree.git
17689 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
17690 F:      drivers/media/i2c/imx274.c
17691
17692 SONY IMX290 SENSOR DRIVER
17693 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17694 L:      linux-media@vger.kernel.org
17695 S:      Maintained
17696 T:      git git://linuxtv.org/media_tree.git
17697 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
17698 F:      drivers/media/i2c/imx290.c
17699
17700 SONY IMX319 SENSOR DRIVER
17701 M:      Bingbu Cao <bingbu.cao@intel.com>
17702 L:      linux-media@vger.kernel.org
17703 S:      Maintained
17704 T:      git git://linuxtv.org/media_tree.git
17705 F:      drivers/media/i2c/imx319.c
17706
17707 SONY IMX334 SENSOR DRIVER
17708 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17709 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17710 L:      linux-media@vger.kernel.org
17711 S:      Maintained
17712 T:      git git://linuxtv.org/media_tree.git
17713 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17714 F:      drivers/media/i2c/imx334.c
17715
17716 SONY IMX335 SENSOR DRIVER
17717 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17718 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17719 L:      linux-media@vger.kernel.org
17720 S:      Maintained
17721 T:      git git://linuxtv.org/media_tree.git
17722 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
17723 F:      drivers/media/i2c/imx335.c
17724
17725 SONY IMX355 SENSOR DRIVER
17726 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
17727 L:      linux-media@vger.kernel.org
17728 S:      Maintained
17729 T:      git git://linuxtv.org/media_tree.git
17730 F:      drivers/media/i2c/imx355.c
17731
17732 SONY IMX412 SENSOR DRIVER
17733 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17734 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17735 L:      linux-media@vger.kernel.org
17736 S:      Maintained
17737 T:      git git://linuxtv.org/media_tree.git
17738 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
17739 F:      drivers/media/i2c/imx412.c
17740
17741 SONY MEMORYSTICK SUBSYSTEM
17742 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17743 M:      Alex Dubov <oakad@yahoo.com>
17744 M:      Ulf Hansson <ulf.hansson@linaro.org>
17745 L:      linux-mmc@vger.kernel.org
17746 S:      Maintained
17747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17748 F:      drivers/memstick/
17749 F:      include/linux/memstick.h
17750
17751 SONY VAIO CONTROL DEVICE DRIVER
17752 M:      Mattia Dongili <malattia@linux.it>
17753 L:      platform-driver-x86@vger.kernel.org
17754 S:      Maintained
17755 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17756 F:      Documentation/admin-guide/laptops/sony-laptop.rst
17757 F:      drivers/char/sonypi.c
17758 F:      drivers/platform/x86/sony-laptop.c
17759 F:      include/linux/sony-laptop.h
17760
17761 SOUND
17762 M:      Jaroslav Kysela <perex@perex.cz>
17763 M:      Takashi Iwai <tiwai@suse.com>
17764 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17765 S:      Maintained
17766 W:      http://www.alsa-project.org/
17767 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
17768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17769 F:      Documentation/sound/
17770 F:      include/sound/
17771 F:      include/uapi/sound/
17772 F:      sound/
17773
17774 SOUND - COMPRESSED AUDIO
17775 M:      Vinod Koul <vkoul@kernel.org>
17776 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17777 S:      Supported
17778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17779 F:      Documentation/sound/designs/compress-offload.rst
17780 F:      include/sound/compress_driver.h
17781 F:      include/uapi/sound/compress_*
17782 F:      sound/core/compress_offload.c
17783 F:      sound/soc/soc-compress.c
17784
17785 SOUND - DMAENGINE HELPERS
17786 M:      Lars-Peter Clausen <lars@metafoo.de>
17787 S:      Supported
17788 F:      include/sound/dmaengine_pcm.h
17789 F:      sound/core/pcm_dmaengine.c
17790 F:      sound/soc/soc-generic-dmaengine-pcm.c
17791
17792 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17793 M:      Liam Girdwood <lgirdwood@gmail.com>
17794 M:      Mark Brown <broonie@kernel.org>
17795 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17796 S:      Supported
17797 W:      http://alsa-project.org/main/index.php/ASoC
17798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17799 F:      Documentation/devicetree/bindings/sound/
17800 F:      Documentation/sound/soc/
17801 F:      include/dt-bindings/sound/
17802 F:      include/sound/soc*
17803 F:      sound/soc/
17804
17805 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17806 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17807 M:      Liam Girdwood <lgirdwood@gmail.com>
17808 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17809 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
17810 M:      Daniel Baluta <daniel.baluta@nxp.com>
17811 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17812 S:      Supported
17813 W:      https://github.com/thesofproject/linux/
17814 F:      sound/soc/sof/
17815
17816 SOUNDWIRE SUBSYSTEM
17817 M:      Vinod Koul <vkoul@kernel.org>
17818 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
17819 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17820 R:      Sanyog Kale <sanyog.r.kale@intel.com>
17821 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17822 S:      Supported
17823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17824 F:      Documentation/driver-api/soundwire/
17825 F:      drivers/soundwire/
17826 F:      include/linux/soundwire/
17827
17828 SP2 MEDIA DRIVER
17829 M:      Olli Salonen <olli.salonen@iki.fi>
17830 L:      linux-media@vger.kernel.org
17831 S:      Maintained
17832 W:      https://linuxtv.org
17833 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17834 F:      drivers/media/dvb-frontends/sp2*
17835
17836 SPARC + UltraSPARC (sparc/sparc64)
17837 M:      "David S. Miller" <davem@davemloft.net>
17838 L:      sparclinux@vger.kernel.org
17839 S:      Maintained
17840 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
17841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17842 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17843 F:      arch/sparc/
17844 F:      drivers/sbus/
17845
17846 SPARC SERIAL DRIVERS
17847 M:      "David S. Miller" <davem@davemloft.net>
17848 L:      sparclinux@vger.kernel.org
17849 S:      Maintained
17850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17852 F:      drivers/tty/serial/suncore.c
17853 F:      drivers/tty/serial/sunhv.c
17854 F:      drivers/tty/serial/sunsab.c
17855 F:      drivers/tty/serial/sunsab.h
17856 F:      drivers/tty/serial/sunsu.c
17857 F:      drivers/tty/serial/sunzilog.c
17858 F:      drivers/tty/serial/sunzilog.h
17859 F:      drivers/tty/vcc.c
17860 F:      include/linux/sunserialcore.h
17861
17862 SPARSE CHECKER
17863 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17864 L:      linux-sparse@vger.kernel.org
17865 S:      Maintained
17866 W:      https://sparse.docs.kernel.org/
17867 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17868 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
17869 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17870 F:      include/linux/compiler.h
17871
17872 SPEAKUP CONSOLE SPEECH DRIVER
17873 M:      William Hubbs <w.d.hubbs@gmail.com>
17874 M:      Chris Brannon <chris@the-brannons.com>
17875 M:      Kirk Reiser <kirk@reisers.ca>
17876 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
17877 L:      speakup@linux-speakup.org
17878 S:      Odd Fixes
17879 W:      http://www.linux-speakup.org/
17880 W:      https://github.com/linux-speakup/speakup
17881 B:      https://github.com/linux-speakup/speakup/issues
17882 F:      drivers/accessibility/speakup/
17883
17884 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
17885 M:      Viresh Kumar <vireshk@kernel.org>
17886 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
17887 M:      soc@kernel.org
17888 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17889 S:      Maintained
17890 W:      http://www.st.com/spear
17891 F:      arch/arm/boot/dts/spear*
17892 F:      arch/arm/mach-spear/
17893 F:      drivers/clk/spear/
17894 F:      drivers/pinctrl/spear/
17895
17896 SPI NOR SUBSYSTEM
17897 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
17898 R:      Michael Walle <michael@walle.cc>
17899 R:      Pratyush Yadav <p.yadav@ti.com>
17900 L:      linux-mtd@lists.infradead.org
17901 S:      Maintained
17902 W:      http://www.linux-mtd.infradead.org/
17903 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
17904 C:      irc://irc.oftc.net/mtd
17905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17906 F:      drivers/mtd/spi-nor/
17907 F:      include/linux/mtd/spi-nor.h
17908
17909 SPI SUBSYSTEM
17910 M:      Mark Brown <broonie@kernel.org>
17911 L:      linux-spi@vger.kernel.org
17912 S:      Maintained
17913 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
17914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17915 F:      Documentation/devicetree/bindings/spi/
17916 F:      Documentation/spi/
17917 F:      drivers/spi/
17918 F:      include/linux/spi/
17919 F:      include/uapi/linux/spi/
17920 F:      tools/spi/
17921
17922 SPIDERNET NETWORK DRIVER for CELL
17923 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
17924 M:      Geoff Levand <geoff@infradead.org>
17925 L:      netdev@vger.kernel.org
17926 L:      linuxppc-dev@lists.ozlabs.org
17927 S:      Maintained
17928 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17929 F:      drivers/net/ethernet/toshiba/spider_net*
17930
17931 SPMI SUBSYSTEM
17932 M:      Stephen Boyd <sboyd@kernel.org>
17933 L:      linux-kernel@vger.kernel.org
17934 S:      Maintained
17935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17936 F:      Documentation/devicetree/bindings/spmi/
17937 F:      drivers/spmi/
17938 F:      include/dt-bindings/spmi/spmi.h
17939 F:      include/linux/spmi.h
17940 F:      include/trace/events/spmi.h
17941
17942 SPU FILE SYSTEM
17943 M:      Jeremy Kerr <jk@ozlabs.org>
17944 L:      linuxppc-dev@lists.ozlabs.org
17945 S:      Supported
17946 W:      http://www.ibm.com/developerworks/power/cell/
17947 F:      Documentation/filesystems/spufs/spufs.rst
17948 F:      arch/powerpc/platforms/cell/spufs/
17949
17950 SQUASHFS FILE SYSTEM
17951 M:      Phillip Lougher <phillip@squashfs.org.uk>
17952 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
17953 S:      Maintained
17954 W:      http://squashfs.org.uk
17955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17956 F:      Documentation/filesystems/squashfs.rst
17957 F:      fs/squashfs/
17958
17959 SRM (Alpha) environment access
17960 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
17961 S:      Maintained
17962 F:      arch/alpha/kernel/srm_env.c
17963
17964 ST LSM6DSx IMU IIO DRIVER
17965 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
17966 L:      linux-iio@vger.kernel.org
17967 S:      Maintained
17968 W:      http://www.st.com/
17969 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17970 F:      drivers/iio/imu/st_lsm6dsx/
17971
17972 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17973 M:      Mickael Guene <mickael.guene@st.com>
17974 L:      linux-media@vger.kernel.org
17975 S:      Maintained
17976 T:      git git://linuxtv.org/media_tree.git
17977 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17978 F:      drivers/media/i2c/st-mipid02.c
17979
17980 ST STM32 I2C/SMBUS DRIVER
17981 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
17982 M:      Alain Volmat <alain.volmat@foss.st.com>
17983 L:      linux-i2c@vger.kernel.org
17984 S:      Maintained
17985 F:      drivers/i2c/busses/i2c-stm32*
17986
17987 ST STM32 SPI DRIVER
17988 M:      Alain Volmat <alain.volmat@foss.st.com>
17989 L:      linux-spi@vger.kernel.org
17990 S:      Maintained
17991 F:      drivers/spi/spi-stm32.c
17992
17993 ST STPDDC60 DRIVER
17994 M:      Daniel Nilsson <daniel.nilsson@flex.com>
17995 L:      linux-hwmon@vger.kernel.org
17996 S:      Maintained
17997 F:      Documentation/hwmon/stpddc60.rst
17998 F:      drivers/hwmon/pmbus/stpddc60.c
17999
18000 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
18001 M:      Song Qiang <songqiang1304521@gmail.com>
18002 L:      linux-iio@vger.kernel.org
18003 S:      Maintained
18004 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
18005 F:      drivers/iio/proximity/vl53l0x-i2c.c
18006
18007 STABLE BRANCH
18008 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18009 M:      Sasha Levin <sashal@kernel.org>
18010 L:      stable@vger.kernel.org
18011 S:      Supported
18012 F:      Documentation/process/stable-kernel-rules.rst
18013
18014 STAGING - ATOMISP DRIVER
18015 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18016 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18017 L:      linux-media@vger.kernel.org
18018 S:      Maintained
18019 F:      drivers/staging/media/atomisp/
18020
18021 STAGING - FIELDBUS SUBSYSTEM
18022 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18023 S:      Maintained
18024 F:      drivers/staging/fieldbus/*
18025 F:      drivers/staging/fieldbus/Documentation/
18026
18027 STAGING - HMS ANYBUS-S BUS
18028 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18029 S:      Maintained
18030 F:      drivers/staging/fieldbus/anybuss/
18031
18032 STAGING - INDUSTRIAL IO
18033 M:      Jonathan Cameron <jic23@kernel.org>
18034 L:      linux-iio@vger.kernel.org
18035 S:      Odd Fixes
18036 F:      Documentation/devicetree/bindings/staging/iio/
18037 F:      drivers/staging/iio/
18038
18039 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
18040 M:      Marc Dietrich <marvin24@gmx.de>
18041 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
18042 L:      linux-tegra@vger.kernel.org
18043 S:      Maintained
18044 F:      drivers/staging/nvec/
18045
18046 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
18047 M:      Jens Frederich <jfrederich@gmail.com>
18048 M:      Jon Nettleton <jon.nettleton@gmail.com>
18049 S:      Maintained
18050 W:      http://wiki.laptop.org/go/DCON
18051 F:      drivers/staging/olpc_dcon/
18052
18053 STAGING - REALTEK RTL8188EU DRIVERS
18054 M:      Larry Finger <Larry.Finger@lwfinger.net>
18055 M:      Phillip Potter <phil@philpotter.co.uk>
18056 S:      Supported
18057 F:      drivers/staging/r8188eu/
18058
18059 STAGING - REALTEK RTL8712U DRIVERS
18060 M:      Larry Finger <Larry.Finger@lwfinger.net>
18061 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
18062 S:      Odd Fixes
18063 F:      drivers/staging/rtl8712/
18064
18065 STAGING - SEPS525 LCD CONTROLLER DRIVERS
18066 M:      Michael Hennerich <michael.hennerich@analog.com>
18067 L:      linux-fbdev@vger.kernel.org
18068 S:      Supported
18069 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
18070 F:      drivers/staging/fbtft/fb_seps525.c
18071
18072 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
18073 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18074 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18075 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18076 L:      linux-fbdev@vger.kernel.org
18077 S:      Maintained
18078 F:      drivers/staging/sm750fb/
18079
18080 STAGING - VIA VT665X DRIVERS
18081 M:      Forest Bond <forest@alittletooquiet.net>
18082 S:      Odd Fixes
18083 F:      drivers/staging/vt665?/
18084
18085 STAGING SUBSYSTEM
18086 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18087 L:      linux-staging@lists.linux.dev
18088 S:      Supported
18089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
18090 F:      drivers/staging/
18091
18092 STARFIRE/DURALAN NETWORK DRIVER
18093 M:      Ion Badulescu <ionut@badula.org>
18094 S:      Odd Fixes
18095 F:      drivers/net/ethernet/adaptec/starfire*
18096
18097 STATIC BRANCH/CALL
18098 M:      Peter Zijlstra <peterz@infradead.org>
18099 M:      Josh Poimboeuf <jpoimboe@redhat.com>
18100 M:      Jason Baron <jbaron@akamai.com>
18101 R:      Steven Rostedt <rostedt@goodmis.org>
18102 R:      Ard Biesheuvel <ardb@kernel.org>
18103 S:      Supported
18104 F:      arch/*/include/asm/jump_label*.h
18105 F:      arch/*/include/asm/static_call*.h
18106 F:      arch/*/kernel/jump_label.c
18107 F:      arch/*/kernel/static_call.c
18108 F:      include/linux/jump_label*.h
18109 F:      include/linux/static_call*.h
18110 F:      kernel/jump_label.c
18111 F:      kernel/static_call.c
18112
18113 STI AUDIO (ASoC) DRIVERS
18114 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18115 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18116 S:      Maintained
18117 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
18118 F:      sound/soc/sti/
18119
18120 STI CEC DRIVER
18121 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
18122 S:      Maintained
18123 F:      Documentation/devicetree/bindings/media/stih-cec.txt
18124 F:      drivers/media/cec/platform/sti/
18125
18126 STK1160 USB VIDEO CAPTURE DRIVER
18127 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18128 L:      linux-media@vger.kernel.org
18129 S:      Maintained
18130 T:      git git://linuxtv.org/media_tree.git
18131 F:      drivers/media/usb/stk1160/
18132
18133 STM32 AUDIO (ASoC) DRIVERS
18134 M:      Olivier Moysan <olivier.moysan@foss.st.com>
18135 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18136 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18137 S:      Maintained
18138 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
18139 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
18140 F:      sound/soc/stm/
18141
18142 STM32 TIMER/LPTIMER DRIVERS
18143 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
18144 S:      Maintained
18145 F:      Documentation/ABI/testing/*timer-stm32
18146 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
18147 F:      drivers/*/stm32-*timer*
18148 F:      drivers/pwm/pwm-stm32*
18149 F:      include/linux/*/stm32-*tim*
18150
18151 STMMAC ETHERNET DRIVER
18152 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
18153 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
18154 M:      Jose Abreu <joabreu@synopsys.com>
18155 L:      netdev@vger.kernel.org
18156 S:      Supported
18157 W:      http://www.stlinux.com
18158 F:      Documentation/networking/device_drivers/ethernet/stmicro/
18159 F:      drivers/net/ethernet/stmicro/stmmac/
18160
18161 SUN3/3X
18162 M:      Sam Creasey <sammy@sammy.net>
18163 S:      Maintained
18164 W:      http://sammy.net/sun3/
18165 F:      arch/m68k/include/asm/sun3*
18166 F:      arch/m68k/kernel/*sun3*
18167 F:      arch/m68k/sun3*/
18168 F:      drivers/net/ethernet/i825xx/sun3*
18169
18170 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
18171 M:      Hans de Goede <hdegoede@redhat.com>
18172 L:      linux-input@vger.kernel.org
18173 S:      Maintained
18174 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
18175 F:      drivers/input/keyboard/sun4i-lradc-keys.c
18176
18177 SUNDANCE NETWORK DRIVER
18178 M:      Denis Kirjanov <kda@linux-powerpc.org>
18179 L:      netdev@vger.kernel.org
18180 S:      Maintained
18181 F:      drivers/net/ethernet/dlink/sundance.c
18182
18183 SUPERH
18184 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
18185 M:      Rich Felker <dalias@libc.org>
18186 L:      linux-sh@vger.kernel.org
18187 S:      Maintained
18188 Q:      http://patchwork.kernel.org/project/linux-sh/list/
18189 F:      Documentation/sh/
18190 F:      arch/sh/
18191 F:      drivers/sh/
18192
18193 SUSPEND TO RAM
18194 M:      "Rafael J. Wysocki" <rafael@kernel.org>
18195 M:      Len Brown <len.brown@intel.com>
18196 M:      Pavel Machek <pavel@ucw.cz>
18197 L:      linux-pm@vger.kernel.org
18198 S:      Supported
18199 B:      https://bugzilla.kernel.org
18200 F:      Documentation/power/
18201 F:      arch/x86/kernel/acpi/
18202 F:      drivers/base/power/
18203 F:      include/linux/freezer.h
18204 F:      include/linux/pm.h
18205 F:      include/linux/suspend.h
18206 F:      kernel/power/
18207
18208 SVGA HANDLING
18209 M:      Martin Mares <mj@ucw.cz>
18210 L:      linux-video@atrey.karlin.mff.cuni.cz
18211 S:      Maintained
18212 F:      Documentation/admin-guide/svga.rst
18213 F:      arch/x86/boot/video*
18214
18215 SWIOTLB SUBSYSTEM
18216 M:      Christoph Hellwig <hch@infradead.org>
18217 L:      iommu@lists.linux-foundation.org
18218 S:      Supported
18219 W:      http://git.infradead.org/users/hch/dma-mapping.git
18220 T:      git git://git.infradead.org/users/hch/dma-mapping.git
18221 F:      arch/*/kernel/pci-swiotlb.c
18222 F:      include/linux/swiotlb.h
18223 F:      kernel/dma/swiotlb.c
18224
18225 SWITCHDEV
18226 M:      Jiri Pirko <jiri@resnulli.us>
18227 M:      Ivan Vecera <ivecera@redhat.com>
18228 L:      netdev@vger.kernel.org
18229 S:      Supported
18230 F:      include/net/switchdev.h
18231 F:      net/switchdev/
18232
18233 SY8106A REGULATOR DRIVER
18234 M:      Icenowy Zheng <icenowy@aosc.io>
18235 S:      Maintained
18236 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18237 F:      drivers/regulator/sy8106a-regulator.c
18238
18239 SYNC FILE FRAMEWORK
18240 M:      Sumit Semwal <sumit.semwal@linaro.org>
18241 R:      Gustavo Padovan <gustavo@padovan.org>
18242 L:      linux-media@vger.kernel.org
18243 L:      dri-devel@lists.freedesktop.org
18244 S:      Maintained
18245 T:      git git://anongit.freedesktop.org/drm/drm-misc
18246 F:      Documentation/driver-api/sync_file.rst
18247 F:      drivers/dma-buf/dma-fence*
18248 F:      drivers/dma-buf/sw_sync.c
18249 F:      drivers/dma-buf/sync_*
18250 F:      include/linux/sync_file.h
18251 F:      include/uapi/linux/sync_file.h
18252
18253 SYNOPSYS ARC ARCHITECTURE
18254 M:      Vineet Gupta <vgupta@kernel.org>
18255 L:      linux-snps-arc@lists.infradead.org
18256 S:      Supported
18257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18258 F:      Documentation/devicetree/bindings/arc/*
18259 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18260 F:      arch/arc/
18261 F:      drivers/clocksource/arc_timer.c
18262 F:      drivers/tty/serial/arc_uart.c
18263
18264 SYNOPSYS ARC HSDK SDP pll clock driver
18265 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18266 S:      Supported
18267 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
18268 F:      drivers/clk/clk-hsdk-pll.c
18269
18270 SYNOPSYS ARC SDP clock driver
18271 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18272 S:      Supported
18273 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
18274 F:      drivers/clk/axs10x/*
18275
18276 SYNOPSYS ARC SDP platform support
18277 M:      Alexey Brodkin <abrodkin@synopsys.com>
18278 S:      Supported
18279 F:      Documentation/devicetree/bindings/arc/axs10*
18280 F:      arch/arc/boot/dts/ax*
18281 F:      arch/arc/plat-axs10x
18282
18283 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
18284 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18285 S:      Supported
18286 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
18287 F:      drivers/reset/reset-axs10x.c
18288
18289 SYNOPSYS CREG GPIO DRIVER
18290 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18291 S:      Maintained
18292 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
18293 F:      drivers/gpio/gpio-creg-snps.c
18294
18295 SYNOPSYS DESIGNWARE 8250 UART DRIVER
18296 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18297 S:      Maintained
18298 F:      drivers/tty/serial/8250/8250_dw.c
18299 F:      drivers/tty/serial/8250/8250_dwlib.*
18300 F:      drivers/tty/serial/8250/8250_lpss.c
18301
18302 SYNOPSYS DESIGNWARE APB GPIO DRIVER
18303 M:      Hoan Tran <hoan@os.amperecomputing.com>
18304 M:      Serge Semin <fancer.lancer@gmail.com>
18305 L:      linux-gpio@vger.kernel.org
18306 S:      Maintained
18307 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
18308 F:      drivers/gpio/gpio-dwapb.c
18309
18310 SYNOPSYS DESIGNWARE APB SSI DRIVER
18311 M:      Serge Semin <fancer.lancer@gmail.com>
18312 L:      linux-spi@vger.kernel.org
18313 S:      Supported
18314 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
18315 F:      drivers/spi/spi-dw*
18316
18317 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
18318 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18319 S:      Maintained
18320 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
18321 F:      drivers/dma/dw-axi-dmac/
18322
18323 SYNOPSYS DESIGNWARE DMAC DRIVER
18324 M:      Viresh Kumar <vireshk@kernel.org>
18325 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18326 S:      Maintained
18327 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
18328 F:      drivers/dma/dw/
18329 F:      include/dt-bindings/dma/dw-dmac.h
18330 F:      include/linux/dma/dw.h
18331 F:      include/linux/platform_data/dma-dw.h
18332
18333 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
18334 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18335 L:      netdev@vger.kernel.org
18336 S:      Supported
18337 F:      drivers/net/ethernet/synopsys/
18338
18339 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
18340 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18341 L:      netdev@vger.kernel.org
18342 S:      Supported
18343 F:      drivers/net/pcs/pcs-xpcs.c
18344 F:      drivers/net/pcs/pcs-xpcs.h
18345 F:      include/linux/pcs/pcs-xpcs.h
18346
18347 SYNOPSYS DESIGNWARE I2C DRIVER
18348 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
18349 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18350 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
18351 L:      linux-i2c@vger.kernel.org
18352 S:      Maintained
18353 F:      drivers/i2c/busses/i2c-designware-*
18354
18355 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
18356 M:      Jaehoon Chung <jh80.chung@samsung.com>
18357 L:      linux-mmc@vger.kernel.org
18358 S:      Maintained
18359 F:      drivers/mmc/host/dw_mmc*
18360
18361 SYNOPSYS HSDK RESET CONTROLLER DRIVER
18362 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18363 S:      Supported
18364 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
18365 F:      drivers/reset/reset-hsdk.c
18366 F:      include/dt-bindings/reset/snps,hsdk-reset.h
18367
18368 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
18369 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
18370 M:      Manjunath M B <manjumb@synopsys.com>
18371 L:      linux-mmc@vger.kernel.org
18372 S:      Maintained
18373 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
18374
18375 SYSTEM CONFIGURATION (SYSCON)
18376 M:      Lee Jones <lee.jones@linaro.org>
18377 M:      Arnd Bergmann <arnd@arndb.de>
18378 S:      Supported
18379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
18380 F:      drivers/mfd/syscon.c
18381
18382 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
18383 M:      Sudeep Holla <sudeep.holla@arm.com>
18384 R:      Cristian Marussi <cristian.marussi@arm.com>
18385 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18386 S:      Maintained
18387 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
18388 F:      drivers/clk/clk-sc[mp]i.c
18389 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
18390 F:      drivers/firmware/arm_scmi/
18391 F:      drivers/firmware/arm_scpi.c
18392 F:      drivers/regulator/scmi-regulator.c
18393 F:      drivers/reset/reset-scmi.c
18394 F:      include/linux/sc[mp]i_protocol.h
18395 F:      include/trace/events/scmi.h
18396 F:      include/uapi/linux/virtio_scmi.h
18397
18398 SYSTEM RESET/SHUTDOWN DRIVERS
18399 M:      Sebastian Reichel <sre@kernel.org>
18400 L:      linux-pm@vger.kernel.org
18401 S:      Maintained
18402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
18403 F:      Documentation/devicetree/bindings/power/reset/
18404 F:      drivers/power/reset/
18405
18406 SYSTEM TRACE MODULE CLASS
18407 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
18408 S:      Maintained
18409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
18410 F:      Documentation/trace/stm.rst
18411 F:      drivers/hwtracing/stm/
18412 F:      include/linux/stm.h
18413 F:      include/uapi/linux/stm.h
18414
18415 SYSTEM76 ACPI DRIVER
18416 M:      Jeremy Soller <jeremy@system76.com>
18417 M:      System76 Product Development <productdev@system76.com>
18418 L:      platform-driver-x86@vger.kernel.org
18419 S:      Maintained
18420 F:      drivers/platform/x86/system76_acpi.c
18421
18422 SYSV FILESYSTEM
18423 M:      Christoph Hellwig <hch@infradead.org>
18424 S:      Maintained
18425 F:      Documentation/filesystems/sysv-fs.rst
18426 F:      fs/sysv/
18427 F:      include/linux/sysv_fs.h
18428
18429 TASKSTATS STATISTICS INTERFACE
18430 M:      Balbir Singh <bsingharora@gmail.com>
18431 S:      Maintained
18432 F:      Documentation/accounting/taskstats*
18433 F:      include/linux/taskstats*
18434 F:      kernel/taskstats.c
18435
18436 TC subsystem
18437 M:      Jamal Hadi Salim <jhs@mojatatu.com>
18438 M:      Cong Wang <xiyou.wangcong@gmail.com>
18439 M:      Jiri Pirko <jiri@resnulli.us>
18440 L:      netdev@vger.kernel.org
18441 S:      Maintained
18442 F:      include/net/pkt_cls.h
18443 F:      include/net/pkt_sched.h
18444 F:      include/net/tc_act/
18445 F:      include/uapi/linux/pkt_cls.h
18446 F:      include/uapi/linux/pkt_sched.h
18447 F:      include/uapi/linux/tc_act/
18448 F:      include/uapi/linux/tc_ematch/
18449 F:      net/sched/
18450
18451 TC90522 MEDIA DRIVER
18452 M:      Akihiro Tsukada <tskd08@gmail.com>
18453 L:      linux-media@vger.kernel.org
18454 S:      Odd Fixes
18455 F:      drivers/media/dvb-frontends/tc90522*
18456
18457 TCP LOW PRIORITY MODULE
18458 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
18459 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
18460 S:      Maintained
18461 W:      http://tcp-lp-mod.sourceforge.net/
18462 F:      net/ipv4/tcp_lp.c
18463
18464 TDA10071 MEDIA DRIVER
18465 M:      Antti Palosaari <crope@iki.fi>
18466 L:      linux-media@vger.kernel.org
18467 S:      Maintained
18468 W:      https://linuxtv.org
18469 W:      http://palosaari.fi/linux/
18470 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18471 T:      git git://linuxtv.org/anttip/media_tree.git
18472 F:      drivers/media/dvb-frontends/tda10071*
18473
18474 TDA18212 MEDIA DRIVER
18475 M:      Antti Palosaari <crope@iki.fi>
18476 L:      linux-media@vger.kernel.org
18477 S:      Maintained
18478 W:      https://linuxtv.org
18479 W:      http://palosaari.fi/linux/
18480 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18481 T:      git git://linuxtv.org/anttip/media_tree.git
18482 F:      drivers/media/tuners/tda18212*
18483
18484 TDA18218 MEDIA DRIVER
18485 M:      Antti Palosaari <crope@iki.fi>
18486 L:      linux-media@vger.kernel.org
18487 S:      Maintained
18488 W:      https://linuxtv.org
18489 W:      http://palosaari.fi/linux/
18490 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18491 T:      git git://linuxtv.org/anttip/media_tree.git
18492 F:      drivers/media/tuners/tda18218*
18493
18494 TDA18250 MEDIA DRIVER
18495 M:      Olli Salonen <olli.salonen@iki.fi>
18496 L:      linux-media@vger.kernel.org
18497 S:      Maintained
18498 W:      https://linuxtv.org
18499 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18500 T:      git git://linuxtv.org/media_tree.git
18501 F:      drivers/media/tuners/tda18250*
18502
18503 TDA18271 MEDIA DRIVER
18504 M:      Michael Krufky <mkrufky@linuxtv.org>
18505 L:      linux-media@vger.kernel.org
18506 S:      Maintained
18507 W:      https://linuxtv.org
18508 W:      http://github.com/mkrufky
18509 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18510 T:      git git://linuxtv.org/mkrufky/tuners.git
18511 F:      drivers/media/tuners/tda18271*
18512
18513 TDA1997x MEDIA DRIVER
18514 M:      Tim Harvey <tharvey@gateworks.com>
18515 L:      linux-media@vger.kernel.org
18516 S:      Maintained
18517 W:      https://linuxtv.org
18518 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18519 F:      drivers/media/i2c/tda1997x.*
18520
18521 TDA827x MEDIA DRIVER
18522 M:      Michael Krufky <mkrufky@linuxtv.org>
18523 L:      linux-media@vger.kernel.org
18524 S:      Maintained
18525 W:      https://linuxtv.org
18526 W:      http://github.com/mkrufky
18527 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18528 T:      git git://linuxtv.org/mkrufky/tuners.git
18529 F:      drivers/media/tuners/tda8290.*
18530
18531 TDA8290 MEDIA DRIVER
18532 M:      Michael Krufky <mkrufky@linuxtv.org>
18533 L:      linux-media@vger.kernel.org
18534 S:      Maintained
18535 W:      https://linuxtv.org
18536 W:      http://github.com/mkrufky
18537 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18538 T:      git git://linuxtv.org/mkrufky/tuners.git
18539 F:      drivers/media/tuners/tda8290.*
18540
18541 TDA9840 MEDIA DRIVER
18542 M:      Hans Verkuil <hverkuil@xs4all.nl>
18543 L:      linux-media@vger.kernel.org
18544 S:      Maintained
18545 W:      https://linuxtv.org
18546 T:      git git://linuxtv.org/media_tree.git
18547 F:      drivers/media/i2c/tda9840*
18548
18549 TEA5761 TUNER DRIVER
18550 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18551 L:      linux-media@vger.kernel.org
18552 S:      Odd fixes
18553 W:      https://linuxtv.org
18554 T:      git git://linuxtv.org/media_tree.git
18555 F:      drivers/media/tuners/tea5761.*
18556
18557 TEA5767 TUNER DRIVER
18558 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18559 L:      linux-media@vger.kernel.org
18560 S:      Maintained
18561 W:      https://linuxtv.org
18562 T:      git git://linuxtv.org/media_tree.git
18563 F:      drivers/media/tuners/tea5767.*
18564
18565 TEA6415C MEDIA DRIVER
18566 M:      Hans Verkuil <hverkuil@xs4all.nl>
18567 L:      linux-media@vger.kernel.org
18568 S:      Maintained
18569 W:      https://linuxtv.org
18570 T:      git git://linuxtv.org/media_tree.git
18571 F:      drivers/media/i2c/tea6415c*
18572
18573 TEA6420 MEDIA DRIVER
18574 M:      Hans Verkuil <hverkuil@xs4all.nl>
18575 L:      linux-media@vger.kernel.org
18576 S:      Maintained
18577 W:      https://linuxtv.org
18578 T:      git git://linuxtv.org/media_tree.git
18579 F:      drivers/media/i2c/tea6420*
18580
18581 TEAM DRIVER
18582 M:      Jiri Pirko <jiri@resnulli.us>
18583 L:      netdev@vger.kernel.org
18584 S:      Supported
18585 F:      drivers/net/team/
18586 F:      include/linux/if_team.h
18587 F:      include/uapi/linux/if_team.h
18588
18589 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18590 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
18591 S:      Maintained
18592 F:      arch/x86/platform/ts5500/
18593
18594 TECHNOTREND USB IR RECEIVER
18595 M:      Sean Young <sean@mess.org>
18596 L:      linux-media@vger.kernel.org
18597 S:      Maintained
18598 F:      drivers/media/rc/ttusbir.c
18599
18600 TECHWELL TW9910 VIDEO DECODER
18601 L:      linux-media@vger.kernel.org
18602 S:      Orphan
18603 F:      drivers/media/i2c/tw9910.c
18604 F:      include/media/i2c/tw9910.h
18605
18606 TEE SUBSYSTEM
18607 M:      Jens Wiklander <jens.wiklander@linaro.org>
18608 R:      Sumit Garg <sumit.garg@linaro.org>
18609 L:      op-tee@lists.trustedfirmware.org
18610 S:      Maintained
18611 F:      Documentation/staging/tee.rst
18612 F:      drivers/tee/
18613 F:      include/linux/tee_drv.h
18614 F:      include/uapi/linux/tee.h
18615
18616 TEGRA ARCHITECTURE SUPPORT
18617 M:      Thierry Reding <thierry.reding@gmail.com>
18618 M:      Jonathan Hunter <jonathanh@nvidia.com>
18619 L:      linux-tegra@vger.kernel.org
18620 S:      Supported
18621 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
18622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18623 N:      [^a-z]tegra
18624
18625 TEGRA CLOCK DRIVER
18626 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
18627 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
18628 S:      Supported
18629 F:      drivers/clk/tegra/
18630
18631 TEGRA DMA DRIVERS
18632 M:      Laxman Dewangan <ldewangan@nvidia.com>
18633 M:      Jon Hunter <jonathanh@nvidia.com>
18634 S:      Supported
18635 F:      drivers/dma/tegra*
18636
18637 TEGRA I2C DRIVER
18638 M:      Laxman Dewangan <ldewangan@nvidia.com>
18639 R:      Dmitry Osipenko <digetx@gmail.com>
18640 S:      Supported
18641 F:      drivers/i2c/busses/i2c-tegra.c
18642
18643 TEGRA IOMMU DRIVERS
18644 M:      Thierry Reding <thierry.reding@gmail.com>
18645 R:      Krishna Reddy <vdumpa@nvidia.com>
18646 L:      linux-tegra@vger.kernel.org
18647 S:      Supported
18648 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18649 F:      drivers/iommu/tegra*
18650
18651 TEGRA KBC DRIVER
18652 M:      Laxman Dewangan <ldewangan@nvidia.com>
18653 S:      Supported
18654 F:      drivers/input/keyboard/tegra-kbc.c
18655
18656 TEGRA NAND DRIVER
18657 M:      Stefan Agner <stefan@agner.ch>
18658 M:      Lucas Stach <dev@lynxeye.de>
18659 S:      Maintained
18660 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18661 F:      drivers/mtd/nand/raw/tegra_nand.c
18662
18663 TEGRA PWM DRIVER
18664 M:      Thierry Reding <thierry.reding@gmail.com>
18665 S:      Supported
18666 F:      drivers/pwm/pwm-tegra.c
18667
18668 TEGRA SERIAL DRIVER
18669 M:      Laxman Dewangan <ldewangan@nvidia.com>
18670 S:      Supported
18671 F:      drivers/tty/serial/serial-tegra.c
18672
18673 TEGRA SPI DRIVER
18674 M:      Laxman Dewangan <ldewangan@nvidia.com>
18675 S:      Supported
18676 F:      drivers/spi/spi-tegra*
18677
18678 TEGRA QUAD SPI DRIVER
18679 M:      Thierry Reding <thierry.reding@gmail.com>
18680 M:      Jonathan Hunter <jonathanh@nvidia.com>
18681 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18682 L:      linux-tegra@vger.kernel.org
18683 S:      Maintained
18684 F:      drivers/spi/spi-tegra210-quad.c
18685
18686 TEGRA VIDEO DRIVER
18687 M:      Thierry Reding <thierry.reding@gmail.com>
18688 M:      Jonathan Hunter <jonathanh@nvidia.com>
18689 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18690 L:      linux-media@vger.kernel.org
18691 L:      linux-tegra@vger.kernel.org
18692 S:      Maintained
18693 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
18694 F:      drivers/staging/media/tegra-video/
18695
18696 TEGRA XUSB PADCTL DRIVER
18697 M:      JC Kuo <jckuo@nvidia.com>
18698 S:      Supported
18699 F:      drivers/phy/tegra/xusb*
18700
18701 TEHUTI ETHERNET DRIVER
18702 M:      Andy Gospodarek <andy@greyhouse.net>
18703 L:      netdev@vger.kernel.org
18704 S:      Supported
18705 F:      drivers/net/ethernet/tehuti/*
18706
18707 TELECOM CLOCK DRIVER FOR MCPL0010
18708 M:      Mark Gross <markgross@kernel.org>
18709 S:      Supported
18710 F:      drivers/char/tlclk.c
18711
18712 TEMPO SEMICONDUCTOR DRIVERS
18713 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
18714 S:      Maintained
18715 F:      Documentation/devicetree/bindings/sound/tscs*.txt
18716 F:      sound/soc/codecs/tscs*.c
18717 F:      sound/soc/codecs/tscs*.h
18718
18719 TENSILICA XTENSA PORT (xtensa)
18720 M:      Chris Zankel <chris@zankel.net>
18721 M:      Max Filippov <jcmvbkbc@gmail.com>
18722 L:      linux-xtensa@linux-xtensa.org
18723 S:      Maintained
18724 T:      git git://github.com/czankel/xtensa-linux.git
18725 F:      arch/xtensa/
18726 F:      drivers/irqchip/irq-xtensa-*
18727
18728 TEXAS INSTRUMENTS ASoC DRIVERS
18729 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18730 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18731 S:      Maintained
18732 F:      sound/soc/ti/
18733
18734 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18735 M:      Ricardo Ribalda <ribalda@kernel.org>
18736 L:      linux-iio@vger.kernel.org
18737 S:      Supported
18738 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18739 F:      drivers/iio/dac/ti-dac7612.c
18740
18741 TEXAS INSTRUMENTS DMA DRIVERS
18742 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18743 L:      dmaengine@vger.kernel.org
18744 S:      Maintained
18745 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18746 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
18747 F:      Documentation/devicetree/bindings/dma/ti/
18748 F:      drivers/dma/ti/
18749 X:      drivers/dma/ti/cppi41.c
18750 F:      include/linux/dma/k3-udma-glue.h
18751 F:      include/linux/dma/ti-cppi5.h
18752 F:      include/linux/dma/k3-psil.h
18753
18754 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18755 M:      Nishanth Menon <nm@ti.com>
18756 M:      Tero Kristo <kristo@kernel.org>
18757 M:      Santosh Shilimkar <ssantosh@kernel.org>
18758 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18759 S:      Maintained
18760 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18761 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
18762 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
18763 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18764 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18765 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
18766 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
18767 F:      drivers/clk/keystone/sci-clk.c
18768 F:      drivers/firmware/ti_sci*
18769 F:      drivers/irqchip/irq-ti-sci-inta.c
18770 F:      drivers/irqchip/irq-ti-sci-intr.c
18771 F:      drivers/reset/reset-ti-sci.c
18772 F:      drivers/soc/ti/ti_sci_inta_msi.c
18773 F:      drivers/soc/ti/ti_sci_pm_domains.c
18774 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
18775 F:      include/linux/soc/ti/ti_sci_inta_msi.h
18776 F:      include/linux/soc/ti/ti_sci_protocol.h
18777
18778 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18779 M:      Robert Marko <robert.marko@sartura.hr>
18780 M:      Luka Perkov <luka.perkov@sartura.hr>
18781 L:      linux-hwmon@vger.kernel.org
18782 S:      Maintained
18783 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18784 F:      Documentation/hwmon/tps23861.rst
18785 F:      drivers/hwmon/tps23861.c
18786
18787 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
18788 M:      Puranjay Mohan <puranjay12@gmail.com>
18789 L:      linux-iio@vger.kernel.org
18790 S:      Supported
18791 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
18792 F:      drivers/iio/temperature/tmp117.c
18793
18794 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18795 M:      Hans Verkuil <hverkuil@xs4all.nl>
18796 L:      linux-media@vger.kernel.org
18797 S:      Maintained
18798 W:      https://linuxtv.org
18799 T:      git git://linuxtv.org/media_tree.git
18800 F:      drivers/media/radio/radio-raremono.c
18801
18802 THERMAL
18803 M:      Rafael J. Wysocki <rafael@kernel.org>
18804 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18805 R:      Amit Kucheria <amitk@kernel.org>
18806 R:      Zhang Rui <rui.zhang@intel.com>
18807 L:      linux-pm@vger.kernel.org
18808 S:      Supported
18809 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
18811 F:      Documentation/ABI/testing/sysfs-class-thermal
18812 F:      Documentation/devicetree/bindings/thermal/
18813 F:      Documentation/driver-api/thermal/
18814 F:      drivers/thermal/
18815 F:      include/linux/cpu_cooling.h
18816 F:      include/linux/thermal.h
18817 F:      include/uapi/linux/thermal.h
18818 F:      tools/thermal/
18819
18820 THERMAL DRIVER FOR AMLOGIC SOCS
18821 M:      Guillaume La Roque <glaroque@baylibre.com>
18822 L:      linux-pm@vger.kernel.org
18823 L:      linux-amlogic@lists.infradead.org
18824 S:      Supported
18825 W:      http://linux-meson.com/
18826 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18827 F:      drivers/thermal/amlogic_thermal.c
18828
18829 THERMAL/CPU_COOLING
18830 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
18831 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18832 M:      Viresh Kumar <viresh.kumar@linaro.org>
18833 R:      Lukasz Luba <lukasz.luba@arm.com>
18834 L:      linux-pm@vger.kernel.org
18835 S:      Supported
18836 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
18837 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
18838 F:      drivers/thermal/cpufreq_cooling.c
18839 F:      drivers/thermal/cpuidle_cooling.c
18840 F:      include/linux/cpu_cooling.h
18841
18842 THERMAL/POWER_ALLOCATOR
18843 M:      Lukasz Luba <lukasz.luba@arm.com>
18844 L:      linux-pm@vger.kernel.org
18845 S:      Maintained
18846 F:      Documentation/driver-api/thermal/power_allocator.rst
18847 F:      drivers/thermal/gov_power_allocator.c
18848 F:      include/trace/events/thermal_power_allocator.h
18849
18850 THINKPAD ACPI EXTRAS DRIVER
18851 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18852 L:      ibm-acpi-devel@lists.sourceforge.net
18853 L:      platform-driver-x86@vger.kernel.org
18854 S:      Maintained
18855 W:      http://ibm-acpi.sourceforge.net
18856 W:      http://thinkwiki.org/wiki/Ibm-acpi
18857 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18858 F:      drivers/platform/x86/thinkpad_acpi.c
18859
18860 THINKPAD LMI DRIVER
18861 M:      Mark Pearson <markpearson@lenovo.com>
18862 L:      platform-driver-x86@vger.kernel.org
18863 S:      Maintained
18864 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
18865 F:      drivers/platform/x86/think-lmi.?
18866
18867 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18868 M:      Isaac Hazan <isaac.hazan@intel.com>
18869 L:      linux-usb@vger.kernel.org
18870 S:      Maintained
18871 F:      drivers/thunderbolt/dma_test.c
18872
18873 THUNDERBOLT DRIVER
18874 M:      Andreas Noever <andreas.noever@gmail.com>
18875 M:      Michael Jamet <michael.jamet@intel.com>
18876 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18877 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18878 L:      linux-usb@vger.kernel.org
18879 S:      Maintained
18880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18881 F:      Documentation/admin-guide/thunderbolt.rst
18882 F:      drivers/thunderbolt/
18883 F:      include/linux/thunderbolt.h
18884
18885 THUNDERBOLT NETWORK DRIVER
18886 M:      Michael Jamet <michael.jamet@intel.com>
18887 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18888 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18889 L:      netdev@vger.kernel.org
18890 S:      Maintained
18891 F:      drivers/net/thunderbolt.c
18892
18893 THUNDERX GPIO DRIVER
18894 M:      Robert Richter <rric@kernel.org>
18895 S:      Odd Fixes
18896 F:      drivers/gpio/gpio-thunderx.c
18897
18898 TI ADS131E0X ADC SERIES DRIVER
18899 M:      Tomislav Denis <tomislav.denis@avl.com>
18900 L:      linux-iio@vger.kernel.org
18901 S:      Maintained
18902 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18903 F:      drivers/iio/adc/ti-ads131e08.c
18904
18905 TI AM437X VPFE DRIVER
18906 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18907 L:      linux-media@vger.kernel.org
18908 S:      Maintained
18909 W:      https://linuxtv.org
18910 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18911 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18912 F:      drivers/media/platform/am437x/
18913
18914 TI BANDGAP AND THERMAL DRIVER
18915 M:      Eduardo Valentin <edubezval@gmail.com>
18916 M:      Keerthy <j-keerthy@ti.com>
18917 L:      linux-pm@vger.kernel.org
18918 L:      linux-omap@vger.kernel.org
18919 S:      Maintained
18920 F:      drivers/thermal/ti-soc-thermal/
18921
18922 TI BQ27XXX POWER SUPPLY DRIVER
18923 F:      drivers/power/supply/bq27xxx_battery.c
18924 F:      drivers/power/supply/bq27xxx_battery_i2c.c
18925 F:      include/linux/power/bq27xxx_battery.h
18926
18927 TI CDCE706 CLOCK DRIVER
18928 M:      Max Filippov <jcmvbkbc@gmail.com>
18929 S:      Maintained
18930 F:      drivers/clk/clk-cdce706.c
18931
18932 TI CLOCK DRIVER
18933 M:      Tero Kristo <kristo@kernel.org>
18934 L:      linux-omap@vger.kernel.org
18935 S:      Odd Fixes
18936 F:      drivers/clk/ti/
18937 F:      include/linux/clk/ti.h
18938
18939 TI DAVINCI MACHINE SUPPORT
18940 M:      Sekhar Nori <nsekhar@ti.com>
18941 R:      Bartosz Golaszewski <brgl@bgdev.pl>
18942 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18943 S:      Supported
18944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18945 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18946 F:      arch/arm/boot/dts/da850*
18947 F:      arch/arm/mach-davinci/
18948 F:      drivers/i2c/busses/i2c-davinci.c
18949
18950 TI DAVINCI SERIES CLOCK DRIVER
18951 M:      David Lechner <david@lechnology.com>
18952 R:      Sekhar Nori <nsekhar@ti.com>
18953 S:      Maintained
18954 F:      Documentation/devicetree/bindings/clock/ti/davinci/
18955 F:      drivers/clk/davinci/
18956
18957 TI DAVINCI SERIES GPIO DRIVER
18958 M:      Keerthy <j-keerthy@ti.com>
18959 L:      linux-gpio@vger.kernel.org
18960 S:      Maintained
18961 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
18962 F:      drivers/gpio/gpio-davinci.c
18963
18964 TI DAVINCI SERIES MEDIA DRIVER
18965 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18966 L:      linux-media@vger.kernel.org
18967 S:      Maintained
18968 W:      https://linuxtv.org
18969 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18970 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18971 F:      drivers/media/platform/davinci/
18972 F:      include/media/davinci/
18973
18974 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18975 R:      David Lechner <david@lechnology.com>
18976 L:      linux-iio@vger.kernel.org
18977 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
18978 F:      drivers/counter/ti-eqep.c
18979
18980 TI ETHERNET SWITCH DRIVER (CPSW)
18981 R:      Grygorii Strashko <grygorii.strashko@ti.com>
18982 L:      linux-omap@vger.kernel.org
18983 L:      netdev@vger.kernel.org
18984 S:      Maintained
18985 F:      drivers/net/ethernet/ti/cpsw*
18986 F:      drivers/net/ethernet/ti/davinci*
18987
18988 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18989 M:      Alex Dubov <oakad@yahoo.com>
18990 S:      Maintained
18991 W:      http://tifmxx.berlios.de/
18992 F:      drivers/memstick/host/tifm_ms.c
18993 F:      drivers/misc/tifm*
18994 F:      drivers/mmc/host/tifm_sd.c
18995 F:      include/linux/tifm.h
18996
18997 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
18998 M:      Santosh Shilimkar <ssantosh@kernel.org>
18999 L:      linux-kernel@vger.kernel.org
19000 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19001 S:      Maintained
19002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
19003 F:      drivers/soc/ti/*
19004
19005 TI LM49xxx FAMILY ASoC CODEC DRIVERS
19006 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
19007 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
19008 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19009 S:      Maintained
19010 F:      sound/soc/codecs/isabelle*
19011 F:      sound/soc/codecs/lm49453*
19012
19013 TI PCM3060 ASoC CODEC DRIVER
19014 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
19015 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19016 S:      Maintained
19017 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
19018 F:      sound/soc/codecs/pcm3060*
19019
19020 TI TAS571X FAMILY ASoC CODEC DRIVER
19021 M:      Kevin Cernekee <cernekee@chromium.org>
19022 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19023 S:      Odd Fixes
19024 F:      sound/soc/codecs/tas571x*
19025
19026 TI TRF7970A NFC DRIVER
19027 M:      Mark Greer <mgreer@animalcreek.com>
19028 L:      linux-wireless@vger.kernel.org
19029 L:      linux-nfc@lists.01.org (subscribers-only)
19030 S:      Supported
19031 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
19032 F:      drivers/nfc/trf7970a.c
19033
19034 TI TSC2046 ADC DRIVER
19035 M:      Oleksij Rempel <o.rempel@pengutronix.de>
19036 R:      kernel@pengutronix.de
19037 L:      linux-iio@vger.kernel.org
19038 S:      Maintained
19039 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
19040 F:      drivers/iio/adc/ti-tsc2046.c
19041
19042 TI TWL4030 SERIES SOC CODEC DRIVER
19043 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19044 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19045 S:      Maintained
19046 F:      sound/soc/codecs/twl4030*
19047
19048 TI VPE/CAL DRIVERS
19049 M:      Benoit Parrot <bparrot@ti.com>
19050 L:      linux-media@vger.kernel.org
19051 S:      Maintained
19052 W:      http://linuxtv.org/
19053 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19054 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
19055 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
19056 F:      drivers/media/platform/ti-vpe/
19057
19058 TI WILINK WIRELESS DRIVERS
19059 L:      linux-wireless@vger.kernel.org
19060 S:      Orphan
19061 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
19062 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
19063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
19064 F:      drivers/net/wireless/ti/
19065 F:      include/linux/wl12xx.h
19066
19067 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
19068 M:      John Stultz <john.stultz@linaro.org>
19069 M:      Thomas Gleixner <tglx@linutronix.de>
19070 R:      Stephen Boyd <sboyd@kernel.org>
19071 L:      linux-kernel@vger.kernel.org
19072 S:      Supported
19073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
19074 F:      include/linux/clocksource.h
19075 F:      include/linux/time.h
19076 F:      include/linux/timex.h
19077 F:      include/uapi/linux/time.h
19078 F:      include/uapi/linux/timex.h
19079 F:      kernel/time/alarmtimer.c
19080 F:      kernel/time/clocksource.c
19081 F:      kernel/time/ntp.c
19082 F:      kernel/time/time*.c
19083 F:      tools/testing/selftests/timers/
19084
19085 TIPC NETWORK LAYER
19086 M:      Jon Maloy <jmaloy@redhat.com>
19087 M:      Ying Xue <ying.xue@windriver.com>
19088 L:      netdev@vger.kernel.org (core kernel code)
19089 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
19090 S:      Maintained
19091 W:      http://tipc.sourceforge.net/
19092 F:      include/uapi/linux/tipc*.h
19093 F:      net/tipc/
19094
19095 TLAN NETWORK DRIVER
19096 M:      Samuel Chessman <chessman@tux.org>
19097 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
19098 S:      Maintained
19099 W:      http://sourceforge.net/projects/tlan/
19100 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
19101 F:      drivers/net/ethernet/ti/tlan.*
19102
19103 TM6000 VIDEO4LINUX DRIVER
19104 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19105 L:      linux-media@vger.kernel.org
19106 S:      Odd fixes
19107 W:      https://linuxtv.org
19108 T:      git git://linuxtv.org/media_tree.git
19109 F:      Documentation/admin-guide/media/tm6000*
19110 F:      drivers/media/usb/tm6000/
19111
19112 TMIO/SDHI MMC DRIVER
19113 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
19114 L:      linux-mmc@vger.kernel.org
19115 S:      Supported
19116 F:      drivers/mmc/host/renesas_sdhi*
19117 F:      drivers/mmc/host/tmio_mmc*
19118 F:      include/linux/mfd/tmio.h
19119
19120 TMP401 HARDWARE MONITOR DRIVER
19121 M:      Guenter Roeck <linux@roeck-us.net>
19122 L:      linux-hwmon@vger.kernel.org
19123 S:      Maintained
19124 F:      Documentation/hwmon/tmp401.rst
19125 F:      drivers/hwmon/tmp401.c
19126
19127 TMP513 HARDWARE MONITOR DRIVER
19128 M:      Eric Tremblay <etremblay@distech-controls.com>
19129 L:      linux-hwmon@vger.kernel.org
19130 S:      Maintained
19131 F:      Documentation/hwmon/tmp513.rst
19132 F:      drivers/hwmon/tmp513.c
19133
19134 TMPFS (SHMEM FILESYSTEM)
19135 M:      Hugh Dickins <hughd@google.com>
19136 L:      linux-mm@kvack.org
19137 S:      Maintained
19138 F:      include/linux/shmem_fs.h
19139 F:      mm/shmem.c
19140
19141 TOMOYO SECURITY MODULE
19142 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
19143 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
19144 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
19145 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
19146 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
19147 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
19148 S:      Maintained
19149 W:      https://tomoyo.osdn.jp/
19150 F:      security/tomoyo/
19151
19152 TOPSTAR LAPTOP EXTRAS DRIVER
19153 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
19154 L:      platform-driver-x86@vger.kernel.org
19155 S:      Maintained
19156 F:      drivers/platform/x86/topstar-laptop.c
19157
19158 TORTURE-TEST MODULES
19159 M:      Davidlohr Bueso <dave@stgolabs.net>
19160 M:      "Paul E. McKenney" <paulmck@kernel.org>
19161 M:      Josh Triplett <josh@joshtriplett.org>
19162 L:      linux-kernel@vger.kernel.org
19163 S:      Supported
19164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19165 F:      Documentation/RCU/torture.rst
19166 F:      kernel/locking/locktorture.c
19167 F:      kernel/rcu/rcuscale.c
19168 F:      kernel/rcu/rcutorture.c
19169 F:      kernel/rcu/refscale.c
19170 F:      kernel/torture.c
19171
19172 TOSHIBA ACPI EXTRAS DRIVER
19173 M:      Azael Avalos <coproscefalo@gmail.com>
19174 L:      platform-driver-x86@vger.kernel.org
19175 S:      Maintained
19176 F:      drivers/platform/x86/toshiba_acpi.c
19177
19178 TOSHIBA BLUETOOTH DRIVER
19179 M:      Azael Avalos <coproscefalo@gmail.com>
19180 L:      platform-driver-x86@vger.kernel.org
19181 S:      Maintained
19182 F:      drivers/platform/x86/toshiba_bluetooth.c
19183
19184 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
19185 M:      Azael Avalos <coproscefalo@gmail.com>
19186 L:      platform-driver-x86@vger.kernel.org
19187 S:      Maintained
19188 F:      drivers/platform/x86/toshiba_haps.c
19189
19190 TOSHIBA SMM DRIVER
19191 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
19192 S:      Maintained
19193 W:      http://www.buzzard.org.uk/toshiba/
19194 F:      drivers/char/toshiba.c
19195 F:      include/linux/toshiba.h
19196 F:      include/uapi/linux/toshiba.h
19197
19198 TOSHIBA TC358743 DRIVER
19199 M:      Mats Randgaard <matrandg@cisco.com>
19200 L:      linux-media@vger.kernel.org
19201 S:      Maintained
19202 F:      drivers/media/i2c/tc358743*
19203 F:      include/media/i2c/tc358743.h
19204
19205 TOSHIBA WMI HOTKEYS DRIVER
19206 M:      Azael Avalos <coproscefalo@gmail.com>
19207 L:      platform-driver-x86@vger.kernel.org
19208 S:      Maintained
19209 F:      drivers/platform/x86/toshiba-wmi.c
19210
19211 TPM DEVICE DRIVER
19212 M:      Peter Huewe <peterhuewe@gmx.de>
19213 M:      Jarkko Sakkinen <jarkko@kernel.org>
19214 R:      Jason Gunthorpe <jgg@ziepe.ca>
19215 L:      linux-integrity@vger.kernel.org
19216 S:      Maintained
19217 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
19218 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
19219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
19220 F:      drivers/char/tpm/
19221
19222 TRACING
19223 M:      Steven Rostedt <rostedt@goodmis.org>
19224 M:      Ingo Molnar <mingo@redhat.com>
19225 S:      Maintained
19226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
19227 F:      Documentation/trace/ftrace.rst
19228 F:      arch/*/*/*/ftrace.h
19229 F:      arch/*/kernel/ftrace.c
19230 F:      fs/tracefs/
19231 F:      include/*/ftrace.h
19232 F:      include/linux/trace*.h
19233 F:      include/trace/
19234 F:      kernel/trace/
19235 F:      tools/testing/selftests/ftrace/
19236
19237 TRACING MMIO ACCESSES (MMIOTRACE)
19238 M:      Steven Rostedt <rostedt@goodmis.org>
19239 M:      Ingo Molnar <mingo@kernel.org>
19240 R:      Karol Herbst <karolherbst@gmail.com>
19241 R:      Pekka Paalanen <ppaalanen@gmail.com>
19242 L:      linux-kernel@vger.kernel.org
19243 L:      nouveau@lists.freedesktop.org
19244 S:      Maintained
19245 F:      arch/x86/mm/kmmio.c
19246 F:      arch/x86/mm/mmio-mod.c
19247 F:      arch/x86/mm/testmmiotrace.c
19248 F:      include/linux/mmiotrace.h
19249 F:      kernel/trace/trace_mmiotrace.c
19250
19251 TRACING OS NOISE / LATENCY TRACERS
19252 M:      Steven Rostedt <rostedt@goodmis.org>
19253 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
19254 S:      Maintained
19255 F:      kernel/trace/trace_osnoise.c
19256 F:      include/trace/events/osnoise.h
19257 F:      kernel/trace/trace_hwlat.c
19258 F:      kernel/trace/trace_irqsoff.c
19259 F:      kernel/trace/trace_sched_wakeup.c
19260 F:      Documentation/trace/osnoise-tracer.rst
19261 F:      Documentation/trace/timerlat-tracer.rst
19262 F:      Documentation/trace/hwlat_detector.rst
19263 F:      arch/*/kernel/trace.c
19264
19265 TRADITIONAL CHINESE DOCUMENTATION
19266 M:      Hu Haowen <src.res@email.cn>
19267 L:      linux-doc-tw-discuss@lists.sourceforge.net
19268 S:      Maintained
19269 W:      https://github.com/srcres258/linux-doc
19270 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
19271 F:      Documentation/translations/zh_TW/
19272
19273 TRIVIAL PATCHES
19274 M:      Jiri Kosina <trivial@kernel.org>
19275 S:      Maintained
19276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
19277 K:      ^Subject:.*(?i)trivial
19278
19279 TTY LAYER
19280 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19281 M:      Jiri Slaby <jirislaby@kernel.org>
19282 S:      Supported
19283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
19284 F:      Documentation/driver-api/serial/
19285 F:      drivers/tty/
19286 F:      drivers/tty/serial/serial_core.c
19287 F:      include/linux/selection.h
19288 F:      include/linux/serial.h
19289 F:      include/linux/serial_core.h
19290 F:      include/linux/sysrq.h
19291 F:      include/linux/tty*.h
19292 F:      include/linux/vt.h
19293 F:      include/linux/vt_*.h
19294 F:      include/uapi/linux/serial.h
19295 F:      include/uapi/linux/serial_core.h
19296 F:      include/uapi/linux/tty.h
19297
19298 TUA9001 MEDIA DRIVER
19299 M:      Antti Palosaari <crope@iki.fi>
19300 L:      linux-media@vger.kernel.org
19301 S:      Maintained
19302 W:      https://linuxtv.org
19303 W:      http://palosaari.fi/linux/
19304 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19305 T:      git git://linuxtv.org/anttip/media_tree.git
19306 F:      drivers/media/tuners/tua9001*
19307
19308 TULIP NETWORK DRIVERS
19309 L:      netdev@vger.kernel.org
19310 L:      linux-parisc@vger.kernel.org
19311 S:      Orphan
19312 F:      drivers/net/ethernet/dec/tulip/
19313
19314 TUN/TAP driver
19315 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
19316 S:      Maintained
19317 W:      http://vtun.sourceforge.net/tun
19318 F:      Documentation/networking/tuntap.rst
19319 F:      arch/um/os-Linux/drivers/
19320
19321 TURBOCHANNEL SUBSYSTEM
19322 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
19323 M:      Ralf Baechle <ralf@linux-mips.org>
19324 L:      linux-mips@vger.kernel.org
19325 S:      Maintained
19326 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
19327 F:      drivers/tc/
19328 F:      include/linux/tc.h
19329
19330 TURBOSTAT UTILITY
19331 M:      "Len Brown" <lenb@kernel.org>
19332 L:      linux-pm@vger.kernel.org
19333 S:      Supported
19334 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19335 B:      https://bugzilla.kernel.org
19336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
19337 F:      tools/power/x86/turbostat/
19338
19339 TW5864 VIDEO4LINUX DRIVER
19340 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19341 M:      Anton Sviridenko <anton@corp.bluecherry.net>
19342 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
19343 M:      Andrey Utkin <andrey_utkin@fastmail.com>
19344 L:      linux-media@vger.kernel.org
19345 S:      Supported
19346 F:      drivers/media/pci/tw5864/
19347
19348 TW68 VIDEO4LINUX DRIVER
19349 M:      Hans Verkuil <hverkuil@xs4all.nl>
19350 L:      linux-media@vger.kernel.org
19351 S:      Odd Fixes
19352 W:      https://linuxtv.org
19353 T:      git git://linuxtv.org/media_tree.git
19354 F:      drivers/media/pci/tw68/
19355
19356 TW686X VIDEO4LINUX DRIVER
19357 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19358 L:      linux-media@vger.kernel.org
19359 S:      Maintained
19360 W:      http://linuxtv.org
19361 T:      git git://linuxtv.org/media_tree.git
19362 F:      drivers/media/pci/tw686x/
19363
19364 UACCE ACCELERATOR FRAMEWORK
19365 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
19366 M:      Zhou Wang <wangzhou1@hisilicon.com>
19367 L:      linux-accelerators@lists.ozlabs.org
19368 L:      linux-kernel@vger.kernel.org
19369 S:      Maintained
19370 F:      Documentation/ABI/testing/sysfs-driver-uacce
19371 F:      Documentation/misc-devices/uacce.rst
19372 F:      drivers/misc/uacce/
19373 F:      include/linux/uacce.h
19374 F:      include/uapi/misc/uacce/
19375
19376 UBI FILE SYSTEM (UBIFS)
19377 M:      Richard Weinberger <richard@nod.at>
19378 L:      linux-mtd@lists.infradead.org
19379 S:      Supported
19380 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
19381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19383 F:      Documentation/filesystems/ubifs-authentication.rst
19384 F:      Documentation/filesystems/ubifs.rst
19385 F:      fs/ubifs/
19386
19387 UCLINUX (M68KNOMMU AND COLDFIRE)
19388 M:      Greg Ungerer <gerg@linux-m68k.org>
19389 L:      linux-m68k@lists.linux-m68k.org
19390 L:      uclinux-dev@uclinux.org  (subscribers-only)
19391 S:      Maintained
19392 W:      http://www.linux-m68k.org/
19393 W:      http://www.uclinux.org/
19394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
19395 F:      arch/m68k/*/*_no.*
19396 F:      arch/m68k/68*/
19397 F:      arch/m68k/coldfire/
19398 F:      arch/m68k/include/asm/*_no.*
19399
19400 UDF FILESYSTEM
19401 M:      Jan Kara <jack@suse.com>
19402 S:      Maintained
19403 F:      Documentation/filesystems/udf.rst
19404 F:      fs/udf/
19405
19406 UDRAW TABLET
19407 M:      Bastien Nocera <hadess@hadess.net>
19408 L:      linux-input@vger.kernel.org
19409 S:      Maintained
19410 F:      drivers/hid/hid-udraw-ps3.c
19411
19412 UFS FILESYSTEM
19413 M:      Evgeniy Dushistov <dushistov@mail.ru>
19414 S:      Maintained
19415 F:      Documentation/admin-guide/ufs.rst
19416 F:      fs/ufs/
19417
19418 UHID USERSPACE HID IO DRIVER
19419 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19420 L:      linux-input@vger.kernel.org
19421 S:      Maintained
19422 F:      drivers/hid/uhid.c
19423 F:      include/uapi/linux/uhid.h
19424
19425 ULPI BUS
19426 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19427 L:      linux-usb@vger.kernel.org
19428 S:      Maintained
19429 F:      drivers/usb/common/ulpi.c
19430 F:      include/linux/ulpi/
19431
19432 UNICODE SUBSYSTEM
19433 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
19434 L:      linux-fsdevel@vger.kernel.org
19435 S:      Supported
19436 F:      fs/unicode/
19437
19438 UNIFDEF
19439 M:      Tony Finch <dot@dotat.at>
19440 S:      Maintained
19441 W:      http://dotat.at/prog/unifdef
19442 F:      scripts/unifdef.c
19443
19444 UNIFORM CDROM DRIVER
19445 M:      Phillip Potter <phil@philpotter.co.uk>
19446 S:      Maintained
19447 F:      Documentation/cdrom/
19448 F:      drivers/cdrom/cdrom.c
19449 F:      include/linux/cdrom.h
19450 F:      include/uapi/linux/cdrom.h
19451
19452 UNISYS S-PAR DRIVERS
19453 M:      David Kershner <david.kershner@unisys.com>
19454 L:      sparmaintainer@unisys.com (Unisys internal)
19455 S:      Supported
19456 F:      drivers/staging/unisys/
19457 F:      drivers/visorbus/
19458 F:      include/linux/visorbus.h
19459
19460 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
19461 R:      Alim Akhtar <alim.akhtar@samsung.com>
19462 R:      Avri Altman <avri.altman@wdc.com>
19463 L:      linux-scsi@vger.kernel.org
19464 S:      Supported
19465 F:      Documentation/scsi/ufs.rst
19466 F:      drivers/scsi/ufs/
19467
19468 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
19469 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
19470 L:      linux-scsi@vger.kernel.org
19471 S:      Supported
19472 F:      drivers/scsi/ufs/*dwc*
19473
19474 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
19475 M:      Stanley Chu <stanley.chu@mediatek.com>
19476 L:      linux-scsi@vger.kernel.org
19477 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
19478 S:      Maintained
19479 F:      drivers/scsi/ufs/ufs-mediatek*
19480
19481 UNSORTED BLOCK IMAGES (UBI)
19482 M:      Richard Weinberger <richard@nod.at>
19483 L:      linux-mtd@lists.infradead.org
19484 S:      Supported
19485 W:      http://www.linux-mtd.infradead.org/
19486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19488 F:      drivers/mtd/ubi/
19489 F:      include/linux/mtd/ubi.h
19490 F:      include/uapi/mtd/ubi-user.h
19491
19492 USB "USBNET" DRIVER FRAMEWORK
19493 M:      Oliver Neukum <oneukum@suse.com>
19494 L:      netdev@vger.kernel.org
19495 S:      Maintained
19496 W:      http://www.linux-usb.org/usbnet
19497 F:      drivers/net/usb/usbnet.c
19498 F:      include/linux/usb/usbnet.h
19499
19500 USB ACM DRIVER
19501 M:      Oliver Neukum <oneukum@suse.com>
19502 L:      linux-usb@vger.kernel.org
19503 S:      Maintained
19504 F:      Documentation/usb/acm.rst
19505 F:      drivers/usb/class/cdc-acm.*
19506
19507 USB APPLE MFI FASTCHARGE DRIVER
19508 M:      Bastien Nocera <hadess@hadess.net>
19509 L:      linux-usb@vger.kernel.org
19510 S:      Maintained
19511 F:      drivers/usb/misc/apple-mfi-fastcharge.c
19512
19513 USB AR5523 WIRELESS DRIVER
19514 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
19515 L:      linux-wireless@vger.kernel.org
19516 S:      Maintained
19517 F:      drivers/net/wireless/ath/ar5523/
19518
19519 USB ATTACHED SCSI
19520 M:      Oliver Neukum <oneukum@suse.com>
19521 L:      linux-usb@vger.kernel.org
19522 L:      linux-scsi@vger.kernel.org
19523 S:      Maintained
19524 F:      drivers/usb/storage/uas.c
19525
19526 USB CDC ETHERNET DRIVER
19527 M:      Oliver Neukum <oliver@neukum.org>
19528 L:      linux-usb@vger.kernel.org
19529 S:      Maintained
19530 F:      drivers/net/usb/cdc_*.c
19531 F:      include/uapi/linux/usb/cdc.h
19532
19533 USB CHAOSKEY DRIVER
19534 M:      Keith Packard <keithp@keithp.com>
19535 L:      linux-usb@vger.kernel.org
19536 S:      Maintained
19537 F:      drivers/usb/misc/chaoskey.c
19538
19539 USB CYPRESS C67X00 DRIVER
19540 L:      linux-usb@vger.kernel.org
19541 S:      Orphan
19542 F:      drivers/usb/c67x00/
19543
19544 USB DAVICOM DM9601 DRIVER
19545 M:      Peter Korsgaard <peter@korsgaard.com>
19546 L:      netdev@vger.kernel.org
19547 S:      Maintained
19548 W:      http://www.linux-usb.org/usbnet
19549 F:      drivers/net/usb/dm9601.c
19550
19551 USB EHCI DRIVER
19552 M:      Alan Stern <stern@rowland.harvard.edu>
19553 L:      linux-usb@vger.kernel.org
19554 S:      Maintained
19555 F:      Documentation/usb/ehci.rst
19556 F:      drivers/usb/host/ehci*
19557
19558 USB GADGET/PERIPHERAL SUBSYSTEM
19559 M:      Felipe Balbi <balbi@kernel.org>
19560 L:      linux-usb@vger.kernel.org
19561 S:      Maintained
19562 W:      http://www.linux-usb.org/gadget
19563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19564 F:      drivers/usb/gadget/
19565 F:      include/linux/usb/gadget*
19566
19567 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19568 M:      Jiri Kosina <jikos@kernel.org>
19569 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
19570 L:      linux-usb@vger.kernel.org
19571 S:      Maintained
19572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19573 F:      Documentation/hid/hiddev.rst
19574 F:      drivers/hid/usbhid/
19575
19576 USB INTEL XHCI ROLE MUX DRIVER
19577 M:      Hans de Goede <hdegoede@redhat.com>
19578 L:      linux-usb@vger.kernel.org
19579 S:      Maintained
19580 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
19581
19582 USB IP DRIVER FOR HISILICON KIRIN 960
19583 M:      Yu Chen <chenyu56@huawei.com>
19584 M:      Binghui Wang <wangbinghui@hisilicon.com>
19585 L:      linux-usb@vger.kernel.org
19586 S:      Maintained
19587 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19588 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
19589
19590 USB IP DRIVER FOR HISILICON KIRIN 970
19591 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19592 L:      linux-usb@vger.kernel.org
19593 S:      Maintained
19594 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
19595 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
19596
19597 USB ISP116X DRIVER
19598 M:      Olav Kongas <ok@artecdesign.ee>
19599 L:      linux-usb@vger.kernel.org
19600 S:      Maintained
19601 F:      drivers/usb/host/isp116x*
19602 F:      include/linux/usb/isp116x.h
19603
19604 USB ISP1760 DRIVER
19605 M:      Rui Miguel Silva <rui.silva@linaro.org>
19606 L:      linux-usb@vger.kernel.org
19607 S:      Maintained
19608 F:      drivers/usb/isp1760/*
19609 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19610
19611 USB LAN78XX ETHERNET DRIVER
19612 M:      Woojung Huh <woojung.huh@microchip.com>
19613 M:      UNGLinuxDriver@microchip.com
19614 L:      netdev@vger.kernel.org
19615 S:      Maintained
19616 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19617 F:      drivers/net/usb/lan78xx.*
19618 F:      include/dt-bindings/net/microchip-lan78xx.h
19619
19620 USB MASS STORAGE DRIVER
19621 M:      Alan Stern <stern@rowland.harvard.edu>
19622 L:      linux-usb@vger.kernel.org
19623 L:      usb-storage@lists.one-eyed-alien.net
19624 S:      Maintained
19625 F:      drivers/usb/storage/
19626
19627 USB MIDI DRIVER
19628 M:      Clemens Ladisch <clemens@ladisch.de>
19629 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19630 S:      Maintained
19631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19632 F:      sound/usb/midi.*
19633
19634 USB NETWORKING DRIVERS
19635 L:      linux-usb@vger.kernel.org
19636 S:      Odd Fixes
19637 F:      drivers/net/usb/
19638
19639 USB OHCI DRIVER
19640 M:      Alan Stern <stern@rowland.harvard.edu>
19641 L:      linux-usb@vger.kernel.org
19642 S:      Maintained
19643 F:      Documentation/usb/ohci.rst
19644 F:      drivers/usb/host/ohci*
19645
19646 USB OTG FSM (Finite State Machine)
19647 M:      Peter Chen <peter.chen@kernel.org>
19648 L:      linux-usb@vger.kernel.org
19649 S:      Maintained
19650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19651 F:      drivers/usb/common/usb-otg-fsm.c
19652
19653 USB OVER IP DRIVER
19654 M:      Valentina Manea <valentina.manea.m@gmail.com>
19655 M:      Shuah Khan <shuah@kernel.org>
19656 M:      Shuah Khan <skhan@linuxfoundation.org>
19657 L:      linux-usb@vger.kernel.org
19658 S:      Maintained
19659 F:      Documentation/usb/usbip_protocol.rst
19660 F:      drivers/usb/usbip/
19661 F:      tools/testing/selftests/drivers/usb/usbip/
19662 F:      tools/usb/usbip/
19663
19664 USB PEGASUS DRIVER
19665 M:      Petko Manolov <petkan@nucleusys.com>
19666 L:      linux-usb@vger.kernel.org
19667 L:      netdev@vger.kernel.org
19668 S:      Maintained
19669 W:      https://github.com/petkan/pegasus
19670 T:      git git://github.com/petkan/pegasus.git
19671 F:      drivers/net/usb/pegasus.*
19672
19673 USB PHY LAYER
19674 M:      Felipe Balbi <balbi@kernel.org>
19675 L:      linux-usb@vger.kernel.org
19676 S:      Maintained
19677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19678 F:      drivers/usb/phy/
19679
19680 USB PRINTER DRIVER (usblp)
19681 M:      Pete Zaitcev <zaitcev@redhat.com>
19682 L:      linux-usb@vger.kernel.org
19683 S:      Supported
19684 F:      drivers/usb/class/usblp.c
19685
19686 USB RAW GADGET DRIVER
19687 R:      Andrey Konovalov <andreyknvl@gmail.com>
19688 L:      linux-usb@vger.kernel.org
19689 S:      Maintained
19690 F:      Documentation/usb/raw-gadget.rst
19691 F:      drivers/usb/gadget/legacy/raw_gadget.c
19692 F:      include/uapi/linux/usb/raw_gadget.h
19693
19694 USB QMI WWAN NETWORK DRIVER
19695 M:      Bjørn Mork <bjorn@mork.no>
19696 L:      netdev@vger.kernel.org
19697 S:      Maintained
19698 F:      Documentation/ABI/testing/sysfs-class-net-qmi
19699 F:      drivers/net/usb/qmi_wwan.c
19700
19701 USB RTL8150 DRIVER
19702 M:      Petko Manolov <petkan@nucleusys.com>
19703 L:      linux-usb@vger.kernel.org
19704 L:      netdev@vger.kernel.org
19705 S:      Maintained
19706 W:      https://github.com/petkan/rtl8150
19707 T:      git git://github.com/petkan/rtl8150.git
19708 F:      drivers/net/usb/rtl8150.c
19709
19710 USB SERIAL SUBSYSTEM
19711 M:      Johan Hovold <johan@kernel.org>
19712 L:      linux-usb@vger.kernel.org
19713 S:      Maintained
19714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
19715 F:      Documentation/usb/usb-serial.rst
19716 F:      drivers/usb/serial/
19717 F:      include/linux/usb/serial.h
19718
19719 USB SMSC75XX ETHERNET DRIVER
19720 M:      Steve Glendinning <steve.glendinning@shawell.net>
19721 L:      netdev@vger.kernel.org
19722 S:      Maintained
19723 F:      drivers/net/usb/smsc75xx.*
19724
19725 USB SMSC95XX ETHERNET DRIVER
19726 M:      Steve Glendinning <steve.glendinning@shawell.net>
19727 M:      UNGLinuxDriver@microchip.com
19728 L:      netdev@vger.kernel.org
19729 S:      Maintained
19730 F:      drivers/net/usb/smsc95xx.*
19731
19732 USB SUBSYSTEM
19733 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19734 L:      linux-usb@vger.kernel.org
19735 S:      Supported
19736 W:      http://www.linux-usb.org
19737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
19738 F:      Documentation/devicetree/bindings/usb/
19739 F:      Documentation/usb/
19740 F:      drivers/usb/
19741 F:      include/linux/usb.h
19742 F:      include/linux/usb/
19743
19744 USB TYPEC BUS FOR ALTERNATE MODES
19745 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19746 L:      linux-usb@vger.kernel.org
19747 S:      Maintained
19748 F:      Documentation/ABI/testing/sysfs-bus-typec
19749 F:      Documentation/driver-api/usb/typec_bus.rst
19750 F:      drivers/usb/typec/altmodes/
19751 F:      include/linux/usb/typec_altmode.h
19752
19753 USB TYPEC CLASS
19754 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19755 L:      linux-usb@vger.kernel.org
19756 S:      Maintained
19757 F:      Documentation/ABI/testing/sysfs-class-typec
19758 F:      Documentation/driver-api/usb/typec.rst
19759 F:      drivers/usb/typec/
19760 F:      include/linux/usb/typec.h
19761
19762 USB TYPEC INTEL PMC MUX DRIVER
19763 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19764 L:      linux-usb@vger.kernel.org
19765 S:      Maintained
19766 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19767 F:      drivers/usb/typec/mux/intel_pmc_mux.c
19768
19769 USB TYPEC PI3USB30532 MUX DRIVER
19770 M:      Hans de Goede <hdegoede@redhat.com>
19771 L:      linux-usb@vger.kernel.org
19772 S:      Maintained
19773 F:      drivers/usb/typec/mux/pi3usb30532.c
19774
19775 USB TYPEC PORT CONTROLLER DRIVERS
19776 M:      Guenter Roeck <linux@roeck-us.net>
19777 L:      linux-usb@vger.kernel.org
19778 S:      Maintained
19779 F:      drivers/usb/typec/tcpm/
19780
19781 USB UHCI DRIVER
19782 M:      Alan Stern <stern@rowland.harvard.edu>
19783 L:      linux-usb@vger.kernel.org
19784 S:      Maintained
19785 F:      drivers/usb/host/uhci*
19786
19787 USB VIDEO CLASS
19788 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19789 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
19790 L:      linux-media@vger.kernel.org
19791 S:      Maintained
19792 W:      http://www.ideasonboard.org/uvc/
19793 T:      git git://linuxtv.org/media_tree.git
19794 F:      drivers/media/usb/uvc/
19795 F:      include/uapi/linux/uvcvideo.h
19796
19797 USB WEBCAM GADGET
19798 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19799 L:      linux-usb@vger.kernel.org
19800 S:      Maintained
19801 F:      drivers/usb/gadget/function/*uvc*
19802 F:      drivers/usb/gadget/legacy/webcam.c
19803 F:      include/uapi/linux/usb/g_uvc.h
19804
19805 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19806 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
19807 L:      linux-wireless@vger.kernel.org
19808 S:      Maintained
19809 F:      drivers/net/wireless/rndis_wlan.c
19810
19811 USB XHCI DRIVER
19812 M:      Mathias Nyman <mathias.nyman@intel.com>
19813 L:      linux-usb@vger.kernel.org
19814 S:      Supported
19815 F:      drivers/usb/host/pci-quirks*
19816 F:      drivers/usb/host/xhci*
19817
19818 USB ZD1201 DRIVER
19819 L:      linux-wireless@vger.kernel.org
19820 S:      Orphan
19821 W:      http://linux-lc100020.sourceforge.net
19822 F:      drivers/net/wireless/zydas/zd1201.*
19823
19824 USB ZR364XX DRIVER
19825 M:      Antoine Jacquet <royale@zerezo.com>
19826 L:      linux-usb@vger.kernel.org
19827 L:      linux-media@vger.kernel.org
19828 S:      Maintained
19829 W:      http://royale.zerezo.com/zr364xx/
19830 T:      git git://linuxtv.org/media_tree.git
19831 F:      Documentation/admin-guide/media/zr364xx*
19832 F:      drivers/media/usb/zr364xx/
19833
19834 USER-MODE LINUX (UML)
19835 M:      Jeff Dike <jdike@addtoit.com>
19836 M:      Richard Weinberger <richard@nod.at>
19837 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
19838 L:      linux-um@lists.infradead.org
19839 S:      Maintained
19840 W:      http://user-mode-linux.sourceforge.net
19841 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
19842 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19843 F:      Documentation/virt/uml/
19844 F:      arch/um/
19845 F:      arch/x86/um/
19846 F:      fs/hostfs/
19847
19848 USERSPACE COPYIN/COPYOUT (UIOVEC)
19849 M:      Alexander Viro <viro@zeniv.linux.org.uk>
19850 S:      Maintained
19851 F:      include/linux/uio.h
19852 F:      lib/iov_iter.c
19853
19854 USERSPACE DMA BUFFER DRIVER
19855 M:      Gerd Hoffmann <kraxel@redhat.com>
19856 L:      dri-devel@lists.freedesktop.org
19857 S:      Maintained
19858 T:      git git://anongit.freedesktop.org/drm/drm-misc
19859 F:      drivers/dma-buf/udmabuf.c
19860 F:      include/uapi/linux/udmabuf.h
19861
19862 USERSPACE I/O (UIO)
19863 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19864 S:      Maintained
19865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19866 F:      Documentation/driver-api/uio-howto.rst
19867 F:      drivers/uio/
19868 F:      include/linux/uio_driver.h
19869
19870 UTIL-LINUX PACKAGE
19871 M:      Karel Zak <kzak@redhat.com>
19872 L:      util-linux@vger.kernel.org
19873 S:      Maintained
19874 W:      http://en.wikipedia.org/wiki/Util-linux
19875 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19876
19877 UUID HELPERS
19878 M:      Christoph Hellwig <hch@lst.de>
19879 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19880 L:      linux-kernel@vger.kernel.org
19881 S:      Maintained
19882 T:      git git://git.infradead.org/users/hch/uuid.git
19883 F:      include/linux/uuid.h
19884 F:      include/uapi/linux/uuid.h
19885 F:      lib/test_uuid.c
19886 F:      lib/uuid.c
19887
19888 UV SYSFS DRIVER
19889 M:      Justin Ernst <justin.ernst@hpe.com>
19890 L:      platform-driver-x86@vger.kernel.org
19891 S:      Maintained
19892 F:      drivers/platform/x86/uv_sysfs.c
19893
19894 UVESAFB DRIVER
19895 M:      Michal Januszewski <spock@gentoo.org>
19896 L:      linux-fbdev@vger.kernel.org
19897 S:      Maintained
19898 W:      https://github.com/mjanusz/v86d
19899 F:      Documentation/fb/uvesafb.rst
19900 F:      drivers/video/fbdev/uvesafb.*
19901
19902 Ux500 CLOCK DRIVERS
19903 M:      Ulf Hansson <ulf.hansson@linaro.org>
19904 L:      linux-clk@vger.kernel.org
19905 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19906 S:      Maintained
19907 F:      drivers/clk/ux500/
19908
19909 VF610 NAND DRIVER
19910 M:      Stefan Agner <stefan@agner.ch>
19911 L:      linux-mtd@lists.infradead.org
19912 S:      Supported
19913 F:      drivers/mtd/nand/raw/vf610_nfc.c
19914
19915 VFAT/FAT/MSDOS FILESYSTEM
19916 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
19917 S:      Maintained
19918 F:      Documentation/filesystems/vfat.rst
19919 F:      fs/fat/
19920
19921 VFIO DRIVER
19922 M:      Alex Williamson <alex.williamson@redhat.com>
19923 R:      Cornelia Huck <cohuck@redhat.com>
19924 L:      kvm@vger.kernel.org
19925 S:      Maintained
19926 T:      git git://github.com/awilliam/linux-vfio.git
19927 F:      Documentation/driver-api/vfio.rst
19928 F:      drivers/vfio/
19929 F:      include/linux/vfio.h
19930 F:      include/linux/vfio_pci_core.h
19931 F:      include/uapi/linux/vfio.h
19932
19933 VFIO FSL-MC DRIVER
19934 M:      Diana Craciun <diana.craciun@oss.nxp.com>
19935 L:      kvm@vger.kernel.org
19936 S:      Maintained
19937 F:      drivers/vfio/fsl-mc/
19938
19939 VFIO MEDIATED DEVICE DRIVERS
19940 M:      Kirti Wankhede <kwankhede@nvidia.com>
19941 L:      kvm@vger.kernel.org
19942 S:      Maintained
19943 F:      Documentation/driver-api/vfio-mediated-device.rst
19944 F:      drivers/vfio/mdev/
19945 F:      include/linux/mdev.h
19946 F:      samples/vfio-mdev/
19947
19948 VFIO PLATFORM DRIVER
19949 M:      Eric Auger <eric.auger@redhat.com>
19950 L:      kvm@vger.kernel.org
19951 S:      Maintained
19952 F:      drivers/vfio/platform/
19953
19954 VGA_SWITCHEROO
19955 R:      Lukas Wunner <lukas@wunner.de>
19956 S:      Maintained
19957 T:      git git://anongit.freedesktop.org/drm/drm-misc
19958 F:      Documentation/gpu/vga-switcheroo.rst
19959 F:      drivers/gpu/vga/vga_switcheroo.c
19960 F:      include/linux/vga_switcheroo.h
19961
19962 VIA RHINE NETWORK DRIVER
19963 S:      Maintained
19964 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
19965 F:      drivers/net/ethernet/via/via-rhine.c
19966
19967 VIA SD/MMC CARD CONTROLLER DRIVER
19968 M:      Bruce Chang <brucechang@via.com.tw>
19969 M:      Harald Welte <HaraldWelte@viatech.com>
19970 S:      Maintained
19971 F:      drivers/mmc/host/via-sdmmc.c
19972
19973 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19974 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
19975 L:      linux-fbdev@vger.kernel.org
19976 S:      Maintained
19977 F:      drivers/video/fbdev/via/
19978 F:      include/linux/via-core.h
19979 F:      include/linux/via-gpio.h
19980 F:      include/linux/via_i2c.h
19981
19982 VIA VELOCITY NETWORK DRIVER
19983 M:      Francois Romieu <romieu@fr.zoreil.com>
19984 L:      netdev@vger.kernel.org
19985 S:      Maintained
19986 F:      drivers/net/ethernet/via/via-velocity.*
19987
19988 VICODEC VIRTUAL CODEC DRIVER
19989 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
19990 L:      linux-media@vger.kernel.org
19991 S:      Maintained
19992 W:      https://linuxtv.org
19993 T:      git git://linuxtv.org/media_tree.git
19994 F:      drivers/media/test-drivers/vicodec/*
19995
19996 VIDEO I2C POLLING DRIVER
19997 M:      Matt Ranostay <matt.ranostay@konsulko.com>
19998 L:      linux-media@vger.kernel.org
19999 S:      Maintained
20000 F:      drivers/media/i2c/video-i2c.c
20001
20002 VIDEO MULTIPLEXER DRIVER
20003 M:      Philipp Zabel <p.zabel@pengutronix.de>
20004 L:      linux-media@vger.kernel.org
20005 S:      Maintained
20006 F:      drivers/media/platform/video-mux.c
20007
20008 VIDEOBUF2 FRAMEWORK
20009 M:      Tomasz Figa <tfiga@chromium.org>
20010 M:      Marek Szyprowski <m.szyprowski@samsung.com>
20011 L:      linux-media@vger.kernel.org
20012 S:      Maintained
20013 F:      drivers/media/common/videobuf2/*
20014 F:      include/media/videobuf2-*
20015
20016 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
20017 M:      Helen Koike <helen.koike@collabora.com>
20018 R:      Shuah Khan <skhan@linuxfoundation.org>
20019 L:      linux-media@vger.kernel.org
20020 S:      Maintained
20021 W:      https://linuxtv.org
20022 T:      git git://linuxtv.org/media_tree.git
20023 F:      drivers/media/test-drivers/vimc/*
20024
20025 VIRT LIB
20026 M:      Alex Williamson <alex.williamson@redhat.com>
20027 M:      Paolo Bonzini <pbonzini@redhat.com>
20028 L:      kvm@vger.kernel.org
20029 S:      Supported
20030 F:      virt/lib/
20031
20032 VIRTIO AND VHOST VSOCK DRIVER
20033 M:      Stefan Hajnoczi <stefanha@redhat.com>
20034 M:      Stefano Garzarella <sgarzare@redhat.com>
20035 L:      kvm@vger.kernel.org
20036 L:      virtualization@lists.linux-foundation.org
20037 L:      netdev@vger.kernel.org
20038 S:      Maintained
20039 F:      drivers/vhost/vsock.c
20040 F:      include/linux/virtio_vsock.h
20041 F:      include/uapi/linux/virtio_vsock.h
20042 F:      net/vmw_vsock/virtio_transport.c
20043 F:      net/vmw_vsock/virtio_transport_common.c
20044
20045 VIRTIO BLOCK AND SCSI DRIVERS
20046 M:      "Michael S. Tsirkin" <mst@redhat.com>
20047 M:      Jason Wang <jasowang@redhat.com>
20048 R:      Paolo Bonzini <pbonzini@redhat.com>
20049 R:      Stefan Hajnoczi <stefanha@redhat.com>
20050 L:      virtualization@lists.linux-foundation.org
20051 S:      Maintained
20052 F:      drivers/block/virtio_blk.c
20053 F:      drivers/scsi/virtio_scsi.c
20054 F:      drivers/vhost/scsi.c
20055 F:      include/uapi/linux/virtio_blk.h
20056 F:      include/uapi/linux/virtio_scsi.h
20057
20058 VIRTIO CONSOLE DRIVER
20059 M:      Amit Shah <amit@kernel.org>
20060 L:      virtualization@lists.linux-foundation.org
20061 S:      Maintained
20062 F:      drivers/char/virtio_console.c
20063 F:      include/linux/virtio_console.h
20064 F:      include/uapi/linux/virtio_console.h
20065
20066 VIRTIO CORE AND NET DRIVERS
20067 M:      "Michael S. Tsirkin" <mst@redhat.com>
20068 M:      Jason Wang <jasowang@redhat.com>
20069 L:      virtualization@lists.linux-foundation.org
20070 S:      Maintained
20071 F:      Documentation/devicetree/bindings/virtio/
20072 F:      drivers/block/virtio_blk.c
20073 F:      drivers/crypto/virtio/
20074 F:      drivers/net/virtio_net.c
20075 F:      drivers/vdpa/
20076 F:      drivers/virtio/
20077 F:      include/linux/vdpa.h
20078 F:      include/linux/virtio*.h
20079 F:      include/uapi/linux/virtio_*.h
20080 F:      tools/virtio/
20081
20082 VIRTIO BALLOON
20083 M:      "Michael S. Tsirkin" <mst@redhat.com>
20084 M:      David Hildenbrand <david@redhat.com>
20085 L:      virtualization@lists.linux-foundation.org
20086 S:      Maintained
20087 F:      drivers/virtio/virtio_balloon.c
20088 F:      include/uapi/linux/virtio_balloon.h
20089 F:      include/linux/balloon_compaction.h
20090 F:      mm/balloon_compaction.c
20091
20092 VIRTIO CRYPTO DRIVER
20093 M:      Gonglei <arei.gonglei@huawei.com>
20094 L:      virtualization@lists.linux-foundation.org
20095 L:      linux-crypto@vger.kernel.org
20096 S:      Maintained
20097 F:      drivers/crypto/virtio/
20098 F:      include/uapi/linux/virtio_crypto.h
20099
20100 VIRTIO DRIVERS FOR S390
20101 M:      Cornelia Huck <cohuck@redhat.com>
20102 M:      Halil Pasic <pasic@linux.ibm.com>
20103 L:      linux-s390@vger.kernel.org
20104 L:      virtualization@lists.linux-foundation.org
20105 L:      kvm@vger.kernel.org
20106 S:      Supported
20107 F:      arch/s390/include/uapi/asm/virtio-ccw.h
20108 F:      drivers/s390/virtio/
20109
20110 VIRTIO FILE SYSTEM
20111 M:      Vivek Goyal <vgoyal@redhat.com>
20112 M:      Stefan Hajnoczi <stefanha@redhat.com>
20113 M:      Miklos Szeredi <miklos@szeredi.hu>
20114 L:      virtualization@lists.linux-foundation.org
20115 L:      linux-fsdevel@vger.kernel.org
20116 S:      Supported
20117 W:      https://virtio-fs.gitlab.io/
20118 F:      Documentation/filesystems/virtiofs.rst
20119 F:      fs/fuse/virtio_fs.c
20120 F:      include/uapi/linux/virtio_fs.h
20121
20122 VIRTIO GPIO DRIVER
20123 M:      Enrico Weigelt, metux IT consult <info@metux.net>
20124 M:      Viresh Kumar <vireshk@kernel.org>
20125 L:      linux-gpio@vger.kernel.org
20126 L:      virtualization@lists.linux-foundation.org
20127 S:      Maintained
20128 F:      drivers/gpio/gpio-virtio.c
20129 F:      include/uapi/linux/virtio_gpio.h
20130
20131 VIRTIO GPU DRIVER
20132 M:      David Airlie <airlied@linux.ie>
20133 M:      Gerd Hoffmann <kraxel@redhat.com>
20134 L:      dri-devel@lists.freedesktop.org
20135 L:      virtualization@lists.linux-foundation.org
20136 S:      Maintained
20137 T:      git git://anongit.freedesktop.org/drm/drm-misc
20138 F:      drivers/gpu/drm/virtio/
20139 F:      include/uapi/linux/virtio_gpu.h
20140
20141 VIRTIO HOST (VHOST)
20142 M:      "Michael S. Tsirkin" <mst@redhat.com>
20143 M:      Jason Wang <jasowang@redhat.com>
20144 L:      kvm@vger.kernel.org
20145 L:      virtualization@lists.linux-foundation.org
20146 L:      netdev@vger.kernel.org
20147 S:      Maintained
20148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
20149 F:      drivers/vhost/
20150 F:      include/linux/vhost_iotlb.h
20151 F:      include/uapi/linux/vhost.h
20152
20153 VIRTIO INPUT DRIVER
20154 M:      Gerd Hoffmann <kraxel@redhat.com>
20155 S:      Maintained
20156 F:      drivers/virtio/virtio_input.c
20157 F:      include/uapi/linux/virtio_input.h
20158
20159 VIRTIO IOMMU DRIVER
20160 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
20161 L:      virtualization@lists.linux-foundation.org
20162 S:      Maintained
20163 F:      drivers/iommu/virtio-iommu.c
20164 F:      include/uapi/linux/virtio_iommu.h
20165
20166 VIRTIO MEM DRIVER
20167 M:      David Hildenbrand <david@redhat.com>
20168 L:      virtualization@lists.linux-foundation.org
20169 S:      Maintained
20170 W:      https://virtio-mem.gitlab.io/
20171 F:      drivers/virtio/virtio_mem.c
20172 F:      include/uapi/linux/virtio_mem.h
20173
20174 VIRTIO SOUND DRIVER
20175 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
20176 M:      "Michael S. Tsirkin" <mst@redhat.com>
20177 L:      virtualization@lists.linux-foundation.org
20178 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20179 S:      Maintained
20180 F:      include/uapi/linux/virtio_snd.h
20181 F:      sound/virtio/*
20182
20183 VIRTIO I2C DRIVER
20184 M:      Jie Deng <jie.deng@intel.com>
20185 M:      Viresh Kumar <viresh.kumar@linaro.org>
20186 L:      linux-i2c@vger.kernel.org
20187 L:      virtualization@lists.linux-foundation.org
20188 S:      Maintained
20189 F:      drivers/i2c/busses/i2c-virtio.c
20190 F:      include/uapi/linux/virtio_i2c.h
20191
20192 VIRTIO PMEM DRIVER
20193 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
20194 L:      virtualization@lists.linux-foundation.org
20195 S:      Maintained
20196 F:      drivers/nvdimm/virtio_pmem.c
20197 F:      drivers/nvdimm/nd_virtio.c
20198
20199 VIRTUAL BOX GUEST DEVICE DRIVER
20200 M:      Hans de Goede <hdegoede@redhat.com>
20201 M:      Arnd Bergmann <arnd@arndb.de>
20202 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20203 S:      Maintained
20204 F:      drivers/virt/vboxguest/
20205 F:      include/linux/vbox_utils.h
20206 F:      include/uapi/linux/vbox*.h
20207
20208 VIRTUAL BOX SHARED FOLDER VFS DRIVER
20209 M:      Hans de Goede <hdegoede@redhat.com>
20210 L:      linux-fsdevel@vger.kernel.org
20211 S:      Maintained
20212 F:      fs/vboxsf/*
20213
20214 VIRTUAL SERIO DEVICE DRIVER
20215 M:      Stephen Chandler Paul <thatslyude@gmail.com>
20216 S:      Maintained
20217 F:      drivers/input/serio/userio.c
20218 F:      include/uapi/linux/userio.h
20219
20220 VIVID VIRTUAL VIDEO DRIVER
20221 M:      Hans Verkuil <hverkuil@xs4all.nl>
20222 L:      linux-media@vger.kernel.org
20223 S:      Maintained
20224 W:      https://linuxtv.org
20225 T:      git git://linuxtv.org/media_tree.git
20226 F:      drivers/media/test-drivers/vivid/*
20227
20228 VIDTV VIRTUAL DIGITAL TV DRIVER
20229 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
20230 L:      linux-media@vger.kernel.org
20231 S:      Maintained
20232 W:      https://linuxtv.org
20233 T:      git git://linuxtv.org/media_tree.git
20234 F:      drivers/media/test-drivers/vidtv/*
20235
20236 VLYNQ BUS
20237 M:      Florian Fainelli <f.fainelli@gmail.com>
20238 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
20239 S:      Maintained
20240 F:      drivers/vlynq/vlynq.c
20241 F:      include/linux/vlynq.h
20242
20243 VME SUBSYSTEM
20244 M:      Martyn Welch <martyn@welchs.me.uk>
20245 M:      Manohar Vanga <manohar.vanga@gmail.com>
20246 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20247 L:      linux-kernel@vger.kernel.org
20248 S:      Maintained
20249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20250 F:      Documentation/driver-api/vme.rst
20251 F:      drivers/staging/vme/
20252 F:      drivers/vme/
20253 F:      include/linux/vme*
20254
20255 VM SOCKETS (AF_VSOCK)
20256 M:      Stefano Garzarella <sgarzare@redhat.com>
20257 L:      virtualization@lists.linux-foundation.org
20258 L:      netdev@vger.kernel.org
20259 S:      Maintained
20260 F:      drivers/net/vsockmon.c
20261 F:      include/net/af_vsock.h
20262 F:      include/uapi/linux/vm_sockets.h
20263 F:      include/uapi/linux/vm_sockets_diag.h
20264 F:      include/uapi/linux/vsockmon.h
20265 F:      net/vmw_vsock/
20266 F:      tools/testing/vsock/
20267
20268 VMWARE BALLOON DRIVER
20269 M:      Nadav Amit <namit@vmware.com>
20270 M:      "VMware, Inc." <pv-drivers@vmware.com>
20271 L:      linux-kernel@vger.kernel.org
20272 S:      Maintained
20273 F:      drivers/misc/vmw_balloon.c
20274
20275 VMWARE HYPERVISOR INTERFACE
20276 M:      Deep Shah <sdeep@vmware.com>
20277 M:      "VMware, Inc." <pv-drivers@vmware.com>
20278 L:      virtualization@lists.linux-foundation.org
20279 S:      Supported
20280 F:      arch/x86/include/asm/vmware.h
20281 F:      arch/x86/kernel/cpu/vmware.c
20282
20283 VMWARE PVRDMA DRIVER
20284 M:      Adit Ranadive <aditr@vmware.com>
20285 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20286 L:      linux-rdma@vger.kernel.org
20287 S:      Maintained
20288 F:      drivers/infiniband/hw/vmw_pvrdma/
20289
20290 VMware PVSCSI driver
20291 M:      Vishal Bhakta <vbhakta@vmware.com>
20292 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20293 L:      linux-scsi@vger.kernel.org
20294 S:      Maintained
20295 F:      drivers/scsi/vmw_pvscsi.c
20296 F:      drivers/scsi/vmw_pvscsi.h
20297
20298 VMWARE VIRTUAL PTP CLOCK DRIVER
20299 M:      Vivek Thampi <vithampi@vmware.com>
20300 M:      "VMware, Inc." <pv-drivers@vmware.com>
20301 L:      netdev@vger.kernel.org
20302 S:      Supported
20303 F:      drivers/ptp/ptp_vmw.c
20304
20305 VMWARE VMCI DRIVER
20306 M:      Jorgen Hansen <jhansen@vmware.com>
20307 M:      Vishnu Dasa <vdasa@vmware.com>
20308 L:      linux-kernel@vger.kernel.org
20309 L:      pv-drivers@vmware.com (private)
20310 S:      Maintained
20311 F:      drivers/misc/vmw_vmci/
20312
20313 VMWARE VMMOUSE SUBDRIVER
20314 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
20315 M:      "VMware, Inc." <pv-drivers@vmware.com>
20316 L:      linux-input@vger.kernel.org
20317 S:      Maintained
20318 F:      drivers/input/mouse/vmmouse.c
20319 F:      drivers/input/mouse/vmmouse.h
20320
20321 VMWARE VMXNET3 ETHERNET DRIVER
20322 M:      Ronak Doshi <doshir@vmware.com>
20323 M:      pv-drivers@vmware.com
20324 L:      netdev@vger.kernel.org
20325 S:      Maintained
20326 F:      drivers/net/vmxnet3/
20327
20328 VOCORE VOCORE2 BOARD
20329 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
20330 L:      linux-mips@vger.kernel.org
20331 S:      Maintained
20332 F:      arch/mips/boot/dts/ralink/vocore2.dts
20333
20334 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
20335 M:      Liam Girdwood <lgirdwood@gmail.com>
20336 M:      Mark Brown <broonie@kernel.org>
20337 L:      linux-kernel@vger.kernel.org
20338 S:      Supported
20339 W:      http://www.slimlogic.co.uk/?p=48
20340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
20341 F:      Documentation/devicetree/bindings/regulator/
20342 F:      Documentation/power/regulator/
20343 F:      drivers/regulator/
20344 F:      include/dt-bindings/regulator/
20345 F:      include/linux/regulator/
20346 K:      regulator_get_optional
20347
20348 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
20349 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
20350 F:      drivers/regulator/irq_helpers.c
20351
20352 VRF
20353 M:      David Ahern <dsahern@kernel.org>
20354 L:      netdev@vger.kernel.org
20355 S:      Maintained
20356 F:      Documentation/networking/vrf.rst
20357 F:      drivers/net/vrf.c
20358
20359 VSPRINTF
20360 M:      Petr Mladek <pmladek@suse.com>
20361 M:      Steven Rostedt <rostedt@goodmis.org>
20362 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
20363 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20364 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
20365 S:      Maintained
20366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
20367 F:      Documentation/core-api/printk-formats.rst
20368 F:      lib/test_printf.c
20369 F:      lib/test_scanf.c
20370 F:      lib/vsprintf.c
20371
20372 VT1211 HARDWARE MONITOR DRIVER
20373 M:      Juerg Haefliger <juergh@gmail.com>
20374 L:      linux-hwmon@vger.kernel.org
20375 S:      Maintained
20376 F:      Documentation/hwmon/vt1211.rst
20377 F:      drivers/hwmon/vt1211.c
20378
20379 VT8231 HARDWARE MONITOR DRIVER
20380 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
20381 L:      linux-hwmon@vger.kernel.org
20382 S:      Maintained
20383 F:      drivers/hwmon/vt8231.c
20384
20385 VUB300 USB to SDIO/SD/MMC bridge chip
20386 L:      linux-mmc@vger.kernel.org
20387 S:      Orphan
20388 F:      drivers/mmc/host/vub300.c
20389
20390 W1 DALLAS'S 1-WIRE BUS
20391 M:      Evgeniy Polyakov <zbr@ioremap.net>
20392 S:      Maintained
20393 F:      Documentation/devicetree/bindings/w1/
20394 F:      Documentation/w1/
20395 F:      drivers/w1/
20396 F:      include/linux/w1.h
20397
20398 W83791D HARDWARE MONITORING DRIVER
20399 M:      Marc Hulsman <m.hulsman@tudelft.nl>
20400 L:      linux-hwmon@vger.kernel.org
20401 S:      Maintained
20402 F:      Documentation/hwmon/w83791d.rst
20403 F:      drivers/hwmon/w83791d.c
20404
20405 W83793 HARDWARE MONITORING DRIVER
20406 M:      Rudolf Marek <r.marek@assembler.cz>
20407 L:      linux-hwmon@vger.kernel.org
20408 S:      Maintained
20409 F:      Documentation/hwmon/w83793.rst
20410 F:      drivers/hwmon/w83793.c
20411
20412 W83795 HARDWARE MONITORING DRIVER
20413 M:      Jean Delvare <jdelvare@suse.com>
20414 L:      linux-hwmon@vger.kernel.org
20415 S:      Maintained
20416 F:      drivers/hwmon/w83795.c
20417
20418 W83L51xD SD/MMC CARD INTERFACE DRIVER
20419 M:      Pierre Ossman <pierre@ossman.eu>
20420 S:      Maintained
20421 F:      drivers/mmc/host/wbsd.*
20422
20423 WACOM PROTOCOL 4 SERIAL TABLETS
20424 M:      Julian Squires <julian@cipht.net>
20425 M:      Hans de Goede <hdegoede@redhat.com>
20426 L:      linux-input@vger.kernel.org
20427 S:      Maintained
20428 F:      drivers/input/tablet/wacom_serial4.c
20429
20430 WATCHDOG DEVICE DRIVERS
20431 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
20432 M:      Guenter Roeck <linux@roeck-us.net>
20433 L:      linux-watchdog@vger.kernel.org
20434 S:      Maintained
20435 W:      http://www.linux-watchdog.org/
20436 T:      git git://www.linux-watchdog.org/linux-watchdog.git
20437 F:      Documentation/devicetree/bindings/watchdog/
20438 F:      Documentation/watchdog/
20439 F:      drivers/watchdog/
20440 F:      include/linux/watchdog.h
20441 F:      include/uapi/linux/watchdog.h
20442
20443 WHISKEYCOVE PMIC GPIO DRIVER
20444 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
20445 L:      linux-gpio@vger.kernel.org
20446 S:      Maintained
20447 F:      drivers/gpio/gpio-wcove.c
20448
20449 WHWAVE RTC DRIVER
20450 M:      Dianlong Li <long17.cool@163.com>
20451 L:      linux-rtc@vger.kernel.org
20452 S:      Maintained
20453 F:      drivers/rtc/rtc-sd3078.c
20454
20455 WIIMOTE HID DRIVER
20456 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20457 L:      linux-input@vger.kernel.org
20458 S:      Maintained
20459 F:      drivers/hid/hid-wiimote*
20460
20461 WILOCITY WIL6210 WIRELESS DRIVER
20462 M:      Maya Erez <merez@codeaurora.org>
20463 L:      linux-wireless@vger.kernel.org
20464 L:      wil6210@qti.qualcomm.com
20465 S:      Supported
20466 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
20467 F:      drivers/net/wireless/ath/wil6210/
20468
20469 WINBOND CIR DRIVER
20470 M:      David Härdeman <david@hardeman.nu>
20471 S:      Maintained
20472 F:      drivers/media/rc/winbond-cir.c
20473
20474 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
20475 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20476 L:      linux-watchdog@vger.kernel.org
20477 S:      Maintained
20478 F:      drivers/watchdog/ebc-c384_wdt.c
20479
20480 WINSYSTEMS WS16C48 GPIO DRIVER
20481 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20482 L:      linux-gpio@vger.kernel.org
20483 S:      Maintained
20484 F:      drivers/gpio/gpio-ws16c48.c
20485
20486 WIREGUARD SECURE NETWORK TUNNEL
20487 M:      Jason A. Donenfeld <Jason@zx2c4.com>
20488 L:      wireguard@lists.zx2c4.com
20489 L:      netdev@vger.kernel.org
20490 S:      Maintained
20491 F:      drivers/net/wireguard/
20492 F:      tools/testing/selftests/wireguard/
20493
20494 WISTRON LAPTOP BUTTON DRIVER
20495 M:      Miloslav Trmac <mitr@volny.cz>
20496 S:      Maintained
20497 F:      drivers/input/misc/wistron_btns.c
20498
20499 WL3501 WIRELESS PCMCIA CARD DRIVER
20500 L:      linux-wireless@vger.kernel.org
20501 S:      Odd fixes
20502 F:      drivers/net/wireless/wl3501*
20503
20504 WOLFSON MICROELECTRONICS DRIVERS
20505 L:      patches@opensource.cirrus.com
20506 S:      Supported
20507 W:      https://github.com/CirrusLogic/linux-drivers/wiki
20508 T:      git https://github.com/CirrusLogic/linux-drivers.git
20509 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
20510 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
20511 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
20512 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
20513 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
20514 F:      Documentation/devicetree/bindings/sound/wm*
20515 F:      Documentation/hwmon/wm83??.rst
20516 F:      arch/arm/mach-s3c/mach-crag6410*
20517 F:      drivers/clk/clk-wm83*.c
20518 F:      drivers/gpio/gpio-*wm*.c
20519 F:      drivers/gpio/gpio-arizona.c
20520 F:      drivers/hwmon/wm83??-hwmon.c
20521 F:      drivers/input/misc/wm831x-on.c
20522 F:      drivers/input/touchscreen/wm831x-ts.c
20523 F:      drivers/input/touchscreen/wm97*.c
20524 F:      drivers/leds/leds-wm83*.c
20525 F:      drivers/mfd/arizona*
20526 F:      drivers/mfd/cs47l24*
20527 F:      drivers/mfd/wm*.c
20528 F:      drivers/power/supply/wm83*.c
20529 F:      drivers/regulator/arizona*
20530 F:      drivers/regulator/wm8*.c
20531 F:      drivers/rtc/rtc-wm83*.c
20532 F:      drivers/video/backlight/wm83*_bl.c
20533 F:      drivers/watchdog/wm83*_wdt.c
20534 F:      include/linux/mfd/arizona/
20535 F:      include/linux/mfd/wm831x/
20536 F:      include/linux/mfd/wm8350/
20537 F:      include/linux/mfd/wm8400*
20538 F:      include/linux/regulator/arizona*
20539 F:      include/linux/wm97xx.h
20540 F:      include/sound/wm????.h
20541 F:      sound/soc/codecs/arizona*
20542 F:      sound/soc/codecs/cs47l24*
20543 F:      sound/soc/codecs/wm*
20544
20545 WORKQUEUE
20546 M:      Tejun Heo <tj@kernel.org>
20547 R:      Lai Jiangshan <jiangshanlai@gmail.com>
20548 S:      Maintained
20549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
20550 F:      Documentation/core-api/workqueue.rst
20551 F:      include/linux/workqueue.h
20552 F:      kernel/workqueue.c
20553
20554 WWAN DRIVERS
20555 M:      Loic Poulain <loic.poulain@linaro.org>
20556 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
20557 R:      Johannes Berg <johannes@sipsolutions.net>
20558 L:      netdev@vger.kernel.org
20559 S:      Maintained
20560 F:      drivers/net/wwan/
20561 F:      include/linux/wwan.h
20562 F:      include/uapi/linux/wwan.h
20563
20564 X-POWERS AXP288 PMIC DRIVERS
20565 M:      Hans de Goede <hdegoede@redhat.com>
20566 S:      Maintained
20567 F:      drivers/acpi/pmic/intel_pmic_xpower.c
20568 N:      axp288
20569
20570 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
20571 M:      Chen-Yu Tsai <wens@csie.org>
20572 L:      linux-kernel@vger.kernel.org
20573 S:      Maintained
20574 N:      axp[128]
20575
20576 X.25 STACK
20577 M:      Martin Schiller <ms@dev.tdt.de>
20578 L:      linux-x25@vger.kernel.org
20579 S:      Maintained
20580 F:      Documentation/networking/lapb-module.rst
20581 F:      Documentation/networking/x25*
20582 F:      drivers/net/wan/hdlc_x25.c
20583 F:      drivers/net/wan/lapbether.c
20584 F:      include/*/lapb.h
20585 F:      include/net/x25*
20586 F:      include/uapi/linux/x25.h
20587 F:      net/lapb/
20588 F:      net/x25/
20589
20590 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20591 M:      Thomas Gleixner <tglx@linutronix.de>
20592 M:      Ingo Molnar <mingo@redhat.com>
20593 M:      Borislav Petkov <bp@alien8.de>
20594 M:      Dave Hansen <dave.hansen@linux.intel.com>
20595 M:      x86@kernel.org
20596 R:      "H. Peter Anvin" <hpa@zytor.com>
20597 L:      linux-kernel@vger.kernel.org
20598 S:      Maintained
20599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20600 F:      Documentation/devicetree/bindings/x86/
20601 F:      Documentation/x86/
20602 F:      arch/x86/
20603
20604 X86 ENTRY CODE
20605 M:      Andy Lutomirski <luto@kernel.org>
20606 L:      linux-kernel@vger.kernel.org
20607 S:      Maintained
20608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
20609 F:      arch/x86/entry/
20610
20611 X86 MCE INFRASTRUCTURE
20612 M:      Tony Luck <tony.luck@intel.com>
20613 M:      Borislav Petkov <bp@alien8.de>
20614 L:      linux-edac@vger.kernel.org
20615 S:      Maintained
20616 F:      Documentation/ABI/testing/sysfs-mce
20617 F:      Documentation/x86/x86_64/machinecheck.rst
20618 F:      arch/x86/kernel/cpu/mce/*
20619
20620 X86 MICROCODE UPDATE SUPPORT
20621 M:      Borislav Petkov <bp@alien8.de>
20622 S:      Maintained
20623 F:      arch/x86/kernel/cpu/microcode/*
20624
20625 X86 MM
20626 M:      Dave Hansen <dave.hansen@linux.intel.com>
20627 M:      Andy Lutomirski <luto@kernel.org>
20628 M:      Peter Zijlstra <peterz@infradead.org>
20629 L:      linux-kernel@vger.kernel.org
20630 S:      Maintained
20631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20632 F:      arch/x86/mm/
20633
20634 X86 PLATFORM DRIVERS
20635 M:      Hans de Goede <hdegoede@redhat.com>
20636 M:      Mark Gross <markgross@kernel.org>
20637 L:      platform-driver-x86@vger.kernel.org
20638 S:      Maintained
20639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20640 F:      drivers/platform/olpc/
20641 F:      drivers/platform/x86/
20642
20643 X86 PLATFORM DRIVERS - ARCH
20644 R:      Darren Hart <dvhart@infradead.org>
20645 R:      Andy Shevchenko <andy@infradead.org>
20646 L:      platform-driver-x86@vger.kernel.org
20647 L:      x86@kernel.org
20648 S:      Maintained
20649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20650 F:      arch/x86/platform
20651
20652 X86 PLATFORM UV HPE SUPERDOME FLEX
20653 M:      Steve Wahl <steve.wahl@hpe.com>
20654 R:      Mike Travis <mike.travis@hpe.com>
20655 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
20656 R:      Russ Anderson <russ.anderson@hpe.com>
20657 S:      Supported
20658 F:      arch/x86/include/asm/uv/
20659 F:      arch/x86/kernel/apic/x2apic_uv_x.c
20660 F:      arch/x86/platform/uv/
20661
20662 X86 VDSO
20663 M:      Andy Lutomirski <luto@kernel.org>
20664 L:      linux-kernel@vger.kernel.org
20665 S:      Maintained
20666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20667 F:      arch/x86/entry/vdso/
20668
20669 XARRAY
20670 M:      Matthew Wilcox <willy@infradead.org>
20671 L:      linux-fsdevel@vger.kernel.org
20672 S:      Supported
20673 F:      Documentation/core-api/xarray.rst
20674 F:      include/linux/idr.h
20675 F:      include/linux/xarray.h
20676 F:      lib/idr.c
20677 F:      lib/xarray.c
20678 F:      tools/testing/radix-tree
20679
20680 XBOX DVD IR REMOTE
20681 M:      Benjamin Valentin <benpicco@googlemail.com>
20682 S:      Maintained
20683 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
20684 F:      drivers/media/rc/xbox_remote.c
20685
20686 XC2028/3028 TUNER DRIVER
20687 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20688 L:      linux-media@vger.kernel.org
20689 S:      Maintained
20690 W:      https://linuxtv.org
20691 T:      git git://linuxtv.org/media_tree.git
20692 F:      drivers/media/tuners/tuner-xc2028.*
20693
20694 XDP (eXpress Data Path)
20695 M:      Alexei Starovoitov <ast@kernel.org>
20696 M:      Daniel Borkmann <daniel@iogearbox.net>
20697 M:      David S. Miller <davem@davemloft.net>
20698 M:      Jakub Kicinski <kuba@kernel.org>
20699 M:      Jesper Dangaard Brouer <hawk@kernel.org>
20700 M:      John Fastabend <john.fastabend@gmail.com>
20701 L:      netdev@vger.kernel.org
20702 L:      bpf@vger.kernel.org
20703 S:      Supported
20704 F:      include/net/xdp.h
20705 F:      include/net/xdp_priv.h
20706 F:      include/trace/events/xdp.h
20707 F:      kernel/bpf/cpumap.c
20708 F:      kernel/bpf/devmap.c
20709 F:      net/core/xdp.c
20710 F:      samples/bpf/xdp*
20711 F:      tools/testing/selftests/bpf/*xdp*
20712 F:      tools/testing/selftests/bpf/*/*xdp*
20713 F:      drivers/net/ethernet/*/*/*/*/*xdp*
20714 F:      drivers/net/ethernet/*/*/*xdp*
20715 K:      (?:\b|_)xdp(?:\b|_)
20716
20717 XDP SOCKETS (AF_XDP)
20718 M:      Björn Töpel <bjorn@kernel.org>
20719 M:      Magnus Karlsson <magnus.karlsson@intel.com>
20720 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
20721 L:      netdev@vger.kernel.org
20722 L:      bpf@vger.kernel.org
20723 S:      Maintained
20724 F:      Documentation/networking/af_xdp.rst
20725 F:      include/net/xdp_sock*
20726 F:      include/net/xsk_buff_pool.h
20727 F:      include/uapi/linux/if_xdp.h
20728 F:      include/uapi/linux/xdp_diag.h
20729 F:      include/net/netns/xdp.h
20730 F:      net/xdp/
20731 F:      samples/bpf/xdpsock*
20732 F:      tools/lib/bpf/xsk*
20733
20734 XEN BLOCK SUBSYSTEM
20735 M:      Roger Pau Monné <roger.pau@citrix.com>
20736 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20737 S:      Supported
20738 F:      drivers/block/xen*
20739 F:      drivers/block/xen-blkback/*
20740
20741 XEN HYPERVISOR ARM
20742 M:      Stefano Stabellini <sstabellini@kernel.org>
20743 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20744 S:      Maintained
20745 F:      arch/arm/include/asm/xen/
20746 F:      arch/arm/xen/
20747
20748 XEN HYPERVISOR ARM64
20749 M:      Stefano Stabellini <sstabellini@kernel.org>
20750 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20751 S:      Maintained
20752 F:      arch/arm64/include/asm/xen/
20753 F:      arch/arm64/xen/
20754
20755 XEN HYPERVISOR INTERFACE
20756 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
20757 M:      Juergen Gross <jgross@suse.com>
20758 R:      Stefano Stabellini <sstabellini@kernel.org>
20759 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20760 S:      Supported
20761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
20762 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
20763 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
20764 F:      arch/x86/include/asm/pvclock-abi.h
20765 F:      arch/x86/include/asm/xen/
20766 F:      arch/x86/platform/pvh/
20767 F:      arch/x86/xen/
20768 F:      drivers/*/xen-*front.c
20769 F:      drivers/xen/
20770 F:      include/uapi/xen/
20771 F:      include/xen/
20772
20773 XEN NETWORK BACKEND DRIVER
20774 M:      Wei Liu <wei.liu@kernel.org>
20775 M:      Paul Durrant <paul@xen.org>
20776 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20777 L:      netdev@vger.kernel.org
20778 S:      Supported
20779 F:      drivers/net/xen-netback/*
20780
20781 XEN PCI SUBSYSTEM
20782 M:      Juergen Gross <jgross@suse.com>
20783 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20784 S:      Supported
20785 F:      arch/x86/pci/*xen*
20786 F:      drivers/pci/*xen*
20787
20788 XEN PVSCSI DRIVERS
20789 M:      Juergen Gross <jgross@suse.com>
20790 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20791 L:      linux-scsi@vger.kernel.org
20792 S:      Supported
20793 F:      drivers/scsi/xen-scsifront.c
20794 F:      drivers/xen/xen-scsiback.c
20795 F:      include/xen/interface/io/vscsiif.h
20796
20797 XEN SOUND FRONTEND DRIVER
20798 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
20799 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20800 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20801 S:      Supported
20802 F:      sound/xen/*
20803
20804 XEN SWIOTLB SUBSYSTEM
20805 M:      Juergen Gross <jgross@suse.com>
20806 M:      Stefano Stabellini <sstabellini@kernel.org>
20807 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20808 L:      iommu@lists.linux-foundation.org
20809 S:      Supported
20810 F:      arch/x86/xen/*swiotlb*
20811 F:      drivers/xen/*swiotlb*
20812
20813 XFS FILESYSTEM
20814 C:      irc://irc.oftc.net/xfs
20815 M:      Darrick J. Wong <djwong@kernel.org>
20816 M:      linux-xfs@vger.kernel.org
20817 L:      linux-xfs@vger.kernel.org
20818 S:      Supported
20819 W:      http://xfs.org/
20820 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
20821 F:      Documentation/ABI/testing/sysfs-fs-xfs
20822 F:      Documentation/admin-guide/xfs.rst
20823 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
20824 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
20825 F:      fs/xfs/
20826 F:      include/uapi/linux/dqblk_xfs.h
20827 F:      include/uapi/linux/fsmap.h
20828
20829 XILINX AXI ETHERNET DRIVER
20830 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
20831 S:      Maintained
20832 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
20833
20834 XILINX CAN DRIVER
20835 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
20836 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
20837 L:      linux-can@vger.kernel.org
20838 S:      Maintained
20839 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
20840 F:      drivers/net/can/xilinx_can.c
20841
20842 XILINX GPIO DRIVER
20843 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
20844 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
20845 R:      Michal Simek <michal.simek@xilinx.com>
20846 S:      Maintained
20847 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20848 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
20849 F:      drivers/gpio/gpio-xilinx.c
20850 F:      drivers/gpio/gpio-zynq.c
20851
20852 XILINX SD-FEC IP CORES
20853 M:      Derek Kiernan <derek.kiernan@xilinx.com>
20854 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
20855 S:      Maintained
20856 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
20857 F:      Documentation/misc-devices/xilinx_sdfec.rst
20858 F:      drivers/misc/Kconfig
20859 F:      drivers/misc/Makefile
20860 F:      drivers/misc/xilinx_sdfec.c
20861 F:      include/uapi/misc/xilinx_sdfec.h
20862
20863 XILINX UARTLITE SERIAL DRIVER
20864 M:      Peter Korsgaard <jacmet@sunsite.dk>
20865 L:      linux-serial@vger.kernel.org
20866 S:      Maintained
20867 F:      drivers/tty/serial/uartlite.c
20868
20869 XILINX VIDEO IP CORES
20870 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20871 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20872 L:      linux-media@vger.kernel.org
20873 S:      Supported
20874 T:      git git://linuxtv.org/media_tree.git
20875 F:      Documentation/devicetree/bindings/media/xilinx/
20876 F:      drivers/media/platform/xilinx/
20877 F:      include/uapi/linux/xilinx-v4l2-controls.h
20878
20879 XILINX ZYNQMP DPDMA DRIVER
20880 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20881 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20882 L:      dmaengine@vger.kernel.org
20883 S:      Supported
20884 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20885 F:      drivers/dma/xilinx/xilinx_dpdma.c
20886 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20887
20888 XILINX ZYNQMP PSGTR PHY DRIVER
20889 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
20890 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20891 L:      linux-kernel@vger.kernel.org
20892 S:      Supported
20893 T:      git https://github.com/Xilinx/linux-xlnx.git
20894 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20895 F:      drivers/phy/xilinx/phy-zynqmp.c
20896
20897 XILLYBUS DRIVER
20898 M:      Eli Billauer <eli.billauer@gmail.com>
20899 L:      linux-kernel@vger.kernel.org
20900 S:      Supported
20901 F:      drivers/char/xillybus/
20902
20903 XLP9XX I2C DRIVER
20904 M:      George Cherian <gcherian@marvell.com>
20905 L:      linux-i2c@vger.kernel.org
20906 S:      Supported
20907 W:      http://www.marvell.com
20908 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20909 F:      drivers/i2c/busses/i2c-xlp9xx.c
20910
20911 XRA1403 GPIO EXPANDER
20912 M:      Nandor Han <nandor.han@ge.com>
20913 M:      Semi Malinen <semi.malinen@ge.com>
20914 L:      linux-gpio@vger.kernel.org
20915 S:      Maintained
20916 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20917 F:      drivers/gpio/gpio-xra1403.c
20918
20919 XTENSA XTFPGA PLATFORM SUPPORT
20920 M:      Max Filippov <jcmvbkbc@gmail.com>
20921 L:      linux-xtensa@linux-xtensa.org
20922 S:      Maintained
20923 F:      drivers/spi/spi-xtensa-xtfpga.c
20924 F:      sound/soc/xtensa/xtfpga-i2s.c
20925
20926 YAM DRIVER FOR AX.25
20927 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
20928 L:      linux-hams@vger.kernel.org
20929 S:      Maintained
20930 F:      drivers/net/hamradio/yam*
20931 F:      include/linux/yam.h
20932
20933 YAMA SECURITY MODULE
20934 M:      Kees Cook <keescook@chromium.org>
20935 S:      Supported
20936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20937 F:      Documentation/admin-guide/LSM/Yama.rst
20938 F:      security/yama/
20939
20940 YEALINK PHONE DRIVER
20941 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
20942 L:      usbb2k-api-dev@nongnu.org
20943 S:      Maintained
20944 F:      Documentation/input/devices/yealink.rst
20945 F:      drivers/input/misc/yealink.*
20946
20947 Z8530 DRIVER FOR AX.25
20948 M:      Joerg Reuter <jreuter@yaina.de>
20949 L:      linux-hams@vger.kernel.org
20950 S:      Maintained
20951 W:      http://yaina.de/jreuter/
20952 W:      http://www.qsl.net/dl1bke/
20953 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
20954 F:      drivers/net/hamradio/*scc.c
20955 F:      drivers/net/hamradio/z8530.h
20956
20957 ZBUD COMPRESSED PAGE ALLOCATOR
20958 M:      Seth Jennings <sjenning@redhat.com>
20959 M:      Dan Streetman <ddstreet@ieee.org>
20960 L:      linux-mm@kvack.org
20961 S:      Maintained
20962 F:      mm/zbud.c
20963
20964 ZD1211RW WIRELESS DRIVER
20965 M:      Ulrich Kunitz <kune@deine-taler.de>
20966 L:      linux-wireless@vger.kernel.org
20967 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
20968 S:      Maintained
20969 W:      http://zd1211.ath.cx/wiki/DriverRewrite
20970 F:      drivers/net/wireless/zydas/zd1211rw/
20971
20972 ZD1301 MEDIA DRIVER
20973 M:      Antti Palosaari <crope@iki.fi>
20974 L:      linux-media@vger.kernel.org
20975 S:      Maintained
20976 W:      https://linuxtv.org/
20977 W:      http://palosaari.fi/linux/
20978 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20979 F:      drivers/media/usb/dvb-usb-v2/zd1301*
20980
20981 ZD1301_DEMOD MEDIA DRIVER
20982 M:      Antti Palosaari <crope@iki.fi>
20983 L:      linux-media@vger.kernel.org
20984 S:      Maintained
20985 W:      https://linuxtv.org/
20986 W:      http://palosaari.fi/linux/
20987 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20988 F:      drivers/media/dvb-frontends/zd1301_demod*
20989
20990 ZHAOXIN PROCESSOR SUPPORT
20991 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
20992 L:      linux-kernel@vger.kernel.org
20993 S:      Maintained
20994 F:      arch/x86/kernel/cpu/zhaoxin.c
20995
20996 ZONEFS FILESYSTEM
20997 M:      Damien Le Moal <damien.lemoal@wdc.com>
20998 M:      Naohiro Aota <naohiro.aota@wdc.com>
20999 R:      Johannes Thumshirn <jth@kernel.org>
21000 L:      linux-fsdevel@vger.kernel.org
21001 S:      Maintained
21002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
21003 F:      Documentation/filesystems/zonefs.rst
21004 F:      fs/zonefs/
21005
21006 ZPOOL COMPRESSED PAGE STORAGE API
21007 M:      Dan Streetman <ddstreet@ieee.org>
21008 L:      linux-mm@kvack.org
21009 S:      Maintained
21010 F:      include/linux/zpool.h
21011 F:      mm/zpool.c
21012
21013 ZR36067 VIDEO FOR LINUX DRIVER
21014 M:      Corentin Labbe <clabbe@baylibre.com>
21015 L:      mjpeg-users@lists.sourceforge.net
21016 L:      linux-media@vger.kernel.org
21017 S:      Maintained
21018 W:      http://mjpeg.sourceforge.net/driver-zoran/
21019 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21020 F:      Documentation/driver-api/media/drivers/zoran.rst
21021 F:      drivers/staging/media/zoran/
21022
21023 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
21024 M:      Minchan Kim <minchan@kernel.org>
21025 M:      Nitin Gupta <ngupta@vflare.org>
21026 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
21027 L:      linux-kernel@vger.kernel.org
21028 S:      Maintained
21029 F:      Documentation/admin-guide/blockdev/zram.rst
21030 F:      drivers/block/zram/
21031
21032 ZS DECSTATION Z85C30 SERIAL DRIVER
21033 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
21034 S:      Maintained
21035 F:      drivers/tty/serial/zs.*
21036
21037 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
21038 M:      Minchan Kim <minchan@kernel.org>
21039 M:      Nitin Gupta <ngupta@vflare.org>
21040 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
21041 L:      linux-mm@kvack.org
21042 S:      Maintained
21043 F:      Documentation/vm/zsmalloc.rst
21044 F:      include/linux/zsmalloc.h
21045 F:      mm/zsmalloc.c
21046
21047 ZSWAP COMPRESSED SWAP CACHING
21048 M:      Seth Jennings <sjenning@redhat.com>
21049 M:      Dan Streetman <ddstreet@ieee.org>
21050 M:      Vitaly Wool <vitaly.wool@konsulko.com>
21051 L:      linux-mm@kvack.org
21052 S:      Maintained
21053 F:      mm/zswap.c
21054
21055 THE REST
21056 M:      Linus Torvalds <torvalds@linux-foundation.org>
21057 L:      linux-kernel@vger.kernel.org
21058 S:      Buried alive in reporters
21059 Q:      http://patchwork.kernel.org/project/LKML/list/
21060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
21061 F:      *
21062 F:      */