Merge tag 'driver-core-5.15-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git...
[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" <rjw@rjwysocki.net>
337 M:      Len Brown <lenb@kernel.org>
338 L:      linux-acpi@vger.kernel.org
339 S:      Supported
340 W:      https://01.org/linux-acpi
341 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
342 B:      https://bugzilla.kernel.org
343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
344 F:      Documentation/ABI/testing/configfs-acpi
345 F:      Documentation/ABI/testing/sysfs-bus-acpi
346 F:      Documentation/firmware-guide/acpi/
347 F:      drivers/acpi/
348 F:      drivers/pci/*/*acpi*
349 F:      drivers/pci/*acpi*
350 F:      drivers/pnp/pnpacpi/
351 F:      include/acpi/
352 F:      include/linux/acpi.h
353 F:      include/linux/fwnode.h
354 F:      tools/power/acpi/
355
356 ACPI APEI
357 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
358 M:      Len Brown <lenb@kernel.org>
359 R:      James Morse <james.morse@arm.com>
360 R:      Tony Luck <tony.luck@intel.com>
361 R:      Borislav Petkov <bp@alien8.de>
362 L:      linux-acpi@vger.kernel.org
363 F:      drivers/acpi/apei/
364
365 ACPI COMPONENT ARCHITECTURE (ACPICA)
366 M:      Robert Moore <robert.moore@intel.com>
367 M:      Erik Kaneda <erik.kaneda@intel.com>
368 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
369 L:      linux-acpi@vger.kernel.org
370 L:      devel@acpica.org
371 S:      Supported
372 W:      https://acpica.org/
373 W:      https://github.com/acpica/acpica/
374 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
375 B:      https://bugzilla.kernel.org
376 B:      https://bugs.acpica.org
377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
378 F:      drivers/acpi/acpica/
379 F:      include/acpi/
380 F:      tools/power/acpi/
381
382 ACPI FAN DRIVER
383 M:      Zhang Rui <rui.zhang@intel.com>
384 L:      linux-acpi@vger.kernel.org
385 S:      Supported
386 W:      https://01.org/linux-acpi
387 B:      https://bugzilla.kernel.org
388 F:      drivers/acpi/fan.c
389
390 ACPI FOR ARM64 (ACPI/arm64)
391 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
392 M:      Hanjun Guo <guohanjun@huawei.com>
393 M:      Sudeep Holla <sudeep.holla@arm.com>
394 L:      linux-acpi@vger.kernel.org
395 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
396 S:      Maintained
397 F:      drivers/acpi/arm64
398
399 ACPI I2C MULTI INSTANTIATE DRIVER
400 M:      Hans de Goede <hdegoede@redhat.com>
401 L:      platform-driver-x86@vger.kernel.org
402 S:      Maintained
403 F:      drivers/platform/x86/i2c-multi-instantiate.c
404
405 ACPI PMIC DRIVERS
406 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
407 M:      Len Brown <lenb@kernel.org>
408 R:      Andy Shevchenko <andy@kernel.org>
409 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
410 L:      linux-acpi@vger.kernel.org
411 S:      Supported
412 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
413 B:      https://bugzilla.kernel.org
414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
415 F:      drivers/acpi/pmic/
416
417 ACPI THERMAL DRIVER
418 M:      Zhang Rui <rui.zhang@intel.com>
419 L:      linux-acpi@vger.kernel.org
420 S:      Supported
421 W:      https://01.org/linux-acpi
422 B:      https://bugzilla.kernel.org
423 F:      drivers/acpi/*thermal*
424
425 ACPI VIDEO DRIVER
426 M:      Zhang Rui <rui.zhang@intel.com>
427 L:      linux-acpi@vger.kernel.org
428 S:      Supported
429 W:      https://01.org/linux-acpi
430 B:      https://bugzilla.kernel.org
431 F:      drivers/acpi/acpi_video.c
432
433 ACPI VIOT DRIVER
434 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
435 L:      linux-acpi@vger.kernel.org
436 L:      iommu@lists.linux-foundation.org
437 S:      Maintained
438 F:      drivers/acpi/viot.c
439 F:      include/linux/acpi_viot.h
440
441 ACPI WMI DRIVER
442 L:      platform-driver-x86@vger.kernel.org
443 S:      Orphan
444 F:      drivers/platform/x86/wmi.c
445 F:      include/uapi/linux/wmi.h
446
447 ACRN HYPERVISOR SERVICE MODULE
448 M:      Fei Li <fei1.li@intel.com>
449 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
450 S:      Supported
451 W:      https://projectacrn.org
452 F:      Documentation/virt/acrn/
453 F:      drivers/virt/acrn/
454 F:      include/uapi/linux/acrn.h
455
456 AD1889 ALSA SOUND DRIVER
457 L:      linux-parisc@vger.kernel.org
458 S:      Maintained
459 W:      https://parisc.wiki.kernel.org/index.php/AD1889
460 F:      sound/pci/ad1889.*
461
462 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
463 M:      Michael Hennerich <michael.hennerich@analog.com>
464 S:      Supported
465 W:      http://wiki.analog.com/AD5254
466 W:      http://ez.analog.com/community/linux-device-drivers
467 F:      drivers/misc/ad525x_dpot.c
468
469 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
470 M:      Michael Hennerich <michael.hennerich@analog.com>
471 S:      Supported
472 W:      http://wiki.analog.com/AD5398
473 W:      http://ez.analog.com/community/linux-device-drivers
474 F:      drivers/regulator/ad5398.c
475
476 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
477 M:      Michael Hennerich <michael.hennerich@analog.com>
478 S:      Supported
479 W:      http://wiki.analog.com/AD7142
480 W:      http://ez.analog.com/community/linux-device-drivers
481 F:      drivers/input/misc/ad714x.c
482
483 AD7877 TOUCHSCREEN DRIVER
484 M:      Michael Hennerich <michael.hennerich@analog.com>
485 S:      Supported
486 W:      http://wiki.analog.com/AD7877
487 W:      http://ez.analog.com/community/linux-device-drivers
488 F:      drivers/input/touchscreen/ad7877.c
489
490 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
491 M:      Michael Hennerich <michael.hennerich@analog.com>
492 S:      Supported
493 W:      http://wiki.analog.com/AD7879
494 W:      http://ez.analog.com/community/linux-device-drivers
495 F:      drivers/input/touchscreen/ad7879.c
496
497 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
498 M:      Jiri Kosina <jikos@kernel.org>
499 S:      Maintained
500
501 ADF7242 IEEE 802.15.4 RADIO DRIVER
502 M:      Michael Hennerich <michael.hennerich@analog.com>
503 L:      linux-wpan@vger.kernel.org
504 S:      Supported
505 W:      https://wiki.analog.com/ADF7242
506 W:      http://ez.analog.com/community/linux-device-drivers
507 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
508 F:      drivers/net/ieee802154/adf7242.c
509
510 ADM1025 HARDWARE MONITOR DRIVER
511 M:      Jean Delvare <jdelvare@suse.com>
512 L:      linux-hwmon@vger.kernel.org
513 S:      Maintained
514 F:      Documentation/hwmon/adm1025.rst
515 F:      drivers/hwmon/adm1025.c
516
517 ADM1029 HARDWARE MONITOR DRIVER
518 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
519 L:      linux-hwmon@vger.kernel.org
520 S:      Maintained
521 F:      drivers/hwmon/adm1029.c
522
523 ADM8211 WIRELESS DRIVER
524 L:      linux-wireless@vger.kernel.org
525 S:      Orphan
526 W:      https://wireless.wiki.kernel.org/
527 F:      drivers/net/wireless/admtek/adm8211.*
528
529 ADP1653 FLASH CONTROLLER DRIVER
530 M:      Sakari Ailus <sakari.ailus@iki.fi>
531 L:      linux-media@vger.kernel.org
532 S:      Maintained
533 F:      drivers/media/i2c/adp1653.c
534 F:      include/media/i2c/adp1653.h
535
536 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
537 M:      Michael Hennerich <michael.hennerich@analog.com>
538 S:      Supported
539 W:      http://wiki.analog.com/ADP5520
540 W:      http://ez.analog.com/community/linux-device-drivers
541 F:      drivers/gpio/gpio-adp5520.c
542 F:      drivers/input/keyboard/adp5520-keys.c
543 F:      drivers/leds/leds-adp5520.c
544 F:      drivers/mfd/adp5520.c
545 F:      drivers/video/backlight/adp5520_bl.c
546
547 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
548 M:      Michael Hennerich <michael.hennerich@analog.com>
549 S:      Supported
550 W:      http://wiki.analog.com/ADP5588
551 W:      http://ez.analog.com/community/linux-device-drivers
552 F:      drivers/gpio/gpio-adp5588.c
553 F:      drivers/input/keyboard/adp5588-keys.c
554
555 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
556 M:      Michael Hennerich <michael.hennerich@analog.com>
557 S:      Supported
558 W:      http://wiki.analog.com/ADP8860
559 W:      http://ez.analog.com/community/linux-device-drivers
560 F:      drivers/video/backlight/adp8860_bl.c
561
562 ADT746X FAN DRIVER
563 M:      Colin Leroy <colin@colino.net>
564 S:      Maintained
565 F:      drivers/macintosh/therm_adt746x.c
566
567 ADT7475 HARDWARE MONITOR DRIVER
568 M:      Jean Delvare <jdelvare@suse.com>
569 L:      linux-hwmon@vger.kernel.org
570 S:      Maintained
571 F:      Documentation/hwmon/adt7475.rst
572 F:      drivers/hwmon/adt7475.c
573
574 ADVANSYS SCSI DRIVER
575 M:      Matthew Wilcox <willy@infradead.org>
576 M:      Hannes Reinecke <hare@suse.com>
577 L:      linux-scsi@vger.kernel.org
578 S:      Maintained
579 F:      Documentation/scsi/advansys.rst
580 F:      drivers/scsi/advansys.c
581
582 ADVANTECH SWBTN DRIVER
583 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
584 L:      platform-driver-x86@vger.kernel.org
585 S:      Maintained
586 F:      drivers/platform/x86/adv_swbutton.c
587
588 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
589 M:      Michael Hennerich <michael.hennerich@analog.com>
590 S:      Supported
591 W:      http://wiki.analog.com/ADXL345
592 W:      http://ez.analog.com/community/linux-device-drivers
593 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
594 F:      drivers/input/misc/adxl34x.c
595
596 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
597 M:      Michael Hennerich <michael.hennerich@analog.com>
598 S:      Supported
599 W:      http://ez.analog.com/community/linux-device-drivers
600 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
601 F:      drivers/iio/accel/adxl372.c
602 F:      drivers/iio/accel/adxl372_i2c.c
603 F:      drivers/iio/accel/adxl372_spi.c
604
605 AF9013 MEDIA DRIVER
606 M:      Antti Palosaari <crope@iki.fi>
607 L:      linux-media@vger.kernel.org
608 S:      Maintained
609 W:      https://linuxtv.org
610 W:      http://palosaari.fi/linux/
611 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
612 T:      git git://linuxtv.org/anttip/media_tree.git
613 F:      drivers/media/dvb-frontends/af9013*
614
615 AF9033 MEDIA DRIVER
616 M:      Antti Palosaari <crope@iki.fi>
617 L:      linux-media@vger.kernel.org
618 S:      Maintained
619 W:      https://linuxtv.org
620 W:      http://palosaari.fi/linux/
621 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
622 T:      git git://linuxtv.org/anttip/media_tree.git
623 F:      drivers/media/dvb-frontends/af9033*
624
625 AFFS FILE SYSTEM
626 M:      David Sterba <dsterba@suse.com>
627 L:      linux-fsdevel@vger.kernel.org
628 S:      Odd Fixes
629 F:      Documentation/filesystems/affs.rst
630 F:      fs/affs/
631
632 AFS FILESYSTEM
633 M:      David Howells <dhowells@redhat.com>
634 M:      Marc Dionne <marc.dionne@auristor.com>
635 L:      linux-afs@lists.infradead.org
636 S:      Supported
637 W:      https://www.infradead.org/~dhowells/kafs/
638 F:      Documentation/filesystems/afs.rst
639 F:      fs/afs/
640 F:      include/trace/events/afs.h
641
642 AGPGART DRIVER
643 M:      David Airlie <airlied@linux.ie>
644 S:      Maintained
645 T:      git git://anongit.freedesktop.org/drm/drm
646 F:      drivers/char/agp/
647 F:      include/linux/agp*
648 F:      include/uapi/linux/agp*
649
650 AHA152X SCSI DRIVER
651 M:      "Juergen E. Fischer" <fischer@norbit.de>
652 L:      linux-scsi@vger.kernel.org
653 S:      Maintained
654 F:      drivers/scsi/aha152x*
655 F:      drivers/scsi/pcmcia/aha152x*
656
657 AIC7XXX / AIC79XX SCSI DRIVER
658 M:      Hannes Reinecke <hare@suse.com>
659 L:      linux-scsi@vger.kernel.org
660 S:      Maintained
661 F:      drivers/scsi/aic7xxx/
662
663 AIMSLAB FM RADIO RECEIVER DRIVER
664 M:      Hans Verkuil <hverkuil@xs4all.nl>
665 L:      linux-media@vger.kernel.org
666 S:      Maintained
667 W:      https://linuxtv.org
668 T:      git git://linuxtv.org/media_tree.git
669 F:      drivers/media/radio/radio-aimslab*
670
671 AIO
672 M:      Benjamin LaHaise <bcrl@kvack.org>
673 L:      linux-aio@kvack.org
674 S:      Supported
675 F:      fs/aio.c
676 F:      include/linux/*aio*.h
677
678 AIRSPY MEDIA DRIVER
679 M:      Antti Palosaari <crope@iki.fi>
680 L:      linux-media@vger.kernel.org
681 S:      Maintained
682 W:      https://linuxtv.org
683 W:      http://palosaari.fi/linux/
684 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
685 T:      git git://linuxtv.org/anttip/media_tree.git
686 F:      drivers/media/usb/airspy/
687
688 ALACRITECH GIGABIT ETHERNET DRIVER
689 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
690 S:      Maintained
691 F:      drivers/net/ethernet/alacritech/*
692
693 ALCATEL SPEEDTOUCH USB DRIVER
694 M:      Duncan Sands <duncan.sands@free.fr>
695 L:      linux-usb@vger.kernel.org
696 S:      Maintained
697 W:      http://www.linux-usb.org/SpeedTouch/
698 F:      drivers/usb/atm/speedtch.c
699 F:      drivers/usb/atm/usbatm.c
700
701 ALCHEMY AU1XX0 MMC DRIVER
702 M:      Manuel Lauss <manuel.lauss@gmail.com>
703 S:      Maintained
704 F:      drivers/mmc/host/au1xmmc.c
705
706 ALI1563 I2C DRIVER
707 M:      Rudolf Marek <r.marek@assembler.cz>
708 L:      linux-i2c@vger.kernel.org
709 S:      Maintained
710 F:      Documentation/i2c/busses/i2c-ali1563.rst
711 F:      drivers/i2c/busses/i2c-ali1563.c
712
713 ALIENWARE WMI DRIVER
714 L:      Dell.Client.Kernel@dell.com
715 S:      Maintained
716 F:      drivers/platform/x86/dell/alienware-wmi.c
717
718 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
719 M:      Tomislav Denis <tomislav.denis@avl.com>
720 L:      linux-iio@vger.kernel.org
721 S:      Maintained
722 W:      http://www.allsensors.com/
723 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
724 F:      drivers/iio/pressure/dlhl60d.c
725
726 ALLEGRO DVT VIDEO IP CORE DRIVER
727 M:      Michael Tretter <m.tretter@pengutronix.de>
728 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
729 L:      linux-media@vger.kernel.org
730 S:      Maintained
731 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
732 F:      drivers/media/platform/allegro-dvt/
733
734 ALLWINNER A10 CSI DRIVER
735 M:      Maxime Ripard <mripard@kernel.org>
736 L:      linux-media@vger.kernel.org
737 S:      Maintained
738 T:      git git://linuxtv.org/media_tree.git
739 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
740 F:      drivers/media/platform/sunxi/sun4i-csi/
741
742 ALLWINNER CPUFREQ DRIVER
743 M:      Yangtao Li <tiny.windzz@gmail.com>
744 L:      linux-pm@vger.kernel.org
745 S:      Maintained
746 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
747 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
748
749 ALLWINNER CRYPTO DRIVERS
750 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
751 L:      linux-crypto@vger.kernel.org
752 S:      Maintained
753 F:      drivers/crypto/allwinner/
754
755 ALLWINNER HARDWARE SPINLOCK SUPPORT
756 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
757 S:      Maintained
758 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-hwspinlock.yaml
759 F:      drivers/hwspinlock/sun6i_hwspinlock.c
760
761 ALLWINNER THERMAL DRIVER
762 M:      Vasily Khoruzhick <anarsoul@gmail.com>
763 M:      Yangtao Li <tiny.windzz@gmail.com>
764 L:      linux-pm@vger.kernel.org
765 S:      Maintained
766 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
767 F:      drivers/thermal/sun8i_thermal.c
768
769 ALLWINNER VPU DRIVER
770 M:      Maxime Ripard <mripard@kernel.org>
771 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
772 L:      linux-media@vger.kernel.org
773 S:      Maintained
774 F:      drivers/staging/media/sunxi/cedrus/
775
776 ALPHA PORT
777 M:      Richard Henderson <rth@twiddle.net>
778 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
779 M:      Matt Turner <mattst88@gmail.com>
780 L:      linux-alpha@vger.kernel.org
781 S:      Odd Fixes
782 F:      arch/alpha/
783
784 ALPS PS/2 TOUCHPAD DRIVER
785 R:      Pali Rohár <pali@kernel.org>
786 F:      drivers/input/mouse/alps.*
787
788 ALTERA I2C CONTROLLER DRIVER
789 M:      Thor Thayer <thor.thayer@linux.intel.com>
790 S:      Maintained
791 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
792 F:      drivers/i2c/busses/i2c-altera.c
793
794 ALTERA MAILBOX DRIVER
795 M:      Ley Foon Tan <ley.foon.tan@intel.com>
796 S:      Maintained
797 F:      drivers/mailbox/mailbox-altera.c
798
799 ALTERA MSGDMA IP CORE DRIVER
800 M:      Olivier Dautricourt <olivier.dautricourt@orolia.com>
801 R:      Stefan Roese <sr@denx.de>
802 L:      dmaengine@vger.kernel.org
803 S:      Odd Fixes
804 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
805 F:      drivers/dma/altera-msgdma.c
806
807 ALTERA PIO DRIVER
808 M:      Joyce Ooi <joyce.ooi@intel.com>
809 L:      linux-gpio@vger.kernel.org
810 S:      Maintained
811 F:      drivers/gpio/gpio-altera.c
812
813 ALTERA SYSTEM MANAGER DRIVER
814 M:      Thor Thayer <thor.thayer@linux.intel.com>
815 S:      Maintained
816 F:      drivers/mfd/altera-sysmgr.c
817 F:      include/linux/mfd/altera-sysmgr.h
818
819 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
820 M:      Thor Thayer <thor.thayer@linux.intel.com>
821 S:      Maintained
822 F:      drivers/gpio/gpio-altera-a10sr.c
823 F:      drivers/mfd/altera-a10sr.c
824 F:      drivers/reset/reset-a10sr.c
825 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
826 F:      include/linux/mfd/altera-a10sr.h
827
828 ALTERA TRIPLE SPEED ETHERNET DRIVER
829 M:      Joyce Ooi <joyce.ooi@intel.com>
830 L:      netdev@vger.kernel.org
831 S:      Maintained
832 F:      drivers/net/ethernet/altera/
833
834 ALTERA UART/JTAG UART SERIAL DRIVERS
835 M:      Tobias Klauser <tklauser@distanz.ch>
836 L:      linux-serial@vger.kernel.org
837 S:      Maintained
838 F:      drivers/tty/serial/altera_jtaguart.c
839 F:      drivers/tty/serial/altera_uart.c
840 F:      include/linux/altera_jtaguart.h
841 F:      include/linux/altera_uart.h
842
843 AMAZON ANNAPURNA LABS FIC DRIVER
844 M:      Talel Shenhar <talel@amazon.com>
845 S:      Maintained
846 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
847 F:      drivers/irqchip/irq-al-fic.c
848
849 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
850 M:      Talel Shenhar <talel@amazon.com>
851 M:      Talel Shenhar <talelshenhar@gmail.com>
852 S:      Maintained
853 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
854 F:      drivers/edac/al_mc_edac.c
855
856 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
857 M:      Talel Shenhar <talel@amazon.com>
858 S:      Maintained
859 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
860 F:      drivers/thermal/thermal_mmio.c
861
862 AMAZON ETHERNET DRIVERS
863 M:      Netanel Belgazal <netanel@amazon.com>
864 M:      Arthur Kiyanovski <akiyano@amazon.com>
865 R:      Guy Tzalik <gtzalik@amazon.com>
866 R:      Saeed Bishara <saeedb@amazon.com>
867 L:      netdev@vger.kernel.org
868 S:      Supported
869 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
870 F:      drivers/net/ethernet/amazon/
871
872 AMAZON RDMA EFA DRIVER
873 M:      Gal Pressman <galpress@amazon.com>
874 R:      Yossi Leybovich <sleybo@amazon.com>
875 L:      linux-rdma@vger.kernel.org
876 S:      Supported
877 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
878 F:      drivers/infiniband/hw/efa/
879 F:      include/uapi/rdma/efa-abi.h
880
881 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
882 M:      Tom Lendacky <thomas.lendacky@amd.com>
883 M:      John Allen <john.allen@amd.com>
884 L:      linux-crypto@vger.kernel.org
885 S:      Supported
886 F:      drivers/crypto/ccp/
887 F:      include/linux/ccp.h
888
889 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
890 M:      Brijesh Singh <brijesh.singh@amd.com>
891 M:      Tom Lendacky <thomas.lendacky@amd.com>
892 L:      linux-crypto@vger.kernel.org
893 S:      Supported
894 F:      drivers/crypto/ccp/sev*
895 F:      include/uapi/linux/psp-sev.h
896
897 AMD DISPLAY CORE
898 M:      Harry Wentland <harry.wentland@amd.com>
899 M:      Leo Li <sunpeng.li@amd.com>
900 L:      amd-gfx@lists.freedesktop.org
901 S:      Supported
902 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
903 F:      drivers/gpu/drm/amd/display/
904
905 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
906 M:      Huang Rui <ray.huang@amd.com>
907 L:      linux-hwmon@vger.kernel.org
908 S:      Supported
909 F:      Documentation/hwmon/fam15h_power.rst
910 F:      drivers/hwmon/fam15h_power.c
911
912 AMD FCH GPIO DRIVER
913 M:      Enrico Weigelt, metux IT consult <info@metux.net>
914 L:      linux-gpio@vger.kernel.org
915 S:      Maintained
916 F:      drivers/gpio/gpio-amd-fch.c
917 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
918
919 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
920 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
921 S:      Orphan
922 F:      drivers/usb/gadget/udc/amd5536udc.*
923
924 AMD GEODE PROCESSOR/CHIPSET SUPPORT
925 M:      Andres Salomon <dilinger@queued.net>
926 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
927 S:      Supported
928 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
929 F:      arch/x86/include/asm/geode.h
930 F:      drivers/char/hw_random/geode-rng.c
931 F:      drivers/crypto/geode*
932 F:      drivers/video/fbdev/geode/
933
934 AMD IOMMU (AMD-VI)
935 M:      Joerg Roedel <joro@8bytes.org>
936 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
937 L:      iommu@lists.linux-foundation.org
938 S:      Maintained
939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
940 F:      drivers/iommu/amd/
941 F:      include/linux/amd-iommu.h
942
943 AMD KFD
944 M:      Felix Kuehling <Felix.Kuehling@amd.com>
945 L:      amd-gfx@lists.freedesktop.org
946 S:      Supported
947 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
948 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
949 F:      drivers/gpu/drm/amd/amdkfd/
950 F:      drivers/gpu/drm/amd/include/cik_structs.h
951 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
952 F:      drivers/gpu/drm/amd/include/v9_structs.h
953 F:      drivers/gpu/drm/amd/include/vi_structs.h
954 F:      include/uapi/linux/kfd_ioctl.h
955
956 AMD SPI DRIVER
957 M:      Sanjay R Mehta <sanju.mehta@amd.com>
958 S:      Maintained
959 F:      drivers/spi/spi-amd.c
960
961 AMD MP2 I2C DRIVER
962 M:      Elie Morisse <syniurge@gmail.com>
963 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
964 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
965 L:      linux-i2c@vger.kernel.org
966 S:      Maintained
967 F:      drivers/i2c/busses/i2c-amd-mp2*
968
969 AMD PMC DRIVER
970 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
971 L:      platform-driver-x86@vger.kernel.org
972 S:      Maintained
973 F:      drivers/platform/x86/amd-pmc.*
974
975 AMD POWERPLAY
976 M:      Evan Quan <evan.quan@amd.com>
977 L:      amd-gfx@lists.freedesktop.org
978 S:      Supported
979 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
980 F:      drivers/gpu/drm/amd/pm/powerplay/
981
982 AMD SEATTLE DEVICE TREE SUPPORT
983 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
984 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
985 M:      Tom Lendacky <thomas.lendacky@amd.com>
986 S:      Supported
987 F:      arch/arm64/boot/dts/amd/
988
989 AMD XGBE DRIVER
990 M:      Tom Lendacky <thomas.lendacky@amd.com>
991 L:      netdev@vger.kernel.org
992 S:      Supported
993 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
994 F:      drivers/net/ethernet/amd/xgbe/
995
996 AMD SENSOR FUSION HUB DRIVER
997 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
998 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
999 L:      linux-input@vger.kernel.org
1000 S:      Maintained
1001 F:      Documentation/hid/amd-sfh*
1002 F:      drivers/hid/amd-sfh-hid/
1003
1004 AMS AS73211 DRIVER
1005 M:      Christian Eggers <ceggers@arri.de>
1006 L:      linux-iio@vger.kernel.org
1007 S:      Maintained
1008 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1009 F:      drivers/iio/light/as73211.c
1010
1011 ANALOG DEVICES INC AD7192 DRIVER
1012 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1013 L:      linux-iio@vger.kernel.org
1014 S:      Supported
1015 W:      http://ez.analog.com/community/linux-device-drivers
1016 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1017 F:      drivers/iio/adc/ad7192.c
1018
1019 ANALOG DEVICES INC AD7292 DRIVER
1020 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1021 L:      linux-iio@vger.kernel.org
1022 S:      Supported
1023 W:      http://ez.analog.com/community/linux-device-drivers
1024 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1025 F:      drivers/iio/adc/ad7292.c
1026
1027 ANALOG DEVICES INC AD7768-1 DRIVER
1028 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1029 L:      linux-iio@vger.kernel.org
1030 S:      Supported
1031 W:      http://ez.analog.com/community/linux-device-drivers
1032 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1033 F:      drivers/iio/adc/ad7768-1.c
1034
1035 ANALOG DEVICES INC AD7780 DRIVER
1036 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1037 M:      Renato Lui Geh <renatogeh@gmail.com>
1038 L:      linux-iio@vger.kernel.org
1039 S:      Supported
1040 W:      http://ez.analog.com/community/linux-device-drivers
1041 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1042 F:      drivers/iio/adc/ad7780.c
1043
1044 ANALOG DEVICES INC AD9389B DRIVER
1045 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1046 L:      linux-media@vger.kernel.org
1047 S:      Maintained
1048 F:      drivers/media/i2c/ad9389b*
1049
1050 ANALOG DEVICES INC ADGS1408 DRIVER
1051 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1052 S:      Supported
1053 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1054 F:      drivers/mux/adgs1408.c
1055
1056 ANALOG DEVICES INC ADIN DRIVER
1057 M:      Michael Hennerich <michael.hennerich@analog.com>
1058 L:      netdev@vger.kernel.org
1059 S:      Supported
1060 W:      http://ez.analog.com/community/linux-device-drivers
1061 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1062 F:      drivers/net/phy/adin.c
1063
1064 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1065 M:      Nuno Sa <nuno.sa@analog.com>
1066 L:      linux-iio@vger.kernel.org
1067 S:      Supported
1068 F:      drivers/iio/imu/adis.c
1069 F:      include/linux/iio/imu/adis.h
1070
1071 ANALOG DEVICES INC ADIS16460 DRIVER
1072 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1073 L:      linux-iio@vger.kernel.org
1074 S:      Supported
1075 W:      http://ez.analog.com/community/linux-device-drivers
1076 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1077 F:      drivers/iio/imu/adis16460.c
1078
1079 ANALOG DEVICES INC ADIS16475 DRIVER
1080 M:      Nuno Sa <nuno.sa@analog.com>
1081 L:      linux-iio@vger.kernel.org
1082 W:      http://ez.analog.com/community/linux-device-drivers
1083 S:      Supported
1084 F:      drivers/iio/imu/adis16475.c
1085 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1086
1087 ANALOG DEVICES INC ADM1177 DRIVER
1088 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1089 L:      linux-hwmon@vger.kernel.org
1090 S:      Supported
1091 W:      http://ez.analog.com/community/linux-device-drivers
1092 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1093 F:      drivers/hwmon/adm1177.c
1094
1095 ANALOG DEVICES INC ADP5061 DRIVER
1096 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1097 L:      linux-pm@vger.kernel.org
1098 S:      Supported
1099 W:      http://ez.analog.com/community/linux-device-drivers
1100 F:      drivers/power/supply/adp5061.c
1101
1102 ANALOG DEVICES INC ADV7180 DRIVER
1103 M:      Lars-Peter Clausen <lars@metafoo.de>
1104 L:      linux-media@vger.kernel.org
1105 S:      Supported
1106 W:      http://ez.analog.com/community/linux-device-drivers
1107 F:      drivers/media/i2c/adv7180.c
1108 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1109
1110 ANALOG DEVICES INC ADV748X DRIVER
1111 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1112 L:      linux-media@vger.kernel.org
1113 S:      Maintained
1114 F:      drivers/media/i2c/adv748x/*
1115
1116 ANALOG DEVICES INC ADV7511 DRIVER
1117 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1118 L:      linux-media@vger.kernel.org
1119 S:      Maintained
1120 F:      drivers/media/i2c/adv7511*
1121
1122 ANALOG DEVICES INC ADV7604 DRIVER
1123 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1124 L:      linux-media@vger.kernel.org
1125 S:      Maintained
1126 F:      drivers/media/i2c/adv7604*
1127 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1128
1129 ANALOG DEVICES INC ADV7842 DRIVER
1130 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1131 L:      linux-media@vger.kernel.org
1132 S:      Maintained
1133 F:      drivers/media/i2c/adv7842*
1134
1135 ANALOG DEVICES INC ADXRS290 DRIVER
1136 M:      Nishant Malpani <nish.malpani25@gmail.com>
1137 L:      linux-iio@vger.kernel.org
1138 S:      Supported
1139 F:      drivers/iio/gyro/adxrs290.c
1140 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1141
1142 ANALOG DEVICES INC ASOC CODEC DRIVERS
1143 M:      Lars-Peter Clausen <lars@metafoo.de>
1144 M:      Nuno Sá <nuno.sa@analog.com>
1145 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1146 S:      Supported
1147 W:      http://wiki.analog.com/
1148 W:      http://ez.analog.com/community/linux-device-drivers
1149 F:      sound/soc/codecs/ad1*
1150 F:      sound/soc/codecs/ad7*
1151 F:      sound/soc/codecs/adau*
1152 F:      sound/soc/codecs/adav*
1153 F:      sound/soc/codecs/sigmadsp.*
1154 F:      sound/soc/codecs/ssm*
1155
1156 ANALOG DEVICES INC DMA DRIVERS
1157 M:      Lars-Peter Clausen <lars@metafoo.de>
1158 S:      Supported
1159 W:      http://ez.analog.com/community/linux-device-drivers
1160 F:      drivers/dma/dma-axi-dmac.c
1161
1162 ANALOG DEVICES INC IIO DRIVERS
1163 M:      Lars-Peter Clausen <lars@metafoo.de>
1164 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1165 S:      Supported
1166 W:      http://wiki.analog.com/
1167 W:      http://ez.analog.com/community/linux-device-drivers
1168 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1169 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1170 F:      Documentation/devicetree/bindings/iio/*/adi,*
1171 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1172 F:      drivers/iio/*/ad*
1173 F:      drivers/iio/adc/ltc249*
1174 F:      drivers/iio/amplifiers/hmc425a.c
1175 F:      drivers/staging/iio/*/ad*
1176 X:      drivers/iio/*/adjd*
1177
1178 ANALOGBITS PLL LIBRARIES
1179 M:      Paul Walmsley <paul.walmsley@sifive.com>
1180 S:      Supported
1181 F:      drivers/clk/analogbits/*
1182 F:      include/linux/clk/analogbits*
1183
1184 ANDES ARCHITECTURE
1185 M:      Nick Hu <nickhu@andestech.com>
1186 M:      Greentime Hu <green.hu@gmail.com>
1187 M:      Vincent Chen <deanbo422@gmail.com>
1188 S:      Supported
1189 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1190 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1191 F:      Documentation/devicetree/bindings/nds32/
1192 F:      arch/nds32/
1193 N:      nds32
1194 K:      nds32
1195
1196 ANDROID CONFIG FRAGMENTS
1197 M:      Rob Herring <robh@kernel.org>
1198 S:      Supported
1199 F:      kernel/configs/android*
1200
1201 ANDROID DRIVERS
1202 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1203 M:      Arve Hjønnevåg <arve@android.com>
1204 M:      Todd Kjos <tkjos@android.com>
1205 M:      Martijn Coenen <maco@android.com>
1206 M:      Joel Fernandes <joel@joelfernandes.org>
1207 M:      Christian Brauner <christian@brauner.io>
1208 M:      Hridya Valsaraju <hridya@google.com>
1209 M:      Suren Baghdasaryan <surenb@google.com>
1210 L:      linux-kernel@vger.kernel.org
1211 S:      Supported
1212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1213 F:      drivers/android/
1214 F:      drivers/staging/android/
1215
1216 ANDROID GOLDFISH PIC DRIVER
1217 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1218 S:      Supported
1219 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1220 F:      drivers/irqchip/irq-goldfish-pic.c
1221
1222 ANDROID GOLDFISH RTC DRIVER
1223 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1224 S:      Supported
1225 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1226 F:      drivers/rtc/rtc-goldfish.c
1227
1228 AOA (Apple Onboard Audio) ALSA DRIVER
1229 M:      Johannes Berg <johannes@sipsolutions.net>
1230 L:      linuxppc-dev@lists.ozlabs.org
1231 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1232 S:      Maintained
1233 F:      sound/aoa/
1234
1235 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1236 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1237 L:      linux-iio@vger.kernel.org
1238 S:      Maintained
1239 F:      drivers/iio/adc/stx104.c
1240
1241 APM DRIVER
1242 M:      Jiri Kosina <jikos@kernel.org>
1243 S:      Odd fixes
1244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1245 F:      arch/x86/kernel/apm_32.c
1246 F:      drivers/char/apm-emulation.c
1247 F:      include/linux/apm_bios.h
1248 F:      include/uapi/linux/apm_bios.h
1249
1250 APPARMOR SECURITY MODULE
1251 M:      John Johansen <john.johansen@canonical.com>
1252 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1253 S:      Supported
1254 W:      wiki.apparmor.net
1255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1256 F:      Documentation/admin-guide/LSM/apparmor.rst
1257 F:      security/apparmor/
1258
1259 APPLE BCM5974 MULTITOUCH DRIVER
1260 M:      Henrik Rydberg <rydberg@bitmath.org>
1261 L:      linux-input@vger.kernel.org
1262 S:      Odd fixes
1263 F:      drivers/input/mouse/bcm5974.c
1264
1265 APPLE SMC DRIVER
1266 M:      Henrik Rydberg <rydberg@bitmath.org>
1267 L:      linux-hwmon@vger.kernel.org
1268 S:      Odd fixes
1269 F:      drivers/hwmon/applesmc.c
1270
1271 APPLETALK NETWORK LAYER
1272 L:      netdev@vger.kernel.org
1273 S:      Odd fixes
1274 F:      drivers/net/appletalk/
1275 F:      include/linux/atalk.h
1276 F:      include/uapi/linux/atalk.h
1277 F:      net/appletalk/
1278
1279 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1280 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1281 S:      Supported
1282 F:      arch/arm64/boot/dts/apm/
1283
1284 APPLIED MICRO (APM) X-GENE SOC EDAC
1285 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1286 S:      Supported
1287 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1288 F:      drivers/edac/xgene_edac.c
1289
1290 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1291 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1292 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1293 S:      Supported
1294 F:      drivers/net/ethernet/apm/xgene-v2/
1295
1296 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1297 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1298 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1299 M:      Quan Nguyen <quan@os.amperecomputing.com>
1300 S:      Supported
1301 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1302 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1303 F:      drivers/net/ethernet/apm/xgene/
1304 F:      drivers/net/mdio/mdio-xgene.c
1305
1306 APPLIED MICRO (APM) X-GENE SOC PMU
1307 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1308 S:      Supported
1309 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1310 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1311 F:      drivers/perf/xgene_pmu.c
1312
1313 APTINA CAMERA SENSOR PLL
1314 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1315 L:      linux-media@vger.kernel.org
1316 S:      Maintained
1317 F:      drivers/media/i2c/aptina-pll.*
1318
1319 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1320 M:      Aleksa Savic <savicaleksa83@gmail.com>
1321 L:      linux-hwmon@vger.kernel.org
1322 S:      Maintained
1323 F:      Documentation/hwmon/aquacomputer_d5next.rst
1324 F:      drivers/hwmon/aquacomputer_d5next.c
1325
1326 AQUANTIA ETHERNET DRIVER (atlantic)
1327 M:      Igor Russkikh <irusskikh@marvell.com>
1328 L:      netdev@vger.kernel.org
1329 S:      Supported
1330 W:      https://www.marvell.com/
1331 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1332 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1333 F:      drivers/net/ethernet/aquantia/atlantic/
1334
1335 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1336 M:      Egor Pomozov <epomozov@marvell.com>
1337 L:      netdev@vger.kernel.org
1338 S:      Supported
1339 W:      http://www.aquantia.com
1340 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1341
1342 ARASAN NAND CONTROLLER DRIVER
1343 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1344 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1345 L:      linux-mtd@lists.infradead.org
1346 S:      Maintained
1347 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1348 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1349
1350 ARC FRAMEBUFFER DRIVER
1351 M:      Jaya Kumar <jayalk@intworks.biz>
1352 S:      Maintained
1353 F:      drivers/video/fbdev/arcfb.c
1354 F:      drivers/video/fbdev/core/fb_defio.c
1355
1356 ARC PGU DRM DRIVER
1357 M:      Alexey Brodkin <abrodkin@synopsys.com>
1358 S:      Supported
1359 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1360 F:      drivers/gpu/drm/tiny/arcpgu.c
1361
1362 ARCNET NETWORK LAYER
1363 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1364 L:      netdev@vger.kernel.org
1365 S:      Maintained
1366 F:      drivers/net/arcnet/
1367 F:      include/uapi/linux/if_arcnet.h
1368
1369 ARM ARCHITECTED TIMER DRIVER
1370 M:      Mark Rutland <mark.rutland@arm.com>
1371 M:      Marc Zyngier <maz@kernel.org>
1372 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1373 S:      Maintained
1374 F:      arch/arm/include/asm/arch_timer.h
1375 F:      arch/arm64/include/asm/arch_timer.h
1376 F:      drivers/clocksource/arm_arch_timer.c
1377
1378 ARM HDLCD DRM DRIVER
1379 M:      Liviu Dudau <liviu.dudau@arm.com>
1380 S:      Supported
1381 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1382 F:      drivers/gpu/drm/arm/hdlcd_*
1383
1384 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1385 M:      Linus Walleij <linus.walleij@linaro.org>
1386 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1387 S:      Maintained
1388 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1389 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1390 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1391 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1392 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1393 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1394 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1395 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1396 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1397 F:      arch/arm/boot/dts/arm-realview-*
1398 F:      arch/arm/boot/dts/integrator*
1399 F:      arch/arm/boot/dts/versatile*
1400 F:      arch/arm/mach-integrator/
1401 F:      arch/arm/mach-realview/
1402 F:      arch/arm/mach-versatile/
1403 F:      arch/arm/plat-versatile/
1404 F:      drivers/bus/arm-integrator-lm.c
1405 F:      drivers/clk/versatile/
1406 F:      drivers/i2c/busses/i2c-versatile.c
1407 F:      drivers/irqchip/irq-versatile-fpga.c
1408 F:      drivers/mtd/maps/physmap-versatile.*
1409 F:      drivers/power/reset/arm-versatile-reboot.c
1410 F:      drivers/soc/versatile/
1411
1412 ARM KOMEDA DRM-KMS DRIVER
1413 M:      James (Qian) Wang <james.qian.wang@arm.com>
1414 M:      Liviu Dudau <liviu.dudau@arm.com>
1415 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1416 L:      Mali DP Maintainers <malidp@foss.arm.com>
1417 S:      Supported
1418 T:      git git://anongit.freedesktop.org/drm/drm-misc
1419 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1420 F:      Documentation/gpu/komeda-kms.rst
1421 F:      drivers/gpu/drm/arm/display/include/
1422 F:      drivers/gpu/drm/arm/display/komeda/
1423
1424 ARM MALI PANFROST DRM DRIVER
1425 M:      Rob Herring <robh@kernel.org>
1426 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1427 R:      Steven Price <steven.price@arm.com>
1428 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1429 L:      dri-devel@lists.freedesktop.org
1430 S:      Supported
1431 T:      git git://anongit.freedesktop.org/drm/drm-misc
1432 F:      drivers/gpu/drm/panfrost/
1433 F:      include/uapi/drm/panfrost_drm.h
1434
1435 ARM MALI-DP DRM DRIVER
1436 M:      Liviu Dudau <liviu.dudau@arm.com>
1437 M:      Brian Starkey <brian.starkey@arm.com>
1438 L:      Mali DP Maintainers <malidp@foss.arm.com>
1439 S:      Supported
1440 T:      git git://anongit.freedesktop.org/drm/drm-misc
1441 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1442 F:      Documentation/gpu/afbc.rst
1443 F:      drivers/gpu/drm/arm/
1444
1445 ARM MFM AND FLOPPY DRIVERS
1446 M:      Ian Molton <spyro@f2s.com>
1447 S:      Maintained
1448 F:      arch/arm/include/asm/floppy.h
1449 F:      arch/arm/mach-rpc/floppydma.S
1450
1451 ARM PMU PROFILING AND DEBUGGING
1452 M:      Will Deacon <will@kernel.org>
1453 M:      Mark Rutland <mark.rutland@arm.com>
1454 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1455 S:      Maintained
1456 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1457 F:      Documentation/devicetree/bindings/perf/
1458 F:      arch/arm*/include/asm/hw_breakpoint.h
1459 F:      arch/arm*/include/asm/perf_event.h
1460 F:      arch/arm*/kernel/hw_breakpoint.c
1461 F:      arch/arm*/kernel/perf_*
1462 F:      drivers/perf/
1463 F:      include/linux/perf/arm_pmu.h
1464
1465 ARM PORT
1466 M:      Russell King <linux@armlinux.org.uk>
1467 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1468 S:      Odd Fixes
1469 W:      http://www.armlinux.org.uk/
1470 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1471 F:      arch/arm/
1472 X:      arch/arm/boot/dts/
1473
1474 ARM PRIMECELL AACI PL041 DRIVER
1475 M:      Russell King <linux@armlinux.org.uk>
1476 S:      Odd Fixes
1477 F:      sound/arm/aaci.*
1478
1479 ARM PRIMECELL BUS SUPPORT
1480 M:      Russell King <linux@armlinux.org.uk>
1481 S:      Odd Fixes
1482 F:      drivers/amba/
1483 F:      include/linux/amba/bus.h
1484
1485 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1486 M:      Miquel Raynal <miquel.raynal@bootlin.com@bootlin.com>
1487 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1488 L:      linux-mtd@lists.infradead.org
1489 S:      Maintained
1490 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1491 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1492
1493 ARM PRIMECELL PL35X SMC DRIVER
1494 M:      Miquel Raynal <miquel.raynal@bootlin.com@bootlin.com>
1495 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1496 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1497 S:      Maintained
1498 F:      Documentation/devicetree/bindings/mtd/arm,pl353-smc.yaml
1499 F:      drivers/memory/pl353-smc.c
1500
1501 ARM PRIMECELL CLCD PL110 DRIVER
1502 M:      Russell King <linux@armlinux.org.uk>
1503 S:      Odd Fixes
1504 F:      drivers/video/fbdev/amba-clcd.*
1505
1506 ARM PRIMECELL KMI PL050 DRIVER
1507 M:      Russell King <linux@armlinux.org.uk>
1508 S:      Odd Fixes
1509 F:      drivers/input/serio/ambakmi.*
1510 F:      include/linux/amba/kmi.h
1511
1512 ARM PRIMECELL MMCI PL180/1 DRIVER
1513 M:      Russell King <linux@armlinux.org.uk>
1514 S:      Odd Fixes
1515 F:      drivers/mmc/host/mmci.*
1516 F:      include/linux/amba/mmci.h
1517
1518 ARM PRIMECELL SSP PL022 SPI DRIVER
1519 M:      Linus Walleij <linus.walleij@linaro.org>
1520 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1521 S:      Maintained
1522 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1523 F:      drivers/spi/spi-pl022.c
1524
1525 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1526 M:      Russell King <linux@armlinux.org.uk>
1527 S:      Odd Fixes
1528 F:      drivers/tty/serial/amba-pl01*.c
1529 F:      include/linux/amba/serial.h
1530
1531 ARM PRIMECELL VIC PL190/PL192 DRIVER
1532 M:      Linus Walleij <linus.walleij@linaro.org>
1533 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1534 S:      Maintained
1535 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1536 F:      drivers/irqchip/irq-vic.c
1537
1538 ARM SMC WATCHDOG DRIVER
1539 M:      Julius Werner <jwerner@chromium.org>
1540 R:      Evan Benn <evanbenn@chromium.org>
1541 S:      Maintained
1542 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1543 F:      drivers/watchdog/arm_smc_wdt.c
1544
1545 ARM SMMU DRIVERS
1546 M:      Will Deacon <will@kernel.org>
1547 R:      Robin Murphy <robin.murphy@arm.com>
1548 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1549 S:      Maintained
1550 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1551 F:      drivers/iommu/arm/
1552 F:      drivers/iommu/io-pgtable-arm*
1553
1554 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1555 M:      Arnd Bergmann <arnd@arndb.de>
1556 M:      Olof Johansson <olof@lixom.net>
1557 M:      soc@kernel.org
1558 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1559 S:      Maintained
1560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1561 F:      arch/arm/boot/dts/Makefile
1562 F:      arch/arm64/boot/dts/Makefile
1563
1564 ARM SUB-ARCHITECTURES
1565 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1566 S:      Maintained
1567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1568 F:      arch/arm/mach-*/
1569 F:      arch/arm/plat-*/
1570
1571 ARM/ACTIONS SEMI ARCHITECTURE
1572 M:      Andreas Färber <afaerber@suse.de>
1573 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1574 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1575 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1576 S:      Maintained
1577 F:      Documentation/devicetree/bindings/arm/actions.yaml
1578 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1579 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1580 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1581 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1582 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1583 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1584 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1585 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1586 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1587 F:      arch/arm/boot/dts/owl-*
1588 F:      arch/arm/mach-actions/
1589 F:      arch/arm64/boot/dts/actions/
1590 F:      drivers/clk/actions/
1591 F:      drivers/clocksource/timer-owl*
1592 F:      drivers/dma/owl-dma.c
1593 F:      drivers/i2c/busses/i2c-owl.c
1594 F:      drivers/irqchip/irq-owl-sirq.c
1595 F:      drivers/mmc/host/owl-mmc.c
1596 F:      drivers/net/ethernet/actions/
1597 F:      drivers/pinctrl/actions/*
1598 F:      drivers/soc/actions/
1599 F:      include/dt-bindings/power/owl-*
1600 F:      include/dt-bindings/reset/actions,*
1601 F:      include/linux/soc/actions/
1602 N:      owl
1603
1604 ARM/ADS SPHERE MACHINE SUPPORT
1605 M:      Lennert Buytenhek <kernel@wantstofly.org>
1606 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1607 S:      Maintained
1608
1609 ARM/AFEB9260 MACHINE SUPPORT
1610 M:      Sergey Lapin <slapin@ossfans.org>
1611 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1612 S:      Maintained
1613
1614 ARM/AJECO 1ARM MACHINE SUPPORT
1615 M:      Lennert Buytenhek <kernel@wantstofly.org>
1616 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1617 S:      Maintained
1618
1619 ARM/Allwinner SoC Clock Support
1620 M:      Emilio López <emilio@elopez.com.ar>
1621 S:      Maintained
1622 F:      drivers/clk/sunxi/
1623
1624 ARM/Allwinner sunXi SoC support
1625 M:      Maxime Ripard <mripard@kernel.org>
1626 M:      Chen-Yu Tsai <wens@csie.org>
1627 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
1628 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1629 S:      Maintained
1630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1631 L:      linux-sunxi@lists.linux.dev
1632 F:      arch/arm/mach-sunxi/
1633 F:      arch/arm64/boot/dts/allwinner/
1634 F:      drivers/clk/sunxi-ng/
1635 F:      drivers/pinctrl/sunxi/
1636 F:      drivers/soc/sunxi/
1637 N:      allwinner
1638 N:      sun[x456789]i
1639 N:      sun50i
1640
1641 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1642 M:      Neil Armstrong <narmstrong@baylibre.com>
1643 M:      Jerome Brunet <jbrunet@baylibre.com>
1644 L:      linux-amlogic@lists.infradead.org
1645 S:      Maintained
1646 F:      Documentation/devicetree/bindings/clock/amlogic*
1647 F:      drivers/clk/meson/
1648 F:      include/dt-bindings/clock/gxbb*
1649 F:      include/dt-bindings/clock/meson*
1650
1651 ARM/Amlogic Meson SoC Crypto Drivers
1652 M:      Corentin Labbe <clabbe@baylibre.com>
1653 L:      linux-crypto@vger.kernel.org
1654 L:      linux-amlogic@lists.infradead.org
1655 S:      Maintained
1656 F:      Documentation/devicetree/bindings/crypto/amlogic*
1657 F:      drivers/crypto/amlogic/
1658
1659 ARM/Amlogic Meson SoC Sound Drivers
1660 M:      Jerome Brunet <jbrunet@baylibre.com>
1661 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1662 S:      Maintained
1663 F:      Documentation/devicetree/bindings/sound/amlogic*
1664 F:      sound/soc/meson/
1665
1666 ARM/Amlogic Meson SoC support
1667 M:      Neil Armstrong <narmstrong@baylibre.com>
1668 M:      Kevin Hilman <khilman@baylibre.com>
1669 R:      Jerome Brunet <jbrunet@baylibre.com>
1670 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1671 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1672 L:      linux-amlogic@lists.infradead.org
1673 S:      Maintained
1674 W:      http://linux-meson.com/
1675 F:      arch/arm/boot/dts/meson*
1676 F:      arch/arm/mach-meson/
1677 F:      arch/arm64/boot/dts/amlogic/
1678 F:      drivers/mmc/host/meson*
1679 F:      drivers/pinctrl/meson/
1680 F:      drivers/rtc/rtc-meson*
1681 F:      drivers/soc/amlogic/
1682 N:      meson
1683
1684 ARM/Annapurna Labs ALPINE ARCHITECTURE
1685 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1686 M:      Antoine Tenart <atenart@kernel.org>
1687 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1688 S:      Maintained
1689 F:      arch/arm/boot/dts/alpine*
1690 F:      arch/arm/mach-alpine/
1691 F:      arch/arm64/boot/dts/amazon/
1692 F:      drivers/*/*alpine*
1693
1694 ARM/APPLE MACHINE SUPPORT
1695 M:      Hector Martin <marcan@marcan.st>
1696 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1697 S:      Maintained
1698 W:      https://asahilinux.org
1699 B:      https://github.com/AsahiLinux/linux/issues
1700 C:      irc://chat.freenode.net/asahi-dev
1701 T:      git https://github.com/AsahiLinux/linux.git
1702 F:      Documentation/devicetree/bindings/arm/apple.yaml
1703 F:      Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1704 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1705 F:      arch/arm64/boot/dts/apple/
1706 F:      drivers/irqchip/irq-apple-aic.c
1707 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1708 F:      include/dt-bindings/pinctrl/apple.h
1709
1710 ARM/ARTPEC MACHINE SUPPORT
1711 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1712 M:      Lars Persson <lars.persson@axis.com>
1713 L:      linux-arm-kernel@axis.com
1714 S:      Maintained
1715 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1716 F:      arch/arm/boot/dts/artpec6*
1717 F:      arch/arm/mach-artpec
1718 F:      drivers/clk/axis
1719 F:      drivers/crypto/axis
1720 F:      drivers/mmc/host/usdhi6rol0.c
1721 F:      drivers/pinctrl/pinctrl-artpec*
1722
1723 ARM/ASPEED I2C DRIVER
1724 M:      Brendan Higgins <brendanhiggins@google.com>
1725 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1726 R:      Joel Stanley <joel@jms.id.au>
1727 L:      linux-i2c@vger.kernel.org
1728 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1729 S:      Maintained
1730 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1731 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1732 F:      drivers/i2c/busses/i2c-aspeed.c
1733 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1734
1735 ARM/ASPEED MACHINE SUPPORT
1736 M:      Joel Stanley <joel@jms.id.au>
1737 R:      Andrew Jeffery <andrew@aj.id.au>
1738 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1739 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1740 S:      Supported
1741 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1743 F:      arch/arm/boot/dts/aspeed-*
1744 F:      arch/arm/mach-aspeed/
1745 N:      aspeed
1746
1747 ARM/BITMAIN ARCHITECTURE
1748 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1749 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1750 S:      Maintained
1751 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1752 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1753 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1754 F:      arch/arm64/boot/dts/bitmain/
1755 F:      drivers/clk/clk-bm1880.c
1756 F:      drivers/pinctrl/pinctrl-bm1880.c
1757
1758 ARM/CALXEDA HIGHBANK ARCHITECTURE
1759 M:      Andre Przywara <andre.przywara@arm.com>
1760 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1761 S:      Maintained
1762 F:      arch/arm/boot/dts/ecx-*.dts*
1763 F:      arch/arm/boot/dts/highbank.dts
1764 F:      arch/arm/mach-highbank/
1765
1766 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1767 M:      Krzysztof Halasa <khalasa@piap.pl>
1768 S:      Maintained
1769 F:      arch/arm/mach-cns3xxx/
1770
1771 ARM/CAVIUM THUNDER NETWORK DRIVER
1772 M:      Sunil Goutham <sgoutham@marvell.com>
1773 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1774 S:      Supported
1775 F:      drivers/net/ethernet/cavium/thunder/
1776
1777 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1778 M:      Lukasz Majewski <lukma@denx.de>
1779 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1780 S:      Maintained
1781 F:      arch/arm/mach-ep93xx/ts72xx.c
1782
1783 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1784 M:      Alexander Shiyan <shc_work@mail.ru>
1785 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1786 S:      Odd Fixes
1787 N:      clps711x
1788
1789 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1790 M:      Lennert Buytenhek <kernel@wantstofly.org>
1791 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1792 S:      Maintained
1793
1794 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1795 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1796 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1797 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1798 S:      Maintained
1799 F:      arch/arm/mach-ep93xx/
1800 F:      arch/arm/mach-ep93xx/include/mach/
1801
1802 ARM/CLKDEV SUPPORT
1803 M:      Russell King <linux@armlinux.org.uk>
1804 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1805 S:      Maintained
1806 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1807 F:      drivers/clk/clkdev.c
1808
1809 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1810 M:      Baruch Siach <baruch@tkos.co.il>
1811 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1812 S:      Maintained
1813 F:      arch/arm/boot/dts/cx92755*
1814 N:      digicolor
1815
1816 ARM/CONTEC MICRO9 MACHINE SUPPORT
1817 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1818 S:      Maintained
1819 F:      arch/arm/mach-ep93xx/micro9.c
1820
1821 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1822 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1823 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1824 R:      Mike Leach <mike.leach@linaro.org>
1825 R:      Leo Yan <leo.yan@linaro.org>
1826 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1827 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1828 S:      Maintained
1829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1830 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1831 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1832 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1833 F:      Documentation/devicetree/bindings/arm/coresight.txt
1834 F:      Documentation/devicetree/bindings/arm/ete.yaml
1835 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1836 F:      Documentation/trace/coresight/*
1837 F:      drivers/hwtracing/coresight/*
1838 F:      include/dt-bindings/arm/coresight-cti-dt.h
1839 F:      include/linux/coresight*
1840 F:      tools/perf/arch/arm/util/auxtrace.c
1841 F:      tools/perf/arch/arm/util/cs-etm.c
1842 F:      tools/perf/arch/arm/util/cs-etm.h
1843 F:      tools/perf/arch/arm/util/pmu.c
1844 F:      tools/perf/util/cs-etm-decoder/*
1845 F:      tools/perf/util/cs-etm.*
1846
1847 ARM/CORGI MACHINE SUPPORT
1848 M:      Richard Purdie <rpurdie@rpsys.net>
1849 S:      Maintained
1850
1851 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1852 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1853 M:      Linus Walleij <linus.walleij@linaro.org>
1854 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1855 S:      Maintained
1856 T:      git git://github.com/ulli-kroll/linux.git
1857 F:      Documentation/devicetree/bindings/arm/gemini.txt
1858 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1859 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1860 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1861 F:      arch/arm/boot/dts/gemini*
1862 F:      arch/arm/mach-gemini/
1863 F:      drivers/crypto/gemini/
1864 F:      drivers/net/ethernet/cortina/
1865 F:      drivers/pinctrl/pinctrl-gemini.c
1866 F:      drivers/rtc/rtc-ftrtc010.c
1867
1868 ARM/CZ.NIC TURRIS SUPPORT
1869 M:      Marek Behún <kabel@kernel.org>
1870 S:      Maintained
1871 W:      https://www.turris.cz/
1872 F:      Documentation/ABI/testing/debugfs-moxtet
1873 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1874 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1875 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1876 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1877 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1878 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1879 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1880 F:      drivers/bus/moxtet.c
1881 F:      drivers/firmware/turris-mox-rwtm.c
1882 F:      drivers/leds/leds-turris-omnia.c
1883 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
1884 F:      drivers/gpio/gpio-moxtet.c
1885 F:      drivers/watchdog/armada_37xx_wdt.c
1886 F:      include/dt-bindings/bus/moxtet.h
1887 F:      include/linux/armada-37xx-rwtm-mailbox.h
1888 F:      include/linux/moxtet.h
1889
1890 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1891 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1892 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1893 S:      Maintained
1894 F:      arch/arm/mach-pxa/ezx.c
1895
1896 ARM/FARADAY FA526 PORT
1897 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1898 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1899 S:      Maintained
1900 T:      git git://git.berlios.de/gemini-board
1901 F:      arch/arm/mm/*-fa*
1902
1903 ARM/FOOTBRIDGE ARCHITECTURE
1904 M:      Russell King <linux@armlinux.org.uk>
1905 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1906 S:      Maintained
1907 W:      http://www.armlinux.org.uk/
1908 F:      arch/arm/include/asm/hardware/dec21285.h
1909 F:      arch/arm/mach-footbridge/
1910
1911 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1912 M:      Shawn Guo <shawnguo@kernel.org>
1913 M:      Sascha Hauer <s.hauer@pengutronix.de>
1914 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1915 R:      Fabio Estevam <festevam@gmail.com>
1916 R:      NXP Linux Team <linux-imx@nxp.com>
1917 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1918 S:      Maintained
1919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1920 X:      drivers/media/i2c/
1921 N:      imx
1922 N:      mxs
1923
1924 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1925 M:      Shawn Guo <shawnguo@kernel.org>
1926 M:      Li Yang <leoyang.li@nxp.com>
1927 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1928 S:      Maintained
1929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1930 F:      arch/arm/boot/dts/ls1021a*
1931 F:      arch/arm64/boot/dts/freescale/fsl-*
1932 F:      arch/arm64/boot/dts/freescale/qoriq-*
1933
1934 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1935 M:      Shawn Guo <shawnguo@kernel.org>
1936 M:      Sascha Hauer <s.hauer@pengutronix.de>
1937 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1938 R:      Stefan Agner <stefan@agner.ch>
1939 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1940 S:      Maintained
1941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1942 F:      arch/arm/boot/dts/vf*
1943 F:      arch/arm/mach-imx/*vf610*
1944
1945 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1946 M:      Lennert Buytenhek <kernel@wantstofly.org>
1947 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1948 S:      Maintained
1949
1950 ARM/GUMSTIX MACHINE SUPPORT
1951 M:      Steve Sakoman <sakoman@gmail.com>
1952 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1953 S:      Maintained
1954
1955 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1956 M:      Philipp Zabel <philipp.zabel@gmail.com>
1957 M:      Paul Parsons <lost.distance@yahoo.com>
1958 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1959 S:      Maintained
1960 F:      arch/arm/mach-pxa/hx4700.c
1961 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1962 F:      sound/soc/pxa/hx4700.c
1963
1964 ARM/HISILICON SOC SUPPORT
1965 M:      Wei Xu <xuwei5@hisilicon.com>
1966 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1967 S:      Supported
1968 W:      http://www.hisilicon.com
1969 T:      git git://github.com/hisilicon/linux-hisi.git
1970 F:      arch/arm/boot/dts/hi3*
1971 F:      arch/arm/boot/dts/hip*
1972 F:      arch/arm/boot/dts/hisi*
1973 F:      arch/arm/mach-hisi/
1974 F:      arch/arm64/boot/dts/hisilicon/
1975
1976 ARM/HP JORNADA 7XX MACHINE SUPPORT
1977 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1978 S:      Maintained
1979 W:      www.jlime.com
1980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1981 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1982 F:      arch/arm/mach-sa1100/jornada720.c
1983
1984 ARM/IGEP MACHINE SUPPORT
1985 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1986 M:      Javier Martinez Canillas <javier@dowhile0.org>
1987 L:      linux-omap@vger.kernel.org
1988 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1989 S:      Maintained
1990 F:      arch/arm/boot/dts/omap3-igep*
1991
1992 ARM/INCOME PXA270 SUPPORT
1993 M:      Marek Vasut <marek.vasut@gmail.com>
1994 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1995 S:      Maintained
1996 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1997
1998 ARM/INTEL IOP32X ARM ARCHITECTURE
1999 M:      Lennert Buytenhek <kernel@wantstofly.org>
2000 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2001 S:      Maintained
2002
2003 ARM/INTEL IQ81342EX MACHINE SUPPORT
2004 M:      Lennert Buytenhek <kernel@wantstofly.org>
2005 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2006 S:      Maintained
2007
2008 ARM/INTEL IXDP2850 MACHINE SUPPORT
2009 M:      Lennert Buytenhek <kernel@wantstofly.org>
2010 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2011 S:      Maintained
2012
2013 ARM/INTEL IXP4XX ARM ARCHITECTURE
2014 M:      Linus Walleij <linusw@kernel.org>
2015 M:      Imre Kaloz <kaloz@openwrt.org>
2016 M:      Krzysztof Halasa <khalasa@piap.pl>
2017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2018 S:      Maintained
2019 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2020 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2021 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2022 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2023 F:      arch/arm/mach-ixp4xx/
2024 F:      drivers/clocksource/timer-ixp4xx.c
2025 F:      drivers/crypto/ixp4xx_crypto.c
2026 F:      drivers/gpio/gpio-ixp4xx.c
2027 F:      drivers/irqchip/irq-ixp4xx.c
2028 F:      include/linux/irqchip/irq-ixp4xx.h
2029 F:      include/linux/platform_data/timer-ixp4xx.h
2030
2031 ARM/INTEL KEEMBAY ARCHITECTURE
2032 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2033 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2034 S:      Maintained
2035 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2036 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2037 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2038
2039 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
2040 M:      Jonathan Cameron <jic23@cam.ac.uk>
2041 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2042 S:      Maintained
2043 F:      arch/arm/mach-pxa/stargate2.c
2044 F:      drivers/pcmcia/pxa2xx_stargate2.c
2045
2046 ARM/INTEL XSC3 (MANZANO) ARM CORE
2047 M:      Lennert Buytenhek <kernel@wantstofly.org>
2048 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2049 S:      Maintained
2050
2051 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2052 M:      Lennert Buytenhek <kernel@wantstofly.org>
2053 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2054 S:      Maintained
2055
2056 ARM/LG1K ARCHITECTURE
2057 M:      Chanho Min <chanho.min@lge.com>
2058 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2059 S:      Maintained
2060 F:      arch/arm64/boot/dts/lg/
2061
2062 ARM/LOGICPD PXA270 MACHINE SUPPORT
2063 M:      Lennert Buytenhek <kernel@wantstofly.org>
2064 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2065 S:      Maintained
2066
2067 ARM/LPC18XX ARCHITECTURE
2068 M:      Vladimir Zapolskiy <vz@mleia.com>
2069 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2070 S:      Maintained
2071 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2072 F:      arch/arm/boot/dts/lpc43*
2073 F:      drivers/i2c/busses/i2c-lpc2k.c
2074 F:      drivers/memory/pl172.c
2075 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2076 F:      drivers/rtc/rtc-lpc24xx.c
2077 N:      lpc18xx
2078
2079 ARM/LPC32XX SOC SUPPORT
2080 M:      Vladimir Zapolskiy <vz@mleia.com>
2081 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2082 S:      Maintained
2083 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2084 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2085 F:      arch/arm/boot/dts/lpc32*
2086 F:      arch/arm/mach-lpc32xx/
2087 F:      drivers/i2c/busses/i2c-pnx.c
2088 F:      drivers/net/ethernet/nxp/lpc_eth.c
2089 F:      drivers/usb/host/ohci-nxp.c
2090 F:      drivers/watchdog/pnx4008_wdt.c
2091 N:      lpc32xx
2092
2093 ARM/MAGICIAN MACHINE SUPPORT
2094 M:      Philipp Zabel <philipp.zabel@gmail.com>
2095 S:      Maintained
2096
2097 ARM/Marvell Dove/MV78xx0/Orion SOC support
2098 M:      Andrew Lunn <andrew@lunn.ch>
2099 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2100 M:      Gregory Clement <gregory.clement@bootlin.com>
2101 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2102 S:      Maintained
2103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2104 F:      Documentation/devicetree/bindings/soc/dove/
2105 F:      arch/arm/boot/dts/dove*
2106 F:      arch/arm/boot/dts/orion5x*
2107 F:      arch/arm/mach-dove/
2108 F:      arch/arm/mach-mv78xx0/
2109 F:      arch/arm/mach-orion5x/
2110 F:      arch/arm/plat-orion/
2111 F:      drivers/soc/dove/
2112
2113 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2114 M:      Andrew Lunn <andrew@lunn.ch>
2115 M:      Gregory Clement <gregory.clement@bootlin.com>
2116 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2117 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2118 S:      Maintained
2119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2120 F:      arch/arm/boot/dts/armada*
2121 F:      arch/arm/boot/dts/kirkwood*
2122 F:      arch/arm/configs/mvebu_*_defconfig
2123 F:      arch/arm/mach-mvebu/
2124 F:      arch/arm64/boot/dts/marvell/armada*
2125 F:      arch/arm64/boot/dts/marvell/cn913*
2126 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2127 F:      drivers/cpufreq/armada-8k-cpufreq.c
2128 F:      drivers/cpufreq/mvebu-cpufreq.c
2129 F:      drivers/irqchip/irq-armada-370-xp.c
2130 F:      drivers/irqchip/irq-mvebu-*
2131 F:      drivers/pinctrl/mvebu/
2132 F:      drivers/rtc/rtc-armada38x.c
2133
2134 ARM/Mediatek RTC DRIVER
2135 M:      Eddie Huang <eddie.huang@mediatek.com>
2136 M:      Sean Wang <sean.wang@mediatek.com>
2137 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2138 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2139 S:      Maintained
2140 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2141 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2142 F:      drivers/rtc/rtc-mt2712.c
2143 F:      drivers/rtc/rtc-mt6397.c
2144 F:      drivers/rtc/rtc-mt7622.c
2145
2146 ARM/Mediatek SoC support
2147 M:      Matthias Brugger <matthias.bgg@gmail.com>
2148 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2149 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2150 S:      Maintained
2151 W:      https://mtk.wiki.kernel.org/
2152 C:      irc://chat.freenode.net/linux-mediatek
2153 F:      arch/arm/boot/dts/mt6*
2154 F:      arch/arm/boot/dts/mt7*
2155 F:      arch/arm/boot/dts/mt8*
2156 F:      arch/arm/mach-mediatek/
2157 F:      arch/arm64/boot/dts/mediatek/
2158 F:      drivers/soc/mediatek/
2159 N:      mtk
2160 N:      mt[678]
2161 K:      mediatek
2162
2163 ARM/Mediatek USB3 PHY DRIVER
2164 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2165 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2166 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2167 S:      Maintained
2168 F:      Documentation/devicetree/bindings/phy/mediatek,*
2169 F:      drivers/phy/mediatek/
2170
2171 ARM/Microchip (AT91) SoC support
2172 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2173 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2174 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2175 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2176 S:      Supported
2177 W:      http://www.linux4sam.org
2178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2179 F:      arch/arm/boot/dts/at91*.dts
2180 F:      arch/arm/boot/dts/at91*.dtsi
2181 F:      arch/arm/boot/dts/sama*.dts
2182 F:      arch/arm/boot/dts/sama*.dtsi
2183 F:      arch/arm/include/debug/at91.S
2184 F:      arch/arm/mach-at91/
2185 F:      drivers/memory/atmel*
2186 F:      drivers/watchdog/sama5d4_wdt.c
2187 F:      include/soc/at91/
2188 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2189 X:      drivers/net/wireless/atmel/
2190 N:      at91
2191 N:      atmel
2192
2193 ARM/Microchip Sparx5 SoC support
2194 M:      Lars Povlsen <lars.povlsen@microchip.com>
2195 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2196 M:      UNGLinuxDriver@microchip.com
2197 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2198 S:      Supported
2199 T:      git git://github.com/microchip-ung/linux-upstream.git
2200 F:      arch/arm64/boot/dts/microchip/
2201 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2202 N:      sparx5
2203
2204 Microchip Timer Counter Block (TCB) Capture Driver
2205 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2206 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2207 L:      linux-iio@vger.kernel.org
2208 S:      Maintained
2209 F:      drivers/counter/microchip-tcb-capture.c
2210
2211 ARM/MIOA701 MACHINE SUPPORT
2212 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2213 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2214 S:      Maintained
2215 F:      arch/arm/mach-pxa/mioa701.c
2216
2217 ARM/MStar/Sigmastar Armv7 SoC support
2218 M:      Daniel Palmer <daniel@thingy.jp>
2219 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2220 S:      Maintained
2221 W:      http://linux-chenxing.org/
2222 T:      git git://github.com/linux-chenxing/linux.git
2223 F:      Documentation/devicetree/bindings/arm/mstar/*
2224 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2225 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2226 F:      arch/arm/boot/dts/mstar-*
2227 F:      arch/arm/mach-mstar/
2228 F:      drivers/clk/mstar/
2229 F:      drivers/gpio/gpio-msc313.c
2230 F:      drivers/watchdog/msc313e_wdt.c
2231 F:      include/dt-bindings/clock/mstar-*
2232 F:      include/dt-bindings/gpio/msc313-gpio.h
2233
2234 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2235 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2236 S:      Maintained
2237
2238 ARM/NOMADIK/Ux500 ARCHITECTURES
2239 M:      Linus Walleij <linus.walleij@linaro.org>
2240 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2241 S:      Maintained
2242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2243 F:      Documentation/devicetree/bindings/arm/ste-*
2244 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2245 F:      Documentation/devicetree/bindings/arm/ux500/
2246 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2247 F:      arch/arm/boot/dts/ste-*
2248 F:      arch/arm/mach-nomadik/
2249 F:      arch/arm/mach-ux500/
2250 F:      drivers/clk/clk-nomadik.c
2251 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2252 F:      drivers/dma/ste_dma40*
2253 F:      drivers/hwspinlock/u8500_hsem.c
2254 F:      drivers/i2c/busses/i2c-nomadik.c
2255 F:      drivers/iio/adc/ab8500-gpadc.c
2256 F:      drivers/mfd/ab8500*
2257 F:      drivers/mfd/abx500*
2258 F:      drivers/mfd/db8500*
2259 F:      drivers/mfd/dbx500*
2260 F:      drivers/pinctrl/nomadik/
2261 F:      drivers/rtc/rtc-ab8500.c
2262 F:      drivers/rtc/rtc-pl031.c
2263 F:      drivers/soc/ux500/
2264
2265 ARM/NUVOTON NPCM ARCHITECTURE
2266 M:      Avi Fishman <avifishman70@gmail.com>
2267 M:      Tomer Maimon <tmaimon77@gmail.com>
2268 M:      Tali Perry <tali.perry1@gmail.com>
2269 R:      Patrick Venture <venture@google.com>
2270 R:      Nancy Yuen <yuenn@google.com>
2271 R:      Benjamin Fair <benjaminfair@google.com>
2272 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2273 S:      Supported
2274 F:      Documentation/devicetree/bindings/*/*/*npcm*
2275 F:      Documentation/devicetree/bindings/*/*npcm*
2276 F:      arch/arm/boot/dts/nuvoton-npcm*
2277 F:      arch/arm/mach-npcm/
2278 F:      drivers/*/*npcm*
2279 F:      drivers/*/*/*npcm*
2280 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2281
2282 ARM/NUVOTON WPCM450 ARCHITECTURE
2283 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2284 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2285 S:      Maintained
2286 F:      Documentation/devicetree/bindings/*/*wpcm*
2287 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2288 F:      arch/arm/mach-npcm/wpcm450.c
2289 F:      drivers/*/*wpcm*
2290
2291 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2292 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2293 S:      Orphan
2294 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2295 F:      arch/arm/mach-s3c/gta02.h
2296 F:      arch/arm/mach-s3c/mach-gta02.c
2297
2298 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2299 M:      Alexander Clouter <alex@digriz.org.uk>
2300 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2301 S:      Maintained
2302 W:      http://www.digriz.org.uk/ts78xx/kernel
2303 F:      arch/arm/mach-orion5x/ts78xx-*
2304
2305 ARM/OXNAS platform support
2306 M:      Neil Armstrong <narmstrong@baylibre.com>
2307 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2308 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2309 S:      Maintained
2310 F:      arch/arm/boot/dts/ox8*.dts*
2311 F:      arch/arm/mach-oxnas/
2312 F:      drivers/power/reset/oxnas-restart.c
2313 N:      oxnas
2314
2315 ARM/PALM TREO SUPPORT
2316 M:      Tomas Cech <sleep_walker@suse.com>
2317 L:      linux-arm-kernel@lists.infradead.org
2318 S:      Maintained
2319 W:      http://hackndev.com
2320 F:      arch/arm/mach-pxa/palmtreo.*
2321
2322 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2323 M:      Marek Vasut <marek.vasut@gmail.com>
2324 L:      linux-arm-kernel@lists.infradead.org
2325 S:      Maintained
2326 W:      http://hackndev.com
2327 F:      arch/arm/mach-pxa/include/mach/palmld.h
2328 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2329 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2330 F:      arch/arm/mach-pxa/palmld.c
2331 F:      arch/arm/mach-pxa/palmt5.*
2332 F:      arch/arm/mach-pxa/palmtc.c
2333 F:      arch/arm/mach-pxa/palmte2.*
2334 F:      arch/arm/mach-pxa/palmtx.c
2335
2336 ARM/PALMZ72 SUPPORT
2337 M:      Sergey Lapin <slapin@ossfans.org>
2338 L:      linux-arm-kernel@lists.infradead.org
2339 S:      Maintained
2340 W:      http://hackndev.com
2341 F:      arch/arm/mach-pxa/palmz72.*
2342
2343 ARM/PLEB SUPPORT
2344 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2345 S:      Maintained
2346 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2347
2348 ARM/PT DIGITAL BOARD PORT
2349 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2350 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2351 S:      Maintained
2352 W:      http://www.armlinux.org.uk/
2353
2354 ARM/QUALCOMM SUPPORT
2355 M:      Andy Gross <agross@kernel.org>
2356 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2357 L:      linux-arm-msm@vger.kernel.org
2358 S:      Maintained
2359 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2360 F:      Documentation/devicetree/bindings/*/qcom*
2361 F:      Documentation/devicetree/bindings/soc/qcom/
2362 F:      arch/arm/boot/dts/qcom-*.dts
2363 F:      arch/arm/boot/dts/qcom-*.dtsi
2364 F:      arch/arm/mach-qcom/
2365 F:      arch/arm64/boot/dts/qcom/
2366 F:      drivers/*/*/qcom*
2367 F:      drivers/*/*/qcom/
2368 F:      drivers/*/pm8???-*
2369 F:      drivers/*/qcom*
2370 F:      drivers/*/qcom/
2371 F:      drivers/bluetooth/btqcomsmd.c
2372 F:      drivers/clocksource/timer-qcom.c
2373 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2374 F:      drivers/extcon/extcon-qcom*
2375 F:      drivers/i2c/busses/i2c-qcom-geni.c
2376 F:      drivers/i2c/busses/i2c-qup.c
2377 F:      drivers/iommu/msm*
2378 F:      drivers/mfd/ssbi.c
2379 F:      drivers/mmc/host/mmci_qcom*
2380 F:      drivers/mmc/host/sdhci-msm.c
2381 F:      drivers/pci/controller/dwc/pcie-qcom.c
2382 F:      drivers/phy/qualcomm/
2383 F:      drivers/power/*/msm*
2384 F:      drivers/reset/reset-qcom-*
2385 F:      drivers/scsi/ufs/ufs-qcom*
2386 F:      drivers/spi/spi-geni-qcom.c
2387 F:      drivers/spi/spi-qcom-qspi.c
2388 F:      drivers/spi/spi-qup.c
2389 F:      drivers/tty/serial/msm_serial.c
2390 F:      drivers/usb/dwc3/dwc3-qcom.c
2391 F:      include/dt-bindings/*/qcom*
2392 F:      include/linux/*/qcom*
2393 F:      include/linux/soc/qcom/
2394
2395 ARM/RADISYS ENP2611 MACHINE SUPPORT
2396 M:      Lennert Buytenhek <kernel@wantstofly.org>
2397 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2398 S:      Maintained
2399
2400 ARM/RDA MICRO ARCHITECTURE
2401 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2402 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2403 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2404 S:      Maintained
2405 F:      Documentation/devicetree/bindings/arm/rda.yaml
2406 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2407 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2408 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2409 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2410 F:      arch/arm/boot/dts/rda8810pl-*
2411 F:      drivers/clocksource/timer-rda.c
2412 F:      drivers/gpio/gpio-rda.c
2413 F:      drivers/irqchip/irq-rda-intc.c
2414 F:      drivers/tty/serial/rda-uart.c
2415
2416 ARM/REALTEK ARCHITECTURE
2417 M:      Andreas Färber <afaerber@suse.de>
2418 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2419 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2420 S:      Maintained
2421 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2422 F:      arch/arm/boot/dts/rtd*
2423 F:      arch/arm/mach-realtek/
2424 F:      arch/arm64/boot/dts/realtek/
2425
2426 ARM/RENESAS ARM64 ARCHITECTURE
2427 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2428 M:      Magnus Damm <magnus.damm@gmail.com>
2429 L:      linux-renesas-soc@vger.kernel.org
2430 S:      Supported
2431 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2433 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2434 F:      arch/arm64/boot/dts/renesas/
2435 F:      drivers/soc/renesas/
2436 F:      include/linux/soc/renesas/
2437
2438 ARM/RISCPC ARCHITECTURE
2439 M:      Russell King <linux@armlinux.org.uk>
2440 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2441 S:      Maintained
2442 W:      http://www.armlinux.org.uk/
2443 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2444 F:      arch/arm/include/asm/hardware/ioc.h
2445 F:      arch/arm/include/asm/hardware/iomd.h
2446 F:      arch/arm/include/asm/hardware/memc.h
2447 F:      arch/arm/mach-rpc/
2448 F:      drivers/net/ethernet/8390/etherh.c
2449 F:      drivers/net/ethernet/i825xx/ether1*
2450 F:      drivers/net/ethernet/seeq/ether3*
2451 F:      drivers/scsi/arm/
2452
2453 ARM/Rockchip SoC support
2454 M:      Heiko Stuebner <heiko@sntech.de>
2455 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2456 L:      linux-rockchip@lists.infradead.org
2457 S:      Maintained
2458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2459 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2460 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2461 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2462 F:      arch/arm/boot/dts/rk3*
2463 F:      arch/arm/boot/dts/rv1108*
2464 F:      arch/arm/mach-rockchip/
2465 F:      drivers/*/*/*rockchip*
2466 F:      drivers/*/*rockchip*
2467 F:      drivers/clk/rockchip/
2468 F:      drivers/i2c/busses/i2c-rk3x.c
2469 F:      sound/soc/rockchip/
2470 N:      rockchip
2471
2472 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2473 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
2474 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2475 L:      linux-samsung-soc@vger.kernel.org
2476 S:      Maintained
2477 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2478 F:      Documentation/arm/samsung/
2479 F:      Documentation/devicetree/bindings/arm/samsung/
2480 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2481 F:      arch/arm/boot/dts/exynos*
2482 F:      arch/arm/boot/dts/s3c*
2483 F:      arch/arm/boot/dts/s5p*
2484 F:      arch/arm/mach-exynos*/
2485 F:      arch/arm/mach-s3c/
2486 F:      arch/arm/mach-s5p*/
2487 F:      arch/arm64/boot/dts/exynos/
2488 F:      drivers/*/*/*s3c24*
2489 F:      drivers/*/*s3c24*
2490 F:      drivers/*/*s3c64xx*
2491 F:      drivers/*/*s5pv210*
2492 F:      drivers/clocksource/samsung_pwm_timer.c
2493 F:      drivers/memory/samsung/
2494 F:      drivers/pwm/pwm-samsung.c
2495 F:      drivers/soc/samsung/
2496 F:      drivers/tty/serial/samsung*
2497 F:      include/clocksource/samsung_pwm.h
2498 F:      include/linux/platform_data/*s3c*
2499 F:      include/linux/serial_s3c.h
2500 F:      include/linux/soc/samsung/
2501 N:      exynos
2502 N:      s3c2410
2503 N:      s3c64xx
2504 N:      s5pv210
2505
2506 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2507 M:      Andrzej Hajda <a.hajda@samsung.com>
2508 L:      linux-arm-kernel@lists.infradead.org
2509 L:      linux-media@vger.kernel.org
2510 S:      Maintained
2511 F:      drivers/media/platform/s5p-g2d/
2512
2513 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2514 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2515 L:      linux-samsung-soc@vger.kernel.org
2516 L:      linux-media@vger.kernel.org
2517 S:      Maintained
2518 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2519 F:      drivers/media/cec/platform/s5p/
2520
2521 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2522 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2523 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2524 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2525 L:      linux-arm-kernel@lists.infradead.org
2526 L:      linux-media@vger.kernel.org
2527 S:      Maintained
2528 F:      drivers/media/platform/s5p-jpeg/
2529
2530 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2531 M:      Andrzej Hajda <a.hajda@samsung.com>
2532 L:      linux-arm-kernel@lists.infradead.org
2533 L:      linux-media@vger.kernel.org
2534 S:      Maintained
2535 F:      drivers/media/platform/s5p-mfc/
2536
2537 ARM/SHMOBILE ARM ARCHITECTURE
2538 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2539 M:      Magnus Damm <magnus.damm@gmail.com>
2540 L:      linux-renesas-soc@vger.kernel.org
2541 S:      Supported
2542 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2544 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2545 F:      arch/arm/boot/dts/emev2*
2546 F:      arch/arm/boot/dts/gr-peach*
2547 F:      arch/arm/boot/dts/iwg20d-q7*
2548 F:      arch/arm/boot/dts/r7s*
2549 F:      arch/arm/boot/dts/r8a*
2550 F:      arch/arm/boot/dts/r9a*
2551 F:      arch/arm/boot/dts/sh*
2552 F:      arch/arm/configs/shmobile_defconfig
2553 F:      arch/arm/include/debug/renesas-scif.S
2554 F:      arch/arm/mach-shmobile/
2555 F:      drivers/soc/renesas/
2556 F:      include/linux/soc/renesas/
2557
2558 ARM/SOCFPGA ARCHITECTURE
2559 M:      Dinh Nguyen <dinguyen@kernel.org>
2560 S:      Maintained
2561 W:      http://www.rocketboards.org
2562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2563 F:      arch/arm/boot/dts/socfpga*
2564 F:      arch/arm/configs/socfpga_defconfig
2565 F:      arch/arm/mach-socfpga/
2566 F:      arch/arm64/boot/dts/altera/
2567 F:      arch/arm64/boot/dts/intel/
2568
2569 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2570 M:      Dinh Nguyen <dinguyen@kernel.org>
2571 S:      Maintained
2572 F:      drivers/clk/socfpga/
2573
2574 ARM/SOCFPGA EDAC SUPPORT
2575 M:      Dinh Nguyen <dinguyen@kernel.org>
2576 S:      Maintained
2577 F:      drivers/edac/altera_edac.[ch]
2578
2579 ARM/SPREADTRUM SoC SUPPORT
2580 M:      Orson Zhai <orsonzhai@gmail.com>
2581 M:      Baolin Wang <baolin.wang7@gmail.com>
2582 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2583 S:      Maintained
2584 F:      arch/arm64/boot/dts/sprd
2585 N:      sprd
2586 N:      sc27xx
2587 N:      sc2731
2588
2589 ARM/STI ARCHITECTURE
2590 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2591 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2592 S:      Maintained
2593 W:      http://www.stlinux.com
2594 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2595 F:      arch/arm/boot/dts/sti*
2596 F:      arch/arm/mach-sti/
2597 F:      drivers/ata/ahci_st.c
2598 F:      drivers/char/hw_random/st-rng.c
2599 F:      drivers/clocksource/arm_global_timer.c
2600 F:      drivers/clocksource/clksrc_st_lpc.c
2601 F:      drivers/cpufreq/sti-cpufreq.c
2602 F:      drivers/dma/st_fdma*
2603 F:      drivers/i2c/busses/i2c-st.c
2604 F:      drivers/media/platform/sti/c8sectpfe/
2605 F:      drivers/media/rc/st_rc.c
2606 F:      drivers/mmc/host/sdhci-st.c
2607 F:      drivers/phy/st/phy-miphy28lp.c
2608 F:      drivers/phy/st/phy-stih407-usb.c
2609 F:      drivers/pinctrl/pinctrl-st.c
2610 F:      drivers/remoteproc/st_remoteproc.c
2611 F:      drivers/remoteproc/st_slim_rproc.c
2612 F:      drivers/reset/sti/
2613 F:      drivers/rtc/rtc-st-lpc.c
2614 F:      drivers/tty/serial/st-asc.c
2615 F:      drivers/usb/dwc3/dwc3-st.c
2616 F:      drivers/usb/host/ehci-st.c
2617 F:      drivers/usb/host/ohci-st.c
2618 F:      drivers/watchdog/st_lpc_wdt.c
2619 F:      include/linux/remoteproc/st_slim_rproc.h
2620
2621 ARM/STM32 ARCHITECTURE
2622 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2623 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2624 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2625 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2626 S:      Maintained
2627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2628 F:      arch/arm/boot/dts/stm32*
2629 F:      arch/arm/mach-stm32/
2630 F:      drivers/clocksource/armv7m_systick.c
2631 N:      stm32
2632 N:      stm
2633
2634 ARM/Synaptics SoC support
2635 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2636 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2637 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2638 S:      Maintained
2639 F:      arch/arm/boot/dts/berlin*
2640 F:      arch/arm/mach-berlin/
2641 F:      arch/arm64/boot/dts/synaptics/
2642
2643 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2644 M:      Lennert Buytenhek <kernel@wantstofly.org>
2645 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2646 S:      Maintained
2647
2648 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2649 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2650 L:      linux-tegra@vger.kernel.org
2651 L:      linux-media@vger.kernel.org
2652 S:      Maintained
2653 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2654 F:      drivers/media/cec/platform/tegra/
2655
2656 ARM/TETON BGA MACHINE SUPPORT
2657 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2658 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2659 S:      Maintained
2660
2661 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2662 M:      Santosh Shilimkar <ssantosh@kernel.org>
2663 L:      linux-kernel@vger.kernel.org
2664 S:      Maintained
2665 F:      drivers/memory/*emif*
2666
2667 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2668 M:      Santosh Shilimkar <ssantosh@kernel.org>
2669 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2670 S:      Maintained
2671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2672 F:      arch/arm/boot/dts/keystone-*
2673 F:      arch/arm/mach-keystone/
2674
2675 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2676 M:      Santosh Shilimkar <ssantosh@kernel.org>
2677 L:      linux-kernel@vger.kernel.org
2678 S:      Maintained
2679 F:      drivers/clk/keystone/
2680
2681 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2682 M:      Santosh Shilimkar <ssantosh@kernel.org>
2683 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2684 L:      linux-kernel@vger.kernel.org
2685 S:      Maintained
2686 F:      drivers/clocksource/timer-keystone.c
2687
2688 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2689 M:      Santosh Shilimkar <ssantosh@kernel.org>
2690 L:      linux-kernel@vger.kernel.org
2691 S:      Maintained
2692 F:      drivers/power/reset/keystone-reset.c
2693
2694 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2695 M:      Nishanth Menon <nm@ti.com>
2696 M:      Tero Kristo <kristo@kernel.org>
2697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2698 S:      Supported
2699 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2700 F:      arch/arm64/boot/dts/ti/Makefile
2701 F:      arch/arm64/boot/dts/ti/k3-*
2702 F:      include/dt-bindings/pinctrl/k3.h
2703
2704 ARM/THECUS N2100 MACHINE SUPPORT
2705 M:      Lennert Buytenhek <kernel@wantstofly.org>
2706 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2707 S:      Maintained
2708
2709 ARM/TOSA MACHINE SUPPORT
2710 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2711 M:      Dirk Opfer <dirk@opfer-online.de>
2712 S:      Maintained
2713
2714 ARM/TOSHIBA VISCONTI ARCHITECTURE
2715 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2716 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2717 S:      Supported
2718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2719 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2720 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2721 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2722 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2723 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2724 F:      arch/arm64/boot/dts/toshiba/
2725 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2726 F:      drivers/gpio/gpio-visconti.c
2727 F:      drivers/pinctrl/visconti/
2728 F:      drivers/watchdog/visconti_wdt.c
2729 N:      visconti
2730
2731 ARM/UNIPHIER ARCHITECTURE
2732 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2733 M:      Masami Hiramatsu <mhiramat@kernel.org>
2734 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2735 S:      Maintained
2736 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2737 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2738 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2739 F:      arch/arm/boot/dts/uniphier*
2740 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2741 F:      arch/arm/mach-uniphier/
2742 F:      arch/arm/mm/cache-uniphier.c
2743 F:      arch/arm64/boot/dts/socionext/uniphier*
2744 F:      drivers/bus/uniphier-system-bus.c
2745 F:      drivers/clk/uniphier/
2746 F:      drivers/dma/uniphier-mdmac.c
2747 F:      drivers/gpio/gpio-uniphier.c
2748 F:      drivers/i2c/busses/i2c-uniphier*
2749 F:      drivers/irqchip/irq-uniphier-aidet.c
2750 F:      drivers/mmc/host/uniphier-sd.c
2751 F:      drivers/pinctrl/uniphier/
2752 F:      drivers/reset/reset-uniphier.c
2753 F:      drivers/tty/serial/8250/8250_uniphier.c
2754 N:      uniphier
2755
2756 ARM/VERSATILE EXPRESS PLATFORM
2757 M:      Liviu Dudau <liviu.dudau@arm.com>
2758 M:      Sudeep Holla <sudeep.holla@arm.com>
2759 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2760 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2761 S:      Maintained
2762 F:      */*/*/vexpress*
2763 F:      */*/vexpress*
2764 F:      arch/arm/boot/dts/vexpress*
2765 F:      arch/arm/mach-vexpress/
2766 F:      arch/arm64/boot/dts/arm/
2767 F:      drivers/clk/versatile/clk-vexpress-osc.c
2768 F:      drivers/clocksource/timer-versatile.c
2769 N:      mps2
2770
2771 ARM/VFP SUPPORT
2772 M:      Russell King <linux@armlinux.org.uk>
2773 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2774 S:      Maintained
2775 W:      http://www.armlinux.org.uk/
2776 F:      arch/arm/vfp/
2777
2778 ARM/VOIPAC PXA270 SUPPORT
2779 M:      Marek Vasut <marek.vasut@gmail.com>
2780 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2781 S:      Maintained
2782 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2783 F:      arch/arm/mach-pxa/vpac270.c
2784
2785 ARM/VT8500 ARM ARCHITECTURE
2786 M:      Tony Prisk <linux@prisktech.co.nz>
2787 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2788 S:      Maintained
2789 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2790 F:      arch/arm/mach-vt8500/
2791 F:      drivers/clocksource/timer-vt8500.c
2792 F:      drivers/i2c/busses/i2c-wmt.c
2793 F:      drivers/mmc/host/wmt-sdmmc.c
2794 F:      drivers/pwm/pwm-vt8500.c
2795 F:      drivers/rtc/rtc-vt8500.c
2796 F:      drivers/tty/serial/vt8500_serial.c
2797 F:      drivers/usb/host/ehci-platform.c
2798 F:      drivers/usb/host/uhci-platform.c
2799 F:      drivers/video/fbdev/vt8500lcdfb.*
2800 F:      drivers/video/fbdev/wm8505fb*
2801 F:      drivers/video/fbdev/wmt_ge_rops.*
2802
2803 ARM/ZIPIT Z2 SUPPORT
2804 M:      Marek Vasut <marek.vasut@gmail.com>
2805 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2806 S:      Maintained
2807 F:      arch/arm/mach-pxa/include/mach/z2.h
2808 F:      arch/arm/mach-pxa/z2.c
2809
2810 ARM/ZYNQ ARCHITECTURE
2811 M:      Michal Simek <michal.simek@xilinx.com>
2812 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2813 S:      Supported
2814 W:      http://wiki.xilinx.com
2815 T:      git https://github.com/Xilinx/linux-xlnx.git
2816 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2817 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2818 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2819 F:      arch/arm/mach-zynq/
2820 F:      drivers/clocksource/timer-cadence-ttc.c
2821 F:      drivers/cpuidle/cpuidle-zynq.c
2822 F:      drivers/edac/synopsys_edac.c
2823 F:      drivers/i2c/busses/i2c-cadence.c
2824 F:      drivers/i2c/busses/i2c-xiic.c
2825 F:      drivers/mmc/host/sdhci-of-arasan.c
2826 N:      zynq
2827 N:      xilinx
2828
2829 ARM64 PORT (AARCH64 ARCHITECTURE)
2830 M:      Catalin Marinas <catalin.marinas@arm.com>
2831 M:      Will Deacon <will@kernel.org>
2832 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2833 S:      Maintained
2834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2835 F:      Documentation/arm64/
2836 F:      arch/arm64/
2837 F:      tools/testing/selftests/arm64/
2838 X:      arch/arm64/boot/dts/
2839
2840 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2841 M:      George McCollister <george.mccollister@gmail.com>
2842 L:      netdev@vger.kernel.org
2843 S:      Maintained
2844 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2845 F:      drivers/net/dsa/xrs700x/*
2846 F:      net/dsa/tag_xrs700x.c
2847
2848 AS3645A LED FLASH CONTROLLER DRIVER
2849 M:      Sakari Ailus <sakari.ailus@iki.fi>
2850 L:      linux-leds@vger.kernel.org
2851 S:      Maintained
2852 F:      drivers/leds/flash/leds-as3645a.c
2853
2854 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2855 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2856 L:      linux-media@vger.kernel.org
2857 S:      Maintained
2858 T:      git git://linuxtv.org/media_tree.git
2859 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2860 F:      drivers/media/i2c/ak7375.c
2861
2862 ASAHI KASEI AK8974 DRIVER
2863 M:      Linus Walleij <linus.walleij@linaro.org>
2864 L:      linux-iio@vger.kernel.org
2865 S:      Supported
2866 W:      http://www.akm.com/
2867 F:      drivers/iio/magnetometer/ak8974.c
2868
2869 ASC7621 HARDWARE MONITOR DRIVER
2870 M:      George Joseph <george.joseph@fairview5.com>
2871 L:      linux-hwmon@vger.kernel.org
2872 S:      Maintained
2873 F:      Documentation/hwmon/asc7621.rst
2874 F:      drivers/hwmon/asc7621.c
2875
2876 ASPEED PINCTRL DRIVERS
2877 M:      Andrew Jeffery <andrew@aj.id.au>
2878 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2879 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2880 L:      linux-gpio@vger.kernel.org
2881 S:      Maintained
2882 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2883 F:      drivers/pinctrl/aspeed/
2884
2885 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2886 M:      Eddie James <eajames@linux.ibm.com>
2887 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2888 S:      Maintained
2889 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2890 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2891 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2892
2893 ASPEED SD/MMC DRIVER
2894 M:      Andrew Jeffery <andrew@aj.id.au>
2895 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2896 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2897 L:      linux-mmc@vger.kernel.org
2898 S:      Maintained
2899 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2900 F:      drivers/mmc/host/sdhci-of-aspeed*
2901
2902 ASPEED VIDEO ENGINE DRIVER
2903 M:      Eddie James <eajames@linux.ibm.com>
2904 L:      linux-media@vger.kernel.org
2905 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2906 S:      Maintained
2907 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2908 F:      drivers/media/platform/aspeed-video.c
2909
2910 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2911 M:      Corentin Chary <corentin.chary@gmail.com>
2912 L:      acpi4asus-user@lists.sourceforge.net
2913 L:      platform-driver-x86@vger.kernel.org
2914 S:      Maintained
2915 W:      http://acpi4asus.sf.net
2916 F:      drivers/platform/x86/asus*.c
2917 F:      drivers/platform/x86/eeepc*.c
2918
2919 ASUS WIRELESS RADIO CONTROL DRIVER
2920 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2921 L:      platform-driver-x86@vger.kernel.org
2922 S:      Maintained
2923 F:      drivers/platform/x86/asus-wireless.c
2924
2925 ASYMMETRIC KEYS
2926 M:      David Howells <dhowells@redhat.com>
2927 L:      keyrings@vger.kernel.org
2928 S:      Maintained
2929 F:      Documentation/crypto/asymmetric-keys.rst
2930 F:      crypto/asymmetric_keys/
2931 F:      include/crypto/pkcs7.h
2932 F:      include/crypto/public_key.h
2933 F:      include/linux/verification.h
2934
2935 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2936 R:      Dan Williams <dan.j.williams@intel.com>
2937 S:      Odd fixes
2938 W:      http://sourceforge.net/projects/xscaleiop
2939 F:      Documentation/crypto/async-tx-api.rst
2940 F:      crypto/async_tx/
2941 F:      include/linux/async_tx.h
2942
2943 AT24 EEPROM DRIVER
2944 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2945 L:      linux-i2c@vger.kernel.org
2946 S:      Maintained
2947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2948 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2949 F:      drivers/misc/eeprom/at24.c
2950
2951 ATA OVER ETHERNET (AOE) DRIVER
2952 M:      "Justin Sanders" <justin@coraid.com>
2953 S:      Supported
2954 W:      http://www.openaoe.org/
2955 F:      Documentation/admin-guide/aoe/
2956 F:      drivers/block/aoe/
2957
2958 ATC260X PMIC MFD DRIVER
2959 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2960 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
2961 L:      linux-actions@lists.infradead.org
2962 S:      Maintained
2963 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
2964 F:      drivers/input/misc/atc260x-onkey.c
2965 F:      drivers/mfd/atc260*
2966 F:      drivers/power/reset/atc260x-poweroff.c
2967 F:      drivers/regulator/atc260x-regulator.c
2968 F:      include/linux/mfd/atc260x/*
2969
2970 ATHEROS 71XX/9XXX GPIO DRIVER
2971 M:      Alban Bedel <albeu@free.fr>
2972 S:      Maintained
2973 W:      https://github.com/AlbanBedel/linux
2974 T:      git git://github.com/AlbanBedel/linux
2975 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2976 F:      drivers/gpio/gpio-ath79.c
2977
2978 ATHEROS 71XX/9XXX USB PHY DRIVER
2979 M:      Alban Bedel <albeu@free.fr>
2980 S:      Maintained
2981 W:      https://github.com/AlbanBedel/linux
2982 T:      git git://github.com/AlbanBedel/linux
2983 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2984 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2985
2986 ATHEROS ATH GENERIC UTILITIES
2987 M:      Kalle Valo <kvalo@codeaurora.org>
2988 L:      linux-wireless@vger.kernel.org
2989 S:      Supported
2990 F:      drivers/net/wireless/ath/*
2991
2992 ATHEROS ATH5K WIRELESS DRIVER
2993 M:      Jiri Slaby <jirislaby@kernel.org>
2994 M:      Nick Kossifidis <mickflemm@gmail.com>
2995 M:      Luis Chamberlain <mcgrof@kernel.org>
2996 L:      linux-wireless@vger.kernel.org
2997 S:      Maintained
2998 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2999 F:      drivers/net/wireless/ath/ath5k/
3000
3001 ATHEROS ATH6KL WIRELESS DRIVER
3002 M:      Kalle Valo <kvalo@codeaurora.org>
3003 L:      linux-wireless@vger.kernel.org
3004 S:      Supported
3005 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
3007 F:      drivers/net/wireless/ath/ath6kl/
3008
3009 ATI_REMOTE2 DRIVER
3010 M:      Ville Syrjala <syrjala@sci.fi>
3011 S:      Maintained
3012 F:      drivers/input/misc/ati_remote2.c
3013
3014 ATK0110 HWMON DRIVER
3015 M:      Luca Tettamanti <kronos.it@gmail.com>
3016 L:      linux-hwmon@vger.kernel.org
3017 S:      Maintained
3018 F:      drivers/hwmon/asus_atk0110.c
3019
3020 ATLX ETHERNET DRIVERS
3021 M:      Chris Snook <chris.snook@gmail.com>
3022 L:      netdev@vger.kernel.org
3023 S:      Maintained
3024 W:      http://sourceforge.net/projects/atl1
3025 W:      http://atl1.sourceforge.net
3026 F:      drivers/net/ethernet/atheros/
3027
3028 ATM
3029 M:      Chas Williams <3chas3@gmail.com>
3030 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3031 L:      netdev@vger.kernel.org
3032 S:      Maintained
3033 W:      http://linux-atm.sourceforge.net
3034 F:      drivers/atm/
3035 F:      include/linux/atm*
3036 F:      include/uapi/linux/atm*
3037
3038 ATMEL MACB ETHERNET DRIVER
3039 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3040 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3041 S:      Supported
3042 F:      drivers/net/ethernet/cadence/
3043
3044 ATMEL MAXTOUCH DRIVER
3045 M:      Nick Dyer <nick@shmanahar.org>
3046 S:      Maintained
3047 T:      git git://github.com/ndyer/linux.git
3048 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3049 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3050
3051 ATMEL WIRELESS DRIVER
3052 M:      Simon Kelley <simon@thekelleys.org.uk>
3053 L:      linux-wireless@vger.kernel.org
3054 S:      Maintained
3055 W:      http://www.thekelleys.org.uk/atmel
3056 W:      http://atmelwlandriver.sourceforge.net/
3057 F:      drivers/net/wireless/atmel/atmel*
3058
3059 ATOMIC INFRASTRUCTURE
3060 M:      Will Deacon <will@kernel.org>
3061 M:      Peter Zijlstra <peterz@infradead.org>
3062 R:      Boqun Feng <boqun.feng@gmail.com>
3063 L:      linux-kernel@vger.kernel.org
3064 S:      Maintained
3065 F:      arch/*/include/asm/atomic*.h
3066 F:      include/*/atomic*.h
3067 F:      include/linux/refcount.h
3068 F:      Documentation/atomic_*.txt
3069 F:      scripts/atomic/
3070
3071 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3072 M:      Bradley Grove <linuxdrivers@attotech.com>
3073 L:      linux-scsi@vger.kernel.org
3074 S:      Supported
3075 W:      http://www.attotech.com
3076 F:      drivers/scsi/esas2r
3077
3078 ATUSB IEEE 802.15.4 RADIO DRIVER
3079 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3080 L:      linux-wpan@vger.kernel.org
3081 S:      Maintained
3082 F:      drivers/net/ieee802154/at86rf230.h
3083 F:      drivers/net/ieee802154/atusb.c
3084 F:      drivers/net/ieee802154/atusb.h
3085
3086 AUDIT SUBSYSTEM
3087 M:      Paul Moore <paul@paul-moore.com>
3088 M:      Eric Paris <eparis@redhat.com>
3089 L:      linux-audit@redhat.com (moderated for non-subscribers)
3090 S:      Supported
3091 W:      https://github.com/linux-audit
3092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3093 F:      include/asm-generic/audit_*.h
3094 F:      include/linux/audit.h
3095 F:      include/uapi/linux/audit.h
3096 F:      kernel/audit*
3097 F:      lib/*audit.c
3098
3099 AUXILIARY DISPLAY DRIVERS
3100 M:      Miguel Ojeda <ojeda@kernel.org>
3101 S:      Maintained
3102 F:      drivers/auxdisplay/
3103 F:      include/linux/cfag12864b.h
3104
3105 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3106 M:      Andreas Klinger <ak@it-klinger.de>
3107 L:      linux-iio@vger.kernel.org
3108 S:      Maintained
3109 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3110 F:      drivers/iio/adc/hx711.c
3111
3112 AX.25 NETWORK LAYER
3113 M:      Ralf Baechle <ralf@linux-mips.org>
3114 L:      linux-hams@vger.kernel.org
3115 S:      Maintained
3116 W:      http://www.linux-ax25.org/
3117 F:      include/net/ax25.h
3118 F:      include/uapi/linux/ax25.h
3119 F:      net/ax25/
3120
3121 AXENTIA ARM DEVICES
3122 M:      Peter Rosin <peda@axentia.se>
3123 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3124 S:      Maintained
3125 F:      arch/arm/boot/dts/at91-linea.dtsi
3126 F:      arch/arm/boot/dts/at91-natte.dtsi
3127 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3128 F:      arch/arm/boot/dts/at91-tse850-3.dts
3129
3130 AXENTIA ASOC DRIVERS
3131 M:      Peter Rosin <peda@axentia.se>
3132 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3133 S:      Maintained
3134 F:      Documentation/devicetree/bindings/sound/axentia,*
3135 F:      sound/soc/atmel/tse850-pcm5142.c
3136
3137 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3138 M:      Nuno Sá <nuno.sa@analog.com>
3139 L:      linux-hwmon@vger.kernel.org
3140 S:      Supported
3141 W:      http://ez.analog.com/community/linux-device-drivers
3142 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3143 F:      drivers/hwmon/axi-fan-control.c
3144
3145 AXXIA I2C CONTROLLER
3146 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3147 L:      linux-i2c@vger.kernel.org
3148 S:      Maintained
3149 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3150 F:      drivers/i2c/busses/i2c-axxia.c
3151
3152 AZ6007 DVB DRIVER
3153 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3154 L:      linux-media@vger.kernel.org
3155 S:      Maintained
3156 W:      https://linuxtv.org
3157 T:      git git://linuxtv.org/media_tree.git
3158 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3159
3160 AZTECH FM RADIO RECEIVER DRIVER
3161 M:      Hans Verkuil <hverkuil@xs4all.nl>
3162 L:      linux-media@vger.kernel.org
3163 S:      Maintained
3164 W:      https://linuxtv.org
3165 T:      git git://linuxtv.org/media_tree.git
3166 F:      drivers/media/radio/radio-aztech*
3167
3168 B43 WIRELESS DRIVER
3169 L:      linux-wireless@vger.kernel.org
3170 L:      b43-dev@lists.infradead.org
3171 S:      Odd Fixes
3172 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3173 F:      drivers/net/wireless/broadcom/b43/
3174
3175 B43LEGACY WIRELESS DRIVER
3176 M:      Larry Finger <Larry.Finger@lwfinger.net>
3177 L:      linux-wireless@vger.kernel.org
3178 L:      b43-dev@lists.infradead.org
3179 S:      Maintained
3180 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3181 F:      drivers/net/wireless/broadcom/b43legacy/
3182
3183 BACKLIGHT CLASS/SUBSYSTEM
3184 M:      Lee Jones <lee.jones@linaro.org>
3185 M:      Daniel Thompson <daniel.thompson@linaro.org>
3186 M:      Jingoo Han <jingoohan1@gmail.com>
3187 L:      dri-devel@lists.freedesktop.org
3188 S:      Maintained
3189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3190 F:      Documentation/ABI/stable/sysfs-class-backlight
3191 F:      Documentation/ABI/testing/sysfs-class-backlight
3192 F:      Documentation/devicetree/bindings/leds/backlight
3193 F:      drivers/video/backlight/
3194 F:      include/linux/backlight.h
3195 F:      include/linux/pwm_backlight.h
3196
3197 BATMAN ADVANCED
3198 M:      Marek Lindner <mareklindner@neomailbox.ch>
3199 M:      Simon Wunderlich <sw@simonwunderlich.de>
3200 M:      Antonio Quartulli <a@unstable.cc>
3201 M:      Sven Eckelmann <sven@narfation.org>
3202 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3203 S:      Maintained
3204 W:      https://www.open-mesh.org/
3205 Q:      https://patchwork.open-mesh.org/project/batman/list/
3206 B:      https://www.open-mesh.org/projects/batman-adv/issues
3207 C:      ircs://irc.hackint.org/batadv
3208 T:      git https://git.open-mesh.org/linux-merge.git
3209 F:      Documentation/networking/batman-adv.rst
3210 F:      include/uapi/linux/batadv_packet.h
3211 F:      include/uapi/linux/batman_adv.h
3212 F:      net/batman-adv/
3213
3214 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3215 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3216 L:      linux-hams@vger.kernel.org
3217 S:      Maintained
3218 W:      http://www.baycom.org/~tom/ham/ham.html
3219 F:      drivers/net/hamradio/baycom*
3220
3221 BCACHE (BLOCK LAYER CACHE)
3222 M:      Coly Li <colyli@suse.de>
3223 M:      Kent Overstreet <kent.overstreet@gmail.com>
3224 L:      linux-bcache@vger.kernel.org
3225 S:      Maintained
3226 W:      http://bcache.evilpiepirate.org
3227 C:      irc://irc.oftc.net/bcache
3228 F:      drivers/md/bcache/
3229
3230 BDISP ST MEDIA DRIVER
3231 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3232 L:      linux-media@vger.kernel.org
3233 S:      Supported
3234 W:      https://linuxtv.org
3235 T:      git git://linuxtv.org/media_tree.git
3236 F:      drivers/media/platform/sti/bdisp
3237
3238 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3239 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3240 L:      netdev@vger.kernel.org
3241 S:      Maintained
3242 F:      drivers/net/ethernet/ec_bhf.c
3243
3244 BEFS FILE SYSTEM
3245 M:      Luis de Bethencourt <luisbg@kernel.org>
3246 M:      Salah Triki <salah.triki@gmail.com>
3247 S:      Maintained
3248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3249 F:      Documentation/filesystems/befs.rst
3250 F:      fs/befs/
3251
3252 BFQ I/O SCHEDULER
3253 M:      Paolo Valente <paolo.valente@linaro.org>
3254 M:      Jens Axboe <axboe@kernel.dk>
3255 L:      linux-block@vger.kernel.org
3256 S:      Maintained
3257 F:      Documentation/block/bfq-iosched.rst
3258 F:      block/bfq-*
3259
3260 BFS FILE SYSTEM
3261 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3262 S:      Maintained
3263 F:      Documentation/filesystems/bfs.rst
3264 F:      fs/bfs/
3265 F:      include/uapi/linux/bfs_fs.h
3266
3267 BITMAP API
3268 M:      Yury Norov <yury.norov@gmail.com>
3269 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3270 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3271 S:      Maintained
3272 F:      include/asm-generic/bitops/find.h
3273 F:      include/linux/bitmap.h
3274 F:      lib/bitmap.c
3275 F:      lib/find_bit.c
3276 F:      lib/find_bit_benchmark.c
3277 F:      lib/test_bitmap.c
3278 F:      tools/include/asm-generic/bitops/find.h
3279 F:      tools/include/linux/bitmap.h
3280 F:      tools/lib/bitmap.c
3281 F:      tools/lib/find_bit.c
3282
3283 BLINKM RGB LED DRIVER
3284 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3285 S:      Maintained
3286 F:      drivers/leds/leds-blinkm.c
3287
3288 BLOCK LAYER
3289 M:      Jens Axboe <axboe@kernel.dk>
3290 L:      linux-block@vger.kernel.org
3291 S:      Maintained
3292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3293 F:      block/
3294 F:      drivers/block/
3295 F:      fs/block_dev.c
3296 F:      include/linux/blk*
3297 F:      kernel/trace/blktrace.c
3298 F:      lib/sbitmap.c
3299
3300 BLOCK2MTD DRIVER
3301 M:      Joern Engel <joern@lazybastard.org>
3302 L:      linux-mtd@lists.infradead.org
3303 S:      Maintained
3304 F:      drivers/mtd/devices/block2mtd.c
3305
3306 BLUETOOTH DRIVERS
3307 M:      Marcel Holtmann <marcel@holtmann.org>
3308 M:      Johan Hedberg <johan.hedberg@gmail.com>
3309 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3310 L:      linux-bluetooth@vger.kernel.org
3311 S:      Supported
3312 W:      http://www.bluez.org/
3313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3315 F:      drivers/bluetooth/
3316
3317 BLUETOOTH SUBSYSTEM
3318 M:      Marcel Holtmann <marcel@holtmann.org>
3319 M:      Johan Hedberg <johan.hedberg@gmail.com>
3320 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3321 L:      linux-bluetooth@vger.kernel.org
3322 S:      Supported
3323 W:      http://www.bluez.org/
3324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3326 F:      include/net/bluetooth/
3327 F:      net/bluetooth/
3328
3329 BONDING DRIVER
3330 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3331 M:      Veaceslav Falico <vfalico@gmail.com>
3332 M:      Andy Gospodarek <andy@greyhouse.net>
3333 L:      netdev@vger.kernel.org
3334 S:      Supported
3335 W:      http://sourceforge.net/projects/bonding/
3336 F:      drivers/net/bonding/
3337 F:      include/net/bonding.h
3338 F:      include/uapi/linux/if_bonding.h
3339
3340 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3341 M:      Dan Robertson <dan@dlrobertson.com>
3342 L:      linux-iio@vger.kernel.org
3343 S:      Maintained
3344 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3345 F:      drivers/iio/accel/bma400*
3346
3347 BPF (Safe dynamic programs and tools)
3348 M:      Alexei Starovoitov <ast@kernel.org>
3349 M:      Daniel Borkmann <daniel@iogearbox.net>
3350 M:      Andrii Nakryiko <andrii@kernel.org>
3351 R:      Martin KaFai Lau <kafai@fb.com>
3352 R:      Song Liu <songliubraving@fb.com>
3353 R:      Yonghong Song <yhs@fb.com>
3354 R:      John Fastabend <john.fastabend@gmail.com>
3355 R:      KP Singh <kpsingh@kernel.org>
3356 L:      netdev@vger.kernel.org
3357 L:      bpf@vger.kernel.org
3358 S:      Supported
3359 W:      https://bpf.io/
3360 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3363 F:      Documentation/bpf/
3364 F:      Documentation/networking/filter.rst
3365 F:      Documentation/userspace-api/ebpf/
3366 F:      arch/*/net/*
3367 F:      include/linux/bpf*
3368 F:      include/linux/filter.h
3369 F:      include/trace/events/xdp.h
3370 F:      include/uapi/linux/bpf*
3371 F:      include/uapi/linux/filter.h
3372 F:      kernel/bpf/
3373 F:      kernel/trace/bpf_trace.c
3374 F:      lib/test_bpf.c
3375 F:      net/bpf/
3376 F:      net/core/filter.c
3377 F:      net/sched/act_bpf.c
3378 F:      net/sched/cls_bpf.c
3379 F:      samples/bpf/
3380 F:      scripts/bpf_doc.py
3381 F:      tools/bpf/
3382 F:      tools/lib/bpf/
3383 F:      tools/testing/selftests/bpf/
3384 N:      bpf
3385 K:      bpf
3386
3387 BPF JIT for ARM
3388 M:      Shubham Bansal <illusionist.neo@gmail.com>
3389 L:      netdev@vger.kernel.org
3390 L:      bpf@vger.kernel.org
3391 S:      Maintained
3392 F:      arch/arm/net/
3393
3394 BPF JIT for ARM64
3395 M:      Daniel Borkmann <daniel@iogearbox.net>
3396 M:      Alexei Starovoitov <ast@kernel.org>
3397 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3398 L:      netdev@vger.kernel.org
3399 L:      bpf@vger.kernel.org
3400 S:      Supported
3401 F:      arch/arm64/net/
3402
3403 BPF JIT for MIPS (32-BIT AND 64-BIT)
3404 M:      Paul Burton <paulburton@kernel.org>
3405 L:      netdev@vger.kernel.org
3406 L:      bpf@vger.kernel.org
3407 S:      Maintained
3408 F:      arch/mips/net/
3409
3410 BPF JIT for NFP NICs
3411 M:      Jakub Kicinski <kuba@kernel.org>
3412 L:      netdev@vger.kernel.org
3413 L:      bpf@vger.kernel.org
3414 S:      Supported
3415 F:      drivers/net/ethernet/netronome/nfp/bpf/
3416
3417 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3418 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3419 L:      netdev@vger.kernel.org
3420 L:      bpf@vger.kernel.org
3421 S:      Maintained
3422 F:      arch/powerpc/net/
3423
3424 BPF JIT for RISC-V (32-bit)
3425 M:      Luke Nelson <luke.r.nels@gmail.com>
3426 M:      Xi Wang <xi.wang@gmail.com>
3427 L:      netdev@vger.kernel.org
3428 L:      bpf@vger.kernel.org
3429 S:      Maintained
3430 F:      arch/riscv/net/
3431 X:      arch/riscv/net/bpf_jit_comp64.c
3432
3433 BPF JIT for RISC-V (64-bit)
3434 M:      Björn Töpel <bjorn@kernel.org>
3435 L:      netdev@vger.kernel.org
3436 L:      bpf@vger.kernel.org
3437 S:      Maintained
3438 F:      arch/riscv/net/
3439 X:      arch/riscv/net/bpf_jit_comp32.c
3440
3441 BPF JIT for S390
3442 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3443 M:      Heiko Carstens <hca@linux.ibm.com>
3444 M:      Vasily Gorbik <gor@linux.ibm.com>
3445 L:      netdev@vger.kernel.org
3446 L:      bpf@vger.kernel.org
3447 S:      Maintained
3448 F:      arch/s390/net/
3449 X:      arch/s390/net/pnet.c
3450
3451 BPF JIT for SPARC (32-BIT AND 64-BIT)
3452 M:      David S. Miller <davem@davemloft.net>
3453 L:      netdev@vger.kernel.org
3454 L:      bpf@vger.kernel.org
3455 S:      Maintained
3456 F:      arch/sparc/net/
3457
3458 BPF JIT for X86 32-BIT
3459 M:      Wang YanQing <udknight@gmail.com>
3460 L:      netdev@vger.kernel.org
3461 L:      bpf@vger.kernel.org
3462 S:      Maintained
3463 F:      arch/x86/net/bpf_jit_comp32.c
3464
3465 BPF JIT for X86 64-BIT
3466 M:      Alexei Starovoitov <ast@kernel.org>
3467 M:      Daniel Borkmann <daniel@iogearbox.net>
3468 L:      netdev@vger.kernel.org
3469 L:      bpf@vger.kernel.org
3470 S:      Supported
3471 F:      arch/x86/net/
3472 X:      arch/x86/net/bpf_jit_comp32.c
3473
3474 BPF LSM (Security Audit and Enforcement using BPF)
3475 M:      KP Singh <kpsingh@kernel.org>
3476 R:      Florent Revest <revest@chromium.org>
3477 R:      Brendan Jackman <jackmanb@chromium.org>
3478 L:      bpf@vger.kernel.org
3479 S:      Maintained
3480 F:      Documentation/bpf/bpf_lsm.rst
3481 F:      include/linux/bpf_lsm.h
3482 F:      kernel/bpf/bpf_lsm.c
3483 F:      security/bpf/
3484
3485 BROADCOM B44 10/100 ETHERNET DRIVER
3486 M:      Michael Chan <michael.chan@broadcom.com>
3487 L:      netdev@vger.kernel.org
3488 S:      Supported
3489 F:      drivers/net/ethernet/broadcom/b44.*
3490
3491 BROADCOM B53 ETHERNET SWITCH DRIVER
3492 M:      Florian Fainelli <f.fainelli@gmail.com>
3493 L:      netdev@vger.kernel.org
3494 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3495 S:      Supported
3496 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3497 F:      drivers/net/dsa/b53/*
3498 F:      include/linux/dsa/brcm.h
3499 F:      include/linux/platform_data/b53.h
3500
3501 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3502 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3503 L:      bcm-kernel-feedback-list@broadcom.com
3504 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3505 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3506 S:      Maintained
3507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3508 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3509 F:      drivers/pci/controller/pcie-brcmstb.c
3510 F:      drivers/staging/vc04_services
3511 N:      bcm2711
3512 N:      bcm283*
3513
3514 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3515 M:      Florian Fainelli <f.fainelli@gmail.com>
3516 M:      Ray Jui <rjui@broadcom.com>
3517 M:      Scott Branden <sbranden@broadcom.com>
3518 M:      bcm-kernel-feedback-list@broadcom.com
3519 S:      Maintained
3520 T:      git git://github.com/broadcom/mach-bcm
3521 F:      arch/arm/mach-bcm/
3522 N:      bcm281*
3523 N:      bcm113*
3524 N:      bcm216*
3525 N:      kona
3526
3527 BROADCOM BCM47XX MIPS ARCHITECTURE
3528 M:      Hauke Mehrtens <hauke@hauke-m.de>
3529 M:      Rafał Miłecki <zajec5@gmail.com>
3530 L:      linux-mips@vger.kernel.org
3531 S:      Maintained
3532 F:      Documentation/devicetree/bindings/mips/brcm/
3533 F:      arch/mips/bcm47xx/*
3534 F:      arch/mips/include/asm/mach-bcm47xx/*
3535
3536 BROADCOM BCM4908 ETHERNET DRIVER
3537 M:      Rafał Miłecki <rafal@milecki.pl>
3538 M:      bcm-kernel-feedback-list@broadcom.com
3539 L:      netdev@vger.kernel.org
3540 S:      Maintained
3541 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3542 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3543 F:      drivers/net/ethernet/broadcom/unimac.h
3544
3545 BROADCOM BCM5301X ARM ARCHITECTURE
3546 M:      Hauke Mehrtens <hauke@hauke-m.de>
3547 M:      Rafał Miłecki <zajec5@gmail.com>
3548 M:      bcm-kernel-feedback-list@broadcom.com
3549 L:      linux-arm-kernel@lists.infradead.org
3550 S:      Maintained
3551 F:      arch/arm/boot/dts/bcm470*
3552 F:      arch/arm/boot/dts/bcm5301*
3553 F:      arch/arm/boot/dts/bcm953012*
3554 F:      arch/arm/mach-bcm/bcm_5301x.c
3555
3556 BROADCOM BCM53573 ARM ARCHITECTURE
3557 M:      Rafał Miłecki <rafal@milecki.pl>
3558 L:      bcm-kernel-feedback-list@broadcom.com
3559 L:      linux-arm-kernel@lists.infradead.org
3560 S:      Maintained
3561 F:      arch/arm/boot/dts/bcm47189*
3562 F:      arch/arm/boot/dts/bcm53573*
3563
3564 BROADCOM BCM63XX ARM ARCHITECTURE
3565 M:      Florian Fainelli <f.fainelli@gmail.com>
3566 M:      bcm-kernel-feedback-list@broadcom.com
3567 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3568 S:      Maintained
3569 T:      git git://github.com/broadcom/stblinux.git
3570 N:      bcm63xx
3571
3572 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3573 M:      Kevin Cernekee <cernekee@gmail.com>
3574 L:      linux-usb@vger.kernel.org
3575 S:      Maintained
3576 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3577
3578 BROADCOM BCM7XXX ARM ARCHITECTURE
3579 M:      Florian Fainelli <f.fainelli@gmail.com>
3580 M:      bcm-kernel-feedback-list@broadcom.com
3581 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3582 S:      Maintained
3583 T:      git git://github.com/broadcom/stblinux.git
3584 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3585 F:      arch/arm/boot/dts/bcm7*.dts*
3586 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3587 F:      arch/arm/mach-bcm/*brcmstb*
3588 F:      arch/arm/mm/cache-b15-rac.c
3589 F:      drivers/bus/brcmstb_gisb.c
3590 F:      drivers/pci/controller/pcie-brcmstb.c
3591 N:      brcmstb
3592
3593 BROADCOM BDC DRIVER
3594 M:      Al Cooper <alcooperx@gmail.com>
3595 L:      linux-usb@vger.kernel.org
3596 L:      bcm-kernel-feedback-list@broadcom.com
3597 S:      Maintained
3598 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3599 F:      drivers/usb/gadget/udc/bdc/
3600
3601 BROADCOM BMIPS CPUFREQ DRIVER
3602 M:      Markus Mayer <mmayer@broadcom.com>
3603 M:      bcm-kernel-feedback-list@broadcom.com
3604 L:      linux-pm@vger.kernel.org
3605 S:      Maintained
3606 F:      drivers/cpufreq/bmips-cpufreq.c
3607
3608 BROADCOM BMIPS MIPS ARCHITECTURE
3609 M:      Florian Fainelli <f.fainelli@gmail.com>
3610 L:      bcm-kernel-feedback-list@broadcom.com
3611 L:      linux-mips@vger.kernel.org
3612 S:      Maintained
3613 T:      git git://github.com/broadcom/stblinux.git
3614 F:      arch/mips/bmips/*
3615 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3616 F:      arch/mips/include/asm/mach-bmips/*
3617 F:      arch/mips/kernel/*bmips*
3618 F:      drivers/soc/bcm/bcm63xx
3619 F:      drivers/irqchip/irq-bcm63*
3620 F:      drivers/irqchip/irq-bcm7*
3621 F:      drivers/irqchip/irq-brcmstb*
3622 F:      include/linux/bcm963xx_nvram.h
3623 F:      include/linux/bcm963xx_tag.h
3624
3625 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3626 M:      Rasesh Mody <rmody@marvell.com>
3627 M:      GR-Linux-NIC-Dev@marvell.com
3628 L:      netdev@vger.kernel.org
3629 S:      Supported
3630 F:      drivers/net/ethernet/broadcom/bnx2.*
3631 F:      drivers/net/ethernet/broadcom/bnx2_*
3632
3633 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3634 M:      Saurav Kashyap <skashyap@marvell.com>
3635 M:      Javed Hasan <jhasan@marvell.com>
3636 M:      GR-QLogic-Storage-Upstream@marvell.com
3637 L:      linux-scsi@vger.kernel.org
3638 S:      Supported
3639 F:      drivers/scsi/bnx2fc/
3640
3641 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3642 M:      Nilesh Javali <njavali@marvell.com>
3643 M:      Manish Rangankar <mrangankar@marvell.com>
3644 M:      GR-QLogic-Storage-Upstream@marvell.com
3645 L:      linux-scsi@vger.kernel.org
3646 S:      Supported
3647 F:      drivers/scsi/bnx2i/
3648
3649 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3650 M:      Ariel Elior <aelior@marvell.com>
3651 M:      Sudarsana Kalluru <skalluru@marvell.com>
3652 M:      GR-everest-linux-l2@marvell.com
3653 L:      netdev@vger.kernel.org
3654 S:      Supported
3655 F:      drivers/net/ethernet/broadcom/bnx2x/
3656
3657 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3658 M:      Michael Chan <michael.chan@broadcom.com>
3659 L:      netdev@vger.kernel.org
3660 S:      Supported
3661 F:      drivers/net/ethernet/broadcom/bnxt/
3662
3663 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3664 M:      Arend van Spriel <aspriel@gmail.com>
3665 M:      Franky Lin <franky.lin@broadcom.com>
3666 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3667 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3668 M:      Wright Feng <wright.feng@infineon.com>
3669 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3670 L:      linux-wireless@vger.kernel.org
3671 L:      brcm80211-dev-list.pdl@broadcom.com
3672 L:      SHA-cyfmac-dev-list@infineon.com
3673 S:      Supported
3674 F:      drivers/net/wireless/broadcom/brcm80211/
3675
3676 BROADCOM BRCMSTB GPIO DRIVER
3677 M:      Gregory Fong <gregory.0xf0@gmail.com>
3678 L:      bcm-kernel-feedback-list@broadcom.com
3679 S:      Supported
3680 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3681 F:      drivers/gpio/gpio-brcmstb.c
3682
3683 BROADCOM BRCMSTB I2C DRIVER
3684 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3685 L:      linux-i2c@vger.kernel.org
3686 L:      bcm-kernel-feedback-list@broadcom.com
3687 S:      Supported
3688 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3689 F:      drivers/i2c/busses/i2c-brcmstb.c
3690
3691 BROADCOM BRCMSTB UART DRIVER
3692 M:      Al Cooper <alcooperx@gmail.com>
3693 L:      linux-serial@vger.kernel.org
3694 L:      bcm-kernel-feedback-list@broadcom.com
3695 S:      Maintained
3696 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3697 F:      drivers/tty/serial/8250/8250_bcm7271.c
3698
3699 BROADCOM BRCMSTB USB EHCI DRIVER
3700 M:      Al Cooper <alcooperx@gmail.com>
3701 L:      linux-usb@vger.kernel.org
3702 L:      bcm-kernel-feedback-list@broadcom.com
3703 S:      Maintained
3704 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3705 F:      drivers/usb/host/ehci-brcm.*
3706
3707 BROADCOM BRCMSTB USB PIN MAP DRIVER
3708 M:      Al Cooper <alcooperx@gmail.com>
3709 L:      linux-usb@vger.kernel.org
3710 L:      bcm-kernel-feedback-list@broadcom.com
3711 S:      Maintained
3712 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3713 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3714
3715 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3716 M:      Al Cooper <alcooperx@gmail.com>
3717 L:      linux-kernel@vger.kernel.org
3718 L:      bcm-kernel-feedback-list@broadcom.com
3719 S:      Maintained
3720 F:      drivers/phy/broadcom/phy-brcm-usb*
3721
3722 BROADCOM ETHERNET PHY DRIVERS
3723 M:      Florian Fainelli <f.fainelli@gmail.com>
3724 L:      bcm-kernel-feedback-list@broadcom.com
3725 L:      netdev@vger.kernel.org
3726 S:      Supported
3727 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3728 F:      drivers/net/phy/bcm*.[ch]
3729 F:      drivers/net/phy/broadcom.c
3730 F:      include/linux/brcmphy.h
3731
3732 BROADCOM GENET ETHERNET DRIVER
3733 M:      Doug Berger <opendmb@gmail.com>
3734 M:      Florian Fainelli <f.fainelli@gmail.com>
3735 L:      bcm-kernel-feedback-list@broadcom.com
3736 L:      netdev@vger.kernel.org
3737 S:      Supported
3738 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3739 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3740 F:      drivers/net/ethernet/broadcom/genet/
3741 F:      drivers/net/ethernet/broadcom/unimac.h
3742 F:      drivers/net/mdio/mdio-bcm-unimac.c
3743 F:      include/linux/platform_data/bcmgenet.h
3744 F:      include/linux/platform_data/mdio-bcm-unimac.h
3745
3746 BROADCOM IPROC ARM ARCHITECTURE
3747 M:      Ray Jui <rjui@broadcom.com>
3748 M:      Scott Branden <sbranden@broadcom.com>
3749 M:      bcm-kernel-feedback-list@broadcom.com
3750 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3751 S:      Maintained
3752 T:      git git://github.com/broadcom/cygnus-linux.git
3753 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3754 F:      arch/arm64/boot/dts/broadcom/stingray/*
3755 F:      drivers/clk/bcm/clk-ns*
3756 F:      drivers/clk/bcm/clk-sr*
3757 F:      drivers/pinctrl/bcm/pinctrl-ns*
3758 F:      include/dt-bindings/clock/bcm-sr*
3759 N:      iproc
3760 N:      cygnus
3761 N:      bcm[-_]nsp
3762 N:      bcm9113*
3763 N:      bcm9583*
3764 N:      bcm9585*
3765 N:      bcm9586*
3766 N:      bcm988312
3767 N:      bcm113*
3768 N:      bcm583*
3769 N:      bcm585*
3770 N:      bcm586*
3771 N:      bcm88312
3772 N:      hr2
3773 N:      stingray
3774
3775 BROADCOM IPROC GBIT ETHERNET DRIVER
3776 M:      Rafał Miłecki <rafal@milecki.pl>
3777 M:      bcm-kernel-feedback-list@broadcom.com
3778 L:      netdev@vger.kernel.org
3779 S:      Maintained
3780 F:      Documentation/devicetree/bindings/net/brcm,amac.txt
3781 F:      drivers/net/ethernet/broadcom/bgmac*
3782 F:      drivers/net/ethernet/broadcom/unimac.h
3783
3784 BROADCOM KONA GPIO DRIVER
3785 M:      Ray Jui <rjui@broadcom.com>
3786 L:      bcm-kernel-feedback-list@broadcom.com
3787 S:      Supported
3788 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3789 F:      drivers/gpio/gpio-bcm-kona.c
3790
3791 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
3792 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
3793 M:      Kashyap Desai <kashyap.desai@broadcom.com>
3794 M:      Sumit Saxena <sumit.saxena@broadcom.com>
3795 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
3796 L:      mpi3mr-linuxdrv.pdl@broadcom.com
3797 L:      linux-scsi@vger.kernel.org
3798 S:      Supported
3799 W:      https://www.broadcom.com/support/storage
3800 F:      drivers/scsi/mpi3mr/
3801
3802 BROADCOM NETXTREME-E ROCE DRIVER
3803 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3804 M:      Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
3805 L:      linux-rdma@vger.kernel.org
3806 S:      Supported
3807 W:      http://www.broadcom.com
3808 F:      drivers/infiniband/hw/bnxt_re/
3809 F:      include/uapi/rdma/bnxt_re-abi.h
3810
3811 BROADCOM NVRAM DRIVER
3812 M:      Rafał Miłecki <zajec5@gmail.com>
3813 L:      linux-mips@vger.kernel.org
3814 S:      Maintained
3815 F:      drivers/firmware/broadcom/*
3816
3817 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3818 M:      Rafał Miłecki <rafal@milecki.pl>
3819 M:      Florian Fainelli <f.fainelli@gmail.com>
3820 M:      bcm-kernel-feedback-list@broadcom.com
3821 L:      linux-pm@vger.kernel.org
3822 S:      Maintained
3823 T:      git git://github.com/broadcom/stblinux.git
3824 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
3825 F:      include/dt-bindings/soc/bcm-pmb.h
3826
3827 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3828 M:      Rafał Miłecki <zajec5@gmail.com>
3829 L:      linux-wireless@vger.kernel.org
3830 S:      Maintained
3831 F:      drivers/bcma/
3832 F:      include/linux/bcma/
3833
3834 BROADCOM SPI DRIVER
3835 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3836 M:      bcm-kernel-feedback-list@broadcom.com
3837 S:      Maintained
3838 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3839 F:      drivers/spi/spi-bcm-qspi.*
3840 F:      drivers/spi/spi-brcmstb-qspi.c
3841 F:      drivers/spi/spi-iproc-qspi.c
3842
3843 BROADCOM STB AVS CPUFREQ DRIVER
3844 M:      Markus Mayer <mmayer@broadcom.com>
3845 M:      bcm-kernel-feedback-list@broadcom.com
3846 L:      linux-pm@vger.kernel.org
3847 S:      Maintained
3848 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3849 F:      drivers/cpufreq/brcmstb*
3850
3851 BROADCOM STB AVS TMON DRIVER
3852 M:      Markus Mayer <mmayer@broadcom.com>
3853 M:      bcm-kernel-feedback-list@broadcom.com
3854 L:      linux-pm@vger.kernel.org
3855 S:      Maintained
3856 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3857 F:      drivers/thermal/broadcom/brcmstb*
3858
3859 BROADCOM STB DPFE DRIVER
3860 M:      Markus Mayer <mmayer@broadcom.com>
3861 M:      bcm-kernel-feedback-list@broadcom.com
3862 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3863 S:      Maintained
3864 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3865 F:      drivers/memory/brcmstb_dpfe.c
3866
3867 BROADCOM STB NAND FLASH DRIVER
3868 M:      Brian Norris <computersforpeace@gmail.com>
3869 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3870 L:      linux-mtd@lists.infradead.org
3871 L:      bcm-kernel-feedback-list@broadcom.com
3872 S:      Maintained
3873 F:      drivers/mtd/nand/raw/brcmnand/
3874
3875 BROADCOM STB PCIE DRIVER
3876 M:      Jim Quinlan <jim2101024@gmail.com>
3877 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3878 M:      Florian Fainelli <f.fainelli@gmail.com>
3879 M:      bcm-kernel-feedback-list@broadcom.com
3880 L:      linux-pci@vger.kernel.org
3881 S:      Maintained
3882 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3883 F:      drivers/pci/controller/pcie-brcmstb.c
3884
3885 BROADCOM SYSTEMPORT ETHERNET DRIVER
3886 M:      Florian Fainelli <f.fainelli@gmail.com>
3887 L:      bcm-kernel-feedback-list@broadcom.com
3888 L:      netdev@vger.kernel.org
3889 S:      Supported
3890 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3891 F:      drivers/net/ethernet/broadcom/unimac.h
3892
3893 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3894 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3895 M:      Prashant Sreedharan <prashant@broadcom.com>
3896 M:      Michael Chan <mchan@broadcom.com>
3897 L:      netdev@vger.kernel.org
3898 S:      Supported
3899 F:      drivers/net/ethernet/broadcom/tg3.*
3900
3901 BROADCOM VK DRIVER
3902 M:      Scott Branden <scott.branden@broadcom.com>
3903 L:      bcm-kernel-feedback-list@broadcom.com
3904 S:      Supported
3905 F:      drivers/misc/bcm-vk/
3906 F:      include/uapi/linux/misc/bcm_vk.h
3907
3908 BROCADE BFA FC SCSI DRIVER
3909 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3910 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3911 L:      linux-scsi@vger.kernel.org
3912 S:      Supported
3913 F:      drivers/scsi/bfa/
3914
3915 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3916 M:      Rasesh Mody <rmody@marvell.com>
3917 M:      Sudarsana Kalluru <skalluru@marvell.com>
3918 M:      GR-Linux-NIC-Dev@marvell.com
3919 L:      netdev@vger.kernel.org
3920 S:      Supported
3921 F:      drivers/net/ethernet/brocade/bna/
3922
3923 BSG (block layer generic sg v4 driver)
3924 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3925 L:      linux-scsi@vger.kernel.org
3926 S:      Supported
3927 F:      block/bsg.c
3928 F:      include/linux/bsg.h
3929 F:      include/uapi/linux/bsg.h
3930
3931 BT87X AUDIO DRIVER
3932 M:      Clemens Ladisch <clemens@ladisch.de>
3933 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3934 S:      Maintained
3935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3936 F:      Documentation/sound/cards/bt87x.rst
3937 F:      sound/pci/bt87x.c
3938
3939 BT8XXGPIO DRIVER
3940 M:      Michael Buesch <m@bues.ch>
3941 S:      Maintained
3942 W:      http://bu3sch.de/btgpio.php
3943 F:      drivers/gpio/gpio-bt8xx.c
3944
3945 BTRFS FILE SYSTEM
3946 M:      Chris Mason <clm@fb.com>
3947 M:      Josef Bacik <josef@toxicpanda.com>
3948 M:      David Sterba <dsterba@suse.com>
3949 L:      linux-btrfs@vger.kernel.org
3950 S:      Maintained
3951 W:      http://btrfs.wiki.kernel.org/
3952 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3953 C:      irc://irc.libera.chat/btrfs
3954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3955 F:      Documentation/filesystems/btrfs.rst
3956 F:      fs/btrfs/
3957 F:      include/linux/btrfs*
3958 F:      include/uapi/linux/btrfs*
3959
3960 BTTV VIDEO4LINUX DRIVER
3961 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3962 L:      linux-media@vger.kernel.org
3963 S:      Odd fixes
3964 W:      https://linuxtv.org
3965 T:      git git://linuxtv.org/media_tree.git
3966 F:      Documentation/driver-api/media/drivers/bttv*
3967 F:      drivers/media/pci/bt8xx/bttv*
3968
3969 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3970 M:      Chanwoo Choi <cw00.choi@samsung.com>
3971 L:      linux-pm@vger.kernel.org
3972 L:      linux-samsung-soc@vger.kernel.org
3973 S:      Maintained
3974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3975 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3976 F:      drivers/devfreq/exynos-bus.c
3977
3978 BUSLOGIC SCSI DRIVER
3979 M:      Khalid Aziz <khalid@gonehiking.org>
3980 L:      linux-scsi@vger.kernel.org
3981 S:      Maintained
3982 F:      drivers/scsi/BusLogic.*
3983 F:      drivers/scsi/FlashPoint.*
3984
3985 C-MEDIA CMI8788 DRIVER
3986 M:      Clemens Ladisch <clemens@ladisch.de>
3987 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3988 S:      Maintained
3989 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3990 F:      sound/pci/oxygen/
3991
3992 C-SKY ARCHITECTURE
3993 M:      Guo Ren <guoren@kernel.org>
3994 L:      linux-csky@vger.kernel.org
3995 S:      Supported
3996 T:      git https://github.com/c-sky/csky-linux.git
3997 F:      Documentation/devicetree/bindings/csky/
3998 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3999 F:      Documentation/devicetree/bindings/timer/csky,*
4000 F:      arch/csky/
4001 F:      drivers/clocksource/timer-gx6605s.c
4002 F:      drivers/clocksource/timer-mp-csky.c
4003 F:      drivers/irqchip/irq-csky-*
4004 N:      csky
4005 K:      csky
4006
4007 CA8210 IEEE-802.15.4 RADIO DRIVER
4008 M:      Harry Morris <h.morris@cascoda.com>
4009 L:      linux-wpan@vger.kernel.org
4010 S:      Maintained
4011 W:      https://github.com/Cascoda/ca8210-linux.git
4012 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4013 F:      drivers/net/ieee802154/ca8210.c
4014
4015 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4016 M:      Damien Le Moal <damien.lemoal@wdc.com>
4017 L:      linux-riscv@lists.infradead.org
4018 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4019 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4020 F:      drivers/pinctrl/pinctrl-k210.c
4021
4022 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4023 M:      Damien Le Moal <damien.lemoal@wdc.com>
4024 L:      linux-kernel@vger.kernel.org
4025 L:      linux-riscv@lists.infradead.org
4026 S:      Maintained
4027 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4028 F:      drivers/reset/reset-k210.c
4029
4030 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4031 M:      Damien Le Moal <damien.lemoal@wdc.com>
4032 L:      linux-riscv@lists.infradead.org
4033 S:      Maintained
4034 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4035 F:      drivers/soc/canaan/
4036 F:      include/soc/canaan/
4037
4038 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4039 M:      David Howells <dhowells@redhat.com>
4040 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4041 S:      Supported
4042 F:      Documentation/filesystems/caching/cachefiles.rst
4043 F:      fs/cachefiles/
4044
4045 CADENCE MIPI-CSI2 BRIDGES
4046 M:      Maxime Ripard <mripard@kernel.org>
4047 L:      linux-media@vger.kernel.org
4048 S:      Maintained
4049 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4050 F:      drivers/media/platform/cadence/cdns-csi2*
4051
4052 CADENCE NAND DRIVER
4053 L:      linux-mtd@lists.infradead.org
4054 S:      Orphan
4055 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4056 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4057
4058 CADENCE USB3 DRD IP DRIVER
4059 M:      Peter Chen <peter.chen@kernel.org>
4060 M:      Pawel Laszczak <pawell@cadence.com>
4061 R:      Roger Quadros <rogerq@kernel.org>
4062 R:      Aswath Govindraju <a-govindraju@ti.com>
4063 L:      linux-usb@vger.kernel.org
4064 S:      Maintained
4065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4066 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4067 F:      drivers/usb/cdns3/
4068 X:      drivers/usb/cdns3/cdnsp*
4069
4070 CADENCE USBSSP DRD IP DRIVER
4071 M:      Pawel Laszczak <pawell@cadence.com>
4072 L:      linux-usb@vger.kernel.org
4073 S:      Maintained
4074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4075 F:      drivers/usb/cdns3/
4076 X:      drivers/usb/cdns3/cdns3*
4077
4078 CADET FM/AM RADIO RECEIVER DRIVER
4079 M:      Hans Verkuil <hverkuil@xs4all.nl>
4080 L:      linux-media@vger.kernel.org
4081 S:      Maintained
4082 W:      https://linuxtv.org
4083 T:      git git://linuxtv.org/media_tree.git
4084 F:      drivers/media/radio/radio-cadet*
4085
4086 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4087 L:      linux-media@vger.kernel.org
4088 S:      Orphan
4089 T:      git git://linuxtv.org/media_tree.git
4090 F:      Documentation/admin-guide/media/cafe_ccic*
4091 F:      drivers/media/platform/marvell-ccic/
4092
4093 CAIF NETWORK LAYER
4094 L:      netdev@vger.kernel.org
4095 S:      Orphan
4096 F:      Documentation/networking/caif/
4097 F:      drivers/net/caif/
4098 F:      include/net/caif/
4099 F:      include/uapi/linux/caif/
4100 F:      net/caif/
4101
4102 CAKE QDISC
4103 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4104 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4105 S:      Maintained
4106 F:      net/sched/sch_cake.c
4107
4108 CAN NETWORK DRIVERS
4109 M:      Wolfgang Grandegger <wg@grandegger.com>
4110 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4111 L:      linux-can@vger.kernel.org
4112 S:      Maintained
4113 W:      https://github.com/linux-can
4114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4116 F:      Documentation/devicetree/bindings/net/can/
4117 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4118 F:      drivers/net/can/
4119 F:      drivers/phy/phy-can-transceiver.c
4120 F:      include/linux/can/bittiming.h
4121 F:      include/linux/can/dev.h
4122 F:      include/linux/can/led.h
4123 F:      include/linux/can/length.h
4124 F:      include/linux/can/platform/
4125 F:      include/linux/can/rx-offload.h
4126 F:      include/uapi/linux/can/error.h
4127 F:      include/uapi/linux/can/netlink.h
4128 F:      include/uapi/linux/can/vxcan.h
4129
4130 CAN NETWORK LAYER
4131 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4132 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4133 L:      linux-can@vger.kernel.org
4134 S:      Maintained
4135 W:      https://github.com/linux-can
4136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4138 F:      Documentation/networking/can.rst
4139 F:      include/linux/can/can-ml.h
4140 F:      include/linux/can/core.h
4141 F:      include/linux/can/skb.h
4142 F:      include/net/netns/can.h
4143 F:      include/uapi/linux/can.h
4144 F:      include/uapi/linux/can/bcm.h
4145 F:      include/uapi/linux/can/gw.h
4146 F:      include/uapi/linux/can/isotp.h
4147 F:      include/uapi/linux/can/raw.h
4148 F:      net/can/
4149
4150 CAN-J1939 NETWORK LAYER
4151 M:      Robin van der Gracht <robin@protonic.nl>
4152 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4153 R:      kernel@pengutronix.de
4154 L:      linux-can@vger.kernel.org
4155 S:      Maintained
4156 F:      Documentation/networking/j1939.rst
4157 F:      include/uapi/linux/can/j1939.h
4158 F:      net/can/j1939/
4159
4160 CAPABILITIES
4161 M:      Serge Hallyn <serge@hallyn.com>
4162 L:      linux-security-module@vger.kernel.org
4163 S:      Supported
4164 F:      include/linux/capability.h
4165 F:      include/uapi/linux/capability.h
4166 F:      kernel/capability.c
4167 F:      security/commoncap.c
4168
4169 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4170 M:      Kevin Tsai <ktsai@capellamicro.com>
4171 S:      Maintained
4172 F:      drivers/iio/light/cm*
4173
4174 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4175 M:      Christian Lamparter <chunkeey@googlemail.com>
4176 L:      linux-wireless@vger.kernel.org
4177 S:      Maintained
4178 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4179 F:      drivers/net/wireless/ath/carl9170/
4180
4181 CAVIUM I2C DRIVER
4182 M:      Robert Richter <rric@kernel.org>
4183 S:      Odd Fixes
4184 W:      http://www.marvell.com
4185 F:      drivers/i2c/busses/i2c-octeon*
4186 F:      drivers/i2c/busses/i2c-thunderx*
4187
4188 CAVIUM LIQUIDIO NETWORK DRIVER
4189 M:      Derek Chickles <dchickles@marvell.com>
4190 M:      Satanand Burla <sburla@marvell.com>
4191 M:      Felix Manlunas <fmanlunas@marvell.com>
4192 L:      netdev@vger.kernel.org
4193 S:      Supported
4194 W:      http://www.marvell.com
4195 F:      drivers/net/ethernet/cavium/liquidio/
4196
4197 CAVIUM MMC DRIVER
4198 M:      Robert Richter <rric@kernel.org>
4199 S:      Odd Fixes
4200 W:      http://www.marvell.com
4201 F:      drivers/mmc/host/cavium*
4202
4203 CAVIUM OCTEON-TX CRYPTO DRIVER
4204 M:      George Cherian <gcherian@marvell.com>
4205 L:      linux-crypto@vger.kernel.org
4206 S:      Supported
4207 W:      http://www.marvell.com
4208 F:      drivers/crypto/cavium/cpt/
4209
4210 CAVIUM THUNDERX2 ARM64 SOC
4211 M:      Robert Richter <rric@kernel.org>
4212 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4213 S:      Odd Fixes
4214 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4215 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4216
4217 CBS/ETF/TAPRIO QDISCS
4218 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4219 S:      Maintained
4220 L:      netdev@vger.kernel.org
4221 F:      net/sched/sch_cbs.c
4222 F:      net/sched/sch_etf.c
4223 F:      net/sched/sch_taprio.c
4224
4225 CC2520 IEEE-802.15.4 RADIO DRIVER
4226 M:      Varka Bhadram <varkabhadram@gmail.com>
4227 L:      linux-wpan@vger.kernel.org
4228 S:      Maintained
4229 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4230 F:      drivers/net/ieee802154/cc2520.c
4231 F:      include/linux/spi/cc2520.h
4232
4233 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4234 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4235 L:      linux-crypto@vger.kernel.org
4236 S:      Supported
4237 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4238 F:      drivers/crypto/ccree/
4239
4240 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4241 M:      Hadar Gat <hadar.gat@arm.com>
4242 L:      linux-crypto@vger.kernel.org
4243 S:      Supported
4244 F:      drivers/char/hw_random/cctrng.c
4245 F:      drivers/char/hw_random/cctrng.h
4246 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4247 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4248
4249 CEC FRAMEWORK
4250 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4251 L:      linux-media@vger.kernel.org
4252 S:      Supported
4253 W:      http://linuxtv.org
4254 T:      git git://linuxtv.org/media_tree.git
4255 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4256 F:      Documentation/devicetree/bindings/media/cec.txt
4257 F:      Documentation/driver-api/media/cec-core.rst
4258 F:      Documentation/userspace-api/media/cec
4259 F:      drivers/media/cec/
4260 F:      drivers/media/rc/keymaps/rc-cec.c
4261 F:      include/media/cec-notifier.h
4262 F:      include/media/cec.h
4263 F:      include/uapi/linux/cec-funcs.h
4264 F:      include/uapi/linux/cec.h
4265
4266 CEC GPIO DRIVER
4267 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4268 L:      linux-media@vger.kernel.org
4269 S:      Supported
4270 W:      http://linuxtv.org
4271 T:      git git://linuxtv.org/media_tree.git
4272 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4273 F:      drivers/media/cec/platform/cec-gpio/
4274
4275 CELL BROADBAND ENGINE ARCHITECTURE
4276 M:      Arnd Bergmann <arnd@arndb.de>
4277 L:      linuxppc-dev@lists.ozlabs.org
4278 S:      Supported
4279 W:      http://www.ibm.com/developerworks/power/cell/
4280 F:      arch/powerpc/include/asm/cell*.h
4281 F:      arch/powerpc/include/asm/spu*.h
4282 F:      arch/powerpc/include/uapi/asm/spu*.h
4283 F:      arch/powerpc/platforms/cell/
4284
4285 CELLWISE CW2015 BATTERY DRIVER
4286 M:      Tobias Schrammm <t.schramm@manjaro.org>
4287 S:      Maintained
4288 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4289 F:      drivers/power/supply/cw2015_battery.c
4290
4291 CEPH COMMON CODE (LIBCEPH)
4292 M:      Ilya Dryomov <idryomov@gmail.com>
4293 M:      Jeff Layton <jlayton@kernel.org>
4294 L:      ceph-devel@vger.kernel.org
4295 S:      Supported
4296 W:      http://ceph.com/
4297 T:      git git://github.com/ceph/ceph-client.git
4298 F:      include/linux/ceph/
4299 F:      include/linux/crush/
4300 F:      net/ceph/
4301
4302 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4303 M:      Jeff Layton <jlayton@kernel.org>
4304 M:      Ilya Dryomov <idryomov@gmail.com>
4305 L:      ceph-devel@vger.kernel.org
4306 S:      Supported
4307 W:      http://ceph.com/
4308 T:      git git://github.com/ceph/ceph-client.git
4309 F:      Documentation/filesystems/ceph.rst
4310 F:      fs/ceph/
4311
4312 CERTIFICATE HANDLING
4313 M:      David Howells <dhowells@redhat.com>
4314 M:      David Woodhouse <dwmw2@infradead.org>
4315 L:      keyrings@vger.kernel.org
4316 S:      Maintained
4317 F:      Documentation/admin-guide/module-signing.rst
4318 F:      certs/
4319 F:      scripts/extract-cert.c
4320 F:      scripts/sign-file.c
4321
4322 CFAG12864B LCD DRIVER
4323 M:      Miguel Ojeda <ojeda@kernel.org>
4324 S:      Maintained
4325 F:      drivers/auxdisplay/cfag12864b.c
4326 F:      include/linux/cfag12864b.h
4327
4328 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4329 M:      Miguel Ojeda <ojeda@kernel.org>
4330 S:      Maintained
4331 F:      drivers/auxdisplay/cfag12864bfb.c
4332 F:      include/linux/cfag12864b.h
4333
4334 CHAR and MISC DRIVERS
4335 M:      Arnd Bergmann <arnd@arndb.de>
4336 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4337 S:      Supported
4338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4339 F:      drivers/char/
4340 F:      drivers/misc/
4341 F:      include/linux/miscdevice.h
4342 X:      drivers/char/agp/
4343 X:      drivers/char/hw_random/
4344 X:      drivers/char/ipmi/
4345 X:      drivers/char/random.c
4346 X:      drivers/char/tpm/
4347
4348 CHECKPATCH
4349 M:      Andy Whitcroft <apw@canonical.com>
4350 M:      Joe Perches <joe@perches.com>
4351 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4352 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4353 S:      Maintained
4354 F:      scripts/checkpatch.pl
4355
4356 CHECKPATCH DOCUMENTATION
4357 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4358 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4359 R:      Joe Perches <joe@perches.com>
4360 S:      Maintained
4361 F:      Documentation/dev-tools/checkpatch.rst
4362
4363 CHINESE DOCUMENTATION
4364 M:      Alex Shi <alexs@kernel.org>
4365 S:      Maintained
4366 F:      Documentation/translations/zh_CN/
4367
4368 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4369 M:      Peter Chen <peter.chen@kernel.org>
4370 L:      linux-usb@vger.kernel.org
4371 S:      Maintained
4372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4373 F:      drivers/usb/chipidea/
4374
4375 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4376 M:      Hans de Goede <hdegoede@redhat.com>
4377 L:      linux-input@vger.kernel.org
4378 S:      Maintained
4379 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4380 F:      drivers/input/touchscreen/chipone_icn8318.c
4381
4382 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4383 M:      Hans de Goede <hdegoede@redhat.com>
4384 L:      linux-input@vger.kernel.org
4385 S:      Maintained
4386 F:      drivers/input/touchscreen/chipone_icn8505.c
4387
4388 CHROME HARDWARE PLATFORM SUPPORT
4389 M:      Benson Leung <bleung@chromium.org>
4390 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4391 S:      Maintained
4392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4393 F:      drivers/platform/chrome/
4394
4395 CHROMEOS EC CODEC DRIVER
4396 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4397 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4398 R:      Guenter Roeck <groeck@chromium.org>
4399 S:      Maintained
4400 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4401 F:      sound/soc/codecs/cros_ec_codec.*
4402
4403 CHROMEOS EC SUBDRIVERS
4404 M:      Benson Leung <bleung@chromium.org>
4405 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4406 R:      Guenter Roeck <groeck@chromium.org>
4407 S:      Maintained
4408 F:      drivers/power/supply/cros_usbpd-charger.c
4409 N:      cros_ec
4410 N:      cros-ec
4411
4412 CHRONTEL CH7322 CEC DRIVER
4413 M:      Jeff Chase <jnchase@google.com>
4414 L:      linux-media@vger.kernel.org
4415 S:      Maintained
4416 T:      git git://linuxtv.org/media_tree.git
4417 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4418 F:      drivers/media/cec/i2c/ch7322.c
4419
4420 CIRRUS LOGIC AUDIO CODEC DRIVERS
4421 M:      James Schulman <james.schulman@cirrus.com>
4422 M:      David Rhodes <david.rhodes@cirrus.com>
4423 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4424 L:      patches@opensource.cirrus.com
4425 S:      Maintained
4426 F:      sound/soc/codecs/cs*
4427
4428 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4429 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4430 L:      netdev@vger.kernel.org
4431 S:      Maintained
4432 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4433
4434 CIRRUS LOGIC LOCHNAGAR DRIVER
4435 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4436 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4437 L:      patches@opensource.cirrus.com
4438 S:      Supported
4439 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4440 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4441 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4442 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4443 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4444 F:      Documentation/hwmon/lochnagar.rst
4445 F:      drivers/clk/clk-lochnagar.c
4446 F:      drivers/hwmon/lochnagar-hwmon.c
4447 F:      drivers/mfd/lochnagar-i2c.c
4448 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4449 F:      drivers/regulator/lochnagar-regulator.c
4450 F:      include/dt-bindings/clk/lochnagar.h
4451 F:      include/dt-bindings/pinctrl/lochnagar.h
4452 F:      include/linux/mfd/lochnagar*
4453 F:      sound/soc/codecs/lochnagar-sc.c
4454
4455 CIRRUS LOGIC MADERA CODEC DRIVERS
4456 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4457 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4458 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4459 L:      patches@opensource.cirrus.com
4460 S:      Supported
4461 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4462 T:      git https://github.com/CirrusLogic/linux-drivers.git
4463 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4464 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4465 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4466 F:      drivers/gpio/gpio-madera*
4467 F:      drivers/irqchip/irq-madera*
4468 F:      drivers/mfd/cs47l*
4469 F:      drivers/mfd/madera*
4470 F:      drivers/pinctrl/cirrus/*
4471 F:      include/dt-bindings/sound/madera*
4472 F:      include/linux/irqchip/irq-madera*
4473 F:      include/linux/mfd/madera/*
4474 F:      include/sound/madera*
4475 F:      sound/soc/codecs/cs47l*
4476 F:      sound/soc/codecs/madera*
4477
4478 CISCO FCOE HBA DRIVER
4479 M:      Satish Kharat <satishkh@cisco.com>
4480 M:      Sesidhar Baddela <sebaddel@cisco.com>
4481 M:      Karan Tilak Kumar <kartilak@cisco.com>
4482 L:      linux-scsi@vger.kernel.org
4483 S:      Supported
4484 F:      drivers/scsi/fnic/
4485
4486 CISCO SCSI HBA DRIVER
4487 M:      Karan Tilak Kumar <kartilak@cisco.com>
4488 M:      Sesidhar Baddela <sebaddel@cisco.com>
4489 L:      linux-scsi@vger.kernel.org
4490 S:      Supported
4491 F:      drivers/scsi/snic/
4492
4493 CISCO VIC ETHERNET NIC DRIVER
4494 M:      Christian Benvenuti <benve@cisco.com>
4495 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4496 S:      Supported
4497 F:      drivers/net/ethernet/cisco/enic/
4498
4499 CISCO VIC LOW LATENCY NIC DRIVER
4500 M:      Christian Benvenuti <benve@cisco.com>
4501 M:      Nelson Escobar <neescoba@cisco.com>
4502 S:      Supported
4503 F:      drivers/infiniband/hw/usnic/
4504
4505 CLANG-FORMAT FILE
4506 M:      Miguel Ojeda <ojeda@kernel.org>
4507 S:      Maintained
4508 F:      .clang-format
4509
4510 CLANG/LLVM BUILD SUPPORT
4511 M:      Nathan Chancellor <nathan@kernel.org>
4512 M:      Nick Desaulniers <ndesaulniers@google.com>
4513 L:      clang-built-linux@googlegroups.com
4514 S:      Supported
4515 W:      https://clangbuiltlinux.github.io/
4516 B:      https://github.com/ClangBuiltLinux/linux/issues
4517 C:      irc://irc.libera.chat/clangbuiltlinux
4518 F:      Documentation/kbuild/llvm.rst
4519 F:      include/linux/compiler-clang.h
4520 F:      scripts/clang-tools/
4521 K:      \b(?i:clang|llvm)\b
4522
4523 CLANG CONTROL FLOW INTEGRITY SUPPORT
4524 M:      Sami Tolvanen <samitolvanen@google.com>
4525 M:      Kees Cook <keescook@chromium.org>
4526 R:      Nathan Chancellor <nathan@kernel.org>
4527 R:      Nick Desaulniers <ndesaulniers@google.com>
4528 L:      clang-built-linux@googlegroups.com
4529 S:      Supported
4530 B:      https://github.com/ClangBuiltLinux/linux/issues
4531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4532 F:      include/linux/cfi.h
4533 F:      kernel/cfi.c
4534
4535 CLEANCACHE API
4536 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4537 L:      linux-kernel@vger.kernel.org
4538 S:      Maintained
4539 F:      include/linux/cleancache.h
4540 F:      mm/cleancache.c
4541
4542 CLK API
4543 M:      Russell King <linux@armlinux.org.uk>
4544 L:      linux-clk@vger.kernel.org
4545 S:      Maintained
4546 F:      include/linux/clk.h
4547
4548 CLOCKSOURCE, CLOCKEVENT DRIVERS
4549 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4550 M:      Thomas Gleixner <tglx@linutronix.de>
4551 L:      linux-kernel@vger.kernel.org
4552 S:      Supported
4553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4554 F:      Documentation/devicetree/bindings/timer/
4555 F:      drivers/clocksource/
4556
4557 CMPC ACPI DRIVER
4558 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4559 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4560 L:      platform-driver-x86@vger.kernel.org
4561 S:      Supported
4562 F:      drivers/platform/x86/classmate-laptop.c
4563
4564 COBALT MEDIA DRIVER
4565 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4566 L:      linux-media@vger.kernel.org
4567 S:      Supported
4568 W:      https://linuxtv.org
4569 T:      git git://linuxtv.org/media_tree.git
4570 F:      drivers/media/pci/cobalt/
4571
4572 COCCINELLE/Semantic Patches (SmPL)
4573 M:      Julia Lawall <Julia.Lawall@inria.fr>
4574 M:      Gilles Muller <Gilles.Muller@inria.fr>
4575 M:      Nicolas Palix <nicolas.palix@imag.fr>
4576 M:      Michal Marek <michal.lkml@markovi.net>
4577 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4578 S:      Supported
4579 W:      http://coccinelle.lip6.fr/
4580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4581 F:      Documentation/dev-tools/coccinelle.rst
4582 F:      scripts/coccicheck
4583 F:      scripts/coccinelle/
4584
4585 CODA FILE SYSTEM
4586 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4587 M:      coda@cs.cmu.edu
4588 L:      codalist@coda.cs.cmu.edu
4589 S:      Maintained
4590 W:      http://www.coda.cs.cmu.edu/
4591 F:      Documentation/filesystems/coda.rst
4592 F:      fs/coda/
4593 F:      include/linux/coda*.h
4594 F:      include/uapi/linux/coda*.h
4595
4596 CODA V4L2 MEM2MEM DRIVER
4597 M:      Philipp Zabel <p.zabel@pengutronix.de>
4598 L:      linux-media@vger.kernel.org
4599 S:      Maintained
4600 F:      Documentation/devicetree/bindings/media/coda.yaml
4601 F:      drivers/media/platform/coda/
4602
4603 CODE OF CONDUCT
4604 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4605 S:      Supported
4606 F:      Documentation/process/code-of-conduct-interpretation.rst
4607 F:      Documentation/process/code-of-conduct.rst
4608
4609 COMEDI DRIVERS
4610 M:      Ian Abbott <abbotti@mev.co.uk>
4611 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4612 S:      Odd Fixes
4613 F:      drivers/comedi/
4614
4615 COMMON CLK FRAMEWORK
4616 M:      Michael Turquette <mturquette@baylibre.com>
4617 M:      Stephen Boyd <sboyd@kernel.org>
4618 L:      linux-clk@vger.kernel.org
4619 S:      Maintained
4620 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4622 F:      Documentation/devicetree/bindings/clock/
4623 F:      drivers/clk/
4624 F:      include/linux/clk-pr*
4625 F:      include/linux/clk/
4626 F:      include/linux/of_clk.h
4627 X:      drivers/clk/clkdev.c
4628
4629 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4630 M:      Steve French <sfrench@samba.org>
4631 L:      linux-cifs@vger.kernel.org
4632 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4633 S:      Supported
4634 W:      http://linux-cifs.samba.org/
4635 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4636 F:      Documentation/admin-guide/cifs/
4637 F:      fs/cifs/
4638 F:      fs/cifs_common/
4639
4640 COMPACTPCI HOTPLUG CORE
4641 M:      Scott Murray <scott@spiteful.org>
4642 L:      linux-pci@vger.kernel.org
4643 S:      Maintained
4644 F:      drivers/pci/hotplug/cpci_hotplug*
4645
4646 COMPACTPCI HOTPLUG GENERIC DRIVER
4647 M:      Scott Murray <scott@spiteful.org>
4648 L:      linux-pci@vger.kernel.org
4649 S:      Maintained
4650 F:      drivers/pci/hotplug/cpcihp_generic.c
4651
4652 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4653 M:      Scott Murray <scott@spiteful.org>
4654 L:      linux-pci@vger.kernel.org
4655 S:      Maintained
4656 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4657
4658 COMPAL LAPTOP SUPPORT
4659 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4660 L:      platform-driver-x86@vger.kernel.org
4661 S:      Maintained
4662 F:      drivers/platform/x86/compal-laptop.c
4663
4664 COMPILER ATTRIBUTES
4665 M:      Miguel Ojeda <ojeda@kernel.org>
4666 S:      Maintained
4667 F:      include/linux/compiler_attributes.h
4668
4669 COMPUTE EXPRESS LINK (CXL)
4670 M:      Alison Schofield <alison.schofield@intel.com>
4671 M:      Vishal Verma <vishal.l.verma@intel.com>
4672 M:      Ira Weiny <ira.weiny@intel.com>
4673 M:      Ben Widawsky <ben.widawsky@intel.com>
4674 M:      Dan Williams <dan.j.williams@intel.com>
4675 L:      linux-cxl@vger.kernel.org
4676 S:      Maintained
4677 F:      drivers/cxl/
4678 F:      include/uapi/linux/cxl_mem.h
4679
4680 CONEXANT ACCESSRUNNER USB DRIVER
4681 L:      accessrunner-general@lists.sourceforge.net
4682 S:      Orphan
4683 W:      http://accessrunner.sourceforge.net/
4684 F:      drivers/usb/atm/cxacru.c
4685
4686 CONFIGFS
4687 M:      Joel Becker <jlbec@evilplan.org>
4688 M:      Christoph Hellwig <hch@lst.de>
4689 S:      Supported
4690 T:      git git://git.infradead.org/users/hch/configfs.git
4691 F:      fs/configfs/
4692 F:      include/linux/configfs.h
4693 F:      samples/configfs/
4694
4695 CONSOLE SUBSYSTEM
4696 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4697 S:      Supported
4698 F:      drivers/video/console/
4699 F:      include/linux/console*
4700
4701 CONTEXT TRACKING
4702 M:      Frederic Weisbecker <frederic@kernel.org>
4703 S:      Maintained
4704 F:      kernel/context_tracking.c
4705 F:      include/linux/context_tracking*
4706
4707 CONTROL GROUP (CGROUP)
4708 M:      Tejun Heo <tj@kernel.org>
4709 M:      Zefan Li <lizefan.x@bytedance.com>
4710 M:      Johannes Weiner <hannes@cmpxchg.org>
4711 L:      cgroups@vger.kernel.org
4712 S:      Maintained
4713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4714 F:      Documentation/admin-guide/cgroup-v1/
4715 F:      Documentation/admin-guide/cgroup-v2.rst
4716 F:      include/linux/cgroup*
4717 F:      kernel/cgroup/
4718
4719 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4720 M:      Tejun Heo <tj@kernel.org>
4721 M:      Jens Axboe <axboe@kernel.dk>
4722 L:      cgroups@vger.kernel.org
4723 L:      linux-block@vger.kernel.org
4724 T:      git git://git.kernel.dk/linux-block
4725 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4726 F:      block/bfq-cgroup.c
4727 F:      block/blk-cgroup.c
4728 F:      block/blk-iolatency.c
4729 F:      block/blk-throttle.c
4730 F:      include/linux/blk-cgroup.h
4731
4732 CONTROL GROUP - CPUSET
4733 M:      Zefan Li <lizefan.x@bytedance.com>
4734 L:      cgroups@vger.kernel.org
4735 S:      Maintained
4736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4737 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4738 F:      include/linux/cpuset.h
4739 F:      kernel/cgroup/cpuset.c
4740
4741 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4742 M:      Johannes Weiner <hannes@cmpxchg.org>
4743 M:      Michal Hocko <mhocko@kernel.org>
4744 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4745 L:      cgroups@vger.kernel.org
4746 L:      linux-mm@kvack.org
4747 S:      Maintained
4748 F:      mm/memcontrol.c
4749 F:      mm/swap_cgroup.c
4750
4751 CORETEMP HARDWARE MONITORING DRIVER
4752 M:      Fenghua Yu <fenghua.yu@intel.com>
4753 L:      linux-hwmon@vger.kernel.org
4754 S:      Maintained
4755 F:      Documentation/hwmon/coretemp.rst
4756 F:      drivers/hwmon/coretemp.c
4757
4758 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4759 M:      Marius Zachmann <mail@mariuszachmann.de>
4760 L:      linux-hwmon@vger.kernel.org
4761 S:      Maintained
4762 F:      drivers/hwmon/corsair-cpro.c
4763
4764 CORSAIR-PSU HARDWARE MONITOR DRIVER
4765 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4766 L:      linux-hwmon@vger.kernel.org
4767 S:      Maintained
4768 F:      Documentation/hwmon/corsair-psu.rst
4769 F:      drivers/hwmon/corsair-psu.c
4770
4771 COSA/SRP SYNC SERIAL DRIVER
4772 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4773 S:      Maintained
4774 W:      http://www.fi.muni.cz/~kas/cosa/
4775 F:      drivers/net/wan/cosa*
4776
4777 COUNTER SUBSYSTEM
4778 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4779 L:      linux-iio@vger.kernel.org
4780 S:      Maintained
4781 F:      Documentation/ABI/testing/sysfs-bus-counter
4782 F:      Documentation/driver-api/generic-counter.rst
4783 F:      drivers/counter/
4784 F:      include/linux/counter.h
4785 F:      include/linux/counter_enum.h
4786
4787 CP2615 I2C DRIVER
4788 M:      Bence Csókás <bence98@sch.bme.hu>
4789 S:      Maintained
4790 F:      drivers/i2c/busses/i2c-cp2615.c
4791
4792 CPMAC ETHERNET DRIVER
4793 M:      Florian Fainelli <f.fainelli@gmail.com>
4794 L:      netdev@vger.kernel.org
4795 S:      Maintained
4796 F:      drivers/net/ethernet/ti/cpmac.c
4797
4798 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4799 M:      Viresh Kumar <viresh.kumar@linaro.org>
4800 M:      Sudeep Holla <sudeep.holla@arm.com>
4801 L:      linux-pm@vger.kernel.org
4802 S:      Maintained
4803 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4804 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4805
4806 CPU FREQUENCY SCALING FRAMEWORK
4807 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4808 M:      Viresh Kumar <viresh.kumar@linaro.org>
4809 L:      linux-pm@vger.kernel.org
4810 S:      Maintained
4811 B:      https://bugzilla.kernel.org
4812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4814 F:      Documentation/admin-guide/pm/cpufreq.rst
4815 F:      Documentation/admin-guide/pm/intel_pstate.rst
4816 F:      Documentation/cpu-freq/
4817 F:      Documentation/devicetree/bindings/cpufreq/
4818 F:      drivers/cpufreq/
4819 F:      include/linux/cpufreq.h
4820 F:      include/linux/sched/cpufreq.h
4821 F:      kernel/sched/cpufreq*.c
4822 F:      tools/testing/selftests/cpufreq/
4823
4824 CPU IDLE TIME MANAGEMENT FRAMEWORK
4825 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4826 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4827 L:      linux-pm@vger.kernel.org
4828 S:      Maintained
4829 B:      https://bugzilla.kernel.org
4830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4831 F:      Documentation/admin-guide/pm/cpuidle.rst
4832 F:      Documentation/driver-api/pm/cpuidle.rst
4833 F:      drivers/cpuidle/
4834 F:      include/linux/cpuidle.h
4835
4836 CPU POWER MONITORING SUBSYSTEM
4837 M:      Thomas Renninger <trenn@suse.com>
4838 M:      Shuah Khan <shuah@kernel.org>
4839 M:      Shuah Khan <skhan@linuxfoundation.org>
4840 L:      linux-pm@vger.kernel.org
4841 S:      Maintained
4842 F:      tools/power/cpupower/
4843
4844 CPUID/MSR DRIVER
4845 M:      "H. Peter Anvin" <hpa@zytor.com>
4846 S:      Maintained
4847 F:      arch/x86/kernel/cpuid.c
4848 F:      arch/x86/kernel/msr.c
4849
4850 CPUIDLE DRIVER - ARM BIG LITTLE
4851 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4852 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4853 L:      linux-pm@vger.kernel.org
4854 L:      linux-arm-kernel@lists.infradead.org
4855 S:      Maintained
4856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4857 F:      drivers/cpuidle/cpuidle-big_little.c
4858
4859 CPUIDLE DRIVER - ARM EXYNOS
4860 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4861 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4862 M:      Kukjin Kim <kgene@kernel.org>
4863 L:      linux-pm@vger.kernel.org
4864 L:      linux-samsung-soc@vger.kernel.org
4865 S:      Supported
4866 F:      arch/arm/mach-exynos/pm.c
4867 F:      drivers/cpuidle/cpuidle-exynos.c
4868 F:      include/linux/platform_data/cpuidle-exynos.h
4869
4870 CPUIDLE DRIVER - ARM PSCI
4871 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4872 M:      Sudeep Holla <sudeep.holla@arm.com>
4873 L:      linux-pm@vger.kernel.org
4874 L:      linux-arm-kernel@lists.infradead.org
4875 S:      Supported
4876 F:      drivers/cpuidle/cpuidle-psci.c
4877
4878 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4879 M:      Ulf Hansson <ulf.hansson@linaro.org>
4880 L:      linux-pm@vger.kernel.org
4881 L:      linux-arm-kernel@lists.infradead.org
4882 S:      Supported
4883 F:      drivers/cpuidle/cpuidle-psci.h
4884 F:      drivers/cpuidle/cpuidle-psci-domain.c
4885
4886 CRAMFS FILESYSTEM
4887 M:      Nicolas Pitre <nico@fluxnic.net>
4888 S:      Maintained
4889 F:      Documentation/filesystems/cramfs.rst
4890 F:      fs/cramfs/
4891
4892 CREATIVE SB0540
4893 M:      Bastien Nocera <hadess@hadess.net>
4894 L:      linux-input@vger.kernel.org
4895 S:      Maintained
4896 F:      drivers/hid/hid-creative-sb0540.c
4897
4898 CRYPTO API
4899 M:      Herbert Xu <herbert@gondor.apana.org.au>
4900 M:      "David S. Miller" <davem@davemloft.net>
4901 L:      linux-crypto@vger.kernel.org
4902 S:      Maintained
4903 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4905 F:      Documentation/crypto/
4906 F:      Documentation/devicetree/bindings/crypto/
4907 F:      arch/*/crypto/
4908 F:      crypto/
4909 F:      drivers/crypto/
4910 F:      include/crypto/
4911 F:      include/linux/crypto*
4912 F:      lib/crypto/
4913
4914 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4915 M:      Neil Horman <nhorman@tuxdriver.com>
4916 L:      linux-crypto@vger.kernel.org
4917 S:      Maintained
4918 F:      crypto/ansi_cprng.c
4919 F:      crypto/rng.c
4920
4921 CS3308 MEDIA DRIVER
4922 M:      Hans Verkuil <hverkuil@xs4all.nl>
4923 L:      linux-media@vger.kernel.org
4924 S:      Odd Fixes
4925 W:      http://linuxtv.org
4926 T:      git git://linuxtv.org/media_tree.git
4927 F:      drivers/media/i2c/cs3308.c
4928
4929 CS5535 Audio ALSA driver
4930 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4931 S:      Maintained
4932 F:      sound/pci/cs5535audio/
4933
4934 CSI DRIVERS FOR ALLWINNER V3s
4935 M:      Yong Deng <yong.deng@magewell.com>
4936 L:      linux-media@vger.kernel.org
4937 S:      Maintained
4938 T:      git git://linuxtv.org/media_tree.git
4939 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4940 F:      drivers/media/platform/sunxi/sun6i-csi/
4941
4942 CW1200 WLAN driver
4943 M:      Solomon Peachy <pizza@shaftnet.org>
4944 S:      Maintained
4945 F:      drivers/net/wireless/st/cw1200/
4946
4947 CX18 VIDEO4LINUX DRIVER
4948 M:      Andy Walls <awalls@md.metrocast.net>
4949 L:      linux-media@vger.kernel.org
4950 S:      Maintained
4951 W:      https://linuxtv.org
4952 T:      git git://linuxtv.org/media_tree.git
4953 F:      drivers/media/pci/cx18/
4954 F:      include/uapi/linux/ivtv*
4955
4956 CX2341X MPEG ENCODER HELPER MODULE
4957 M:      Hans Verkuil <hverkuil@xs4all.nl>
4958 L:      linux-media@vger.kernel.org
4959 S:      Maintained
4960 W:      https://linuxtv.org
4961 T:      git git://linuxtv.org/media_tree.git
4962 F:      drivers/media/common/cx2341x*
4963 F:      include/media/drv-intf/cx2341x.h
4964
4965 CX24120 MEDIA DRIVER
4966 M:      Jemma Denson <jdenson@gmail.com>
4967 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4968 L:      linux-media@vger.kernel.org
4969 S:      Maintained
4970 W:      https://linuxtv.org
4971 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4972 F:      drivers/media/dvb-frontends/cx24120*
4973
4974 CX88 VIDEO4LINUX DRIVER
4975 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4976 L:      linux-media@vger.kernel.org
4977 S:      Odd fixes
4978 W:      https://linuxtv.org
4979 T:      git git://linuxtv.org/media_tree.git
4980 F:      Documentation/driver-api/media/drivers/cx88*
4981 F:      drivers/media/pci/cx88/
4982
4983 CXD2820R MEDIA DRIVER
4984 M:      Antti Palosaari <crope@iki.fi>
4985 L:      linux-media@vger.kernel.org
4986 S:      Maintained
4987 W:      https://linuxtv.org
4988 W:      http://palosaari.fi/linux/
4989 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4990 T:      git git://linuxtv.org/anttip/media_tree.git
4991 F:      drivers/media/dvb-frontends/cxd2820r*
4992
4993 CXGB3 ETHERNET DRIVER (CXGB3)
4994 M:      Raju Rangoju <rajur@chelsio.com>
4995 L:      netdev@vger.kernel.org
4996 S:      Supported
4997 W:      http://www.chelsio.com
4998 F:      drivers/net/ethernet/chelsio/cxgb3/
4999
5000 CXGB3 ISCSI DRIVER (CXGB3I)
5001 M:      Karen Xie <kxie@chelsio.com>
5002 L:      linux-scsi@vger.kernel.org
5003 S:      Supported
5004 W:      http://www.chelsio.com
5005 F:      drivers/scsi/cxgbi/cxgb3i
5006
5007 CXGB4 CRYPTO DRIVER (chcr)
5008 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5009 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5010 M:      Rohit Maheshwari <rohitm@chelsio.com>
5011 L:      linux-crypto@vger.kernel.org
5012 S:      Supported
5013 W:      http://www.chelsio.com
5014 F:      drivers/crypto/chelsio
5015
5016 CXGB4 INLINE CRYPTO DRIVER
5017 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5018 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5019 M:      Rohit Maheshwari <rohitm@chelsio.com>
5020 L:      netdev@vger.kernel.org
5021 S:      Supported
5022 W:      http://www.chelsio.com
5023 F:      drivers/net/ethernet/chelsio/inline_crypto/
5024
5025 CXGB4 ETHERNET DRIVER (CXGB4)
5026 M:      Raju Rangoju <rajur@chelsio.com>
5027 L:      netdev@vger.kernel.org
5028 S:      Supported
5029 W:      http://www.chelsio.com
5030 F:      drivers/net/ethernet/chelsio/cxgb4/
5031
5032 CXGB4 ISCSI DRIVER (CXGB4I)
5033 M:      Karen Xie <kxie@chelsio.com>
5034 L:      linux-scsi@vger.kernel.org
5035 S:      Supported
5036 W:      http://www.chelsio.com
5037 F:      drivers/scsi/cxgbi/cxgb4i
5038
5039 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5040 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5041 L:      linux-rdma@vger.kernel.org
5042 S:      Supported
5043 W:      http://www.openfabrics.org
5044 F:      drivers/infiniband/hw/cxgb4/
5045 F:      include/uapi/rdma/cxgb4-abi.h
5046
5047 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5048 M:      Raju Rangoju <rajur@chelsio.com>
5049 L:      netdev@vger.kernel.org
5050 S:      Supported
5051 W:      http://www.chelsio.com
5052 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5053
5054 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5055 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5056 M:      Andrew Donnellan <ajd@linux.ibm.com>
5057 L:      linuxppc-dev@lists.ozlabs.org
5058 S:      Supported
5059 F:      Documentation/ABI/testing/sysfs-class-cxl
5060 F:      Documentation/powerpc/cxl.rst
5061 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5062 F:      drivers/misc/cxl/
5063 F:      include/misc/cxl*
5064 F:      include/uapi/misc/cxl.h
5065
5066 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5067 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5068 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5069 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5070 L:      linux-scsi@vger.kernel.org
5071 S:      Supported
5072 F:      Documentation/powerpc/cxlflash.rst
5073 F:      drivers/scsi/cxlflash/
5074 F:      include/uapi/scsi/cxlflash_ioctl.h
5075
5076 CYBERPRO FB DRIVER
5077 M:      Russell King <linux@armlinux.org.uk>
5078 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5079 S:      Maintained
5080 W:      http://www.armlinux.org.uk/
5081 F:      drivers/video/fbdev/cyber2000fb.*
5082
5083 CYCLADES PC300 DRIVER
5084 S:      Orphan
5085 F:      drivers/net/wan/pc300*
5086
5087 CYPRESS_FIRMWARE MEDIA DRIVER
5088 M:      Antti Palosaari <crope@iki.fi>
5089 L:      linux-media@vger.kernel.org
5090 S:      Maintained
5091 W:      https://linuxtv.org
5092 W:      http://palosaari.fi/linux/
5093 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5094 T:      git git://linuxtv.org/anttip/media_tree.git
5095 F:      drivers/media/common/cypress_firmware*
5096
5097 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5098 M:      Linus Walleij <linus.walleij@linaro.org>
5099 L:      linux-input@vger.kernel.org
5100 S:      Maintained
5101 F:      drivers/input/touchscreen/cy8ctma140.c
5102
5103 CYTTSP TOUCHSCREEN DRIVER
5104 M:      Linus Walleij <linus.walleij@linaro.org>
5105 L:      linux-input@vger.kernel.org
5106 S:      Maintained
5107 F:      drivers/input/touchscreen/cyttsp*
5108
5109 D-LINK DIR-685 TOUCHKEYS DRIVER
5110 M:      Linus Walleij <linus.walleij@linaro.org>
5111 L:      linux-input@vger.kernel.org
5112 S:      Supported
5113 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5114
5115 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5116 M:      Joshua Kinard <kumba@gentoo.org>
5117 S:      Maintained
5118 F:      drivers/rtc/rtc-ds1685.c
5119 F:      include/linux/rtc/ds1685.h
5120
5121 DAMA SLAVE for AX.25
5122 M:      Joerg Reuter <jreuter@yaina.de>
5123 L:      linux-hams@vger.kernel.org
5124 S:      Maintained
5125 W:      http://yaina.de/jreuter/
5126 W:      http://www.qsl.net/dl1bke/
5127 F:      net/ax25/af_ax25.c
5128 F:      net/ax25/ax25_dev.c
5129 F:      net/ax25/ax25_ds_*
5130 F:      net/ax25/ax25_in.c
5131 F:      net/ax25/ax25_out.c
5132 F:      net/ax25/ax25_timer.c
5133 F:      net/ax25/sysctl_net_ax25.c
5134
5135 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5136 L:      netdev@vger.kernel.org
5137 S:      Orphan
5138 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5139 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5140
5141 DC390/AM53C974 SCSI driver
5142 M:      Hannes Reinecke <hare@suse.com>
5143 L:      linux-scsi@vger.kernel.org
5144 S:      Maintained
5145 F:      drivers/scsi/am53c974.c
5146
5147 DC395x SCSI driver
5148 M:      Oliver Neukum <oliver@neukum.org>
5149 M:      Ali Akcaagac <aliakc@web.de>
5150 M:      Jamie Lenehan <lenehan@twibble.org>
5151 L:      dc395x@twibble.org
5152 S:      Maintained
5153 W:      http://twibble.org/dist/dc395x/
5154 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5155 F:      Documentation/scsi/dc395x.rst
5156 F:      drivers/scsi/dc395x.*
5157
5158 DCCP PROTOCOL
5159 L:      dccp@vger.kernel.org
5160 S:      Orphan
5161 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5162 F:      include/linux/dccp.h
5163 F:      include/linux/tfrc.h
5164 F:      include/uapi/linux/dccp.h
5165 F:      net/dccp/
5166
5167 DECnet NETWORK LAYER
5168 L:      linux-decnet-user@lists.sourceforge.net
5169 S:      Orphan
5170 W:      http://linux-decnet.sourceforge.net
5171 F:      Documentation/networking/decnet.rst
5172 F:      net/decnet/
5173
5174 DECSTATION PLATFORM SUPPORT
5175 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5176 L:      linux-mips@vger.kernel.org
5177 S:      Maintained
5178 W:      http://www.linux-mips.org/wiki/DECstation
5179 F:      arch/mips/dec/
5180 F:      arch/mips/include/asm/dec/
5181 F:      arch/mips/include/asm/mach-dec/
5182
5183 DEFXX FDDI NETWORK DRIVER
5184 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5185 S:      Maintained
5186 F:      drivers/net/fddi/defxx.*
5187
5188 DEFZA FDDI NETWORK DRIVER
5189 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5190 S:      Maintained
5191 F:      drivers/net/fddi/defza.*
5192
5193 DEINTERLACE DRIVERS FOR ALLWINNER H3
5194 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5195 L:      linux-media@vger.kernel.org
5196 S:      Maintained
5197 T:      git git://linuxtv.org/media_tree.git
5198 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5199 F:      drivers/media/platform/sunxi/sun8i-di/
5200
5201 DELL LAPTOP DRIVER
5202 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5203 M:      Pali Rohár <pali@kernel.org>
5204 L:      platform-driver-x86@vger.kernel.org
5205 S:      Maintained
5206 F:      drivers/platform/x86/dell/dell-laptop.c
5207
5208 DELL LAPTOP FREEFALL DRIVER
5209 M:      Pali Rohár <pali@kernel.org>
5210 S:      Maintained
5211 F:      drivers/platform/x86/dell/dell-smo8800.c
5212
5213 DELL LAPTOP RBTN DRIVER
5214 M:      Pali Rohár <pali@kernel.org>
5215 S:      Maintained
5216 F:      drivers/platform/x86/dell/dell-rbtn.*
5217
5218 DELL LAPTOP SMM DRIVER
5219 M:      Pali Rohár <pali@kernel.org>
5220 S:      Maintained
5221 F:      drivers/hwmon/dell-smm-hwmon.c
5222 F:      include/uapi/linux/i8k.h
5223
5224 DELL REMOTE BIOS UPDATE DRIVER
5225 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5226 L:      platform-driver-x86@vger.kernel.org
5227 S:      Maintained
5228 F:      drivers/platform/x86/dell/dell_rbu.c
5229
5230 DELL SMBIOS DRIVER
5231 M:      Pali Rohár <pali@kernel.org>
5232 L:      Dell.Client.Kernel@dell.com
5233 L:      platform-driver-x86@vger.kernel.org
5234 S:      Maintained
5235 F:      drivers/platform/x86/dell/dell-smbios.*
5236
5237 DELL SMBIOS SMM DRIVER
5238 L:      Dell.Client.Kernel@dell.com
5239 L:      platform-driver-x86@vger.kernel.org
5240 S:      Maintained
5241 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5242
5243 DELL SMBIOS WMI DRIVER
5244 L:      Dell.Client.Kernel@dell.com
5245 L:      platform-driver-x86@vger.kernel.org
5246 S:      Maintained
5247 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5248 F:      tools/wmi/dell-smbios-example.c
5249
5250 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5251 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5252 L:      platform-driver-x86@vger.kernel.org
5253 S:      Maintained
5254 F:      Documentation/driver-api/dcdbas.rst
5255 F:      drivers/platform/x86/dell/dcdbas.*
5256
5257 DELL WMI DESCRIPTOR DRIVER
5258 L:      Dell.Client.Kernel@dell.com
5259 S:      Maintained
5260 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5261
5262 DELL WMI SYSMAN DRIVER
5263 M:      Divya Bharathi <divya.bharathi@dell.com>
5264 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5265 L:      Dell.Client.Kernel@dell.com
5266 L:      platform-driver-x86@vger.kernel.org
5267 S:      Maintained
5268 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5269 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5270
5271 DELL WMI NOTIFICATIONS DRIVER
5272 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5273 M:      Pali Rohár <pali@kernel.org>
5274 S:      Maintained
5275 F:      drivers/platform/x86/dell/dell-wmi-base.c
5276
5277 DELL WMI HARDWARE PRIVACY SUPPORT
5278 M:      Perry Yuan <Perry.Yuan@dell.com>
5279 L:      Dell.Client.Kernel@dell.com
5280 L:      platform-driver-x86@vger.kernel.org
5281 S:      Maintained
5282 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5283
5284 DELTA ST MEDIA DRIVER
5285 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5286 L:      linux-media@vger.kernel.org
5287 S:      Supported
5288 W:      https://linuxtv.org
5289 T:      git git://linuxtv.org/media_tree.git
5290 F:      drivers/media/platform/sti/delta
5291
5292 DELTA DPS920AB PSU DRIVER
5293 M:      Robert Marko <robert.marko@sartura.hr>
5294 L:      linux-hwmon@vger.kernel.org
5295 S:      Maintained
5296 F:      Documentation/hwmon/dps920ab.rst
5297 F:      drivers/hwmon/pmbus/dps920ab.c
5298
5299 DENALI NAND DRIVER
5300 L:      linux-mtd@lists.infradead.org
5301 S:      Orphan
5302 F:      drivers/mtd/nand/raw/denali*
5303
5304 DESIGNWARE EDMA CORE IP DRIVER
5305 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5306 L:      dmaengine@vger.kernel.org
5307 S:      Maintained
5308 F:      drivers/dma/dw-edma/
5309 F:      include/linux/dma/edma.h
5310
5311 DESIGNWARE XDATA IP DRIVER
5312 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5313 L:      linux-pci@vger.kernel.org
5314 S:      Maintained
5315 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5316 F:      drivers/misc/dw-xdata-pcie.c
5317
5318 DESIGNWARE USB2 DRD IP DRIVER
5319 M:      Minas Harutyunyan <hminas@synopsys.com>
5320 L:      linux-usb@vger.kernel.org
5321 S:      Maintained
5322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5323 F:      drivers/usb/dwc2/
5324
5325 DESIGNWARE USB3 DRD IP DRIVER
5326 M:      Felipe Balbi <balbi@kernel.org>
5327 L:      linux-usb@vger.kernel.org
5328 S:      Maintained
5329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5330 F:      drivers/usb/dwc3/
5331
5332 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5333 M:      Andreas Klinger <ak@it-klinger.de>
5334 L:      linux-iio@vger.kernel.org
5335 S:      Maintained
5336 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5337 F:      drivers/iio/proximity/srf*.c
5338
5339 DEVICE COREDUMP (DEV_COREDUMP)
5340 M:      Johannes Berg <johannes@sipsolutions.net>
5341 L:      linux-kernel@vger.kernel.org
5342 S:      Maintained
5343 F:      drivers/base/devcoredump.c
5344 F:      include/linux/devcoredump.h
5345
5346 DEVICE DEPENDENCY HELPER SCRIPT
5347 M:      Saravana Kannan <saravanak@google.com>
5348 L:      linux-kernel@vger.kernel.org
5349 S:      Maintained
5350 F:      scripts/dev-needs.sh
5351
5352 DEVICE DIRECT ACCESS (DAX)
5353 M:      Dan Williams <dan.j.williams@intel.com>
5354 M:      Vishal Verma <vishal.l.verma@intel.com>
5355 M:      Dave Jiang <dave.jiang@intel.com>
5356 L:      nvdimm@lists.linux.dev
5357 S:      Supported
5358 F:      drivers/dax/
5359
5360 DEVICE FREQUENCY (DEVFREQ)
5361 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5362 M:      Kyungmin Park <kyungmin.park@samsung.com>
5363 M:      Chanwoo Choi <cw00.choi@samsung.com>
5364 L:      linux-pm@vger.kernel.org
5365 S:      Maintained
5366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5367 F:      Documentation/devicetree/bindings/devfreq/
5368 F:      drivers/devfreq/
5369 F:      include/linux/devfreq.h
5370 F:      include/trace/events/devfreq.h
5371
5372 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5373 M:      Chanwoo Choi <cw00.choi@samsung.com>
5374 L:      linux-pm@vger.kernel.org
5375 S:      Supported
5376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5377 F:      Documentation/devicetree/bindings/devfreq/event/
5378 F:      drivers/devfreq/devfreq-event.c
5379 F:      drivers/devfreq/event/
5380 F:      include/dt-bindings/pmu/exynos_ppmu.h
5381 F:      include/linux/devfreq-event.h
5382
5383 DEVICE NUMBER REGISTRY
5384 M:      Torben Mathiasen <device@lanana.org>
5385 S:      Maintained
5386 W:      http://lanana.org/docs/device-list/index.html
5387
5388 DEVICE RESOURCE MANAGEMENT HELPERS
5389 M:      Hans de Goede <hdegoede@redhat.com>
5390 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5391 S:      Maintained
5392 F:      include/linux/devm-helpers.h
5393
5394 DEVICE-MAPPER  (LVM)
5395 M:      Alasdair Kergon <agk@redhat.com>
5396 M:      Mike Snitzer <snitzer@redhat.com>
5397 M:      dm-devel@redhat.com
5398 L:      dm-devel@redhat.com
5399 S:      Maintained
5400 W:      http://sources.redhat.com/dm
5401 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5403 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5404 F:      Documentation/admin-guide/device-mapper/
5405 F:      drivers/md/Kconfig
5406 F:      drivers/md/Makefile
5407 F:      drivers/md/dm*
5408 F:      drivers/md/persistent-data/
5409 F:      include/linux/device-mapper.h
5410 F:      include/linux/dm-*.h
5411 F:      include/uapi/linux/dm-*.h
5412
5413 DEVLINK
5414 M:      Jiri Pirko <jiri@nvidia.com>
5415 L:      netdev@vger.kernel.org
5416 S:      Supported
5417 F:      Documentation/networking/devlink
5418 F:      include/net/devlink.h
5419 F:      include/uapi/linux/devlink.h
5420 F:      net/core/devlink.c
5421
5422 DIALOG SEMICONDUCTOR DRIVERS
5423 M:      Support Opensource <support.opensource@diasemi.com>
5424 S:      Supported
5425 W:      http://www.dialog-semiconductor.com/products
5426 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5427 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5428 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5429 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5430 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5431 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5432 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5433 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5434 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5435 F:      Documentation/hwmon/da90??.rst
5436 F:      drivers/gpio/gpio-da90??.c
5437 F:      drivers/hwmon/da90??-hwmon.c
5438 F:      drivers/iio/adc/da91??-*.c
5439 F:      drivers/input/misc/da72??.[ch]
5440 F:      drivers/input/misc/da90??_onkey.c
5441 F:      drivers/input/touchscreen/da9052_tsi.c
5442 F:      drivers/leds/leds-da90??.c
5443 F:      drivers/mfd/da903x.c
5444 F:      drivers/mfd/da90??-*.c
5445 F:      drivers/mfd/da91??-*.c
5446 F:      drivers/pinctrl/pinctrl-da90??.c
5447 F:      drivers/power/supply/da9052-battery.c
5448 F:      drivers/power/supply/da91??-*.c
5449 F:      drivers/regulator/da9???-regulator.[ch]
5450 F:      drivers/regulator/slg51000-regulator.[ch]
5451 F:      drivers/rtc/rtc-da90??.c
5452 F:      drivers/thermal/da90??-thermal.c
5453 F:      drivers/video/backlight/da90??_bl.c
5454 F:      drivers/watchdog/da90??_wdt.c
5455 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5456 F:      include/linux/mfd/da903x.h
5457 F:      include/linux/mfd/da9052/
5458 F:      include/linux/mfd/da9055/
5459 F:      include/linux/mfd/da9062/
5460 F:      include/linux/mfd/da9063/
5461 F:      include/linux/mfd/da9150/
5462 F:      include/linux/regulator/da9211.h
5463 F:      include/sound/da[79]*.h
5464 F:      sound/soc/codecs/da[79]*.[ch]
5465
5466 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5467 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5468 L:      linux-gpio@vger.kernel.org
5469 S:      Maintained
5470 F:      drivers/gpio/gpio-gpio-mm.c
5471
5472 DIOLAN U2C-12 I2C DRIVER
5473 M:      Guenter Roeck <linux@roeck-us.net>
5474 L:      linux-i2c@vger.kernel.org
5475 S:      Maintained
5476 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5477
5478 DIRECTORY NOTIFICATION (DNOTIFY)
5479 M:      Jan Kara <jack@suse.cz>
5480 R:      Amir Goldstein <amir73il@gmail.com>
5481 L:      linux-fsdevel@vger.kernel.org
5482 S:      Maintained
5483 F:      Documentation/filesystems/dnotify.rst
5484 F:      fs/notify/dnotify/
5485 F:      include/linux/dnotify.h
5486
5487 DISK GEOMETRY AND PARTITION HANDLING
5488 M:      Andries Brouwer <aeb@cwi.nl>
5489 S:      Maintained
5490 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5491 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5492 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5493
5494 DISKQUOTA
5495 M:      Jan Kara <jack@suse.com>
5496 S:      Maintained
5497 F:      Documentation/filesystems/quota.rst
5498 F:      fs/quota/
5499 F:      include/linux/quota*.h
5500 F:      include/uapi/linux/quota*.h
5501
5502 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5503 M:      Bernie Thompson <bernie@plugable.com>
5504 L:      linux-fbdev@vger.kernel.org
5505 S:      Maintained
5506 W:      http://plugable.com/category/projects/udlfb/
5507 F:      Documentation/fb/udlfb.rst
5508 F:      drivers/video/fbdev/udlfb.c
5509 F:      include/video/udlfb.h
5510
5511 DISTRIBUTED LOCK MANAGER (DLM)
5512 M:      Christine Caulfield <ccaulfie@redhat.com>
5513 M:      David Teigland <teigland@redhat.com>
5514 L:      cluster-devel@redhat.com
5515 S:      Supported
5516 W:      http://sources.redhat.com/cluster/
5517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5518 F:      fs/dlm/
5519
5520 DMA BUFFER SHARING FRAMEWORK
5521 M:      Sumit Semwal <sumit.semwal@linaro.org>
5522 M:      Christian König <christian.koenig@amd.com>
5523 L:      linux-media@vger.kernel.org
5524 L:      dri-devel@lists.freedesktop.org
5525 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5526 S:      Maintained
5527 T:      git git://anongit.freedesktop.org/drm/drm-misc
5528 F:      Documentation/driver-api/dma-buf.rst
5529 F:      drivers/dma-buf/
5530 F:      include/linux/*fence.h
5531 F:      include/linux/dma-buf*
5532 F:      include/linux/dma-resv.h
5533 K:      \bdma_(?:buf|fence|resv)\b
5534
5535 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5536 M:      Vinod Koul <vkoul@kernel.org>
5537 L:      dmaengine@vger.kernel.org
5538 S:      Maintained
5539 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5541 F:      Documentation/devicetree/bindings/dma/
5542 F:      Documentation/driver-api/dmaengine/
5543 F:      drivers/dma/
5544 F:      include/linux/dma/
5545 F:      include/linux/dmaengine.h
5546 F:      include/linux/of_dma.h
5547
5548 DMA MAPPING HELPERS
5549 M:      Christoph Hellwig <hch@lst.de>
5550 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5551 R:      Robin Murphy <robin.murphy@arm.com>
5552 L:      iommu@lists.linux-foundation.org
5553 S:      Supported
5554 W:      http://git.infradead.org/users/hch/dma-mapping.git
5555 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5556 F:      include/asm-generic/dma-mapping.h
5557 F:      include/linux/dma-direct.h
5558 F:      include/linux/dma-mapping.h
5559 F:      include/linux/dma-map-ops.h
5560 F:      kernel/dma/
5561
5562 DMA MAPPING BENCHMARK
5563 M:      Barry Song <song.bao.hua@hisilicon.com>
5564 L:      iommu@lists.linux-foundation.org
5565 F:      kernel/dma/map_benchmark.c
5566 F:      tools/testing/selftests/dma/
5567
5568 DMA-BUF HEAPS FRAMEWORK
5569 M:      Sumit Semwal <sumit.semwal@linaro.org>
5570 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5571 R:      Liam Mark <lmark@codeaurora.org>
5572 R:      Laura Abbott <labbott@redhat.com>
5573 R:      Brian Starkey <Brian.Starkey@arm.com>
5574 R:      John Stultz <john.stultz@linaro.org>
5575 L:      linux-media@vger.kernel.org
5576 L:      dri-devel@lists.freedesktop.org
5577 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5578 S:      Maintained
5579 T:      git git://anongit.freedesktop.org/drm/drm-misc
5580 F:      drivers/dma-buf/dma-heap.c
5581 F:      drivers/dma-buf/heaps/*
5582 F:      include/linux/dma-heap.h
5583 F:      include/uapi/linux/dma-heap.h
5584
5585 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5586 M:      Lukasz Luba <lukasz.luba@arm.com>
5587 L:      linux-pm@vger.kernel.org
5588 L:      linux-samsung-soc@vger.kernel.org
5589 S:      Maintained
5590 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5591 F:      drivers/memory/samsung/exynos5422-dmc.c
5592
5593 DME1737 HARDWARE MONITOR DRIVER
5594 M:      Juerg Haefliger <juergh@gmail.com>
5595 L:      linux-hwmon@vger.kernel.org
5596 S:      Maintained
5597 F:      Documentation/hwmon/dme1737.rst
5598 F:      drivers/hwmon/dme1737.c
5599
5600 DMI/SMBIOS SUPPORT
5601 M:      Jean Delvare <jdelvare@suse.com>
5602 S:      Maintained
5603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5604 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5605 F:      drivers/firmware/dmi-id.c
5606 F:      drivers/firmware/dmi_scan.c
5607 F:      include/linux/dmi.h
5608
5609 DOCUMENTATION
5610 M:      Jonathan Corbet <corbet@lwn.net>
5611 L:      linux-doc@vger.kernel.org
5612 S:      Maintained
5613 P:      Documentation/doc-guide/maintainer-profile.rst
5614 T:      git git://git.lwn.net/linux.git docs-next
5615 F:      Documentation/
5616 F:      scripts/documentation-file-ref-check
5617 F:      scripts/kernel-doc
5618 F:      scripts/sphinx-pre-install
5619 X:      Documentation/ABI/
5620 X:      Documentation/admin-guide/media/
5621 X:      Documentation/devicetree/
5622 X:      Documentation/driver-api/media/
5623 X:      Documentation/firmware-guide/acpi/
5624 X:      Documentation/i2c/
5625 X:      Documentation/power/
5626 X:      Documentation/spi/
5627 X:      Documentation/userspace-api/media/
5628
5629 DOCUMENTATION REPORTING ISSUES
5630 M:      Thorsten Leemhuis <linux@leemhuis.info>
5631 L:      linux-doc@vger.kernel.org
5632 S:      Maintained
5633 F:      Documentation/admin-guide/reporting-issues.rst
5634
5635 DOCUMENTATION SCRIPTS
5636 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5637 L:      linux-doc@vger.kernel.org
5638 S:      Maintained
5639 F:      Documentation/sphinx/parse-headers.pl
5640 F:      scripts/documentation-file-ref-check
5641 F:      scripts/sphinx-pre-install
5642
5643 DOCUMENTATION/ITALIAN
5644 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5645 L:      linux-doc@vger.kernel.org
5646 S:      Maintained
5647 F:      Documentation/translations/it_IT
5648
5649 DONGWOON DW9714 LENS VOICE COIL DRIVER
5650 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5651 L:      linux-media@vger.kernel.org
5652 S:      Maintained
5653 T:      git git://linuxtv.org/media_tree.git
5654 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5655 F:      drivers/media/i2c/dw9714.c
5656
5657 DONGWOON DW9768 LENS VOICE COIL DRIVER
5658 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5659 L:      linux-media@vger.kernel.org
5660 S:      Maintained
5661 T:      git git://linuxtv.org/media_tree.git
5662 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5663 F:      drivers/media/i2c/dw9768.c
5664
5665 DONGWOON DW9807 LENS VOICE COIL DRIVER
5666 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5667 L:      linux-media@vger.kernel.org
5668 S:      Maintained
5669 T:      git git://linuxtv.org/media_tree.git
5670 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5671 F:      drivers/media/i2c/dw9807-vcm.c
5672
5673 DOUBLETALK DRIVER
5674 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5675 L:      blinux-list@redhat.com
5676 S:      Maintained
5677 F:      drivers/char/dtlk.c
5678 F:      include/linux/dtlk.h
5679
5680 DPAA2 DATAPATH I/O (DPIO) DRIVER
5681 M:      Roy Pledge <Roy.Pledge@nxp.com>
5682 L:      linux-kernel@vger.kernel.org
5683 S:      Maintained
5684 F:      drivers/soc/fsl/dpio
5685
5686 DPAA2 ETHERNET DRIVER
5687 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5688 L:      netdev@vger.kernel.org
5689 S:      Maintained
5690 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5691 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5692 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5693 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5694 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5695 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5696 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5697 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5698 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5699
5700 DPAA2 ETHERNET SWITCH DRIVER
5701 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5702 L:      netdev@vger.kernel.org
5703 S:      Maintained
5704 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
5705 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5706 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
5707
5708 DPT_I2O SCSI RAID DRIVER
5709 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5710 L:      linux-scsi@vger.kernel.org
5711 S:      Maintained
5712 W:      http://www.adaptec.com/
5713 F:      drivers/scsi/dpt*
5714 F:      drivers/scsi/dpt/
5715
5716 DRBD DRIVER
5717 M:      Philipp Reisner <philipp.reisner@linbit.com>
5718 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5719 L:      drbd-dev@lists.linbit.com
5720 S:      Supported
5721 W:      http://www.drbd.org
5722 T:      git git://git.linbit.com/linux-drbd.git
5723 T:      git git://git.linbit.com/drbd-8.4.git
5724 F:      Documentation/admin-guide/blockdev/
5725 F:      drivers/block/drbd/
5726 F:      lib/lru_cache.c
5727
5728 DRIVER COMPONENT FRAMEWORK
5729 L:      dri-devel@lists.freedesktop.org
5730 F:      drivers/base/component.c
5731 F:      include/linux/component.h
5732
5733 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5734 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5735 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5736 S:      Supported
5737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5738 F:      Documentation/core-api/kobject.rst
5739 F:      drivers/base/
5740 F:      fs/debugfs/
5741 F:      fs/sysfs/
5742 F:      include/linux/debugfs.h
5743 F:      include/linux/kobj*
5744 F:      lib/kobj*
5745
5746 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5747 M:      Nishanth Menon <nm@ti.com>
5748 L:      linux-pm@vger.kernel.org
5749 S:      Maintained
5750 F:      drivers/soc/ti/smartreflex.c
5751 F:      include/linux/power/smartreflex.h
5752
5753 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5754 M:      Maxime Ripard <mripard@kernel.org>
5755 M:      Chen-Yu Tsai <wens@csie.org>
5756 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
5757 L:      dri-devel@lists.freedesktop.org
5758 S:      Supported
5759 T:      git git://anongit.freedesktop.org/drm/drm-misc
5760 F:      drivers/gpu/drm/sun4i/sun8i*
5761
5762 DRM DRIVER FOR ARM PL111 CLCD
5763 M:      Emma Anholt <emma@anholt.net>
5764 S:      Supported
5765 T:      git git://anongit.freedesktop.org/drm/drm-misc
5766 F:      drivers/gpu/drm/pl111/
5767
5768 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5769 M:      Linus Walleij <linus.walleij@linaro.org>
5770 S:      Maintained
5771 T:      git git://anongit.freedesktop.org/drm/drm-misc
5772 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5773 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5774
5775 DRM DRIVER FOR ASPEED BMC GFX
5776 M:      Joel Stanley <joel@jms.id.au>
5777 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5778 S:      Supported
5779 T:      git git://anongit.freedesktop.org/drm/drm-misc
5780 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5781 F:      drivers/gpu/drm/aspeed/
5782
5783 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5784 M:      Dave Airlie <airlied@redhat.com>
5785 R:      Thomas Zimmermann <tzimmermann@suse.de>
5786 L:      dri-devel@lists.freedesktop.org
5787 S:      Supported
5788 T:      git git://anongit.freedesktop.org/drm/drm-misc
5789 F:      drivers/gpu/drm/ast/
5790
5791 DRM DRIVER FOR BOCHS VIRTUAL GPU
5792 M:      Gerd Hoffmann <kraxel@redhat.com>
5793 L:      virtualization@lists.linux-foundation.org
5794 S:      Maintained
5795 T:      git git://anongit.freedesktop.org/drm/drm-misc
5796 F:      drivers/gpu/drm/bochs/
5797
5798 DRM DRIVER FOR BOE HIMAX8279D PANELS
5799 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5800 S:      Maintained
5801 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5802 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5803
5804 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5805 M:      Jagan Teki <jagan@amarulasolutions.com>
5806 S:      Maintained
5807 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5808 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
5809
5810 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5811 M:      Linus Walleij <linus.walleij@linaro.org>
5812 S:      Maintained
5813 T:      git git://anongit.freedesktop.org/drm/drm-misc
5814 F:      drivers/gpu/drm/tve200/
5815
5816 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5817 M:      Icenowy Zheng <icenowy@aosc.io>
5818 S:      Maintained
5819 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5820 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5821
5822 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5823 M:      Jagan Teki <jagan@amarulasolutions.com>
5824 S:      Maintained
5825 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5826 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5827
5828 DRM DRIVER FOR GENERIC USB DISPLAY
5829 M:      Noralf Trønnes <noralf@tronnes.org>
5830 S:      Maintained
5831 W:      https://github.com/notro/gud/wiki
5832 T:      git git://anongit.freedesktop.org/drm/drm-misc
5833 F:      drivers/gpu/drm/gud/
5834 F:      include/drm/gud.h
5835
5836 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5837 M:      Hans de Goede <hdegoede@redhat.com>
5838 S:      Maintained
5839 T:      git git://anongit.freedesktop.org/drm/drm-misc
5840 F:      drivers/gpu/drm/tiny/gm12u320.c
5841
5842 DRM DRIVER FOR HX8357D PANELS
5843 M:      Emma Anholt <emma@anholt.net>
5844 S:      Maintained
5845 T:      git git://anongit.freedesktop.org/drm/drm-misc
5846 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5847 F:      drivers/gpu/drm/tiny/hx8357d.c
5848
5849 DRM DRIVER FOR ILITEK ILI9225 PANELS
5850 M:      David Lechner <david@lechnology.com>
5851 S:      Maintained
5852 T:      git git://anongit.freedesktop.org/drm/drm-misc
5853 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5854 F:      drivers/gpu/drm/tiny/ili9225.c
5855
5856 DRM DRIVER FOR ILITEK ILI9486 PANELS
5857 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5858 S:      Maintained
5859 T:      git git://anongit.freedesktop.org/drm/drm-misc
5860 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5861 F:      drivers/gpu/drm/tiny/ili9486.c
5862
5863 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5864 S:      Orphan / Obsolete
5865 F:      drivers/gpu/drm/i810/
5866 F:      include/uapi/drm/i810_drm.h
5867
5868 DRM DRIVER FOR LVDS PANELS
5869 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5870 L:      dri-devel@lists.freedesktop.org
5871 T:      git git://anongit.freedesktop.org/drm/drm-misc
5872 S:      Maintained
5873 F:      drivers/gpu/drm/panel/panel-lvds.c
5874 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5875
5876 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5877 M:      Guido Günther <agx@sigxcpu.org>
5878 R:      Purism Kernel Team <kernel@puri.sm>
5879 S:      Maintained
5880 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5881 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5882
5883 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5884 S:      Orphan / Obsolete
5885 F:      drivers/gpu/drm/mga/
5886 F:      include/uapi/drm/mga_drm.h
5887
5888 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5889 M:      Dave Airlie <airlied@redhat.com>
5890 R:      Thomas Zimmermann <tzimmermann@suse.de>
5891 L:      dri-devel@lists.freedesktop.org
5892 S:      Supported
5893 T:      git git://anongit.freedesktop.org/drm/drm-misc
5894 F:      drivers/gpu/drm/mgag200/
5895
5896 DRM DRIVER FOR MI0283QT
5897 M:      Noralf Trønnes <noralf@tronnes.org>
5898 S:      Maintained
5899 T:      git git://anongit.freedesktop.org/drm/drm-misc
5900 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5901 F:      drivers/gpu/drm/tiny/mi0283qt.c
5902
5903 DRM DRIVER FOR MSM ADRENO GPU
5904 M:      Rob Clark <robdclark@gmail.com>
5905 M:      Sean Paul <sean@poorly.run>
5906 L:      linux-arm-msm@vger.kernel.org
5907 L:      dri-devel@lists.freedesktop.org
5908 L:      freedreno@lists.freedesktop.org
5909 S:      Maintained
5910 T:      git https://gitlab.freedesktop.org/drm/msm.git
5911 F:      Documentation/devicetree/bindings/display/msm/
5912 F:      drivers/gpu/drm/msm/
5913 F:      include/uapi/drm/msm_drm.h
5914
5915 DRM DRIVER FOR NOVATEK NT35510 PANELS
5916 M:      Linus Walleij <linus.walleij@linaro.org>
5917 S:      Maintained
5918 T:      git git://anongit.freedesktop.org/drm/drm-misc
5919 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5920 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5921
5922 DRM DRIVER FOR NOVATEK NT36672A PANELS
5923 M:      Sumit Semwal <sumit.semwal@linaro.org>
5924 S:      Maintained
5925 T:      git git://anongit.freedesktop.org/drm/drm-misc
5926 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
5927 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
5928
5929 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5930 M:      Ben Skeggs <bskeggs@redhat.com>
5931 L:      dri-devel@lists.freedesktop.org
5932 L:      nouveau@lists.freedesktop.org
5933 S:      Supported
5934 T:      git git://github.com/skeggsb/linux
5935 F:      drivers/gpu/drm/nouveau/
5936 F:      include/uapi/drm/nouveau_drm.h
5937
5938 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5939 M:      Stefan Mavrodiev <stefan@olimex.com>
5940 S:      Maintained
5941 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5942 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5943
5944 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5945 M:      Noralf Trønnes <noralf@tronnes.org>
5946 S:      Maintained
5947 T:      git git://anongit.freedesktop.org/drm/drm-misc
5948 F:      Documentation/devicetree/bindings/display/repaper.txt
5949 F:      drivers/gpu/drm/tiny/repaper.c
5950
5951 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5952 M:      Dave Airlie <airlied@redhat.com>
5953 M:      Gerd Hoffmann <kraxel@redhat.com>
5954 L:      virtualization@lists.linux-foundation.org
5955 S:      Obsolete
5956 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5957 T:      git git://anongit.freedesktop.org/drm/drm-misc
5958 F:      drivers/gpu/drm/tiny/cirrus.c
5959
5960 DRM DRIVER FOR QXL VIRTUAL GPU
5961 M:      Dave Airlie <airlied@redhat.com>
5962 M:      Gerd Hoffmann <kraxel@redhat.com>
5963 L:      virtualization@lists.linux-foundation.org
5964 L:      spice-devel@lists.freedesktop.org
5965 S:      Maintained
5966 T:      git git://anongit.freedesktop.org/drm/drm-misc
5967 F:      drivers/gpu/drm/qxl/
5968 F:      include/uapi/drm/qxl_drm.h
5969
5970 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5971 S:      Orphan / Obsolete
5972 F:      drivers/gpu/drm/r128/
5973 F:      include/uapi/drm/r128_drm.h
5974
5975 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5976 M:      Robert Chiras <robert.chiras@nxp.com>
5977 S:      Maintained
5978 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5979 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5980
5981 DRM DRIVER FOR SITRONIX ST7703 PANELS
5982 M:      Guido Günther <agx@sigxcpu.org>
5983 R:      Purism Kernel Team <kernel@puri.sm>
5984 R:      Ondrej Jirman <megous@megous.com>
5985 S:      Maintained
5986 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
5987 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
5988
5989 DRM DRIVER FOR SAVAGE VIDEO CARDS
5990 S:      Orphan / Obsolete
5991 F:      drivers/gpu/drm/savage/
5992 F:      include/uapi/drm/savage_drm.h
5993
5994 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
5995 M:      Thomas Zimmermann <tzimmermann@suse.de>
5996 L:      dri-devel@lists.freedesktop.org
5997 S:      Maintained
5998 T:      git git://anongit.freedesktop.org/drm/drm-misc
5999 F:      drivers/gpu/drm/tiny/simpledrm.c
6000
6001 DRM DRIVER FOR SIS VIDEO CARDS
6002 S:      Orphan / Obsolete
6003 F:      drivers/gpu/drm/sis/
6004 F:      include/uapi/drm/sis_drm.h
6005
6006 DRM DRIVER FOR SITRONIX ST7586 PANELS
6007 M:      David Lechner <david@lechnology.com>
6008 S:      Maintained
6009 T:      git git://anongit.freedesktop.org/drm/drm-misc
6010 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6011 F:      drivers/gpu/drm/tiny/st7586.c
6012
6013 DRM DRIVER FOR SITRONIX ST7701 PANELS
6014 M:      Jagan Teki <jagan@amarulasolutions.com>
6015 S:      Maintained
6016 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6017 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6018
6019 DRM DRIVER FOR SITRONIX ST7735R PANELS
6020 M:      David Lechner <david@lechnology.com>
6021 S:      Maintained
6022 T:      git git://anongit.freedesktop.org/drm/drm-misc
6023 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6024 F:      drivers/gpu/drm/tiny/st7735r.c
6025
6026 DRM DRIVER FOR SONY ACX424AKP PANELS
6027 M:      Linus Walleij <linus.walleij@linaro.org>
6028 S:      Maintained
6029 T:      git git://anongit.freedesktop.org/drm/drm-misc
6030 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
6031
6032 DRM DRIVER FOR ST-ERICSSON MCDE
6033 M:      Linus Walleij <linus.walleij@linaro.org>
6034 S:      Maintained
6035 T:      git git://anongit.freedesktop.org/drm/drm-misc
6036 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6037 F:      drivers/gpu/drm/mcde/
6038
6039 DRM DRIVER FOR TDFX VIDEO CARDS
6040 S:      Orphan / Obsolete
6041 F:      drivers/gpu/drm/tdfx/
6042
6043 DRM DRIVER FOR TPO TPG110 PANELS
6044 M:      Linus Walleij <linus.walleij@linaro.org>
6045 S:      Maintained
6046 T:      git git://anongit.freedesktop.org/drm/drm-misc
6047 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6048 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6049
6050 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6051 M:      Dave Airlie <airlied@redhat.com>
6052 R:      Sean Paul <sean@poorly.run>
6053 R:      Thomas Zimmermann <tzimmermann@suse.de>
6054 L:      dri-devel@lists.freedesktop.org
6055 S:      Supported
6056 T:      git git://anongit.freedesktop.org/drm/drm-misc
6057 F:      drivers/gpu/drm/udl/
6058
6059 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6060 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6061 M:      Melissa Wen <melissa.srw@gmail.com>
6062 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6063 R:      Daniel Vetter <daniel@ffwll.ch>
6064 L:      dri-devel@lists.freedesktop.org
6065 S:      Maintained
6066 T:      git git://anongit.freedesktop.org/drm/drm-misc
6067 F:      Documentation/gpu/vkms.rst
6068 F:      drivers/gpu/drm/vkms/
6069
6070 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6071 M:      Hans de Goede <hdegoede@redhat.com>
6072 L:      dri-devel@lists.freedesktop.org
6073 S:      Maintained
6074 T:      git git://anongit.freedesktop.org/drm/drm-misc
6075 F:      drivers/gpu/drm/vboxvideo/
6076
6077 DRM DRIVER FOR VMWARE VIRTUAL GPU
6078 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
6079 M:      Roland Scheidegger <sroland@vmware.com>
6080 M:      Zack Rusin <zackr@vmware.com>
6081 L:      dri-devel@lists.freedesktop.org
6082 S:      Supported
6083 T:      git git://people.freedesktop.org/~sroland/linux
6084 F:      drivers/gpu/drm/vmwgfx/
6085 F:      include/uapi/drm/vmwgfx_drm.h
6086
6087 DRM DRIVERS
6088 M:      David Airlie <airlied@linux.ie>
6089 M:      Daniel Vetter <daniel@ffwll.ch>
6090 L:      dri-devel@lists.freedesktop.org
6091 S:      Maintained
6092 B:      https://gitlab.freedesktop.org/drm
6093 C:      irc://chat.freenode.net/dri-devel
6094 T:      git git://anongit.freedesktop.org/drm/drm
6095 F:      Documentation/devicetree/bindings/display/
6096 F:      Documentation/devicetree/bindings/gpu/
6097 F:      Documentation/gpu/
6098 F:      drivers/gpu/drm/
6099 F:      drivers/gpu/vga/
6100 F:      include/drm/
6101 F:      include/linux/vga*
6102 F:      include/uapi/drm/
6103
6104 DRM DRIVERS AND MISC GPU PATCHES
6105 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6106 M:      Maxime Ripard <mripard@kernel.org>
6107 M:      Thomas Zimmermann <tzimmermann@suse.de>
6108 S:      Maintained
6109 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6110 T:      git git://anongit.freedesktop.org/drm/drm-misc
6111 F:      Documentation/gpu/
6112 F:      drivers/gpu/drm/*
6113 F:      drivers/gpu/vga/
6114 F:      include/drm/drm*
6115 F:      include/linux/vga*
6116 F:      include/uapi/drm/drm*
6117
6118 DRM DRIVERS FOR ALLWINNER A10
6119 M:      Maxime Ripard <mripard@kernel.org>
6120 M:      Chen-Yu Tsai <wens@csie.org>
6121 L:      dri-devel@lists.freedesktop.org
6122 S:      Supported
6123 T:      git git://anongit.freedesktop.org/drm/drm-misc
6124 F:      Documentation/devicetree/bindings/display/allwinner*
6125 F:      drivers/gpu/drm/sun4i/
6126
6127 DRM DRIVERS FOR AMLOGIC SOCS
6128 M:      Neil Armstrong <narmstrong@baylibre.com>
6129 L:      dri-devel@lists.freedesktop.org
6130 L:      linux-amlogic@lists.infradead.org
6131 S:      Supported
6132 W:      http://linux-meson.com/
6133 T:      git git://anongit.freedesktop.org/drm/drm-misc
6134 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6135 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6136 F:      Documentation/gpu/meson.rst
6137 F:      drivers/gpu/drm/meson/
6138
6139 DRM DRIVERS FOR ATMEL HLCDC
6140 M:      Sam Ravnborg <sam@ravnborg.org>
6141 M:      Boris Brezillon <bbrezillon@kernel.org>
6142 L:      dri-devel@lists.freedesktop.org
6143 S:      Supported
6144 T:      git git://anongit.freedesktop.org/drm/drm-misc
6145 F:      Documentation/devicetree/bindings/display/atmel/
6146 F:      drivers/gpu/drm/atmel-hlcdc/
6147
6148 DRM DRIVERS FOR BRIDGE CHIPS
6149 M:      Andrzej Hajda <a.hajda@samsung.com>
6150 M:      Neil Armstrong <narmstrong@baylibre.com>
6151 M:      Robert Foss <robert.foss@linaro.org>
6152 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6153 R:      Jonas Karlman <jonas@kwiboo.se>
6154 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6155 S:      Maintained
6156 T:      git git://anongit.freedesktop.org/drm/drm-misc
6157 F:      drivers/gpu/drm/bridge/
6158
6159 DRM DRIVERS FOR EXYNOS
6160 M:      Inki Dae <inki.dae@samsung.com>
6161 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6162 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6163 M:      Kyungmin Park <kyungmin.park@samsung.com>
6164 L:      dri-devel@lists.freedesktop.org
6165 S:      Supported
6166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6167 F:      Documentation/devicetree/bindings/display/exynos/
6168 F:      drivers/gpu/drm/exynos/
6169 F:      include/uapi/drm/exynos_drm.h
6170
6171 DRM DRIVERS FOR FREESCALE DCU
6172 M:      Stefan Agner <stefan@agner.ch>
6173 M:      Alison Wang <alison.wang@nxp.com>
6174 L:      dri-devel@lists.freedesktop.org
6175 S:      Supported
6176 T:      git git://anongit.freedesktop.org/drm/drm-misc
6177 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6178 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6179 F:      drivers/gpu/drm/fsl-dcu/
6180
6181 DRM DRIVERS FOR FREESCALE IMX
6182 M:      Philipp Zabel <p.zabel@pengutronix.de>
6183 L:      dri-devel@lists.freedesktop.org
6184 S:      Maintained
6185 F:      Documentation/devicetree/bindings/display/imx/
6186 F:      drivers/gpu/drm/imx/
6187 F:      drivers/gpu/ipu-v3/
6188
6189 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6190 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6191 L:      dri-devel@lists.freedesktop.org
6192 S:      Maintained
6193 T:      git git://github.com/patjak/drm-gma500
6194 F:      drivers/gpu/drm/gma500/
6195
6196 DRM DRIVERS FOR HISILICON
6197 M:      Xinliang Liu <xinliang.liu@linaro.org>
6198 M:      Tian Tao  <tiantao6@hisilicon.com>
6199 R:      John Stultz <john.stultz@linaro.org>
6200 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6201 R:      Chen Feng <puck.chen@hisilicon.com>
6202 L:      dri-devel@lists.freedesktop.org
6203 S:      Maintained
6204 T:      git git://anongit.freedesktop.org/drm/drm-misc
6205 F:      Documentation/devicetree/bindings/display/hisilicon/
6206 F:      drivers/gpu/drm/hisilicon/
6207
6208 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6209 M:      Deepak Rawat <drawat.floss@gmail.com>
6210 L:      linux-hyperv@vger.kernel.org
6211 L:      dri-devel@lists.freedesktop.org
6212 S:      Maintained
6213 T:      git git://anongit.freedesktop.org/drm/drm-misc
6214 F:      drivers/gpu/drm/hyperv
6215
6216 DRM DRIVERS FOR LIMA
6217 M:      Qiang Yu <yuq825@gmail.com>
6218 L:      dri-devel@lists.freedesktop.org
6219 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6220 S:      Maintained
6221 T:      git git://anongit.freedesktop.org/drm/drm-misc
6222 F:      drivers/gpu/drm/lima/
6223 F:      include/uapi/drm/lima_drm.h
6224
6225 DRM DRIVERS FOR MEDIATEK
6226 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6227 M:      Philipp Zabel <p.zabel@pengutronix.de>
6228 L:      dri-devel@lists.freedesktop.org
6229 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6230 S:      Supported
6231 F:      Documentation/devicetree/bindings/display/mediatek/
6232 F:      drivers/gpu/drm/mediatek/
6233 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6234 F:      drivers/phy/mediatek/phy-mtk-mipi*
6235
6236 DRM DRIVERS FOR NVIDIA TEGRA
6237 M:      Thierry Reding <thierry.reding@gmail.com>
6238 L:      dri-devel@lists.freedesktop.org
6239 L:      linux-tegra@vger.kernel.org
6240 S:      Supported
6241 T:      git git://anongit.freedesktop.org/tegra/linux.git
6242 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6243 F:      drivers/gpu/drm/tegra/
6244 F:      drivers/gpu/host1x/
6245 F:      include/linux/host1x.h
6246 F:      include/uapi/drm/tegra_drm.h
6247
6248 DRM DRIVERS FOR RENESAS
6249 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6250 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6251 L:      dri-devel@lists.freedesktop.org
6252 L:      linux-renesas-soc@vger.kernel.org
6253 S:      Supported
6254 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6255 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6256 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6257 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6258 F:      drivers/gpu/drm/rcar-du/
6259 F:      drivers/gpu/drm/shmobile/
6260 F:      include/linux/platform_data/shmob_drm.h
6261
6262 DRM DRIVERS FOR ROCKCHIP
6263 M:      Sandy Huang <hjc@rock-chips.com>
6264 M:      Heiko Stübner <heiko@sntech.de>
6265 L:      dri-devel@lists.freedesktop.org
6266 S:      Maintained
6267 T:      git git://anongit.freedesktop.org/drm/drm-misc
6268 F:      Documentation/devicetree/bindings/display/rockchip/
6269 F:      drivers/gpu/drm/rockchip/
6270
6271 DRM DRIVERS FOR STI
6272 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6273 L:      dri-devel@lists.freedesktop.org
6274 S:      Maintained
6275 T:      git git://anongit.freedesktop.org/drm/drm-misc
6276 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6277 F:      drivers/gpu/drm/sti
6278
6279 DRM DRIVERS FOR STM
6280 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6281 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6282 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6283 L:      dri-devel@lists.freedesktop.org
6284 S:      Maintained
6285 T:      git git://anongit.freedesktop.org/drm/drm-misc
6286 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6287 F:      drivers/gpu/drm/stm
6288
6289 DRM DRIVERS FOR TI KEYSTONE
6290 M:      Jyri Sarha <jyri.sarha@iki.fi>
6291 M:      Tomi Valkeinen <tomba@kernel.org>
6292 L:      dri-devel@lists.freedesktop.org
6293 S:      Maintained
6294 T:      git git://anongit.freedesktop.org/drm/drm-misc
6295 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6296 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6297 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6298 F:      drivers/gpu/drm/tidss/
6299
6300 DRM DRIVERS FOR TI LCDC
6301 M:      Jyri Sarha <jyri.sarha@iki.fi>
6302 R:      Tomi Valkeinen <tomba@kernel.org>
6303 L:      dri-devel@lists.freedesktop.org
6304 S:      Maintained
6305 F:      Documentation/devicetree/bindings/display/tilcdc/
6306 F:      drivers/gpu/drm/tilcdc/
6307
6308 DRM DRIVERS FOR TI OMAP
6309 M:      Tomi Valkeinen <tomba@kernel.org>
6310 L:      dri-devel@lists.freedesktop.org
6311 S:      Maintained
6312 F:      Documentation/devicetree/bindings/display/ti/
6313 F:      drivers/gpu/drm/omapdrm/
6314
6315 DRM DRIVERS FOR V3D
6316 M:      Emma Anholt <emma@anholt.net>
6317 S:      Supported
6318 T:      git git://anongit.freedesktop.org/drm/drm-misc
6319 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6320 F:      drivers/gpu/drm/v3d/
6321 F:      include/uapi/drm/v3d_drm.h
6322
6323 DRM DRIVERS FOR VC4
6324 M:      Emma Anholt <emma@anholt.net>
6325 M:      Maxime Ripard <mripard@kernel.org>
6326 S:      Supported
6327 T:      git git://github.com/anholt/linux
6328 T:      git git://anongit.freedesktop.org/drm/drm-misc
6329 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6330 F:      drivers/gpu/drm/vc4/
6331 F:      include/uapi/drm/vc4_drm.h
6332
6333 DRM DRIVERS FOR VIVANTE GPU IP
6334 M:      Lucas Stach <l.stach@pengutronix.de>
6335 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6336 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6337 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6338 L:      dri-devel@lists.freedesktop.org
6339 S:      Maintained
6340 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6341 F:      drivers/gpu/drm/etnaviv/
6342 F:      include/uapi/drm/etnaviv_drm.h
6343
6344 DRM DRIVERS FOR XEN
6345 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6346 L:      dri-devel@lists.freedesktop.org
6347 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6348 S:      Supported
6349 T:      git git://anongit.freedesktop.org/drm/drm-misc
6350 F:      Documentation/gpu/xen-front.rst
6351 F:      drivers/gpu/drm/xen/
6352
6353 DRM DRIVERS FOR XILINX
6354 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6355 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6356 L:      dri-devel@lists.freedesktop.org
6357 S:      Maintained
6358 T:      git git://anongit.freedesktop.org/drm/drm-misc
6359 F:      Documentation/devicetree/bindings/display/xlnx/
6360 F:      drivers/gpu/drm/xlnx/
6361
6362 DRM PANEL DRIVERS
6363 M:      Thierry Reding <thierry.reding@gmail.com>
6364 R:      Sam Ravnborg <sam@ravnborg.org>
6365 L:      dri-devel@lists.freedesktop.org
6366 S:      Maintained
6367 T:      git git://anongit.freedesktop.org/drm/drm-misc
6368 F:      Documentation/devicetree/bindings/display/panel/
6369 F:      drivers/gpu/drm/drm_panel.c
6370 F:      drivers/gpu/drm/panel/
6371 F:      include/drm/drm_panel.h
6372
6373 DRM TTM SUBSYSTEM
6374 M:      Christian Koenig <christian.koenig@amd.com>
6375 M:      Huang Rui <ray.huang@amd.com>
6376 L:      dri-devel@lists.freedesktop.org
6377 S:      Maintained
6378 T:      git git://anongit.freedesktop.org/drm/drm-misc
6379 F:      drivers/gpu/drm/ttm/
6380 F:      include/drm/ttm/
6381
6382 DSBR100 USB FM RADIO DRIVER
6383 M:      Alexey Klimov <klimov.linux@gmail.com>
6384 L:      linux-media@vger.kernel.org
6385 S:      Maintained
6386 T:      git git://linuxtv.org/media_tree.git
6387 F:      drivers/media/radio/dsbr100.c
6388
6389 DT3155 MEDIA DRIVER
6390 M:      Hans Verkuil <hverkuil@xs4all.nl>
6391 L:      linux-media@vger.kernel.org
6392 S:      Odd Fixes
6393 W:      https://linuxtv.org
6394 T:      git git://linuxtv.org/media_tree.git
6395 F:      drivers/media/pci/dt3155/
6396
6397 DVB_USB_AF9015 MEDIA DRIVER
6398 M:      Antti Palosaari <crope@iki.fi>
6399 L:      linux-media@vger.kernel.org
6400 S:      Maintained
6401 W:      https://linuxtv.org
6402 W:      http://palosaari.fi/linux/
6403 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6404 T:      git git://linuxtv.org/anttip/media_tree.git
6405 F:      drivers/media/usb/dvb-usb-v2/af9015*
6406
6407 DVB_USB_AF9035 MEDIA DRIVER
6408 M:      Antti Palosaari <crope@iki.fi>
6409 L:      linux-media@vger.kernel.org
6410 S:      Maintained
6411 W:      https://linuxtv.org
6412 W:      http://palosaari.fi/linux/
6413 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6414 T:      git git://linuxtv.org/anttip/media_tree.git
6415 F:      drivers/media/usb/dvb-usb-v2/af9035*
6416
6417 DVB_USB_ANYSEE MEDIA DRIVER
6418 M:      Antti Palosaari <crope@iki.fi>
6419 L:      linux-media@vger.kernel.org
6420 S:      Maintained
6421 W:      https://linuxtv.org
6422 W:      http://palosaari.fi/linux/
6423 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6424 T:      git git://linuxtv.org/anttip/media_tree.git
6425 F:      drivers/media/usb/dvb-usb-v2/anysee*
6426
6427 DVB_USB_AU6610 MEDIA DRIVER
6428 M:      Antti Palosaari <crope@iki.fi>
6429 L:      linux-media@vger.kernel.org
6430 S:      Maintained
6431 W:      https://linuxtv.org
6432 W:      http://palosaari.fi/linux/
6433 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6434 T:      git git://linuxtv.org/anttip/media_tree.git
6435 F:      drivers/media/usb/dvb-usb-v2/au6610*
6436
6437 DVB_USB_CE6230 MEDIA DRIVER
6438 M:      Antti Palosaari <crope@iki.fi>
6439 L:      linux-media@vger.kernel.org
6440 S:      Maintained
6441 W:      https://linuxtv.org
6442 W:      http://palosaari.fi/linux/
6443 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6444 T:      git git://linuxtv.org/anttip/media_tree.git
6445 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6446
6447 DVB_USB_CXUSB MEDIA DRIVER
6448 M:      Michael Krufky <mkrufky@linuxtv.org>
6449 L:      linux-media@vger.kernel.org
6450 S:      Maintained
6451 W:      https://linuxtv.org
6452 W:      http://github.com/mkrufky
6453 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6454 T:      git git://linuxtv.org/media_tree.git
6455 F:      drivers/media/usb/dvb-usb/cxusb*
6456
6457 DVB_USB_EC168 MEDIA DRIVER
6458 M:      Antti Palosaari <crope@iki.fi>
6459 L:      linux-media@vger.kernel.org
6460 S:      Maintained
6461 W:      https://linuxtv.org
6462 W:      http://palosaari.fi/linux/
6463 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6464 T:      git git://linuxtv.org/anttip/media_tree.git
6465 F:      drivers/media/usb/dvb-usb-v2/ec168*
6466
6467 DVB_USB_GL861 MEDIA DRIVER
6468 M:      Antti Palosaari <crope@iki.fi>
6469 L:      linux-media@vger.kernel.org
6470 S:      Maintained
6471 W:      https://linuxtv.org
6472 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6473 T:      git git://linuxtv.org/anttip/media_tree.git
6474 F:      drivers/media/usb/dvb-usb-v2/gl861*
6475
6476 DVB_USB_MXL111SF MEDIA DRIVER
6477 M:      Michael Krufky <mkrufky@linuxtv.org>
6478 L:      linux-media@vger.kernel.org
6479 S:      Maintained
6480 W:      https://linuxtv.org
6481 W:      http://github.com/mkrufky
6482 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6483 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6484 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6485
6486 DVB_USB_RTL28XXU MEDIA DRIVER
6487 M:      Antti Palosaari <crope@iki.fi>
6488 L:      linux-media@vger.kernel.org
6489 S:      Maintained
6490 W:      https://linuxtv.org
6491 W:      http://palosaari.fi/linux/
6492 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6493 T:      git git://linuxtv.org/anttip/media_tree.git
6494 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6495
6496 DVB_USB_V2 MEDIA DRIVER
6497 M:      Antti Palosaari <crope@iki.fi>
6498 L:      linux-media@vger.kernel.org
6499 S:      Maintained
6500 W:      https://linuxtv.org
6501 W:      http://palosaari.fi/linux/
6502 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6503 T:      git git://linuxtv.org/anttip/media_tree.git
6504 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6505 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6506
6507 DYNAMIC DEBUG
6508 M:      Jason Baron <jbaron@akamai.com>
6509 S:      Maintained
6510 F:      include/linux/dynamic_debug.h
6511 F:      lib/dynamic_debug.c
6512
6513 DYNAMIC INTERRUPT MODERATION
6514 M:      Tal Gilboa <talgi@nvidia.com>
6515 S:      Maintained
6516 F:      Documentation/networking/net_dim.rst
6517 F:      include/linux/dim.h
6518 F:      lib/dim/
6519
6520 DZ DECSTATION DZ11 SERIAL DRIVER
6521 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6522 S:      Maintained
6523 F:      drivers/tty/serial/dz.*
6524
6525 E3X0 POWER BUTTON DRIVER
6526 M:      Moritz Fischer <moritz.fischer@ettus.com>
6527 L:      usrp-users@lists.ettus.com
6528 S:      Supported
6529 W:      http://www.ettus.com
6530 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6531 F:      drivers/input/misc/e3x0-button.c
6532
6533 E4000 MEDIA DRIVER
6534 M:      Antti Palosaari <crope@iki.fi>
6535 L:      linux-media@vger.kernel.org
6536 S:      Maintained
6537 W:      https://linuxtv.org
6538 W:      http://palosaari.fi/linux/
6539 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6540 T:      git git://linuxtv.org/anttip/media_tree.git
6541 F:      drivers/media/tuners/e4000*
6542
6543 EARTH_PT1 MEDIA DRIVER
6544 M:      Akihiro Tsukada <tskd08@gmail.com>
6545 L:      linux-media@vger.kernel.org
6546 S:      Odd Fixes
6547 F:      drivers/media/pci/pt1/
6548
6549 EARTH_PT3 MEDIA DRIVER
6550 M:      Akihiro Tsukada <tskd08@gmail.com>
6551 L:      linux-media@vger.kernel.org
6552 S:      Odd Fixes
6553 F:      drivers/media/pci/pt3/
6554
6555 EC100 MEDIA DRIVER
6556 M:      Antti Palosaari <crope@iki.fi>
6557 L:      linux-media@vger.kernel.org
6558 S:      Maintained
6559 W:      https://linuxtv.org
6560 W:      http://palosaari.fi/linux/
6561 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6562 T:      git git://linuxtv.org/anttip/media_tree.git
6563 F:      drivers/media/dvb-frontends/ec100*
6564
6565 ECRYPT FILE SYSTEM
6566 M:      Tyler Hicks <code@tyhicks.com>
6567 L:      ecryptfs@vger.kernel.org
6568 S:      Odd Fixes
6569 W:      http://ecryptfs.org
6570 W:      https://launchpad.net/ecryptfs
6571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6572 F:      Documentation/filesystems/ecryptfs.rst
6573 F:      fs/ecryptfs/
6574
6575 EDAC-AMD64
6576 M:      Yazen Ghannam <yazen.ghannam@amd.com>
6577 L:      linux-edac@vger.kernel.org
6578 S:      Supported
6579 F:      drivers/edac/amd64_edac*
6580 F:      drivers/edac/mce_amd*
6581
6582 EDAC-ARMADA
6583 M:      Jan Luebbe <jlu@pengutronix.de>
6584 L:      linux-edac@vger.kernel.org
6585 S:      Maintained
6586 F:      drivers/edac/armada_xp_*
6587
6588 EDAC-AST2500
6589 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6590 S:      Supported
6591 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6592 F:      drivers/edac/aspeed_edac.c
6593
6594 EDAC-BLUEFIELD
6595 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6596 S:      Supported
6597 F:      drivers/edac/bluefield_edac.c
6598
6599 EDAC-CALXEDA
6600 M:      Andre Przywara <andre.przywara@arm.com>
6601 L:      linux-edac@vger.kernel.org
6602 S:      Maintained
6603 F:      drivers/edac/highbank*
6604
6605 EDAC-CAVIUM OCTEON
6606 M:      Ralf Baechle <ralf@linux-mips.org>
6607 L:      linux-edac@vger.kernel.org
6608 L:      linux-mips@vger.kernel.org
6609 S:      Supported
6610 F:      drivers/edac/octeon_edac*
6611
6612 EDAC-CAVIUM THUNDERX
6613 M:      Robert Richter <rric@kernel.org>
6614 L:      linux-edac@vger.kernel.org
6615 S:      Odd Fixes
6616 F:      drivers/edac/thunderx_edac*
6617
6618 EDAC-CORE
6619 M:      Borislav Petkov <bp@alien8.de>
6620 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6621 M:      Tony Luck <tony.luck@intel.com>
6622 R:      James Morse <james.morse@arm.com>
6623 R:      Robert Richter <rric@kernel.org>
6624 L:      linux-edac@vger.kernel.org
6625 S:      Supported
6626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6627 F:      Documentation/admin-guide/ras.rst
6628 F:      Documentation/driver-api/edac.rst
6629 F:      drivers/edac/
6630 F:      include/linux/edac.h
6631
6632 EDAC-DMC520
6633 M:      Lei Wang <lewan@microsoft.com>
6634 L:      linux-edac@vger.kernel.org
6635 S:      Supported
6636 F:      drivers/edac/dmc520_edac.c
6637
6638 EDAC-E752X
6639 M:      Mark Gross <mark.gross@intel.com>
6640 L:      linux-edac@vger.kernel.org
6641 S:      Maintained
6642 F:      drivers/edac/e752x_edac.c
6643
6644 EDAC-E7XXX
6645 L:      linux-edac@vger.kernel.org
6646 S:      Maintained
6647 F:      drivers/edac/e7xxx_edac.c
6648
6649 EDAC-FSL_DDR
6650 M:      York Sun <york.sun@nxp.com>
6651 L:      linux-edac@vger.kernel.org
6652 S:      Maintained
6653 F:      drivers/edac/fsl_ddr_edac.*
6654
6655 EDAC-GHES
6656 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6657 L:      linux-edac@vger.kernel.org
6658 S:      Maintained
6659 F:      drivers/edac/ghes_edac.c
6660
6661 EDAC-I10NM
6662 M:      Tony Luck <tony.luck@intel.com>
6663 L:      linux-edac@vger.kernel.org
6664 S:      Maintained
6665 F:      drivers/edac/i10nm_base.c
6666
6667 EDAC-I3000
6668 L:      linux-edac@vger.kernel.org
6669 S:      Orphan
6670 F:      drivers/edac/i3000_edac.c
6671
6672 EDAC-I5000
6673 L:      linux-edac@vger.kernel.org
6674 S:      Maintained
6675 F:      drivers/edac/i5000_edac.c
6676
6677 EDAC-I5400
6678 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6679 L:      linux-edac@vger.kernel.org
6680 S:      Maintained
6681 F:      drivers/edac/i5400_edac.c
6682
6683 EDAC-I7300
6684 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6685 L:      linux-edac@vger.kernel.org
6686 S:      Maintained
6687 F:      drivers/edac/i7300_edac.c
6688
6689 EDAC-I7CORE
6690 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6691 L:      linux-edac@vger.kernel.org
6692 S:      Maintained
6693 F:      drivers/edac/i7core_edac.c
6694
6695 EDAC-I82443BXGX
6696 M:      Tim Small <tim@buttersideup.com>
6697 L:      linux-edac@vger.kernel.org
6698 S:      Maintained
6699 F:      drivers/edac/i82443bxgx_edac.c
6700
6701 EDAC-I82975X
6702 M:      "Arvind R." <arvino55@gmail.com>
6703 L:      linux-edac@vger.kernel.org
6704 S:      Maintained
6705 F:      drivers/edac/i82975x_edac.c
6706
6707 EDAC-IE31200
6708 M:      Jason Baron <jbaron@akamai.com>
6709 L:      linux-edac@vger.kernel.org
6710 S:      Maintained
6711 F:      drivers/edac/ie31200_edac.c
6712
6713 EDAC-IGEN6
6714 M:      Tony Luck <tony.luck@intel.com>
6715 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6716 L:      linux-edac@vger.kernel.org
6717 S:      Maintained
6718 F:      drivers/edac/igen6_edac.c
6719
6720 EDAC-MPC85XX
6721 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6722 L:      linux-edac@vger.kernel.org
6723 S:      Maintained
6724 F:      drivers/edac/mpc85xx_edac.[ch]
6725
6726 EDAC-PASEMI
6727 M:      Egor Martovetsky <egor@pasemi.com>
6728 L:      linux-edac@vger.kernel.org
6729 S:      Maintained
6730 F:      drivers/edac/pasemi_edac.c
6731
6732 EDAC-PND2
6733 M:      Tony Luck <tony.luck@intel.com>
6734 L:      linux-edac@vger.kernel.org
6735 S:      Maintained
6736 F:      drivers/edac/pnd2_edac.[ch]
6737
6738 EDAC-QCOM
6739 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6740 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6741 L:      linux-arm-msm@vger.kernel.org
6742 L:      linux-edac@vger.kernel.org
6743 S:      Maintained
6744 F:      drivers/edac/qcom_edac.c
6745
6746 EDAC-R82600
6747 M:      Tim Small <tim@buttersideup.com>
6748 L:      linux-edac@vger.kernel.org
6749 S:      Maintained
6750 F:      drivers/edac/r82600_edac.c
6751
6752 EDAC-SBRIDGE
6753 M:      Tony Luck <tony.luck@intel.com>
6754 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6755 L:      linux-edac@vger.kernel.org
6756 S:      Maintained
6757 F:      drivers/edac/sb_edac.c
6758
6759 EDAC-SIFIVE
6760 M:      Yash Shah <yash.shah@sifive.com>
6761 L:      linux-edac@vger.kernel.org
6762 S:      Supported
6763 F:      drivers/edac/sifive_edac.c
6764
6765 EDAC-SKYLAKE
6766 M:      Tony Luck <tony.luck@intel.com>
6767 L:      linux-edac@vger.kernel.org
6768 S:      Maintained
6769 F:      drivers/edac/skx_*.[ch]
6770
6771 EDAC-TI
6772 M:      Tero Kristo <kristo@kernel.org>
6773 L:      linux-edac@vger.kernel.org
6774 S:      Odd Fixes
6775 F:      drivers/edac/ti_edac.c
6776
6777 EDIROL UA-101/UA-1000 DRIVER
6778 M:      Clemens Ladisch <clemens@ladisch.de>
6779 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6780 S:      Maintained
6781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6782 F:      sound/usb/misc/ua101.c
6783
6784 EFI TEST DRIVER
6785 M:      Ivan Hu <ivan.hu@canonical.com>
6786 M:      Ard Biesheuvel <ardb@kernel.org>
6787 L:      linux-efi@vger.kernel.org
6788 S:      Maintained
6789 F:      drivers/firmware/efi/test/
6790
6791 EFI VARIABLE FILESYSTEM
6792 M:      Matthew Garrett <matthew.garrett@nebula.com>
6793 M:      Jeremy Kerr <jk@ozlabs.org>
6794 M:      Ard Biesheuvel <ardb@kernel.org>
6795 L:      linux-efi@vger.kernel.org
6796 S:      Maintained
6797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6798 F:      fs/efivarfs/
6799
6800 EFIFB FRAMEBUFFER DRIVER
6801 M:      Peter Jones <pjones@redhat.com>
6802 L:      linux-fbdev@vger.kernel.org
6803 S:      Maintained
6804 F:      drivers/video/fbdev/efifb.c
6805
6806 EFS FILESYSTEM
6807 S:      Orphan
6808 W:      http://aeschi.ch.eu.org/efs/
6809 F:      fs/efs/
6810
6811 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6812 M:      Douglas Miller <dougmill@linux.ibm.com>
6813 L:      netdev@vger.kernel.org
6814 S:      Maintained
6815 F:      drivers/net/ethernet/ibm/ehea/
6816
6817 EM28XX VIDEO4LINUX DRIVER
6818 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6819 L:      linux-media@vger.kernel.org
6820 S:      Maintained
6821 W:      https://linuxtv.org
6822 T:      git git://linuxtv.org/media_tree.git
6823 F:      Documentation/admin-guide/media/em28xx*
6824 F:      drivers/media/usb/em28xx/
6825
6826 EMBEDDED LINUX
6827 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6828 M:      Matt Mackall <mpm@selenic.com>
6829 M:      David Woodhouse <dwmw2@infradead.org>
6830 L:      linux-embedded@vger.kernel.org
6831 S:      Maintained
6832
6833 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6834 M:      Adrian Hunter <adrian.hunter@intel.com>
6835 M:      Ritesh Harjani <riteshh@codeaurora.org>
6836 M:      Asutosh Das <asutoshd@codeaurora.org>
6837 L:      linux-mmc@vger.kernel.org
6838 S:      Maintained
6839 F:      drivers/mmc/host/cqhci*
6840
6841 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6842 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6843 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6844 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6845 L:      linux-scsi@vger.kernel.org
6846 S:      Supported
6847 W:      http://www.broadcom.com
6848 F:      drivers/scsi/be2iscsi/
6849
6850 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6851 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6852 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6853 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6854 L:      netdev@vger.kernel.org
6855 S:      Supported
6856 W:      http://www.emulex.com
6857 F:      drivers/net/ethernet/emulex/benet/
6858
6859 EMULEX ONECONNECT ROCE DRIVER
6860 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6861 L:      linux-rdma@vger.kernel.org
6862 S:      Odd Fixes
6863 W:      http://www.broadcom.com
6864 F:      drivers/infiniband/hw/ocrdma/
6865 F:      include/uapi/rdma/ocrdma-abi.h
6866
6867 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6868 M:      James Smart <james.smart@broadcom.com>
6869 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6870 L:      linux-scsi@vger.kernel.org
6871 S:      Supported
6872 W:      http://www.broadcom.com
6873 F:      drivers/scsi/lpfc/
6874
6875 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
6876 M:      James Smart <james.smart@broadcom.com>
6877 M:      Ram Vegesna <ram.vegesna@broadcom.com>
6878 L:      linux-scsi@vger.kernel.org
6879 L:      target-devel@vger.kernel.org
6880 S:      Supported
6881 W:      http://www.broadcom.com
6882 F:      drivers/scsi/elx/
6883
6884 ENE CB710 FLASH CARD READER DRIVER
6885 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6886 S:      Maintained
6887 F:      drivers/misc/cb710/
6888 F:      drivers/mmc/host/cb710-mmc.*
6889 F:      include/linux/cb710.h
6890
6891 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6892 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6893 S:      Maintained
6894 F:      drivers/media/rc/ene_ir.*
6895
6896 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6897 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6898 L:      linuxppc-dev@lists.ozlabs.org
6899 S:      Maintained
6900 F:      drivers/tty/ehv_bytechan.c
6901
6902 EPSON S1D13XXX FRAMEBUFFER DRIVER
6903 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6904 S:      Maintained
6905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6906 F:      drivers/video/fbdev/s1d13xxxfb.c
6907 F:      include/video/s1d13xxxfb.h
6908
6909 EROFS FILE SYSTEM
6910 M:      Gao Xiang <xiang@kernel.org>
6911 M:      Chao Yu <chao@kernel.org>
6912 L:      linux-erofs@lists.ozlabs.org
6913 S:      Maintained
6914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6915 F:      Documentation/filesystems/erofs.rst
6916 F:      fs/erofs/
6917 F:      include/trace/events/erofs.h
6918
6919 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6920 M:      Jeff Layton <jlayton@kernel.org>
6921 S:      Maintained
6922 F:      include/linux/errseq.h
6923 F:      lib/errseq.c
6924
6925 ET131X NETWORK DRIVER
6926 M:      Mark Einon <mark.einon@gmail.com>
6927 S:      Odd Fixes
6928 F:      drivers/net/ethernet/agere/
6929
6930 ETAS ES58X CAN/USB DRIVER
6931 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
6932 L:      linux-can@vger.kernel.org
6933 S:      Maintained
6934 F:      drivers/net/can/usb/etas_es58x/
6935
6936 ETHERNET BRIDGE
6937 M:      Roopa Prabhu <roopa@nvidia.com>
6938 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
6939 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6940 L:      netdev@vger.kernel.org
6941 S:      Maintained
6942 W:      http://www.linuxfoundation.org/en/Net:Bridge
6943 F:      include/linux/netfilter_bridge/
6944 F:      net/bridge/
6945
6946 ETHERNET PHY LIBRARY
6947 M:      Andrew Lunn <andrew@lunn.ch>
6948 M:      Heiner Kallweit <hkallweit1@gmail.com>
6949 R:      Russell King <linux@armlinux.org.uk>
6950 L:      netdev@vger.kernel.org
6951 S:      Maintained
6952 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6953 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6954 F:      Documentation/devicetree/bindings/net/mdio*
6955 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6956 F:      Documentation/networking/phy.rst
6957 F:      drivers/net/mdio/
6958 F:      drivers/net/mdio/acpi_mdio.c
6959 F:      drivers/net/mdio/fwnode_mdio.c
6960 F:      drivers/net/mdio/of_mdio.c
6961 F:      drivers/net/pcs/
6962 F:      drivers/net/phy/
6963 F:      drivers/of/of_net.c
6964 F:      include/dt-bindings/net/qca-ar803x.h
6965 F:      include/linux/*mdio*.h
6966 F:      include/linux/mdio/*.h
6967 F:      include/linux/of_net.h
6968 F:      include/linux/phy.h
6969 F:      include/linux/phy_fixed.h
6970 F:      include/linux/platform_data/mdio-bcm-unimac.h
6971 F:      include/linux/platform_data/mdio-gpio.h
6972 F:      include/trace/events/mdio.h
6973 F:      include/uapi/linux/mdio.h
6974 F:      include/uapi/linux/mii.h
6975
6976 EXFAT FILE SYSTEM
6977 M:      Namjae Jeon <linkinjeon@kernel.org>
6978 M:      Sungjong Seo <sj1557.seo@samsung.com>
6979 L:      linux-fsdevel@vger.kernel.org
6980 S:      Maintained
6981 F:      fs/exfat/
6982
6983 EXT2 FILE SYSTEM
6984 M:      Jan Kara <jack@suse.com>
6985 L:      linux-ext4@vger.kernel.org
6986 S:      Maintained
6987 F:      Documentation/filesystems/ext2.rst
6988 F:      fs/ext2/
6989 F:      include/linux/ext2*
6990
6991 EXT4 FILE SYSTEM
6992 M:      "Theodore Ts'o" <tytso@mit.edu>
6993 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6994 L:      linux-ext4@vger.kernel.org
6995 S:      Maintained
6996 W:      http://ext4.wiki.kernel.org
6997 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6999 F:      Documentation/filesystems/ext4/
7000 F:      fs/ext4/
7001 F:      include/trace/events/ext4.h
7002
7003 Extended Verification Module (EVM)
7004 M:      Mimi Zohar <zohar@linux.ibm.com>
7005 L:      linux-integrity@vger.kernel.org
7006 S:      Supported
7007 F:      security/integrity/evm/
7008
7009 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7010 M:      Ard Biesheuvel <ardb@kernel.org>
7011 L:      linux-efi@vger.kernel.org
7012 S:      Maintained
7013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7014 F:      Documentation/admin-guide/efi-stub.rst
7015 F:      arch/*/include/asm/efi.h
7016 F:      arch/*/kernel/efi.c
7017 F:      arch/arm/boot/compressed/efi-header.S
7018 F:      arch/arm64/kernel/efi-entry.S
7019 F:      arch/x86/platform/efi/
7020 F:      drivers/firmware/efi/
7021 F:      include/linux/efi*.h
7022
7023 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7024 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7025 M:      Chanwoo Choi <cw00.choi@samsung.com>
7026 L:      linux-kernel@vger.kernel.org
7027 S:      Maintained
7028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7029 F:      Documentation/devicetree/bindings/extcon/
7030 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7031 F:      drivers/extcon/
7032 F:      include/linux/extcon.h
7033 F:      include/linux/extcon/
7034
7035 EXTRA BOOT CONFIG
7036 M:      Masami Hiramatsu <mhiramat@kernel.org>
7037 S:      Maintained
7038 F:      Documentation/admin-guide/bootconfig.rst
7039 F:      fs/proc/bootconfig.c
7040 F:      include/linux/bootconfig.h
7041 F:      lib/bootconfig.c
7042 F:      tools/bootconfig/*
7043 F:      tools/bootconfig/scripts/*
7044
7045 EXYNOS DP DRIVER
7046 M:      Jingoo Han <jingoohan1@gmail.com>
7047 L:      dri-devel@lists.freedesktop.org
7048 S:      Maintained
7049 F:      drivers/gpu/drm/exynos/exynos_dp*
7050
7051 EXYNOS SYSMMU (IOMMU) driver
7052 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7053 L:      iommu@lists.linux-foundation.org
7054 S:      Maintained
7055 F:      drivers/iommu/exynos-iommu.c
7056
7057 F2FS FILE SYSTEM
7058 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7059 M:      Chao Yu <chao@kernel.org>
7060 L:      linux-f2fs-devel@lists.sourceforge.net
7061 S:      Maintained
7062 W:      https://f2fs.wiki.kernel.org/
7063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7064 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7065 F:      Documentation/filesystems/f2fs.rst
7066 F:      fs/f2fs/
7067 F:      include/linux/f2fs_fs.h
7068 F:      include/trace/events/f2fs.h
7069 F:      include/uapi/linux/f2fs.h
7070
7071 F71805F HARDWARE MONITORING DRIVER
7072 M:      Jean Delvare <jdelvare@suse.com>
7073 L:      linux-hwmon@vger.kernel.org
7074 S:      Maintained
7075 F:      Documentation/hwmon/f71805f.rst
7076 F:      drivers/hwmon/f71805f.c
7077
7078 FADDR2LINE
7079 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7080 S:      Maintained
7081 F:      scripts/faddr2line
7082
7083 FAILOVER MODULE
7084 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7085 L:      netdev@vger.kernel.org
7086 S:      Supported
7087 F:      Documentation/networking/failover.rst
7088 F:      include/net/failover.h
7089 F:      net/core/failover.c
7090
7091 FANOTIFY
7092 M:      Jan Kara <jack@suse.cz>
7093 R:      Amir Goldstein <amir73il@gmail.com>
7094 R:      Matthew Bobrowski <repnop@google.com>
7095 L:      linux-fsdevel@vger.kernel.org
7096 S:      Maintained
7097 F:      fs/notify/fanotify/
7098 F:      include/linux/fanotify.h
7099 F:      include/uapi/linux/fanotify.h
7100
7101 FARSYNC SYNCHRONOUS DRIVER
7102 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7103 S:      Supported
7104 W:      http://www.farsite.co.uk/
7105 F:      drivers/net/wan/farsync.*
7106
7107 FAULT INJECTION SUPPORT
7108 M:      Akinobu Mita <akinobu.mita@gmail.com>
7109 S:      Supported
7110 F:      Documentation/fault-injection/
7111 F:      lib/fault-inject.c
7112
7113 FBTFT Framebuffer drivers
7114 L:      dri-devel@lists.freedesktop.org
7115 L:      linux-fbdev@vger.kernel.org
7116 S:      Orphan
7117 F:      drivers/staging/fbtft/
7118
7119 FC0011 TUNER DRIVER
7120 M:      Michael Buesch <m@bues.ch>
7121 L:      linux-media@vger.kernel.org
7122 S:      Maintained
7123 F:      drivers/media/tuners/fc0011.c
7124 F:      drivers/media/tuners/fc0011.h
7125
7126 FC2580 MEDIA DRIVER
7127 M:      Antti Palosaari <crope@iki.fi>
7128 L:      linux-media@vger.kernel.org
7129 S:      Maintained
7130 W:      https://linuxtv.org
7131 W:      http://palosaari.fi/linux/
7132 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7133 T:      git git://linuxtv.org/anttip/media_tree.git
7134 F:      drivers/media/tuners/fc2580*
7135
7136 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7137 M:      Hannes Reinecke <hare@suse.de>
7138 L:      linux-scsi@vger.kernel.org
7139 S:      Supported
7140 W:      www.Open-FCoE.org
7141 F:      drivers/scsi/fcoe/
7142 F:      drivers/scsi/libfc/
7143 F:      include/scsi/fc/
7144 F:      include/scsi/libfc.h
7145 F:      include/scsi/libfcoe.h
7146 F:      include/uapi/scsi/fc/
7147
7148 FILE LOCKING (flock() and fcntl()/lockf())
7149 M:      Jeff Layton <jlayton@kernel.org>
7150 M:      "J. Bruce Fields" <bfields@fieldses.org>
7151 L:      linux-fsdevel@vger.kernel.org
7152 S:      Maintained
7153 F:      fs/fcntl.c
7154 F:      fs/locks.c
7155 F:      include/linux/fcntl.h
7156 F:      include/uapi/linux/fcntl.h
7157
7158 FILESYSTEM DIRECT ACCESS (DAX)
7159 M:      Dan Williams <dan.j.williams@intel.com>
7160 R:      Matthew Wilcox <willy@infradead.org>
7161 R:      Jan Kara <jack@suse.cz>
7162 L:      linux-fsdevel@vger.kernel.org
7163 L:      nvdimm@lists.linux.dev
7164 S:      Supported
7165 F:      fs/dax.c
7166 F:      include/linux/dax.h
7167 F:      include/trace/events/fs_dax.h
7168
7169 FILESYSTEMS (VFS and infrastructure)
7170 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7171 L:      linux-fsdevel@vger.kernel.org
7172 S:      Maintained
7173 F:      fs/*
7174 F:      include/linux/fs.h
7175 F:      include/linux/fs_types.h
7176 F:      include/uapi/linux/fs.h
7177 F:      include/uapi/linux/openat2.h
7178 X:      fs/io-wq.c
7179 X:      fs/io-wq.h
7180 X:      fs/io_uring.c
7181
7182 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7183 M:      Riku Voipio <riku.voipio@iki.fi>
7184 L:      linux-hwmon@vger.kernel.org
7185 S:      Maintained
7186 F:      drivers/hwmon/f75375s.c
7187 F:      include/linux/f75375s.h
7188
7189 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7190 M:      Clemens Ladisch <clemens@ladisch.de>
7191 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7192 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7193 S:      Maintained
7194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7195 F:      include/uapi/sound/firewire.h
7196 F:      sound/firewire/
7197
7198 FIREWIRE MEDIA DRIVERS (firedtv)
7199 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7200 L:      linux-media@vger.kernel.org
7201 L:      linux1394-devel@lists.sourceforge.net
7202 S:      Maintained
7203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7204 F:      drivers/media/firewire/
7205
7206 FIREWIRE SBP-2 TARGET
7207 M:      Chris Boot <bootc@bootc.net>
7208 L:      linux-scsi@vger.kernel.org
7209 L:      target-devel@vger.kernel.org
7210 L:      linux1394-devel@lists.sourceforge.net
7211 S:      Maintained
7212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7213 F:      drivers/target/sbp/
7214
7215 FIREWIRE SUBSYSTEM
7216 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7217 L:      linux1394-devel@lists.sourceforge.net
7218 S:      Maintained
7219 W:      http://ieee1394.wiki.kernel.org/
7220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7221 F:      drivers/firewire/
7222 F:      include/linux/firewire.h
7223 F:      include/uapi/linux/firewire*.h
7224 F:      tools/firewire/
7225
7226 FIRMWARE FRAMEWORK FOR ARMV8-A
7227 M:      Sudeep Holla <sudeep.holla@arm.com>
7228 L:      linux-arm-kernel@lists.infradead.org
7229 S:      Maintained
7230 F:      drivers/firmware/arm_ffa/
7231 F:      include/linux/arm_ffa.h
7232
7233 FIRMWARE LOADER (request_firmware)
7234 M:      Luis Chamberlain <mcgrof@kernel.org>
7235 L:      linux-kernel@vger.kernel.org
7236 S:      Maintained
7237 F:      Documentation/firmware_class/
7238 F:      drivers/base/firmware_loader/
7239 F:      include/linux/firmware.h
7240
7241 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7242 M:      Joshua Morris <josh.h.morris@us.ibm.com>
7243 M:      Philip Kelleher <pjk1939@linux.ibm.com>
7244 S:      Maintained
7245 F:      drivers/block/rsxx/
7246
7247 FLEXTIMER FTM-QUADDEC DRIVER
7248 M:      Patrick Havelange <patrick.havelange@essensium.com>
7249 L:      linux-iio@vger.kernel.org
7250 S:      Maintained
7251 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7252 F:      drivers/counter/ftm-quaddec.c
7253
7254 FLOPPY DRIVER
7255 M:      Denis Efremov <efremov@linux.com>
7256 L:      linux-block@vger.kernel.org
7257 S:      Odd Fixes
7258 F:      drivers/block/floppy.c
7259
7260 FLYSKY FSIA6B RC RECEIVER
7261 M:      Markus Koch <markus@notsyncing.net>
7262 L:      linux-input@vger.kernel.org
7263 S:      Maintained
7264 F:      drivers/input/joystick/fsia6b.c
7265
7266 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7267 M:      Geoffrey D. Bennett <g@b4.vu>
7268 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7269 S:      Maintained
7270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7271 F:      sound/usb/mixer_scarlett_gen2.c
7272
7273 FORCEDETH GIGABIT ETHERNET DRIVER
7274 M:      Rain River <rain.1986.08.12@gmail.com>
7275 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7276 L:      netdev@vger.kernel.org
7277 S:      Maintained
7278 F:      drivers/net/ethernet/nvidia/*
7279
7280 FPGA DFL DRIVERS
7281 M:      Wu Hao <hao.wu@intel.com>
7282 R:      Tom Rix <trix@redhat.com>
7283 L:      linux-fpga@vger.kernel.org
7284 S:      Maintained
7285 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7286 F:      Documentation/fpga/dfl.rst
7287 F:      drivers/fpga/dfl*
7288 F:      drivers/uio/uio_dfl.c
7289 F:      include/linux/dfl.h
7290 F:      include/uapi/linux/fpga-dfl.h
7291
7292 FPGA MANAGER FRAMEWORK
7293 M:      Moritz Fischer <mdf@kernel.org>
7294 R:      Tom Rix <trix@redhat.com>
7295 L:      linux-fpga@vger.kernel.org
7296 S:      Maintained
7297 W:      http://www.rocketboards.org
7298 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7300 F:      Documentation/devicetree/bindings/fpga/
7301 F:      Documentation/driver-api/fpga/
7302 F:      Documentation/fpga/
7303 F:      drivers/fpga/
7304 F:      include/linux/fpga/
7305
7306 FPU EMULATOR
7307 M:      Bill Metzenthen <billm@melbpc.org.au>
7308 S:      Maintained
7309 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7310 F:      arch/x86/math-emu/
7311
7312 FRAMEBUFFER LAYER
7313 L:      dri-devel@lists.freedesktop.org
7314 L:      linux-fbdev@vger.kernel.org
7315 S:      Orphan
7316 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7317 T:      git git://anongit.freedesktop.org/drm/drm-misc
7318 F:      Documentation/fb/
7319 F:      drivers/video/
7320 F:      include/linux/fb.h
7321 F:      include/uapi/linux/fb.h
7322 F:      include/uapi/video/
7323 F:      include/video/
7324
7325 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7326 M:      Horia Geantă <horia.geanta@nxp.com>
7327 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7328 L:      linux-crypto@vger.kernel.org
7329 S:      Maintained
7330 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7331 F:      drivers/crypto/caam/
7332
7333 FREESCALE COLDFIRE M5441X MMC DRIVER
7334 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7335 L:      linux-mmc@vger.kernel.org
7336 S:      Maintained
7337 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7338 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7339
7340 FREESCALE DIU FRAMEBUFFER DRIVER
7341 M:      Timur Tabi <timur@kernel.org>
7342 L:      linux-fbdev@vger.kernel.org
7343 S:      Maintained
7344 F:      drivers/video/fbdev/fsl-diu-fb.*
7345
7346 FREESCALE DMA DRIVER
7347 M:      Li Yang <leoyang.li@nxp.com>
7348 M:      Zhang Wei <zw@zh-kernel.org>
7349 L:      linuxppc-dev@lists.ozlabs.org
7350 S:      Maintained
7351 F:      drivers/dma/fsldma.*
7352
7353 FREESCALE DSPI DRIVER
7354 M:      Vladimir Oltean <olteanv@gmail.com>
7355 L:      linux-spi@vger.kernel.org
7356 S:      Maintained
7357 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7358 F:      drivers/spi/spi-fsl-dspi.c
7359 F:      include/linux/spi/spi-fsl-dspi.h
7360
7361 FREESCALE ENETC ETHERNET DRIVERS
7362 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7363 L:      netdev@vger.kernel.org
7364 S:      Maintained
7365 F:      drivers/net/ethernet/freescale/enetc/
7366
7367 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7368 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7369 L:      netdev@vger.kernel.org
7370 S:      Maintained
7371 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7372 F:      drivers/net/ethernet/freescale/gianfar*
7373
7374 FREESCALE GPMI NAND DRIVER
7375 M:      Han Xu <han.xu@nxp.com>
7376 L:      linux-mtd@lists.infradead.org
7377 S:      Maintained
7378 F:      drivers/mtd/nand/raw/gpmi-nand/*
7379
7380 FREESCALE I2C CPM DRIVER
7381 M:      Jochen Friedrich <jochen@scram.de>
7382 L:      linuxppc-dev@lists.ozlabs.org
7383 L:      linux-i2c@vger.kernel.org
7384 S:      Maintained
7385 F:      drivers/i2c/busses/i2c-cpm.c
7386
7387 FREESCALE IMX / MXC FEC DRIVER
7388 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7389 L:      netdev@vger.kernel.org
7390 S:      Maintained
7391 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
7392 F:      drivers/net/ethernet/freescale/fec.h
7393 F:      drivers/net/ethernet/freescale/fec_main.c
7394 F:      drivers/net/ethernet/freescale/fec_ptp.c
7395
7396 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7397 M:      Sascha Hauer <s.hauer@pengutronix.de>
7398 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7399 L:      linux-fbdev@vger.kernel.org
7400 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7401 S:      Maintained
7402 F:      drivers/video/fbdev/imxfb.c
7403 F:      include/linux/platform_data/video-imxfb.h
7404
7405 FREESCALE IMX DDR PMU DRIVER
7406 M:      Frank Li <Frank.li@nxp.com>
7407 L:      linux-arm-kernel@lists.infradead.org
7408 S:      Maintained
7409 F:      Documentation/admin-guide/perf/imx-ddr.rst
7410 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7411 F:      drivers/perf/fsl_imx8_ddr_perf.c
7412
7413 FREESCALE IMX I2C DRIVER
7414 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7415 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7416 L:      linux-i2c@vger.kernel.org
7417 S:      Maintained
7418 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7419 F:      drivers/i2c/busses/i2c-imx.c
7420
7421 FREESCALE IMX LPI2C DRIVER
7422 M:      Dong Aisheng <aisheng.dong@nxp.com>
7423 L:      linux-i2c@vger.kernel.org
7424 L:      linux-imx@nxp.com
7425 S:      Maintained
7426 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7427 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7428
7429 FREESCALE MPC I2C DRIVER
7430 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7431 L:      linux-i2c@vger.kernel.org
7432 S:      Maintained
7433 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7434 F:      drivers/i2c/busses/i2c-mpc.c
7435
7436 FREESCALE QORIQ DPAA ETHERNET DRIVER
7437 M:      Madalin Bucur <madalin.bucur@nxp.com>
7438 L:      netdev@vger.kernel.org
7439 S:      Maintained
7440 F:      drivers/net/ethernet/freescale/dpaa
7441
7442 FREESCALE QORIQ DPAA FMAN DRIVER
7443 M:      Madalin Bucur <madalin.bucur@nxp.com>
7444 L:      netdev@vger.kernel.org
7445 S:      Maintained
7446 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7447 F:      drivers/net/ethernet/freescale/fman
7448
7449 FREESCALE QORIQ PTP CLOCK DRIVER
7450 M:      Yangbo Lu <yangbo.lu@nxp.com>
7451 L:      netdev@vger.kernel.org
7452 S:      Maintained
7453 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7454 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7455 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7456 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7457 F:      drivers/ptp/ptp_qoriq.c
7458 F:      drivers/ptp/ptp_qoriq_debugfs.c
7459 F:      include/linux/fsl/ptp_qoriq.h
7460
7461 FREESCALE QUAD SPI DRIVER
7462 M:      Han Xu <han.xu@nxp.com>
7463 L:      linux-spi@vger.kernel.org
7464 S:      Maintained
7465 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7466 F:      drivers/spi/spi-fsl-qspi.c
7467
7468 FREESCALE QUICC ENGINE LIBRARY
7469 M:      Qiang Zhao <qiang.zhao@nxp.com>
7470 L:      linuxppc-dev@lists.ozlabs.org
7471 S:      Maintained
7472 F:      drivers/soc/fsl/qe/
7473 F:      include/soc/fsl/*qe*.h
7474 F:      include/soc/fsl/*ucc*.h
7475
7476 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7477 M:      Li Yang <leoyang.li@nxp.com>
7478 L:      netdev@vger.kernel.org
7479 L:      linuxppc-dev@lists.ozlabs.org
7480 S:      Maintained
7481 F:      drivers/net/ethernet/freescale/ucc_geth*
7482
7483 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7484 M:      Zhao Qiang <qiang.zhao@nxp.com>
7485 L:      netdev@vger.kernel.org
7486 L:      linuxppc-dev@lists.ozlabs.org
7487 S:      Maintained
7488 F:      drivers/net/wan/fsl_ucc_hdlc*
7489
7490 FREESCALE QUICC ENGINE UCC UART DRIVER
7491 M:      Timur Tabi <timur@kernel.org>
7492 L:      linuxppc-dev@lists.ozlabs.org
7493 S:      Maintained
7494 F:      drivers/tty/serial/ucc_uart.c
7495
7496 FREESCALE SOC DRIVERS
7497 M:      Li Yang <leoyang.li@nxp.com>
7498 L:      linuxppc-dev@lists.ozlabs.org
7499 L:      linux-arm-kernel@lists.infradead.org
7500 S:      Maintained
7501 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7502 F:      Documentation/devicetree/bindings/soc/fsl/
7503 F:      drivers/soc/fsl/
7504 F:      include/linux/fsl/
7505
7506 FREESCALE SOC FS_ENET DRIVER
7507 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7508 L:      linuxppc-dev@lists.ozlabs.org
7509 L:      netdev@vger.kernel.org
7510 S:      Maintained
7511 F:      drivers/net/ethernet/freescale/fs_enet/
7512 F:      include/linux/fs_enet_pd.h
7513
7514 FREESCALE SOC SOUND DRIVERS
7515 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7516 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7517 R:      Fabio Estevam <festevam@gmail.com>
7518 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7519 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7520 L:      linuxppc-dev@lists.ozlabs.org
7521 S:      Maintained
7522 F:      sound/soc/fsl/fsl*
7523 F:      sound/soc/fsl/imx*
7524 F:      sound/soc/fsl/mpc8610_hpcd.c
7525
7526 FREESCALE USB PERIPHERAL DRIVERS
7527 M:      Li Yang <leoyang.li@nxp.com>
7528 L:      linux-usb@vger.kernel.org
7529 L:      linuxppc-dev@lists.ozlabs.org
7530 S:      Maintained
7531 F:      drivers/usb/gadget/udc/fsl*
7532
7533 FREESCALE USB PHY DRIVER
7534 M:      Ran Wang <ran.wang_1@nxp.com>
7535 L:      linux-usb@vger.kernel.org
7536 L:      linuxppc-dev@lists.ozlabs.org
7537 S:      Maintained
7538 F:      drivers/usb/phy/phy-fsl-usb*
7539
7540 FREEVXFS FILESYSTEM
7541 M:      Christoph Hellwig <hch@infradead.org>
7542 S:      Maintained
7543 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7544 F:      fs/freevxfs/
7545
7546 FREEZER
7547 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7548 M:      Pavel Machek <pavel@ucw.cz>
7549 L:      linux-pm@vger.kernel.org
7550 S:      Supported
7551 F:      Documentation/power/freezing-of-tasks.rst
7552 F:      include/linux/freezer.h
7553 F:      kernel/freezer.c
7554
7555 FRONTSWAP API
7556 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7557 L:      linux-kernel@vger.kernel.org
7558 S:      Maintained
7559 F:      include/linux/frontswap.h
7560 F:      mm/frontswap.c
7561
7562 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7563 M:      David Howells <dhowells@redhat.com>
7564 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7565 S:      Supported
7566 F:      Documentation/filesystems/caching/
7567 F:      fs/fscache/
7568 F:      include/linux/fscache*.h
7569
7570 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7571 M:      Theodore Y. Ts'o <tytso@mit.edu>
7572 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7573 M:      Eric Biggers <ebiggers@kernel.org>
7574 L:      linux-fscrypt@vger.kernel.org
7575 S:      Supported
7576 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7577 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7578 F:      Documentation/filesystems/fscrypt.rst
7579 F:      fs/crypto/
7580 F:      include/linux/fscrypt*.h
7581 F:      include/uapi/linux/fscrypt.h
7582
7583 FSI SUBSYSTEM
7584 M:      Jeremy Kerr <jk@ozlabs.org>
7585 M:      Joel Stanley <joel@jms.id.au>
7586 R:      Alistar Popple <alistair@popple.id.au>
7587 R:      Eddie James <eajames@linux.ibm.com>
7588 L:      linux-fsi@lists.ozlabs.org
7589 S:      Supported
7590 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7592 F:      drivers/fsi/
7593 F:      include/linux/fsi*.h
7594 F:      include/trace/events/fsi*.h
7595
7596 FSI-ATTACHED I2C DRIVER
7597 M:      Eddie James <eajames@linux.ibm.com>
7598 L:      linux-i2c@vger.kernel.org
7599 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7600 S:      Maintained
7601 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7602 F:      drivers/i2c/busses/i2c-fsi.c
7603
7604 FSI-ATTACHED SPI DRIVER
7605 M:      Eddie James <eajames@linux.ibm.com>
7606 L:      linux-spi@vger.kernel.org
7607 S:      Maintained
7608 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7609 F:      drivers/spi/spi-fsi.c
7610
7611 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7612 M:      Jan Kara <jack@suse.cz>
7613 R:      Amir Goldstein <amir73il@gmail.com>
7614 L:      linux-fsdevel@vger.kernel.org
7615 S:      Maintained
7616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7617 F:      fs/notify/
7618 F:      include/linux/fsnotify*.h
7619
7620 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7621 M:      Eric Biggers <ebiggers@kernel.org>
7622 M:      Theodore Y. Ts'o <tytso@mit.edu>
7623 L:      linux-fscrypt@vger.kernel.org
7624 S:      Supported
7625 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7626 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7627 F:      Documentation/filesystems/fsverity.rst
7628 F:      fs/verity/
7629 F:      include/linux/fsverity.h
7630 F:      include/uapi/linux/fsverity.h
7631
7632 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7633 M:      Michael Zaidman <michael.zaidman@gmail.com>
7634 L:      linux-i2c@vger.kernel.org
7635 L:      linux-input@vger.kernel.org
7636 S:      Maintained
7637 F:      drivers/hid/hid-ft260.c
7638
7639 FUJITSU LAPTOP EXTRAS
7640 M:      Jonathan Woithe <jwoithe@just42.net>
7641 L:      platform-driver-x86@vger.kernel.org
7642 S:      Maintained
7643 F:      drivers/platform/x86/fujitsu-laptop.c
7644
7645 FUJITSU M-5MO LS CAMERA ISP DRIVER
7646 M:      Kyungmin Park <kyungmin.park@samsung.com>
7647 M:      Heungjun Kim <riverful.kim@samsung.com>
7648 L:      linux-media@vger.kernel.org
7649 S:      Maintained
7650 F:      drivers/media/i2c/m5mols/
7651 F:      include/media/i2c/m5mols.h
7652
7653 FUJITSU TABLET EXTRAS
7654 M:      Robert Gerlach <khnz@gmx.de>
7655 L:      platform-driver-x86@vger.kernel.org
7656 S:      Maintained
7657 F:      drivers/platform/x86/fujitsu-tablet.c
7658
7659 FUSE: FILESYSTEM IN USERSPACE
7660 M:      Miklos Szeredi <miklos@szeredi.hu>
7661 L:      linux-fsdevel@vger.kernel.org
7662 S:      Maintained
7663 W:      https://github.com/libfuse/
7664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7665 F:      Documentation/filesystems/fuse.rst
7666 F:      fs/fuse/
7667 F:      include/uapi/linux/fuse.h
7668
7669 FUTEX SUBSYSTEM
7670 M:      Thomas Gleixner <tglx@linutronix.de>
7671 M:      Ingo Molnar <mingo@redhat.com>
7672 R:      Peter Zijlstra <peterz@infradead.org>
7673 R:      Darren Hart <dvhart@infradead.org>
7674 R:      Davidlohr Bueso <dave@stgolabs.net>
7675 L:      linux-kernel@vger.kernel.org
7676 S:      Maintained
7677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7678 F:      Documentation/locking/*futex*
7679 F:      include/asm-generic/futex.h
7680 F:      include/linux/futex.h
7681 F:      include/uapi/linux/futex.h
7682 F:      kernel/futex.c
7683 F:      tools/perf/bench/futex*
7684 F:      tools/testing/selftests/futex/
7685
7686 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7687 M:      Tim Harvey <tharvey@gateworks.com>
7688 M:      Robert Jones <rjones@gateworks.com>
7689 S:      Maintained
7690 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7691 F:      drivers/mfd/gateworks-gsc.c
7692 F:      include/linux/mfd/gsc.h
7693 F:      Documentation/hwmon/gsc-hwmon.rst
7694 F:      drivers/hwmon/gsc-hwmon.c
7695 F:      include/linux/platform_data/gsc_hwmon.h
7696
7697 GCC PLUGINS
7698 M:      Kees Cook <keescook@chromium.org>
7699 L:      linux-hardening@vger.kernel.org
7700 S:      Maintained
7701 F:      Documentation/kbuild/gcc-plugins.rst
7702 F:      scripts/Makefile.gcc-plugins
7703 F:      scripts/gcc-plugins/
7704
7705 GCOV BASED KERNEL PROFILING
7706 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7707 S:      Maintained
7708 F:      Documentation/dev-tools/gcov.rst
7709 F:      kernel/gcov/
7710
7711 GDB KERNEL DEBUGGING HELPER SCRIPTS
7712 M:      Jan Kiszka <jan.kiszka@siemens.com>
7713 M:      Kieran Bingham <kbingham@kernel.org>
7714 S:      Supported
7715 F:      scripts/gdb/
7716
7717 GEMINI CRYPTO DRIVER
7718 M:      Corentin Labbe <clabbe@baylibre.com>
7719 L:      linux-crypto@vger.kernel.org
7720 S:      Maintained
7721 F:      drivers/crypto/gemini/
7722
7723 GEMTEK FM RADIO RECEIVER DRIVER
7724 M:      Hans Verkuil <hverkuil@xs4all.nl>
7725 L:      linux-media@vger.kernel.org
7726 S:      Maintained
7727 W:      https://linuxtv.org
7728 T:      git git://linuxtv.org/media_tree.git
7729 F:      drivers/media/radio/radio-gemtek*
7730
7731 GENERIC ARCHITECTURE TOPOLOGY
7732 M:      Sudeep Holla <sudeep.holla@arm.com>
7733 L:      linux-kernel@vger.kernel.org
7734 S:      Maintained
7735 F:      drivers/base/arch_topology.c
7736 F:      include/linux/arch_topology.h
7737
7738 GENERIC ENTRY CODE
7739 M:      Thomas Gleixner <tglx@linutronix.de>
7740 M:      Peter Zijlstra <peterz@infradead.org>
7741 M:      Andy Lutomirski <luto@kernel.org>
7742 L:      linux-kernel@vger.kernel.org
7743 S:      Maintained
7744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7745 F:      include/linux/entry-common.h
7746 F:      include/linux/entry-kvm.h
7747 F:      kernel/entry/
7748
7749 GENERIC GPIO I2C DRIVER
7750 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7751 S:      Supported
7752 F:      drivers/i2c/busses/i2c-gpio.c
7753 F:      include/linux/platform_data/i2c-gpio.h
7754
7755 GENERIC GPIO I2C MULTIPLEXER DRIVER
7756 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7757 L:      linux-i2c@vger.kernel.org
7758 S:      Supported
7759 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7760 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7761 F:      include/linux/platform_data/i2c-mux-gpio.h
7762
7763 GENERIC HDLC (WAN) DRIVERS
7764 M:      Krzysztof Halasa <khc@pm.waw.pl>
7765 S:      Maintained
7766 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7767 F:      drivers/net/wan/c101.c
7768 F:      drivers/net/wan/hd6457*
7769 F:      drivers/net/wan/hdlc*
7770 F:      drivers/net/wan/n2.c
7771 F:      drivers/net/wan/pc300too.c
7772 F:      drivers/net/wan/pci200syn.c
7773 F:      drivers/net/wan/wanxl*
7774
7775 GENERIC INCLUDE/ASM HEADER FILES
7776 M:      Arnd Bergmann <arnd@arndb.de>
7777 L:      linux-arch@vger.kernel.org
7778 S:      Maintained
7779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7780 F:      include/asm-generic/
7781 F:      include/uapi/asm-generic/
7782
7783 GENERIC PHY FRAMEWORK
7784 M:      Kishon Vijay Abraham I <kishon@ti.com>
7785 M:      Vinod Koul <vkoul@kernel.org>
7786 L:      linux-phy@lists.infradead.org
7787 S:      Supported
7788 Q:      https://patchwork.kernel.org/project/linux-phy/list/
7789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7790 F:      Documentation/devicetree/bindings/phy/
7791 F:      drivers/phy/
7792 F:      include/linux/phy/
7793
7794 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7795 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7796 S:      Supported
7797 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7798
7799 GENERIC PM DOMAINS
7800 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7801 M:      Kevin Hilman <khilman@kernel.org>
7802 M:      Ulf Hansson <ulf.hansson@linaro.org>
7803 L:      linux-pm@vger.kernel.org
7804 S:      Supported
7805 F:      Documentation/devicetree/bindings/power/power?domain*
7806 F:      drivers/base/power/domain*.c
7807 F:      include/linux/pm_domain.h
7808
7809 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7810 M:      Eugen Hristev <eugen.hristev@microchip.com>
7811 L:      linux-input@vger.kernel.org
7812 S:      Maintained
7813 F:      drivers/input/touchscreen/resistive-adc-touch.c
7814
7815 GENERIC STRING LIBRARY
7816 R:      Andy Shevchenko <andy@kernel.org>
7817 S:      Maintained
7818 F:      lib/string.c
7819 F:      lib/string_helpers.c
7820 F:      lib/test_string.c
7821 F:      lib/test-string_helpers.c
7822
7823 GENERIC UIO DRIVER FOR PCI DEVICES
7824 M:      "Michael S. Tsirkin" <mst@redhat.com>
7825 L:      kvm@vger.kernel.org
7826 S:      Supported
7827 F:      drivers/uio/uio_pci_generic.c
7828
7829 GENERIC VDSO LIBRARY
7830 M:      Andy Lutomirski <luto@kernel.org>
7831 M:      Thomas Gleixner <tglx@linutronix.de>
7832 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7833 L:      linux-kernel@vger.kernel.org
7834 S:      Maintained
7835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7836 F:      include/asm-generic/vdso/vsyscall.h
7837 F:      include/vdso/
7838 F:      kernel/time/vsyscall.c
7839 F:      lib/vdso/
7840
7841 GENWQE (IBM Generic Workqueue Card)
7842 M:      Frank Haverkamp <haver@linux.ibm.com>
7843 S:      Supported
7844 F:      drivers/misc/genwqe/
7845
7846 GET_MAINTAINER SCRIPT
7847 M:      Joe Perches <joe@perches.com>
7848 S:      Maintained
7849 F:      scripts/get_maintainer.pl
7850
7851 GFS2 FILE SYSTEM
7852 M:      Bob Peterson <rpeterso@redhat.com>
7853 M:      Andreas Gruenbacher <agruenba@redhat.com>
7854 L:      cluster-devel@redhat.com
7855 S:      Supported
7856 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7857 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7858 F:      Documentation/filesystems/gfs2*
7859 F:      fs/gfs2/
7860 F:      include/uapi/linux/gfs2_ondisk.h
7861
7862 GIGABYTE WMI DRIVER
7863 M:      Thomas Weißschuh <thomas@weissschuh.net>
7864 L:      platform-driver-x86@vger.kernel.org
7865 S:      Maintained
7866 F:      drivers/platform/x86/gigabyte-wmi.c
7867
7868 GNSS SUBSYSTEM
7869 M:      Johan Hovold <johan@kernel.org>
7870 S:      Maintained
7871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7872 F:      Documentation/ABI/testing/sysfs-class-gnss
7873 F:      Documentation/devicetree/bindings/gnss/
7874 F:      drivers/gnss/
7875 F:      include/linux/gnss.h
7876
7877 GO7007 MPEG CODEC
7878 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7879 L:      linux-media@vger.kernel.org
7880 S:      Maintained
7881 F:      drivers/media/usb/go7007/
7882
7883 GOODIX TOUCHSCREEN
7884 M:      Bastien Nocera <hadess@hadess.net>
7885 L:      linux-input@vger.kernel.org
7886 S:      Maintained
7887 F:      drivers/input/touchscreen/goodix.c
7888
7889 GOOGLE ETHERNET DRIVERS
7890 M:      Jeroen de Borst <jeroendb@google.com>
7891 R:      Catherine Sullivan <csully@google.com>
7892 R:      David Awogbemila <awogbemila@google.com>
7893 L:      netdev@vger.kernel.org
7894 S:      Supported
7895 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7896 F:      drivers/net/ethernet/google
7897
7898 GPD POCKET FAN DRIVER
7899 M:      Hans de Goede <hdegoede@redhat.com>
7900 L:      platform-driver-x86@vger.kernel.org
7901 S:      Maintained
7902 F:      drivers/platform/x86/gpd-pocket-fan.c
7903
7904 GPIO ACPI SUPPORT
7905 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7906 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7907 L:      linux-gpio@vger.kernel.org
7908 L:      linux-acpi@vger.kernel.org
7909 S:      Maintained
7910 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
7911 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7912 F:      drivers/gpio/gpiolib-acpi.c
7913 F:      drivers/gpio/gpiolib-acpi.h
7914
7915 GPIO AGGREGATOR
7916 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7917 L:      linux-gpio@vger.kernel.org
7918 S:      Supported
7919 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7920 F:      drivers/gpio/gpio-aggregator.c
7921
7922 GPIO IR Transmitter
7923 M:      Sean Young <sean@mess.org>
7924 L:      linux-media@vger.kernel.org
7925 S:      Maintained
7926 F:      drivers/media/rc/gpio-ir-tx.c
7927
7928 GPIO MOCKUP DRIVER
7929 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7930 L:      linux-gpio@vger.kernel.org
7931 S:      Maintained
7932 F:      drivers/gpio/gpio-mockup.c
7933 F:      tools/testing/selftests/gpio/
7934
7935 GPIO REGMAP
7936 R:      Michael Walle <michael@walle.cc>
7937 S:      Maintained
7938 F:      drivers/gpio/gpio-regmap.c
7939 F:      include/linux/gpio/regmap.h
7940
7941 GPIO SUBSYSTEM
7942 M:      Linus Walleij <linus.walleij@linaro.org>
7943 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7944 L:      linux-gpio@vger.kernel.org
7945 S:      Maintained
7946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7947 F:      Documentation/ABI/obsolete/sysfs-gpio
7948 F:      Documentation/ABI/testing/gpio-cdev
7949 F:      Documentation/admin-guide/gpio/
7950 F:      Documentation/devicetree/bindings/gpio/
7951 F:      Documentation/driver-api/gpio/
7952 F:      drivers/gpio/
7953 F:      include/asm-generic/gpio.h
7954 F:      include/linux/gpio.h
7955 F:      include/linux/gpio/
7956 F:      include/linux/of_gpio.h
7957 F:      include/uapi/linux/gpio.h
7958 F:      tools/gpio/
7959
7960 GRE DEMULTIPLEXER DRIVER
7961 M:      Dmitry Kozlov <xeb@mail.ru>
7962 L:      netdev@vger.kernel.org
7963 S:      Maintained
7964 F:      include/net/gre.h
7965 F:      net/ipv4/gre_demux.c
7966 F:      net/ipv4/gre_offload.c
7967
7968 GRETH 10/100/1G Ethernet MAC device driver
7969 M:      Andreas Larsson <andreas@gaisler.com>
7970 L:      netdev@vger.kernel.org
7971 S:      Maintained
7972 F:      drivers/net/ethernet/aeroflex/
7973
7974 GREYBUS AUDIO PROTOCOLS DRIVERS
7975 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7976 M:      Mark Greer <mgreer@animalcreek.com>
7977 S:      Maintained
7978 F:      drivers/staging/greybus/audio_apbridgea.c
7979 F:      drivers/staging/greybus/audio_apbridgea.h
7980 F:      drivers/staging/greybus/audio_codec.c
7981 F:      drivers/staging/greybus/audio_codec.h
7982 F:      drivers/staging/greybus/audio_gb.c
7983 F:      drivers/staging/greybus/audio_manager.c
7984 F:      drivers/staging/greybus/audio_manager.h
7985 F:      drivers/staging/greybus/audio_manager_module.c
7986 F:      drivers/staging/greybus/audio_manager_private.h
7987 F:      drivers/staging/greybus/audio_manager_sysfs.c
7988 F:      drivers/staging/greybus/audio_module.c
7989 F:      drivers/staging/greybus/audio_topology.c
7990
7991 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7992 M:      Viresh Kumar <vireshk@kernel.org>
7993 S:      Maintained
7994 F:      drivers/staging/greybus/authentication.c
7995 F:      drivers/staging/greybus/bootrom.c
7996 F:      drivers/staging/greybus/firmware.h
7997 F:      drivers/staging/greybus/fw-core.c
7998 F:      drivers/staging/greybus/fw-download.c
7999 F:      drivers/staging/greybus/fw-management.c
8000 F:      drivers/staging/greybus/greybus_authentication.h
8001 F:      drivers/staging/greybus/greybus_firmware.h
8002 F:      drivers/staging/greybus/hid.c
8003 F:      drivers/staging/greybus/i2c.c
8004 F:      drivers/staging/greybus/spi.c
8005 F:      drivers/staging/greybus/spilib.c
8006 F:      drivers/staging/greybus/spilib.h
8007
8008 GREYBUS LOOPBACK DRIVER
8009 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8010 S:      Maintained
8011 F:      drivers/staging/greybus/loopback.c
8012
8013 GREYBUS PLATFORM DRIVERS
8014 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8015 S:      Maintained
8016 F:      drivers/staging/greybus/arche-apb-ctrl.c
8017 F:      drivers/staging/greybus/arche-platform.c
8018 F:      drivers/staging/greybus/arche_platform.h
8019
8020 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8021 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8022 S:      Maintained
8023 F:      drivers/staging/greybus/gpio.c
8024 F:      drivers/staging/greybus/light.c
8025 F:      drivers/staging/greybus/power_supply.c
8026 F:      drivers/staging/greybus/sdio.c
8027 F:      drivers/staging/greybus/spi.c
8028 F:      drivers/staging/greybus/spilib.c
8029
8030 GREYBUS SUBSYSTEM
8031 M:      Johan Hovold <johan@kernel.org>
8032 M:      Alex Elder <elder@kernel.org>
8033 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8034 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8035 S:      Maintained
8036 F:      drivers/greybus/
8037 F:      drivers/staging/greybus/
8038 F:      include/linux/greybus.h
8039 F:      include/linux/greybus/
8040
8041 GREYBUS UART PROTOCOLS DRIVERS
8042 M:      David Lin <dtwlin@gmail.com>
8043 S:      Maintained
8044 F:      drivers/staging/greybus/log.c
8045 F:      drivers/staging/greybus/uart.c
8046
8047 GS1662 VIDEO SERIALIZER
8048 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8049 L:      linux-media@vger.kernel.org
8050 S:      Maintained
8051 T:      git git://linuxtv.org/media_tree.git
8052 F:      drivers/media/spi/gs1662.c
8053
8054 GSPCA FINEPIX SUBDRIVER
8055 M:      Frank Zago <frank@zago.net>
8056 L:      linux-media@vger.kernel.org
8057 S:      Maintained
8058 T:      git git://linuxtv.org/media_tree.git
8059 F:      drivers/media/usb/gspca/finepix.c
8060
8061 GSPCA GL860 SUBDRIVER
8062 M:      Olivier Lorin <o.lorin@laposte.net>
8063 L:      linux-media@vger.kernel.org
8064 S:      Maintained
8065 T:      git git://linuxtv.org/media_tree.git
8066 F:      drivers/media/usb/gspca/gl860/
8067
8068 GSPCA M5602 SUBDRIVER
8069 M:      Erik Andren <erik.andren@gmail.com>
8070 L:      linux-media@vger.kernel.org
8071 S:      Maintained
8072 T:      git git://linuxtv.org/media_tree.git
8073 F:      drivers/media/usb/gspca/m5602/
8074
8075 GSPCA PAC207 SONIXB SUBDRIVER
8076 M:      Hans Verkuil <hverkuil@xs4all.nl>
8077 L:      linux-media@vger.kernel.org
8078 S:      Odd Fixes
8079 T:      git git://linuxtv.org/media_tree.git
8080 F:      drivers/media/usb/gspca/pac207.c
8081
8082 GSPCA SN9C20X SUBDRIVER
8083 M:      Brian Johnson <brijohn@gmail.com>
8084 L:      linux-media@vger.kernel.org
8085 S:      Maintained
8086 T:      git git://linuxtv.org/media_tree.git
8087 F:      drivers/media/usb/gspca/sn9c20x.c
8088
8089 GSPCA T613 SUBDRIVER
8090 M:      Leandro Costantino <lcostantino@gmail.com>
8091 L:      linux-media@vger.kernel.org
8092 S:      Maintained
8093 T:      git git://linuxtv.org/media_tree.git
8094 F:      drivers/media/usb/gspca/t613.c
8095
8096 GSPCA USB WEBCAM DRIVER
8097 M:      Hans Verkuil <hverkuil@xs4all.nl>
8098 L:      linux-media@vger.kernel.org
8099 S:      Odd Fixes
8100 T:      git git://linuxtv.org/media_tree.git
8101 F:      drivers/media/usb/gspca/
8102
8103 GTP (GPRS Tunneling Protocol)
8104 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8105 M:      Harald Welte <laforge@gnumonks.org>
8106 L:      osmocom-net-gprs@lists.osmocom.org
8107 S:      Maintained
8108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8109 F:      drivers/net/gtp.c
8110
8111 GUID PARTITION TABLE (GPT)
8112 M:      Davidlohr Bueso <dave@stgolabs.net>
8113 L:      linux-efi@vger.kernel.org
8114 S:      Maintained
8115 F:      block/partitions/efi.*
8116
8117 H8/300 ARCHITECTURE
8118 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8119 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8120 S:      Maintained
8121 W:      http://uclinux-h8.sourceforge.jp
8122 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8123 F:      arch/h8300/
8124 F:      drivers/clk/h8300/
8125 F:      drivers/clocksource/h8300_*.c
8126 F:      drivers/irqchip/irq-renesas-h8*.c
8127
8128 HABANALABS PCI DRIVER
8129 M:      Oded Gabbay <ogabbay@kernel.org>
8130 S:      Supported
8131 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8132 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8133 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8134 F:      drivers/misc/habanalabs/
8135 F:      include/uapi/misc/habanalabs.h
8136
8137 HACKRF MEDIA DRIVER
8138 M:      Antti Palosaari <crope@iki.fi>
8139 L:      linux-media@vger.kernel.org
8140 S:      Maintained
8141 W:      https://linuxtv.org
8142 W:      http://palosaari.fi/linux/
8143 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8144 T:      git git://linuxtv.org/anttip/media_tree.git
8145 F:      drivers/media/usb/hackrf/
8146
8147 HANTRO VPU CODEC DRIVER
8148 M:      Ezequiel Garcia <ezequiel@collabora.com>
8149 M:      Philipp Zabel <p.zabel@pengutronix.de>
8150 L:      linux-media@vger.kernel.org
8151 L:      linux-rockchip@lists.infradead.org
8152 S:      Maintained
8153 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8154 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8155 F:      drivers/staging/media/hantro/
8156
8157 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8158 M:      Frank Seidel <frank@f-seidel.de>
8159 L:      platform-driver-x86@vger.kernel.org
8160 S:      Maintained
8161 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8162 F:      drivers/platform/x86/hdaps.c
8163
8164 HARDWARE MONITORING
8165 M:      Jean Delvare <jdelvare@suse.com>
8166 M:      Guenter Roeck <linux@roeck-us.net>
8167 L:      linux-hwmon@vger.kernel.org
8168 S:      Maintained
8169 W:      http://hwmon.wiki.kernel.org/
8170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8171 F:      Documentation/devicetree/bindings/hwmon/
8172 F:      Documentation/hwmon/
8173 F:      drivers/hwmon/
8174 F:      include/linux/hwmon*.h
8175 F:      include/trace/events/hwmon*.h
8176 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8177
8178 HARDWARE RANDOM NUMBER GENERATOR CORE
8179 M:      Matt Mackall <mpm@selenic.com>
8180 M:      Herbert Xu <herbert@gondor.apana.org.au>
8181 L:      linux-crypto@vger.kernel.org
8182 S:      Odd fixes
8183 F:      Documentation/admin-guide/hw_random.rst
8184 F:      Documentation/devicetree/bindings/rng/
8185 F:      drivers/char/hw_random/
8186 F:      include/linux/hw_random.h
8187
8188 HARDWARE SPINLOCK CORE
8189 M:      Ohad Ben-Cohen <ohad@wizery.com>
8190 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8191 R:      Baolin Wang <baolin.wang7@gmail.com>
8192 L:      linux-remoteproc@vger.kernel.org
8193 S:      Maintained
8194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8195 F:      Documentation/devicetree/bindings/hwlock/
8196 F:      Documentation/locking/hwspinlock.rst
8197 F:      drivers/hwspinlock/
8198 F:      include/linux/hwspinlock.h
8199
8200 HARDWARE TRACING FACILITIES
8201 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8202 S:      Maintained
8203 F:      drivers/hwtracing/
8204
8205 HARMONY SOUND DRIVER
8206 L:      linux-parisc@vger.kernel.org
8207 S:      Maintained
8208 F:      sound/parisc/harmony.*
8209
8210 HDPVR USB VIDEO ENCODER DRIVER
8211 M:      Hans Verkuil <hverkuil@xs4all.nl>
8212 L:      linux-media@vger.kernel.org
8213 S:      Odd Fixes
8214 W:      https://linuxtv.org
8215 T:      git git://linuxtv.org/media_tree.git
8216 F:      drivers/media/usb/hdpvr/
8217
8218 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8219 M:      Matt Hsiao <matt.hsiao@hpe.com>
8220 S:      Supported
8221 F:      drivers/misc/hpilo.[ch]
8222
8223 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8224 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8225 S:      Supported
8226 F:      Documentation/watchdog/hpwdt.rst
8227 F:      drivers/watchdog/hpwdt.c
8228
8229 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8230 M:      Don Brace <don.brace@microchip.com>
8231 L:      storagedev@microchip.com
8232 L:      linux-scsi@vger.kernel.org
8233 S:      Supported
8234 F:      Documentation/scsi/hpsa.rst
8235 F:      drivers/scsi/hpsa*.[ch]
8236 F:      include/linux/cciss*.h
8237 F:      include/uapi/linux/cciss*.h
8238
8239 HFI1 DRIVER
8240 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8241 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8242 L:      linux-rdma@vger.kernel.org
8243 S:      Supported
8244 F:      drivers/infiniband/hw/hfi1
8245
8246 HFS FILESYSTEM
8247 L:      linux-fsdevel@vger.kernel.org
8248 S:      Orphan
8249 F:      Documentation/filesystems/hfs.rst
8250 F:      fs/hfs/
8251
8252 HFSPLUS FILESYSTEM
8253 L:      linux-fsdevel@vger.kernel.org
8254 S:      Orphan
8255 F:      Documentation/filesystems/hfsplus.rst
8256 F:      fs/hfsplus/
8257
8258 HGA FRAMEBUFFER DRIVER
8259 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8260 L:      linux-nvidia@lists.surfsouth.com
8261 S:      Maintained
8262 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8263 F:      drivers/video/fbdev/hgafb.c
8264
8265 HIBERNATION (aka Software Suspend, aka swsusp)
8266 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
8267 M:      Pavel Machek <pavel@ucw.cz>
8268 L:      linux-pm@vger.kernel.org
8269 S:      Supported
8270 B:      https://bugzilla.kernel.org
8271 F:      arch/*/include/asm/suspend*.h
8272 F:      arch/x86/power/
8273 F:      drivers/base/power/
8274 F:      include/linux/freezer.h
8275 F:      include/linux/pm.h
8276 F:      include/linux/suspend.h
8277 F:      kernel/power/
8278
8279 HID CORE LAYER
8280 M:      Jiri Kosina <jikos@kernel.org>
8281 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8282 L:      linux-input@vger.kernel.org
8283 S:      Maintained
8284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8285 F:      drivers/hid/
8286 F:      include/linux/hid*
8287 F:      include/uapi/linux/hid*
8288
8289 HID PLAYSTATION DRIVER
8290 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8291 L:      linux-input@vger.kernel.org
8292 S:      Supported
8293 F:      drivers/hid/hid-playstation.c
8294
8295 HID SENSOR HUB DRIVERS
8296 M:      Jiri Kosina <jikos@kernel.org>
8297 M:      Jonathan Cameron <jic23@kernel.org>
8298 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8299 L:      linux-input@vger.kernel.org
8300 L:      linux-iio@vger.kernel.org
8301 S:      Maintained
8302 F:      Documentation/hid/hid-sensor*
8303 F:      drivers/hid/hid-sensor-*
8304 F:      drivers/iio/*/hid-*
8305 F:      include/linux/hid-sensor-*
8306
8307 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8308 M:      Thomas Gleixner <tglx@linutronix.de>
8309 L:      linux-kernel@vger.kernel.org
8310 S:      Maintained
8311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8312 F:      Documentation/timers/
8313 F:      include/linux/clockchips.h
8314 F:      include/linux/hrtimer.h
8315 F:      kernel/time/clockevents.c
8316 F:      kernel/time/hrtimer.c
8317 F:      kernel/time/timer_*.c
8318
8319 HIGH-SPEED SCC DRIVER FOR AX.25
8320 L:      linux-hams@vger.kernel.org
8321 S:      Orphan
8322 F:      drivers/net/hamradio/dmascc.c
8323 F:      drivers/net/hamradio/scc.c
8324
8325 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8326 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8327 S:      Supported
8328 W:      http://www.highpoint-tech.com
8329 F:      Documentation/scsi/hptiop.rst
8330 F:      drivers/scsi/hptiop.c
8331
8332 HIPPI
8333 M:      Jes Sorensen <jes@trained-monkey.org>
8334 L:      linux-hippi@sunsite.dk
8335 S:      Maintained
8336 F:      drivers/net/hippi/
8337 F:      include/linux/hippidevice.h
8338 F:      include/uapi/linux/if_hippi.h
8339 F:      net/802/hippi.c
8340
8341 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8342 M:      Kurt Kanzenbach <kurt@linutronix.de>
8343 L:      netdev@vger.kernel.org
8344 S:      Maintained
8345 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8346 F:      drivers/net/dsa/hirschmann/*
8347 F:      include/linux/platform_data/hirschmann-hellcreek.h
8348 F:      net/dsa/tag_hellcreek.c
8349
8350 HISILICON DMA DRIVER
8351 M:      Zhou Wang <wangzhou1@hisilicon.com>
8352 L:      dmaengine@vger.kernel.org
8353 S:      Maintained
8354 F:      drivers/dma/hisi_dma.c
8355
8356 HISILICON GPIO DRIVER
8357 M:      Luo Jiaxing <luojiaxing@huawei.com>
8358 L:      linux-gpio@vger.kernel.org
8359 S:      Maintained
8360 F:      drivers/gpio/gpio-hisi.c
8361
8362 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8363 M:      Zaibo Xu <xuzaibo@huawei.com>
8364 L:      linux-crypto@vger.kernel.org
8365 S:      Maintained
8366 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8367 F:      drivers/crypto/hisilicon/hpre/hpre.h
8368 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8369 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8370
8371 HISILICON I2C CONTROLLER DRIVER
8372 M:      Yicong Yang <yangyicong@hisilicon.com>
8373 L:      linux-i2c@vger.kernel.org
8374 S:      Maintained
8375 W:      https://www.hisilicon.com
8376 F:      drivers/i2c/busses/i2c-hisi.c
8377
8378 HISILICON LPC BUS DRIVER
8379 M:      john.garry@huawei.com
8380 S:      Maintained
8381 W:      http://www.hisilicon.com
8382 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8383 F:      drivers/bus/hisi_lpc.c
8384
8385 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8386 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8387 M:      Salil Mehta <salil.mehta@huawei.com>
8388 L:      netdev@vger.kernel.org
8389 S:      Maintained
8390 W:      http://www.hisilicon.com
8391 F:      drivers/net/ethernet/hisilicon/hns3/
8392
8393 HISILICON NETWORK SUBSYSTEM DRIVER
8394 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8395 M:      Salil Mehta <salil.mehta@huawei.com>
8396 L:      netdev@vger.kernel.org
8397 S:      Maintained
8398 W:      http://www.hisilicon.com
8399 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8400 F:      drivers/net/ethernet/hisilicon/
8401
8402 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8403 M:      John Stultz <john.stultz@linaro.org>
8404 L:      linux-kernel@vger.kernel.org
8405 S:      Maintained
8406 F:      drivers/misc/hisi_hikey_usb.c
8407 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8408
8409 HISILICON PMU DRIVER
8410 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8411 S:      Supported
8412 W:      http://www.hisilicon.com
8413 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8414 F:      drivers/perf/hisilicon
8415
8416 HISILICON QM AND ZIP Controller DRIVER
8417 M:      Zhou Wang <wangzhou1@hisilicon.com>
8418 L:      linux-crypto@vger.kernel.org
8419 S:      Maintained
8420 F:      Documentation/ABI/testing/debugfs-hisi-zip
8421 F:      drivers/crypto/hisilicon/qm.c
8422 F:      drivers/crypto/hisilicon/qm.h
8423 F:      drivers/crypto/hisilicon/sgl.c
8424 F:      drivers/crypto/hisilicon/zip/
8425
8426 HISILICON ROCE DRIVER
8427 M:      Lijun Ou <oulijun@huawei.com>
8428 M:      Weihang Li <liweihang@huawei.com>
8429 L:      linux-rdma@vger.kernel.org
8430 S:      Maintained
8431 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8432 F:      drivers/infiniband/hw/hns/
8433
8434 HISILICON SAS Controller
8435 M:      John Garry <john.garry@huawei.com>
8436 S:      Supported
8437 W:      http://www.hisilicon.com
8438 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8439 F:      drivers/scsi/hisi_sas/
8440
8441 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8442 M:      Zaibo Xu <xuzaibo@huawei.com>
8443 L:      linux-crypto@vger.kernel.org
8444 S:      Maintained
8445 F:      Documentation/ABI/testing/debugfs-hisi-sec
8446 F:      drivers/crypto/hisilicon/sec2/sec.h
8447 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8448 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8449 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8450
8451 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8452 M:      Jay Fang <f.fangjian@huawei.com>
8453 L:      linux-spi@vger.kernel.org
8454 S:      Maintained
8455 W:      http://www.hisilicon.com
8456 F:      drivers/spi/spi-hisi-kunpeng.c
8457
8458 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8459 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8460 L:      linux-kernel@vger.kernel.org
8461 S:      Maintained
8462 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8463 F:      drivers/spmi/hisi-spmi-controller.c
8464
8465 HISILICON STAGING DRIVERS FOR HIKEY 960/970
8466 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8467 S:      Maintained
8468 F:      drivers/staging/hikey9xx/
8469
8470 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8471 M:      Zaibo Xu <xuzaibo@huawei.com>
8472 S:      Maintained
8473 F:      drivers/crypto/hisilicon/trng/trng.c
8474
8475 HISILICON V3XX SPI NOR FLASH Controller Driver
8476 M:      John Garry <john.garry@huawei.com>
8477 S:      Maintained
8478 W:      http://www.hisilicon.com
8479 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8480
8481 HMM - Heterogeneous Memory Management
8482 M:      Jérôme Glisse <jglisse@redhat.com>
8483 L:      linux-mm@kvack.org
8484 S:      Maintained
8485 F:      Documentation/vm/hmm.rst
8486 F:      include/linux/hmm*
8487 F:      lib/test_hmm*
8488 F:      mm/hmm*
8489 F:      tools/testing/selftests/vm/*hmm*
8490
8491 HOST AP DRIVER
8492 M:      Jouni Malinen <j@w1.fi>
8493 L:      linux-wireless@vger.kernel.org
8494 S:      Obsolete
8495 W:      http://w1.fi/hostap-driver.html
8496 F:      drivers/net/wireless/intersil/hostap/
8497
8498 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8499 L:      platform-driver-x86@vger.kernel.org
8500 S:      Orphan
8501 F:      drivers/platform/x86/tc1100-wmi.c
8502
8503 HPET:   High Precision Event Timers driver
8504 M:      Clemens Ladisch <clemens@ladisch.de>
8505 S:      Maintained
8506 F:      Documentation/timers/hpet.rst
8507 F:      drivers/char/hpet.c
8508 F:      include/linux/hpet.h
8509 F:      include/uapi/linux/hpet.h
8510
8511 HPET:   x86
8512 S:      Orphan
8513 F:      arch/x86/include/asm/hpet.h
8514 F:      arch/x86/kernel/hpet.c
8515
8516 HPFS FILESYSTEM
8517 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8518 S:      Maintained
8519 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8520 F:      fs/hpfs/
8521
8522 HSI SUBSYSTEM
8523 M:      Sebastian Reichel <sre@kernel.org>
8524 S:      Maintained
8525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8526 F:      Documentation/ABI/testing/sysfs-bus-hsi
8527 F:      Documentation/driver-api/hsi.rst
8528 F:      drivers/hsi/
8529 F:      include/linux/hsi/
8530 F:      include/uapi/linux/hsi/
8531
8532 HSO 3G MODEM DRIVER
8533 L:      linux-usb@vger.kernel.org
8534 S:      Orphan
8535 F:      drivers/net/usb/hso.c
8536
8537 HSR NETWORK PROTOCOL
8538 L:      netdev@vger.kernel.org
8539 S:      Orphan
8540 F:      net/hsr/
8541
8542 HT16K33 LED CONTROLLER DRIVER
8543 M:      Robin van der Gracht <robin@protonic.nl>
8544 S:      Maintained
8545 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8546 F:      drivers/auxdisplay/ht16k33.c
8547
8548 HTCPEN TOUCHSCREEN DRIVER
8549 M:      Pau Oliva Fora <pof@eslack.org>
8550 L:      linux-input@vger.kernel.org
8551 S:      Maintained
8552 F:      drivers/input/touchscreen/htcpen.c
8553
8554 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8555 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8556 L:      linux-iio@vger.kernel.org
8557 S:      Maintained
8558 W:      http://www.st.com/
8559 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8560 F:      drivers/iio/humidity/hts221*
8561
8562 HUAWEI ETHERNET DRIVER
8563 M:      Bin Luo <luobin9@huawei.com>
8564 L:      netdev@vger.kernel.org
8565 S:      Supported
8566 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8567 F:      drivers/net/ethernet/huawei/hinic/
8568
8569 HUGETLB FILESYSTEM
8570 M:      Mike Kravetz <mike.kravetz@oracle.com>
8571 L:      linux-mm@kvack.org
8572 S:      Maintained
8573 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8574 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8575 F:      Documentation/vm/hugetlbfs_reserv.rst
8576 F:      fs/hugetlbfs/
8577 F:      include/linux/hugetlb.h
8578 F:      mm/hugetlb.c
8579
8580 HVA ST MEDIA DRIVER
8581 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8582 L:      linux-media@vger.kernel.org
8583 S:      Supported
8584 W:      https://linuxtv.org
8585 T:      git git://linuxtv.org/media_tree.git
8586 F:      drivers/media/platform/sti/hva
8587
8588 HWPOISON MEMORY FAILURE HANDLING
8589 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8590 L:      linux-mm@kvack.org
8591 S:      Maintained
8592 F:      mm/hwpoison-inject.c
8593 F:      mm/memory-failure.c
8594
8595 HYCON HY46XX TOUCHSCREEN SUPPORT
8596 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
8597 L:      linux-input@vger.kernel.org
8598 S:      Maintained
8599 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8600 F:      drivers/input/touchscreen/hycon-hy46xx.c
8601
8602 HYGON PROCESSOR SUPPORT
8603 M:      Pu Wen <puwen@hygon.cn>
8604 L:      linux-kernel@vger.kernel.org
8605 S:      Maintained
8606 F:      arch/x86/kernel/cpu/hygon.c
8607
8608 HYNIX HI556 SENSOR DRIVER
8609 M:      Shawn Tu <shawnx.tu@intel.com>
8610 L:      linux-media@vger.kernel.org
8611 S:      Maintained
8612 T:      git git://linuxtv.org/media_tree.git
8613 F:      drivers/media/i2c/hi556.c
8614
8615 Hyper-V/Azure CORE AND DRIVERS
8616 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8617 M:      Haiyang Zhang <haiyangz@microsoft.com>
8618 M:      Stephen Hemminger <sthemmin@microsoft.com>
8619 M:      Wei Liu <wei.liu@kernel.org>
8620 M:      Dexuan Cui <decui@microsoft.com>
8621 L:      linux-hyperv@vger.kernel.org
8622 S:      Supported
8623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8624 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8625 F:      Documentation/ABI/testing/debugfs-hyperv
8626 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8627 F:      arch/x86/hyperv
8628 F:      arch/x86/include/asm/hyperv-tlfs.h
8629 F:      arch/x86/include/asm/mshyperv.h
8630 F:      arch/x86/include/asm/trace/hyperv.h
8631 F:      arch/x86/kernel/cpu/mshyperv.c
8632 F:      drivers/clocksource/hyperv_timer.c
8633 F:      drivers/hid/hid-hyperv.c
8634 F:      drivers/hv/
8635 F:      drivers/input/serio/hyperv-keyboard.c
8636 F:      drivers/iommu/hyperv-iommu.c
8637 F:      drivers/net/ethernet/microsoft/
8638 F:      drivers/net/hyperv/
8639 F:      drivers/pci/controller/pci-hyperv-intf.c
8640 F:      drivers/pci/controller/pci-hyperv.c
8641 F:      drivers/scsi/storvsc_drv.c
8642 F:      drivers/uio/uio_hv_generic.c
8643 F:      drivers/video/fbdev/hyperv_fb.c
8644 F:      include/asm-generic/hyperv-tlfs.h
8645 F:      include/asm-generic/mshyperv.h
8646 F:      include/clocksource/hyperv_timer.h
8647 F:      include/linux/hyperv.h
8648 F:      include/uapi/linux/hyperv.h
8649 F:      net/vmw_vsock/hyperv_transport.c
8650 F:      tools/hv/
8651
8652 HYPERBUS SUPPORT
8653 M:      Vignesh Raghavendra <vigneshr@ti.com>
8654 L:      linux-mtd@lists.infradead.org
8655 S:      Supported
8656 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8657 C:      irc://irc.oftc.net/mtd
8658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8659 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8660 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8661 F:      drivers/mtd/hyperbus/
8662 F:      include/linux/mtd/hyperbus.h
8663
8664 HYPERVISOR VIRTUAL CONSOLE DRIVER
8665 L:      linuxppc-dev@lists.ozlabs.org
8666 S:      Odd Fixes
8667 F:      drivers/tty/hvc/
8668
8669 I2C ACPI SUPPORT
8670 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8671 L:      linux-i2c@vger.kernel.org
8672 L:      linux-acpi@vger.kernel.org
8673 S:      Maintained
8674 F:      drivers/i2c/i2c-core-acpi.c
8675
8676 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8677 M:      Ajay Gupta <ajayg@nvidia.com>
8678 L:      linux-i2c@vger.kernel.org
8679 S:      Maintained
8680 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8681 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8682
8683 I2C MUXES
8684 M:      Peter Rosin <peda@axentia.se>
8685 L:      linux-i2c@vger.kernel.org
8686 S:      Maintained
8687 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8688 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8689 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8690 F:      Documentation/i2c/i2c-topology.rst
8691 F:      Documentation/i2c/muxes/
8692 F:      drivers/i2c/i2c-mux.c
8693 F:      drivers/i2c/muxes/
8694 F:      include/linux/i2c-mux.h
8695
8696 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8697 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8698 L:      linux-i2c@vger.kernel.org
8699 S:      Maintained
8700 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8701 F:      drivers/i2c/busses/i2c-mv64xxx.c
8702
8703 I2C OVER PARALLEL PORT
8704 M:      Jean Delvare <jdelvare@suse.com>
8705 L:      linux-i2c@vger.kernel.org
8706 S:      Maintained
8707 F:      Documentation/i2c/busses/i2c-parport.rst
8708 F:      drivers/i2c/busses/i2c-parport.c
8709
8710 I2C SUBSYSTEM
8711 M:      Wolfram Sang <wsa@kernel.org>
8712 L:      linux-i2c@vger.kernel.org
8713 S:      Maintained
8714 W:      https://i2c.wiki.kernel.org/
8715 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8717 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8718 F:      Documentation/i2c/
8719 F:      drivers/i2c/*
8720 F:      include/linux/i2c-dev.h
8721 F:      include/linux/i2c-smbus.h
8722 F:      include/linux/i2c.h
8723 F:      include/uapi/linux/i2c-*.h
8724 F:      include/uapi/linux/i2c.h
8725
8726 I2C SUBSYSTEM HOST DRIVERS
8727 L:      linux-i2c@vger.kernel.org
8728 S:      Odd Fixes
8729 W:      https://i2c.wiki.kernel.org/
8730 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8732 F:      Documentation/devicetree/bindings/i2c/
8733 F:      drivers/i2c/algos/
8734 F:      drivers/i2c/busses/
8735
8736 I2C-TAOS-EVM DRIVER
8737 M:      Jean Delvare <jdelvare@suse.com>
8738 L:      linux-i2c@vger.kernel.org
8739 S:      Maintained
8740 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8741 F:      drivers/i2c/busses/i2c-taos-evm.c
8742
8743 I2C-TINY-USB DRIVER
8744 M:      Till Harbaum <till@harbaum.org>
8745 L:      linux-i2c@vger.kernel.org
8746 S:      Maintained
8747 W:      http://www.harbaum.org/till/i2c_tiny_usb
8748 F:      drivers/i2c/busses/i2c-tiny-usb.c
8749
8750 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8751 M:      Jean Delvare <jdelvare@suse.com>
8752 L:      linux-i2c@vger.kernel.org
8753 S:      Maintained
8754 F:      Documentation/i2c/busses/i2c-ali1535.rst
8755 F:      Documentation/i2c/busses/i2c-ali1563.rst
8756 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8757 F:      Documentation/i2c/busses/i2c-amd756.rst
8758 F:      Documentation/i2c/busses/i2c-amd8111.rst
8759 F:      Documentation/i2c/busses/i2c-i801.rst
8760 F:      Documentation/i2c/busses/i2c-nforce2.rst
8761 F:      Documentation/i2c/busses/i2c-piix4.rst
8762 F:      Documentation/i2c/busses/i2c-sis5595.rst
8763 F:      Documentation/i2c/busses/i2c-sis630.rst
8764 F:      Documentation/i2c/busses/i2c-sis96x.rst
8765 F:      Documentation/i2c/busses/i2c-via.rst
8766 F:      Documentation/i2c/busses/i2c-viapro.rst
8767 F:      drivers/i2c/busses/i2c-ali1535.c
8768 F:      drivers/i2c/busses/i2c-ali1563.c
8769 F:      drivers/i2c/busses/i2c-ali15x3.c
8770 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8771 F:      drivers/i2c/busses/i2c-amd756.c
8772 F:      drivers/i2c/busses/i2c-amd8111.c
8773 F:      drivers/i2c/busses/i2c-i801.c
8774 F:      drivers/i2c/busses/i2c-isch.c
8775 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8776 F:      drivers/i2c/busses/i2c-nforce2.c
8777 F:      drivers/i2c/busses/i2c-piix4.c
8778 F:      drivers/i2c/busses/i2c-sis5595.c
8779 F:      drivers/i2c/busses/i2c-sis630.c
8780 F:      drivers/i2c/busses/i2c-sis96x.c
8781 F:      drivers/i2c/busses/i2c-via.c
8782 F:      drivers/i2c/busses/i2c-viapro.c
8783
8784 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8785 M:      Hans de Goede <hdegoede@redhat.com>
8786 L:      linux-i2c@vger.kernel.org
8787 S:      Maintained
8788 F:      drivers/i2c/busses/i2c-cht-wc.c
8789
8790 I2C/SMBUS ISMT DRIVER
8791 M:      Seth Heasley <seth.heasley@intel.com>
8792 M:      Neil Horman <nhorman@tuxdriver.com>
8793 L:      linux-i2c@vger.kernel.org
8794 F:      Documentation/i2c/busses/i2c-ismt.rst
8795 F:      drivers/i2c/busses/i2c-ismt.c
8796
8797 I2C/SMBUS STUB DRIVER
8798 M:      Jean Delvare <jdelvare@suse.com>
8799 L:      linux-i2c@vger.kernel.org
8800 S:      Maintained
8801 F:      drivers/i2c/i2c-stub.c
8802
8803 I3C DRIVER FOR CADENCE I3C MASTER IP
8804 M:      Przemysław Gaj <pgaj@cadence.com>
8805 S:      Maintained
8806 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8807 F:      drivers/i3c/master/i3c-master-cdns.c
8808
8809 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8810 M:      Vitor Soares <vitor.soares@synopsys.com>
8811 S:      Maintained
8812 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8813 F:      drivers/i3c/master/dw*
8814
8815 I3C SUBSYSTEM
8816 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
8817 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8818 S:      Maintained
8819 C:      irc://chat.freenode.net/linux-i3c
8820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8821 F:      Documentation/ABI/testing/sysfs-bus-i3c
8822 F:      Documentation/devicetree/bindings/i3c/
8823 F:      Documentation/driver-api/i3c
8824 F:      drivers/i3c/
8825 F:      include/linux/i3c/
8826
8827 IA64 (Itanium) PLATFORM
8828 L:      linux-ia64@vger.kernel.org
8829 S:      Orphan
8830 F:      Documentation/ia64/
8831 F:      arch/ia64/
8832
8833 IBM Power 842 compression accelerator
8834 M:      Haren Myneni <haren@us.ibm.com>
8835 S:      Supported
8836 F:      crypto/842.c
8837 F:      drivers/crypto/nx/Kconfig
8838 F:      drivers/crypto/nx/Makefile
8839 F:      drivers/crypto/nx/nx-842*
8840 F:      include/linux/sw842.h
8841 F:      lib/842/
8842
8843 IBM Power in-Nest Crypto Acceleration
8844 M:      Breno Leitão <leitao@debian.org>
8845 M:      Nayna Jain <nayna@linux.ibm.com>
8846 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8847 L:      linux-crypto@vger.kernel.org
8848 S:      Supported
8849 F:      drivers/crypto/nx/Kconfig
8850 F:      drivers/crypto/nx/Makefile
8851 F:      drivers/crypto/nx/nx-aes*
8852 F:      drivers/crypto/nx/nx-sha*
8853 F:      drivers/crypto/nx/nx.*
8854 F:      drivers/crypto/nx/nx_csbcpb.h
8855 F:      drivers/crypto/nx/nx_debugfs.c
8856
8857 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8858 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8859 L:      linux-pci@vger.kernel.org
8860 L:      linuxppc-dev@lists.ozlabs.org
8861 S:      Supported
8862 F:      drivers/pci/hotplug/rpadlpar*
8863
8864 IBM Power Linux RAID adapter
8865 M:      Brian King <brking@us.ibm.com>
8866 S:      Supported
8867 F:      drivers/scsi/ipr.*
8868
8869 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8870 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8871 L:      linux-pci@vger.kernel.org
8872 L:      linuxppc-dev@lists.ozlabs.org
8873 S:      Supported
8874 F:      drivers/pci/hotplug/rpaphp*
8875
8876 IBM Power SRIOV Virtual NIC Device Driver
8877 M:      Dany Madden <drt@linux.ibm.com>
8878 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8879 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
8880 L:      netdev@vger.kernel.org
8881 S:      Supported
8882 F:      drivers/net/ethernet/ibm/ibmvnic.*
8883
8884 IBM Power Virtual Accelerator Switchboard
8885 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8886 L:      linuxppc-dev@lists.ozlabs.org
8887 S:      Supported
8888 F:      arch/powerpc/include/asm/vas.h
8889 F:      arch/powerpc/platforms/powernv/copy-paste.h
8890 F:      arch/powerpc/platforms/powernv/vas*
8891
8892 IBM Power Virtual Ethernet Device Driver
8893 M:      Cristobal Forno <cforno12@linux.ibm.com>
8894 L:      netdev@vger.kernel.org
8895 S:      Supported
8896 F:      drivers/net/ethernet/ibm/ibmveth.*
8897
8898 IBM Power Virtual FC Device Drivers
8899 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8900 L:      linux-scsi@vger.kernel.org
8901 S:      Supported
8902 F:      drivers/scsi/ibmvscsi/ibmvfc*
8903
8904 IBM Power Virtual Management Channel Driver
8905 M:      Brad Warrum <bwarrum@linux.ibm.com>
8906 M:      Ritu Agarwal <rituagar@linux.ibm.com>
8907 S:      Supported
8908 F:      drivers/misc/ibmvmc.*
8909
8910 IBM Power Virtual SCSI Device Drivers
8911 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8912 L:      linux-scsi@vger.kernel.org
8913 S:      Supported
8914 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8915 F:      include/scsi/viosrp.h
8916
8917 IBM Power Virtual SCSI Device Target Driver
8918 M:      Michael Cyr <mikecyr@linux.ibm.com>
8919 L:      linux-scsi@vger.kernel.org
8920 L:      target-devel@vger.kernel.org
8921 S:      Supported
8922 F:      drivers/scsi/ibmvscsi_tgt/
8923
8924 IBM Power VMX Cryptographic instructions
8925 M:      Breno Leitão <leitao@debian.org>
8926 M:      Nayna Jain <nayna@linux.ibm.com>
8927 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8928 L:      linux-crypto@vger.kernel.org
8929 S:      Supported
8930 F:      drivers/crypto/vmx/Kconfig
8931 F:      drivers/crypto/vmx/Makefile
8932 F:      drivers/crypto/vmx/aes*
8933 F:      drivers/crypto/vmx/ghash*
8934 F:      drivers/crypto/vmx/ppc-xlate.pl
8935 F:      drivers/crypto/vmx/vmx.c
8936
8937 IBM ServeRAID RAID DRIVER
8938 S:      Orphan
8939 F:      drivers/scsi/ips.*
8940
8941 ICH LPC AND GPIO DRIVER
8942 M:      Peter Tyser <ptyser@xes-inc.com>
8943 S:      Maintained
8944 F:      drivers/gpio/gpio-ich.c
8945 F:      drivers/mfd/lpc_ich.c
8946
8947 ICY I2C DRIVER
8948 M:      Max Staudt <max@enpas.org>
8949 L:      linux-i2c@vger.kernel.org
8950 S:      Maintained
8951 F:      drivers/i2c/busses/i2c-icy.c
8952
8953 IDEAPAD LAPTOP EXTRAS DRIVER
8954 M:      Ike Panhc <ike.pan@canonical.com>
8955 L:      platform-driver-x86@vger.kernel.org
8956 S:      Maintained
8957 W:      http://launchpad.net/ideapad-laptop
8958 F:      drivers/platform/x86/ideapad-laptop.c
8959
8960 IDEAPAD LAPTOP SLIDEBAR DRIVER
8961 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8962 L:      linux-input@vger.kernel.org
8963 S:      Maintained
8964 W:      https://github.com/o2genum/ideapad-slidebar
8965 F:      drivers/input/misc/ideapad_slidebar.c
8966
8967 IDT VersaClock 5 CLOCK DRIVER
8968 M:      Luca Ceresoli <luca@lucaceresoli.net>
8969 S:      Maintained
8970 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
8971 F:      drivers/clk/clk-versaclock5.c
8972
8973 IEEE 802.15.4 SUBSYSTEM
8974 M:      Alexander Aring <alex.aring@gmail.com>
8975 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8976 L:      linux-wpan@vger.kernel.org
8977 S:      Maintained
8978 W:      https://linux-wpan.org/
8979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8981 F:      Documentation/networking/ieee802154.rst
8982 F:      drivers/net/ieee802154/
8983 F:      include/linux/ieee802154.h
8984 F:      include/linux/nl802154.h
8985 F:      include/net/af_ieee802154.h
8986 F:      include/net/cfg802154.h
8987 F:      include/net/ieee802154_netdev.h
8988 F:      include/net/mac802154.h
8989 F:      include/net/nl802154.h
8990 F:      net/ieee802154/
8991 F:      net/mac802154/
8992
8993 IFE PROTOCOL
8994 M:      Yotam Gigi <yotam.gi@gmail.com>
8995 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8996 F:      include/net/ife.h
8997 F:      include/uapi/linux/ife.h
8998 F:      net/ife
8999
9000 IGORPLUG-USB IR RECEIVER
9001 M:      Sean Young <sean@mess.org>
9002 L:      linux-media@vger.kernel.org
9003 S:      Maintained
9004 F:      drivers/media/rc/igorplugusb.c
9005
9006 IGUANAWORKS USB IR TRANSCEIVER
9007 M:      Sean Young <sean@mess.org>
9008 L:      linux-media@vger.kernel.org
9009 S:      Maintained
9010 F:      drivers/media/rc/iguanair.c
9011
9012 IIO DIGITAL POTENTIOMETER DAC
9013 M:      Peter Rosin <peda@axentia.se>
9014 L:      linux-iio@vger.kernel.org
9015 S:      Maintained
9016 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9017 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9018 F:      drivers/iio/dac/dpot-dac.c
9019
9020 IIO ENVELOPE DETECTOR
9021 M:      Peter Rosin <peda@axentia.se>
9022 L:      linux-iio@vger.kernel.org
9023 S:      Maintained
9024 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9025 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9026 F:      drivers/iio/adc/envelope-detector.c
9027
9028 IIO MULTIPLEXER
9029 M:      Peter Rosin <peda@axentia.se>
9030 L:      linux-iio@vger.kernel.org
9031 S:      Maintained
9032 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9033 F:      drivers/iio/multiplexer/iio-mux.c
9034
9035 IIO SCMI BASED DRIVER
9036 M:      Jyoti Bhayana <jbhayana@google.com>
9037 L:      linux-iio@vger.kernel.org
9038 S:      Maintained
9039 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9040
9041 IIO SUBSYSTEM AND DRIVERS
9042 M:      Jonathan Cameron <jic23@kernel.org>
9043 R:      Lars-Peter Clausen <lars@metafoo.de>
9044 L:      linux-iio@vger.kernel.org
9045 S:      Maintained
9046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9047 F:      Documentation/ABI/testing/configfs-iio*
9048 F:      Documentation/ABI/testing/sysfs-bus-iio*
9049 F:      Documentation/devicetree/bindings/iio/
9050 F:      drivers/iio/
9051 F:      drivers/staging/iio/
9052 F:      include/linux/iio/
9053 F:      tools/iio/
9054
9055 IIO UNIT CONVERTER
9056 M:      Peter Rosin <peda@axentia.se>
9057 L:      linux-iio@vger.kernel.org
9058 S:      Maintained
9059 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9060 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9061 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9062 F:      drivers/iio/afe/iio-rescale.c
9063
9064 IKANOS/ADI EAGLE ADSL USB DRIVER
9065 M:      Matthieu Castet <castet.matthieu@free.fr>
9066 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9067 S:      Maintained
9068 F:      drivers/usb/atm/ueagle-atm.c
9069
9070 IMGTEC ASCII LCD DRIVER
9071 M:      Paul Burton <paulburton@kernel.org>
9072 S:      Maintained
9073 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
9074 F:      drivers/auxdisplay/img-ascii-lcd.c
9075
9076 IMGTEC IR DECODER DRIVER
9077 S:      Orphan
9078 F:      drivers/media/rc/img-ir/
9079
9080 IMON SOUNDGRAPH USB IR RECEIVER
9081 M:      Sean Young <sean@mess.org>
9082 L:      linux-media@vger.kernel.org
9083 S:      Maintained
9084 F:      drivers/media/rc/imon.c
9085 F:      drivers/media/rc/imon_raw.c
9086
9087 IMS TWINTURBO FRAMEBUFFER DRIVER
9088 L:      linux-fbdev@vger.kernel.org
9089 S:      Orphan
9090 F:      drivers/video/fbdev/imsttfb.c
9091
9092 INA209 HARDWARE MONITOR DRIVER
9093 M:      Guenter Roeck <linux@roeck-us.net>
9094 L:      linux-hwmon@vger.kernel.org
9095 S:      Maintained
9096 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9097 F:      Documentation/hwmon/ina209.rst
9098 F:      drivers/hwmon/ina209.c
9099
9100 INA2XX HARDWARE MONITOR DRIVER
9101 M:      Guenter Roeck <linux@roeck-us.net>
9102 L:      linux-hwmon@vger.kernel.org
9103 S:      Maintained
9104 F:      Documentation/hwmon/ina2xx.rst
9105 F:      drivers/hwmon/ina2xx.c
9106 F:      include/linux/platform_data/ina2xx.h
9107
9108 INDUSTRY PACK SUBSYSTEM (IPACK)
9109 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9110 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9111 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9112 L:      industrypack-devel@lists.sourceforge.net
9113 S:      Maintained
9114 W:      http://industrypack.sourceforge.net
9115 F:      drivers/ipack/
9116
9117 INFINEON DPS310 Driver
9118 M:      Eddie James <eajames@linux.ibm.com>
9119 L:      linux-iio@vger.kernel.org
9120 S:      Maintained
9121 F:      drivers/iio/pressure/dps310.c
9122
9123 INFINIBAND SUBSYSTEM
9124 M:      Doug Ledford <dledford@redhat.com>
9125 M:      Jason Gunthorpe <jgg@nvidia.com>
9126 L:      linux-rdma@vger.kernel.org
9127 S:      Supported
9128 W:      https://github.com/linux-rdma/rdma-core
9129 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9131 F:      Documentation/devicetree/bindings/infiniband/
9132 F:      Documentation/infiniband/
9133 F:      drivers/infiniband/
9134 F:      include/rdma/
9135 F:      include/trace/events/ib_mad.h
9136 F:      include/trace/events/ib_umad.h
9137 F:      include/uapi/linux/if_infiniband.h
9138 F:      include/uapi/rdma/
9139 F:      samples/bpf/ibumad_kern.c
9140 F:      samples/bpf/ibumad_user.c
9141
9142 INGENIC JZ4780 NAND DRIVER
9143 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9144 L:      linux-mtd@lists.infradead.org
9145 L:      linux-mips@vger.kernel.org
9146 S:      Maintained
9147 F:      drivers/mtd/nand/raw/ingenic/
9148
9149 INGENIC JZ47xx SoCs
9150 M:      Paul Cercueil <paul@crapouillou.net>
9151 L:      linux-mips@vger.kernel.org
9152 S:      Maintained
9153 F:      arch/mips/boot/dts/ingenic/
9154 F:      arch/mips/generic/board-ingenic.c
9155 F:      arch/mips/include/asm/mach-ingenic/
9156 F:      arch/mips/ingenic/Kconfig
9157 F:      drivers/clk/ingenic/
9158 F:      drivers/dma/dma-jz4780.c
9159 F:      drivers/gpu/drm/ingenic/
9160 F:      drivers/i2c/busses/i2c-jz4780.c
9161 F:      drivers/iio/adc/ingenic-adc.c
9162 F:      drivers/irqchip/irq-ingenic.c
9163 F:      drivers/memory/jz4780-nemc.c
9164 F:      drivers/mmc/host/jz4740_mmc.c
9165 F:      drivers/mtd/nand/raw/ingenic/
9166 F:      drivers/pinctrl/pinctrl-ingenic.c
9167 F:      drivers/power/supply/ingenic-battery.c
9168 F:      drivers/pwm/pwm-jz4740.c
9169 F:      drivers/remoteproc/ingenic_rproc.c
9170 F:      drivers/rtc/rtc-jz4740.c
9171 F:      drivers/tty/serial/8250/8250_ingenic.c
9172 F:      drivers/usb/musb/jz4740.c
9173 F:      drivers/watchdog/jz4740_wdt.c
9174 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9175 F:      include/linux/mfd/ingenic-tcu.h
9176 F:      sound/soc/codecs/jz47*
9177 F:      sound/soc/jz4740/
9178
9179 INOTIFY
9180 M:      Jan Kara <jack@suse.cz>
9181 R:      Amir Goldstein <amir73il@gmail.com>
9182 L:      linux-fsdevel@vger.kernel.org
9183 S:      Maintained
9184 F:      Documentation/filesystems/inotify.rst
9185 F:      fs/notify/inotify/
9186 F:      include/linux/inotify.h
9187 F:      include/uapi/linux/inotify.h
9188
9189 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9190 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9191 L:      linux-input@vger.kernel.org
9192 S:      Maintained
9193 Q:      http://patchwork.kernel.org/project/linux-input/list/
9194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9195 F:      Documentation/devicetree/bindings/input/
9196 F:      Documentation/devicetree/bindings/serio/
9197 F:      Documentation/input/
9198 F:      drivers/input/
9199 F:      include/linux/input.h
9200 F:      include/linux/input/
9201 F:      include/uapi/linux/input-event-codes.h
9202 F:      include/uapi/linux/input.h
9203
9204 INPUT MULTITOUCH (MT) PROTOCOL
9205 M:      Henrik Rydberg <rydberg@bitmath.org>
9206 L:      linux-input@vger.kernel.org
9207 S:      Odd fixes
9208 F:      Documentation/input/multi-touch-protocol.rst
9209 F:      drivers/input/input-mt.c
9210 K:      \b(ABS|SYN)_MT_
9211
9212 INSIDE SECURE CRYPTO DRIVER
9213 M:      Antoine Tenart <atenart@kernel.org>
9214 L:      linux-crypto@vger.kernel.org
9215 S:      Maintained
9216 F:      drivers/crypto/inside-secure/
9217
9218 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9219 M:      Mimi Zohar <zohar@linux.ibm.com>
9220 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9221 L:      linux-integrity@vger.kernel.org
9222 S:      Supported
9223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9224 F:      security/integrity/ima/
9225
9226 INTEL 810/815 FRAMEBUFFER DRIVER
9227 M:      Antonino Daplas <adaplas@gmail.com>
9228 L:      linux-fbdev@vger.kernel.org
9229 S:      Maintained
9230 F:      drivers/video/fbdev/i810/
9231
9232 INTEL ASoC DRIVERS
9233 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9234 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9235 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9236 M:      Jie Yang <yang.jie@linux.intel.com>
9237 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9238 S:      Supported
9239 F:      sound/soc/intel/
9240
9241 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9242 M:      Hans de Goede <hdegoede@redhat.com>
9243 L:      platform-driver-x86@vger.kernel.org
9244 S:      Maintained
9245 F:      drivers/platform/x86/intel_atomisp2_pm.c
9246
9247 INTEL ATOMISP2 LED DRIVER
9248 M:      Hans de Goede <hdegoede@redhat.com>
9249 L:      platform-driver-x86@vger.kernel.org
9250 S:      Maintained
9251 F:      drivers/platform/x86/intel_atomisp2_led.c
9252
9253 INTEL BROXTON PMC DRIVER
9254 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9255 M:      Zha Qipeng <qipeng.zha@intel.com>
9256 S:      Maintained
9257 F:      drivers/mfd/intel_pmc_bxt.c
9258 F:      include/linux/mfd/intel_pmc_bxt.h
9259
9260 INTEL C600 SERIES SAS CONTROLLER DRIVER
9261 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9262 L:      linux-scsi@vger.kernel.org
9263 S:      Supported
9264 T:      git git://git.code.sf.net/p/intel-sas/isci
9265 F:      drivers/scsi/isci/
9266
9267 INTEL CPU family model numbers
9268 M:      Tony Luck <tony.luck@intel.com>
9269 M:      x86@kernel.org
9270 L:      linux-kernel@vger.kernel.org
9271 S:      Supported
9272 F:      arch/x86/include/asm/intel-family.h
9273
9274 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9275 M:      Jani Nikula <jani.nikula@linux.intel.com>
9276 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9277 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9278 L:      intel-gfx@lists.freedesktop.org
9279 S:      Supported
9280 W:      https://01.org/linuxgraphics/
9281 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9282 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9283 C:      irc://chat.freenode.net/intel-gfx
9284 T:      git git://anongit.freedesktop.org/drm-intel
9285 F:      Documentation/gpu/i915.rst
9286 F:      drivers/gpu/drm/i915/
9287 F:      include/drm/i915*
9288 F:      include/uapi/drm/i915_drm.h
9289
9290 INTEL ETHERNET DRIVERS
9291 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9292 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9293 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9294 S:      Supported
9295 W:      http://www.intel.com/support/feedback.htm
9296 W:      http://e1000.sourceforge.net/
9297 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9300 F:      Documentation/networking/device_drivers/ethernet/intel/
9301 F:      drivers/net/ethernet/intel/
9302 F:      drivers/net/ethernet/intel/*/
9303 F:      include/linux/avf/virtchnl.h
9304 F:      include/linux/net/intel/iidc.h
9305
9306 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9307 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9308 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9309 L:      linux-rdma@vger.kernel.org
9310 S:      Supported
9311 F:      drivers/infiniband/hw/irdma/
9312 F:      include/uapi/rdma/irdma-abi.h
9313
9314 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9315 M:      Maik Broemme <mbroemme@libmpq.org>
9316 L:      linux-fbdev@vger.kernel.org
9317 S:      Maintained
9318 F:      Documentation/fb/intelfb.rst
9319 F:      drivers/video/fbdev/intelfb/
9320
9321 INTEL GPIO DRIVERS
9322 M:      Andy Shevchenko <andy@kernel.org>
9323 L:      linux-gpio@vger.kernel.org
9324 S:      Maintained
9325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9326 F:      drivers/gpio/gpio-ich.c
9327 F:      drivers/gpio/gpio-merrifield.c
9328 F:      drivers/gpio/gpio-ml-ioh.c
9329 F:      drivers/gpio/gpio-pch.c
9330 F:      drivers/gpio/gpio-sch.c
9331 F:      drivers/gpio/gpio-sodaville.c
9332
9333 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9334 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9335 M:      Zhi Wang <zhi.a.wang@intel.com>
9336 L:      intel-gvt-dev@lists.freedesktop.org
9337 L:      intel-gfx@lists.freedesktop.org
9338 S:      Supported
9339 W:      https://01.org/igvt-g
9340 T:      git https://github.com/intel/gvt-linux.git
9341 F:      drivers/gpu/drm/i915/gvt/
9342
9343 INTEL HID EVENT DRIVER
9344 M:      Alex Hung <alex.hung@canonical.com>
9345 L:      platform-driver-x86@vger.kernel.org
9346 S:      Maintained
9347 F:      drivers/platform/x86/intel-hid.c
9348
9349 INTEL I/OAT DMA DRIVER
9350 M:      Dave Jiang <dave.jiang@intel.com>
9351 R:      Dan Williams <dan.j.williams@intel.com>
9352 L:      dmaengine@vger.kernel.org
9353 S:      Supported
9354 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9355 F:      drivers/dma/ioat*
9356
9357 INTEL IADX DRIVER
9358 M:      Dave Jiang <dave.jiang@intel.com>
9359 L:      dmaengine@vger.kernel.org
9360 S:      Supported
9361 F:      drivers/dma/idxd/*
9362 F:      include/uapi/linux/idxd.h
9363
9364 INTEL IDLE DRIVER
9365 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9366 M:      Len Brown <lenb@kernel.org>
9367 L:      linux-pm@vger.kernel.org
9368 S:      Supported
9369 B:      https://bugzilla.kernel.org
9370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9371 F:      drivers/idle/intel_idle.c
9372
9373 INTEL INTEGRATED SENSOR HUB DRIVER
9374 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9375 M:      Jiri Kosina <jikos@kernel.org>
9376 L:      linux-input@vger.kernel.org
9377 S:      Maintained
9378 F:      drivers/hid/intel-ish-hid/
9379
9380 INTEL IOMMU (VT-d)
9381 M:      David Woodhouse <dwmw2@infradead.org>
9382 M:      Lu Baolu <baolu.lu@linux.intel.com>
9383 L:      iommu@lists.linux-foundation.org
9384 S:      Supported
9385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9386 F:      drivers/iommu/intel/
9387 F:      include/linux/intel-iommu.h
9388 F:      include/linux/intel-svm.h
9389
9390 INTEL IOP-ADMA DMA DRIVER
9391 R:      Dan Williams <dan.j.williams@intel.com>
9392 S:      Odd fixes
9393 F:      drivers/dma/iop-adma.c
9394
9395 INTEL IPU3 CSI-2 CIO2 DRIVER
9396 M:      Yong Zhi <yong.zhi@intel.com>
9397 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9398 M:      Bingbu Cao <bingbu.cao@intel.com>
9399 M:      Dan Scally <djrscally@gmail.com>
9400 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9401 L:      linux-media@vger.kernel.org
9402 S:      Maintained
9403 T:      git git://linuxtv.org/media_tree.git
9404 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9405 F:      drivers/media/pci/intel/ipu3/
9406
9407 INTEL IPU3 CSI-2 IMGU DRIVER
9408 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9409 R:      Bingbu Cao <bingbu.cao@intel.com>
9410 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9411 L:      linux-media@vger.kernel.org
9412 S:      Maintained
9413 F:      Documentation/admin-guide/media/ipu3.rst
9414 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9415 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9416 F:      drivers/staging/media/ipu3/
9417
9418 INTEL IXP4XX CRYPTO SUPPORT
9419 M:      Corentin Labbe <clabbe@baylibre.com>
9420 L:      linux-crypto@vger.kernel.org
9421 S:      Maintained
9422 F:      drivers/crypto/ixp4xx_crypto.c
9423
9424 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9425 M:      Krzysztof Halasa <khalasa@piap.pl>
9426 S:      Maintained
9427 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9428 F:      drivers/net/wan/ixp4xx_hss.c
9429 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9430 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9431 F:      include/linux/soc/ixp4xx/npe.h
9432 F:      include/linux/soc/ixp4xx/qmgr.h
9433
9434 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9435 M:      Deepak Saxena <dsaxena@plexity.net>
9436 S:      Maintained
9437 F:      Documentation/devicetree/bindings/display/intel,ixp46x-rng.yaml
9438 F:      drivers/char/hw_random/ixp4xx-rng.c
9439
9440 INTEL KEEM BAY DRM DRIVER
9441 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9442 M:      Edmund Dea <edmund.j.dea@intel.com>
9443 S:      Maintained
9444 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9445 F:      drivers/gpu/drm/kmb/
9446
9447 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9448 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9449 S:      Maintained
9450 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9451 F:      drivers/crypto/keembay/Kconfig
9452 F:      drivers/crypto/keembay/Makefile
9453 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9454 F:      drivers/crypto/keembay/ocs-aes.c
9455 F:      drivers/crypto/keembay/ocs-aes.h
9456
9457 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9458 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9459 M:      Declan Murphy <declan.murphy@intel.com>
9460 S:      Maintained
9461 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9462 F:      drivers/crypto/keembay/Kconfig
9463 F:      drivers/crypto/keembay/Makefile
9464 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9465 F:      drivers/crypto/keembay/ocs-hcu.c
9466 F:      drivers/crypto/keembay/ocs-hcu.h
9467
9468 INTEL MANAGEMENT ENGINE (mei)
9469 M:      Tomas Winkler <tomas.winkler@intel.com>
9470 L:      linux-kernel@vger.kernel.org
9471 S:      Supported
9472 F:      Documentation/driver-api/mei/*
9473 F:      drivers/misc/mei/
9474 F:      drivers/watchdog/mei_wdt.c
9475 F:      include/linux/mei_cl_bus.h
9476 F:      include/uapi/linux/mei.h
9477 F:      samples/mei/*
9478
9479 INTEL MAX 10 BMC MFD DRIVER
9480 M:      Xu Yilun <yilun.xu@intel.com>
9481 R:      Tom Rix <trix@redhat.com>
9482 S:      Maintained
9483 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9484 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9485 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9486 F:      drivers/mfd/intel-m10-bmc.c
9487 F:      include/linux/mfd/intel-m10-bmc.h
9488
9489 INTEL MENLOW THERMAL DRIVER
9490 M:      Sujith Thomas <sujith.thomas@intel.com>
9491 L:      platform-driver-x86@vger.kernel.org
9492 S:      Supported
9493 W:      https://01.org/linux-acpi
9494 F:      drivers/platform/x86/intel_menlow.c
9495
9496 INTEL P-Unit IPC DRIVER
9497 M:      Zha Qipeng <qipeng.zha@intel.com>
9498 L:      platform-driver-x86@vger.kernel.org
9499 S:      Maintained
9500 F:      arch/x86/include/asm/intel_punit_ipc.h
9501 F:      drivers/platform/x86/intel_punit_ipc.c
9502
9503 INTEL PMC CORE DRIVER
9504 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9505 M:      David E Box <david.e.box@intel.com>
9506 L:      platform-driver-x86@vger.kernel.org
9507 S:      Maintained
9508 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9509 F:      drivers/platform/x86/intel_pmc_core*
9510
9511 INTEL PMIC GPIO DRIVERS
9512 M:      Andy Shevchenko <andy@kernel.org>
9513 S:      Maintained
9514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9515 F:      drivers/gpio/gpio-*cove.c
9516
9517 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9518 M:      Andy Shevchenko <andy@kernel.org>
9519 S:      Maintained
9520 F:      drivers/mfd/intel_soc_pmic*
9521 F:      include/linux/mfd/intel_soc_pmic*
9522
9523 INTEL PMT DRIVER
9524 M:      "David E. Box" <david.e.box@linux.intel.com>
9525 S:      Maintained
9526 F:      drivers/mfd/intel_pmt.c
9527 F:      drivers/platform/x86/intel_pmt_*
9528
9529 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9530 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9531 L:      linux-wireless@vger.kernel.org
9532 S:      Maintained
9533 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9534 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9535 F:      drivers/net/wireless/intel/ipw2x00/
9536
9537 INTEL PSTATE DRIVER
9538 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9539 M:      Len Brown <lenb@kernel.org>
9540 L:      linux-pm@vger.kernel.org
9541 S:      Supported
9542 F:      drivers/cpufreq/intel_pstate.c
9543
9544 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
9545 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9546 L:      linux-iio@vger.kernel.org
9547 F:      drivers/counter/intel-qep.c
9548
9549 INTEL SCU DRIVERS
9550 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9551 S:      Maintained
9552 F:      arch/x86/include/asm/intel_scu_ipc.h
9553 F:      drivers/platform/x86/intel_scu_*
9554
9555 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9556 M:      Daniel Scally <djrscally@gmail.com>
9557 S:      Maintained
9558 F:      drivers/platform/x86/intel/int3472/
9559
9560 INTEL SPEED SELECT TECHNOLOGY
9561 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9562 L:      platform-driver-x86@vger.kernel.org
9563 S:      Maintained
9564 F:      drivers/platform/x86/intel_speed_select_if/
9565 F:      include/uapi/linux/isst_if.h
9566 F:      tools/power/x86/intel-speed-select/
9567
9568 INTEL STRATIX10 FIRMWARE DRIVERS
9569 M:      Richard Gong <richard.gong@linux.intel.com>
9570 L:      linux-kernel@vger.kernel.org
9571 S:      Maintained
9572 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9573 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9574 F:      drivers/firmware/stratix10-rsu.c
9575 F:      drivers/firmware/stratix10-svc.c
9576 F:      include/linux/firmware/intel/stratix10-smc.h
9577 F:      include/linux/firmware/intel/stratix10-svc-client.h
9578
9579 INTEL TELEMETRY DRIVER
9580 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9581 M:      "David E. Box" <david.e.box@linux.intel.com>
9582 L:      platform-driver-x86@vger.kernel.org
9583 S:      Maintained
9584 F:      arch/x86/include/asm/intel_telemetry.h
9585 F:      drivers/platform/x86/intel_telemetry*
9586
9587 INTEL UNCORE FREQUENCY CONTROL
9588 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9589 L:      platform-driver-x86@vger.kernel.org
9590 S:      Maintained
9591 F:      drivers/platform/x86/intel-uncore-frequency.c
9592
9593 INTEL VIRTUAL BUTTON DRIVER
9594 M:      AceLan Kao <acelan.kao@canonical.com>
9595 L:      platform-driver-x86@vger.kernel.org
9596 S:      Maintained
9597 F:      drivers/platform/x86/intel-vbtn.c
9598
9599 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9600 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9601 L:      linux-wireless@vger.kernel.org
9602 S:      Supported
9603 F:      drivers/net/wireless/intel/iwlegacy/
9604
9605 INTEL WIRELESS WIFI LINK (iwlwifi)
9606 M:      Luca Coelho <luciano.coelho@intel.com>
9607 L:      linux-wireless@vger.kernel.org
9608 S:      Supported
9609 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9611 F:      drivers/net/wireless/intel/iwlwifi/
9612
9613 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9614 M:      Jithu Joseph <jithu.joseph@intel.com>
9615 R:      Maurice Ma <maurice.ma@intel.com>
9616 S:      Maintained
9617 W:      https://slimbootloader.github.io/security/firmware-update.html
9618 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
9619
9620 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9621 L:      Dell.Client.Kernel@dell.com
9622 S:      Maintained
9623 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
9624
9625 INTEL WWAN IOSM DRIVER
9626 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
9627 M:      Intel Corporation <linuxwwan@intel.com>
9628 L:      netdev@vger.kernel.org
9629 S:      Maintained
9630 F:      drivers/net/wwan/iosm/
9631
9632 INTEL(R) TRACE HUB
9633 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9634 S:      Supported
9635 F:      Documentation/trace/intel_th.rst
9636 F:      drivers/hwtracing/intel_th/
9637 F:      include/linux/intel_th.h
9638
9639 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9640 M:      Ning Sun <ning.sun@intel.com>
9641 L:      tboot-devel@lists.sourceforge.net
9642 S:      Supported
9643 W:      http://tboot.sourceforge.net
9644 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9645 F:      Documentation/x86/intel_txt.rst
9646 F:      arch/x86/kernel/tboot.c
9647 F:      include/linux/tboot.h
9648
9649 INTEL SGX
9650 M:      Jarkko Sakkinen <jarkko@kernel.org>
9651 R:      Dave Hansen <dave.hansen@linux.intel.com>
9652 L:      linux-sgx@vger.kernel.org
9653 S:      Supported
9654 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9656 F:      Documentation/x86/sgx.rst
9657 F:      arch/x86/entry/vdso/vsgx.S
9658 F:      arch/x86/include/asm/sgx.h
9659 F:      arch/x86/include/uapi/asm/sgx.h
9660 F:      arch/x86/kernel/cpu/sgx/*
9661 F:      tools/testing/selftests/sgx/*
9662 K:      \bSGX_
9663
9664 INTERCONNECT API
9665 M:      Georgi Djakov <djakov@kernel.org>
9666 L:      linux-pm@vger.kernel.org
9667 S:      Maintained
9668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9669 F:      Documentation/devicetree/bindings/interconnect/
9670 F:      Documentation/driver-api/interconnect.rst
9671 F:      drivers/interconnect/
9672 F:      include/dt-bindings/interconnect/
9673 F:      include/linux/interconnect-provider.h
9674 F:      include/linux/interconnect.h
9675
9676 INTERRUPT COUNTER DRIVER
9677 M:      Oleksij Rempel <o.rempel@pengutronix.de>
9678 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
9679 L:      linux-iio@vger.kernel.org
9680 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9681 F:      drivers/counter/interrupt-cnt.c
9682
9683 INVENSENSE ICM-426xx IMU DRIVER
9684 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9685 L:      linux-iio@vger.kernel.org
9686 S:      Maintained
9687 W:      https://invensense.tdk.com/
9688 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9689 F:      drivers/iio/imu/inv_icm42600/
9690
9691 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9692 M:      Linus Walleij <linus.walleij@linaro.org>
9693 L:      linux-iio@vger.kernel.org
9694 S:      Maintained
9695 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9696 F:      drivers/iio/gyro/mpu3050*
9697
9698 IOC3 ETHERNET DRIVER
9699 M:      Ralf Baechle <ralf@linux-mips.org>
9700 L:      linux-mips@vger.kernel.org
9701 S:      Maintained
9702 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9703
9704 IOMAP FILESYSTEM LIBRARY
9705 M:      Christoph Hellwig <hch@infradead.org>
9706 M:      Darrick J. Wong <djwong@kernel.org>
9707 M:      linux-xfs@vger.kernel.org
9708 M:      linux-fsdevel@vger.kernel.org
9709 L:      linux-xfs@vger.kernel.org
9710 L:      linux-fsdevel@vger.kernel.org
9711 S:      Supported
9712 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9713 F:      fs/iomap/
9714 F:      include/linux/iomap.h
9715
9716 IOMMU DRIVERS
9717 M:      Joerg Roedel <joro@8bytes.org>
9718 M:      Will Deacon <will@kernel.org>
9719 L:      iommu@lists.linux-foundation.org
9720 S:      Maintained
9721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9722 F:      Documentation/devicetree/bindings/iommu/
9723 F:      Documentation/userspace-api/iommu.rst
9724 F:      drivers/iommu/
9725 F:      include/linux/iommu.h
9726 F:      include/linux/iova.h
9727 F:      include/linux/of_iommu.h
9728 F:      include/uapi/linux/iommu.h
9729
9730 IO_URING
9731 M:      Jens Axboe <axboe@kernel.dk>
9732 R:      Pavel Begunkov <asml.silence@gmail.com>
9733 L:      io-uring@vger.kernel.org
9734 S:      Maintained
9735 T:      git git://git.kernel.dk/linux-block
9736 T:      git git://git.kernel.dk/liburing
9737 F:      fs/io-wq.c
9738 F:      fs/io-wq.h
9739 F:      fs/io_uring.c
9740 F:      include/linux/io_uring.h
9741 F:      include/uapi/linux/io_uring.h
9742 F:      tools/io_uring/
9743
9744 IPMI SUBSYSTEM
9745 M:      Corey Minyard <minyard@acm.org>
9746 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9747 S:      Supported
9748 W:      http://openipmi.sourceforge.net/
9749 F:      Documentation/driver-api/ipmi.rst
9750 F:      Documentation/devicetree/bindings/ipmi/
9751 F:      drivers/char/ipmi/
9752 F:      include/linux/ipmi*
9753 F:      include/uapi/linux/ipmi*
9754
9755 IPS SCSI RAID DRIVER
9756 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9757 L:      linux-scsi@vger.kernel.org
9758 S:      Maintained
9759 W:      http://www.adaptec.com/
9760 F:      drivers/scsi/ips*
9761
9762 IPVS
9763 M:      Simon Horman <horms@verge.net.au>
9764 M:      Julian Anastasov <ja@ssi.bg>
9765 L:      netdev@vger.kernel.org
9766 L:      lvs-devel@vger.kernel.org
9767 S:      Maintained
9768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9770 F:      Documentation/networking/ipvs-sysctl.rst
9771 F:      include/net/ip_vs.h
9772 F:      include/uapi/linux/ip_vs.h
9773 F:      net/netfilter/ipvs/
9774
9775 IPWIRELESS DRIVER
9776 M:      Jiri Kosina <jikos@kernel.org>
9777 M:      David Sterba <dsterba@suse.com>
9778 S:      Odd Fixes
9779 F:      drivers/tty/ipwireless/
9780
9781 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9782 M:      Marc Zyngier <maz@kernel.org>
9783 S:      Maintained
9784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9785 F:      Documentation/core-api/irq/irq-domain.rst
9786 F:      include/linux/irqdomain.h
9787 F:      kernel/irq/irqdomain.c
9788 F:      kernel/irq/msi.c
9789
9790 IRQ SUBSYSTEM
9791 M:      Thomas Gleixner <tglx@linutronix.de>
9792 L:      linux-kernel@vger.kernel.org
9793 S:      Maintained
9794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9795 F:      kernel/irq/
9796
9797 IRQCHIP DRIVERS
9798 M:      Thomas Gleixner <tglx@linutronix.de>
9799 M:      Marc Zyngier <maz@kernel.org>
9800 L:      linux-kernel@vger.kernel.org
9801 S:      Maintained
9802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9803 F:      Documentation/devicetree/bindings/interrupt-controller/
9804 F:      drivers/irqchip/
9805
9806 ISA
9807 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9808 S:      Maintained
9809 F:      Documentation/driver-api/isa.rst
9810 F:      drivers/base/isa.c
9811 F:      include/linux/isa.h
9812
9813 ISA RADIO MODULE
9814 M:      Hans Verkuil <hverkuil@xs4all.nl>
9815 L:      linux-media@vger.kernel.org
9816 S:      Maintained
9817 W:      https://linuxtv.org
9818 T:      git git://linuxtv.org/media_tree.git
9819 F:      drivers/media/radio/radio-isa*
9820
9821 ISAPNP
9822 M:      Jaroslav Kysela <perex@perex.cz>
9823 S:      Maintained
9824 F:      Documentation/driver-api/isapnp.rst
9825 F:      drivers/pnp/isapnp/
9826 F:      include/linux/isapnp.h
9827
9828 ISCSI
9829 M:      Lee Duncan <lduncan@suse.com>
9830 M:      Chris Leech <cleech@redhat.com>
9831 L:      open-iscsi@googlegroups.com
9832 L:      linux-scsi@vger.kernel.org
9833 S:      Maintained
9834 W:      www.open-iscsi.com
9835 F:      drivers/scsi/*iscsi*
9836 F:      include/scsi/*iscsi*
9837
9838 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9839 M:      Peter Jones <pjones@redhat.com>
9840 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9841 S:      Maintained
9842 F:      drivers/firmware/iscsi_ibft*
9843
9844 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9845 M:      Sagi Grimberg <sagi@grimberg.me>
9846 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
9847 L:      linux-rdma@vger.kernel.org
9848 S:      Supported
9849 W:      http://www.openfabrics.org
9850 W:      www.open-iscsi.org
9851 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9852 F:      drivers/infiniband/ulp/iser/
9853
9854 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9855 M:      Sagi Grimberg <sagi@grimberg.me>
9856 L:      linux-rdma@vger.kernel.org
9857 L:      target-devel@vger.kernel.org
9858 S:      Supported
9859 W:      http://www.linux-iscsi.org
9860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9861 F:      drivers/infiniband/ulp/isert
9862
9863 ISDN/CMTP OVER BLUETOOTH
9864 M:      Karsten Keil <isdn@linux-pingi.de>
9865 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9866 L:      netdev@vger.kernel.org
9867 S:      Odd Fixes
9868 W:      http://www.isdn4linux.de
9869 F:      Documentation/isdn/
9870 F:      drivers/isdn/capi/
9871 F:      include/linux/isdn/
9872 F:      include/uapi/linux/isdn/
9873 F:      net/bluetooth/cmtp/
9874
9875 ISDN/mISDN SUBSYSTEM
9876 M:      Karsten Keil <isdn@linux-pingi.de>
9877 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9878 L:      netdev@vger.kernel.org
9879 S:      Maintained
9880 W:      http://www.isdn4linux.de
9881 F:      drivers/isdn/Kconfig
9882 F:      drivers/isdn/Makefile
9883 F:      drivers/isdn/hardware/
9884 F:      drivers/isdn/mISDN/
9885
9886 IT87 HARDWARE MONITORING DRIVER
9887 M:      Jean Delvare <jdelvare@suse.com>
9888 L:      linux-hwmon@vger.kernel.org
9889 S:      Maintained
9890 F:      Documentation/hwmon/it87.rst
9891 F:      drivers/hwmon/it87.c
9892
9893 IT913X MEDIA DRIVER
9894 M:      Antti Palosaari <crope@iki.fi>
9895 L:      linux-media@vger.kernel.org
9896 S:      Maintained
9897 W:      https://linuxtv.org
9898 W:      http://palosaari.fi/linux/
9899 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9900 T:      git git://linuxtv.org/anttip/media_tree.git
9901 F:      drivers/media/tuners/it913x*
9902
9903 ITE IT66121 HDMI BRIDGE DRIVER
9904 M:      Phong LE <ple@baylibre.com>
9905 M:      Neil Armstrong <narmstrong@baylibre.com>
9906 S:      Maintained
9907 T:      git git://anongit.freedesktop.org/drm/drm-misc
9908 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
9909 F:      drivers/gpu/drm/bridge/ite-it66121.c
9910
9911 IVTV VIDEO4LINUX DRIVER
9912 M:      Andy Walls <awalls@md.metrocast.net>
9913 L:      linux-media@vger.kernel.org
9914 S:      Maintained
9915 W:      https://linuxtv.org
9916 T:      git git://linuxtv.org/media_tree.git
9917 F:      Documentation/admin-guide/media/ivtv*
9918 F:      drivers/media/pci/ivtv/
9919 F:      include/uapi/linux/ivtv*
9920
9921 IX2505V MEDIA DRIVER
9922 M:      Malcolm Priestley <tvboxspy@gmail.com>
9923 L:      linux-media@vger.kernel.org
9924 S:      Maintained
9925 W:      https://linuxtv.org
9926 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9927 F:      drivers/media/dvb-frontends/ix2505v*
9928
9929 JAILHOUSE HYPERVISOR INTERFACE
9930 M:      Jan Kiszka <jan.kiszka@siemens.com>
9931 L:      jailhouse-dev@googlegroups.com
9932 S:      Maintained
9933 F:      arch/x86/include/asm/jailhouse_para.h
9934 F:      arch/x86/kernel/jailhouse.c
9935
9936 JC42.4 TEMPERATURE SENSOR DRIVER
9937 M:      Guenter Roeck <linux@roeck-us.net>
9938 L:      linux-hwmon@vger.kernel.org
9939 S:      Maintained
9940 F:      Documentation/hwmon/jc42.rst
9941 F:      drivers/hwmon/jc42.c
9942
9943 JFS FILESYSTEM
9944 M:      Dave Kleikamp <shaggy@kernel.org>
9945 L:      jfs-discussion@lists.sourceforge.net
9946 S:      Maintained
9947 W:      http://jfs.sourceforge.net/
9948 T:      git git://github.com/kleikamp/linux-shaggy.git
9949 F:      Documentation/admin-guide/jfs.rst
9950 F:      fs/jfs/
9951
9952 JME NETWORK DRIVER
9953 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9954 L:      netdev@vger.kernel.org
9955 S:      Maintained
9956 F:      drivers/net/ethernet/jme.*
9957
9958 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9959 M:      David Woodhouse <dwmw2@infradead.org>
9960 M:      Richard Weinberger <richard@nod.at>
9961 L:      linux-mtd@lists.infradead.org
9962 S:      Odd Fixes
9963 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9964 T:      git git://git.infradead.org/ubifs-2.6.git
9965 F:      fs/jffs2/
9966 F:      include/uapi/linux/jffs2.h
9967
9968 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9969 M:      "Theodore Ts'o" <tytso@mit.edu>
9970 M:      Jan Kara <jack@suse.com>
9971 L:      linux-ext4@vger.kernel.org
9972 S:      Maintained
9973 F:      fs/jbd2/
9974 F:      include/linux/jbd2.h
9975
9976 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9977 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9978 L:      linux-media@vger.kernel.org
9979 S:      Maintained
9980 F:      drivers/media/platform/rcar_jpu.c
9981
9982 JSM Neo PCI based serial card
9983 L:      linux-serial@vger.kernel.org
9984 S:      Orphan
9985 F:      drivers/tty/serial/jsm/
9986
9987 K10TEMP HARDWARE MONITORING DRIVER
9988 M:      Clemens Ladisch <clemens@ladisch.de>
9989 L:      linux-hwmon@vger.kernel.org
9990 S:      Maintained
9991 F:      Documentation/hwmon/k10temp.rst
9992 F:      drivers/hwmon/k10temp.c
9993
9994 K8TEMP HARDWARE MONITORING DRIVER
9995 M:      Rudolf Marek <r.marek@assembler.cz>
9996 L:      linux-hwmon@vger.kernel.org
9997 S:      Maintained
9998 F:      Documentation/hwmon/k8temp.rst
9999 F:      drivers/hwmon/k8temp.c
10000
10001 KASAN
10002 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10003 R:      Alexander Potapenko <glider@google.com>
10004 R:      Andrey Konovalov <andreyknvl@gmail.com>
10005 R:      Dmitry Vyukov <dvyukov@google.com>
10006 L:      kasan-dev@googlegroups.com
10007 S:      Maintained
10008 F:      Documentation/dev-tools/kasan.rst
10009 F:      arch/*/include/asm/*kasan.h
10010 F:      arch/*/mm/kasan_init*
10011 F:      include/linux/kasan*.h
10012 F:      lib/Kconfig.kasan
10013 F:      lib/test_kasan*.c
10014 F:      mm/kasan/
10015 F:      scripts/Makefile.kasan
10016
10017 KCONFIG
10018 M:      Masahiro Yamada <masahiroy@kernel.org>
10019 L:      linux-kbuild@vger.kernel.org
10020 S:      Maintained
10021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10022 F:      Documentation/kbuild/kconfig*
10023 F:      scripts/Kconfig.include
10024 F:      scripts/kconfig/
10025
10026 KCOV
10027 R:      Dmitry Vyukov <dvyukov@google.com>
10028 R:      Andrey Konovalov <andreyknvl@gmail.com>
10029 L:      kasan-dev@googlegroups.com
10030 S:      Maintained
10031 F:      Documentation/dev-tools/kcov.rst
10032 F:      include/linux/kcov.h
10033 F:      include/uapi/linux/kcov.h
10034 F:      kernel/kcov.c
10035 F:      scripts/Makefile.kcov
10036
10037 KCSAN
10038 M:      Marco Elver <elver@google.com>
10039 R:      Dmitry Vyukov <dvyukov@google.com>
10040 L:      kasan-dev@googlegroups.com
10041 S:      Maintained
10042 F:      Documentation/dev-tools/kcsan.rst
10043 F:      include/linux/kcsan*.h
10044 F:      kernel/kcsan/
10045 F:      lib/Kconfig.kcsan
10046 F:      scripts/Makefile.kcsan
10047
10048 KDUMP
10049 M:      Dave Young <dyoung@redhat.com>
10050 M:      Baoquan He <bhe@redhat.com>
10051 R:      Vivek Goyal <vgoyal@redhat.com>
10052 L:      kexec@lists.infradead.org
10053 S:      Maintained
10054 W:      http://lse.sourceforge.net/kdump/
10055 F:      Documentation/admin-guide/kdump/
10056 F:      fs/proc/vmcore.c
10057 F:      include/linux/crash_core.h
10058 F:      include/linux/crash_dump.h
10059 F:      include/uapi/linux/vmcore.h
10060 F:      kernel/crash_*.c
10061
10062 KEENE FM RADIO TRANSMITTER DRIVER
10063 M:      Hans Verkuil <hverkuil@xs4all.nl>
10064 L:      linux-media@vger.kernel.org
10065 S:      Maintained
10066 W:      https://linuxtv.org
10067 T:      git git://linuxtv.org/media_tree.git
10068 F:      drivers/media/radio/radio-keene*
10069
10070 KERNEL AUTOMOUNTER
10071 M:      Ian Kent <raven@themaw.net>
10072 L:      autofs@vger.kernel.org
10073 S:      Maintained
10074 F:      fs/autofs/
10075
10076 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10077 M:      Masahiro Yamada <masahiroy@kernel.org>
10078 M:      Michal Marek <michal.lkml@markovi.net>
10079 L:      linux-kbuild@vger.kernel.org
10080 S:      Maintained
10081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10082 F:      Documentation/kbuild/
10083 F:      Makefile
10084 F:      scripts/*vmlinux*
10085 F:      scripts/Kbuild*
10086 F:      scripts/Makefile*
10087 F:      scripts/basic/
10088 F:      scripts/dummy-tools/
10089 F:      scripts/mk*
10090 F:      scripts/mod/
10091 F:      scripts/package/
10092
10093 KERNEL JANITORS
10094 L:      kernel-janitors@vger.kernel.org
10095 S:      Odd Fixes
10096 W:      http://kernelnewbies.org/KernelJanitors
10097
10098 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10099 M:      "J. Bruce Fields" <bfields@fieldses.org>
10100 M:      Chuck Lever <chuck.lever@oracle.com>
10101 L:      linux-nfs@vger.kernel.org
10102 S:      Supported
10103 W:      http://nfs.sourceforge.net/
10104 T:      git git://linux-nfs.org/~bfields/linux.git
10105 F:      fs/lockd/
10106 F:      fs/nfs_common/
10107 F:      fs/nfsd/
10108 F:      include/linux/lockd/
10109 F:      include/linux/sunrpc/
10110 F:      include/uapi/linux/nfsd/
10111 F:      include/uapi/linux/sunrpc/
10112 F:      net/sunrpc/
10113 F:      Documentation/filesystems/nfs/
10114
10115 KERNEL REGRESSIONS
10116 M:      Thorsten Leemhuis <linux@leemhuis.info>
10117 L:      regressions@lists.linux.dev
10118 S:      Supported
10119
10120 KERNEL SELFTEST FRAMEWORK
10121 M:      Shuah Khan <shuah@kernel.org>
10122 M:      Shuah Khan <skhan@linuxfoundation.org>
10123 L:      linux-kselftest@vger.kernel.org
10124 S:      Maintained
10125 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10127 F:      Documentation/dev-tools/kselftest*
10128 F:      tools/testing/selftests/
10129
10130 KERNEL SMB3 SERVER (KSMBD)
10131 M:      Namjae Jeon <linkinjeon@kernel.org>
10132 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
10133 M:      Steve French <sfrench@samba.org>
10134 M:      Hyunchul Lee <hyc.lee@gmail.com>
10135 L:      linux-cifs@vger.kernel.org
10136 S:      Maintained
10137 T:      git git://git.samba.org/ksmbd.git
10138 F:      fs/cifs_common/
10139 F:      fs/ksmbd/
10140
10141 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10142 M:      Brendan Higgins <brendanhiggins@google.com>
10143 L:      linux-kselftest@vger.kernel.org
10144 L:      kunit-dev@googlegroups.com
10145 S:      Maintained
10146 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10147 F:      Documentation/dev-tools/kunit/
10148 F:      include/kunit/
10149 F:      lib/kunit/
10150 F:      tools/testing/kunit/
10151
10152 KERNEL USERMODE HELPER
10153 M:      Luis Chamberlain <mcgrof@kernel.org>
10154 L:      linux-kernel@vger.kernel.org
10155 S:      Maintained
10156 F:      include/linux/umh.h
10157 F:      kernel/umh.c
10158
10159 KERNEL VIRTUAL MACHINE (KVM)
10160 M:      Paolo Bonzini <pbonzini@redhat.com>
10161 L:      kvm@vger.kernel.org
10162 S:      Supported
10163 W:      http://www.linux-kvm.org
10164 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10165 F:      Documentation/virt/kvm/
10166 F:      include/asm-generic/kvm*
10167 F:      include/kvm/iodev.h
10168 F:      include/linux/kvm*
10169 F:      include/trace/events/kvm.h
10170 F:      include/uapi/asm-generic/kvm*
10171 F:      include/uapi/linux/kvm*
10172 F:      tools/kvm/
10173 F:      tools/testing/selftests/kvm/
10174 F:      virt/kvm/*
10175
10176 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10177 M:      Marc Zyngier <maz@kernel.org>
10178 R:      James Morse <james.morse@arm.com>
10179 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10180 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10181 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10182 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10183 S:      Maintained
10184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10185 F:      arch/arm64/include/asm/kvm*
10186 F:      arch/arm64/include/uapi/asm/kvm*
10187 F:      arch/arm64/kvm/
10188 F:      include/kvm/arm_*
10189 F:      tools/testing/selftests/kvm/*/aarch64/
10190 F:      tools/testing/selftests/kvm/aarch64/
10191
10192 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10193 M:      Huacai Chen <chenhuacai@kernel.org>
10194 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10195 L:      linux-mips@vger.kernel.org
10196 L:      kvm@vger.kernel.org
10197 S:      Maintained
10198 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10199 F:      arch/mips/include/asm/kvm*
10200 F:      arch/mips/include/uapi/asm/kvm*
10201 F:      arch/mips/kvm/
10202
10203 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10204 M:      Paul Mackerras <paulus@ozlabs.org>
10205 L:      kvm-ppc@vger.kernel.org
10206 S:      Supported
10207 W:      http://www.linux-kvm.org/
10208 T:      git git://github.com/agraf/linux-2.6.git
10209 F:      arch/powerpc/include/asm/kvm*
10210 F:      arch/powerpc/include/uapi/asm/kvm*
10211 F:      arch/powerpc/kernel/kvm*
10212 F:      arch/powerpc/kvm/
10213
10214 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10215 M:      Christian Borntraeger <borntraeger@de.ibm.com>
10216 M:      Janosch Frank <frankja@linux.ibm.com>
10217 R:      David Hildenbrand <david@redhat.com>
10218 R:      Cornelia Huck <cohuck@redhat.com>
10219 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10220 L:      kvm@vger.kernel.org
10221 S:      Supported
10222 W:      http://www.ibm.com/developerworks/linux/linux390/
10223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10224 F:      Documentation/virt/kvm/s390*
10225 F:      arch/s390/include/asm/gmap.h
10226 F:      arch/s390/include/asm/kvm*
10227 F:      arch/s390/include/uapi/asm/kvm*
10228 F:      arch/s390/kernel/uv.c
10229 F:      arch/s390/kvm/
10230 F:      arch/s390/mm/gmap.c
10231 F:      tools/testing/selftests/kvm/*/s390x/
10232 F:      tools/testing/selftests/kvm/s390x/
10233
10234 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10235 M:      Paolo Bonzini <pbonzini@redhat.com>
10236 R:      Sean Christopherson <seanjc@google.com>
10237 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10238 R:      Wanpeng Li <wanpengli@tencent.com>
10239 R:      Jim Mattson <jmattson@google.com>
10240 R:      Joerg Roedel <joro@8bytes.org>
10241 L:      kvm@vger.kernel.org
10242 S:      Supported
10243 W:      http://www.linux-kvm.org
10244 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10245 F:      arch/x86/include/asm/kvm*
10246 F:      arch/x86/include/asm/pvclock-abi.h
10247 F:      arch/x86/include/asm/svm.h
10248 F:      arch/x86/include/asm/vmx*.h
10249 F:      arch/x86/include/uapi/asm/kvm*
10250 F:      arch/x86/include/uapi/asm/svm.h
10251 F:      arch/x86/include/uapi/asm/vmx.h
10252 F:      arch/x86/kernel/kvm.c
10253 F:      arch/x86/kernel/kvmclock.c
10254 F:      arch/x86/kvm/
10255 F:      arch/x86/kvm/*/
10256
10257 KERNFS
10258 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10259 M:      Tejun Heo <tj@kernel.org>
10260 S:      Supported
10261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10262 F:      fs/kernfs/
10263 F:      include/linux/kernfs.h
10264
10265 KEXEC
10266 M:      Eric Biederman <ebiederm@xmission.com>
10267 L:      kexec@lists.infradead.org
10268 S:      Maintained
10269 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10270 F:      include/linux/kexec.h
10271 F:      include/uapi/linux/kexec.h
10272 F:      kernel/kexec*
10273
10274 KEYS-ENCRYPTED
10275 M:      Mimi Zohar <zohar@linux.ibm.com>
10276 L:      linux-integrity@vger.kernel.org
10277 L:      keyrings@vger.kernel.org
10278 S:      Supported
10279 F:      Documentation/security/keys/trusted-encrypted.rst
10280 F:      include/keys/encrypted-type.h
10281 F:      security/keys/encrypted-keys/
10282
10283 KEYS-TRUSTED
10284 M:      James Bottomley <jejb@linux.ibm.com>
10285 M:      Jarkko Sakkinen <jarkko@kernel.org>
10286 M:      Mimi Zohar <zohar@linux.ibm.com>
10287 L:      linux-integrity@vger.kernel.org
10288 L:      keyrings@vger.kernel.org
10289 S:      Supported
10290 F:      Documentation/security/keys/trusted-encrypted.rst
10291 F:      include/keys/trusted-type.h
10292 F:      include/keys/trusted_tpm.h
10293 F:      security/keys/trusted-keys/
10294
10295 KEYS-TRUSTED-TEE
10296 M:      Sumit Garg <sumit.garg@linaro.org>
10297 L:      linux-integrity@vger.kernel.org
10298 L:      keyrings@vger.kernel.org
10299 S:      Supported
10300 F:      include/keys/trusted_tee.h
10301 F:      security/keys/trusted-keys/trusted_tee.c
10302
10303 KEYS/KEYRINGS
10304 M:      David Howells <dhowells@redhat.com>
10305 M:      Jarkko Sakkinen <jarkko@kernel.org>
10306 L:      keyrings@vger.kernel.org
10307 S:      Maintained
10308 F:      Documentation/security/keys/core.rst
10309 F:      include/keys/
10310 F:      include/linux/key-type.h
10311 F:      include/linux/key.h
10312 F:      include/linux/keyctl.h
10313 F:      include/uapi/linux/keyctl.h
10314 F:      security/keys/
10315
10316 KFENCE
10317 M:      Alexander Potapenko <glider@google.com>
10318 M:      Marco Elver <elver@google.com>
10319 R:      Dmitry Vyukov <dvyukov@google.com>
10320 L:      kasan-dev@googlegroups.com
10321 S:      Maintained
10322 F:      Documentation/dev-tools/kfence.rst
10323 F:      arch/*/include/asm/kfence.h
10324 F:      include/linux/kfence.h
10325 F:      lib/Kconfig.kfence
10326 F:      mm/kfence/
10327
10328 KFIFO
10329 M:      Stefani Seibold <stefani@seibold.net>
10330 S:      Maintained
10331 F:      include/linux/kfifo.h
10332 F:      lib/kfifo.c
10333 F:      samples/kfifo/
10334
10335 KGDB / KDB /debug_core
10336 M:      Jason Wessel <jason.wessel@windriver.com>
10337 M:      Daniel Thompson <daniel.thompson@linaro.org>
10338 R:      Douglas Anderson <dianders@chromium.org>
10339 L:      kgdb-bugreport@lists.sourceforge.net
10340 S:      Maintained
10341 W:      http://kgdb.wiki.kernel.org/
10342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10343 F:      Documentation/dev-tools/kgdb.rst
10344 F:      drivers/misc/kgdbts.c
10345 F:      drivers/tty/serial/kgdboc.c
10346 F:      include/linux/kdb.h
10347 F:      include/linux/kgdb.h
10348 F:      kernel/debug/
10349
10350 KHADAS MCU MFD DRIVER
10351 M:      Neil Armstrong <narmstrong@baylibre.com>
10352 L:      linux-amlogic@lists.infradead.org
10353 S:      Maintained
10354 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10355 F:      drivers/mfd/khadas-mcu.c
10356 F:      include/linux/mfd/khadas-mcu.h
10357 F:      drivers/thermal/khadas_mcu_fan.c
10358
10359 KMEMLEAK
10360 M:      Catalin Marinas <catalin.marinas@arm.com>
10361 S:      Maintained
10362 F:      Documentation/dev-tools/kmemleak.rst
10363 F:      include/linux/kmemleak.h
10364 F:      mm/kmemleak.c
10365 F:      samples/kmemleak/kmemleak-test.c
10366
10367 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10368 M:      Luis Chamberlain <mcgrof@kernel.org>
10369 L:      linux-kernel@vger.kernel.org
10370 S:      Maintained
10371 F:      include/linux/kmod.h
10372 F:      kernel/kmod.c
10373 F:      lib/test_kmod.c
10374 F:      tools/testing/selftests/kmod/
10375
10376 KPROBES
10377 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10378 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10379 M:      "David S. Miller" <davem@davemloft.net>
10380 M:      Masami Hiramatsu <mhiramat@kernel.org>
10381 S:      Maintained
10382 F:      Documentation/trace/kprobes.rst
10383 F:      include/asm-generic/kprobes.h
10384 F:      include/linux/kprobes.h
10385 F:      kernel/kprobes.c
10386
10387 KS0108 LCD CONTROLLER DRIVER
10388 M:      Miguel Ojeda <ojeda@kernel.org>
10389 S:      Maintained
10390 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10391 F:      drivers/auxdisplay/ks0108.c
10392 F:      include/linux/ks0108.h
10393
10394 KTD253 BACKLIGHT DRIVER
10395 M:      Linus Walleij <linus.walleij@linaro.org>
10396 S:      Maintained
10397 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10398 F:      drivers/video/backlight/ktd253-backlight.c
10399
10400 KTEST
10401 M:      Steven Rostedt <rostedt@goodmis.org>
10402 M:      John Hawley <warthog9@eaglescrag.net>
10403 S:      Maintained
10404 F:      tools/testing/ktest
10405
10406 L3MDEV
10407 M:      David Ahern <dsahern@kernel.org>
10408 L:      netdev@vger.kernel.org
10409 S:      Maintained
10410 F:      include/net/l3mdev.h
10411 F:      net/l3mdev
10412
10413 L7 BPF FRAMEWORK
10414 M:      John Fastabend <john.fastabend@gmail.com>
10415 M:      Daniel Borkmann <daniel@iogearbox.net>
10416 M:      Jakub Sitnicki <jakub@cloudflare.com>
10417 M:      Lorenz Bauer <lmb@cloudflare.com>
10418 L:      netdev@vger.kernel.org
10419 L:      bpf@vger.kernel.org
10420 S:      Maintained
10421 F:      include/linux/skmsg.h
10422 F:      net/core/skmsg.c
10423 F:      net/core/sock_map.c
10424 F:      net/ipv4/tcp_bpf.c
10425 F:      net/ipv4/udp_bpf.c
10426 F:      net/unix/unix_bpf.c
10427
10428 LANDLOCK SECURITY MODULE
10429 M:      Mickaël Salaün <mic@digikod.net>
10430 L:      linux-security-module@vger.kernel.org
10431 S:      Supported
10432 W:      https://landlock.io
10433 T:      git https://github.com/landlock-lsm/linux.git
10434 F:      Documentation/security/landlock.rst
10435 F:      Documentation/userspace-api/landlock.rst
10436 F:      include/uapi/linux/landlock.h
10437 F:      samples/landlock/
10438 F:      security/landlock/
10439 F:      tools/testing/selftests/landlock/
10440 K:      landlock
10441 K:      LANDLOCK
10442
10443 LANTIQ / INTEL Ethernet drivers
10444 M:      Hauke Mehrtens <hauke@hauke-m.de>
10445 L:      netdev@vger.kernel.org
10446 S:      Maintained
10447 F:      drivers/net/dsa/lantiq_gswip.c
10448 F:      drivers/net/dsa/lantiq_pce.h
10449 F:      drivers/net/ethernet/lantiq_xrx200.c
10450 F:      net/dsa/tag_gswip.c
10451
10452 LANTIQ MIPS ARCHITECTURE
10453 M:      John Crispin <john@phrozen.org>
10454 L:      linux-mips@vger.kernel.org
10455 S:      Maintained
10456 F:      arch/mips/lantiq
10457 F:      drivers/soc/lantiq
10458
10459 LASI 53c700 driver for PARISC
10460 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10461 L:      linux-scsi@vger.kernel.org
10462 S:      Maintained
10463 F:      Documentation/scsi/53c700.rst
10464 F:      drivers/scsi/53c700*
10465
10466 LEAKING_ADDRESSES
10467 M:      Tobin C. Harding <me@tobin.cc>
10468 M:      Tycho Andersen <tycho@tycho.pizza>
10469 L:      linux-hardening@vger.kernel.org
10470 S:      Maintained
10471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10472 F:      scripts/leaking_addresses.pl
10473
10474 LED SUBSYSTEM
10475 M:      Pavel Machek <pavel@ucw.cz>
10476 L:      linux-leds@vger.kernel.org
10477 S:      Maintained
10478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10479 F:      Documentation/devicetree/bindings/leds/
10480 F:      drivers/leds/
10481 F:      include/linux/leds.h
10482
10483 LEGACY EEPROM DRIVER
10484 M:      Jean Delvare <jdelvare@suse.com>
10485 S:      Maintained
10486 F:      Documentation/misc-devices/eeprom.rst
10487 F:      drivers/misc/eeprom/eeprom.c
10488
10489 LEGO MINDSTORMS EV3
10490 R:      David Lechner <david@lechnology.com>
10491 S:      Maintained
10492 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10493 F:      arch/arm/boot/dts/da850-lego-ev3.dts
10494 F:      drivers/power/supply/lego_ev3_battery.c
10495
10496 LEGO USB Tower driver
10497 M:      Juergen Stuber <starblue@users.sourceforge.net>
10498 L:      legousb-devel@lists.sourceforge.net
10499 S:      Maintained
10500 W:      http://legousb.sourceforge.net/
10501 F:      drivers/usb/misc/legousbtower.c
10502
10503 LG LAPTOP EXTRAS
10504 M:      Matan Ziv-Av <matan@svgalib.org>
10505 L:      platform-driver-x86@vger.kernel.org
10506 S:      Maintained
10507 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10508 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10509 F:      drivers/platform/x86/lg-laptop.c
10510
10511 LG2160 MEDIA DRIVER
10512 M:      Michael Krufky <mkrufky@linuxtv.org>
10513 L:      linux-media@vger.kernel.org
10514 S:      Maintained
10515 W:      https://linuxtv.org
10516 W:      http://github.com/mkrufky
10517 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10518 T:      git git://linuxtv.org/mkrufky/tuners.git
10519 F:      drivers/media/dvb-frontends/lg2160.*
10520
10521 LGDT3305 MEDIA DRIVER
10522 M:      Michael Krufky <mkrufky@linuxtv.org>
10523 L:      linux-media@vger.kernel.org
10524 S:      Maintained
10525 W:      https://linuxtv.org
10526 W:      http://github.com/mkrufky
10527 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10528 T:      git git://linuxtv.org/mkrufky/tuners.git
10529 F:      drivers/media/dvb-frontends/lgdt3305.*
10530
10531 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10532 M:      Viresh Kumar <vireshk@kernel.org>
10533 L:      linux-ide@vger.kernel.org
10534 S:      Maintained
10535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10536 F:      drivers/ata/pata_arasan_cf.c
10537 F:      include/linux/pata_arasan_cf_data.h
10538
10539 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10540 M:      Linus Walleij <linus.walleij@linaro.org>
10541 L:      linux-ide@vger.kernel.org
10542 S:      Maintained
10543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10544 F:      drivers/ata/pata_ftide010.c
10545 F:      drivers/ata/sata_gemini.c
10546 F:      drivers/ata/sata_gemini.h
10547
10548 LIBATA SATA AHCI PLATFORM devices support
10549 M:      Hans de Goede <hdegoede@redhat.com>
10550 M:      Jens Axboe <axboe@kernel.dk>
10551 L:      linux-ide@vger.kernel.org
10552 S:      Maintained
10553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10554 F:      drivers/ata/ahci_platform.c
10555 F:      drivers/ata/libahci_platform.c
10556 F:      include/linux/ahci_platform.h
10557
10558 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10559 M:      Mikael Pettersson <mikpelinux@gmail.com>
10560 L:      linux-ide@vger.kernel.org
10561 S:      Maintained
10562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10563 F:      drivers/ata/sata_promise.*
10564
10565 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10566 M:      Jens Axboe <axboe@kernel.dk>
10567 L:      linux-ide@vger.kernel.org
10568 S:      Maintained
10569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10570 F:      Documentation/devicetree/bindings/ata/
10571 F:      drivers/ata/
10572 F:      include/linux/ata.h
10573 F:      include/linux/libata.h
10574
10575 LIBLOCKDEP
10576 M:      Sasha Levin <alexander.levin@microsoft.com>
10577 S:      Maintained
10578 F:      tools/lib/lockdep/
10579
10580 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10581 M:      Dan Williams <dan.j.williams@intel.com>
10582 M:      Vishal Verma <vishal.l.verma@intel.com>
10583 M:      Dave Jiang <dave.jiang@intel.com>
10584 L:      nvdimm@lists.linux.dev
10585 S:      Supported
10586 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10587 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10588 F:      drivers/nvdimm/blk.c
10589 F:      drivers/nvdimm/region_devs.c
10590
10591 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10592 M:      Vishal Verma <vishal.l.verma@intel.com>
10593 M:      Dan Williams <dan.j.williams@intel.com>
10594 M:      Dave Jiang <dave.jiang@intel.com>
10595 L:      nvdimm@lists.linux.dev
10596 S:      Supported
10597 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10598 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10599 F:      drivers/nvdimm/btt*
10600
10601 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10602 M:      Dan Williams <dan.j.williams@intel.com>
10603 M:      Vishal Verma <vishal.l.verma@intel.com>
10604 M:      Dave Jiang <dave.jiang@intel.com>
10605 L:      nvdimm@lists.linux.dev
10606 S:      Supported
10607 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10608 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10609 F:      drivers/nvdimm/pmem*
10610
10611 LIBNVDIMM: DEVICETREE BINDINGS
10612 M:      Oliver O'Halloran <oohall@gmail.com>
10613 L:      nvdimm@lists.linux.dev
10614 S:      Supported
10615 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10616 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10617 F:      drivers/nvdimm/of_pmem.c
10618
10619 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10620 M:      Dan Williams <dan.j.williams@intel.com>
10621 M:      Vishal Verma <vishal.l.verma@intel.com>
10622 M:      Dave Jiang <dave.jiang@intel.com>
10623 M:      Ira Weiny <ira.weiny@intel.com>
10624 L:      nvdimm@lists.linux.dev
10625 S:      Supported
10626 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10627 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10629 F:      drivers/acpi/nfit/*
10630 F:      drivers/nvdimm/*
10631 F:      include/linux/libnvdimm.h
10632 F:      include/linux/nd.h
10633 F:      include/uapi/linux/ndctl.h
10634 F:      tools/testing/nvdimm/
10635
10636 LICENSES and SPDX stuff
10637 M:      Thomas Gleixner <tglx@linutronix.de>
10638 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10639 L:      linux-spdx@vger.kernel.org
10640 S:      Maintained
10641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10642 F:      COPYING
10643 F:      Documentation/process/license-rules.rst
10644 F:      LICENSES/
10645 F:      scripts/spdxcheck-test.sh
10646 F:      scripts/spdxcheck.py
10647
10648 LINEAR RANGES HELPERS
10649 M:      Mark Brown <broonie@kernel.org>
10650 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10651 F:      lib/linear_ranges.c
10652 F:      lib/test_linear_ranges.c
10653 F:      include/linux/linear_range.h
10654
10655 LINUX FOR POWER MACINTOSH
10656 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10657 L:      linuxppc-dev@lists.ozlabs.org
10658 S:      Odd Fixes
10659 F:      arch/powerpc/platforms/powermac/
10660 F:      drivers/macintosh/
10661
10662 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10663 M:      Michael Ellerman <mpe@ellerman.id.au>
10664 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10665 R:      Paul Mackerras <paulus@samba.org>
10666 L:      linuxppc-dev@lists.ozlabs.org
10667 S:      Supported
10668 W:      https://github.com/linuxppc/wiki/wiki
10669 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10671 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10672 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10673 F:      Documentation/devicetree/bindings/powerpc/
10674 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10675 F:      Documentation/powerpc/
10676 F:      arch/powerpc/
10677 F:      drivers/*/*/*pasemi*
10678 F:      drivers/*/*pasemi*
10679 F:      drivers/char/tpm/tpm_ibmvtpm*
10680 F:      drivers/crypto/nx/
10681 F:      drivers/crypto/vmx/
10682 F:      drivers/i2c/busses/i2c-opal.c
10683 F:      drivers/net/ethernet/ibm/ibmveth.*
10684 F:      drivers/net/ethernet/ibm/ibmvnic.*
10685 F:      drivers/pci/hotplug/pnv_php.c
10686 F:      drivers/pci/hotplug/rpa*
10687 F:      drivers/rtc/rtc-opal.c
10688 F:      drivers/scsi/ibmvscsi/
10689 F:      drivers/tty/hvc/hvc_opal.c
10690 F:      drivers/watchdog/wdrtas.c
10691 F:      tools/testing/selftests/powerpc
10692 N:      /pmac
10693 N:      powermac
10694 N:      powernv
10695 N:      [^a-z0-9]ps3
10696 N:      pseries
10697
10698 LINUX FOR POWERPC EMBEDDED MPC5XXX
10699 M:      Anatolij Gustschin <agust@denx.de>
10700 L:      linuxppc-dev@lists.ozlabs.org
10701 S:      Odd Fixes
10702 F:      arch/powerpc/platforms/512x/
10703 F:      arch/powerpc/platforms/52xx/
10704
10705 LINUX FOR POWERPC EMBEDDED PPC4XX
10706 L:      linuxppc-dev@lists.ozlabs.org
10707 S:      Orphan
10708 F:      arch/powerpc/platforms/40x/
10709 F:      arch/powerpc/platforms/44x/
10710
10711 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10712 M:      Scott Wood <oss@buserror.net>
10713 L:      linuxppc-dev@lists.ozlabs.org
10714 S:      Odd fixes
10715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10716 F:      Documentation/devicetree/bindings/powerpc/fsl/
10717 F:      arch/powerpc/platforms/83xx/
10718 F:      arch/powerpc/platforms/85xx/
10719
10720 LINUX FOR POWERPC EMBEDDED PPC8XX
10721 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10722 L:      linuxppc-dev@lists.ozlabs.org
10723 S:      Maintained
10724 F:      arch/powerpc/platforms/8xx/
10725
10726 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10727 M:      Kees Cook <keescook@chromium.org>
10728 S:      Maintained
10729 F:      drivers/misc/lkdtm/*
10730 F:      tools/testing/selftests/lkdtm/*
10731
10732 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10733 M:      Alan Stern <stern@rowland.harvard.edu>
10734 M:      Andrea Parri <parri.andrea@gmail.com>
10735 M:      Will Deacon <will@kernel.org>
10736 M:      Peter Zijlstra <peterz@infradead.org>
10737 M:      Boqun Feng <boqun.feng@gmail.com>
10738 M:      Nicholas Piggin <npiggin@gmail.com>
10739 M:      David Howells <dhowells@redhat.com>
10740 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10741 M:      Luc Maranget <luc.maranget@inria.fr>
10742 M:      "Paul E. McKenney" <paulmck@kernel.org>
10743 R:      Akira Yokosawa <akiyks@gmail.com>
10744 R:      Daniel Lustig <dlustig@nvidia.com>
10745 R:      Joel Fernandes <joel@joelfernandes.org>
10746 L:      linux-kernel@vger.kernel.org
10747 L:      linux-arch@vger.kernel.org
10748 S:      Supported
10749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10750 F:      Documentation/atomic_bitops.txt
10751 F:      Documentation/atomic_t.txt
10752 F:      Documentation/core-api/refcount-vs-atomic.rst
10753 F:      Documentation/litmus-tests/
10754 F:      Documentation/memory-barriers.txt
10755 F:      tools/memory-model/
10756
10757 LIS3LV02D ACCELEROMETER DRIVER
10758 M:      Eric Piel <eric.piel@tremplin-utc.net>
10759 S:      Maintained
10760 F:      Documentation/misc-devices/lis3lv02d.rst
10761 F:      drivers/misc/lis3lv02d/
10762 F:      drivers/platform/x86/hp_accel.c
10763
10764 LIST KUNIT TEST
10765 M:      David Gow <davidgow@google.com>
10766 L:      linux-kselftest@vger.kernel.org
10767 L:      kunit-dev@googlegroups.com
10768 S:      Maintained
10769 F:      lib/list-test.c
10770
10771 LITEX PLATFORM
10772 M:      Karol Gugala <kgugala@antmicro.com>
10773 M:      Mateusz Holenko <mholenko@antmicro.com>
10774 S:      Maintained
10775 F:      Documentation/devicetree/bindings/*/litex,*.yaml
10776 F:      arch/openrisc/boot/dts/or1klitex.dts
10777 F:      drivers/soc/litex/litex_soc_ctrl.c
10778 F:      drivers/tty/serial/liteuart.c
10779 F:      include/linux/litex.h
10780
10781 LIVE PATCHING
10782 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10783 M:      Jiri Kosina <jikos@kernel.org>
10784 M:      Miroslav Benes <mbenes@suse.cz>
10785 M:      Petr Mladek <pmladek@suse.com>
10786 R:      Joe Lawrence <joe.lawrence@redhat.com>
10787 L:      live-patching@vger.kernel.org
10788 S:      Maintained
10789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10790 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10791 F:      Documentation/livepatch/
10792 F:      arch/powerpc/include/asm/livepatch.h
10793 F:      arch/s390/include/asm/livepatch.h
10794 F:      arch/x86/include/asm/livepatch.h
10795 F:      include/linux/livepatch.h
10796 F:      kernel/livepatch/
10797 F:      lib/livepatch/
10798 F:      samples/livepatch/
10799 F:      tools/testing/selftests/livepatch/
10800
10801 LLC (802.2)
10802 L:      netdev@vger.kernel.org
10803 S:      Odd fixes
10804 F:      include/linux/llc.h
10805 F:      include/net/llc*
10806 F:      include/uapi/linux/llc.h
10807 F:      net/llc/
10808
10809 LM73 HARDWARE MONITOR DRIVER
10810 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10811 L:      linux-hwmon@vger.kernel.org
10812 S:      Maintained
10813 F:      drivers/hwmon/lm73.c
10814
10815 LM78 HARDWARE MONITOR DRIVER
10816 M:      Jean Delvare <jdelvare@suse.com>
10817 L:      linux-hwmon@vger.kernel.org
10818 S:      Maintained
10819 F:      Documentation/hwmon/lm78.rst
10820 F:      drivers/hwmon/lm78.c
10821
10822 LM83 HARDWARE MONITOR DRIVER
10823 M:      Jean Delvare <jdelvare@suse.com>
10824 L:      linux-hwmon@vger.kernel.org
10825 S:      Maintained
10826 F:      Documentation/hwmon/lm83.rst
10827 F:      drivers/hwmon/lm83.c
10828
10829 LM90 HARDWARE MONITOR DRIVER
10830 M:      Jean Delvare <jdelvare@suse.com>
10831 L:      linux-hwmon@vger.kernel.org
10832 S:      Maintained
10833 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10834 F:      Documentation/hwmon/lm90.rst
10835 F:      drivers/hwmon/lm90.c
10836 F:      include/dt-bindings/thermal/lm90.h
10837
10838 LM95234 HARDWARE MONITOR DRIVER
10839 M:      Guenter Roeck <linux@roeck-us.net>
10840 L:      linux-hwmon@vger.kernel.org
10841 S:      Maintained
10842 F:      Documentation/hwmon/lm95234.rst
10843 F:      drivers/hwmon/lm95234.c
10844
10845 LME2510 MEDIA DRIVER
10846 M:      Malcolm Priestley <tvboxspy@gmail.com>
10847 L:      linux-media@vger.kernel.org
10848 S:      Maintained
10849 W:      https://linuxtv.org
10850 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10851 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10852
10853 LOADPIN SECURITY MODULE
10854 M:      Kees Cook <keescook@chromium.org>
10855 S:      Supported
10856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10857 F:      Documentation/admin-guide/LSM/LoadPin.rst
10858 F:      security/loadpin/
10859
10860 LOCKING PRIMITIVES
10861 M:      Peter Zijlstra <peterz@infradead.org>
10862 M:      Ingo Molnar <mingo@redhat.com>
10863 M:      Will Deacon <will@kernel.org>
10864 R:      Waiman Long <longman@redhat.com>
10865 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
10866 L:      linux-kernel@vger.kernel.org
10867 S:      Maintained
10868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10869 F:      Documentation/locking/
10870 F:      arch/*/include/asm/spinlock*.h
10871 F:      include/linux/lockdep.h
10872 F:      include/linux/mutex*.h
10873 F:      include/linux/rwlock*.h
10874 F:      include/linux/rwsem*.h
10875 F:      include/linux/seqlock.h
10876 F:      include/linux/spinlock*.h
10877 F:      kernel/locking/
10878 F:      lib/locking*.[ch]
10879 X:      kernel/locking/locktorture.c
10880
10881 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10882 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
10883 L:      linux-ntfs-dev@lists.sourceforge.net
10884 S:      Maintained
10885 W:      http://www.linux-ntfs.org/content/view/19/37/
10886 F:      Documentation/admin-guide/ldm.rst
10887 F:      block/partitions/ldm.*
10888
10889 LOGITECH HID GAMING KEYBOARDS
10890 M:      Hans de Goede <hdegoede@redhat.com>
10891 L:      linux-input@vger.kernel.org
10892 S:      Maintained
10893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10894 F:      drivers/hid/hid-lg-g15.c
10895
10896 LONTIUM LT8912B MIPI TO HDMI BRIDGE
10897 M:      Adrien Grassein <adrien.grassein@gmail.com>
10898 S:      Maintained
10899 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
10900 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
10901
10902 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10903 M:      Sathya Prakash <sathya.prakash@broadcom.com>
10904 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10905 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10906 L:      MPT-FusionLinux.pdl@broadcom.com
10907 L:      linux-scsi@vger.kernel.org
10908 S:      Supported
10909 W:      http://www.avagotech.com/support/
10910 F:      drivers/message/fusion/
10911 F:      drivers/scsi/mpt3sas/
10912
10913 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10914 M:      Matthew Wilcox <willy@infradead.org>
10915 L:      linux-scsi@vger.kernel.org
10916 S:      Maintained
10917 F:      drivers/scsi/sym53c8xx_2/
10918
10919 LTC1660 DAC DRIVER
10920 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10921 L:      linux-iio@vger.kernel.org
10922 S:      Maintained
10923 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10924 F:      drivers/iio/dac/ltc1660.c
10925
10926 LTC2947 HARDWARE MONITOR DRIVER
10927 M:      Nuno Sá <nuno.sa@analog.com>
10928 L:      linux-hwmon@vger.kernel.org
10929 S:      Supported
10930 W:      http://ez.analog.com/community/linux-device-drivers
10931 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10932 F:      drivers/hwmon/ltc2947-core.c
10933 F:      drivers/hwmon/ltc2947-i2c.c
10934 F:      drivers/hwmon/ltc2947-spi.c
10935 F:      drivers/hwmon/ltc2947.h
10936
10937 LTC2983 IIO TEMPERATURE DRIVER
10938 M:      Nuno Sá <nuno.sa@analog.com>
10939 L:      linux-iio@vger.kernel.org
10940 S:      Supported
10941 W:      http://ez.analog.com/community/linux-device-drivers
10942 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10943 F:      drivers/iio/temperature/ltc2983.c
10944
10945 LTC4261 HARDWARE MONITOR DRIVER
10946 M:      Guenter Roeck <linux@roeck-us.net>
10947 L:      linux-hwmon@vger.kernel.org
10948 S:      Maintained
10949 F:      Documentation/hwmon/ltc4261.rst
10950 F:      drivers/hwmon/ltc4261.c
10951
10952 LTC4306 I2C MULTIPLEXER DRIVER
10953 M:      Michael Hennerich <michael.hennerich@analog.com>
10954 L:      linux-i2c@vger.kernel.org
10955 S:      Supported
10956 W:      http://ez.analog.com/community/linux-device-drivers
10957 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10958 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10959
10960 LTP (Linux Test Project)
10961 M:      Mike Frysinger <vapier@gentoo.org>
10962 M:      Cyril Hrubis <chrubis@suse.cz>
10963 M:      Wanlong Gao <wanlong.gao@gmail.com>
10964 M:      Jan Stancek <jstancek@redhat.com>
10965 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10966 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
10967 L:      ltp@lists.linux.it (subscribers-only)
10968 S:      Maintained
10969 W:      http://linux-test-project.github.io/
10970 T:      git git://github.com/linux-test-project/ltp.git
10971
10972 LYNX PCS MODULE
10973 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
10974 L:      netdev@vger.kernel.org
10975 S:      Supported
10976 F:      drivers/net/pcs/pcs-lynx.c
10977 F:      include/linux/pcs-lynx.h
10978
10979 M68K ARCHITECTURE
10980 M:      Geert Uytterhoeven <geert@linux-m68k.org>
10981 L:      linux-m68k@lists.linux-m68k.org
10982 S:      Maintained
10983 W:      http://www.linux-m68k.org/
10984 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10985 F:      arch/m68k/
10986 F:      drivers/zorro/
10987
10988 M68K ON APPLE MACINTOSH
10989 M:      Joshua Thompson <funaho@jurai.org>
10990 L:      linux-m68k@lists.linux-m68k.org
10991 S:      Maintained
10992 W:      http://www.mac.linux-m68k.org/
10993 F:      arch/m68k/mac/
10994 F:      drivers/macintosh/adb-iop.c
10995 F:      drivers/macintosh/via-macii.c
10996
10997 M68K ON HP9000/300
10998 M:      Philip Blundell <philb@gnu.org>
10999 S:      Maintained
11000 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11001 F:      arch/m68k/hp300/
11002
11003 M88DS3103 MEDIA DRIVER
11004 M:      Antti Palosaari <crope@iki.fi>
11005 L:      linux-media@vger.kernel.org
11006 S:      Maintained
11007 W:      https://linuxtv.org
11008 W:      http://palosaari.fi/linux/
11009 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11010 T:      git git://linuxtv.org/anttip/media_tree.git
11011 F:      drivers/media/dvb-frontends/m88ds3103*
11012
11013 M88RS2000 MEDIA DRIVER
11014 M:      Malcolm Priestley <tvboxspy@gmail.com>
11015 L:      linux-media@vger.kernel.org
11016 S:      Maintained
11017 W:      https://linuxtv.org
11018 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11019 F:      drivers/media/dvb-frontends/m88rs2000*
11020
11021 MA901 MASTERKIT USB FM RADIO DRIVER
11022 M:      Alexey Klimov <klimov.linux@gmail.com>
11023 L:      linux-media@vger.kernel.org
11024 S:      Maintained
11025 T:      git git://linuxtv.org/media_tree.git
11026 F:      drivers/media/radio/radio-ma901.c
11027
11028 MAC80211
11029 M:      Johannes Berg <johannes@sipsolutions.net>
11030 L:      linux-wireless@vger.kernel.org
11031 S:      Maintained
11032 W:      https://wireless.wiki.kernel.org/
11033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11035 F:      Documentation/networking/mac80211-injection.rst
11036 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11037 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11038 F:      include/net/mac80211.h
11039 F:      net/mac80211/
11040
11041 MAILBOX API
11042 M:      Jassi Brar <jassisinghbrar@gmail.com>
11043 L:      linux-kernel@vger.kernel.org
11044 S:      Maintained
11045 F:      drivers/mailbox/
11046 F:      include/linux/mailbox_client.h
11047 F:      include/linux/mailbox_controller.h
11048 F:      include/dt-bindings/mailbox/
11049 F:      Documentation/devicetree/bindings/mailbox/
11050
11051 MAILBOX ARM MHUv2
11052 M:      Viresh Kumar <viresh.kumar@linaro.org>
11053 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11054 L:      linux-kernel@vger.kernel.org
11055 S:      Maintained
11056 F:      drivers/mailbox/arm_mhuv2.c
11057 F:      include/linux/mailbox/arm_mhuv2_message.h
11058 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11059
11060 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11061 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11062 M:      Matt Johnston <matt@codeconstruct.com.au>
11063 L:      netdev@vger.kernel.org
11064 S:      Maintained
11065 F:      Documentation/networking/mctp.rst
11066 F:      drivers/net/mctp/
11067 F:      include/net/mctp.h
11068 F:      include/net/mctpdevice.h
11069 F:      include/net/netns/mctp.h
11070 F:      net/mctp/
11071
11072 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11073 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11074 L:      linux-man@vger.kernel.org
11075 S:      Maintained
11076 W:      http://www.kernel.org/doc/man-pages
11077
11078 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11079 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11080 L:      linux-mips@vger.kernel.org
11081 S:      Maintained
11082 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
11083
11084 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11085 M:      Andrew Lunn <andrew@lunn.ch>
11086 M:      Vivien Didelot <vivien.didelot@gmail.com>
11087 L:      netdev@vger.kernel.org
11088 S:      Maintained
11089 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11090 F:      Documentation/networking/devlink/mv88e6xxx.rst
11091 F:      drivers/net/dsa/mv88e6xxx/
11092 F:      include/linux/platform_data/mv88e6xxx.h
11093
11094 MARVELL ARMADA 3700 PHY DRIVERS
11095 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11096 S:      Maintained
11097 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11098 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11099 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11100 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11101
11102 MARVELL ARMADA DRM SUPPORT
11103 M:      Russell King <linux@armlinux.org.uk>
11104 S:      Maintained
11105 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11106 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11107 F:      Documentation/devicetree/bindings/display/armada/
11108 F:      drivers/gpu/drm/armada/
11109 F:      include/uapi/drm/armada_drm.h
11110
11111 MARVELL CRYPTO DRIVER
11112 M:      Boris Brezillon <bbrezillon@kernel.org>
11113 M:      Arnaud Ebalard <arno@natisbad.org>
11114 M:      Srujana Challa <schalla@marvell.com>
11115 L:      linux-crypto@vger.kernel.org
11116 S:      Maintained
11117 F:      drivers/crypto/marvell/
11118 F:      include/linux/soc/marvell/octeontx2/
11119
11120 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11121 M:      Mirko Lindner <mlindner@marvell.com>
11122 M:      Stephen Hemminger <stephen@networkplumber.org>
11123 L:      netdev@vger.kernel.org
11124 S:      Maintained
11125 F:      drivers/net/ethernet/marvell/sk*
11126
11127 MARVELL LIBERTAS WIRELESS DRIVER
11128 L:      libertas-dev@lists.infradead.org
11129 S:      Orphan
11130 F:      drivers/net/wireless/marvell/libertas/
11131
11132 MARVELL MACCHIATOBIN SUPPORT
11133 M:      Russell King <linux@armlinux.org.uk>
11134 L:      linux-arm-kernel@lists.infradead.org
11135 S:      Maintained
11136 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11137
11138 MARVELL MV643XX ETHERNET DRIVER
11139 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11140 L:      netdev@vger.kernel.org
11141 S:      Maintained
11142 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11143 F:      include/linux/mv643xx.h
11144
11145 MARVELL MV88X3310 PHY DRIVER
11146 M:      Russell King <linux@armlinux.org.uk>
11147 M:      Marek Behún <kabel@kernel.org>
11148 L:      netdev@vger.kernel.org
11149 S:      Maintained
11150 F:      drivers/net/phy/marvell10g.c
11151
11152 MARVELL MVEBU THERMAL DRIVER
11153 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11154 S:      Maintained
11155 F:      drivers/thermal/armada_thermal.c
11156
11157 MARVELL MVNETA ETHERNET DRIVER
11158 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11159 L:      netdev@vger.kernel.org
11160 S:      Maintained
11161 F:      drivers/net/ethernet/marvell/mvneta.*
11162
11163 MARVELL MVPP2 ETHERNET DRIVER
11164 M:      Marcin Wojtas <mw@semihalf.com>
11165 M:      Russell King <linux@armlinux.org.uk>
11166 L:      netdev@vger.kernel.org
11167 S:      Maintained
11168 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11169 F:      drivers/net/ethernet/marvell/mvpp2/
11170
11171 MARVELL MWIFIEX WIRELESS DRIVER
11172 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11173 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11174 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11175 M:      Xinming Hu <huxinming820@gmail.com>
11176 L:      linux-wireless@vger.kernel.org
11177 S:      Maintained
11178 F:      drivers/net/wireless/marvell/mwifiex/
11179
11180 MARVELL MWL8K WIRELESS DRIVER
11181 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11182 L:      linux-wireless@vger.kernel.org
11183 S:      Odd Fixes
11184 F:      drivers/net/wireless/marvell/mwl8k.c
11185
11186 MARVELL NAND CONTROLLER DRIVER
11187 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11188 L:      linux-mtd@lists.infradead.org
11189 S:      Maintained
11190 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11191 F:      drivers/mtd/nand/raw/marvell_nand.c
11192
11193 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11194 M:      Sunil Goutham <sgoutham@marvell.com>
11195 M:      Geetha sowjanya <gakula@marvell.com>
11196 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11197 M:      hariprasad <hkelam@marvell.com>
11198 L:      netdev@vger.kernel.org
11199 S:      Supported
11200 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11201 F:      include/linux/soc/marvell/octeontx2/
11202
11203 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11204 M:      Sunil Goutham <sgoutham@marvell.com>
11205 M:      Linu Cherian <lcherian@marvell.com>
11206 M:      Geetha sowjanya <gakula@marvell.com>
11207 M:      Jerin Jacob <jerinj@marvell.com>
11208 M:      hariprasad <hkelam@marvell.com>
11209 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11210 L:      netdev@vger.kernel.org
11211 S:      Supported
11212 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11213 F:      drivers/net/ethernet/marvell/octeontx2/af/
11214
11215 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11216 M:      Vadym Kochan <vkochan@marvell.com>
11217 M:      Taras Chornyi <tchornyi@marvell.com>
11218 S:      Supported
11219 W:      https://github.com/Marvell-switching/switchdev-prestera
11220 F:      drivers/net/ethernet/marvell/prestera/
11221
11222 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11223 M:      Nicolas Pitre <nico@fluxnic.net>
11224 S:      Odd Fixes
11225 F:      drivers/mmc/host/mvsdio.*
11226
11227 MARVELL USB MDIO CONTROLLER DRIVER
11228 M:      Tobias Waldekranz <tobias@waldekranz.com>
11229 L:      netdev@vger.kernel.org
11230 S:      Maintained
11231 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11232 F:      drivers/net/mdio/mdio-mvusb.c
11233
11234 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11235 M:      Hu Ziji <huziji@marvell.com>
11236 L:      linux-mmc@vger.kernel.org
11237 S:      Supported
11238 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11239 F:      drivers/mmc/host/sdhci-xenon*
11240
11241 MATROX FRAMEBUFFER DRIVER
11242 L:      linux-fbdev@vger.kernel.org
11243 S:      Orphan
11244 F:      drivers/video/fbdev/matrox/matroxfb_*
11245 F:      include/uapi/linux/matroxfb.h
11246
11247 MAX15301 DRIVER
11248 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11249 L:      linux-hwmon@vger.kernel.org
11250 S:      Maintained
11251 F:      Documentation/hwmon/max15301.rst
11252 F:      drivers/hwmon/pmbus/max15301.c
11253
11254 MAX16065 HARDWARE MONITOR DRIVER
11255 M:      Guenter Roeck <linux@roeck-us.net>
11256 L:      linux-hwmon@vger.kernel.org
11257 S:      Maintained
11258 F:      Documentation/hwmon/max16065.rst
11259 F:      drivers/hwmon/max16065.c
11260
11261 MAX2175 SDR TUNER DRIVER
11262 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11263 L:      linux-media@vger.kernel.org
11264 S:      Maintained
11265 T:      git git://linuxtv.org/media_tree.git
11266 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11267 F:      Documentation/userspace-api/media/drivers/max2175.rst
11268 F:      drivers/media/i2c/max2175*
11269 F:      include/uapi/linux/max2175.h
11270
11271 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11272 L:      linux-hwmon@vger.kernel.org
11273 S:      Orphan
11274 F:      Documentation/hwmon/max6650.rst
11275 F:      drivers/hwmon/max6650.c
11276
11277 MAX6697 HARDWARE MONITOR DRIVER
11278 M:      Guenter Roeck <linux@roeck-us.net>
11279 L:      linux-hwmon@vger.kernel.org
11280 S:      Maintained
11281 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11282 F:      Documentation/hwmon/max6697.rst
11283 F:      drivers/hwmon/max6697.c
11284 F:      include/linux/platform_data/max6697.h
11285
11286 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11287 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11288 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11289 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11290 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11291 L:      linux-media@vger.kernel.org
11292 S:      Maintained
11293 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11294 F:      drivers/media/i2c/max9286.c
11295
11296 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11297 M:      Peter Rosin <peda@axentia.se>
11298 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11299 S:      Maintained
11300 F:      Documentation/devicetree/bindings/sound/max9860.txt
11301 F:      sound/soc/codecs/max9860.*
11302
11303 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11304 M:      Andreas Klinger <ak@it-klinger.de>
11305 L:      linux-iio@vger.kernel.org
11306 S:      Maintained
11307 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11308 F:      drivers/iio/proximity/mb1232.c
11309
11310 MAXIM MAX77650 PMIC MFD DRIVER
11311 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
11312 L:      linux-kernel@vger.kernel.org
11313 S:      Maintained
11314 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11315 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11316 F:      drivers/gpio/gpio-max77650.c
11317 F:      drivers/input/misc/max77650-onkey.c
11318 F:      drivers/leds/leds-max77650.c
11319 F:      drivers/mfd/max77650.c
11320 F:      drivers/power/supply/max77650-charger.c
11321 F:      drivers/regulator/max77650-regulator.c
11322 F:      include/linux/mfd/max77650.h
11323
11324 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11325 M:      Javier Martinez Canillas <javier@dowhile0.org>
11326 L:      linux-kernel@vger.kernel.org
11327 S:      Supported
11328 F:      Documentation/devicetree/bindings/*/*max77802.txt
11329 F:      drivers/regulator/max77802-regulator.c
11330 F:      include/dt-bindings/*/*max77802.h
11331
11332 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11333 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11334 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11335 L:      linux-pm@vger.kernel.org
11336 S:      Supported
11337 F:      drivers/power/supply/max14577_charger.c
11338 F:      drivers/power/supply/max77693_charger.c
11339
11340 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11341 M:      Chanwoo Choi <cw00.choi@samsung.com>
11342 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11343 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11344 L:      linux-kernel@vger.kernel.org
11345 S:      Supported
11346 F:      Documentation/devicetree/bindings/*/max77686.txt
11347 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11348 F:      Documentation/devicetree/bindings/mfd/max14577.txt
11349 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11350 F:      drivers/*/max14577*.c
11351 F:      drivers/*/max77686*.c
11352 F:      drivers/*/max77693*.c
11353 F:      drivers/clk/clk-max77686.c
11354 F:      drivers/extcon/extcon-max14577.c
11355 F:      drivers/extcon/extcon-max77693.c
11356 F:      drivers/rtc/rtc-max77686.c
11357 F:      include/linux/mfd/max14577*.h
11358 F:      include/linux/mfd/max77686*.h
11359 F:      include/linux/mfd/max77693*.h
11360
11361 MAXIRADIO FM RADIO RECEIVER DRIVER
11362 M:      Hans Verkuil <hverkuil@xs4all.nl>
11363 L:      linux-media@vger.kernel.org
11364 S:      Maintained
11365 W:      https://linuxtv.org
11366 T:      git git://linuxtv.org/media_tree.git
11367 F:      drivers/media/radio/radio-maxiradio*
11368
11369 MAXLINEAR ETHERNET PHY DRIVER
11370 M:      Xu Liang <lxu@maxlinear.com>
11371 L:      netdev@vger.kernel.org
11372 S:      Supported
11373 F:      drivers/net/phy/mxl-gpy.c
11374
11375 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11376 R:      Yasushi SHOJI <yashi@spacecubics.com>
11377 L:      linux-can@vger.kernel.org
11378 S:      Maintained
11379 F:      drivers/net/can/usb/mcba_usb.c
11380
11381 MCAN MMIO DEVICE DRIVER
11382 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11383 L:      linux-can@vger.kernel.org
11384 S:      Maintained
11385 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11386 F:      drivers/net/can/m_can/m_can.c
11387 F:      drivers/net/can/m_can/m_can.h
11388 F:      drivers/net/can/m_can/m_can_platform.c
11389
11390 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11391 M:      Rishi Gupta <gupt21@gmail.com>
11392 L:      linux-i2c@vger.kernel.org
11393 L:      linux-input@vger.kernel.org
11394 S:      Maintained
11395 F:      drivers/hid/hid-mcp2221.c
11396
11397 MCP251XFD SPI-CAN NETWORK DRIVER
11398 M:      Marc Kleine-Budde <mkl@pengutronix.de>
11399 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11400 R:      Thomas Kopp <thomas.kopp@microchip.com>
11401 L:      linux-can@vger.kernel.org
11402 S:      Maintained
11403 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11404 F:      drivers/net/can/spi/mcp251xfd/
11405
11406 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11407 M:      Peter Rosin <peda@axentia.se>
11408 L:      linux-iio@vger.kernel.org
11409 S:      Maintained
11410 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11411 F:      drivers/iio/potentiometer/mcp4018.c
11412 F:      drivers/iio/potentiometer/mcp4531.c
11413
11414 MCR20A IEEE-802.15.4 RADIO DRIVER
11415 M:      Xue Liu <liuxuenetmail@gmail.com>
11416 L:      linux-wpan@vger.kernel.org
11417 S:      Maintained
11418 W:      https://github.com/xueliu/mcr20a-linux
11419 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11420 F:      drivers/net/ieee802154/mcr20a.c
11421 F:      drivers/net/ieee802154/mcr20a.h
11422
11423 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11424 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
11425 L:      linux-iio@vger.kernel.org
11426 S:      Maintained
11427 F:      drivers/iio/dac/cio-dac.c
11428
11429 MEDIA CONTROLLER FRAMEWORK
11430 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11431 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11432 L:      linux-media@vger.kernel.org
11433 S:      Supported
11434 W:      https://www.linuxtv.org
11435 T:      git git://linuxtv.org/media_tree.git
11436 F:      drivers/media/mc/
11437 F:      include/media/media-*.h
11438 F:      include/uapi/linux/media.h
11439
11440 MEDIA DRIVER FOR FREESCALE IMX PXP
11441 M:      Philipp Zabel <p.zabel@pengutronix.de>
11442 L:      linux-media@vger.kernel.org
11443 S:      Maintained
11444 T:      git git://linuxtv.org/media_tree.git
11445 F:      drivers/media/platform/imx-pxp.[ch]
11446
11447 MEDIA DRIVERS FOR ASCOT2E
11448 M:      Sergey Kozlov <serjk@netup.ru>
11449 M:      Abylay Ospan <aospan@netup.ru>
11450 L:      linux-media@vger.kernel.org
11451 S:      Supported
11452 W:      https://linuxtv.org
11453 W:      http://netup.tv/
11454 T:      git git://linuxtv.org/media_tree.git
11455 F:      drivers/media/dvb-frontends/ascot2e*
11456
11457 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11458 M:      Jasmin Jessich <jasmin@anw.at>
11459 L:      linux-media@vger.kernel.org
11460 S:      Maintained
11461 W:      https://linuxtv.org
11462 T:      git git://linuxtv.org/media_tree.git
11463 F:      drivers/media/dvb-frontends/cxd2099*
11464
11465 MEDIA DRIVERS FOR CXD2841ER
11466 M:      Sergey Kozlov <serjk@netup.ru>
11467 M:      Abylay Ospan <aospan@netup.ru>
11468 L:      linux-media@vger.kernel.org
11469 S:      Supported
11470 W:      https://linuxtv.org
11471 W:      http://netup.tv/
11472 T:      git git://linuxtv.org/media_tree.git
11473 F:      drivers/media/dvb-frontends/cxd2841er*
11474
11475 MEDIA DRIVERS FOR CXD2880
11476 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11477 L:      linux-media@vger.kernel.org
11478 S:      Supported
11479 W:      http://linuxtv.org/
11480 T:      git git://linuxtv.org/media_tree.git
11481 F:      drivers/media/dvb-frontends/cxd2880/*
11482 F:      drivers/media/spi/cxd2880*
11483
11484 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11485 L:      linux-media@vger.kernel.org
11486 S:      Orphan
11487 W:      https://linuxtv.org
11488 T:      git git://linuxtv.org/media_tree.git
11489 F:      drivers/media/pci/ddbridge/*
11490
11491 MEDIA DRIVERS FOR FREESCALE IMX
11492 M:      Steve Longerbeam <slongerbeam@gmail.com>
11493 M:      Philipp Zabel <p.zabel@pengutronix.de>
11494 L:      linux-media@vger.kernel.org
11495 S:      Maintained
11496 T:      git git://linuxtv.org/media_tree.git
11497 F:      Documentation/admin-guide/media/imx.rst
11498 F:      Documentation/devicetree/bindings/media/imx.txt
11499 F:      drivers/staging/media/imx/
11500 F:      include/linux/imx-media.h
11501 F:      include/media/imx.h
11502
11503 MEDIA DRIVERS FOR FREESCALE IMX7
11504 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11505 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11506 L:      linux-media@vger.kernel.org
11507 S:      Maintained
11508 T:      git git://linuxtv.org/media_tree.git
11509 F:      Documentation/admin-guide/media/imx7.rst
11510 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11511 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11512 F:      drivers/staging/media/imx/imx7-media-csi.c
11513 F:      drivers/staging/media/imx/imx7-mipi-csis.c
11514
11515 MEDIA DRIVERS FOR HELENE
11516 M:      Abylay Ospan <aospan@netup.ru>
11517 L:      linux-media@vger.kernel.org
11518 S:      Supported
11519 W:      https://linuxtv.org
11520 W:      http://netup.tv/
11521 T:      git git://linuxtv.org/media_tree.git
11522 F:      drivers/media/dvb-frontends/helene*
11523
11524 MEDIA DRIVERS FOR HORUS3A
11525 M:      Sergey Kozlov <serjk@netup.ru>
11526 M:      Abylay Ospan <aospan@netup.ru>
11527 L:      linux-media@vger.kernel.org
11528 S:      Supported
11529 W:      https://linuxtv.org
11530 W:      http://netup.tv/
11531 T:      git git://linuxtv.org/media_tree.git
11532 F:      drivers/media/dvb-frontends/horus3a*
11533
11534 MEDIA DRIVERS FOR LNBH25
11535 M:      Sergey Kozlov <serjk@netup.ru>
11536 M:      Abylay Ospan <aospan@netup.ru>
11537 L:      linux-media@vger.kernel.org
11538 S:      Supported
11539 W:      https://linuxtv.org
11540 W:      http://netup.tv/
11541 T:      git git://linuxtv.org/media_tree.git
11542 F:      drivers/media/dvb-frontends/lnbh25*
11543
11544 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11545 L:      linux-media@vger.kernel.org
11546 S:      Orphan
11547 W:      https://linuxtv.org
11548 T:      git git://linuxtv.org/media_tree.git
11549 F:      drivers/media/dvb-frontends/mxl5xx*
11550
11551 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11552 M:      Sergey Kozlov <serjk@netup.ru>
11553 M:      Abylay Ospan <aospan@netup.ru>
11554 L:      linux-media@vger.kernel.org
11555 S:      Supported
11556 W:      https://linuxtv.org
11557 W:      http://netup.tv/
11558 T:      git git://linuxtv.org/media_tree.git
11559 F:      drivers/media/pci/netup_unidvb/*
11560
11561 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11562 M:      Dmitry Osipenko <digetx@gmail.com>
11563 L:      linux-media@vger.kernel.org
11564 L:      linux-tegra@vger.kernel.org
11565 S:      Maintained
11566 T:      git git://linuxtv.org/media_tree.git
11567 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11568 F:      drivers/staging/media/tegra-vde/
11569
11570 MEDIA DRIVERS FOR RENESAS - CEU
11571 M:      Jacopo Mondi <jacopo@jmondi.org>
11572 L:      linux-media@vger.kernel.org
11573 L:      linux-renesas-soc@vger.kernel.org
11574 S:      Supported
11575 T:      git git://linuxtv.org/media_tree.git
11576 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11577 F:      drivers/media/platform/renesas-ceu.c
11578 F:      include/media/drv-intf/renesas-ceu.h
11579
11580 MEDIA DRIVERS FOR RENESAS - DRIF
11581 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11582 L:      linux-media@vger.kernel.org
11583 L:      linux-renesas-soc@vger.kernel.org
11584 S:      Supported
11585 T:      git git://linuxtv.org/media_tree.git
11586 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
11587 F:      drivers/media/platform/rcar_drif.c
11588
11589 MEDIA DRIVERS FOR RENESAS - FCP
11590 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11591 L:      linux-media@vger.kernel.org
11592 L:      linux-renesas-soc@vger.kernel.org
11593 S:      Supported
11594 T:      git git://linuxtv.org/media_tree.git
11595 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11596 F:      drivers/media/platform/rcar-fcp.c
11597 F:      include/media/rcar-fcp.h
11598
11599 MEDIA DRIVERS FOR RENESAS - FDP1
11600 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11601 L:      linux-media@vger.kernel.org
11602 L:      linux-renesas-soc@vger.kernel.org
11603 S:      Supported
11604 T:      git git://linuxtv.org/media_tree.git
11605 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11606 F:      drivers/media/platform/rcar_fdp1.c
11607
11608 MEDIA DRIVERS FOR RENESAS - VIN
11609 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11610 L:      linux-media@vger.kernel.org
11611 L:      linux-renesas-soc@vger.kernel.org
11612 S:      Supported
11613 T:      git git://linuxtv.org/media_tree.git
11614 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11615 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
11616 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11617 F:      drivers/media/platform/rcar-vin/
11618
11619 MEDIA DRIVERS FOR RENESAS - VSP1
11620 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11621 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11622 L:      linux-media@vger.kernel.org
11623 L:      linux-renesas-soc@vger.kernel.org
11624 S:      Supported
11625 T:      git git://linuxtv.org/media_tree.git
11626 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11627 F:      drivers/media/platform/vsp1/
11628
11629 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11630 L:      linux-media@vger.kernel.org
11631 S:      Orphan
11632 W:      https://linuxtv.org
11633 T:      git git://linuxtv.org/media_tree.git
11634 F:      drivers/media/dvb-frontends/stv0910*
11635
11636 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11637 L:      linux-media@vger.kernel.org
11638 S:      Orphan
11639 W:      https://linuxtv.org
11640 T:      git git://linuxtv.org/media_tree.git
11641 F:      drivers/media/dvb-frontends/stv6111*
11642
11643 MEDIA DRIVERS FOR STM32 - DCMI
11644 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
11645 L:      linux-media@vger.kernel.org
11646 S:      Supported
11647 T:      git git://linuxtv.org/media_tree.git
11648 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11649 F:      drivers/media/platform/stm32/stm32-dcmi.c
11650
11651 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11652 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11653 L:      linux-media@vger.kernel.org
11654 S:      Maintained
11655 W:      https://linuxtv.org
11656 Q:      http://patchwork.kernel.org/project/linux-media/list/
11657 T:      git git://linuxtv.org/media_tree.git
11658 F:      Documentation/admin-guide/media/
11659 F:      Documentation/devicetree/bindings/media/
11660 F:      Documentation/driver-api/media/
11661 F:      Documentation/userspace-api/media/
11662 F:      drivers/media/
11663 F:      drivers/staging/media/
11664 F:      include/linux/platform_data/media/
11665 F:      include/media/
11666 F:      include/uapi/linux/dvb/
11667 F:      include/uapi/linux/ivtv*
11668 F:      include/uapi/linux/media.h
11669 F:      include/uapi/linux/meye.h
11670 F:      include/uapi/linux/uvcvideo.h
11671 F:      include/uapi/linux/v4l2-*
11672 F:      include/uapi/linux/videodev2.h
11673
11674 MEDIATEK BLUETOOTH DRIVER
11675 M:      Sean Wang <sean.wang@mediatek.com>
11676 L:      linux-bluetooth@vger.kernel.org
11677 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11678 S:      Maintained
11679 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11680 F:      drivers/bluetooth/btmtkuart.c
11681
11682 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11683 M:      Sean Wang <sean.wang@mediatek.com>
11684 L:      linux-pm@vger.kernel.org
11685 S:      Maintained
11686 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11687 F:      drivers/power/reset/mt6323-poweroff.c
11688
11689 MEDIATEK CIR DRIVER
11690 M:      Sean Wang <sean.wang@mediatek.com>
11691 S:      Maintained
11692 F:      drivers/media/rc/mtk-cir.c
11693
11694 MEDIATEK DMA DRIVER
11695 M:      Sean Wang <sean.wang@mediatek.com>
11696 L:      dmaengine@vger.kernel.org
11697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11698 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11699 S:      Maintained
11700 F:      Documentation/devicetree/bindings/dma/mtk-*
11701 F:      drivers/dma/mediatek/
11702
11703 MEDIATEK ETHERNET DRIVER
11704 M:      Felix Fietkau <nbd@nbd.name>
11705 M:      John Crispin <john@phrozen.org>
11706 M:      Sean Wang <sean.wang@mediatek.com>
11707 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11708 L:      netdev@vger.kernel.org
11709 S:      Maintained
11710 F:      drivers/net/ethernet/mediatek/
11711
11712 MEDIATEK I2C CONTROLLER DRIVER
11713 M:      Qii Wang <qii.wang@mediatek.com>
11714 L:      linux-i2c@vger.kernel.org
11715 S:      Maintained
11716 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11717 F:      drivers/i2c/busses/i2c-mt65xx.c
11718
11719 MEDIATEK IOMMU DRIVER
11720 M:      Yong Wu <yong.wu@mediatek.com>
11721 L:      iommu@lists.linux-foundation.org
11722 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11723 S:      Supported
11724 F:      Documentation/devicetree/bindings/iommu/mediatek*
11725 F:      drivers/iommu/mtk_iommu*
11726 F:      include/dt-bindings/memory/mt*-port.h
11727
11728 MEDIATEK JPEG DRIVER
11729 M:      Rick Chang <rick.chang@mediatek.com>
11730 M:      Bin Liu <bin.liu@mediatek.com>
11731 S:      Supported
11732 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11733 F:      drivers/media/platform/mtk-jpeg/
11734
11735 MEDIATEK MDP DRIVER
11736 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11737 M:      Houlong Wei <houlong.wei@mediatek.com>
11738 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11739 S:      Supported
11740 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11741 F:      drivers/media/platform/mtk-mdp/
11742 F:      drivers/media/platform/mtk-vpu/
11743
11744 MEDIATEK MEDIA DRIVER
11745 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11746 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11747 S:      Supported
11748 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11749 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11750 F:      drivers/media/platform/mtk-vcodec/
11751 F:      drivers/media/platform/mtk-vpu/
11752
11753 MEDIATEK MMC/SD/SDIO DRIVER
11754 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11755 S:      Maintained
11756 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11757 F:      drivers/mmc/host/mtk-sd.c
11758
11759 MEDIATEK MT76 WIRELESS LAN DRIVER
11760 M:      Felix Fietkau <nbd@nbd.name>
11761 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11762 R:      Ryder Lee <ryder.lee@mediatek.com>
11763 L:      linux-wireless@vger.kernel.org
11764 S:      Maintained
11765 F:      drivers/net/wireless/mediatek/mt76/
11766
11767 MEDIATEK MT7601U WIRELESS LAN DRIVER
11768 M:      Jakub Kicinski <kubakici@wp.pl>
11769 L:      linux-wireless@vger.kernel.org
11770 S:      Maintained
11771 F:      drivers/net/wireless/mediatek/mt7601u/
11772
11773 MEDIATEK MT7621 CLOCK DRIVER
11774 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11775 S:      Maintained
11776 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
11777 F:      drivers/clk/ralink/clk-mt7621.c
11778
11779 MEDIATEK MT7621/28/88 I2C DRIVER
11780 M:      Stefan Roese <sr@denx.de>
11781 L:      linux-i2c@vger.kernel.org
11782 S:      Maintained
11783 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11784 F:      drivers/i2c/busses/i2c-mt7621.c
11785
11786 MEDIATEK MT7621 PHY PCI DRIVER
11787 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11788 S:      Maintained
11789 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11790 F:      drivers/phy/ralink/phy-mt7621-pci.c
11791
11792 MEDIATEK NAND CONTROLLER DRIVER
11793 L:      linux-mtd@lists.infradead.org
11794 S:      Orphan
11795 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11796 F:      drivers/mtd/nand/raw/mtk_*
11797
11798 MEDIATEK PMIC LED DRIVER
11799 M:      Sean Wang <sean.wang@mediatek.com>
11800 S:      Maintained
11801 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11802 F:      drivers/leds/leds-mt6323.c
11803
11804 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11805 M:      Sean Wang <sean.wang@mediatek.com>
11806 S:      Maintained
11807 F:      drivers/char/hw_random/mtk-rng.c
11808
11809 MEDIATEK SWITCH DRIVER
11810 M:      Sean Wang <sean.wang@mediatek.com>
11811 M:      Landen Chao <Landen.Chao@mediatek.com>
11812 M:      DENG Qingfang <dqfext@gmail.com>
11813 L:      netdev@vger.kernel.org
11814 S:      Maintained
11815 F:      drivers/net/dsa/mt7530.*
11816 F:      net/dsa/tag_mtk.c
11817
11818 MEDIATEK USB3 DRD IP DRIVER
11819 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
11820 L:      linux-usb@vger.kernel.org
11821 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11822 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11823 S:      Maintained
11824 F:      Documentation/devicetree/bindings/usb/mediatek,*
11825 F:      drivers/usb/host/xhci-mtk*
11826 F:      drivers/usb/mtu3/
11827
11828 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11829 M:      Peter Senna Tschudin <peter.senna@gmail.com>
11830 M:      Martin Donnelly <martin.donnelly@ge.com>
11831 M:      Martyn Welch <martyn.welch@collabora.co.uk>
11832 S:      Maintained
11833 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11834 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11835
11836 MEGARAID SCSI/SAS DRIVERS
11837 M:      Kashyap Desai <kashyap.desai@broadcom.com>
11838 M:      Sumit Saxena <sumit.saxena@broadcom.com>
11839 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11840 L:      megaraidlinux.pdl@broadcom.com
11841 L:      linux-scsi@vger.kernel.org
11842 S:      Maintained
11843 W:      http://www.avagotech.com/support/
11844 F:      Documentation/scsi/megaraid.rst
11845 F:      drivers/scsi/megaraid.*
11846 F:      drivers/scsi/megaraid/
11847
11848 MELEXIS MLX90614 DRIVER
11849 M:      Crt Mori <cmo@melexis.com>
11850 L:      linux-iio@vger.kernel.org
11851 S:      Supported
11852 W:      http://www.melexis.com
11853 F:      drivers/iio/temperature/mlx90614.c
11854
11855 MELEXIS MLX90632 DRIVER
11856 M:      Crt Mori <cmo@melexis.com>
11857 L:      linux-iio@vger.kernel.org
11858 S:      Supported
11859 W:      http://www.melexis.com
11860 F:      drivers/iio/temperature/mlx90632.c
11861
11862 MELFAS MIP4 TOUCHSCREEN DRIVER
11863 M:      Sangwon Jee <jeesw@melfas.com>
11864 S:      Supported
11865 W:      http://www.melfas.com
11866 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11867 F:      drivers/input/touchscreen/melfas_mip4.c
11868
11869 MELLANOX BLUEFIELD I2C DRIVER
11870 M:      Khalil Blaiech <kblaiech@nvidia.com>
11871 L:      linux-i2c@vger.kernel.org
11872 S:      Supported
11873 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
11874 F:      drivers/i2c/busses/i2c-mlxbf.c
11875
11876 MELLANOX ETHERNET DRIVER (mlx4_en)
11877 M:      Tariq Toukan <tariqt@nvidia.com>
11878 L:      netdev@vger.kernel.org
11879 S:      Supported
11880 W:      http://www.mellanox.com
11881 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11882 F:      drivers/net/ethernet/mellanox/mlx4/en_*
11883
11884 MELLANOX ETHERNET DRIVER (mlx5e)
11885 M:      Saeed Mahameed <saeedm@nvidia.com>
11886 L:      netdev@vger.kernel.org
11887 S:      Supported
11888 W:      http://www.mellanox.com
11889 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11890 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
11891
11892 MELLANOX ETHERNET INNOVA DRIVERS
11893 R:      Boris Pismenny <borisp@nvidia.com>
11894 L:      netdev@vger.kernel.org
11895 S:      Supported
11896 W:      http://www.mellanox.com
11897 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11898 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
11899 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11900 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11901 F:      include/linux/mlx5/mlx5_ifc_fpga.h
11902
11903 MELLANOX ETHERNET SWITCH DRIVERS
11904 M:      Jiri Pirko <jiri@nvidia.com>
11905 M:      Ido Schimmel <idosch@nvidia.com>
11906 L:      netdev@vger.kernel.org
11907 S:      Supported
11908 W:      http://www.mellanox.com
11909 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11910 F:      drivers/net/ethernet/mellanox/mlxsw/
11911 F:      tools/testing/selftests/drivers/net/mlxsw/
11912
11913 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11914 M:      mlxsw@nvidia.com
11915 L:      netdev@vger.kernel.org
11916 S:      Supported
11917 W:      http://www.mellanox.com
11918 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11919 F:      drivers/net/ethernet/mellanox/mlxfw/
11920
11921 MELLANOX HARDWARE PLATFORM SUPPORT
11922 M:      Hans de Goede <hdegoede@redhat.com>
11923 M:      Mark Gross <mgross@linux.intel.com>
11924 M:      Vadim Pasternak <vadimp@nvidia.com>
11925 L:      platform-driver-x86@vger.kernel.org
11926 S:      Supported
11927 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11928 F:      drivers/platform/mellanox/
11929 F:      include/linux/platform_data/mlxreg.h
11930
11931 MELLANOX MLX4 core VPI driver
11932 M:      Tariq Toukan <tariqt@nvidia.com>
11933 L:      netdev@vger.kernel.org
11934 L:      linux-rdma@vger.kernel.org
11935 S:      Supported
11936 W:      http://www.mellanox.com
11937 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11938 F:      drivers/net/ethernet/mellanox/mlx4/
11939 F:      include/linux/mlx4/
11940
11941 MELLANOX MLX4 IB driver
11942 M:      Yishai Hadas <yishaih@nvidia.com>
11943 L:      linux-rdma@vger.kernel.org
11944 S:      Supported
11945 W:      http://www.mellanox.com
11946 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11947 F:      drivers/infiniband/hw/mlx4/
11948 F:      include/linux/mlx4/
11949 F:      include/uapi/rdma/mlx4-abi.h
11950
11951 MELLANOX MLX5 core VPI driver
11952 M:      Saeed Mahameed <saeedm@nvidia.com>
11953 M:      Leon Romanovsky <leonro@nvidia.com>
11954 L:      netdev@vger.kernel.org
11955 L:      linux-rdma@vger.kernel.org
11956 S:      Supported
11957 W:      http://www.mellanox.com
11958 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11959 F:      Documentation/networking/device_drivers/ethernet/mellanox/
11960 F:      drivers/net/ethernet/mellanox/mlx5/core/
11961 F:      include/linux/mlx5/
11962
11963 MELLANOX MLX5 IB driver
11964 M:      Leon Romanovsky <leonro@nvidia.com>
11965 L:      linux-rdma@vger.kernel.org
11966 S:      Supported
11967 W:      http://www.mellanox.com
11968 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11969 F:      drivers/infiniband/hw/mlx5/
11970 F:      include/linux/mlx5/
11971 F:      include/uapi/rdma/mlx5-abi.h
11972
11973 MELLANOX MLXCPLD I2C AND MUX DRIVER
11974 M:      Vadim Pasternak <vadimp@nvidia.com>
11975 M:      Michael Shych <michaelsh@nvidia.com>
11976 L:      linux-i2c@vger.kernel.org
11977 S:      Supported
11978 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11979 F:      drivers/i2c/busses/i2c-mlxcpld.c
11980 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11981
11982 MELLANOX MLXCPLD LED DRIVER
11983 M:      Vadim Pasternak <vadimp@nvidia.com>
11984 L:      linux-leds@vger.kernel.org
11985 S:      Supported
11986 F:      Documentation/leds/leds-mlxcpld.rst
11987 F:      drivers/leds/leds-mlxcpld.c
11988 F:      drivers/leds/leds-mlxreg.c
11989
11990 MELLANOX PLATFORM DRIVER
11991 M:      Vadim Pasternak <vadimp@nvidia.com>
11992 L:      platform-driver-x86@vger.kernel.org
11993 S:      Supported
11994 F:      drivers/platform/x86/mlx-platform.c
11995
11996 MEMBARRIER SUPPORT
11997 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11998 M:      "Paul E. McKenney" <paulmck@kernel.org>
11999 L:      linux-kernel@vger.kernel.org
12000 S:      Supported
12001 F:      arch/powerpc/include/asm/membarrier.h
12002 F:      include/uapi/linux/membarrier.h
12003 F:      kernel/sched/membarrier.c
12004
12005 MEMBLOCK
12006 M:      Mike Rapoport <rppt@linux.ibm.com>
12007 L:      linux-mm@kvack.org
12008 S:      Maintained
12009 F:      Documentation/core-api/boot-time-mm.rst
12010 F:      include/linux/memblock.h
12011 F:      mm/memblock.c
12012
12013 MEMORY CONTROLLER DRIVERS
12014 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
12015 L:      linux-kernel@vger.kernel.org
12016 S:      Maintained
12017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12018 F:      Documentation/devicetree/bindings/memory-controllers/
12019 F:      drivers/memory/
12020 F:      include/dt-bindings/memory/
12021 F:      include/memory/
12022
12023 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12024 M:      Dmitry Osipenko <digetx@gmail.com>
12025 L:      linux-pm@vger.kernel.org
12026 L:      linux-tegra@vger.kernel.org
12027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12028 S:      Maintained
12029 F:      drivers/devfreq/tegra30-devfreq.c
12030
12031 MEMORY MANAGEMENT
12032 M:      Andrew Morton <akpm@linux-foundation.org>
12033 L:      linux-mm@kvack.org
12034 S:      Maintained
12035 W:      http://www.linux-mm.org
12036 T:      quilt https://ozlabs.org/~akpm/mmotm/
12037 T:      quilt https://ozlabs.org/~akpm/mmots/
12038 T:      git git://github.com/hnaz/linux-mm.git
12039 F:      include/linux/gfp.h
12040 F:      include/linux/memory_hotplug.h
12041 F:      include/linux/mm.h
12042 F:      include/linux/mmzone.h
12043 F:      include/linux/pagewalk.h
12044 F:      include/linux/vmalloc.h
12045 F:      mm/
12046 F:      tools/testing/selftests/vm/
12047
12048 MEMORY TECHNOLOGY DEVICES (MTD)
12049 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12050 M:      Richard Weinberger <richard@nod.at>
12051 M:      Vignesh Raghavendra <vigneshr@ti.com>
12052 L:      linux-mtd@lists.infradead.org
12053 S:      Maintained
12054 W:      http://www.linux-mtd.infradead.org/
12055 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12056 C:      irc://irc.oftc.net/mtd
12057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12059 F:      Documentation/devicetree/bindings/mtd/
12060 F:      drivers/mtd/
12061 F:      include/linux/mtd/
12062 F:      include/uapi/mtd/
12063
12064 MEN A21 WATCHDOG DRIVER
12065 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12066 L:      linux-watchdog@vger.kernel.org
12067 S:      Maintained
12068 F:      drivers/watchdog/mena21_wdt.c
12069
12070 MEN CHAMELEON BUS (mcb)
12071 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12072 S:      Maintained
12073 F:      Documentation/driver-api/men-chameleon-bus.rst
12074 F:      drivers/mcb/
12075 F:      include/linux/mcb.h
12076
12077 MEN F21BMC (Board Management Controller)
12078 M:      Andreas Werner <andreas.werner@men.de>
12079 S:      Supported
12080 F:      Documentation/hwmon/menf21bmc.rst
12081 F:      drivers/hwmon/menf21bmc_hwmon.c
12082 F:      drivers/leds/leds-menf21bmc.c
12083 F:      drivers/mfd/menf21bmc.c
12084 F:      drivers/watchdog/menf21bmc_wdt.c
12085
12086 MEN Z069 WATCHDOG DRIVER
12087 M:      Johannes Thumshirn <jth@kernel.org>
12088 L:      linux-watchdog@vger.kernel.org
12089 S:      Maintained
12090 F:      drivers/watchdog/menz69_wdt.c
12091
12092 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12093 M:      Neil Armstrong <narmstrong@baylibre.com>
12094 L:      linux-media@vger.kernel.org
12095 L:      linux-amlogic@lists.infradead.org
12096 S:      Supported
12097 W:      http://linux-meson.com/
12098 T:      git git://linuxtv.org/media_tree.git
12099 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12100 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12101 F:      drivers/media/cec/platform/meson/ao-cec.c
12102
12103 MESON GE2D DRIVER FOR AMLOGIC SOCS
12104 M:      Neil Armstrong <narmstrong@baylibre.com>
12105 L:      linux-media@vger.kernel.org
12106 L:      linux-amlogic@lists.infradead.org
12107 S:      Supported
12108 T:      git git://linuxtv.org/media_tree.git
12109 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12110 F:      drivers/media/platform/meson/ge2d/
12111
12112 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12113 M:      Liang Yang <liang.yang@amlogic.com>
12114 L:      linux-mtd@lists.infradead.org
12115 S:      Maintained
12116 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12117 F:      drivers/mtd/nand/raw/meson_*
12118
12119 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12120 M:      Neil Armstrong <narmstrong@baylibre.com>
12121 L:      linux-media@vger.kernel.org
12122 L:      linux-amlogic@lists.infradead.org
12123 S:      Supported
12124 T:      git git://linuxtv.org/media_tree.git
12125 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12126 F:      drivers/staging/media/meson/vdec/
12127
12128 METHODE UDPU SUPPORT
12129 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12130 S:      Maintained
12131 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12132
12133 MHI BUS
12134 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12135 M:      Hemant Kumar <hemantk@codeaurora.org>
12136 L:      linux-arm-msm@vger.kernel.org
12137 S:      Maintained
12138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12139 F:      Documentation/ABI/stable/sysfs-bus-mhi
12140 F:      Documentation/mhi/
12141 F:      drivers/bus/mhi/
12142 F:      include/linux/mhi.h
12143
12144 MICROBLAZE ARCHITECTURE
12145 M:      Michal Simek <monstr@monstr.eu>
12146 S:      Supported
12147 W:      http://www.monstr.eu/fdt/
12148 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12149 F:      arch/microblaze/
12150
12151 MICROCHIP AT91 DMA DRIVERS
12152 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12153 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12154 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12155 L:      dmaengine@vger.kernel.org
12156 S:      Supported
12157 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12158 F:      drivers/dma/at_hdmac.c
12159 F:      drivers/dma/at_hdmac_regs.h
12160 F:      drivers/dma/at_xdmac.c
12161 F:      include/dt-bindings/dma/at91.h
12162
12163 MICROCHIP AT91 SERIAL DRIVER
12164 M:      Richard Genoud <richard.genoud@gmail.com>
12165 S:      Maintained
12166 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12167 F:      drivers/tty/serial/atmel_serial.c
12168 F:      drivers/tty/serial/atmel_serial.h
12169
12170 MICROCHIP AT91 USART MFD DRIVER
12171 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12172 L:      linux-kernel@vger.kernel.org
12173 S:      Supported
12174 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12175 F:      drivers/mfd/at91-usart.c
12176 F:      include/dt-bindings/mfd/at91-usart.h
12177
12178 MICROCHIP AT91 USART SPI DRIVER
12179 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12180 L:      linux-spi@vger.kernel.org
12181 S:      Supported
12182 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12183 F:      drivers/spi/spi-at91-usart.c
12184
12185 MICROCHIP AUDIO ASOC DRIVERS
12186 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12187 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12188 S:      Supported
12189 F:      sound/soc/atmel
12190
12191 MICROCHIP ECC DRIVER
12192 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12193 L:      linux-crypto@vger.kernel.org
12194 S:      Maintained
12195 F:      drivers/crypto/atmel-ecc.*
12196
12197 MICROCHIP I2C DRIVER
12198 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12199 L:      linux-i2c@vger.kernel.org
12200 S:      Supported
12201 F:      drivers/i2c/busses/i2c-at91-*.c
12202 F:      drivers/i2c/busses/i2c-at91.h
12203
12204 MICROCHIP ISC DRIVER
12205 M:      Eugen Hristev <eugen.hristev@microchip.com>
12206 L:      linux-media@vger.kernel.org
12207 S:      Supported
12208 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12209 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12210 F:      drivers/media/platform/atmel/atmel-isc-base.c
12211 F:      drivers/media/platform/atmel/atmel-isc-regs.h
12212 F:      drivers/media/platform/atmel/atmel-isc.h
12213 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
12214 F:      drivers/media/platform/atmel/atmel-sama7g5-isc.c
12215 F:      include/linux/atmel-isc-media.h
12216
12217 MICROCHIP ISI DRIVER
12218 M:      Eugen Hristev <eugen.hristev@microchip.com>
12219 L:      linux-media@vger.kernel.org
12220 S:      Supported
12221 F:      drivers/media/platform/atmel/atmel-isi.c
12222 F:      drivers/media/platform/atmel/atmel-isi.h
12223
12224 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12225 M:      Woojung Huh <woojung.huh@microchip.com>
12226 M:      UNGLinuxDriver@microchip.com
12227 L:      netdev@vger.kernel.org
12228 S:      Maintained
12229 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12230 F:      drivers/net/dsa/microchip/*
12231 F:      include/linux/platform_data/microchip-ksz.h
12232 F:      net/dsa/tag_ksz.c
12233
12234 MICROCHIP LAN743X ETHERNET DRIVER
12235 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12236 M:      UNGLinuxDriver@microchip.com
12237 L:      netdev@vger.kernel.org
12238 S:      Maintained
12239 F:      drivers/net/ethernet/microchip/lan743x_*
12240
12241 MICROCHIP LCDFB DRIVER
12242 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
12243 L:      linux-fbdev@vger.kernel.org
12244 S:      Maintained
12245 F:      drivers/video/fbdev/atmel_lcdfb.c
12246 F:      include/video/atmel_lcdc.h
12247
12248 MICROCHIP MCP16502 PMIC DRIVER
12249 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12250 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12251 S:      Supported
12252 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12253 F:      drivers/regulator/mcp16502.c
12254
12255 MICROCHIP MCP3911 ADC DRIVER
12256 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12257 M:      Kent Gustavsson <kent@minoris.se>
12258 L:      linux-iio@vger.kernel.org
12259 S:      Supported
12260 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12261 F:      drivers/iio/adc/mcp3911.c
12262
12263 MICROCHIP MMC/SD/SDIO MCI DRIVER
12264 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12265 S:      Maintained
12266 F:      drivers/mmc/host/atmel-mci.c
12267
12268 MICROCHIP NAND DRIVER
12269 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12270 L:      linux-mtd@lists.infradead.org
12271 S:      Supported
12272 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12273 F:      drivers/mtd/nand/raw/atmel/*
12274
12275 MICROCHIP PWM DRIVER
12276 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12277 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12278 L:      linux-pwm@vger.kernel.org
12279 S:      Supported
12280 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12281 F:      drivers/pwm/pwm-atmel.c
12282
12283 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12284 M:      Eugen Hristev <eugen.hristev@microchip.com>
12285 L:      linux-iio@vger.kernel.org
12286 S:      Supported
12287 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12288 F:      drivers/iio/adc/at91-sama5d2_adc.c
12289 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12290
12291 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12292 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12293 S:      Supported
12294 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12295
12296 MICROCHIP SPI DRIVER
12297 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12298 S:      Supported
12299 F:      drivers/spi/spi-atmel.*
12300
12301 MICROCHIP SSC DRIVER
12302 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12303 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12304 S:      Supported
12305 F:      drivers/misc/atmel-ssc.c
12306 F:      include/linux/atmel-ssc.h
12307
12308 MICROCHIP USB251XB DRIVER
12309 M:      Richard Leitner <richard.leitner@skidata.com>
12310 L:      linux-usb@vger.kernel.org
12311 S:      Maintained
12312 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12313 F:      drivers/usb/misc/usb251xb.c
12314
12315 MICROCHIP USBA UDC DRIVER
12316 M:      Cristian Birsan <cristian.birsan@microchip.com>
12317 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12318 S:      Supported
12319 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12320
12321 MICROCHIP WILC1000 WIFI DRIVER
12322 M:      Ajay Singh <ajay.kathat@microchip.com>
12323 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12324 L:      linux-wireless@vger.kernel.org
12325 S:      Supported
12326 F:      drivers/net/wireless/microchip/wilc1000/
12327
12328 MICROSEMI MIPS SOCS
12329 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12330 M:      UNGLinuxDriver@microchip.com
12331 L:      linux-mips@vger.kernel.org
12332 S:      Supported
12333 F:      Documentation/devicetree/bindings/mips/mscc.txt
12334 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12335 F:      arch/mips/boot/dts/mscc/
12336 F:      arch/mips/configs/generic/board-ocelot.config
12337 F:      arch/mips/generic/board-ocelot.c
12338
12339 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12340 M:      Don Brace <don.brace@microchip.com>
12341 L:      storagedev@microchip.com
12342 L:      linux-scsi@vger.kernel.org
12343 S:      Supported
12344 F:      Documentation/scsi/smartpqi.rst
12345 F:      drivers/scsi/smartpqi/Kconfig
12346 F:      drivers/scsi/smartpqi/Makefile
12347 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
12348 F:      include/linux/cciss*.h
12349 F:      include/uapi/linux/cciss*.h
12350
12351 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12352 M:      Maximilian Luz <luzmaximilian@gmail.com>
12353 L:      linux-pm@vger.kernel.org
12354 L:      platform-driver-x86@vger.kernel.org
12355 S:      Maintained
12356 F:      drivers/power/supply/surface_battery.c
12357 F:      drivers/power/supply/surface_charger.c
12358
12359 MICROSOFT SURFACE DTX DRIVER
12360 M:      Maximilian Luz <luzmaximilian@gmail.com>
12361 L:      platform-driver-x86@vger.kernel.org
12362 S:      Maintained
12363 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
12364 F:      drivers/platform/surface/surface_dtx.c
12365 F:      include/uapi/linux/surface_aggregator/dtx.h
12366
12367 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12368 M:      Maximilian Luz <luzmaximilian@gmail.com>
12369 L:      platform-driver-x86@vger.kernel.org
12370 S:      Maintained
12371 F:      drivers/platform/surface/surface_gpe.c
12372
12373 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12374 M:      Hans de Goede <hdegoede@redhat.com>
12375 M:      Mark Gross <mgross@linux.intel.com>
12376 M:      Maximilian Luz <luzmaximilian@gmail.com>
12377 L:      platform-driver-x86@vger.kernel.org
12378 S:      Maintained
12379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12380 F:      drivers/platform/surface/
12381
12382 MICROSOFT SURFACE HID TRANSPORT DRIVER
12383 M:      Maximilian Luz <luzmaximilian@gmail.com>
12384 L:      linux-input@vger.kernel.org
12385 L:      platform-driver-x86@vger.kernel.org
12386 S:      Maintained
12387 F:      drivers/hid/surface-hid/
12388
12389 MICROSOFT SURFACE HOT-PLUG DRIVER
12390 M:      Maximilian Luz <luzmaximilian@gmail.com>
12391 L:      platform-driver-x86@vger.kernel.org
12392 S:      Maintained
12393 F:      drivers/platform/surface/surface_hotplug.c
12394
12395 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12396 M:      Maximilian Luz <luzmaximilian@gmail.com>
12397 L:      platform-driver-x86@vger.kernel.org
12398 S:      Maintained
12399 F:      drivers/platform/surface/surface_platform_profile.c
12400
12401 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12402 M:      Chen Yu <yu.c.chen@intel.com>
12403 L:      platform-driver-x86@vger.kernel.org
12404 S:      Supported
12405 F:      drivers/platform/surface/surfacepro3_button.c
12406
12407 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12408 M:      Maximilian Luz <luzmaximilian@gmail.com>
12409 L:      platform-driver-x86@vger.kernel.org
12410 S:      Maintained
12411 W:      https://github.com/linux-surface/surface-aggregator-module
12412 C:      irc://irc.libera.chat/linux-surface
12413 F:      Documentation/driver-api/surface_aggregator/
12414 F:      drivers/platform/surface/aggregator/
12415 F:      drivers/platform/surface/surface_acpi_notify.c
12416 F:      drivers/platform/surface/surface_aggregator_cdev.c
12417 F:      drivers/platform/surface/surface_aggregator_registry.c
12418 F:      include/linux/surface_acpi_notify.h
12419 F:      include/linux/surface_aggregator/
12420 F:      include/uapi/linux/surface_aggregator/
12421
12422 MICROTEK X6 SCANNER
12423 M:      Oliver Neukum <oliver@neukum.org>
12424 S:      Maintained
12425 F:      drivers/usb/image/microtek.*
12426
12427 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12428 M:      Luka Kovacic <luka.kovacic@sartura.hr>
12429 M:      Luka Perkov <luka.perkov@sartura.hr>
12430 S:      Maintained
12431 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12432 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12433 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12434 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12435 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12436 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12437
12438 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12439 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12440 L:      linux-media@vger.kernel.org
12441 S:      Maintained
12442 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12443 F:      Documentation/driver-api/media/drivers/ccs/
12444 F:      Documentation/userspace-api/media/drivers/ccs.rst
12445 F:      drivers/media/i2c/ccs-pll.c
12446 F:      drivers/media/i2c/ccs-pll.h
12447 F:      drivers/media/i2c/ccs/
12448 F:      include/uapi/linux/ccs.h
12449 F:      include/uapi/linux/smiapp.h
12450
12451 MIPS
12452 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12453 L:      linux-mips@vger.kernel.org
12454 S:      Maintained
12455 W:      http://www.linux-mips.org/
12456 Q:      https://patchwork.kernel.org/project/linux-mips/list/
12457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12458 F:      Documentation/devicetree/bindings/mips/
12459 F:      Documentation/mips/
12460 F:      arch/mips/
12461 F:      drivers/platform/mips/
12462
12463 MIPS BOSTON DEVELOPMENT BOARD
12464 M:      Paul Burton <paulburton@kernel.org>
12465 L:      linux-mips@vger.kernel.org
12466 S:      Maintained
12467 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
12468 F:      arch/mips/boot/dts/img/boston.dts
12469 F:      arch/mips/configs/generic/board-boston.config
12470 F:      drivers/clk/imgtec/clk-boston.c
12471 F:      include/dt-bindings/clock/boston-clock.h
12472
12473 MIPS CORE DRIVERS
12474 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12475 M:      Serge Semin <fancer.lancer@gmail.com>
12476 L:      linux-mips@vger.kernel.org
12477 S:      Supported
12478 F:      drivers/bus/mips_cdmm.c
12479 F:      drivers/clocksource/mips-gic-timer.c
12480 F:      drivers/cpuidle/cpuidle-cps.c
12481 F:      drivers/irqchip/irq-mips-cpu.c
12482 F:      drivers/irqchip/irq-mips-gic.c
12483
12484 MIPS GENERIC PLATFORM
12485 M:      Paul Burton <paulburton@kernel.org>
12486 L:      linux-mips@vger.kernel.org
12487 S:      Supported
12488 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12489 F:      arch/mips/generic/
12490 F:      arch/mips/tools/generic-board-config.sh
12491
12492 MIPS RINT INSTRUCTION EMULATION
12493 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
12494 L:      linux-mips@vger.kernel.org
12495 S:      Supported
12496 F:      arch/mips/math-emu/dp_rint.c
12497 F:      arch/mips/math-emu/sp_rint.c
12498
12499 MIPS/LOONGSON1 ARCHITECTURE
12500 M:      Keguang Zhang <keguang.zhang@gmail.com>
12501 L:      linux-mips@vger.kernel.org
12502 S:      Maintained
12503 F:      arch/mips/include/asm/mach-loongson32/
12504 F:      arch/mips/loongson32/
12505 F:      drivers/*/*/*loongson1*
12506 F:      drivers/*/*loongson1*
12507
12508 MIPS/LOONGSON2EF ARCHITECTURE
12509 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12510 L:      linux-mips@vger.kernel.org
12511 S:      Maintained
12512 F:      arch/mips/include/asm/mach-loongson2ef/
12513 F:      arch/mips/loongson2ef/
12514 F:      drivers/cpufreq/loongson2_cpufreq.c
12515
12516 MIPS/LOONGSON64 ARCHITECTURE
12517 M:      Huacai Chen <chenhuacai@kernel.org>
12518 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12519 L:      linux-mips@vger.kernel.org
12520 S:      Maintained
12521 F:      arch/mips/include/asm/mach-loongson64/
12522 F:      arch/mips/loongson64/
12523 F:      drivers/irqchip/irq-loongson*
12524 F:      drivers/platform/mips/cpu_hwmon.c
12525
12526 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12527 M:      Hans Verkuil <hverkuil@xs4all.nl>
12528 L:      linux-media@vger.kernel.org
12529 S:      Odd Fixes
12530 W:      https://linuxtv.org
12531 T:      git git://linuxtv.org/media_tree.git
12532 F:      drivers/media/radio/radio-miropcm20*
12533
12534 MMP SUPPORT
12535 R:      Lubomir Rintel <lkundrak@v3.sk>
12536 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12537 S:      Odd Fixes
12538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12539 F:      arch/arm/boot/dts/mmp*
12540 F:      arch/arm/mach-mmp/
12541 F:      include/linux/soc/mmp/
12542
12543 MMP USB PHY DRIVERS
12544 R:      Lubomir Rintel <lkundrak@v3.sk>
12545 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12546 S:      Maintained
12547 F:      drivers/phy/marvell/phy-mmp3-usb.c
12548 F:      drivers/phy/marvell/phy-pxa-usb.c
12549
12550 MMU GATHER AND TLB INVALIDATION
12551 M:      Will Deacon <will@kernel.org>
12552 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12553 M:      Andrew Morton <akpm@linux-foundation.org>
12554 M:      Nick Piggin <npiggin@gmail.com>
12555 M:      Peter Zijlstra <peterz@infradead.org>
12556 L:      linux-arch@vger.kernel.org
12557 L:      linux-mm@kvack.org
12558 S:      Maintained
12559 F:      arch/*/include/asm/tlb.h
12560 F:      include/asm-generic/tlb.h
12561 F:      mm/mmu_gather.c
12562
12563 MN88472 MEDIA DRIVER
12564 M:      Antti Palosaari <crope@iki.fi>
12565 L:      linux-media@vger.kernel.org
12566 S:      Maintained
12567 W:      https://linuxtv.org
12568 W:      http://palosaari.fi/linux/
12569 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12570 F:      drivers/media/dvb-frontends/mn88472*
12571
12572 MN88473 MEDIA DRIVER
12573 M:      Antti Palosaari <crope@iki.fi>
12574 L:      linux-media@vger.kernel.org
12575 S:      Maintained
12576 W:      https://linuxtv.org
12577 W:      http://palosaari.fi/linux/
12578 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12579 F:      drivers/media/dvb-frontends/mn88473*
12580
12581 MODULE SUPPORT
12582 M:      Jessica Yu <jeyu@kernel.org>
12583 S:      Maintained
12584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12585 F:      include/linux/module.h
12586 F:      kernel/module.c
12587
12588 MONOLITHIC POWER SYSTEM PMIC DRIVER
12589 M:      Saravanan Sekar <sravanhome@gmail.com>
12590 S:      Maintained
12591 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12592 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12593 F:      drivers/iio/adc/mp2629_adc.c
12594 F:      drivers/mfd/mp2629.c
12595 F:      drivers/power/supply/mp2629_charger.c
12596 F:      drivers/regulator/mp5416.c
12597 F:      drivers/regulator/mpq7920.c
12598 F:      drivers/regulator/mpq7920.h
12599 F:      include/linux/mfd/mp2629.h
12600
12601 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12602 S:      Orphan
12603 W:      http://popies.net/meye/
12604 F:      Documentation/userspace-api/media/drivers/meye*
12605 F:      drivers/media/pci/meye/
12606 F:      include/uapi/linux/meye.h
12607
12608 MOTORCOMM PHY DRIVER
12609 M:      Peter Geis <pgwipeout@gmail.com>
12610 L:      netdev@vger.kernel.org
12611 S:      Maintained
12612 F:      drivers/net/phy/motorcomm.c
12613
12614 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12615 M:      Jiri Slaby <jirislaby@kernel.org>
12616 S:      Maintained
12617 F:      Documentation/driver-api/serial/moxa-smartio.rst
12618 F:      drivers/tty/mxser.*
12619
12620 MR800 AVERMEDIA USB FM RADIO DRIVER
12621 M:      Alexey Klimov <klimov.linux@gmail.com>
12622 L:      linux-media@vger.kernel.org
12623 S:      Maintained
12624 T:      git git://linuxtv.org/media_tree.git
12625 F:      drivers/media/radio/radio-mr800.c
12626
12627 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12628 M:      Alan Ott <alan@signal11.us>
12629 L:      linux-wpan@vger.kernel.org
12630 S:      Maintained
12631 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12632 F:      drivers/net/ieee802154/mrf24j40.c
12633
12634 MSI LAPTOP SUPPORT
12635 M:      "Lee, Chun-Yi" <jlee@suse.com>
12636 L:      platform-driver-x86@vger.kernel.org
12637 S:      Maintained
12638 F:      drivers/platform/x86/msi-laptop.c
12639
12640 MSI WMI SUPPORT
12641 L:      platform-driver-x86@vger.kernel.org
12642 S:      Orphan
12643 F:      drivers/platform/x86/msi-wmi.c
12644
12645 MSI001 MEDIA DRIVER
12646 M:      Antti Palosaari <crope@iki.fi>
12647 L:      linux-media@vger.kernel.org
12648 S:      Maintained
12649 W:      https://linuxtv.org
12650 W:      http://palosaari.fi/linux/
12651 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12652 T:      git git://linuxtv.org/anttip/media_tree.git
12653 F:      drivers/media/tuners/msi001*
12654
12655 MSI2500 MEDIA DRIVER
12656 M:      Antti Palosaari <crope@iki.fi>
12657 L:      linux-media@vger.kernel.org
12658 S:      Maintained
12659 W:      https://linuxtv.org
12660 W:      http://palosaari.fi/linux/
12661 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12662 T:      git git://linuxtv.org/anttip/media_tree.git
12663 F:      drivers/media/usb/msi2500/
12664
12665 MSTAR INTERRUPT CONTROLLER DRIVER
12666 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12667 M:      Daniel Palmer <daniel@thingy.jp>
12668 S:      Maintained
12669 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12670 F:      drivers/irqchip/irq-mst-intc.c
12671
12672 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12673 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12674 L:      linux-mtd@lists.infradead.org
12675 S:      Maintained
12676 F:      drivers/mtd/devices/docg3*
12677
12678 MT9M032 APTINA SENSOR DRIVER
12679 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12680 L:      linux-media@vger.kernel.org
12681 S:      Maintained
12682 T:      git git://linuxtv.org/media_tree.git
12683 F:      drivers/media/i2c/mt9m032.c
12684 F:      include/media/i2c/mt9m032.h
12685
12686 MT9P031 APTINA CAMERA SENSOR
12687 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12688 L:      linux-media@vger.kernel.org
12689 S:      Maintained
12690 T:      git git://linuxtv.org/media_tree.git
12691 F:      drivers/media/i2c/mt9p031.c
12692 F:      include/media/i2c/mt9p031.h
12693
12694 MT9T001 APTINA CAMERA SENSOR
12695 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12696 L:      linux-media@vger.kernel.org
12697 S:      Maintained
12698 T:      git git://linuxtv.org/media_tree.git
12699 F:      drivers/media/i2c/mt9t001.c
12700 F:      include/media/i2c/mt9t001.h
12701
12702 MT9T112 APTINA CAMERA SENSOR
12703 M:      Jacopo Mondi <jacopo@jmondi.org>
12704 L:      linux-media@vger.kernel.org
12705 S:      Odd Fixes
12706 T:      git git://linuxtv.org/media_tree.git
12707 F:      drivers/media/i2c/mt9t112.c
12708 F:      include/media/i2c/mt9t112.h
12709
12710 MT9V032 APTINA CAMERA SENSOR
12711 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12712 L:      linux-media@vger.kernel.org
12713 S:      Maintained
12714 T:      git git://linuxtv.org/media_tree.git
12715 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12716 F:      drivers/media/i2c/mt9v032.c
12717 F:      include/media/i2c/mt9v032.h
12718
12719 MT9V111 APTINA CAMERA SENSOR
12720 M:      Jacopo Mondi <jacopo@jmondi.org>
12721 L:      linux-media@vger.kernel.org
12722 S:      Maintained
12723 T:      git git://linuxtv.org/media_tree.git
12724 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12725 F:      drivers/media/i2c/mt9v111.c
12726
12727 MULTIFUNCTION DEVICES (MFD)
12728 M:      Lee Jones <lee.jones@linaro.org>
12729 S:      Supported
12730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12731 F:      Documentation/devicetree/bindings/mfd/
12732 F:      drivers/mfd/
12733 F:      include/dt-bindings/mfd/
12734 F:      include/linux/mfd/
12735
12736 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12737 S:      Orphan
12738 F:      drivers/mmc/host/mmc_spi.c
12739 F:      include/linux/spi/mmc_spi.h
12740
12741 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12742 M:      Ulf Hansson <ulf.hansson@linaro.org>
12743 L:      linux-mmc@vger.kernel.org
12744 S:      Maintained
12745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12746 F:      Documentation/devicetree/bindings/mmc/
12747 F:      drivers/mmc/
12748 F:      include/linux/mmc/
12749 F:      include/uapi/linux/mmc/
12750
12751 MULTIPLEXER SUBSYSTEM
12752 M:      Peter Rosin <peda@axentia.se>
12753 S:      Maintained
12754 F:      Documentation/ABI/testing/sysfs-class-mux*
12755 F:      Documentation/devicetree/bindings/mux/
12756 F:      drivers/mux/
12757 F:      include/dt-bindings/mux/
12758 F:      include/linux/mux/
12759
12760 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12761 M:      Bin Liu <b-liu@ti.com>
12762 L:      linux-usb@vger.kernel.org
12763 S:      Maintained
12764 F:      drivers/usb/musb/
12765
12766 MXL301RF MEDIA DRIVER
12767 M:      Akihiro Tsukada <tskd08@gmail.com>
12768 L:      linux-media@vger.kernel.org
12769 S:      Odd Fixes
12770 F:      drivers/media/tuners/mxl301rf*
12771
12772 MXL5007T MEDIA DRIVER
12773 M:      Michael Krufky <mkrufky@linuxtv.org>
12774 L:      linux-media@vger.kernel.org
12775 S:      Maintained
12776 W:      https://linuxtv.org
12777 W:      http://github.com/mkrufky
12778 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12779 T:      git git://linuxtv.org/mkrufky/tuners.git
12780 F:      drivers/media/tuners/mxl5007t.*
12781
12782 MXSFB DRM DRIVER
12783 M:      Marek Vasut <marex@denx.de>
12784 M:      Stefan Agner <stefan@agner.ch>
12785 L:      dri-devel@lists.freedesktop.org
12786 S:      Supported
12787 T:      git git://anongit.freedesktop.org/drm/drm-misc
12788 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
12789 F:      drivers/gpu/drm/mxsfb/
12790
12791 MYLEX DAC960 PCI RAID Controller
12792 M:      Hannes Reinecke <hare@kernel.org>
12793 L:      linux-scsi@vger.kernel.org
12794 S:      Supported
12795 F:      drivers/scsi/myrb.*
12796 F:      drivers/scsi/myrs.*
12797
12798 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12799 M:      Chris Lee <christopher.lee@cspi.com>
12800 L:      netdev@vger.kernel.org
12801 S:      Supported
12802 W:      https://www.cspi.com/ethernet-products/support/downloads/
12803 F:      drivers/net/ethernet/myricom/myri10ge/
12804
12805 NAND FLASH SUBSYSTEM
12806 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12807 R:      Richard Weinberger <richard@nod.at>
12808 L:      linux-mtd@lists.infradead.org
12809 S:      Maintained
12810 W:      http://www.linux-mtd.infradead.org/
12811 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12812 C:      irc://irc.oftc.net/mtd
12813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12814 F:      drivers/mtd/nand/
12815 F:      include/linux/mtd/*nand*.h
12816
12817 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12818 M:      Daniel Mack <zonque@gmail.com>
12819 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12820 S:      Maintained
12821 W:      http://www.native-instruments.com
12822 F:      sound/usb/caiaq/
12823
12824 NATSEMI ETHERNET DRIVER (DP8381x)
12825 S:      Orphan
12826 F:      drivers/net/ethernet/natsemi/natsemi.c
12827
12828 NCR 5380 SCSI DRIVERS
12829 M:      Finn Thain <fthain@linux-m68k.org>
12830 M:      Michael Schmitz <schmitzmic@gmail.com>
12831 L:      linux-scsi@vger.kernel.org
12832 S:      Maintained
12833 F:      Documentation/scsi/g_NCR5380.rst
12834 F:      drivers/scsi/NCR5380.*
12835 F:      drivers/scsi/arm/cumana_1.c
12836 F:      drivers/scsi/arm/oak.c
12837 F:      drivers/scsi/atari_scsi.*
12838 F:      drivers/scsi/dmx3191d.c
12839 F:      drivers/scsi/g_NCR5380.*
12840 F:      drivers/scsi/mac_scsi.*
12841 F:      drivers/scsi/sun3_scsi.*
12842 F:      drivers/scsi/sun3_scsi_vme.c
12843
12844 NCSI LIBRARY
12845 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
12846 S:      Maintained
12847 F:      net/ncsi/
12848
12849 NCT6775 HARDWARE MONITOR DRIVER
12850 M:      Guenter Roeck <linux@roeck-us.net>
12851 L:      linux-hwmon@vger.kernel.org
12852 S:      Maintained
12853 F:      Documentation/hwmon/nct6775.rst
12854 F:      drivers/hwmon/nct6775.c
12855
12856 NETDEVSIM
12857 M:      Jakub Kicinski <kuba@kernel.org>
12858 S:      Maintained
12859 F:      drivers/net/netdevsim/*
12860
12861 NETEM NETWORK EMULATOR
12862 M:      Stephen Hemminger <stephen@networkplumber.org>
12863 L:      netdev@vger.kernel.org
12864 S:      Maintained
12865 F:      net/sched/sch_netem.c
12866
12867 NETERION 10GbE DRIVERS (s2io/vxge)
12868 M:      Jon Mason <jdmason@kudzu.us>
12869 L:      netdev@vger.kernel.org
12870 S:      Supported
12871 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12872 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12873 F:      drivers/net/ethernet/neterion/
12874
12875 NETFILTER
12876 M:      Pablo Neira Ayuso <pablo@netfilter.org>
12877 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
12878 M:      Florian Westphal <fw@strlen.de>
12879 L:      netfilter-devel@vger.kernel.org
12880 L:      coreteam@netfilter.org
12881 S:      Maintained
12882 W:      http://www.netfilter.org/
12883 W:      http://www.iptables.org/
12884 W:      http://www.nftables.org/
12885 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
12886 C:      irc://irc.libera.chat/netfilter
12887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12889 F:      include/linux/netfilter*
12890 F:      include/linux/netfilter/
12891 F:      include/net/netfilter/
12892 F:      include/uapi/linux/netfilter*
12893 F:      include/uapi/linux/netfilter/
12894 F:      net/*/netfilter.c
12895 F:      net/*/netfilter/
12896 F:      net/bridge/br_netfilter*.c
12897 F:      net/netfilter/
12898
12899 NETROM NETWORK LAYER
12900 M:      Ralf Baechle <ralf@linux-mips.org>
12901 L:      linux-hams@vger.kernel.org
12902 S:      Maintained
12903 W:      http://www.linux-ax25.org/
12904 F:      include/net/netrom.h
12905 F:      include/uapi/linux/netrom.h
12906 F:      net/netrom/
12907
12908 NETRONIX EMBEDDED CONTROLLER
12909 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
12910 S:      Maintained
12911 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
12912 F:      drivers/mfd/ntxec.c
12913 F:      drivers/pwm/pwm-ntxec.c
12914 F:      drivers/rtc/rtc-ntxec.c
12915 F:      include/linux/mfd/ntxec.h
12916
12917 NETRONOME ETHERNET DRIVERS
12918 M:      Simon Horman <simon.horman@corigine.com>
12919 R:      Jakub Kicinski <kuba@kernel.org>
12920 L:      oss-drivers@corigine.com
12921 S:      Maintained
12922 F:      drivers/net/ethernet/netronome/
12923
12924 NETWORK BLOCK DEVICE (NBD)
12925 M:      Josef Bacik <josef@toxicpanda.com>
12926 L:      linux-block@vger.kernel.org
12927 L:      nbd@other.debian.org
12928 S:      Maintained
12929 F:      Documentation/admin-guide/blockdev/nbd.rst
12930 F:      drivers/block/nbd.c
12931 F:      include/trace/events/nbd.h
12932 F:      include/uapi/linux/nbd.h
12933
12934 NETWORK DROP MONITOR
12935 M:      Neil Horman <nhorman@tuxdriver.com>
12936 L:      netdev@vger.kernel.org
12937 S:      Maintained
12938 W:      https://fedorahosted.org/dropwatch/
12939 F:      include/uapi/linux/net_dropmon.h
12940 F:      net/core/drop_monitor.c
12941
12942 NETWORKING DRIVERS
12943 M:      "David S. Miller" <davem@davemloft.net>
12944 M:      Jakub Kicinski <kuba@kernel.org>
12945 L:      netdev@vger.kernel.org
12946 S:      Maintained
12947 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12950 F:      Documentation/devicetree/bindings/net/
12951 F:      drivers/connector/
12952 F:      drivers/net/
12953 F:      include/linux/etherdevice.h
12954 F:      include/linux/fcdevice.h
12955 F:      include/linux/fddidevice.h
12956 F:      include/linux/hippidevice.h
12957 F:      include/linux/if_*
12958 F:      include/linux/inetdevice.h
12959 F:      include/linux/netdevice.h
12960 F:      include/uapi/linux/if_*
12961 F:      include/uapi/linux/netdevice.h
12962
12963 NETWORKING DRIVERS (WIRELESS)
12964 M:      Kalle Valo <kvalo@codeaurora.org>
12965 L:      linux-wireless@vger.kernel.org
12966 S:      Maintained
12967 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
12969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
12970 F:      Documentation/devicetree/bindings/net/wireless/
12971 F:      drivers/net/wireless/
12972
12973 NETWORKING [DSA]
12974 M:      Andrew Lunn <andrew@lunn.ch>
12975 M:      Vivien Didelot <vivien.didelot@gmail.com>
12976 M:      Florian Fainelli <f.fainelli@gmail.com>
12977 M:      Vladimir Oltean <olteanv@gmail.com>
12978 S:      Maintained
12979 F:      Documentation/devicetree/bindings/net/dsa/
12980 F:      drivers/net/dsa/
12981 F:      include/linux/dsa/
12982 F:      include/linux/platform_data/dsa.h
12983 F:      include/net/dsa.h
12984 F:      net/dsa/
12985
12986 NETWORKING [GENERAL]
12987 M:      "David S. Miller" <davem@davemloft.net>
12988 M:      Jakub Kicinski <kuba@kernel.org>
12989 L:      netdev@vger.kernel.org
12990 S:      Maintained
12991 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12992 B:      mailto:netdev@vger.kernel.org
12993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12995 F:      Documentation/networking/
12996 F:      include/linux/in.h
12997 F:      include/linux/net.h
12998 F:      include/linux/netdevice.h
12999 F:      include/net/
13000 F:      include/uapi/linux/in.h
13001 F:      include/uapi/linux/net.h
13002 F:      include/uapi/linux/net_namespace.h
13003 F:      include/uapi/linux/netdevice.h
13004 F:      lib/net_utils.c
13005 F:      lib/random32.c
13006 F:      net/
13007 F:      tools/testing/selftests/net/
13008
13009 NETWORKING [IPSEC]
13010 M:      Steffen Klassert <steffen.klassert@secunet.com>
13011 M:      Herbert Xu <herbert@gondor.apana.org.au>
13012 M:      "David S. Miller" <davem@davemloft.net>
13013 L:      netdev@vger.kernel.org
13014 S:      Maintained
13015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13017 F:      include/net/xfrm.h
13018 F:      include/uapi/linux/xfrm.h
13019 F:      net/ipv4/ah4.c
13020 F:      net/ipv4/esp4*
13021 F:      net/ipv4/ip_vti.c
13022 F:      net/ipv4/ipcomp.c
13023 F:      net/ipv4/xfrm*
13024 F:      net/ipv6/ah6.c
13025 F:      net/ipv6/esp6*
13026 F:      net/ipv6/ip6_vti.c
13027 F:      net/ipv6/ipcomp6.c
13028 F:      net/ipv6/xfrm*
13029 F:      net/key/
13030 F:      net/xfrm/
13031 F:      tools/testing/selftests/net/ipsec.c
13032
13033 NETWORKING [IPv4/IPv6]
13034 M:      "David S. Miller" <davem@davemloft.net>
13035 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13036 M:      David Ahern <dsahern@kernel.org>
13037 L:      netdev@vger.kernel.org
13038 S:      Maintained
13039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13040 F:      arch/x86/net/*
13041 F:      include/net/ip*
13042 F:      net/ipv4/
13043 F:      net/ipv6/
13044
13045 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13046 M:      Paul Moore <paul@paul-moore.com>
13047 L:      netdev@vger.kernel.org
13048 L:      linux-security-module@vger.kernel.org
13049 S:      Maintained
13050 W:      https://github.com/netlabel
13051 F:      Documentation/netlabel/
13052 F:      include/net/calipso.h
13053 F:      include/net/cipso_ipv4.h
13054 F:      include/net/netlabel.h
13055 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13056 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13057 F:      net/ipv4/cipso_ipv4.c
13058 F:      net/ipv6/calipso.c
13059 F:      net/netfilter/xt_CONNSECMARK.c
13060 F:      net/netfilter/xt_SECMARK.c
13061 F:      net/netlabel/
13062
13063 NETWORKING [MPTCP]
13064 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13065 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13066 L:      netdev@vger.kernel.org
13067 L:      mptcp@lists.linux.dev
13068 S:      Maintained
13069 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13070 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13071 F:      Documentation/networking/mptcp-sysctl.rst
13072 F:      include/net/mptcp.h
13073 F:      include/trace/events/mptcp.h
13074 F:      include/uapi/linux/mptcp.h
13075 F:      net/mptcp/
13076 F:      tools/testing/selftests/net/mptcp/
13077
13078 NETWORKING [TCP]
13079 M:      Eric Dumazet <edumazet@google.com>
13080 L:      netdev@vger.kernel.org
13081 S:      Maintained
13082 F:      include/linux/tcp.h
13083 F:      include/net/tcp.h
13084 F:      include/trace/events/tcp.h
13085 F:      include/uapi/linux/tcp.h
13086 F:      net/ipv4/syncookies.c
13087 F:      net/ipv4/tcp*.c
13088 F:      net/ipv6/syncookies.c
13089 F:      net/ipv6/tcp*.c
13090
13091 NETWORKING [TLS]
13092 M:      Boris Pismenny <borisp@nvidia.com>
13093 M:      John Fastabend <john.fastabend@gmail.com>
13094 M:      Daniel Borkmann <daniel@iogearbox.net>
13095 M:      Jakub Kicinski <kuba@kernel.org>
13096 L:      netdev@vger.kernel.org
13097 S:      Maintained
13098 F:      include/net/tls.h
13099 F:      include/uapi/linux/tls.h
13100 F:      net/tls/*
13101
13102 NETWORKING [WIRELESS]
13103 L:      linux-wireless@vger.kernel.org
13104 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13105
13106 NETXEN (1/10) GbE SUPPORT
13107 M:      Manish Chopra <manishc@marvell.com>
13108 M:      Rahul Verma <rahulv@marvell.com>
13109 M:      GR-Linux-NIC-Dev@marvell.com
13110 L:      netdev@vger.kernel.org
13111 S:      Supported
13112 F:      drivers/net/ethernet/qlogic/netxen/
13113
13114 NET_FAILOVER MODULE
13115 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13116 L:      netdev@vger.kernel.org
13117 S:      Supported
13118 F:      Documentation/networking/net_failover.rst
13119 F:      drivers/net/net_failover.c
13120 F:      include/net/net_failover.h
13121
13122 NEXTHOP
13123 M:      David Ahern <dsahern@kernel.org>
13124 L:      netdev@vger.kernel.org
13125 S:      Maintained
13126 F:      include/net/netns/nexthop.h
13127 F:      include/net/nexthop.h
13128 F:      include/uapi/linux/nexthop.h
13129 F:      net/ipv4/nexthop.c
13130
13131 NFC SUBSYSTEM
13132 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13133 L:      linux-nfc@lists.01.org (subscribers-only)
13134 L:      netdev@vger.kernel.org
13135 S:      Maintained
13136 F:      Documentation/devicetree/bindings/net/nfc/
13137 F:      drivers/nfc/
13138 F:      include/linux/platform_data/nfcmrvl.h
13139 F:      include/net/nfc/
13140 F:      include/uapi/linux/nfc.h
13141 F:      net/nfc/
13142
13143 NFC VIRTUAL NCI DEVICE DRIVER
13144 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13145 L:      netdev@vger.kernel.org
13146 L:      linux-nfc@lists.01.org (subscribers-only)
13147 S:      Supported
13148 F:      drivers/nfc/virtual_ncidev.c
13149 F:      tools/testing/selftests/nci/
13150
13151 NFS, SUNRPC, AND LOCKD CLIENTS
13152 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13153 M:      Anna Schumaker <anna.schumaker@netapp.com>
13154 L:      linux-nfs@vger.kernel.org
13155 S:      Maintained
13156 W:      http://client.linux-nfs.org
13157 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13158 F:      fs/lockd/
13159 F:      fs/nfs/
13160 F:      fs/nfs_common/
13161 F:      include/linux/lockd/
13162 F:      include/linux/nfs*
13163 F:      include/linux/sunrpc/
13164 F:      include/uapi/linux/nfs*
13165 F:      include/uapi/linux/sunrpc/
13166 F:      net/sunrpc/
13167 F:      Documentation/filesystems/nfs/
13168
13169 NILFS2 FILESYSTEM
13170 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13171 L:      linux-nilfs@vger.kernel.org
13172 S:      Supported
13173 W:      https://nilfs.sourceforge.io/
13174 W:      https://nilfs.osdn.jp/
13175 T:      git git://github.com/konis/nilfs2.git
13176 F:      Documentation/filesystems/nilfs2.rst
13177 F:      fs/nilfs2/
13178 F:      include/trace/events/nilfs2.h
13179 F:      include/uapi/linux/nilfs2_api.h
13180 F:      include/uapi/linux/nilfs2_ondisk.h
13181
13182 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13183 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13184 S:      Maintained
13185 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13186 F:      Documentation/scsi/NinjaSCSI.rst
13187 F:      drivers/scsi/pcmcia/nsp_*
13188
13189 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13190 M:      GOTO Masanori <gotom@debian.or.jp>
13191 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13192 S:      Maintained
13193 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13194 F:      Documentation/scsi/NinjaSCSI.rst
13195 F:      drivers/scsi/nsp32*
13196
13197 NIOS2 ARCHITECTURE
13198 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13199 S:      Maintained
13200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
13201 F:      arch/nios2/
13202
13203 NITRO ENCLAVES (NE)
13204 M:      Andra Paraschiv <andraprs@amazon.com>
13205 M:      Alexandru Vasile <lexnv@amazon.com>
13206 M:      Alexandru Ciobotaru <alcioa@amazon.com>
13207 L:      linux-kernel@vger.kernel.org
13208 S:      Supported
13209 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13210 F:      Documentation/virt/ne_overview.rst
13211 F:      drivers/virt/nitro_enclaves/
13212 F:      include/linux/nitro_enclaves.h
13213 F:      include/uapi/linux/nitro_enclaves.h
13214 F:      samples/nitro_enclaves/
13215
13216 NOHZ, DYNTICKS SUPPORT
13217 M:      Frederic Weisbecker <fweisbec@gmail.com>
13218 M:      Thomas Gleixner <tglx@linutronix.de>
13219 M:      Ingo Molnar <mingo@kernel.org>
13220 L:      linux-kernel@vger.kernel.org
13221 S:      Maintained
13222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13223 F:      include/linux/sched/nohz.h
13224 F:      include/linux/tick.h
13225 F:      kernel/time/tick*.*
13226
13227 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13228 M:      Pavel Machek <pavel@ucw.cz>
13229 M:      Sakari Ailus <sakari.ailus@iki.fi>
13230 L:      linux-media@vger.kernel.org
13231 S:      Maintained
13232 F:      drivers/media/i2c/ad5820.c
13233 F:      drivers/media/i2c/et8ek8
13234
13235 NOKIA N900 POWER SUPPLY DRIVERS
13236 R:      Pali Rohár <pali@kernel.org>
13237 F:      drivers/power/supply/bq2415x_charger.c
13238 F:      drivers/power/supply/bq27xxx_battery.c
13239 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13240 F:      drivers/power/supply/isp1704_charger.c
13241 F:      drivers/power/supply/rx51_battery.c
13242 F:      include/linux/power/bq2415x_charger.h
13243 F:      include/linux/power/bq27xxx_battery.h
13244
13245 NOLIBC HEADER FILE
13246 M:      Willy Tarreau <w@1wt.eu>
13247 S:      Maintained
13248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13249 F:      tools/include/nolibc/
13250
13251 NSDEPS
13252 M:      Matthias Maennich <maennich@google.com>
13253 S:      Maintained
13254 F:      Documentation/core-api/symbol-namespaces.rst
13255 F:      scripts/nsdeps
13256
13257 NTB AMD DRIVER
13258 M:      Sanjay R Mehta <sanju.mehta@amd.com>
13259 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13260 L:      linux-ntb@googlegroups.com
13261 S:      Supported
13262 F:      drivers/ntb/hw/amd/
13263
13264 NTB DRIVER CORE
13265 M:      Jon Mason <jdmason@kudzu.us>
13266 M:      Dave Jiang <dave.jiang@intel.com>
13267 M:      Allen Hubbe <allenbh@gmail.com>
13268 L:      linux-ntb@googlegroups.com
13269 S:      Supported
13270 W:      https://github.com/jonmason/ntb/wiki
13271 T:      git git://github.com/jonmason/ntb.git
13272 F:      drivers/net/ntb_netdev.c
13273 F:      drivers/ntb/
13274 F:      include/linux/ntb.h
13275 F:      include/linux/ntb_transport.h
13276 F:      tools/testing/selftests/ntb/
13277
13278 NTB IDT DRIVER
13279 M:      Serge Semin <fancer.lancer@gmail.com>
13280 L:      linux-ntb@googlegroups.com
13281 S:      Supported
13282 F:      drivers/ntb/hw/idt/
13283
13284 NTB INTEL DRIVER
13285 M:      Dave Jiang <dave.jiang@intel.com>
13286 L:      linux-ntb@googlegroups.com
13287 S:      Supported
13288 W:      https://github.com/davejiang/linux/wiki
13289 T:      git https://github.com/davejiang/linux.git
13290 F:      drivers/ntb/hw/intel/
13291
13292 NTFS FILESYSTEM
13293 M:      Anton Altaparmakov <anton@tuxera.com>
13294 L:      linux-ntfs-dev@lists.sourceforge.net
13295 S:      Supported
13296 W:      http://www.tuxera.com/
13297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13298 F:      Documentation/filesystems/ntfs.rst
13299 F:      fs/ntfs/
13300
13301 NUBUS SUBSYSTEM
13302 M:      Finn Thain <fthain@linux-m68k.org>
13303 L:      linux-m68k@lists.linux-m68k.org
13304 S:      Maintained
13305 F:      arch/*/include/asm/nubus.h
13306 F:      drivers/nubus/
13307 F:      include/linux/nubus.h
13308 F:      include/uapi/linux/nubus.h
13309
13310 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13311 M:      Antonino Daplas <adaplas@gmail.com>
13312 L:      linux-fbdev@vger.kernel.org
13313 S:      Maintained
13314 F:      drivers/video/fbdev/nvidia/
13315 F:      drivers/video/fbdev/riva/
13316
13317 NVM EXPRESS DRIVER
13318 M:      Keith Busch <kbusch@kernel.org>
13319 M:      Jens Axboe <axboe@fb.com>
13320 M:      Christoph Hellwig <hch@lst.de>
13321 M:      Sagi Grimberg <sagi@grimberg.me>
13322 L:      linux-nvme@lists.infradead.org
13323 S:      Supported
13324 W:      http://git.infradead.org/nvme.git
13325 T:      git://git.infradead.org/nvme.git
13326 F:      drivers/nvme/host/
13327 F:      include/linux/nvme.h
13328 F:      include/uapi/linux/nvme_ioctl.h
13329
13330 NVM EXPRESS FC TRANSPORT DRIVERS
13331 M:      James Smart <james.smart@broadcom.com>
13332 L:      linux-nvme@lists.infradead.org
13333 S:      Supported
13334 F:      drivers/nvme/host/fc.c
13335 F:      drivers/nvme/target/fc.c
13336 F:      drivers/nvme/target/fcloop.c
13337 F:      include/linux/nvme-fc-driver.h
13338 F:      include/linux/nvme-fc.h
13339
13340 NVM EXPRESS TARGET DRIVER
13341 M:      Christoph Hellwig <hch@lst.de>
13342 M:      Sagi Grimberg <sagi@grimberg.me>
13343 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
13344 L:      linux-nvme@lists.infradead.org
13345 S:      Supported
13346 W:      http://git.infradead.org/nvme.git
13347 T:      git://git.infradead.org/nvme.git
13348 F:      drivers/nvme/target/
13349
13350 NVMEM FRAMEWORK
13351 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13352 S:      Maintained
13353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13354 F:      Documentation/ABI/stable/sysfs-bus-nvmem
13355 F:      Documentation/devicetree/bindings/nvmem/
13356 F:      drivers/nvmem/
13357 F:      include/linux/nvmem-consumer.h
13358 F:      include/linux/nvmem-provider.h
13359
13360 NXP C45 TJA11XX PHY DRIVER
13361 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13362 L:      netdev@vger.kernel.org
13363 S:      Maintained
13364 F:      drivers/net/phy/nxp-c45-tja11xx.c
13365
13366 NXP FSPI DRIVER
13367 M:      Ashish Kumar <ashish.kumar@nxp.com>
13368 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
13369 L:      linux-spi@vger.kernel.org
13370 S:      Maintained
13371 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
13372 F:      drivers/spi/spi-nxp-fspi.c
13373
13374 NXP FXAS21002C DRIVER
13375 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13376 L:      linux-iio@vger.kernel.org
13377 S:      Maintained
13378 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13379 F:      drivers/iio/gyro/fxas21002c.h
13380 F:      drivers/iio/gyro/fxas21002c_core.c
13381 F:      drivers/iio/gyro/fxas21002c_i2c.c
13382 F:      drivers/iio/gyro/fxas21002c_spi.c
13383
13384 NXP i.MX CLOCK DRIVERS
13385 M:      Abel Vesa <abel.vesa@nxp.com>
13386 L:      linux-clk@vger.kernel.org
13387 L:      linux-imx@nxp.com
13388 S:      Maintained
13389 F:      drivers/clk/imx/
13390
13391 NXP i.MX 8MQ DCSS DRIVER
13392 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13393 R:      Lucas Stach <l.stach@pengutronix.de>
13394 L:      dri-devel@lists.freedesktop.org
13395 S:      Maintained
13396 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13397 F:      drivers/gpu/drm/imx/dcss/
13398
13399 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13400 M:      Jagan Teki <jagan@amarulasolutions.com>
13401 S:      Maintained
13402 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13403 F:      drivers/regulator/pf8x00-regulator.c
13404
13405 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13406 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13407 L:      linux-kernel@vger.kernel.org
13408 S:      Maintained
13409 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13410 F:      drivers/extcon/extcon-ptn5150.c
13411
13412 NXP SGTL5000 DRIVER
13413 M:      Fabio Estevam <festevam@gmail.com>
13414 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13415 S:      Maintained
13416 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
13417 F:      sound/soc/codecs/sgtl5000*
13418
13419 NXP SJA1105 ETHERNET SWITCH DRIVER
13420 M:      Vladimir Oltean <olteanv@gmail.com>
13421 L:      linux-kernel@vger.kernel.org
13422 S:      Maintained
13423 F:      drivers/net/dsa/sja1105
13424 F:      drivers/net/pcs/pcs-xpcs-nxp.c
13425
13426 NXP TDA998X DRM DRIVER
13427 M:      Russell King <linux@armlinux.org.uk>
13428 S:      Maintained
13429 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13430 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13431 F:      drivers/gpu/drm/i2c/tda998x_drv.c
13432 F:      include/drm/i2c/tda998x.h
13433 F:      include/dt-bindings/display/tda998x.h
13434 K:      "nxp,tda998x"
13435
13436 NXP TFA9879 DRIVER
13437 M:      Peter Rosin <peda@axentia.se>
13438 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13439 S:      Maintained
13440 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
13441 F:      sound/soc/codecs/tfa9879*
13442
13443 NXP/Goodix TFA989X (TFA1) DRIVER
13444 M:      Stephan Gerhold <stephan@gerhold.net>
13445 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13446 S:      Maintained
13447 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13448 F:      sound/soc/codecs/tfa989x.c
13449
13450 NXP-NCI NFC DRIVER
13451 R:      Charles Gorand <charles.gorand@effinnov.com>
13452 L:      linux-nfc@lists.01.org (subscribers-only)
13453 S:      Supported
13454 F:      drivers/nfc/nxp-nci
13455
13456 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13457 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
13458 R:      NXP Linux Team <linux-imx@nxp.com>
13459 L:      linux-media@vger.kernel.org
13460 S:      Maintained
13461 F:      Documentation/devicetree/bindings/media/imx8-jpeg.yaml
13462 F:      drivers/media/platform/imx-jpeg
13463
13464 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13465 M:      Jonas Malaco <jonas@protocubo.io>
13466 L:      linux-hwmon@vger.kernel.org
13467 S:      Maintained
13468 F:      Documentation/hwmon/nzxt-kraken2.rst
13469 F:      drivers/hwmon/nzxt-kraken2.c
13470
13471 OBJAGG
13472 M:      Jiri Pirko <jiri@nvidia.com>
13473 L:      netdev@vger.kernel.org
13474 S:      Supported
13475 F:      include/linux/objagg.h
13476 F:      lib/objagg.c
13477 F:      lib/test_objagg.c
13478
13479 OBJTOOL
13480 M:      Josh Poimboeuf <jpoimboe@redhat.com>
13481 M:      Peter Zijlstra <peterz@infradead.org>
13482 S:      Supported
13483 F:      tools/objtool/
13484 F:      include/linux/objtool.h
13485
13486 OCELOT ETHERNET SWITCH DRIVER
13487 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
13488 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
13489 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13490 M:      UNGLinuxDriver@microchip.com
13491 L:      netdev@vger.kernel.org
13492 S:      Supported
13493 F:      drivers/net/dsa/ocelot/*
13494 F:      drivers/net/ethernet/mscc/
13495 F:      include/soc/mscc/ocelot*
13496 F:      net/dsa/tag_ocelot.c
13497 F:      net/dsa/tag_ocelot_8021q.c
13498 F:      tools/testing/selftests/drivers/net/ocelot/*
13499
13500 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13501 M:      Frederic Barrat <fbarrat@linux.ibm.com>
13502 M:      Andrew Donnellan <ajd@linux.ibm.com>
13503 L:      linuxppc-dev@lists.ozlabs.org
13504 S:      Supported
13505 F:      Documentation/userspace-api/accelerators/ocxl.rst
13506 F:      arch/powerpc/include/asm/pnv-ocxl.h
13507 F:      arch/powerpc/platforms/powernv/ocxl.c
13508 F:      drivers/misc/ocxl/
13509 F:      include/misc/ocxl*
13510 F:      include/uapi/misc/ocxl.h
13511
13512 OMAP AUDIO SUPPORT
13513 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
13514 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
13515 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13516 L:      linux-omap@vger.kernel.org
13517 S:      Maintained
13518 F:      sound/soc/ti/n810.c
13519 F:      sound/soc/ti/omap*
13520 F:      sound/soc/ti/rx51.c
13521 F:      sound/soc/ti/sdma-pcm.*
13522
13523 OMAP CLOCK FRAMEWORK SUPPORT
13524 M:      Paul Walmsley <paul@pwsan.com>
13525 L:      linux-omap@vger.kernel.org
13526 S:      Maintained
13527 F:      arch/arm/*omap*/*clock*
13528
13529 OMAP DEVICE TREE SUPPORT
13530 M:      Benoît Cousson <bcousson@baylibre.com>
13531 M:      Tony Lindgren <tony@atomide.com>
13532 L:      linux-omap@vger.kernel.org
13533 L:      devicetree@vger.kernel.org
13534 S:      Maintained
13535 F:      arch/arm/boot/dts/*am3*
13536 F:      arch/arm/boot/dts/*am4*
13537 F:      arch/arm/boot/dts/*am5*
13538 F:      arch/arm/boot/dts/*dra7*
13539 F:      arch/arm/boot/dts/*omap*
13540 F:      arch/arm/boot/dts/logicpd-som-lv*
13541 F:      arch/arm/boot/dts/logicpd-torpedo*
13542
13543 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13544 L:      linux-omap@vger.kernel.org
13545 L:      linux-fbdev@vger.kernel.org
13546 S:      Orphan
13547 F:      Documentation/arm/omap/dss.rst
13548 F:      drivers/video/fbdev/omap2/
13549
13550 OMAP FRAMEBUFFER SUPPORT
13551 L:      linux-fbdev@vger.kernel.org
13552 L:      linux-omap@vger.kernel.org
13553 S:      Orphan
13554 F:      drivers/video/fbdev/omap/
13555
13556 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13557 M:      Roger Quadros <rogerq@kernel.org>
13558 M:      Tony Lindgren <tony@atomide.com>
13559 L:      linux-omap@vger.kernel.org
13560 S:      Maintained
13561 F:      arch/arm/mach-omap2/*gpmc*
13562 F:      drivers/memory/omap-gpmc.c
13563
13564 OMAP GPIO DRIVER
13565 M:      Grygorii Strashko <grygorii.strashko@ti.com>
13566 M:      Santosh Shilimkar <ssantosh@kernel.org>
13567 M:      Kevin Hilman <khilman@kernel.org>
13568 L:      linux-omap@vger.kernel.org
13569 S:      Maintained
13570 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
13571 F:      drivers/gpio/gpio-omap.c
13572
13573 OMAP HARDWARE SPINLOCK SUPPORT
13574 M:      Ohad Ben-Cohen <ohad@wizery.com>
13575 L:      linux-omap@vger.kernel.org
13576 S:      Maintained
13577 F:      drivers/hwspinlock/omap_hwspinlock.c
13578
13579 OMAP HS MMC SUPPORT
13580 L:      linux-mmc@vger.kernel.org
13581 L:      linux-omap@vger.kernel.org
13582 S:      Orphan
13583 F:      drivers/mmc/host/omap_hsmmc.c
13584
13585 OMAP HWMOD DATA
13586 M:      Paul Walmsley <paul@pwsan.com>
13587 L:      linux-omap@vger.kernel.org
13588 S:      Maintained
13589 F:      arch/arm/mach-omap2/omap_hwmod*data*
13590
13591 OMAP HWMOD SUPPORT
13592 M:      Benoît Cousson <bcousson@baylibre.com>
13593 M:      Paul Walmsley <paul@pwsan.com>
13594 L:      linux-omap@vger.kernel.org
13595 S:      Maintained
13596 F:      arch/arm/mach-omap2/omap_hwmod.*
13597
13598 OMAP I2C DRIVER
13599 M:      Vignesh R <vigneshr@ti.com>
13600 L:      linux-omap@vger.kernel.org
13601 L:      linux-i2c@vger.kernel.org
13602 S:      Maintained
13603 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
13604 F:      drivers/i2c/busses/i2c-omap.c
13605
13606 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13607 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13608 L:      linux-media@vger.kernel.org
13609 S:      Maintained
13610 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
13611 F:      drivers/media/platform/omap3isp/
13612 F:      drivers/staging/media/omap4iss/
13613
13614 OMAP MMC SUPPORT
13615 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13616 L:      linux-omap@vger.kernel.org
13617 S:      Odd Fixes
13618 F:      drivers/mmc/host/omap.c
13619
13620 OMAP POWER MANAGEMENT SUPPORT
13621 M:      Kevin Hilman <khilman@kernel.org>
13622 L:      linux-omap@vger.kernel.org
13623 S:      Maintained
13624 F:      arch/arm/*omap*/*pm*
13625 F:      drivers/cpufreq/omap-cpufreq.c
13626
13627 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13628 M:      Rajendra Nayak <rnayak@codeaurora.org>
13629 M:      Paul Walmsley <paul@pwsan.com>
13630 L:      linux-omap@vger.kernel.org
13631 S:      Maintained
13632 F:      arch/arm/mach-omap2/prm*
13633
13634 OMAP RANDOM NUMBER GENERATOR SUPPORT
13635 M:      Deepak Saxena <dsaxena@plexity.net>
13636 S:      Maintained
13637 F:      drivers/char/hw_random/omap-rng.c
13638
13639 OMAP USB SUPPORT
13640 L:      linux-usb@vger.kernel.org
13641 L:      linux-omap@vger.kernel.org
13642 S:      Orphan
13643 F:      arch/arm/*omap*/usb*
13644 F:      drivers/usb/*/*omap*
13645
13646 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13647 M:      Mark Jackson <mpfj@newflow.co.uk>
13648 L:      linux-omap@vger.kernel.org
13649 S:      Maintained
13650 F:      arch/arm/boot/dts/am335x-nano.dts
13651
13652 OMAP1 SUPPORT
13653 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13654 M:      Tony Lindgren <tony@atomide.com>
13655 L:      linux-omap@vger.kernel.org
13656 S:      Maintained
13657 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13659 F:      arch/arm/configs/omap1_defconfig
13660 F:      arch/arm/mach-omap1/
13661 F:      arch/arm/plat-omap/
13662 F:      drivers/i2c/busses/i2c-omap.c
13663 F:      include/linux/platform_data/ams-delta-fiq.h
13664 F:      include/linux/platform_data/i2c-omap.h
13665
13666 OMAP2+ SUPPORT
13667 M:      Tony Lindgren <tony@atomide.com>
13668 L:      linux-omap@vger.kernel.org
13669 S:      Maintained
13670 W:      http://www.muru.com/linux/omap/
13671 W:      http://linux.omap.com/
13672 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13674 F:      arch/arm/configs/omap2plus_defconfig
13675 F:      arch/arm/mach-omap2/
13676 F:      arch/arm/plat-omap/
13677 F:      drivers/bus/ti-sysc.c
13678 F:      drivers/i2c/busses/i2c-omap.c
13679 F:      drivers/irqchip/irq-omap-intc.c
13680 F:      drivers/mfd/*omap*.c
13681 F:      drivers/mfd/menelaus.c
13682 F:      drivers/mfd/palmas.c
13683 F:      drivers/mfd/tps65217.c
13684 F:      drivers/mfd/tps65218.c
13685 F:      drivers/mfd/tps65910.c
13686 F:      drivers/mfd/twl-core.[ch]
13687 F:      drivers/mfd/twl4030*.c
13688 F:      drivers/mfd/twl6030*.c
13689 F:      drivers/mfd/twl6040*.c
13690 F:      drivers/regulator/palmas-regulator*.c
13691 F:      drivers/regulator/pbias-regulator.c
13692 F:      drivers/regulator/tps65217-regulator.c
13693 F:      drivers/regulator/tps65218-regulator.c
13694 F:      drivers/regulator/tps65910-regulator.c
13695 F:      drivers/regulator/twl-regulator.c
13696 F:      drivers/regulator/twl6030-regulator.c
13697 F:      include/linux/platform_data/i2c-omap.h
13698 F:      include/linux/platform_data/ti-sysc.h
13699
13700 OMFS FILESYSTEM
13701 M:      Bob Copeland <me@bobcopeland.com>
13702 L:      linux-karma-devel@lists.sourceforge.net
13703 S:      Maintained
13704 F:      Documentation/filesystems/omfs.rst
13705 F:      fs/omfs/
13706
13707 OMNIKEY CARDMAN 4000 DRIVER
13708 M:      Harald Welte <laforge@gnumonks.org>
13709 S:      Maintained
13710 F:      drivers/char/pcmcia/cm4000_cs.c
13711 F:      include/linux/cm4000_cs.h
13712 F:      include/uapi/linux/cm4000_cs.h
13713
13714 OMNIKEY CARDMAN 4040 DRIVER
13715 M:      Harald Welte <laforge@gnumonks.org>
13716 S:      Maintained
13717 F:      drivers/char/pcmcia/cm4040_cs.*
13718
13719 OMNIVISION OV02A10 SENSOR DRIVER
13720 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13721 L:      linux-media@vger.kernel.org
13722 S:      Maintained
13723 T:      git git://linuxtv.org/media_tree.git
13724 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13725 F:      drivers/media/i2c/ov02a10.c
13726
13727 OMNIVISION OV13858 SENSOR DRIVER
13728 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13729 L:      linux-media@vger.kernel.org
13730 S:      Maintained
13731 T:      git git://linuxtv.org/media_tree.git
13732 F:      drivers/media/i2c/ov13858.c
13733
13734 OMNIVISION OV2680 SENSOR DRIVER
13735 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13736 L:      linux-media@vger.kernel.org
13737 S:      Maintained
13738 T:      git git://linuxtv.org/media_tree.git
13739 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
13740 F:      drivers/media/i2c/ov2680.c
13741
13742 OMNIVISION OV2685 SENSOR DRIVER
13743 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13744 L:      linux-media@vger.kernel.org
13745 S:      Maintained
13746 T:      git git://linuxtv.org/media_tree.git
13747 F:      drivers/media/i2c/ov2685.c
13748
13749 OMNIVISION OV2740 SENSOR DRIVER
13750 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13751 R:      Shawn Tu <shawnx.tu@intel.com>
13752 R:      Bingbu Cao <bingbu.cao@intel.com>
13753 L:      linux-media@vger.kernel.org
13754 S:      Maintained
13755 T:      git git://linuxtv.org/media_tree.git
13756 F:      drivers/media/i2c/ov2740.c
13757
13758 OMNIVISION OV5640 SENSOR DRIVER
13759 M:      Steve Longerbeam <slongerbeam@gmail.com>
13760 L:      linux-media@vger.kernel.org
13761 S:      Maintained
13762 T:      git git://linuxtv.org/media_tree.git
13763 F:      drivers/media/i2c/ov5640.c
13764
13765 OMNIVISION OV5647 SENSOR DRIVER
13766 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
13767 M:      Jacopo Mondi <jacopo@jmondi.org>
13768 L:      linux-media@vger.kernel.org
13769 S:      Maintained
13770 T:      git git://linuxtv.org/media_tree.git
13771 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
13772 F:      drivers/media/i2c/ov5647.c
13773
13774 OMNIVISION OV5670 SENSOR DRIVER
13775 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13776 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
13777 L:      linux-media@vger.kernel.org
13778 S:      Maintained
13779 T:      git git://linuxtv.org/media_tree.git
13780 F:      drivers/media/i2c/ov5670.c
13781
13782 OMNIVISION OV5675 SENSOR DRIVER
13783 M:      Shawn Tu <shawnx.tu@intel.com>
13784 L:      linux-media@vger.kernel.org
13785 S:      Maintained
13786 T:      git git://linuxtv.org/media_tree.git
13787 F:      drivers/media/i2c/ov5675.c
13788
13789 OMNIVISION OV5695 SENSOR DRIVER
13790 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13791 L:      linux-media@vger.kernel.org
13792 S:      Maintained
13793 T:      git git://linuxtv.org/media_tree.git
13794 F:      drivers/media/i2c/ov5695.c
13795
13796 OMNIVISION OV7670 SENSOR DRIVER
13797 L:      linux-media@vger.kernel.org
13798 S:      Orphan
13799 T:      git git://linuxtv.org/media_tree.git
13800 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
13801 F:      drivers/media/i2c/ov7670.c
13802
13803 OMNIVISION OV772x SENSOR DRIVER
13804 M:      Jacopo Mondi <jacopo@jmondi.org>
13805 L:      linux-media@vger.kernel.org
13806 S:      Odd fixes
13807 T:      git git://linuxtv.org/media_tree.git
13808 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13809 F:      drivers/media/i2c/ov772x.c
13810 F:      include/media/i2c/ov772x.h
13811
13812 OMNIVISION OV7740 SENSOR DRIVER
13813 M:      Wenyou Yang <wenyou.yang@microchip.com>
13814 L:      linux-media@vger.kernel.org
13815 S:      Maintained
13816 T:      git git://linuxtv.org/media_tree.git
13817 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
13818 F:      drivers/media/i2c/ov7740.c
13819
13820 OMNIVISION OV8856 SENSOR DRIVER
13821 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13822 L:      linux-media@vger.kernel.org
13823 S:      Maintained
13824 T:      git git://linuxtv.org/media_tree.git
13825 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13826 F:      drivers/media/i2c/ov8856.c
13827
13828 OMNIVISION OV9640 SENSOR DRIVER
13829 M:      Petr Cvek <petrcvekcz@gmail.com>
13830 L:      linux-media@vger.kernel.org
13831 S:      Maintained
13832 F:      drivers/media/i2c/ov9640.*
13833
13834 OMNIVISION OV9650 SENSOR DRIVER
13835 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13836 R:      Akinobu Mita <akinobu.mita@gmail.com>
13837 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13838 L:      linux-media@vger.kernel.org
13839 S:      Maintained
13840 T:      git git://linuxtv.org/media_tree.git
13841 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
13842 F:      drivers/media/i2c/ov9650.c
13843
13844 OMNIVISION OV9734 SENSOR DRIVER
13845 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13846 R:      Bingbu Cao <bingbu.cao@intel.com>
13847 L:      linux-media@vger.kernel.org
13848 S:      Maintained
13849 T:      git git://linuxtv.org/media_tree.git
13850 F:      drivers/media/i2c/ov9734.c
13851
13852 ONENAND FLASH DRIVER
13853 M:      Kyungmin Park <kyungmin.park@samsung.com>
13854 L:      linux-mtd@lists.infradead.org
13855 S:      Maintained
13856 F:      drivers/mtd/nand/onenand/
13857 F:      include/linux/mtd/onenand*.h
13858
13859 ONION OMEGA2+ BOARD
13860 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
13861 L:      linux-mips@vger.kernel.org
13862 S:      Maintained
13863 F:      arch/mips/boot/dts/ralink/omega2p.dts
13864
13865 OP-TEE DRIVER
13866 M:      Jens Wiklander <jens.wiklander@linaro.org>
13867 L:      op-tee@lists.trustedfirmware.org
13868 S:      Maintained
13869 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
13870 F:      drivers/tee/optee/
13871
13872 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
13873 M:      Sumit Garg <sumit.garg@linaro.org>
13874 L:      op-tee@lists.trustedfirmware.org
13875 S:      Maintained
13876 F:      drivers/char/hw_random/optee-rng.c
13877
13878 OPA-VNIC DRIVER
13879 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
13880 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
13881 L:      linux-rdma@vger.kernel.org
13882 S:      Supported
13883 F:      drivers/infiniband/ulp/opa_vnic
13884
13885 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
13886 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
13887 M:      Frank Rowand <frowand.list@gmail.com>
13888 L:      devicetree@vger.kernel.org
13889 S:      Maintained
13890 F:      Documentation/devicetree/dynamic-resolution-notes.rst
13891 F:      Documentation/devicetree/overlay-notes.rst
13892 F:      drivers/of/overlay.c
13893 F:      drivers/of/resolver.c
13894 K:      of_overlay_notifier_
13895
13896 OPEN FIRMWARE AND FLATTENED DEVICE TREE
13897 M:      Rob Herring <robh+dt@kernel.org>
13898 M:      Frank Rowand <frowand.list@gmail.com>
13899 L:      devicetree@vger.kernel.org
13900 S:      Maintained
13901 W:      http://www.devicetree.org/
13902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13903 F:      Documentation/ABI/testing/sysfs-firmware-ofw
13904 F:      drivers/of/
13905 F:      include/linux/of*.h
13906 F:      scripts/dtc/
13907
13908 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
13909 M:      Rob Herring <robh+dt@kernel.org>
13910 L:      devicetree@vger.kernel.org
13911 S:      Maintained
13912 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
13913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13914 F:      Documentation/devicetree/
13915 F:      arch/*/boot/dts/
13916 F:      include/dt-bindings/
13917
13918 OPENCOMPUTE PTP CLOCK DRIVER
13919 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
13920 L:      netdev@vger.kernel.org
13921 S:      Maintained
13922 F:      drivers/ptp/ptp_ocp.c
13923
13924 OPENCORES I2C BUS DRIVER
13925 M:      Peter Korsgaard <peter@korsgaard.com>
13926 M:      Andrew Lunn <andrew@lunn.ch>
13927 L:      linux-i2c@vger.kernel.org
13928 S:      Maintained
13929 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
13930 F:      Documentation/i2c/busses/i2c-ocores.rst
13931 F:      drivers/i2c/busses/i2c-ocores.c
13932 F:      include/linux/platform_data/i2c-ocores.h
13933
13934 OPENRISC ARCHITECTURE
13935 M:      Jonas Bonn <jonas@southpole.se>
13936 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
13937 M:      Stafford Horne <shorne@gmail.com>
13938 L:      openrisc@lists.librecores.org
13939 S:      Maintained
13940 W:      http://openrisc.io
13941 T:      git git://github.com/openrisc/linux.git
13942 F:      Documentation/devicetree/bindings/openrisc/
13943 F:      Documentation/openrisc/
13944 F:      arch/openrisc/
13945 F:      drivers/irqchip/irq-ompic.c
13946 F:      drivers/irqchip/irq-or1k-*
13947
13948 OPENVSWITCH
13949 M:      Pravin B Shelar <pshelar@ovn.org>
13950 L:      netdev@vger.kernel.org
13951 L:      dev@openvswitch.org
13952 S:      Maintained
13953 W:      http://openvswitch.org
13954 F:      include/uapi/linux/openvswitch.h
13955 F:      net/openvswitch/
13956
13957 OPERATING PERFORMANCE POINTS (OPP)
13958 M:      Viresh Kumar <vireshk@kernel.org>
13959 M:      Nishanth Menon <nm@ti.com>
13960 M:      Stephen Boyd <sboyd@kernel.org>
13961 L:      linux-pm@vger.kernel.org
13962 S:      Maintained
13963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
13964 F:      Documentation/devicetree/bindings/opp/
13965 F:      Documentation/power/opp.rst
13966 F:      drivers/opp/
13967 F:      include/linux/pm_opp.h
13968
13969 OPL4 DRIVER
13970 M:      Clemens Ladisch <clemens@ladisch.de>
13971 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13972 S:      Maintained
13973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13974 F:      sound/drivers/opl4/
13975
13976 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
13977 M:      Mark Fasheh <mark@fasheh.com>
13978 M:      Joel Becker <jlbec@evilplan.org>
13979 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
13980 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
13981 S:      Supported
13982 W:      http://ocfs2.wiki.kernel.org
13983 F:      Documentation/filesystems/dlmfs.rst
13984 F:      Documentation/filesystems/ocfs2.rst
13985 F:      fs/ocfs2/
13986
13987 ORANGEFS FILESYSTEM
13988 M:      Mike Marshall <hubcap@omnibond.com>
13989 R:      Martin Brandenburg <martin@omnibond.com>
13990 L:      devel@lists.orangefs.org
13991 S:      Supported
13992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
13993 F:      Documentation/filesystems/orangefs.rst
13994 F:      fs/orangefs/
13995
13996 ORINOCO DRIVER
13997 L:      linux-wireless@vger.kernel.org
13998 S:      Orphan
13999 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14000 W:      http://www.nongnu.org/orinoco/
14001 F:      drivers/net/wireless/intersil/orinoco/
14002
14003 OV2659 OMNIVISION SENSOR DRIVER
14004 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14005 L:      linux-media@vger.kernel.org
14006 S:      Maintained
14007 W:      https://linuxtv.org
14008 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14009 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14010 F:      drivers/media/i2c/ov2659.c
14011 F:      include/media/i2c/ov2659.h
14012
14013 OVERLAY FILESYSTEM
14014 M:      Miklos Szeredi <miklos@szeredi.hu>
14015 L:      linux-unionfs@vger.kernel.org
14016 S:      Supported
14017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14018 F:      Documentation/filesystems/overlayfs.rst
14019 F:      fs/overlayfs/
14020
14021 P54 WIRELESS DRIVER
14022 M:      Christian Lamparter <chunkeey@googlemail.com>
14023 L:      linux-wireless@vger.kernel.org
14024 S:      Maintained
14025 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14026 F:      drivers/net/wireless/intersil/p54/
14027
14028 PACKING
14029 M:      Vladimir Oltean <olteanv@gmail.com>
14030 L:      netdev@vger.kernel.org
14031 S:      Supported
14032 F:      Documentation/core-api/packing.rst
14033 F:      include/linux/packing.h
14034 F:      lib/packing.c
14035
14036 PADATA PARALLEL EXECUTION MECHANISM
14037 M:      Steffen Klassert <steffen.klassert@secunet.com>
14038 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14039 L:      linux-crypto@vger.kernel.org
14040 L:      linux-kernel@vger.kernel.org
14041 S:      Maintained
14042 F:      Documentation/core-api/padata.rst
14043 F:      include/linux/padata.h
14044 F:      kernel/padata.c
14045
14046 PAGE POOL
14047 M:      Jesper Dangaard Brouer <hawk@kernel.org>
14048 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
14049 L:      netdev@vger.kernel.org
14050 S:      Supported
14051 F:      Documentation/networking/page_pool.rst
14052 F:      include/net/page_pool.h
14053 F:      include/trace/events/page_pool.h
14054 F:      net/core/page_pool.c
14055
14056 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14057 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
14058 L:      platform-driver-x86@vger.kernel.org
14059 S:      Maintained
14060 F:      drivers/platform/x86/panasonic-laptop.c
14061
14062 PARALLAX PING IIO SENSOR DRIVER
14063 M:      Andreas Klinger <ak@it-klinger.de>
14064 L:      linux-iio@vger.kernel.org
14065 S:      Maintained
14066 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14067 F:      drivers/iio/proximity/ping.c
14068
14069 PARALLEL LCD/KEYPAD PANEL DRIVER
14070 M:      Willy Tarreau <willy@haproxy.com>
14071 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14072 S:      Odd Fixes
14073 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14074 F:      drivers/auxdisplay/panel.c
14075
14076 PARALLEL PORT SUBSYSTEM
14077 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14078 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14079 L:      linux-parport@lists.infradead.org (subscribers-only)
14080 S:      Maintained
14081 F:      Documentation/driver-api/parport*.rst
14082 F:      drivers/char/ppdev.c
14083 F:      drivers/parport/
14084 F:      include/linux/parport*.h
14085 F:      include/uapi/linux/ppdev.h
14086
14087 PARAVIRT_OPS INTERFACE
14088 M:      Juergen Gross <jgross@suse.com>
14089 M:      Deep Shah <sdeep@vmware.com>
14090 M:      "VMware, Inc." <pv-drivers@vmware.com>
14091 L:      virtualization@lists.linux-foundation.org
14092 S:      Supported
14093 F:      Documentation/virt/paravirt_ops.rst
14094 F:      arch/*/include/asm/paravirt*.h
14095 F:      arch/*/kernel/paravirt*
14096 F:      include/linux/hypervisor.h
14097
14098 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14099 M:      Tim Waugh <tim@cyberelk.net>
14100 L:      linux-parport@lists.infradead.org (subscribers-only)
14101 S:      Maintained
14102 F:      Documentation/admin-guide/blockdev/paride.rst
14103 F:      drivers/block/paride/
14104
14105 PARISC ARCHITECTURE
14106 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14107 M:      Helge Deller <deller@gmx.de>
14108 L:      linux-parisc@vger.kernel.org
14109 S:      Maintained
14110 W:      https://parisc.wiki.kernel.org
14111 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14114 F:      Documentation/parisc/
14115 F:      arch/parisc/
14116 F:      drivers/char/agp/parisc-agp.c
14117 F:      drivers/input/misc/hp_sdc_rtc.c
14118 F:      drivers/input/serio/gscps2.c
14119 F:      drivers/input/serio/hp_sdc*
14120 F:      drivers/parisc/
14121 F:      drivers/parport/parport_gsc.*
14122 F:      drivers/tty/serial/8250/8250_gsc.c
14123 F:      drivers/video/console/sti*
14124 F:      drivers/video/fbdev/sti*
14125 F:      drivers/video/logo/logo_parisc*
14126 F:      include/linux/hp_sdc.h
14127
14128 PARMAN
14129 M:      Jiri Pirko <jiri@nvidia.com>
14130 L:      netdev@vger.kernel.org
14131 S:      Supported
14132 F:      include/linux/parman.h
14133 F:      lib/parman.c
14134 F:      lib/test_parman.c
14135
14136 PC ENGINES APU BOARD DRIVER
14137 M:      Enrico Weigelt, metux IT consult <info@metux.net>
14138 S:      Maintained
14139 F:      drivers/platform/x86/pcengines-apuv2.c
14140
14141 PC87360 HARDWARE MONITORING DRIVER
14142 M:      Jim Cromie <jim.cromie@gmail.com>
14143 L:      linux-hwmon@vger.kernel.org
14144 S:      Maintained
14145 F:      Documentation/hwmon/pc87360.rst
14146 F:      drivers/hwmon/pc87360.c
14147
14148 PC8736x GPIO DRIVER
14149 M:      Jim Cromie <jim.cromie@gmail.com>
14150 S:      Maintained
14151 F:      drivers/char/pc8736x_gpio.c
14152
14153 PC87427 HARDWARE MONITORING DRIVER
14154 M:      Jean Delvare <jdelvare@suse.com>
14155 L:      linux-hwmon@vger.kernel.org
14156 S:      Maintained
14157 F:      Documentation/hwmon/pc87427.rst
14158 F:      drivers/hwmon/pc87427.c
14159
14160 PCA9532 LED DRIVER
14161 M:      Riku Voipio <riku.voipio@iki.fi>
14162 S:      Maintained
14163 F:      drivers/leds/leds-pca9532.c
14164 F:      include/linux/leds-pca9532.h
14165
14166 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14167 M:      Guenter Roeck <linux@roeck-us.net>
14168 L:      linux-i2c@vger.kernel.org
14169 S:      Maintained
14170 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14171
14172 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14173 M:      Khalid Aziz <khalid@gonehiking.org>
14174 S:      Maintained
14175 F:      drivers/firmware/pcdp.*
14176
14177 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14178 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14179 M:      Pali Rohár <pali@kernel.org>
14180 L:      linux-pci@vger.kernel.org
14181 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14182 S:      Maintained
14183 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14184 F:      drivers/pci/controller/pci-aardvark.c
14185
14186 PCI DRIVER FOR ALTERA PCIE IP
14187 M:      Joyce Ooi <joyce.ooi@intel.com>
14188 L:      linux-pci@vger.kernel.org
14189 S:      Supported
14190 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
14191 F:      drivers/pci/controller/pcie-altera.c
14192
14193 PCI DRIVER FOR APPLIEDMICRO XGENE
14194 M:      Toan Le <toan@os.amperecomputing.com>
14195 L:      linux-pci@vger.kernel.org
14196 L:      linux-arm-kernel@lists.infradead.org
14197 S:      Maintained
14198 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
14199 F:      drivers/pci/controller/pci-xgene.c
14200
14201 PCI DRIVER FOR ARM VERSATILE PLATFORM
14202 M:      Rob Herring <robh@kernel.org>
14203 L:      linux-pci@vger.kernel.org
14204 L:      linux-arm-kernel@lists.infradead.org
14205 S:      Maintained
14206 F:      Documentation/devicetree/bindings/pci/versatile.yaml
14207 F:      drivers/pci/controller/pci-versatile.c
14208
14209 PCI DRIVER FOR ARMADA 8K
14210 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14211 L:      linux-pci@vger.kernel.org
14212 L:      linux-arm-kernel@lists.infradead.org
14213 S:      Maintained
14214 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
14215 F:      drivers/pci/controller/dwc/pcie-armada8k.c
14216
14217 PCI DRIVER FOR CADENCE PCIE IP
14218 M:      Tom Joseph <tjoseph@cadence.com>
14219 L:      linux-pci@vger.kernel.org
14220 S:      Maintained
14221 F:      Documentation/devicetree/bindings/pci/cdns,*
14222 F:      drivers/pci/controller/cadence/
14223
14224 PCI DRIVER FOR FREESCALE LAYERSCAPE
14225 M:      Minghuan Lian <minghuan.Lian@nxp.com>
14226 M:      Mingkai Hu <mingkai.hu@nxp.com>
14227 M:      Roy Zang <roy.zang@nxp.com>
14228 L:      linuxppc-dev@lists.ozlabs.org
14229 L:      linux-pci@vger.kernel.org
14230 L:      linux-arm-kernel@lists.infradead.org
14231 S:      Maintained
14232 F:      drivers/pci/controller/dwc/*layerscape*
14233
14234 PCI DRIVER FOR GENERIC OF HOSTS
14235 M:      Will Deacon <will@kernel.org>
14236 L:      linux-pci@vger.kernel.org
14237 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14238 S:      Maintained
14239 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14240 F:      drivers/pci/controller/pci-host-common.c
14241 F:      drivers/pci/controller/pci-host-generic.c
14242
14243 PCI DRIVER FOR IMX6
14244 M:      Richard Zhu <hongxing.zhu@nxp.com>
14245 M:      Lucas Stach <l.stach@pengutronix.de>
14246 L:      linux-pci@vger.kernel.org
14247 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14248 S:      Maintained
14249 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
14250 F:      drivers/pci/controller/dwc/*imx6*
14251
14252 PCI DRIVER FOR FU740
14253 M:      Paul Walmsley <paul.walmsley@sifive.com>
14254 M:      Greentime Hu <greentime.hu@sifive.com>
14255 L:      linux-pci@vger.kernel.org
14256 S:      Maintained
14257 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14258 F:      drivers/pci/controller/dwc/pcie-fu740.c
14259
14260 PCI DRIVER FOR INTEL IXP4XX
14261 M:      Linus Walleij <linus.walleij@linaro.org>
14262 S:      Maintained
14263 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
14264 F:      drivers/pci/controller/pci-ixp4xx.c
14265
14266 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14267 M:      Jonathan Derrick <jonathan.derrick@intel.com>
14268 L:      linux-pci@vger.kernel.org
14269 S:      Supported
14270 F:      drivers/pci/controller/vmd.c
14271
14272 PCI DRIVER FOR MICROSEMI SWITCHTEC
14273 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14274 M:      Logan Gunthorpe <logang@deltatee.com>
14275 L:      linux-pci@vger.kernel.org
14276 S:      Maintained
14277 F:      Documentation/ABI/testing/sysfs-class-switchtec
14278 F:      Documentation/driver-api/switchtec.rst
14279 F:      drivers/ntb/hw/mscc/
14280 F:      drivers/pci/switch/switchtec*
14281 F:      include/linux/switchtec.h
14282 F:      include/uapi/linux/switchtec_ioctl.h
14283
14284 PCI DRIVER FOR MOBIVEIL PCIE IP
14285 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14286 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14287 L:      linux-pci@vger.kernel.org
14288 S:      Supported
14289 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14290 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
14291
14292 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14293 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14294 L:      linux-pci@vger.kernel.org
14295 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14296 S:      Maintained
14297 F:      drivers/pci/controller/*mvebu*
14298
14299 PCI DRIVER FOR NVIDIA TEGRA
14300 M:      Thierry Reding <thierry.reding@gmail.com>
14301 L:      linux-tegra@vger.kernel.org
14302 L:      linux-pci@vger.kernel.org
14303 S:      Supported
14304 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14305 F:      drivers/pci/controller/pci-tegra.c
14306
14307 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14308 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14309 L:      linux-pci@vger.kernel.org
14310 L:      linux-arm-kernel@lists.infradead.org
14311 S:      Maintained
14312 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14313 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14314
14315 PCI DRIVER FOR RENESAS R-CAR
14316 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14317 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14318 L:      linux-pci@vger.kernel.org
14319 L:      linux-renesas-soc@vger.kernel.org
14320 S:      Maintained
14321 F:      Documentation/devicetree/bindings/pci/*rcar*
14322 F:      drivers/pci/controller/*rcar*
14323
14324 PCI DRIVER FOR SAMSUNG EXYNOS
14325 M:      Jingoo Han <jingoohan1@gmail.com>
14326 L:      linux-pci@vger.kernel.org
14327 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14328 L:      linux-samsung-soc@vger.kernel.org
14329 S:      Maintained
14330 F:      drivers/pci/controller/dwc/pci-exynos.c
14331
14332 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14333 M:      Jingoo Han <jingoohan1@gmail.com>
14334 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14335 L:      linux-pci@vger.kernel.org
14336 S:      Maintained
14337 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
14338 F:      drivers/pci/controller/dwc/*designware*
14339
14340 PCI DRIVER FOR TI DRA7XX/J721E
14341 M:      Kishon Vijay Abraham I <kishon@ti.com>
14342 L:      linux-omap@vger.kernel.org
14343 L:      linux-pci@vger.kernel.org
14344 L:      linux-arm-kernel@lists.infradead.org
14345 S:      Supported
14346 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
14347 F:      drivers/pci/controller/cadence/pci-j721e.c
14348 F:      drivers/pci/controller/dwc/pci-dra7xx.c
14349
14350 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14351 M:      Linus Walleij <linus.walleij@linaro.org>
14352 L:      linux-pci@vger.kernel.org
14353 S:      Maintained
14354 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14355 F:      drivers/pci/controller/pci-v3-semi.c
14356
14357 PCI ENDPOINT SUBSYSTEM
14358 M:      Kishon Vijay Abraham I <kishon@ti.com>
14359 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14360 R:      Krzysztof Wilczyński <kw@linux.com>
14361 L:      linux-pci@vger.kernel.org
14362 S:      Supported
14363 F:      Documentation/PCI/endpoint/*
14364 F:      Documentation/misc-devices/pci-endpoint-test.rst
14365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
14366 F:      drivers/misc/pci_endpoint_test.c
14367 F:      drivers/pci/endpoint/
14368 F:      tools/pci/
14369
14370 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14371 M:      Russell Currey <ruscur@russell.cc>
14372 M:      Oliver O'Halloran <oohall@gmail.com>
14373 L:      linuxppc-dev@lists.ozlabs.org
14374 S:      Supported
14375 F:      Documentation/PCI/pci-error-recovery.rst
14376 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
14377 F:      arch/powerpc/include/*/eeh*.h
14378 F:      arch/powerpc/kernel/eeh*.c
14379 F:      arch/powerpc/platforms/*/eeh*.c
14380 F:      drivers/pci/pcie/aer.c
14381 F:      drivers/pci/pcie/dpc.c
14382 F:      drivers/pci/pcie/err.c
14383
14384 PCI ERROR RECOVERY
14385 M:      Linas Vepstas <linasvepstas@gmail.com>
14386 L:      linux-pci@vger.kernel.org
14387 S:      Supported
14388 F:      Documentation/PCI/pci-error-recovery.rst
14389
14390 PCI MSI DRIVER FOR ALTERA MSI IP
14391 M:      Joyce Ooi <joyce.ooi@intel.com>
14392 L:      linux-pci@vger.kernel.org
14393 S:      Supported
14394 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14395 F:      drivers/pci/controller/pcie-altera-msi.c
14396
14397 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14398 M:      Toan Le <toan@os.amperecomputing.com>
14399 L:      linux-pci@vger.kernel.org
14400 L:      linux-arm-kernel@lists.infradead.org
14401 S:      Maintained
14402 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14403 F:      drivers/pci/controller/pci-xgene-msi.c
14404
14405 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14406 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14407 R:      Rob Herring <robh@kernel.org>
14408 R:      Krzysztof Wilczyński <kw@linux.com>
14409 L:      linux-pci@vger.kernel.org
14410 S:      Supported
14411 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
14413 F:      drivers/pci/controller/
14414
14415 PCI SUBSYSTEM
14416 M:      Bjorn Helgaas <bhelgaas@google.com>
14417 L:      linux-pci@vger.kernel.org
14418 S:      Supported
14419 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14420 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14421 F:      Documentation/PCI/
14422 F:      Documentation/devicetree/bindings/pci/
14423 F:      arch/x86/kernel/early-quirks.c
14424 F:      arch/x86/kernel/quirks.c
14425 F:      arch/x86/pci/
14426 F:      drivers/acpi/pci*
14427 F:      drivers/pci/
14428 F:      include/asm-generic/pci*
14429 F:      include/linux/of_pci.h
14430 F:      include/linux/pci*
14431 F:      include/uapi/linux/pci*
14432 F:      lib/pci*
14433
14434 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14435 M:      Jonathan Chocron <jonnyc@amazon.com>
14436 L:      linux-pci@vger.kernel.org
14437 S:      Maintained
14438 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
14439 F:      drivers/pci/controller/dwc/pcie-al.c
14440
14441 PCIE DRIVER FOR AMLOGIC MESON
14442 M:      Yue Wang <yue.wang@Amlogic.com>
14443 L:      linux-pci@vger.kernel.org
14444 L:      linux-amlogic@lists.infradead.org
14445 S:      Maintained
14446 F:      drivers/pci/controller/dwc/pci-meson.c
14447
14448 PCIE DRIVER FOR AXIS ARTPEC
14449 M:      Jesper Nilsson <jesper.nilsson@axis.com>
14450 L:      linux-arm-kernel@axis.com
14451 L:      linux-pci@vger.kernel.org
14452 S:      Maintained
14453 F:      Documentation/devicetree/bindings/pci/axis,artpec*
14454 F:      drivers/pci/controller/dwc/*artpec*
14455
14456 PCIE DRIVER FOR CAVIUM THUNDERX
14457 M:      Robert Richter <rric@kernel.org>
14458 L:      linux-pci@vger.kernel.org
14459 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14460 S:      Odd Fixes
14461 F:      drivers/pci/controller/pci-thunder-*
14462
14463 PCIE DRIVER FOR HISILICON
14464 M:      Zhou Wang <wangzhou1@hisilicon.com>
14465 L:      linux-pci@vger.kernel.org
14466 S:      Maintained
14467 F:      drivers/pci/controller/dwc/pcie-hisi.c
14468
14469 PCIE DRIVER FOR HISILICON KIRIN
14470 M:      Xiaowei Song <songxiaowei@hisilicon.com>
14471 M:      Binghui Wang <wangbinghui@hisilicon.com>
14472 L:      linux-pci@vger.kernel.org
14473 S:      Maintained
14474 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
14475 F:      drivers/pci/controller/dwc/pcie-kirin.c
14476
14477 PCIE DRIVER FOR HISILICON STB
14478 M:      Shawn Guo <shawn.guo@linaro.org>
14479 L:      linux-pci@vger.kernel.org
14480 S:      Maintained
14481 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14482 F:      drivers/pci/controller/dwc/pcie-histb.c
14483
14484 PCIE DRIVER FOR INTEL LGM GW SOC
14485 M:      Rahul Tanwar <rtanwar@maxlinear.com>
14486 L:      linux-pci@vger.kernel.org
14487 S:      Maintained
14488 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
14489 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
14490
14491 PCIE DRIVER FOR MEDIATEK
14492 M:      Ryder Lee <ryder.lee@mediatek.com>
14493 M:      Jianjun Wang <jianjun.wang@mediatek.com>
14494 L:      linux-pci@vger.kernel.org
14495 L:      linux-mediatek@lists.infradead.org
14496 S:      Supported
14497 F:      Documentation/devicetree/bindings/pci/mediatek*
14498 F:      drivers/pci/controller/*mediatek*
14499
14500 PCIE DRIVER FOR MICROCHIP
14501 M:      Daire McNamara <daire.mcnamara@microchip.com>
14502 L:      linux-pci@vger.kernel.org
14503 S:      Supported
14504 F:      Documentation/devicetree/bindings/pci/microchip*
14505 F:      drivers/pci/controller/*microchip*
14506
14507 PCIE DRIVER FOR QUALCOMM MSM
14508 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
14509 L:      linux-pci@vger.kernel.org
14510 L:      linux-arm-msm@vger.kernel.org
14511 S:      Maintained
14512 F:      drivers/pci/controller/dwc/*qcom*
14513
14514 PCIE DRIVER FOR ROCKCHIP
14515 M:      Shawn Lin <shawn.lin@rock-chips.com>
14516 L:      linux-pci@vger.kernel.org
14517 L:      linux-rockchip@lists.infradead.org
14518 S:      Maintained
14519 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
14520 F:      drivers/pci/controller/pcie-rockchip*
14521
14522 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14523 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14524 L:      linux-pci@vger.kernel.org
14525 S:      Maintained
14526 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
14527 F:      drivers/pci/controller/dwc/pcie-uniphier*
14528
14529 PCIE DRIVER FOR ST SPEAR13XX
14530 M:      Pratyush Anand <pratyush.anand@gmail.com>
14531 L:      linux-pci@vger.kernel.org
14532 S:      Maintained
14533 F:      drivers/pci/controller/dwc/*spear*
14534
14535 PCMCIA SUBSYSTEM
14536 M:      Dominik Brodowski <linux@dominikbrodowski.net>
14537 S:      Odd Fixes
14538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14539 F:      Documentation/pcmcia/
14540 F:      drivers/pcmcia/
14541 F:      include/pcmcia/
14542 F:      tools/pcmcia/
14543
14544 PCNET32 NETWORK DRIVER
14545 M:      Don Fry <pcnet32@frontier.com>
14546 L:      netdev@vger.kernel.org
14547 S:      Maintained
14548 F:      drivers/net/ethernet/amd/pcnet32.c
14549
14550 PCRYPT PARALLEL CRYPTO ENGINE
14551 M:      Steffen Klassert <steffen.klassert@secunet.com>
14552 L:      linux-crypto@vger.kernel.org
14553 S:      Maintained
14554 F:      crypto/pcrypt.c
14555 F:      include/crypto/pcrypt.h
14556
14557 PEAQ WMI HOTKEYS DRIVER
14558 M:      Hans de Goede <hdegoede@redhat.com>
14559 L:      platform-driver-x86@vger.kernel.org
14560 S:      Maintained
14561 F:      drivers/platform/x86/peaq-wmi.c
14562
14563 PENSANDO ETHERNET DRIVERS
14564 M:      Shannon Nelson <snelson@pensando.io>
14565 M:      drivers@pensando.io
14566 L:      netdev@vger.kernel.org
14567 S:      Supported
14568 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14569 F:      drivers/net/ethernet/pensando/
14570
14571 PER-CPU MEMORY ALLOCATOR
14572 M:      Dennis Zhou <dennis@kernel.org>
14573 M:      Tejun Heo <tj@kernel.org>
14574 M:      Christoph Lameter <cl@linux.com>
14575 L:      linux-mm@kvack.org
14576 S:      Maintained
14577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14578 F:      arch/*/include/asm/percpu.h
14579 F:      include/linux/percpu*.h
14580 F:      lib/percpu*.c
14581 F:      mm/percpu*.c
14582
14583 PER-TASK DELAY ACCOUNTING
14584 M:      Balbir Singh <bsingharora@gmail.com>
14585 S:      Maintained
14586 F:      include/linux/delayacct.h
14587 F:      kernel/delayacct.c
14588
14589 PERFORMANCE EVENTS SUBSYSTEM
14590 M:      Peter Zijlstra <peterz@infradead.org>
14591 M:      Ingo Molnar <mingo@redhat.com>
14592 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
14593 R:      Mark Rutland <mark.rutland@arm.com>
14594 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
14595 R:      Jiri Olsa <jolsa@redhat.com>
14596 R:      Namhyung Kim <namhyung@kernel.org>
14597 L:      linux-perf-users@vger.kernel.org
14598 L:      linux-kernel@vger.kernel.org
14599 S:      Supported
14600 W:      https://perf.wiki.kernel.org/
14601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14602 F:      arch/*/events/*
14603 F:      arch/*/events/*/*
14604 F:      arch/*/include/asm/perf_event.h
14605 F:      arch/*/kernel/*/*/perf_event*.c
14606 F:      arch/*/kernel/*/perf_event*.c
14607 F:      arch/*/kernel/perf_callchain.c
14608 F:      arch/*/kernel/perf_event*.c
14609 F:      include/linux/perf_event.h
14610 F:      include/uapi/linux/perf_event.h
14611 F:      kernel/events/*
14612 F:      tools/lib/perf/
14613 F:      tools/perf/
14614
14615 PERFORMANCE EVENTS TOOLING ARM64
14616 R:      John Garry <john.garry@huawei.com>
14617 R:      Will Deacon <will@kernel.org>
14618 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
14619 R:      Leo Yan <leo.yan@linaro.org>
14620 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14621 S:      Supported
14622 F:      tools/build/feature/test-libopencsd.c
14623 F:      tools/perf/arch/arm*/
14624 F:      tools/perf/pmu-events/arch/arm64/
14625 F:      tools/perf/util/arm-spe*
14626 F:      tools/perf/util/cs-etm*
14627
14628 PERSONALITY HANDLING
14629 M:      Christoph Hellwig <hch@infradead.org>
14630 L:      linux-abi-devel@lists.sourceforge.net
14631 S:      Maintained
14632 F:      include/linux/personality.h
14633 F:      include/uapi/linux/personality.h
14634
14635 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14636 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
14637 L:      linux-input@vger.kernel.org
14638 S:      Maintained
14639 F:      Documentation/input/devices/pxrc.rst
14640 F:      drivers/input/joystick/pxrc.c
14641
14642 PHONET PROTOCOL
14643 M:      Remi Denis-Courmont <courmisch@gmail.com>
14644 S:      Supported
14645 F:      Documentation/networking/phonet.rst
14646 F:      include/linux/phonet.h
14647 F:      include/net/phonet/
14648 F:      include/uapi/linux/phonet.h
14649 F:      net/phonet/
14650
14651 PHRAM MTD DRIVER
14652 M:      Joern Engel <joern@lazybastard.org>
14653 L:      linux-mtd@lists.infradead.org
14654 S:      Maintained
14655 F:      drivers/mtd/devices/phram.c
14656
14657 PICOLCD HID DRIVER
14658 M:      Bruno Prémont <bonbons@linux-vserver.org>
14659 L:      linux-input@vger.kernel.org
14660 S:      Maintained
14661 F:      drivers/hid/hid-picolcd*
14662
14663 PIDFD API
14664 M:      Christian Brauner <christian@brauner.io>
14665 L:      linux-kernel@vger.kernel.org
14666 S:      Maintained
14667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14668 F:      samples/pidfd/
14669 F:      tools/testing/selftests/clone3/
14670 F:      tools/testing/selftests/pid_namespace/
14671 F:      tools/testing/selftests/pidfd/
14672 K:      (?i)pidfd
14673 K:      (?i)clone3
14674 K:      \b(clone_args|kernel_clone_args)\b
14675
14676 PIN CONTROL SUBSYSTEM
14677 M:      Linus Walleij <linus.walleij@linaro.org>
14678 L:      linux-gpio@vger.kernel.org
14679 S:      Maintained
14680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14681 F:      Documentation/devicetree/bindings/pinctrl/
14682 F:      Documentation/driver-api/pin-control.rst
14683 F:      drivers/pinctrl/
14684 F:      include/linux/pinctrl/
14685
14686 PIN CONTROLLER - FREESCALE
14687 M:      Dong Aisheng <aisheng.dong@nxp.com>
14688 M:      Fabio Estevam <festevam@gmail.com>
14689 M:      Shawn Guo <shawnguo@kernel.org>
14690 M:      Stefan Agner <stefan@agner.ch>
14691 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
14692 L:      linux-gpio@vger.kernel.org
14693 S:      Maintained
14694 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
14695 F:      drivers/pinctrl/freescale/
14696
14697 PIN CONTROLLER - INTEL
14698 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
14699 M:      Andy Shevchenko <andy@kernel.org>
14700 S:      Maintained
14701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14702 F:      drivers/pinctrl/intel/
14703
14704 PIN CONTROLLER - MEDIATEK
14705 M:      Sean Wang <sean.wang@kernel.org>
14706 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14707 S:      Maintained
14708 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
14709 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
14710 F:      drivers/pinctrl/mediatek/
14711
14712 PIN CONTROLLER - MICROCHIP AT91
14713 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14714 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14715 L:      linux-gpio@vger.kernel.org
14716 S:      Supported
14717 F:      drivers/gpio/gpio-sama5d2-piobu.c
14718 F:      drivers/pinctrl/pinctrl-at91*
14719
14720 PIN CONTROLLER - QUALCOMM
14721 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14722 L:      linux-arm-msm@vger.kernel.org
14723 S:      Maintained
14724 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14725 F:      drivers/pinctrl/qcom/
14726
14727 PIN CONTROLLER - RENESAS
14728 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14729 L:      linux-renesas-soc@vger.kernel.org
14730 S:      Supported
14731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14732 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
14733 F:      drivers/pinctrl/renesas/
14734
14735 PIN CONTROLLER - SAMSUNG
14736 M:      Tomasz Figa <tomasz.figa@gmail.com>
14737 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
14738 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14739 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14740 L:      linux-samsung-soc@vger.kernel.org
14741 S:      Maintained
14742 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
14743 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14744 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14745 F:      drivers/pinctrl/samsung/
14746 F:      include/dt-bindings/pinctrl/samsung.h
14747
14748 PIN CONTROLLER - SINGLE
14749 M:      Tony Lindgren <tony@atomide.com>
14750 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
14751 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14752 L:      linux-omap@vger.kernel.org
14753 S:      Maintained
14754 F:      drivers/pinctrl/pinctrl-single.c
14755
14756 PIN CONTROLLER - ST SPEAR
14757 M:      Viresh Kumar <vireshk@kernel.org>
14758 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14759 S:      Maintained
14760 W:      http://www.st.com/spear
14761 F:      drivers/pinctrl/spear/
14762
14763 PISTACHIO SOC SUPPORT
14764 M:      James Hartley <james.hartley@sondrel.com>
14765 L:      linux-mips@vger.kernel.org
14766 S:      Odd Fixes
14767 F:      arch/mips/boot/dts/img/pistachio*
14768 F:      arch/mips/configs/pistachio*_defconfig
14769 F:      arch/mips/pistachio/
14770
14771 PKTCDVD DRIVER
14772 M:      linux-block@vger.kernel.org
14773 S:      Orphan
14774 F:      drivers/block/pktcdvd.c
14775 F:      include/linux/pktcdvd.h
14776 F:      include/uapi/linux/pktcdvd.h
14777
14778 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14779 M:      Tomasz Duszynski <tduszyns@gmail.com>
14780 S:      Maintained
14781 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14782 F:      drivers/iio/chemical/pms7003.c
14783
14784 PLDMFW LIBRARY
14785 M:      Jacob Keller <jacob.e.keller@intel.com>
14786 S:      Maintained
14787 F:      Documentation/driver-api/pldmfw/
14788 F:      include/linux/pldmfw.h
14789 F:      lib/pldmfw/
14790
14791 PLX DMA DRIVER
14792 M:      Logan Gunthorpe <logang@deltatee.com>
14793 S:      Maintained
14794 F:      drivers/dma/plx_dma.c
14795
14796 PM6764TR DRIVER
14797 M:      Charles Hsu     <hsu.yungteng@gmail.com>
14798 L:      linux-hwmon@vger.kernel.org
14799 S:      Maintained
14800 F:      Documentation/hwmon/pm6764tr.rst
14801 F:      drivers/hwmon/pmbus/pm6764tr.c
14802
14803 PM-GRAPH UTILITY
14804 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14805 L:      linux-pm@vger.kernel.org
14806 S:      Supported
14807 W:      https://01.org/pm-graph
14808 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14809 T:      git git://github.com/intel/pm-graph
14810 F:      tools/power/pm-graph
14811
14812 PMBUS HARDWARE MONITORING DRIVERS
14813 M:      Guenter Roeck <linux@roeck-us.net>
14814 L:      linux-hwmon@vger.kernel.org
14815 S:      Maintained
14816 W:      http://hwmon.wiki.kernel.org/
14817 W:      http://www.roeck-us.net/linux/drivers/
14818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14819 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14820 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
14821 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
14822 F:      Documentation/hwmon/adm1275.rst
14823 F:      Documentation/hwmon/ibm-cffps.rst
14824 F:      Documentation/hwmon/ir35221.rst
14825 F:      Documentation/hwmon/lm25066.rst
14826 F:      Documentation/hwmon/ltc2978.rst
14827 F:      Documentation/hwmon/ltc3815.rst
14828 F:      Documentation/hwmon/max16064.rst
14829 F:      Documentation/hwmon/max20751.rst
14830 F:      Documentation/hwmon/max31785.rst
14831 F:      Documentation/hwmon/max34440.rst
14832 F:      Documentation/hwmon/max8688.rst
14833 F:      Documentation/hwmon/pmbus-core.rst
14834 F:      Documentation/hwmon/pmbus.rst
14835 F:      Documentation/hwmon/tps40422.rst
14836 F:      Documentation/hwmon/ucd9000.rst
14837 F:      Documentation/hwmon/ucd9200.rst
14838 F:      Documentation/hwmon/zl6100.rst
14839 F:      drivers/hwmon/pmbus/
14840 F:      include/linux/pmbus.h
14841
14842 PMC SIERRA MaxRAID DRIVER
14843 L:      linux-scsi@vger.kernel.org
14844 S:      Orphan
14845 W:      http://www.pmc-sierra.com/
14846 F:      drivers/scsi/pmcraid.*
14847
14848 PMC SIERRA PM8001 DRIVER
14849 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14850 L:      linux-scsi@vger.kernel.org
14851 S:      Supported
14852 F:      drivers/scsi/pm8001/
14853
14854 PNI RM3100 IIO DRIVER
14855 M:      Song Qiang <songqiang1304521@gmail.com>
14856 L:      linux-iio@vger.kernel.org
14857 S:      Maintained
14858 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
14859 F:      drivers/iio/magnetometer/rm3100*
14860
14861 PNP SUPPORT
14862 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
14863 L:      linux-acpi@vger.kernel.org
14864 S:      Maintained
14865 F:      drivers/pnp/
14866 F:      include/linux/pnp.h
14867
14868 POSIX CLOCKS and TIMERS
14869 M:      Thomas Gleixner <tglx@linutronix.de>
14870 L:      linux-kernel@vger.kernel.org
14871 S:      Maintained
14872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
14873 F:      fs/timerfd.c
14874 F:      include/linux/time_namespace.h
14875 F:      include/linux/timer*
14876 F:      kernel/time/*timer*
14877 F:      kernel/time/namespace.c
14878
14879 POWER MANAGEMENT CORE
14880 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
14881 L:      linux-pm@vger.kernel.org
14882 S:      Supported
14883 B:      https://bugzilla.kernel.org
14884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14885 F:      drivers/base/power/
14886 F:      drivers/powercap/
14887 F:      include/linux/intel_rapl.h
14888 F:      include/linux/pm.h
14889 F:      include/linux/pm_*
14890 F:      include/linux/powercap.h
14891 F:      kernel/configs/nopm.config
14892
14893 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
14894 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
14895 L:      linux-pm@vger.kernel.org
14896 S:      Supported
14897 B:      https://bugzilla.kernel.org
14898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14899 F:      drivers/powercap/dtpm*
14900 F:      include/linux/dtpm.h
14901
14902 POWER STATE COORDINATION INTERFACE (PSCI)
14903 M:      Mark Rutland <mark.rutland@arm.com>
14904 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14905 L:      linux-arm-kernel@lists.infradead.org
14906 S:      Maintained
14907 F:      drivers/firmware/psci/
14908 F:      include/linux/psci.h
14909 F:      include/uapi/linux/psci.h
14910
14911 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
14912 M:      Sebastian Reichel <sre@kernel.org>
14913 L:      linux-pm@vger.kernel.org
14914 S:      Maintained
14915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
14916 F:      Documentation/ABI/testing/sysfs-class-power
14917 F:      Documentation/devicetree/bindings/power/supply/
14918 F:      drivers/power/supply/
14919 F:      include/linux/power/
14920 F:      include/linux/power_supply.h
14921
14922 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
14923 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
14924 L:      linuxppc-dev@lists.ozlabs.org
14925 S:      Maintained
14926 F:      drivers/char/powernv-op-panel.c
14927
14928 PPP OVER ATM (RFC 2364)
14929 M:      Mitchell Blank Jr <mitch@sfgoth.com>
14930 S:      Maintained
14931 F:      include/uapi/linux/atmppp.h
14932 F:      net/atm/pppoatm.c
14933
14934 PPP OVER ETHERNET
14935 M:      Michal Ostrowski <mostrows@earthlink.net>
14936 S:      Maintained
14937 F:      drivers/net/ppp/pppoe.c
14938 F:      drivers/net/ppp/pppox.c
14939
14940 PPP OVER L2TP
14941 M:      James Chapman <jchapman@katalix.com>
14942 S:      Maintained
14943 F:      include/linux/if_pppol2tp.h
14944 F:      include/uapi/linux/if_pppol2tp.h
14945 F:      net/l2tp/l2tp_ppp.c
14946
14947 PPP PROTOCOL DRIVERS AND COMPRESSORS
14948 M:      Paul Mackerras <paulus@samba.org>
14949 L:      linux-ppp@vger.kernel.org
14950 S:      Maintained
14951 F:      drivers/net/ppp/ppp_*
14952
14953 PPS SUPPORT
14954 M:      Rodolfo Giometti <giometti@enneenne.com>
14955 L:      linuxpps@ml.enneenne.com (subscribers-only)
14956 S:      Maintained
14957 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
14958 F:      Documentation/ABI/testing/sysfs-pps
14959 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
14960 F:      Documentation/driver-api/pps.rst
14961 F:      drivers/pps/
14962 F:      include/linux/pps*.h
14963 F:      include/uapi/linux/pps.h
14964
14965 PPTP DRIVER
14966 M:      Dmitry Kozlov <xeb@mail.ru>
14967 L:      netdev@vger.kernel.org
14968 S:      Maintained
14969 W:      http://sourceforge.net/projects/accel-pptp
14970 F:      drivers/net/ppp/pptp.c
14971
14972 PRESSURE STALL INFORMATION (PSI)
14973 M:      Johannes Weiner <hannes@cmpxchg.org>
14974 S:      Maintained
14975 F:      include/linux/psi*
14976 F:      kernel/sched/psi.c
14977
14978 PRINTK
14979 M:      Petr Mladek <pmladek@suse.com>
14980 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
14981 R:      Steven Rostedt <rostedt@goodmis.org>
14982 R:      John Ogness <john.ogness@linutronix.de>
14983 S:      Maintained
14984 F:      include/linux/printk.h
14985 F:      kernel/printk/
14986
14987 PROC FILESYSTEM
14988 L:      linux-kernel@vger.kernel.org
14989 L:      linux-fsdevel@vger.kernel.org
14990 S:      Maintained
14991 F:      Documentation/filesystems/proc.rst
14992 F:      fs/proc/
14993 F:      include/linux/proc_fs.h
14994 F:      tools/testing/selftests/proc/
14995
14996 PROC SYSCTL
14997 M:      Luis Chamberlain <mcgrof@kernel.org>
14998 M:      Kees Cook <keescook@chromium.org>
14999 M:      Iurii Zaikin <yzaikin@google.com>
15000 L:      linux-kernel@vger.kernel.org
15001 L:      linux-fsdevel@vger.kernel.org
15002 S:      Maintained
15003 F:      fs/proc/proc_sysctl.c
15004 F:      include/linux/sysctl.h
15005 F:      kernel/sysctl-test.c
15006 F:      kernel/sysctl.c
15007 F:      tools/testing/selftests/sysctl/
15008
15009 PS3 NETWORK SUPPORT
15010 M:      Geoff Levand <geoff@infradead.org>
15011 L:      netdev@vger.kernel.org
15012 L:      linuxppc-dev@lists.ozlabs.org
15013 S:      Maintained
15014 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
15015
15016 PS3 PLATFORM SUPPORT
15017 M:      Geoff Levand <geoff@infradead.org>
15018 L:      linuxppc-dev@lists.ozlabs.org
15019 S:      Maintained
15020 F:      arch/powerpc/boot/ps3*
15021 F:      arch/powerpc/include/asm/lv1call.h
15022 F:      arch/powerpc/include/asm/ps3*.h
15023 F:      arch/powerpc/platforms/ps3/
15024 F:      drivers/*/ps3*
15025 F:      drivers/ps3/
15026 F:      drivers/rtc/rtc-ps3.c
15027 F:      drivers/usb/host/*ps3.c
15028 F:      sound/ppc/snd_ps3*
15029
15030 PS3VRAM DRIVER
15031 M:      Jim Paris <jim@jtan.com>
15032 M:      Geoff Levand <geoff@infradead.org>
15033 L:      linuxppc-dev@lists.ozlabs.org
15034 S:      Maintained
15035 F:      drivers/block/ps3vram.c
15036
15037 PSAMPLE PACKET SAMPLING SUPPORT
15038 M:      Yotam Gigi <yotam.gi@gmail.com>
15039 S:      Maintained
15040 F:      include/net/psample.h
15041 F:      include/uapi/linux/psample.h
15042 F:      net/psample
15043
15044 PSTORE FILESYSTEM
15045 M:      Kees Cook <keescook@chromium.org>
15046 M:      Anton Vorontsov <anton@enomsg.org>
15047 M:      Colin Cross <ccross@android.com>
15048 M:      Tony Luck <tony.luck@intel.com>
15049 S:      Maintained
15050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15051 F:      Documentation/admin-guide/ramoops.rst
15052 F:      Documentation/admin-guide/pstore-blk.rst
15053 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
15054 F:      drivers/acpi/apei/erst.c
15055 F:      drivers/firmware/efi/efi-pstore.c
15056 F:      fs/pstore/
15057 F:      include/linux/pstore*
15058 K:      \b(pstore|ramoops)
15059
15060 PTP HARDWARE CLOCK SUPPORT
15061 M:      Richard Cochran <richardcochran@gmail.com>
15062 L:      netdev@vger.kernel.org
15063 S:      Maintained
15064 W:      http://linuxptp.sourceforge.net/
15065 F:      Documentation/ABI/testing/sysfs-ptp
15066 F:      Documentation/driver-api/ptp.rst
15067 F:      drivers/net/phy/dp83640*
15068 F:      drivers/ptp/*
15069 F:      include/linux/ptp_cl*
15070
15071 PTP VIRTUAL CLOCK SUPPORT
15072 M:      Yangbo Lu <yangbo.lu@nxp.com>
15073 L:      netdev@vger.kernel.org
15074 S:      Maintained
15075 F:      drivers/ptp/ptp_vclock.c
15076 F:      net/ethtool/phc_vclocks.c
15077
15078 PTRACE SUPPORT
15079 M:      Oleg Nesterov <oleg@redhat.com>
15080 S:      Maintained
15081 F:      arch/*/*/ptrace*.c
15082 F:      arch/*/include/asm/ptrace*.h
15083 F:      arch/*/ptrace*.c
15084 F:      include/asm-generic/syscall.h
15085 F:      include/linux/ptrace.h
15086 F:      include/linux/regset.h
15087 F:      include/linux/tracehook.h
15088 F:      include/uapi/linux/ptrace.h
15089 F:      include/uapi/linux/ptrace.h
15090 F:      kernel/ptrace.c
15091
15092 PULSE8-CEC DRIVER
15093 M:      Hans Verkuil <hverkuil@xs4all.nl>
15094 L:      linux-media@vger.kernel.org
15095 S:      Maintained
15096 T:      git git://linuxtv.org/media_tree.git
15097 F:      Documentation/admin-guide/media/pulse8-cec.rst
15098 F:      drivers/media/cec/usb/pulse8/
15099
15100 PVRUSB2 VIDEO4LINUX DRIVER
15101 M:      Mike Isely <isely@pobox.com>
15102 L:      pvrusb2@isely.net       (subscribers-only)
15103 L:      linux-media@vger.kernel.org
15104 S:      Maintained
15105 W:      http://www.isely.net/pvrusb2/
15106 T:      git git://linuxtv.org/media_tree.git
15107 F:      Documentation/driver-api/media/drivers/pvrusb2*
15108 F:      drivers/media/usb/pvrusb2/
15109
15110 PWC WEBCAM DRIVER
15111 M:      Hans Verkuil <hverkuil@xs4all.nl>
15112 L:      linux-media@vger.kernel.org
15113 S:      Odd Fixes
15114 T:      git git://linuxtv.org/media_tree.git
15115 F:      drivers/media/usb/pwc/*
15116 F:      include/trace/events/pwc.h
15117
15118 PWM FAN DRIVER
15119 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15120 L:      linux-hwmon@vger.kernel.org
15121 S:      Supported
15122 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15123 F:      Documentation/hwmon/pwm-fan.rst
15124 F:      drivers/hwmon/pwm-fan.c
15125
15126 PWM IR Transmitter
15127 M:      Sean Young <sean@mess.org>
15128 L:      linux-media@vger.kernel.org
15129 S:      Maintained
15130 F:      drivers/media/rc/pwm-ir-tx.c
15131
15132 PWM SUBSYSTEM
15133 M:      Thierry Reding <thierry.reding@gmail.com>
15134 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15135 M:      Lee Jones <lee.jones@linaro.org>
15136 L:      linux-pwm@vger.kernel.org
15137 S:      Maintained
15138 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
15139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15140 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15141 F:      Documentation/devicetree/bindings/pwm/
15142 F:      Documentation/driver-api/pwm.rst
15143 F:      drivers/gpio/gpio-mvebu.c
15144 F:      drivers/pwm/
15145 F:      drivers/video/backlight/pwm_bl.c
15146 F:      include/linux/pwm.h
15147 F:      include/linux/pwm_backlight.h
15148 K:      pwm_(config|apply_state|ops)
15149
15150 PXA GPIO DRIVER
15151 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15152 L:      linux-gpio@vger.kernel.org
15153 S:      Maintained
15154 F:      drivers/gpio/gpio-pxa.c
15155
15156 PXA MMCI DRIVER
15157 S:      Orphan
15158
15159 PXA RTC DRIVER
15160 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15161 L:      linux-rtc@vger.kernel.org
15162 S:      Maintained
15163
15164 PXA2xx/PXA3xx SUPPORT
15165 M:      Daniel Mack <daniel@zonque.org>
15166 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
15167 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15168 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15169 S:      Maintained
15170 T:      git git://github.com/hzhuang1/linux.git
15171 T:      git git://github.com/rjarzmik/linux.git
15172 F:      arch/arm/boot/dts/pxa*
15173 F:      arch/arm/mach-pxa/
15174 F:      drivers/dma/pxa*
15175 F:      drivers/pcmcia/pxa2xx*
15176 F:      drivers/pinctrl/pxa/
15177 F:      drivers/spi/spi-pxa2xx*
15178 F:      drivers/usb/gadget/udc/pxa2*
15179 F:      include/sound/pxa2xx-lib.h
15180 F:      sound/arm/pxa*
15181 F:      sound/soc/pxa/
15182
15183 QAT DRIVER
15184 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15185 L:      qat-linux@intel.com
15186 S:      Supported
15187 F:      drivers/crypto/qat/
15188
15189 QCOM AUDIO (ASoC) DRIVERS
15190 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15191 M:      Banajit Goswami <bgoswami@codeaurora.org>
15192 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15193 S:      Supported
15194 F:      sound/soc/codecs/lpass-va-macro.c
15195 F:      sound/soc/codecs/lpass-wsa-macro.*
15196 F:      sound/soc/codecs/msm8916-wcd-analog.c
15197 F:      sound/soc/codecs/msm8916-wcd-digital.c
15198 F:      sound/soc/codecs/wcd9335.*
15199 F:      sound/soc/codecs/wcd934x.c
15200 F:      sound/soc/codecs/wcd-clsh-v2.*
15201 F:      sound/soc/codecs/wsa881x.c
15202 F:      sound/soc/qcom/
15203
15204 QCOM IPA DRIVER
15205 M:      Alex Elder <elder@kernel.org>
15206 L:      netdev@vger.kernel.org
15207 S:      Supported
15208 F:      drivers/net/ipa/
15209
15210 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15211 M:      Gabriel Somlo <somlo@cmu.edu>
15212 M:      "Michael S. Tsirkin" <mst@redhat.com>
15213 L:      qemu-devel@nongnu.org
15214 S:      Maintained
15215 F:      drivers/firmware/qemu_fw_cfg.c
15216 F:      include/uapi/linux/qemu_fw_cfg.h
15217
15218 QIB DRIVER
15219 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15220 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15221 L:      linux-rdma@vger.kernel.org
15222 S:      Supported
15223 F:      drivers/infiniband/hw/qib/
15224
15225 QLOGIC QL41xxx FCOE DRIVER
15226 M:      Saurav Kashyap <skashyap@marvell.com>
15227 M:      Javed Hasan <jhasan@marvell.com>
15228 M:      GR-QLogic-Storage-Upstream@marvell.com
15229 L:      linux-scsi@vger.kernel.org
15230 S:      Supported
15231 F:      drivers/scsi/qedf/
15232
15233 QLOGIC QL41xxx ISCSI DRIVER
15234 M:      Nilesh Javali <njavali@marvell.com>
15235 M:      Manish Rangankar <mrangankar@marvell.com>
15236 M:      GR-QLogic-Storage-Upstream@marvell.com
15237 L:      linux-scsi@vger.kernel.org
15238 S:      Supported
15239 F:      drivers/scsi/qedi/
15240
15241 QLOGIC QL4xxx ETHERNET DRIVER
15242 M:      Ariel Elior <aelior@marvell.com>
15243 M:      GR-everest-linux-l2@marvell.com
15244 L:      netdev@vger.kernel.org
15245 S:      Supported
15246 F:      drivers/net/ethernet/qlogic/qed/
15247 F:      drivers/net/ethernet/qlogic/qede/
15248 F:      include/linux/qed/
15249
15250 QLOGIC QL4xxx RDMA DRIVER
15251 M:      Michal Kalderon <mkalderon@marvell.com>
15252 M:      Ariel Elior <aelior@marvell.com>
15253 L:      linux-rdma@vger.kernel.org
15254 S:      Supported
15255 F:      drivers/infiniband/hw/qedr/
15256 F:      include/uapi/rdma/qedr-abi.h
15257
15258 QLOGIC QLA1280 SCSI DRIVER
15259 M:      Michael Reed <mdr@sgi.com>
15260 L:      linux-scsi@vger.kernel.org
15261 S:      Maintained
15262 F:      drivers/scsi/qla1280.[ch]
15263
15264 QLOGIC QLA2XXX FC-SCSI DRIVER
15265 M:      Nilesh Javali <njavali@marvell.com>
15266 M:      GR-QLogic-Storage-Upstream@marvell.com
15267 L:      linux-scsi@vger.kernel.org
15268 S:      Supported
15269 F:      drivers/scsi/qla2xxx/
15270
15271 QLOGIC QLA3XXX NETWORK DRIVER
15272 M:      GR-Linux-NIC-Dev@marvell.com
15273 L:      netdev@vger.kernel.org
15274 S:      Supported
15275 F:      drivers/net/ethernet/qlogic/qla3xxx.*
15276
15277 QLOGIC QLA4XXX iSCSI DRIVER
15278 M:      Nilesh Javali <njavali@marvell.com>
15279 M:      Manish Rangankar <mrangankar@marvell.com>
15280 M:      GR-QLogic-Storage-Upstream@marvell.com
15281 L:      linux-scsi@vger.kernel.org
15282 S:      Supported
15283 F:      drivers/scsi/qla4xxx/
15284
15285 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15286 M:      Shahed Shaikh <shshaikh@marvell.com>
15287 M:      Manish Chopra <manishc@marvell.com>
15288 M:      GR-Linux-NIC-Dev@marvell.com
15289 L:      netdev@vger.kernel.org
15290 S:      Supported
15291 F:      drivers/net/ethernet/qlogic/qlcnic/
15292
15293 QLOGIC QLGE 10Gb ETHERNET DRIVER
15294 M:      Manish Chopra <manishc@marvell.com>
15295 M:      GR-Linux-NIC-Dev@marvell.com
15296 M:      Coiby Xu <coiby.xu@gmail.com>
15297 L:      netdev@vger.kernel.org
15298 S:      Supported
15299 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
15300 F:      drivers/staging/qlge/
15301
15302 QM1D1B0004 MEDIA DRIVER
15303 M:      Akihiro Tsukada <tskd08@gmail.com>
15304 L:      linux-media@vger.kernel.org
15305 S:      Odd Fixes
15306 F:      drivers/media/tuners/qm1d1b0004*
15307
15308 QM1D1C0042 MEDIA DRIVER
15309 M:      Akihiro Tsukada <tskd08@gmail.com>
15310 L:      linux-media@vger.kernel.org
15311 S:      Odd Fixes
15312 F:      drivers/media/tuners/qm1d1c0042*
15313
15314 QNX4 FILESYSTEM
15315 M:      Anders Larsen <al@alarsen.net>
15316 S:      Maintained
15317 W:      http://www.alarsen.net/linux/qnx4fs/
15318 F:      fs/qnx4/
15319 F:      include/uapi/linux/qnx4_fs.h
15320 F:      include/uapi/linux/qnxtypes.h
15321
15322 QORIQ DPAA2 FSL-MC BUS DRIVER
15323 M:      Stuart Yoder <stuyoder@gmail.com>
15324 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
15325 L:      linux-kernel@vger.kernel.org
15326 S:      Maintained
15327 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
15328 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15329 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15330 F:      drivers/bus/fsl-mc/
15331 F:      include/uapi/linux/fsl_mc.h
15332
15333 QT1010 MEDIA DRIVER
15334 M:      Antti Palosaari <crope@iki.fi>
15335 L:      linux-media@vger.kernel.org
15336 S:      Maintained
15337 W:      https://linuxtv.org
15338 W:      http://palosaari.fi/linux/
15339 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15340 T:      git git://linuxtv.org/anttip/media_tree.git
15341 F:      drivers/media/tuners/qt1010*
15342
15343 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15344 M:      Kalle Valo <kvalo@codeaurora.org>
15345 L:      ath10k@lists.infradead.org
15346 S:      Supported
15347 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15349 F:      drivers/net/wireless/ath/ath10k/
15350
15351 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15352 M:      Kalle Valo <kvalo@codeaurora.org>
15353 L:      ath11k@lists.infradead.org
15354 S:      Supported
15355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15356 F:      drivers/net/wireless/ath/ath11k/
15357
15358 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15359 M:      ath9k-devel@qca.qualcomm.com
15360 L:      linux-wireless@vger.kernel.org
15361 S:      Supported
15362 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15363 F:      drivers/net/wireless/ath/ath9k/
15364
15365 QUALCOMM CAMERA SUBSYSTEM DRIVER
15366 M:      Robert Foss <robert.foss@linaro.org>
15367 M:      Todor Tomov <todor.too@gmail.com>
15368 L:      linux-media@vger.kernel.org
15369 S:      Maintained
15370 F:      Documentation/admin-guide/media/qcom_camss.rst
15371 F:      Documentation/devicetree/bindings/media/*camss*
15372 F:      drivers/media/platform/qcom/camss/
15373
15374 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15375 M:      Niklas Cassel <nks@flawful.org>
15376 L:      linux-pm@vger.kernel.org
15377 L:      linux-arm-msm@vger.kernel.org
15378 S:      Maintained
15379 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15380 F:      drivers/soc/qcom/cpr.c
15381
15382 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15383 M:      Ilia Lin <ilia.lin@kernel.org>
15384 L:      linux-pm@vger.kernel.org
15385 S:      Maintained
15386 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15387 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
15388
15389 QUALCOMM CRYPTO DRIVERS
15390 M:      Thara Gopinath <thara.gopinath@linaro.org>
15391 L:      linux-crypto@vger.kernel.org
15392 L:      linux-arm-msm@vger.kernel.org
15393 S:      Maintained
15394 F:      drivers/crypto/qce/
15395
15396 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15397 M:      Timur Tabi <timur@kernel.org>
15398 L:      netdev@vger.kernel.org
15399 S:      Maintained
15400 F:      drivers/net/ethernet/qualcomm/emac/
15401
15402 QUALCOMM ETHQOS ETHERNET DRIVER
15403 M:      Vinod Koul <vkoul@kernel.org>
15404 L:      netdev@vger.kernel.org
15405 S:      Maintained
15406 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
15407 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15408
15409 QUALCOMM GENERIC INTERFACE I2C DRIVER
15410 M:      Akash Asthana <akashast@codeaurora.org>
15411 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
15412 L:      linux-i2c@vger.kernel.org
15413 L:      linux-arm-msm@vger.kernel.org
15414 S:      Supported
15415 F:      drivers/i2c/busses/i2c-qcom-geni.c
15416
15417 QUALCOMM HEXAGON ARCHITECTURE
15418 M:      Brian Cain <bcain@codeaurora.org>
15419 L:      linux-hexagon@vger.kernel.org
15420 S:      Supported
15421 F:      arch/hexagon/
15422
15423 QUALCOMM HIDMA DRIVER
15424 M:      Sinan Kaya <okaya@kernel.org>
15425 L:      linux-arm-kernel@lists.infradead.org
15426 L:      linux-arm-msm@vger.kernel.org
15427 L:      dmaengine@vger.kernel.org
15428 S:      Supported
15429 F:      drivers/dma/qcom/hidma*
15430
15431 QUALCOMM I2C CCI DRIVER
15432 M:      Loic Poulain <loic.poulain@linaro.org>
15433 M:      Robert Foss <robert.foss@linaro.org>
15434 L:      linux-i2c@vger.kernel.org
15435 L:      linux-arm-msm@vger.kernel.org
15436 S:      Maintained
15437 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15438 F:      drivers/i2c/busses/i2c-qcom-cci.c
15439
15440 QUALCOMM IOMMU
15441 M:      Rob Clark <robdclark@gmail.com>
15442 L:      iommu@lists.linux-foundation.org
15443 L:      linux-arm-msm@vger.kernel.org
15444 S:      Maintained
15445 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
15446
15447 QUALCOMM IPC ROUTER (QRTR) DRIVER
15448 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15449 L:      linux-arm-msm@vger.kernel.org
15450 S:      Maintained
15451 F:      include/trace/events/qrtr.h
15452 F:      include/uapi/linux/qrtr.h
15453 F:      net/qrtr/
15454
15455 QUALCOMM IPCC MAILBOX DRIVER
15456 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15457 L:      linux-arm-msm@vger.kernel.org
15458 S:      Supported
15459 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15460 F:      drivers/mailbox/qcom-ipcc.c
15461 F:      include/dt-bindings/mailbox/qcom-ipcc.h
15462
15463 QUALCOMM IPQ4019 USB PHY DRIVER
15464 M:      Robert Marko <robert.marko@sartura.hr>
15465 M:      Luka Perkov <luka.perkov@sartura.hr>
15466 L:      linux-arm-msm@vger.kernel.org
15467 S:      Maintained
15468 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15469 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15470
15471 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15472 M:      Robert Marko <robert.marko@sartura.hr>
15473 M:      Luka Perkov <luka.perkov@sartura.hr>
15474 L:      linux-arm-msm@vger.kernel.org
15475 S:      Maintained
15476 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15477 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
15478
15479 QUALCOMM RMNET DRIVER
15480 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15481 M:      Sean Tranchetti <stranche@codeaurora.org>
15482 L:      netdev@vger.kernel.org
15483 S:      Maintained
15484 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15485 F:      drivers/net/ethernet/qualcomm/rmnet/
15486 F:      include/linux/if_rmnet.h
15487
15488 QUALCOMM TSENS THERMAL DRIVER
15489 M:      Amit Kucheria <amitk@kernel.org>
15490 M:      Thara Gopinath <thara.gopinath@linaro.org>
15491 L:      linux-pm@vger.kernel.org
15492 L:      linux-arm-msm@vger.kernel.org
15493 S:      Maintained
15494 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15495 F:      drivers/thermal/qcom/
15496
15497 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15498 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
15499 L:      linux-media@vger.kernel.org
15500 L:      linux-arm-msm@vger.kernel.org
15501 S:      Maintained
15502 T:      git git://linuxtv.org/media_tree.git
15503 F:      Documentation/devicetree/bindings/media/*venus*
15504 F:      drivers/media/platform/qcom/venus/
15505
15506 QUALCOMM WCN36XX WIRELESS DRIVER
15507 M:      Kalle Valo <kvalo@codeaurora.org>
15508 L:      wcn36xx@lists.infradead.org
15509 S:      Supported
15510 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15511 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
15512 F:      drivers/net/wireless/ath/wcn36xx/
15513
15514 QUANTENNA QTNFMAC WIRELESS DRIVER
15515 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
15516 R:      Sergey Matyukevich <geomatsi@gmail.com>
15517 L:      linux-wireless@vger.kernel.org
15518 S:      Maintained
15519 F:      drivers/net/wireless/quantenna
15520
15521 RADEON and AMDGPU DRM DRIVERS
15522 M:      Alex Deucher <alexander.deucher@amd.com>
15523 M:      Christian König <christian.koenig@amd.com>
15524 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
15525 L:      amd-gfx@lists.freedesktop.org
15526 S:      Supported
15527 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
15528 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
15529 C:      irc://irc.oftc.net/radeon
15530 F:      drivers/gpu/drm/amd/
15531 F:      drivers/gpu/drm/radeon/
15532 F:      include/uapi/drm/amdgpu_drm.h
15533 F:      include/uapi/drm/radeon_drm.h
15534
15535 RADEON FRAMEBUFFER DISPLAY DRIVER
15536 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
15537 L:      linux-fbdev@vger.kernel.org
15538 S:      Maintained
15539 F:      drivers/video/fbdev/aty/radeon*
15540 F:      include/uapi/linux/radeonfb.h
15541
15542 RADIOSHARK RADIO DRIVER
15543 M:      Hans Verkuil <hverkuil@xs4all.nl>
15544 L:      linux-media@vger.kernel.org
15545 S:      Maintained
15546 T:      git git://linuxtv.org/media_tree.git
15547 F:      drivers/media/radio/radio-shark.c
15548
15549 RADIOSHARK2 RADIO DRIVER
15550 M:      Hans Verkuil <hverkuil@xs4all.nl>
15551 L:      linux-media@vger.kernel.org
15552 S:      Maintained
15553 T:      git git://linuxtv.org/media_tree.git
15554 F:      drivers/media/radio/radio-shark2.c
15555 F:      drivers/media/radio/radio-tea5777.c
15556
15557 RADOS BLOCK DEVICE (RBD)
15558 M:      Ilya Dryomov <idryomov@gmail.com>
15559 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
15560 L:      ceph-devel@vger.kernel.org
15561 S:      Supported
15562 W:      http://ceph.com/
15563 T:      git git://github.com/ceph/ceph-client.git
15564 F:      Documentation/ABI/testing/sysfs-bus-rbd
15565 F:      drivers/block/rbd.c
15566 F:      drivers/block/rbd_types.h
15567
15568 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15569 M:      Paul Mackerras <paulus@samba.org>
15570 L:      linux-fbdev@vger.kernel.org
15571 S:      Maintained
15572 F:      drivers/video/fbdev/aty/aty128fb.c
15573
15574 RAINSHADOW-CEC DRIVER
15575 M:      Hans Verkuil <hverkuil@xs4all.nl>
15576 L:      linux-media@vger.kernel.org
15577 S:      Maintained
15578 T:      git git://linuxtv.org/media_tree.git
15579 F:      drivers/media/cec/usb/rainshadow/
15580
15581 RALINK MIPS ARCHITECTURE
15582 M:      John Crispin <john@phrozen.org>
15583 L:      linux-mips@vger.kernel.org
15584 S:      Maintained
15585 F:      arch/mips/ralink
15586
15587 RALINK RT2X00 WIRELESS LAN DRIVER
15588 M:      Stanislaw Gruszka <stf_xl@wp.pl>
15589 M:      Helmut Schaa <helmut.schaa@googlemail.com>
15590 L:      linux-wireless@vger.kernel.org
15591 S:      Maintained
15592 F:      drivers/net/wireless/ralink/rt2x00/
15593
15594 RAMDISK RAM BLOCK DEVICE DRIVER
15595 M:      Jens Axboe <axboe@kernel.dk>
15596 S:      Maintained
15597 F:      Documentation/admin-guide/blockdev/ramdisk.rst
15598 F:      drivers/block/brd.c
15599
15600 RANCHU VIRTUAL BOARD FOR MIPS
15601 M:      Miodrag Dinic <miodrag.dinic@mips.com>
15602 L:      linux-mips@vger.kernel.org
15603 S:      Supported
15604 F:      arch/mips/configs/generic/board-ranchu.config
15605 F:      arch/mips/generic/board-ranchu.c
15606
15607 RANDOM NUMBER DRIVER
15608 M:      "Theodore Ts'o" <tytso@mit.edu>
15609 S:      Maintained
15610 F:      drivers/char/random.c
15611
15612 RAPIDIO SUBSYSTEM
15613 M:      Matt Porter <mporter@kernel.crashing.org>
15614 M:      Alexandre Bounine <alex.bou9@gmail.com>
15615 S:      Maintained
15616 F:      drivers/rapidio/
15617
15618 RAS INFRASTRUCTURE
15619 M:      Tony Luck <tony.luck@intel.com>
15620 M:      Borislav Petkov <bp@alien8.de>
15621 L:      linux-edac@vger.kernel.org
15622 S:      Maintained
15623 F:      Documentation/admin-guide/ras.rst
15624 F:      drivers/ras/
15625 F:      include/linux/ras.h
15626 F:      include/ras/ras_event.h
15627
15628 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15629 L:      linux-wireless@vger.kernel.org
15630 S:      Orphan
15631 F:      drivers/net/wireless/ray*
15632
15633 RC-CORE / LIRC FRAMEWORK
15634 M:      Sean Young <sean@mess.org>
15635 L:      linux-media@vger.kernel.org
15636 S:      Maintained
15637 W:      http://linuxtv.org
15638 T:      git git://linuxtv.org/media_tree.git
15639 F:      Documentation/driver-api/media/rc-core.rst
15640 F:      Documentation/userspace-api/media/rc/
15641 F:      drivers/media/rc/
15642 F:      include/media/rc-map.h
15643 F:      include/media/rc-core.h
15644 F:      include/uapi/linux/lirc.h
15645
15646 RCMM REMOTE CONTROLS DECODER
15647 M:      Patrick Lerda <patrick9876@free.fr>
15648 S:      Maintained
15649 F:      drivers/media/rc/ir-rcmm-decoder.c
15650
15651 RCUTORTURE TEST FRAMEWORK
15652 M:      "Paul E. McKenney" <paulmck@kernel.org>
15653 M:      Josh Triplett <josh@joshtriplett.org>
15654 R:      Steven Rostedt <rostedt@goodmis.org>
15655 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15656 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15657 L:      rcu@vger.kernel.org
15658 S:      Supported
15659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15660 F:      tools/testing/selftests/rcutorture
15661
15662 RDACM20 Camera Sensor
15663 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15664 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15665 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15666 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15667 L:      linux-media@vger.kernel.org
15668 S:      Maintained
15669 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15670 F:      drivers/media/i2c/max9271.c
15671 F:      drivers/media/i2c/max9271.h
15672 F:      drivers/media/i2c/rdacm20.c
15673
15674 RDACM21 Camera Sensor
15675 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15676 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15677 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15678 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15679 L:      linux-media@vger.kernel.org
15680 S:      Maintained
15681 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15682 F:      drivers/media/i2c/max9271.c
15683 F:      drivers/media/i2c/max9271.h
15684 F:      drivers/media/i2c/rdacm21.c
15685
15686 RDC R-321X SoC
15687 M:      Florian Fainelli <florian@openwrt.org>
15688 S:      Maintained
15689
15690 RDC R6040 FAST ETHERNET DRIVER
15691 M:      Florian Fainelli <f.fainelli@gmail.com>
15692 L:      netdev@vger.kernel.org
15693 S:      Maintained
15694 F:      drivers/net/ethernet/rdc/r6040.c
15695
15696 RDMAVT - RDMA verbs software
15697 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15698 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15699 L:      linux-rdma@vger.kernel.org
15700 S:      Supported
15701 F:      drivers/infiniband/sw/rdmavt
15702
15703 RDS - RELIABLE DATAGRAM SOCKETS
15704 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
15705 L:      netdev@vger.kernel.org
15706 L:      linux-rdma@vger.kernel.org
15707 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
15708 S:      Supported
15709 W:      https://oss.oracle.com/projects/rds/
15710 F:      Documentation/networking/rds.rst
15711 F:      net/rds/
15712
15713 RDT - RESOURCE ALLOCATION
15714 M:      Fenghua Yu <fenghua.yu@intel.com>
15715 M:      Reinette Chatre <reinette.chatre@intel.com>
15716 L:      linux-kernel@vger.kernel.org
15717 S:      Supported
15718 F:      Documentation/x86/resctrl*
15719 F:      arch/x86/include/asm/resctrl.h
15720 F:      arch/x86/kernel/cpu/resctrl/
15721 F:      tools/testing/selftests/resctrl/
15722
15723 READ-COPY UPDATE (RCU)
15724 M:      "Paul E. McKenney" <paulmck@kernel.org>
15725 M:      Josh Triplett <josh@joshtriplett.org>
15726 R:      Steven Rostedt <rostedt@goodmis.org>
15727 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15728 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15729 R:      Joel Fernandes <joel@joelfernandes.org>
15730 L:      rcu@vger.kernel.org
15731 S:      Supported
15732 W:      http://www.rdrop.com/users/paulmck/RCU/
15733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15734 F:      Documentation/RCU/
15735 F:      include/linux/rcu*
15736 F:      kernel/rcu/
15737 X:      Documentation/RCU/torture.rst
15738 X:      include/linux/srcu*.h
15739 X:      kernel/rcu/srcu*.c
15740
15741 REAL TIME CLOCK (RTC) SUBSYSTEM
15742 M:      Alessandro Zummo <a.zummo@towertech.it>
15743 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
15744 L:      linux-rtc@vger.kernel.org
15745 S:      Maintained
15746 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
15747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15748 F:      Documentation/admin-guide/rtc.rst
15749 F:      Documentation/devicetree/bindings/rtc/
15750 F:      drivers/rtc/
15751 F:      include/linux/platform_data/rtc-*
15752 F:      include/linux/rtc.h
15753 F:      include/linux/rtc/
15754 F:      include/uapi/linux/rtc.h
15755 F:      tools/testing/selftests/rtc/
15756
15757 REALTEK AUDIO CODECS
15758 M:      Oder Chiou <oder_chiou@realtek.com>
15759 S:      Maintained
15760 F:      include/sound/rt*.h
15761 F:      sound/soc/codecs/rt*
15762
15763 REALTEK RTL83xx SMI DSA ROUTER CHIPS
15764 M:      Linus Walleij <linus.walleij@linaro.org>
15765 S:      Maintained
15766 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
15767 F:      drivers/net/dsa/realtek-smi*
15768 F:      drivers/net/dsa/rtl83*
15769
15770 REALTEK WIRELESS DRIVER (rtlwifi family)
15771 M:      Ping-Ke Shih <pkshih@realtek.com>
15772 L:      linux-wireless@vger.kernel.org
15773 S:      Maintained
15774 W:      https://wireless.wiki.kernel.org/
15775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15776 F:      drivers/net/wireless/realtek/rtlwifi/
15777
15778 REALTEK WIRELESS DRIVER (rtw88)
15779 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
15780 L:      linux-wireless@vger.kernel.org
15781 S:      Maintained
15782 F:      drivers/net/wireless/realtek/rtw88/
15783
15784 REDPINE WIRELESS DRIVER
15785 M:      Amitkumar Karwar <amitkarwar@gmail.com>
15786 M:      Siva Rebbagondla <siva8118@gmail.com>
15787 L:      linux-wireless@vger.kernel.org
15788 S:      Maintained
15789 F:      drivers/net/wireless/rsi/
15790
15791 REGISTER MAP ABSTRACTION
15792 M:      Mark Brown <broonie@kernel.org>
15793 L:      linux-kernel@vger.kernel.org
15794 S:      Supported
15795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15796 F:      Documentation/devicetree/bindings/regmap/
15797 F:      drivers/base/regmap/
15798 F:      include/linux/regmap.h
15799
15800 REISERFS FILE SYSTEM
15801 L:      reiserfs-devel@vger.kernel.org
15802 S:      Supported
15803 F:      fs/reiserfs/
15804
15805 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15806 M:      Ohad Ben-Cohen <ohad@wizery.com>
15807 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15808 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
15809 L:      linux-remoteproc@vger.kernel.org
15810 S:      Maintained
15811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15812 F:      Documentation/ABI/testing/sysfs-class-remoteproc
15813 F:      Documentation/devicetree/bindings/remoteproc/
15814 F:      Documentation/staging/remoteproc.rst
15815 F:      drivers/remoteproc/
15816 F:      include/linux/remoteproc.h
15817 F:      include/linux/remoteproc/
15818
15819 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15820 M:      Ohad Ben-Cohen <ohad@wizery.com>
15821 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15822 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
15823 L:      linux-remoteproc@vger.kernel.org
15824 S:      Maintained
15825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15826 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
15827 F:      Documentation/staging/rpmsg.rst
15828 F:      drivers/rpmsg/
15829 F:      include/linux/rpmsg.h
15830 F:      include/linux/rpmsg/
15831 F:      include/uapi/linux/rpmsg.h
15832 F:      samples/rpmsg/
15833
15834 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
15835 M:      Stephan Gerhold <stephan@gerhold.net>
15836 L:      netdev@vger.kernel.org
15837 L:      linux-remoteproc@vger.kernel.org
15838 S:      Maintained
15839 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
15840
15841 RENESAS CLOCK DRIVERS
15842 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15843 L:      linux-renesas-soc@vger.kernel.org
15844 S:      Supported
15845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
15846 F:      Documentation/devicetree/bindings/clock/renesas,*
15847 F:      drivers/clk/renesas/
15848
15849 RENESAS EMEV2 I2C DRIVER
15850 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15851 L:      linux-renesas-soc@vger.kernel.org
15852 S:      Supported
15853 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
15854 F:      drivers/i2c/busses/i2c-emev2.c
15855
15856 RENESAS ETHERNET DRIVERS
15857 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
15858 L:      netdev@vger.kernel.org
15859 L:      linux-renesas-soc@vger.kernel.org
15860 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
15861 F:      drivers/net/ethernet/renesas/
15862 F:      include/linux/sh_eth.h
15863
15864 RENESAS R-CAR GYROADC DRIVER
15865 M:      Marek Vasut <marek.vasut@gmail.com>
15866 L:      linux-iio@vger.kernel.org
15867 S:      Supported
15868 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
15869 F:      drivers/iio/adc/rcar-gyroadc.c
15870
15871 RENESAS R-CAR I2C DRIVERS
15872 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15873 L:      linux-renesas-soc@vger.kernel.org
15874 S:      Supported
15875 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
15876 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
15877 F:      drivers/i2c/busses/i2c-rcar.c
15878 F:      drivers/i2c/busses/i2c-sh_mobile.c
15879
15880 RENESAS R-CAR THERMAL DRIVERS
15881 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
15882 L:      linux-renesas-soc@vger.kernel.org
15883 S:      Supported
15884 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
15885 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
15886 F:      drivers/thermal/rcar_gen3_thermal.c
15887 F:      drivers/thermal/rcar_thermal.c
15888
15889 RENESAS RIIC DRIVER
15890 M:      Chris Brandt <chris.brandt@renesas.com>
15891 L:      linux-renesas-soc@vger.kernel.org
15892 S:      Supported
15893 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
15894 F:      drivers/i2c/busses/i2c-riic.c
15895
15896 RENESAS USB PHY DRIVER
15897 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15898 L:      linux-renesas-soc@vger.kernel.org
15899 S:      Maintained
15900 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
15901
15902 RESET CONTROLLER FRAMEWORK
15903 M:      Philipp Zabel <p.zabel@pengutronix.de>
15904 S:      Maintained
15905 T:      git git://git.pengutronix.de/git/pza/linux
15906 F:      Documentation/devicetree/bindings/reset/
15907 F:      Documentation/driver-api/reset.rst
15908 F:      drivers/reset/
15909 F:      include/dt-bindings/reset/
15910 F:      include/linux/reset-controller.h
15911 F:      include/linux/reset.h
15912 F:      include/linux/reset/
15913 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
15914
15915 RESTARTABLE SEQUENCES SUPPORT
15916 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15917 M:      Peter Zijlstra <peterz@infradead.org>
15918 M:      "Paul E. McKenney" <paulmck@kernel.org>
15919 M:      Boqun Feng <boqun.feng@gmail.com>
15920 L:      linux-kernel@vger.kernel.org
15921 S:      Supported
15922 F:      include/trace/events/rseq.h
15923 F:      include/uapi/linux/rseq.h
15924 F:      kernel/rseq.c
15925 F:      tools/testing/selftests/rseq/
15926
15927 RFKILL
15928 M:      Johannes Berg <johannes@sipsolutions.net>
15929 L:      linux-wireless@vger.kernel.org
15930 S:      Maintained
15931 W:      https://wireless.wiki.kernel.org/
15932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
15933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
15934 F:      Documentation/ABI/stable/sysfs-class-rfkill
15935 F:      Documentation/driver-api/rfkill.rst
15936 F:      include/linux/rfkill.h
15937 F:      include/uapi/linux/rfkill.h
15938 F:      net/rfkill/
15939
15940 RHASHTABLE
15941 M:      Thomas Graf <tgraf@suug.ch>
15942 M:      Herbert Xu <herbert@gondor.apana.org.au>
15943 L:      netdev@vger.kernel.org
15944 S:      Maintained
15945 F:      include/linux/rhashtable-types.h
15946 F:      include/linux/rhashtable.h
15947 F:      lib/rhashtable.c
15948 F:      lib/test_rhashtable.c
15949
15950 RICOH R5C592 MEMORYSTICK DRIVER
15951 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15952 S:      Maintained
15953 F:      drivers/memstick/host/r592.*
15954
15955 RICOH SMARTMEDIA/XD DRIVER
15956 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15957 S:      Maintained
15958 F:      drivers/mtd/nand/raw/r852.c
15959 F:      drivers/mtd/nand/raw/r852.h
15960
15961 RISC-V ARCHITECTURE
15962 M:      Paul Walmsley <paul.walmsley@sifive.com>
15963 M:      Palmer Dabbelt <palmer@dabbelt.com>
15964 M:      Albert Ou <aou@eecs.berkeley.edu>
15965 L:      linux-riscv@lists.infradead.org
15966 S:      Supported
15967 P:      Documentation/riscv/patch-acceptance.rst
15968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
15969 F:      arch/riscv/
15970 N:      riscv
15971 K:      riscv
15972
15973 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
15974 M:      Lewis Hanly <lewis.hanly@microchip.com>
15975 L:      linux-riscv@lists.infradead.org
15976 S:      Supported
15977 F:      drivers/mailbox/mailbox-mpfs.c
15978 F:      drivers/soc/microchip/
15979 F:      include/soc/microchip/mpfs.h
15980
15981 RNBD BLOCK DRIVERS
15982 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
15983 M:      Jack Wang <jinpu.wang@ionos.com>
15984 L:      linux-block@vger.kernel.org
15985 S:      Maintained
15986 F:      drivers/block/rnbd/
15987
15988 ROCCAT DRIVERS
15989 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
15990 S:      Maintained
15991 W:      http://sourceforge.net/projects/roccat/
15992 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
15993 F:      drivers/hid/hid-roccat*
15994 F:      include/linux/hid-roccat*
15995
15996 ROCKCHIP ISP V1 DRIVER
15997 M:      Helen Koike <helen.koike@collabora.com>
15998 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
15999 L:      linux-media@vger.kernel.org
16000 L:      linux-rockchip@lists.infradead.org
16001 S:      Maintained
16002 F:      Documentation/admin-guide/media/rkisp1.rst
16003 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16004 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16005 F:      drivers/media/platform/rockchip/rkisp1
16006 F:      include/uapi/linux/rkisp1-config.h
16007
16008 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16009 M:      Jacob Chen <jacob-chen@iotwrt.com>
16010 M:      Ezequiel Garcia <ezequiel@collabora.com>
16011 L:      linux-media@vger.kernel.org
16012 L:      linux-rockchip@lists.infradead.org
16013 S:      Maintained
16014 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
16015 F:      drivers/media/platform/rockchip/rga/
16016
16017 ROCKCHIP VIDEO DECODER DRIVER
16018 M:      Ezequiel Garcia <ezequiel@collabora.com>
16019 L:      linux-media@vger.kernel.org
16020 L:      linux-rockchip@lists.infradead.org
16021 S:      Maintained
16022 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
16023 F:      drivers/staging/media/rkvdec/
16024
16025 ROCKER DRIVER
16026 M:      Jiri Pirko <jiri@resnulli.us>
16027 L:      netdev@vger.kernel.org
16028 S:      Supported
16029 F:      drivers/net/ethernet/rocker/
16030
16031 ROCKETPORT EXPRESS/INFINITY DRIVER
16032 M:      Kevin Cernekee <cernekee@gmail.com>
16033 L:      linux-serial@vger.kernel.org
16034 S:      Odd Fixes
16035 F:      drivers/tty/serial/rp2.*
16036
16037 ROHM BD99954 CHARGER IC
16038 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16039 L:      linux-power@fi.rohmeurope.com
16040 S:      Supported
16041 F:      drivers/power/supply/bd99954-charger.c
16042 F:      drivers/power/supply/bd99954-charger.h
16043
16044 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16045 M:      Tomasz Duszynski <tduszyns@gmail.com>
16046 S:      Maintained
16047 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
16048 F:      drivers/iio/light/bh1750.c
16049
16050 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16051 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
16052 L:      linux-kernel@vger.kernel.org
16053 L:      linux-renesas-soc@vger.kernel.org
16054 S:      Supported
16055 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
16056 F:      drivers/gpio/gpio-bd9571mwv.c
16057 F:      drivers/mfd/bd9571mwv.c
16058 F:      drivers/regulator/bd9571mwv-regulator.c
16059 F:      include/linux/mfd/bd9571mwv.h
16060
16061 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16062 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16063 L:      linux-power@fi.rohmeurope.com
16064 S:      Supported
16065 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
16066 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
16067 F:      drivers/clk/clk-bd718x7.c
16068 F:      drivers/gpio/gpio-bd70528.c
16069 F:      drivers/gpio/gpio-bd71815.c
16070 F:      drivers/gpio/gpio-bd71828.c
16071 F:      drivers/mfd/rohm-bd70528.c
16072 F:      drivers/mfd/rohm-bd71828.c
16073 F:      drivers/mfd/rohm-bd718x7.c
16074 F:      drivers/mfd/rohm-bd9576.c
16075 F:      drivers/power/supply/bd70528-charger.c
16076 F:      drivers/regulator/bd70528-regulator.c
16077 F:      drivers/regulator/bd71815-regulator.c
16078 F:      drivers/regulator/bd71828-regulator.c
16079 F:      drivers/regulator/bd718x7-regulator.c
16080 F:      drivers/regulator/bd9576-regulator.c
16081 F:      drivers/regulator/rohm-regulator.c
16082 F:      drivers/rtc/rtc-bd70528.c
16083 F:      drivers/watchdog/bd70528_wdt.c
16084 F:      drivers/watchdog/bd9576_wdt.c
16085 F:      include/linux/mfd/rohm-bd70528.h
16086 F:      include/linux/mfd/rohm-bd71815.h
16087 F:      include/linux/mfd/rohm-bd71828.h
16088 F:      include/linux/mfd/rohm-bd718x7.h
16089 F:      include/linux/mfd/rohm-bd957x.h
16090 F:      include/linux/mfd/rohm-generic.h
16091 F:      include/linux/mfd/rohm-shared.h
16092
16093 ROSE NETWORK LAYER
16094 M:      Ralf Baechle <ralf@linux-mips.org>
16095 L:      linux-hams@vger.kernel.org
16096 S:      Maintained
16097 W:      http://www.linux-ax25.org/
16098 F:      include/net/rose.h
16099 F:      include/uapi/linux/rose.h
16100 F:      net/rose/
16101
16102 ROTATION DRIVER FOR ALLWINNER A83T
16103 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
16104 L:      linux-media@vger.kernel.org
16105 S:      Maintained
16106 T:      git git://linuxtv.org/media_tree.git
16107 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16108 F:      drivers/media/platform/sunxi/sun8i-rotate/
16109
16110 RTL2830 MEDIA DRIVER
16111 M:      Antti Palosaari <crope@iki.fi>
16112 L:      linux-media@vger.kernel.org
16113 S:      Maintained
16114 W:      https://linuxtv.org
16115 W:      http://palosaari.fi/linux/
16116 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16117 T:      git git://linuxtv.org/anttip/media_tree.git
16118 F:      drivers/media/dvb-frontends/rtl2830*
16119
16120 RTL2832 MEDIA DRIVER
16121 M:      Antti Palosaari <crope@iki.fi>
16122 L:      linux-media@vger.kernel.org
16123 S:      Maintained
16124 W:      https://linuxtv.org
16125 W:      http://palosaari.fi/linux/
16126 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16127 T:      git git://linuxtv.org/anttip/media_tree.git
16128 F:      drivers/media/dvb-frontends/rtl2832*
16129
16130 RTL2832_SDR MEDIA DRIVER
16131 M:      Antti Palosaari <crope@iki.fi>
16132 L:      linux-media@vger.kernel.org
16133 S:      Maintained
16134 W:      https://linuxtv.org
16135 W:      http://palosaari.fi/linux/
16136 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16137 T:      git git://linuxtv.org/anttip/media_tree.git
16138 F:      drivers/media/dvb-frontends/rtl2832_sdr*
16139
16140 RTL8180 WIRELESS DRIVER
16141 L:      linux-wireless@vger.kernel.org
16142 S:      Orphan
16143 W:      https://wireless.wiki.kernel.org/
16144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16145 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
16146
16147 RTL8187 WIRELESS DRIVER
16148 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16149 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
16150 M:      Larry Finger <Larry.Finger@lwfinger.net>
16151 L:      linux-wireless@vger.kernel.org
16152 S:      Maintained
16153 W:      https://wireless.wiki.kernel.org/
16154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16155 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
16156
16157 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16158 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
16159 L:      linux-wireless@vger.kernel.org
16160 S:      Maintained
16161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16162 F:      drivers/net/wireless/realtek/rtl8xxxu/
16163
16164 RTRS TRANSPORT DRIVERS
16165 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16166 M:      Jack Wang <jinpu.wang@ionos.com>
16167 L:      linux-rdma@vger.kernel.org
16168 S:      Maintained
16169 F:      drivers/infiniband/ulp/rtrs/
16170
16171 RXRPC SOCKETS (AF_RXRPC)
16172 M:      David Howells <dhowells@redhat.com>
16173 M:      Marc Dionne <marc.dionne@auristor.com>
16174 L:      linux-afs@lists.infradead.org
16175 S:      Supported
16176 W:      https://www.infradead.org/~dhowells/kafs/
16177 F:      Documentation/networking/rxrpc.rst
16178 F:      include/keys/rxrpc-type.h
16179 F:      include/net/af_rxrpc.h
16180 F:      include/trace/events/rxrpc.h
16181 F:      include/uapi/linux/rxrpc.h
16182 F:      net/rxrpc/
16183
16184 S3 SAVAGE FRAMEBUFFER DRIVER
16185 M:      Antonino Daplas <adaplas@gmail.com>
16186 L:      linux-fbdev@vger.kernel.org
16187 S:      Maintained
16188 F:      drivers/video/fbdev/savage/
16189
16190 S390
16191 M:      Heiko Carstens <hca@linux.ibm.com>
16192 M:      Vasily Gorbik <gor@linux.ibm.com>
16193 M:      Christian Borntraeger <borntraeger@de.ibm.com>
16194 L:      linux-s390@vger.kernel.org
16195 S:      Supported
16196 W:      http://www.ibm.com/developerworks/linux/linux390/
16197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16198 F:      Documentation/driver-api/s390-drivers.rst
16199 F:      Documentation/s390/
16200 F:      arch/s390/
16201 F:      drivers/s390/
16202
16203 S390 COMMON I/O LAYER
16204 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
16205 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
16206 L:      linux-s390@vger.kernel.org
16207 S:      Supported
16208 W:      http://www.ibm.com/developerworks/linux/linux390/
16209 F:      drivers/s390/cio/
16210
16211 S390 DASD DRIVER
16212 M:      Stefan Haberland <sth@linux.ibm.com>
16213 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
16214 L:      linux-s390@vger.kernel.org
16215 S:      Supported
16216 W:      http://www.ibm.com/developerworks/linux/linux390/
16217 F:      block/partitions/ibm.c
16218 F:      drivers/s390/block/dasd*
16219 F:      include/linux/dasd_mod.h
16220
16221 S390 IOMMU (PCI)
16222 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16223 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16224 L:      linux-s390@vger.kernel.org
16225 S:      Supported
16226 W:      http://www.ibm.com/developerworks/linux/linux390/
16227 F:      drivers/iommu/s390-iommu.c
16228
16229 S390 IUCV NETWORK LAYER
16230 M:      Julian Wiedmann <jwi@linux.ibm.com>
16231 M:      Karsten Graul <kgraul@linux.ibm.com>
16232 L:      linux-s390@vger.kernel.org
16233 L:      netdev@vger.kernel.org
16234 S:      Supported
16235 W:      http://www.ibm.com/developerworks/linux/linux390/
16236 F:      drivers/s390/net/*iucv*
16237 F:      include/net/iucv/
16238 F:      net/iucv/
16239
16240 S390 NETWORK DRIVERS
16241 M:      Julian Wiedmann <jwi@linux.ibm.com>
16242 M:      Karsten Graul <kgraul@linux.ibm.com>
16243 L:      linux-s390@vger.kernel.org
16244 L:      netdev@vger.kernel.org
16245 S:      Supported
16246 W:      http://www.ibm.com/developerworks/linux/linux390/
16247 F:      drivers/s390/net/
16248
16249 S390 PCI SUBSYSTEM
16250 M:      Niklas Schnelle <schnelle@linux.ibm.com>
16251 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16252 L:      linux-s390@vger.kernel.org
16253 S:      Supported
16254 W:      http://www.ibm.com/developerworks/linux/linux390/
16255 F:      arch/s390/pci/
16256 F:      drivers/pci/hotplug/s390_pci_hpc.c
16257 F:      Documentation/s390/pci.rst
16258
16259 S390 VFIO AP DRIVER
16260 M:      Tony Krowiak <akrowiak@linux.ibm.com>
16261 M:      Halil Pasic <pasic@linux.ibm.com>
16262 M:      Jason Herne <jjherne@linux.ibm.com>
16263 L:      linux-s390@vger.kernel.org
16264 S:      Supported
16265 W:      http://www.ibm.com/developerworks/linux/linux390/
16266 F:      Documentation/s390/vfio-ap.rst
16267 F:      drivers/s390/crypto/vfio_ap_drv.c
16268 F:      drivers/s390/crypto/vfio_ap_ops.c
16269 F:      drivers/s390/crypto/vfio_ap_private.h
16270
16271 S390 VFIO-CCW DRIVER
16272 M:      Cornelia Huck <cohuck@redhat.com>
16273 M:      Eric Farman <farman@linux.ibm.com>
16274 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16275 R:      Halil Pasic <pasic@linux.ibm.com>
16276 L:      linux-s390@vger.kernel.org
16277 L:      kvm@vger.kernel.org
16278 S:      Supported
16279 F:      Documentation/s390/vfio-ccw.rst
16280 F:      drivers/s390/cio/vfio_ccw*
16281 F:      include/uapi/linux/vfio_ccw.h
16282
16283 S390 VFIO-PCI DRIVER
16284 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16285 M:      Eric Farman <farman@linux.ibm.com>
16286 L:      linux-s390@vger.kernel.org
16287 L:      kvm@vger.kernel.org
16288 S:      Supported
16289 F:      drivers/vfio/pci/vfio_pci_zdev.c
16290 F:      include/uapi/linux/vfio_zdev.h
16291
16292 S390 ZCRYPT DRIVER
16293 M:      Harald Freudenberger <freude@linux.ibm.com>
16294 L:      linux-s390@vger.kernel.org
16295 S:      Supported
16296 W:      http://www.ibm.com/developerworks/linux/linux390/
16297 F:      drivers/s390/crypto/
16298
16299 S390 ZFCP DRIVER
16300 M:      Steffen Maier <maier@linux.ibm.com>
16301 M:      Benjamin Block <bblock@linux.ibm.com>
16302 L:      linux-s390@vger.kernel.org
16303 S:      Supported
16304 W:      http://www.ibm.com/developerworks/linux/linux390/
16305 F:      drivers/s390/scsi/zfcp_*
16306
16307 S3C ADC BATTERY DRIVER
16308 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16309 L:      linux-samsung-soc@vger.kernel.org
16310 S:      Odd Fixes
16311 F:      drivers/power/supply/s3c_adc_battery.c
16312 F:      include/linux/s3c_adc_battery.h
16313
16314 S3C24XX SD/MMC Driver
16315 M:      Ben Dooks <ben-linux@fluff.org>
16316 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16317 S:      Supported
16318 F:      drivers/mmc/host/s3cmci.*
16319
16320 SAA6588 RDS RECEIVER DRIVER
16321 M:      Hans Verkuil <hverkuil@xs4all.nl>
16322 L:      linux-media@vger.kernel.org
16323 S:      Odd Fixes
16324 W:      https://linuxtv.org
16325 T:      git git://linuxtv.org/media_tree.git
16326 F:      drivers/media/i2c/saa6588*
16327
16328 SAA7134 VIDEO4LINUX DRIVER
16329 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16330 L:      linux-media@vger.kernel.org
16331 S:      Odd fixes
16332 W:      https://linuxtv.org
16333 T:      git git://linuxtv.org/media_tree.git
16334 F:      Documentation/driver-api/media/drivers/saa7134*
16335 F:      drivers/media/pci/saa7134/
16336
16337 SAA7146 VIDEO4LINUX-2 DRIVER
16338 M:      Hans Verkuil <hverkuil@xs4all.nl>
16339 L:      linux-media@vger.kernel.org
16340 S:      Maintained
16341 T:      git git://linuxtv.org/media_tree.git
16342 F:      drivers/media/common/saa7146/
16343 F:      drivers/media/pci/saa7146/
16344 F:      include/media/drv-intf/saa7146*
16345
16346 SAFESETID SECURITY MODULE
16347 M:      Micah Morton <mortonm@chromium.org>
16348 S:      Supported
16349 F:      Documentation/admin-guide/LSM/SafeSetID.rst
16350 F:      security/safesetid/
16351
16352 SAMSUNG AUDIO (ASoC) DRIVERS
16353 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16354 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16355 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16356 S:      Supported
16357 F:      Documentation/devicetree/bindings/sound/samsung*
16358 F:      sound/soc/samsung/
16359
16360 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16361 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16362 L:      linux-crypto@vger.kernel.org
16363 L:      linux-samsung-soc@vger.kernel.org
16364 S:      Maintained
16365 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16366 F:      drivers/crypto/exynos-rng.c
16367
16368 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16369 M:      Łukasz Stelmach <l.stelmach@samsung.com>
16370 L:      linux-samsung-soc@vger.kernel.org
16371 S:      Maintained
16372 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
16373 F:      drivers/char/hw_random/exynos-trng.c
16374
16375 SAMSUNG FRAMEBUFFER DRIVER
16376 M:      Jingoo Han <jingoohan1@gmail.com>
16377 L:      linux-fbdev@vger.kernel.org
16378 S:      Maintained
16379 F:      drivers/video/fbdev/s3c-fb.c
16380
16381 SAMSUNG INTERCONNECT DRIVERS
16382 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16383 M:      Artur Świgoń <a.swigon@samsung.com>
16384 L:      linux-pm@vger.kernel.org
16385 L:      linux-samsung-soc@vger.kernel.org
16386 S:      Supported
16387 F:      drivers/interconnect/samsung/
16388
16389 SAMSUNG LAPTOP DRIVER
16390 M:      Corentin Chary <corentin.chary@gmail.com>
16391 L:      platform-driver-x86@vger.kernel.org
16392 S:      Maintained
16393 F:      drivers/platform/x86/samsung-laptop.c
16394
16395 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16396 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16397 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16398 L:      linux-kernel@vger.kernel.org
16399 L:      linux-samsung-soc@vger.kernel.org
16400 S:      Supported
16401 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
16402 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16403 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
16404 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
16405 F:      drivers/clk/clk-s2mps11.c
16406 F:      drivers/mfd/sec*.c
16407 F:      drivers/regulator/s2m*.c
16408 F:      drivers/regulator/s5m*.c
16409 F:      drivers/rtc/rtc-s5m.c
16410 F:      include/linux/mfd/samsung/
16411
16412 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16413 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16414 L:      linux-media@vger.kernel.org
16415 L:      linux-samsung-soc@vger.kernel.org
16416 S:      Maintained
16417 F:      drivers/media/platform/s3c-camif/
16418 F:      include/media/drv-intf/s3c_camif.h
16419
16420 SAMSUNG S3FWRN5 NFC DRIVER
16421 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16422 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
16423 L:      linux-nfc@lists.01.org (subscribers-only)
16424 S:      Maintained
16425 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16426 F:      drivers/nfc/s3fwrn5
16427
16428 SAMSUNG S5C73M3 CAMERA DRIVER
16429 M:      Andrzej Hajda <a.hajda@samsung.com>
16430 L:      linux-media@vger.kernel.org
16431 S:      Supported
16432 F:      drivers/media/i2c/s5c73m3/*
16433
16434 SAMSUNG S5K5BAF CAMERA DRIVER
16435 M:      Andrzej Hajda <a.hajda@samsung.com>
16436 L:      linux-media@vger.kernel.org
16437 S:      Supported
16438 F:      drivers/media/i2c/s5k5baf.c
16439
16440 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16441 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16442 M:      Vladimir Zapolskiy <vz@mleia.com>
16443 L:      linux-crypto@vger.kernel.org
16444 L:      linux-samsung-soc@vger.kernel.org
16445 S:      Maintained
16446 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16447 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16448 F:      drivers/crypto/s5p-sss.c
16449
16450 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16451 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16452 L:      linux-media@vger.kernel.org
16453 S:      Supported
16454 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
16455 F:      drivers/media/platform/exynos4-is/
16456
16457 SAMSUNG SOC CLOCK DRIVERS
16458 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16459 M:      Tomasz Figa <tomasz.figa@gmail.com>
16460 M:      Chanwoo Choi <cw00.choi@samsung.com>
16461 L:      linux-samsung-soc@vger.kernel.org
16462 S:      Supported
16463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16464 F:      Documentation/devicetree/bindings/clock/exynos*.txt
16465 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
16466 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
16467 F:      drivers/clk/samsung/
16468 F:      include/dt-bindings/clock/exynos*.h
16469 F:      include/linux/clk/samsung.h
16470 F:      include/linux/platform_data/clk-s3c2410.h
16471
16472 SAMSUNG SPI DRIVERS
16473 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16474 M:      Andi Shyti <andi@etezian.org>
16475 L:      linux-spi@vger.kernel.org
16476 L:      linux-samsung-soc@vger.kernel.org
16477 S:      Maintained
16478 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
16479 F:      drivers/spi/spi-s3c*
16480 F:      include/linux/platform_data/spi-s3c64xx.h
16481 F:      include/linux/spi/s3c24xx-fiq.h
16482
16483 SAMSUNG SXGBE DRIVERS
16484 M:      Byungho An <bh74.an@samsung.com>
16485 L:      netdev@vger.kernel.org
16486 S:      Supported
16487 F:      drivers/net/ethernet/samsung/sxgbe/
16488
16489 SAMSUNG THERMAL DRIVER
16490 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16491 L:      linux-pm@vger.kernel.org
16492 L:      linux-samsung-soc@vger.kernel.org
16493 S:      Supported
16494 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
16495 F:      drivers/thermal/samsung/
16496
16497 SAMSUNG USB2 PHY DRIVER
16498 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16499 L:      linux-kernel@vger.kernel.org
16500 S:      Supported
16501 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
16502 F:      Documentation/driver-api/phy/samsung-usb2.rst
16503 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
16504 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
16505 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
16506 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
16507 F:      drivers/phy/samsung/phy-samsung-usb2.c
16508 F:      drivers/phy/samsung/phy-samsung-usb2.h
16509
16510 SC1200 WDT DRIVER
16511 M:      Zwane Mwaikambo <zwanem@gmail.com>
16512 S:      Maintained
16513 F:      drivers/watchdog/sc1200wdt.c
16514
16515 SCHEDULER
16516 M:      Ingo Molnar <mingo@redhat.com>
16517 M:      Peter Zijlstra <peterz@infradead.org>
16518 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
16519 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
16520 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
16521 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
16522 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
16523 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
16524 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
16525 L:      linux-kernel@vger.kernel.org
16526 S:      Maintained
16527 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16528 F:      include/linux/preempt.h
16529 F:      include/linux/sched.h
16530 F:      include/linux/wait.h
16531 F:      include/uapi/linux/sched.h
16532 F:      kernel/sched/
16533
16534 SCR24X CHIP CARD INTERFACE DRIVER
16535 M:      Lubomir Rintel <lkundrak@v3.sk>
16536 S:      Supported
16537 F:      drivers/char/pcmcia/scr24x_cs.c
16538
16539 SCSI CDROM DRIVER
16540 M:      Jens Axboe <axboe@kernel.dk>
16541 L:      linux-scsi@vger.kernel.org
16542 S:      Maintained
16543 W:      http://www.kernel.dk
16544 F:      drivers/scsi/sr*
16545
16546 SCSI RDMA PROTOCOL (SRP) INITIATOR
16547 M:      Bart Van Assche <bvanassche@acm.org>
16548 L:      linux-rdma@vger.kernel.org
16549 S:      Supported
16550 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16551 F:      drivers/infiniband/ulp/srp/
16552 F:      include/scsi/srp.h
16553
16554 SCSI RDMA PROTOCOL (SRP) TARGET
16555 M:      Bart Van Assche <bvanassche@acm.org>
16556 L:      linux-rdma@vger.kernel.org
16557 L:      target-devel@vger.kernel.org
16558 S:      Supported
16559 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16560 F:      drivers/infiniband/ulp/srpt/
16561
16562 SCSI SG DRIVER
16563 M:      Doug Gilbert <dgilbert@interlog.com>
16564 L:      linux-scsi@vger.kernel.org
16565 S:      Maintained
16566 W:      http://sg.danny.cz/sg
16567 F:      Documentation/scsi/scsi-generic.rst
16568 F:      drivers/scsi/sg.c
16569 F:      include/scsi/sg.h
16570
16571 SCSI SUBSYSTEM
16572 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
16573 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16574 L:      linux-scsi@vger.kernel.org
16575 S:      Maintained
16576 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
16577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16579 F:      Documentation/devicetree/bindings/scsi/
16580 F:      drivers/scsi/
16581 F:      include/scsi/
16582
16583 SCSI TAPE DRIVER
16584 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
16585 L:      linux-scsi@vger.kernel.org
16586 S:      Maintained
16587 F:      Documentation/scsi/st.rst
16588 F:      drivers/scsi/st.*
16589 F:      drivers/scsi/st_*.h
16590
16591 SCSI TARGET CORE USER DRIVER
16592 M:      Bodo Stroesser <bostroesser@gmail.com>
16593 L:      linux-scsi@vger.kernel.org
16594 L:      target-devel@vger.kernel.org
16595 S:      Supported
16596 F:      Documentation/target/tcmu-design.rst
16597 F:      drivers/target/target_core_user.c
16598 F:      include/uapi/linux/target_core_user.h
16599
16600 SCSI TARGET SUBSYSTEM
16601 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16602 L:      linux-scsi@vger.kernel.org
16603 L:      target-devel@vger.kernel.org
16604 S:      Supported
16605 W:      http://www.linux-iscsi.org
16606 Q:      https://patchwork.kernel.org/project/target-devel/list/
16607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16608 F:      Documentation/target/
16609 F:      drivers/target/
16610 F:      include/target/
16611
16612 SCTP PROTOCOL
16613 M:      Vlad Yasevich <vyasevich@gmail.com>
16614 M:      Neil Horman <nhorman@tuxdriver.com>
16615 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
16616 L:      linux-sctp@vger.kernel.org
16617 S:      Maintained
16618 W:      http://lksctp.sourceforge.net
16619 F:      Documentation/networking/sctp.rst
16620 F:      include/linux/sctp.h
16621 F:      include/net/sctp/
16622 F:      include/uapi/linux/sctp.h
16623 F:      net/sctp/
16624
16625 SCx200 CPU SUPPORT
16626 M:      Jim Cromie <jim.cromie@gmail.com>
16627 S:      Odd Fixes
16628 F:      Documentation/i2c/busses/scx200_acb.rst
16629 F:      arch/x86/platform/scx200/
16630 F:      drivers/i2c/busses/scx200*
16631 F:      drivers/mtd/maps/scx200_docflash.c
16632 F:      drivers/watchdog/scx200_wdt.c
16633 F:      include/linux/scx200.h
16634
16635 SCx200 GPIO DRIVER
16636 M:      Jim Cromie <jim.cromie@gmail.com>
16637 S:      Maintained
16638 F:      drivers/char/scx200_gpio.c
16639 F:      include/linux/scx200_gpio.h
16640
16641 SCx200 HRT CLOCKSOURCE DRIVER
16642 M:      Jim Cromie <jim.cromie@gmail.com>
16643 S:      Maintained
16644 F:      drivers/clocksource/scx200_hrt.c
16645
16646 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
16647 M:      Sascha Sommer <saschasommer@freenet.de>
16648 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
16649 S:      Maintained
16650 F:      drivers/mmc/host/sdricoh_cs.c
16651
16652 SECO BOARDS CEC DRIVER
16653 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
16654 S:      Maintained
16655 F:      drivers/media/cec/platform/seco/seco-cec.c
16656 F:      drivers/media/cec/platform/seco/seco-cec.h
16657
16658 SECURE COMPUTING
16659 M:      Kees Cook <keescook@chromium.org>
16660 R:      Andy Lutomirski <luto@amacapital.net>
16661 R:      Will Drewry <wad@chromium.org>
16662 S:      Supported
16663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
16664 F:      Documentation/userspace-api/seccomp_filter.rst
16665 F:      include/linux/seccomp.h
16666 F:      include/uapi/linux/seccomp.h
16667 F:      kernel/seccomp.c
16668 F:      tools/testing/selftests/kselftest_harness.h
16669 F:      tools/testing/selftests/seccomp/*
16670 K:      \bsecure_computing
16671 K:      \bTIF_SECCOMP\b
16672
16673 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
16674 M:      Al Cooper <alcooperx@gmail.com>
16675 L:      linux-mmc@vger.kernel.org
16676 L:      bcm-kernel-feedback-list@broadcom.com
16677 S:      Maintained
16678 F:      drivers/mmc/host/sdhci-brcmstb*
16679
16680 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
16681 M:      Adrian Hunter <adrian.hunter@intel.com>
16682 L:      linux-mmc@vger.kernel.org
16683 S:      Maintained
16684 F:      drivers/mmc/host/sdhci*
16685 F:      include/linux/mmc/sdhci*
16686
16687 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
16688 M:      Eugen Hristev <eugen.hristev@microchip.com>
16689 L:      linux-mmc@vger.kernel.org
16690 S:      Supported
16691 F:      drivers/mmc/host/sdhci-of-at91.c
16692
16693 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
16694 M:      Ben Dooks <ben-linux@fluff.org>
16695 M:      Jaehoon Chung <jh80.chung@samsung.com>
16696 L:      linux-mmc@vger.kernel.org
16697 S:      Maintained
16698 F:      drivers/mmc/host/sdhci-s3c*
16699
16700 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
16701 M:      Viresh Kumar <vireshk@kernel.org>
16702 L:      linux-mmc@vger.kernel.org
16703 S:      Maintained
16704 F:      drivers/mmc/host/sdhci-spear.c
16705
16706 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
16707 M:      Kishon Vijay Abraham I <kishon@ti.com>
16708 L:      linux-mmc@vger.kernel.org
16709 S:      Maintained
16710 F:      drivers/mmc/host/sdhci-omap.c
16711
16712 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
16713 M:      Jonathan Derrick <jonathan.derrick@intel.com>
16714 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
16715 L:      linux-block@vger.kernel.org
16716 S:      Supported
16717 F:      block/opal_proto.h
16718 F:      block/sed*
16719 F:      include/linux/sed*
16720 F:      include/uapi/linux/sed*
16721
16722 SECURITY CONTACT
16723 M:      Security Officers <security@kernel.org>
16724 S:      Supported
16725 F:      Documentation/admin-guide/security-bugs.rst
16726
16727 SECURITY SUBSYSTEM
16728 M:      James Morris <jmorris@namei.org>
16729 M:      "Serge E. Hallyn" <serge@hallyn.com>
16730 L:      linux-security-module@vger.kernel.org (suggested Cc:)
16731 S:      Supported
16732 W:      http://kernsec.org/
16733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
16734 F:      security/
16735 X:      security/selinux/
16736
16737 SELINUX SECURITY MODULE
16738 M:      Paul Moore <paul@paul-moore.com>
16739 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
16740 M:      Eric Paris <eparis@parisplace.org>
16741 L:      selinux@vger.kernel.org
16742 S:      Supported
16743 W:      https://selinuxproject.org
16744 W:      https://github.com/SELinuxProject
16745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
16746 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
16747 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
16748 F:      Documentation/admin-guide/LSM/SELinux.rst
16749 F:      include/trace/events/avc.h
16750 F:      include/uapi/linux/selinux_netlink.h
16751 F:      scripts/selinux/
16752 F:      security/selinux/
16753
16754 SENSABLE PHANTOM
16755 M:      Jiri Slaby <jirislaby@kernel.org>
16756 S:      Maintained
16757 F:      drivers/misc/phantom.c
16758 F:      include/uapi/linux/phantom.h
16759
16760 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
16761 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
16762 S:      Maintained
16763 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
16764 F:      drivers/iio/chemical/scd30.h
16765 F:      drivers/iio/chemical/scd30_core.c
16766 F:      drivers/iio/chemical/scd30_i2c.c
16767 F:      drivers/iio/chemical/scd30_serial.c
16768
16769 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
16770 M:      Tomasz Duszynski <tduszyns@gmail.com>
16771 S:      Maintained
16772 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
16773 F:      drivers/iio/chemical/sps30.c
16774 F:      drivers/iio/chemical/sps30_i2c.c
16775 F:      drivers/iio/chemical/sps30_serial.c
16776
16777 SERIAL DEVICE BUS
16778 M:      Rob Herring <robh@kernel.org>
16779 L:      linux-serial@vger.kernel.org
16780 S:      Maintained
16781 F:      Documentation/devicetree/bindings/serial/serial.yaml
16782 F:      drivers/tty/serdev/
16783 F:      include/linux/serdev.h
16784
16785 SERIAL DRIVERS
16786 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16787 L:      linux-serial@vger.kernel.org
16788 S:      Maintained
16789 F:      Documentation/devicetree/bindings/serial/
16790 F:      drivers/tty/serial/
16791
16792 SERIAL IR RECEIVER
16793 M:      Sean Young <sean@mess.org>
16794 L:      linux-media@vger.kernel.org
16795 S:      Maintained
16796 F:      drivers/media/rc/serial_ir.c
16797
16798 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
16799 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16800 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16801 S:      Maintained
16802 F:      Documentation/devicetree/bindings/slimbus/
16803 F:      drivers/slimbus/
16804 F:      include/linux/slimbus.h
16805
16806 SFC NETWORK DRIVER
16807 M:      Edward Cree <ecree.xilinx@gmail.com>
16808 M:      Martin Habets <habetsm.xilinx@gmail.com>
16809 L:      netdev@vger.kernel.org
16810 S:      Supported
16811 F:      drivers/net/ethernet/sfc/
16812
16813 SFF/SFP/SFP+ MODULE SUPPORT
16814 M:      Russell King <linux@armlinux.org.uk>
16815 L:      netdev@vger.kernel.org
16816 S:      Maintained
16817 F:      drivers/net/phy/phylink.c
16818 F:      drivers/net/phy/sfp*
16819 F:      include/linux/mdio/mdio-i2c.h
16820 F:      include/linux/phylink.h
16821 F:      include/linux/sfp.h
16822 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)
16823
16824 SGI GRU DRIVER
16825 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
16826 S:      Maintained
16827 F:      drivers/misc/sgi-gru/
16828
16829 SGI XP/XPC/XPNET DRIVER
16830 M:      Robin Holt <robinmholt@gmail.com>
16831 M:      Steve Wahl <steve.wahl@hpe.com>
16832 R:      Mike Travis <mike.travis@hpe.com>
16833 S:      Maintained
16834 F:      drivers/misc/sgi-xp/
16835
16836 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
16837 M:      Karsten Graul <kgraul@linux.ibm.com>
16838 M:      Guvenc Gulce <guvenc@linux.ibm.com>
16839 L:      linux-s390@vger.kernel.org
16840 S:      Supported
16841 W:      http://www.ibm.com/developerworks/linux/linux390/
16842 F:      net/smc/
16843
16844 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
16845 M:      Linus Walleij <linus.walleij@linaro.org>
16846 L:      linux-iio@vger.kernel.org
16847 S:      Maintained
16848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
16849 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
16850 F:      drivers/iio/light/gp2ap002.c
16851
16852 SHARP RJ54N1CB0C SENSOR DRIVER
16853 M:      Jacopo Mondi <jacopo@jmondi.org>
16854 L:      linux-media@vger.kernel.org
16855 S:      Odd fixes
16856 T:      git git://linuxtv.org/media_tree.git
16857 F:      drivers/media/i2c/rj54n1cb0c.c
16858 F:      include/media/i2c/rj54n1cb0c.h
16859
16860 SH_VOU V4L2 OUTPUT DRIVER
16861 L:      linux-media@vger.kernel.org
16862 S:      Orphan
16863 F:      drivers/media/platform/sh_vou.c
16864 F:      include/media/drv-intf/sh_vou.h
16865
16866 SI2157 MEDIA DRIVER
16867 M:      Antti Palosaari <crope@iki.fi>
16868 L:      linux-media@vger.kernel.org
16869 S:      Maintained
16870 W:      https://linuxtv.org
16871 W:      http://palosaari.fi/linux/
16872 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16873 T:      git git://linuxtv.org/anttip/media_tree.git
16874 F:      drivers/media/tuners/si2157*
16875
16876 SI2165 MEDIA DRIVER
16877 M:      Matthias Schwarzott <zzam@gentoo.org>
16878 L:      linux-media@vger.kernel.org
16879 S:      Maintained
16880 W:      https://linuxtv.org
16881 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16882 F:      drivers/media/dvb-frontends/si2165*
16883
16884 SI2168 MEDIA DRIVER
16885 M:      Antti Palosaari <crope@iki.fi>
16886 L:      linux-media@vger.kernel.org
16887 S:      Maintained
16888 W:      https://linuxtv.org
16889 W:      http://palosaari.fi/linux/
16890 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16891 T:      git git://linuxtv.org/anttip/media_tree.git
16892 F:      drivers/media/dvb-frontends/si2168*
16893
16894 SI470X FM RADIO RECEIVER I2C DRIVER
16895 M:      Hans Verkuil <hverkuil@xs4all.nl>
16896 L:      linux-media@vger.kernel.org
16897 S:      Odd Fixes
16898 W:      https://linuxtv.org
16899 T:      git git://linuxtv.org/media_tree.git
16900 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
16901
16902 SI470X FM RADIO RECEIVER USB DRIVER
16903 M:      Hans Verkuil <hverkuil@xs4all.nl>
16904 L:      linux-media@vger.kernel.org
16905 S:      Maintained
16906 W:      https://linuxtv.org
16907 T:      git git://linuxtv.org/media_tree.git
16908 F:      drivers/media/radio/si470x/radio-si470x-common.c
16909 F:      drivers/media/radio/si470x/radio-si470x-usb.c
16910 F:      drivers/media/radio/si470x/radio-si470x.h
16911
16912 SI4713 FM RADIO TRANSMITTER I2C DRIVER
16913 M:      Eduardo Valentin <edubezval@gmail.com>
16914 L:      linux-media@vger.kernel.org
16915 S:      Odd Fixes
16916 W:      https://linuxtv.org
16917 T:      git git://linuxtv.org/media_tree.git
16918 F:      drivers/media/radio/si4713/si4713.?
16919
16920 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
16921 M:      Eduardo Valentin <edubezval@gmail.com>
16922 L:      linux-media@vger.kernel.org
16923 S:      Odd Fixes
16924 W:      https://linuxtv.org
16925 T:      git git://linuxtv.org/media_tree.git
16926 F:      drivers/media/radio/si4713/radio-platform-si4713.c
16927
16928 SI4713 FM RADIO TRANSMITTER USB DRIVER
16929 M:      Hans Verkuil <hverkuil@xs4all.nl>
16930 L:      linux-media@vger.kernel.org
16931 S:      Maintained
16932 W:      https://linuxtv.org
16933 T:      git git://linuxtv.org/media_tree.git
16934 F:      drivers/media/radio/si4713/radio-usb-si4713.c
16935
16936 SIANO DVB DRIVER
16937 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16938 L:      linux-media@vger.kernel.org
16939 S:      Odd fixes
16940 W:      https://linuxtv.org
16941 T:      git git://linuxtv.org/media_tree.git
16942 F:      drivers/media/common/siano/
16943 F:      drivers/media/mmc/siano/
16944 F:      drivers/media/usb/siano/
16945 F:      drivers/media/usb/siano/
16946
16947 SIFIVE DRIVERS
16948 M:      Palmer Dabbelt <palmer@dabbelt.com>
16949 M:      Paul Walmsley <paul.walmsley@sifive.com>
16950 L:      linux-riscv@lists.infradead.org
16951 S:      Supported
16952 T:      git git://github.com/sifive/riscv-linux.git
16953 N:      sifive
16954 K:      [^@]sifive
16955
16956 SIFIVE FU540 SYSTEM-ON-CHIP
16957 M:      Paul Walmsley <paul.walmsley@sifive.com>
16958 M:      Palmer Dabbelt <palmer@dabbelt.com>
16959 L:      linux-riscv@lists.infradead.org
16960 S:      Supported
16961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
16962 N:      fu540
16963 K:      fu540
16964
16965 SIFIVE PDMA DRIVER
16966 M:      Green Wan <green.wan@sifive.com>
16967 S:      Maintained
16968 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
16969 F:      drivers/dma/sf-pdma/
16970
16971 SILEAD TOUCHSCREEN DRIVER
16972 M:      Hans de Goede <hdegoede@redhat.com>
16973 L:      linux-input@vger.kernel.org
16974 L:      platform-driver-x86@vger.kernel.org
16975 S:      Maintained
16976 F:      drivers/input/touchscreen/silead.c
16977 F:      drivers/platform/x86/touchscreen_dmi.c
16978
16979 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
16980 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
16981 S:      Supported
16982 F:      drivers/staging/wfx/
16983
16984 SILICON MOTION SM712 FRAME BUFFER DRIVER
16985 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16986 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16987 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16988 L:      linux-fbdev@vger.kernel.org
16989 S:      Maintained
16990 F:      Documentation/fb/sm712fb.rst
16991 F:      drivers/video/fbdev/sm712*
16992
16993 SILVACO I3C DUAL-ROLE MASTER
16994 M:      Miquel Raynal <miquel.raynal@bootlin.com>
16995 M:      Conor Culhane <conor.culhane@silvaco.com>
16996 L:      linux-i3c@lists.infradead.org
16997 S:      Maintained
16998 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
16999 F:      drivers/i3c/master/svc-i3c-master.c
17000
17001 SIMPLEFB FB DRIVER
17002 M:      Hans de Goede <hdegoede@redhat.com>
17003 L:      linux-fbdev@vger.kernel.org
17004 S:      Maintained
17005 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
17006 F:      drivers/video/fbdev/simplefb.c
17007 F:      include/linux/platform_data/simplefb.h
17008
17009 SIMTEC EB110ATX (Chalice CATS)
17010 M:      Simtec Linux Team <linux@simtec.co.uk>
17011 S:      Supported
17012 W:      http://www.simtec.co.uk/products/EB110ATX/
17013
17014 SIMTEC EB2410ITX (BAST)
17015 M:      Simtec Linux Team <linux@simtec.co.uk>
17016 S:      Supported
17017 W:      http://www.simtec.co.uk/products/EB2410ITX/
17018 F:      arch/arm/mach-s3c/bast-ide.c
17019 F:      arch/arm/mach-s3c/bast-irq.c
17020 F:      arch/arm/mach-s3c/mach-bast.c
17021
17022 SIOX
17023 M:      Thorsten Scherer <t.scherer@eckelmann.de>
17024 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17025 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
17026 S:      Supported
17027 F:      drivers/gpio/gpio-siox.c
17028 F:      drivers/siox/*
17029 F:      include/trace/events/siox.h
17030
17031 SIPHASH PRF ROUTINES
17032 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17033 S:      Maintained
17034 F:      include/linux/siphash.h
17035 F:      lib/siphash.c
17036 F:      lib/test_siphash.c
17037
17038 SIS 190 ETHERNET DRIVER
17039 M:      Francois Romieu <romieu@fr.zoreil.com>
17040 L:      netdev@vger.kernel.org
17041 S:      Maintained
17042 F:      drivers/net/ethernet/sis/sis190.c
17043
17044 SIS 900/7016 FAST ETHERNET DRIVER
17045 M:      Daniele Venzano <venza@brownhat.org>
17046 L:      netdev@vger.kernel.org
17047 S:      Maintained
17048 W:      http://www.brownhat.org/sis900.html
17049 F:      drivers/net/ethernet/sis/sis900.*
17050
17051 SIS FRAMEBUFFER DRIVER
17052 M:      Thomas Winischhofer <thomas@winischhofer.net>
17053 S:      Maintained
17054 W:      http://www.winischhofer.net/linuxsisvga.shtml
17055 F:      Documentation/fb/sisfb.rst
17056 F:      drivers/video/fbdev/sis/
17057 F:      include/video/sisfb.h
17058
17059 SIS I2C TOUCHSCREEN DRIVER
17060 M:      Mika Penttilä <mika.penttila@nextfour.com>
17061 L:      linux-input@vger.kernel.org
17062 S:      Maintained
17063 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
17064 F:      drivers/input/touchscreen/sis_i2c.c
17065
17066 SIS USB2VGA DRIVER
17067 M:      Thomas Winischhofer <thomas@winischhofer.net>
17068 S:      Maintained
17069 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
17070 F:      drivers/usb/misc/sisusbvga/
17071
17072 SLAB ALLOCATOR
17073 M:      Christoph Lameter <cl@linux.com>
17074 M:      Pekka Enberg <penberg@kernel.org>
17075 M:      David Rientjes <rientjes@google.com>
17076 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
17077 M:      Andrew Morton <akpm@linux-foundation.org>
17078 M:      Vlastimil Babka <vbabka@suse.cz>
17079 L:      linux-mm@kvack.org
17080 S:      Maintained
17081 F:      include/linux/sl?b*.h
17082 F:      mm/sl?b*
17083
17084 SLEEPABLE READ-COPY UPDATE (SRCU)
17085 M:      Lai Jiangshan <jiangshanlai@gmail.com>
17086 M:      "Paul E. McKenney" <paulmck@kernel.org>
17087 M:      Josh Triplett <josh@joshtriplett.org>
17088 R:      Steven Rostedt <rostedt@goodmis.org>
17089 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17090 L:      rcu@vger.kernel.org
17091 S:      Supported
17092 W:      http://www.rdrop.com/users/paulmck/RCU/
17093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17094 F:      include/linux/srcu*.h
17095 F:      kernel/rcu/srcu*.c
17096
17097 SMACK SECURITY MODULE
17098 M:      Casey Schaufler <casey@schaufler-ca.com>
17099 L:      linux-security-module@vger.kernel.org
17100 S:      Maintained
17101 W:      http://schaufler-ca.com
17102 T:      git git://github.com/cschaufler/smack-next
17103 F:      Documentation/admin-guide/LSM/Smack.rst
17104 F:      security/smack/
17105
17106 SMC91x ETHERNET DRIVER
17107 M:      Nicolas Pitre <nico@fluxnic.net>
17108 S:      Odd Fixes
17109 F:      drivers/net/ethernet/smsc/smc91x.*
17110
17111 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17112 M:      Mark Rutland <mark.rutland@arm.com>
17113 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17114 M:      Sudeep Holla <sudeep.holla@arm.com>
17115 L:      linux-arm-kernel@lists.infradead.org
17116 S:      Maintained
17117 F:      drivers/firmware/smccc/
17118 F:      include/linux/arm-smccc.h
17119
17120 SMM665 HARDWARE MONITOR DRIVER
17121 M:      Guenter Roeck <linux@roeck-us.net>
17122 L:      linux-hwmon@vger.kernel.org
17123 S:      Maintained
17124 F:      Documentation/hwmon/smm665.rst
17125 F:      drivers/hwmon/smm665.c
17126
17127 SMSC EMC2103 HARDWARE MONITOR DRIVER
17128 M:      Steve Glendinning <steve.glendinning@shawell.net>
17129 L:      linux-hwmon@vger.kernel.org
17130 S:      Maintained
17131 F:      Documentation/hwmon/emc2103.rst
17132 F:      drivers/hwmon/emc2103.c
17133
17134 SMSC SCH5627 HARDWARE MONITOR DRIVER
17135 M:      Hans de Goede <hdegoede@redhat.com>
17136 L:      linux-hwmon@vger.kernel.org
17137 S:      Supported
17138 F:      Documentation/hwmon/sch5627.rst
17139 F:      drivers/hwmon/sch5627.c
17140
17141 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17142 M:      Steve Glendinning <steve.glendinning@shawell.net>
17143 L:      linux-fbdev@vger.kernel.org
17144 S:      Maintained
17145 F:      drivers/video/fbdev/smscufx.c
17146
17147 SMSC47B397 HARDWARE MONITOR DRIVER
17148 M:      Jean Delvare <jdelvare@suse.com>
17149 L:      linux-hwmon@vger.kernel.org
17150 S:      Maintained
17151 F:      Documentation/hwmon/smsc47b397.rst
17152 F:      drivers/hwmon/smsc47b397.c
17153
17154 SMSC911x ETHERNET DRIVER
17155 M:      Steve Glendinning <steve.glendinning@shawell.net>
17156 L:      netdev@vger.kernel.org
17157 S:      Maintained
17158 F:      drivers/net/ethernet/smsc/smsc911x.*
17159 F:      include/linux/smsc911x.h
17160
17161 SMSC9420 PCI ETHERNET DRIVER
17162 M:      Steve Glendinning <steve.glendinning@shawell.net>
17163 L:      netdev@vger.kernel.org
17164 S:      Maintained
17165 F:      drivers/net/ethernet/smsc/smsc9420.*
17166
17167 SOCIONEXT (SNI) AVE NETWORK DRIVER
17168 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17169 L:      netdev@vger.kernel.org
17170 S:      Maintained
17171 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17172 F:      drivers/net/ethernet/socionext/sni_ave.c
17173
17174 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17175 M:      Jassi Brar <jaswinder.singh@linaro.org>
17176 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
17177 L:      netdev@vger.kernel.org
17178 S:      Maintained
17179 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
17180 F:      drivers/net/ethernet/socionext/netsec.c
17181
17182 SOCIONEXT (SNI) Synquacer SPI DRIVER
17183 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
17184 M:      Jassi Brar <jaswinder.singh@linaro.org>
17185 L:      linux-spi@vger.kernel.org
17186 S:      Maintained
17187 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
17188 F:      drivers/spi/spi-synquacer.c
17189
17190 SOCIONEXT SYNQUACER I2C DRIVER
17191 M:      Ard Biesheuvel <ardb@kernel.org>
17192 L:      linux-i2c@vger.kernel.org
17193 S:      Maintained
17194 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17195 F:      drivers/i2c/busses/i2c-synquacer.c
17196
17197 SOCIONEXT UNIPHIER SOUND DRIVER
17198 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17199 S:      Orphan
17200 F:      sound/soc/uniphier/
17201
17202 SOEKRIS NET48XX LED SUPPORT
17203 M:      Chris Boot <bootc@bootc.net>
17204 S:      Maintained
17205 F:      drivers/leds/leds-net48xx.c
17206
17207 SOFT-IWARP DRIVER (siw)
17208 M:      Bernard Metzler <bmt@zurich.ibm.com>
17209 L:      linux-rdma@vger.kernel.org
17210 S:      Supported
17211 F:      drivers/infiniband/sw/siw/
17212 F:      include/uapi/rdma/siw-abi.h
17213
17214 SOFT-ROCE DRIVER (rxe)
17215 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
17216 L:      linux-rdma@vger.kernel.org
17217 S:      Supported
17218 F:      drivers/infiniband/sw/rxe/
17219 F:      include/uapi/rdma/rdma_user_rxe.h
17220
17221 SOFTLOGIC 6x10 MPEG CODEC
17222 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17223 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17224 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17225 M:      Ismael Luceno <ismael@iodev.co.uk>
17226 L:      linux-media@vger.kernel.org
17227 S:      Supported
17228 F:      drivers/media/pci/solo6x10/
17229
17230 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17231 M:      James Morse <james.morse@arm.com>
17232 L:      linux-arm-kernel@lists.infradead.org
17233 S:      Maintained
17234 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
17235 F:      drivers/firmware/arm_sdei.c
17236 F:      include/linux/arm_sdei.h
17237 F:      include/uapi/linux/arm_sdei.h
17238
17239 SOFTWARE NODES
17240 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17241 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17242 L:      linux-acpi@vger.kernel.org
17243 S:      Maintained
17244 F:      drivers/base/swnode.c
17245
17246 SOFTWARE RAID (Multiple Disks) SUPPORT
17247 M:      Song Liu <song@kernel.org>
17248 L:      linux-raid@vger.kernel.org
17249 S:      Supported
17250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17251 F:      drivers/md/Kconfig
17252 F:      drivers/md/Makefile
17253 F:      drivers/md/md*
17254 F:      drivers/md/raid*
17255 F:      include/linux/raid/
17256 F:      include/uapi/linux/raid/
17257
17258 SOLIDRUN CLEARFOG SUPPORT
17259 M:      Russell King <linux@armlinux.org.uk>
17260 S:      Maintained
17261 F:      arch/arm/boot/dts/armada-388-clearfog*
17262 F:      arch/arm/boot/dts/armada-38x-solidrun-*
17263
17264 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17265 M:      Russell King <linux@armlinux.org.uk>
17266 S:      Maintained
17267 F:      arch/arm/boot/dts/imx6*-cubox-i*
17268 F:      arch/arm/boot/dts/imx6*-hummingboard*
17269 F:      arch/arm/boot/dts/imx6*-sr-*
17270
17271 SONIC NETWORK DRIVER
17272 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17273 L:      netdev@vger.kernel.org
17274 S:      Maintained
17275 F:      drivers/net/ethernet/natsemi/sonic.*
17276
17277 SONICS SILICON BACKPLANE DRIVER (SSB)
17278 M:      Michael Buesch <m@bues.ch>
17279 L:      linux-wireless@vger.kernel.org
17280 S:      Maintained
17281 F:      drivers/ssb/
17282 F:      include/linux/ssb/
17283
17284 SONY IMX208 SENSOR DRIVER
17285 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17286 L:      linux-media@vger.kernel.org
17287 S:      Maintained
17288 T:      git git://linuxtv.org/media_tree.git
17289 F:      drivers/media/i2c/imx208.c
17290
17291 SONY IMX214 SENSOR DRIVER
17292 M:      Ricardo Ribalda <ribalda@kernel.org>
17293 L:      linux-media@vger.kernel.org
17294 S:      Maintained
17295 T:      git git://linuxtv.org/media_tree.git
17296 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
17297 F:      drivers/media/i2c/imx214.c
17298
17299 SONY IMX219 SENSOR DRIVER
17300 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
17301 L:      linux-media@vger.kernel.org
17302 S:      Maintained
17303 T:      git git://linuxtv.org/media_tree.git
17304 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
17305 F:      drivers/media/i2c/imx219.c
17306
17307 SONY IMX258 SENSOR DRIVER
17308 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17309 L:      linux-media@vger.kernel.org
17310 S:      Maintained
17311 T:      git git://linuxtv.org/media_tree.git
17312 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
17313 F:      drivers/media/i2c/imx258.c
17314
17315 SONY IMX274 SENSOR DRIVER
17316 M:      Leon Luo <leonl@leopardimaging.com>
17317 L:      linux-media@vger.kernel.org
17318 S:      Maintained
17319 T:      git git://linuxtv.org/media_tree.git
17320 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
17321 F:      drivers/media/i2c/imx274.c
17322
17323 SONY IMX290 SENSOR DRIVER
17324 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17325 L:      linux-media@vger.kernel.org
17326 S:      Maintained
17327 T:      git git://linuxtv.org/media_tree.git
17328 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
17329 F:      drivers/media/i2c/imx290.c
17330
17331 SONY IMX319 SENSOR DRIVER
17332 M:      Bingbu Cao <bingbu.cao@intel.com>
17333 L:      linux-media@vger.kernel.org
17334 S:      Maintained
17335 T:      git git://linuxtv.org/media_tree.git
17336 F:      drivers/media/i2c/imx319.c
17337
17338 SONY IMX334 SENSOR DRIVER
17339 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17340 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17341 L:      linux-media@vger.kernel.org
17342 S:      Maintained
17343 T:      git git://linuxtv.org/media_tree.git
17344 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17345 F:      drivers/media/i2c/imx334.c
17346
17347 SONY IMX355 SENSOR DRIVER
17348 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
17349 L:      linux-media@vger.kernel.org
17350 S:      Maintained
17351 T:      git git://linuxtv.org/media_tree.git
17352 F:      drivers/media/i2c/imx355.c
17353
17354 SONY MEMORYSTICK SUBSYSTEM
17355 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17356 M:      Alex Dubov <oakad@yahoo.com>
17357 M:      Ulf Hansson <ulf.hansson@linaro.org>
17358 L:      linux-mmc@vger.kernel.org
17359 S:      Maintained
17360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17361 F:      drivers/memstick/
17362 F:      include/linux/memstick.h
17363
17364 SONY VAIO CONTROL DEVICE DRIVER
17365 M:      Mattia Dongili <malattia@linux.it>
17366 L:      platform-driver-x86@vger.kernel.org
17367 S:      Maintained
17368 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17369 F:      Documentation/admin-guide/laptops/sony-laptop.rst
17370 F:      drivers/char/sonypi.c
17371 F:      drivers/platform/x86/sony-laptop.c
17372 F:      include/linux/sony-laptop.h
17373
17374 SOUND
17375 M:      Jaroslav Kysela <perex@perex.cz>
17376 M:      Takashi Iwai <tiwai@suse.com>
17377 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17378 S:      Maintained
17379 W:      http://www.alsa-project.org/
17380 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
17381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17382 F:      Documentation/sound/
17383 F:      include/sound/
17384 F:      include/uapi/sound/
17385 F:      sound/
17386
17387 SOUND - COMPRESSED AUDIO
17388 M:      Vinod Koul <vkoul@kernel.org>
17389 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17390 S:      Supported
17391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17392 F:      Documentation/sound/designs/compress-offload.rst
17393 F:      include/sound/compress_driver.h
17394 F:      include/uapi/sound/compress_*
17395 F:      sound/core/compress_offload.c
17396 F:      sound/soc/soc-compress.c
17397
17398 SOUND - DMAENGINE HELPERS
17399 M:      Lars-Peter Clausen <lars@metafoo.de>
17400 S:      Supported
17401 F:      include/sound/dmaengine_pcm.h
17402 F:      sound/core/pcm_dmaengine.c
17403 F:      sound/soc/soc-generic-dmaengine-pcm.c
17404
17405 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17406 M:      Liam Girdwood <lgirdwood@gmail.com>
17407 M:      Mark Brown <broonie@kernel.org>
17408 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17409 S:      Supported
17410 W:      http://alsa-project.org/main/index.php/ASoC
17411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17412 F:      Documentation/devicetree/bindings/sound/
17413 F:      Documentation/sound/soc/
17414 F:      include/dt-bindings/sound/
17415 F:      include/sound/soc*
17416 F:      sound/soc/
17417
17418 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17419 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17420 M:      Liam Girdwood <lgirdwood@gmail.com>
17421 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17422 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
17423 M:      Daniel Baluta <daniel.baluta@nxp.com>
17424 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17425 S:      Supported
17426 W:      https://github.com/thesofproject/linux/
17427 F:      sound/soc/sof/
17428
17429 SOUNDWIRE SUBSYSTEM
17430 M:      Vinod Koul <vkoul@kernel.org>
17431 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
17432 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17433 R:      Sanyog Kale <sanyog.r.kale@intel.com>
17434 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17435 S:      Supported
17436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17437 F:      Documentation/driver-api/soundwire/
17438 F:      drivers/soundwire/
17439 F:      include/linux/soundwire/
17440
17441 SP2 MEDIA DRIVER
17442 M:      Olli Salonen <olli.salonen@iki.fi>
17443 L:      linux-media@vger.kernel.org
17444 S:      Maintained
17445 W:      https://linuxtv.org
17446 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17447 F:      drivers/media/dvb-frontends/sp2*
17448
17449 SPARC + UltraSPARC (sparc/sparc64)
17450 M:      "David S. Miller" <davem@davemloft.net>
17451 L:      sparclinux@vger.kernel.org
17452 S:      Maintained
17453 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
17454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17456 F:      arch/sparc/
17457 F:      drivers/sbus/
17458
17459 SPARC SERIAL DRIVERS
17460 M:      "David S. Miller" <davem@davemloft.net>
17461 L:      sparclinux@vger.kernel.org
17462 S:      Maintained
17463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17465 F:      drivers/tty/serial/suncore.c
17466 F:      drivers/tty/serial/sunhv.c
17467 F:      drivers/tty/serial/sunsab.c
17468 F:      drivers/tty/serial/sunsab.h
17469 F:      drivers/tty/serial/sunsu.c
17470 F:      drivers/tty/serial/sunzilog.c
17471 F:      drivers/tty/serial/sunzilog.h
17472 F:      drivers/tty/vcc.c
17473 F:      include/linux/sunserialcore.h
17474
17475 SPARSE CHECKER
17476 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17477 L:      linux-sparse@vger.kernel.org
17478 S:      Maintained
17479 W:      https://sparse.docs.kernel.org/
17480 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17481 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
17482 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17483 F:      include/linux/compiler.h
17484
17485 SPEAKUP CONSOLE SPEECH DRIVER
17486 M:      William Hubbs <w.d.hubbs@gmail.com>
17487 M:      Chris Brannon <chris@the-brannons.com>
17488 M:      Kirk Reiser <kirk@reisers.ca>
17489 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
17490 L:      speakup@linux-speakup.org
17491 S:      Odd Fixes
17492 W:      http://www.linux-speakup.org/
17493 W:      https://github.com/linux-speakup/speakup
17494 B:      https://github.com/linux-speakup/speakup/issues
17495 F:      drivers/accessibility/speakup/
17496
17497 SPEAR CLOCK FRAMEWORK SUPPORT
17498 M:      Viresh Kumar <vireshk@kernel.org>
17499 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17500 S:      Maintained
17501 W:      http://www.st.com/spear
17502 F:      drivers/clk/spear/
17503
17504 SPEAR PLATFORM SUPPORT
17505 M:      Viresh Kumar <vireshk@kernel.org>
17506 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
17507 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17508 S:      Maintained
17509 W:      http://www.st.com/spear
17510 F:      arch/arm/boot/dts/spear*
17511 F:      arch/arm/mach-spear/
17512
17513 SPI NOR SUBSYSTEM
17514 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
17515 R:      Michael Walle <michael@walle.cc>
17516 R:      Pratyush Yadav <p.yadav@ti.com>
17517 L:      linux-mtd@lists.infradead.org
17518 S:      Maintained
17519 W:      http://www.linux-mtd.infradead.org/
17520 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
17521 C:      irc://irc.oftc.net/mtd
17522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17523 F:      drivers/mtd/spi-nor/
17524 F:      include/linux/mtd/spi-nor.h
17525
17526 SPI SUBSYSTEM
17527 M:      Mark Brown <broonie@kernel.org>
17528 L:      linux-spi@vger.kernel.org
17529 S:      Maintained
17530 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
17531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17532 F:      Documentation/devicetree/bindings/spi/
17533 F:      Documentation/spi/
17534 F:      drivers/spi/
17535 F:      include/linux/spi/
17536 F:      include/uapi/linux/spi/
17537 F:      tools/spi/
17538
17539 SPIDERNET NETWORK DRIVER for CELL
17540 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
17541 M:      Geoff Levand <geoff@infradead.org>
17542 L:      netdev@vger.kernel.org
17543 L:      linuxppc-dev@lists.ozlabs.org
17544 S:      Maintained
17545 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17546 F:      drivers/net/ethernet/toshiba/spider_net*
17547
17548 SPMI SUBSYSTEM
17549 M:      Stephen Boyd <sboyd@kernel.org>
17550 L:      linux-kernel@vger.kernel.org
17551 S:      Maintained
17552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17553 F:      Documentation/devicetree/bindings/spmi/
17554 F:      drivers/spmi/
17555 F:      include/dt-bindings/spmi/spmi.h
17556 F:      include/linux/spmi.h
17557 F:      include/trace/events/spmi.h
17558
17559 SPU FILE SYSTEM
17560 M:      Jeremy Kerr <jk@ozlabs.org>
17561 L:      linuxppc-dev@lists.ozlabs.org
17562 S:      Supported
17563 W:      http://www.ibm.com/developerworks/power/cell/
17564 F:      Documentation/filesystems/spufs/spufs.rst
17565 F:      arch/powerpc/platforms/cell/spufs/
17566
17567 SQUASHFS FILE SYSTEM
17568 M:      Phillip Lougher <phillip@squashfs.org.uk>
17569 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
17570 S:      Maintained
17571 W:      http://squashfs.org.uk
17572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17573 F:      Documentation/filesystems/squashfs.rst
17574 F:      fs/squashfs/
17575
17576 SRM (Alpha) environment access
17577 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
17578 S:      Maintained
17579 F:      arch/alpha/kernel/srm_env.c
17580
17581 ST LSM6DSx IMU IIO DRIVER
17582 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
17583 L:      linux-iio@vger.kernel.org
17584 S:      Maintained
17585 W:      http://www.st.com/
17586 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17587 F:      drivers/iio/imu/st_lsm6dsx/
17588
17589 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17590 M:      Mickael Guene <mickael.guene@st.com>
17591 L:      linux-media@vger.kernel.org
17592 S:      Maintained
17593 T:      git git://linuxtv.org/media_tree.git
17594 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17595 F:      drivers/media/i2c/st-mipid02.c
17596
17597 ST STM32 I2C/SMBUS DRIVER
17598 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
17599 M:      Alain Volmat <alain.volmat@foss.st.com>
17600 L:      linux-i2c@vger.kernel.org
17601 S:      Maintained
17602 F:      drivers/i2c/busses/i2c-stm32*
17603
17604 ST STM32 SPI DRIVER
17605 M:      Alain Volmat <alain.volmat@foss.st.com>
17606 L:      linux-spi@vger.kernel.org
17607 S:      Maintained
17608 F:      drivers/spi/spi-stm32.c
17609
17610 ST STPDDC60 DRIVER
17611 M:      Daniel Nilsson <daniel.nilsson@flex.com>
17612 L:      linux-hwmon@vger.kernel.org
17613 S:      Maintained
17614 F:      Documentation/hwmon/stpddc60.rst
17615 F:      drivers/hwmon/pmbus/stpddc60.c
17616
17617 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
17618 M:      Song Qiang <songqiang1304521@gmail.com>
17619 L:      linux-iio@vger.kernel.org
17620 S:      Maintained
17621 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
17622 F:      drivers/iio/proximity/vl53l0x-i2c.c
17623
17624 STABLE BRANCH
17625 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17626 M:      Sasha Levin <sashal@kernel.org>
17627 L:      stable@vger.kernel.org
17628 S:      Supported
17629 F:      Documentation/process/stable-kernel-rules.rst
17630
17631 STAGING - ATOMISP DRIVER
17632 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17633 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
17634 L:      linux-media@vger.kernel.org
17635 S:      Maintained
17636 F:      drivers/staging/media/atomisp/
17637
17638 STAGING - FIELDBUS SUBSYSTEM
17639 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17640 S:      Maintained
17641 F:      drivers/staging/fieldbus/*
17642 F:      drivers/staging/fieldbus/Documentation/
17643
17644 STAGING - HMS ANYBUS-S BUS
17645 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17646 S:      Maintained
17647 F:      drivers/staging/fieldbus/anybuss/
17648
17649 STAGING - INDUSTRIAL IO
17650 M:      Jonathan Cameron <jic23@kernel.org>
17651 L:      linux-iio@vger.kernel.org
17652 S:      Odd Fixes
17653 F:      Documentation/devicetree/bindings/staging/iio/
17654 F:      drivers/staging/iio/
17655
17656 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
17657 M:      Marc Dietrich <marvin24@gmx.de>
17658 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
17659 L:      linux-tegra@vger.kernel.org
17660 S:      Maintained
17661 F:      drivers/staging/nvec/
17662
17663 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
17664 M:      Jens Frederich <jfrederich@gmail.com>
17665 M:      Daniel Drake <dsd@laptop.org>
17666 M:      Jon Nettleton <jon.nettleton@gmail.com>
17667 S:      Maintained
17668 W:      http://wiki.laptop.org/go/DCON
17669 F:      drivers/staging/olpc_dcon/
17670
17671 STAGING - REALTEK RTL8188EU DRIVERS
17672 M:      Larry Finger <Larry.Finger@lwfinger.net>
17673 S:      Odd Fixes
17674 F:      drivers/staging/rtl8188eu/
17675
17676 STAGING - REALTEK RTL8712U DRIVERS
17677 M:      Larry Finger <Larry.Finger@lwfinger.net>
17678 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
17679 S:      Odd Fixes
17680 F:      drivers/staging/rtl8712/
17681
17682 STAGING - SEPS525 LCD CONTROLLER DRIVERS
17683 M:      Michael Hennerich <michael.hennerich@analog.com>
17684 L:      linux-fbdev@vger.kernel.org
17685 S:      Supported
17686 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
17687 F:      drivers/staging/fbtft/fb_seps525.c
17688
17689 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
17690 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17691 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17692 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17693 L:      linux-fbdev@vger.kernel.org
17694 S:      Maintained
17695 F:      drivers/staging/sm750fb/
17696
17697 STAGING - VIA VT665X DRIVERS
17698 M:      Forest Bond <forest@alittletooquiet.net>
17699 S:      Odd Fixes
17700 F:      drivers/staging/vt665?/
17701
17702 STAGING SUBSYSTEM
17703 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17704 L:      linux-staging@lists.linux.dev
17705 S:      Supported
17706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
17707 F:      drivers/staging/
17708
17709 STARFIRE/DURALAN NETWORK DRIVER
17710 M:      Ion Badulescu <ionut@badula.org>
17711 S:      Odd Fixes
17712 F:      drivers/net/ethernet/adaptec/starfire*
17713
17714 STATIC BRANCH/CALL
17715 M:      Peter Zijlstra <peterz@infradead.org>
17716 M:      Josh Poimboeuf <jpoimboe@redhat.com>
17717 M:      Jason Baron <jbaron@akamai.com>
17718 R:      Steven Rostedt <rostedt@goodmis.org>
17719 R:      Ard Biesheuvel <ardb@kernel.org>
17720 S:      Supported
17721 F:      arch/*/include/asm/jump_label*.h
17722 F:      arch/*/include/asm/static_call*.h
17723 F:      arch/*/kernel/jump_label.c
17724 F:      arch/*/kernel/static_call.c
17725 F:      include/linux/jump_label*.h
17726 F:      include/linux/static_call*.h
17727 F:      kernel/jump_label.c
17728 F:      kernel/static_call.c
17729
17730 STI AUDIO (ASoC) DRIVERS
17731 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17732 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17733 S:      Maintained
17734 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
17735 F:      sound/soc/sti/
17736
17737 STI CEC DRIVER
17738 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
17739 S:      Maintained
17740 F:      Documentation/devicetree/bindings/media/stih-cec.txt
17741 F:      drivers/media/cec/platform/sti/
17742
17743 STK1160 USB VIDEO CAPTURE DRIVER
17744 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17745 L:      linux-media@vger.kernel.org
17746 S:      Maintained
17747 T:      git git://linuxtv.org/media_tree.git
17748 F:      drivers/media/usb/stk1160/
17749
17750 STM32 AUDIO (ASoC) DRIVERS
17751 M:      Olivier Moysan <olivier.moysan@foss.st.com>
17752 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17753 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17754 S:      Maintained
17755 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-*.yaml
17756 F:      sound/soc/stm/
17757
17758 STM32 TIMER/LPTIMER DRIVERS
17759 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
17760 S:      Maintained
17761 F:      Documentation/ABI/testing/*timer-stm32
17762 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
17763 F:      drivers/*/stm32-*timer*
17764 F:      drivers/pwm/pwm-stm32*
17765 F:      include/linux/*/stm32-*tim*
17766
17767 STMMAC ETHERNET DRIVER
17768 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
17769 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
17770 M:      Jose Abreu <joabreu@synopsys.com>
17771 L:      netdev@vger.kernel.org
17772 S:      Supported
17773 W:      http://www.stlinux.com
17774 F:      Documentation/networking/device_drivers/ethernet/stmicro/
17775 F:      drivers/net/ethernet/stmicro/stmmac/
17776
17777 SUN3/3X
17778 M:      Sam Creasey <sammy@sammy.net>
17779 S:      Maintained
17780 W:      http://sammy.net/sun3/
17781 F:      arch/m68k/include/asm/sun3*
17782 F:      arch/m68k/kernel/*sun3*
17783 F:      arch/m68k/sun3*/
17784 F:      drivers/net/ethernet/i825xx/sun3*
17785
17786 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
17787 M:      Hans de Goede <hdegoede@redhat.com>
17788 L:      linux-input@vger.kernel.org
17789 S:      Maintained
17790 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
17791 F:      drivers/input/keyboard/sun4i-lradc-keys.c
17792
17793 SUNDANCE NETWORK DRIVER
17794 M:      Denis Kirjanov <kda@linux-powerpc.org>
17795 L:      netdev@vger.kernel.org
17796 S:      Maintained
17797 F:      drivers/net/ethernet/dlink/sundance.c
17798
17799 SUPERH
17800 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
17801 M:      Rich Felker <dalias@libc.org>
17802 L:      linux-sh@vger.kernel.org
17803 S:      Maintained
17804 Q:      http://patchwork.kernel.org/project/linux-sh/list/
17805 F:      Documentation/sh/
17806 F:      arch/sh/
17807 F:      drivers/sh/
17808
17809 SUSPEND TO RAM
17810 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
17811 M:      Len Brown <len.brown@intel.com>
17812 M:      Pavel Machek <pavel@ucw.cz>
17813 L:      linux-pm@vger.kernel.org
17814 S:      Supported
17815 B:      https://bugzilla.kernel.org
17816 F:      Documentation/power/
17817 F:      arch/x86/kernel/acpi/
17818 F:      drivers/base/power/
17819 F:      include/linux/freezer.h
17820 F:      include/linux/pm.h
17821 F:      include/linux/suspend.h
17822 F:      kernel/power/
17823
17824 SVGA HANDLING
17825 M:      Martin Mares <mj@ucw.cz>
17826 L:      linux-video@atrey.karlin.mff.cuni.cz
17827 S:      Maintained
17828 F:      Documentation/admin-guide/svga.rst
17829 F:      arch/x86/boot/video*
17830
17831 SWIOTLB SUBSYSTEM
17832 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17833 L:      iommu@lists.linux-foundation.org
17834 S:      Supported
17835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
17836 F:      arch/*/kernel/pci-swiotlb.c
17837 F:      include/linux/swiotlb.h
17838 F:      kernel/dma/swiotlb.c
17839
17840 SWITCHDEV
17841 M:      Jiri Pirko <jiri@resnulli.us>
17842 M:      Ivan Vecera <ivecera@redhat.com>
17843 L:      netdev@vger.kernel.org
17844 S:      Supported
17845 F:      include/net/switchdev.h
17846 F:      net/switchdev/
17847
17848 SY8106A REGULATOR DRIVER
17849 M:      Icenowy Zheng <icenowy@aosc.io>
17850 S:      Maintained
17851 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
17852 F:      drivers/regulator/sy8106a-regulator.c
17853
17854 SYNC FILE FRAMEWORK
17855 M:      Sumit Semwal <sumit.semwal@linaro.org>
17856 R:      Gustavo Padovan <gustavo@padovan.org>
17857 L:      linux-media@vger.kernel.org
17858 L:      dri-devel@lists.freedesktop.org
17859 S:      Maintained
17860 T:      git git://anongit.freedesktop.org/drm/drm-misc
17861 F:      Documentation/driver-api/sync_file.rst
17862 F:      drivers/dma-buf/dma-fence*
17863 F:      drivers/dma-buf/sw_sync.c
17864 F:      drivers/dma-buf/sync_*
17865 F:      include/linux/sync_file.h
17866 F:      include/uapi/linux/sync_file.h
17867
17868 SYNOPSYS ARC ARCHITECTURE
17869 M:      Vineet Gupta <vgupta@kernel.org>
17870 L:      linux-snps-arc@lists.infradead.org
17871 S:      Supported
17872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
17873 F:      Documentation/devicetree/bindings/arc/*
17874 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
17875 F:      arch/arc/
17876 F:      drivers/clocksource/arc_timer.c
17877 F:      drivers/tty/serial/arc_uart.c
17878
17879 SYNOPSYS ARC HSDK SDP pll clock driver
17880 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17881 S:      Supported
17882 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
17883 F:      drivers/clk/clk-hsdk-pll.c
17884
17885 SYNOPSYS ARC SDP clock driver
17886 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17887 S:      Supported
17888 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
17889 F:      drivers/clk/axs10x/*
17890
17891 SYNOPSYS ARC SDP platform support
17892 M:      Alexey Brodkin <abrodkin@synopsys.com>
17893 S:      Supported
17894 F:      Documentation/devicetree/bindings/arc/axs10*
17895 F:      arch/arc/boot/dts/ax*
17896 F:      arch/arc/plat-axs10x
17897
17898 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
17899 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17900 S:      Supported
17901 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
17902 F:      drivers/reset/reset-axs10x.c
17903
17904 SYNOPSYS CREG GPIO DRIVER
17905 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17906 S:      Maintained
17907 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
17908 F:      drivers/gpio/gpio-creg-snps.c
17909
17910 SYNOPSYS DESIGNWARE 8250 UART DRIVER
17911 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17912 S:      Maintained
17913 F:      drivers/tty/serial/8250/8250_dw.c
17914 F:      drivers/tty/serial/8250/8250_dwlib.*
17915 F:      drivers/tty/serial/8250/8250_lpss.c
17916
17917 SYNOPSYS DESIGNWARE APB GPIO DRIVER
17918 M:      Hoan Tran <hoan@os.amperecomputing.com>
17919 M:      Serge Semin <fancer.lancer@gmail.com>
17920 L:      linux-gpio@vger.kernel.org
17921 S:      Maintained
17922 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
17923 F:      drivers/gpio/gpio-dwapb.c
17924
17925 SYNOPSYS DESIGNWARE APB SSI DRIVER
17926 M:      Serge Semin <fancer.lancer@gmail.com>
17927 L:      linux-spi@vger.kernel.org
17928 S:      Supported
17929 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
17930 F:      drivers/spi/spi-dw*
17931
17932 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
17933 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17934 S:      Maintained
17935 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
17936 F:      drivers/dma/dw-axi-dmac/
17937
17938 SYNOPSYS DESIGNWARE DMAC DRIVER
17939 M:      Viresh Kumar <vireshk@kernel.org>
17940 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17941 S:      Maintained
17942 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
17943 F:      drivers/dma/dw/
17944 F:      include/dt-bindings/dma/dw-dmac.h
17945 F:      include/linux/dma/dw.h
17946 F:      include/linux/platform_data/dma-dw.h
17947
17948 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
17949 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17950 L:      netdev@vger.kernel.org
17951 S:      Supported
17952 F:      drivers/net/ethernet/synopsys/
17953
17954 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
17955 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17956 L:      netdev@vger.kernel.org
17957 S:      Supported
17958 F:      drivers/net/pcs/pcs-xpcs.c
17959 F:      drivers/net/pcs/pcs-xpcs.h
17960 F:      include/linux/pcs/pcs-xpcs.h
17961
17962 SYNOPSYS DESIGNWARE I2C DRIVER
17963 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
17964 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17965 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
17966 L:      linux-i2c@vger.kernel.org
17967 S:      Maintained
17968 F:      drivers/i2c/busses/i2c-designware-*
17969
17970 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
17971 M:      Jaehoon Chung <jh80.chung@samsung.com>
17972 L:      linux-mmc@vger.kernel.org
17973 S:      Maintained
17974 F:      drivers/mmc/host/dw_mmc*
17975
17976 SYNOPSYS HSDK RESET CONTROLLER DRIVER
17977 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17978 S:      Supported
17979 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
17980 F:      drivers/reset/reset-hsdk.c
17981 F:      include/dt-bindings/reset/snps,hsdk-reset.h
17982
17983 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
17984 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
17985 M:      Manjunath M B <manjumb@synopsys.com>
17986 L:      linux-mmc@vger.kernel.org
17987 S:      Maintained
17988 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
17989
17990 SYSTEM CONFIGURATION (SYSCON)
17991 M:      Lee Jones <lee.jones@linaro.org>
17992 M:      Arnd Bergmann <arnd@arndb.de>
17993 S:      Supported
17994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
17995 F:      drivers/mfd/syscon.c
17996
17997 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
17998 M:      Sudeep Holla <sudeep.holla@arm.com>
17999 R:      Cristian Marussi <cristian.marussi@arm.com>
18000 L:      linux-arm-kernel@lists.infradead.org
18001 S:      Maintained
18002 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
18003 F:      drivers/clk/clk-sc[mp]i.c
18004 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
18005 F:      drivers/firmware/arm_scmi/
18006 F:      drivers/firmware/arm_scpi.c
18007 F:      drivers/regulator/scmi-regulator.c
18008 F:      drivers/reset/reset-scmi.c
18009 F:      include/linux/sc[mp]i_protocol.h
18010 F:      include/trace/events/scmi.h
18011
18012 SYSTEM RESET/SHUTDOWN DRIVERS
18013 M:      Sebastian Reichel <sre@kernel.org>
18014 L:      linux-pm@vger.kernel.org
18015 S:      Maintained
18016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
18017 F:      Documentation/devicetree/bindings/power/reset/
18018 F:      drivers/power/reset/
18019
18020 SYSTEM TRACE MODULE CLASS
18021 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
18022 S:      Maintained
18023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
18024 F:      Documentation/trace/stm.rst
18025 F:      drivers/hwtracing/stm/
18026 F:      include/linux/stm.h
18027 F:      include/uapi/linux/stm.h
18028
18029 SYSTEM76 ACPI DRIVER
18030 M:      Jeremy Soller <jeremy@system76.com>
18031 M:      System76 Product Development <productdev@system76.com>
18032 L:      platform-driver-x86@vger.kernel.org
18033 S:      Maintained
18034 F:      drivers/platform/x86/system76_acpi.c
18035
18036 SYSV FILESYSTEM
18037 M:      Christoph Hellwig <hch@infradead.org>
18038 S:      Maintained
18039 F:      Documentation/filesystems/sysv-fs.rst
18040 F:      fs/sysv/
18041 F:      include/linux/sysv_fs.h
18042
18043 TASKSTATS STATISTICS INTERFACE
18044 M:      Balbir Singh <bsingharora@gmail.com>
18045 S:      Maintained
18046 F:      Documentation/accounting/taskstats*
18047 F:      include/linux/taskstats*
18048 F:      kernel/taskstats.c
18049
18050 TC subsystem
18051 M:      Jamal Hadi Salim <jhs@mojatatu.com>
18052 M:      Cong Wang <xiyou.wangcong@gmail.com>
18053 M:      Jiri Pirko <jiri@resnulli.us>
18054 L:      netdev@vger.kernel.org
18055 S:      Maintained
18056 F:      include/net/pkt_cls.h
18057 F:      include/net/pkt_sched.h
18058 F:      include/net/tc_act/
18059 F:      include/uapi/linux/pkt_cls.h
18060 F:      include/uapi/linux/pkt_sched.h
18061 F:      include/uapi/linux/tc_act/
18062 F:      include/uapi/linux/tc_ematch/
18063 F:      net/sched/
18064
18065 TC90522 MEDIA DRIVER
18066 M:      Akihiro Tsukada <tskd08@gmail.com>
18067 L:      linux-media@vger.kernel.org
18068 S:      Odd Fixes
18069 F:      drivers/media/dvb-frontends/tc90522*
18070
18071 TCP LOW PRIORITY MODULE
18072 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
18073 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
18074 S:      Maintained
18075 W:      http://tcp-lp-mod.sourceforge.net/
18076 F:      net/ipv4/tcp_lp.c
18077
18078 TDA10071 MEDIA DRIVER
18079 M:      Antti Palosaari <crope@iki.fi>
18080 L:      linux-media@vger.kernel.org
18081 S:      Maintained
18082 W:      https://linuxtv.org
18083 W:      http://palosaari.fi/linux/
18084 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18085 T:      git git://linuxtv.org/anttip/media_tree.git
18086 F:      drivers/media/dvb-frontends/tda10071*
18087
18088 TDA18212 MEDIA DRIVER
18089 M:      Antti Palosaari <crope@iki.fi>
18090 L:      linux-media@vger.kernel.org
18091 S:      Maintained
18092 W:      https://linuxtv.org
18093 W:      http://palosaari.fi/linux/
18094 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18095 T:      git git://linuxtv.org/anttip/media_tree.git
18096 F:      drivers/media/tuners/tda18212*
18097
18098 TDA18218 MEDIA DRIVER
18099 M:      Antti Palosaari <crope@iki.fi>
18100 L:      linux-media@vger.kernel.org
18101 S:      Maintained
18102 W:      https://linuxtv.org
18103 W:      http://palosaari.fi/linux/
18104 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18105 T:      git git://linuxtv.org/anttip/media_tree.git
18106 F:      drivers/media/tuners/tda18218*
18107
18108 TDA18250 MEDIA DRIVER
18109 M:      Olli Salonen <olli.salonen@iki.fi>
18110 L:      linux-media@vger.kernel.org
18111 S:      Maintained
18112 W:      https://linuxtv.org
18113 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18114 T:      git git://linuxtv.org/media_tree.git
18115 F:      drivers/media/tuners/tda18250*
18116
18117 TDA18271 MEDIA DRIVER
18118 M:      Michael Krufky <mkrufky@linuxtv.org>
18119 L:      linux-media@vger.kernel.org
18120 S:      Maintained
18121 W:      https://linuxtv.org
18122 W:      http://github.com/mkrufky
18123 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18124 T:      git git://linuxtv.org/mkrufky/tuners.git
18125 F:      drivers/media/tuners/tda18271*
18126
18127 TDA1997x MEDIA DRIVER
18128 M:      Tim Harvey <tharvey@gateworks.com>
18129 L:      linux-media@vger.kernel.org
18130 S:      Maintained
18131 W:      https://linuxtv.org
18132 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18133 F:      drivers/media/i2c/tda1997x.*
18134
18135 TDA827x MEDIA DRIVER
18136 M:      Michael Krufky <mkrufky@linuxtv.org>
18137 L:      linux-media@vger.kernel.org
18138 S:      Maintained
18139 W:      https://linuxtv.org
18140 W:      http://github.com/mkrufky
18141 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18142 T:      git git://linuxtv.org/mkrufky/tuners.git
18143 F:      drivers/media/tuners/tda8290.*
18144
18145 TDA8290 MEDIA DRIVER
18146 M:      Michael Krufky <mkrufky@linuxtv.org>
18147 L:      linux-media@vger.kernel.org
18148 S:      Maintained
18149 W:      https://linuxtv.org
18150 W:      http://github.com/mkrufky
18151 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18152 T:      git git://linuxtv.org/mkrufky/tuners.git
18153 F:      drivers/media/tuners/tda8290.*
18154
18155 TDA9840 MEDIA DRIVER
18156 M:      Hans Verkuil <hverkuil@xs4all.nl>
18157 L:      linux-media@vger.kernel.org
18158 S:      Maintained
18159 W:      https://linuxtv.org
18160 T:      git git://linuxtv.org/media_tree.git
18161 F:      drivers/media/i2c/tda9840*
18162
18163 TEA5761 TUNER DRIVER
18164 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18165 L:      linux-media@vger.kernel.org
18166 S:      Odd fixes
18167 W:      https://linuxtv.org
18168 T:      git git://linuxtv.org/media_tree.git
18169 F:      drivers/media/tuners/tea5761.*
18170
18171 TEA5767 TUNER DRIVER
18172 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18173 L:      linux-media@vger.kernel.org
18174 S:      Maintained
18175 W:      https://linuxtv.org
18176 T:      git git://linuxtv.org/media_tree.git
18177 F:      drivers/media/tuners/tea5767.*
18178
18179 TEA6415C MEDIA DRIVER
18180 M:      Hans Verkuil <hverkuil@xs4all.nl>
18181 L:      linux-media@vger.kernel.org
18182 S:      Maintained
18183 W:      https://linuxtv.org
18184 T:      git git://linuxtv.org/media_tree.git
18185 F:      drivers/media/i2c/tea6415c*
18186
18187 TEA6420 MEDIA DRIVER
18188 M:      Hans Verkuil <hverkuil@xs4all.nl>
18189 L:      linux-media@vger.kernel.org
18190 S:      Maintained
18191 W:      https://linuxtv.org
18192 T:      git git://linuxtv.org/media_tree.git
18193 F:      drivers/media/i2c/tea6420*
18194
18195 TEAM DRIVER
18196 M:      Jiri Pirko <jiri@resnulli.us>
18197 L:      netdev@vger.kernel.org
18198 S:      Supported
18199 F:      drivers/net/team/
18200 F:      include/linux/if_team.h
18201 F:      include/uapi/linux/if_team.h
18202
18203 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18204 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
18205 S:      Maintained
18206 F:      arch/x86/platform/ts5500/
18207
18208 TECHNOTREND USB IR RECEIVER
18209 M:      Sean Young <sean@mess.org>
18210 L:      linux-media@vger.kernel.org
18211 S:      Maintained
18212 F:      drivers/media/rc/ttusbir.c
18213
18214 TECHWELL TW9910 VIDEO DECODER
18215 L:      linux-media@vger.kernel.org
18216 S:      Orphan
18217 F:      drivers/media/i2c/tw9910.c
18218 F:      include/media/i2c/tw9910.h
18219
18220 TEE SUBSYSTEM
18221 M:      Jens Wiklander <jens.wiklander@linaro.org>
18222 R:      Sumit Garg <sumit.garg@linaro.org>
18223 L:      op-tee@lists.trustedfirmware.org
18224 S:      Maintained
18225 F:      Documentation/staging/tee.rst
18226 F:      drivers/tee/
18227 F:      include/linux/tee_drv.h
18228 F:      include/uapi/linux/tee.h
18229
18230 TEGRA ARCHITECTURE SUPPORT
18231 M:      Thierry Reding <thierry.reding@gmail.com>
18232 M:      Jonathan Hunter <jonathanh@nvidia.com>
18233 L:      linux-tegra@vger.kernel.org
18234 S:      Supported
18235 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
18236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18237 N:      [^a-z]tegra
18238
18239 TEGRA CLOCK DRIVER
18240 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
18241 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
18242 S:      Supported
18243 F:      drivers/clk/tegra/
18244
18245 TEGRA DMA DRIVERS
18246 M:      Laxman Dewangan <ldewangan@nvidia.com>
18247 M:      Jon Hunter <jonathanh@nvidia.com>
18248 S:      Supported
18249 F:      drivers/dma/tegra*
18250
18251 TEGRA I2C DRIVER
18252 M:      Laxman Dewangan <ldewangan@nvidia.com>
18253 R:      Dmitry Osipenko <digetx@gmail.com>
18254 S:      Supported
18255 F:      drivers/i2c/busses/i2c-tegra.c
18256
18257 TEGRA IOMMU DRIVERS
18258 M:      Thierry Reding <thierry.reding@gmail.com>
18259 R:      Krishna Reddy <vdumpa@nvidia.com>
18260 L:      linux-tegra@vger.kernel.org
18261 S:      Supported
18262 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18263 F:      drivers/iommu/tegra*
18264
18265 TEGRA KBC DRIVER
18266 M:      Laxman Dewangan <ldewangan@nvidia.com>
18267 S:      Supported
18268 F:      drivers/input/keyboard/tegra-kbc.c
18269
18270 TEGRA NAND DRIVER
18271 M:      Stefan Agner <stefan@agner.ch>
18272 M:      Lucas Stach <dev@lynxeye.de>
18273 S:      Maintained
18274 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18275 F:      drivers/mtd/nand/raw/tegra_nand.c
18276
18277 TEGRA PWM DRIVER
18278 M:      Thierry Reding <thierry.reding@gmail.com>
18279 S:      Supported
18280 F:      drivers/pwm/pwm-tegra.c
18281
18282 TEGRA SERIAL DRIVER
18283 M:      Laxman Dewangan <ldewangan@nvidia.com>
18284 S:      Supported
18285 F:      drivers/tty/serial/serial-tegra.c
18286
18287 TEGRA SPI DRIVER
18288 M:      Laxman Dewangan <ldewangan@nvidia.com>
18289 S:      Supported
18290 F:      drivers/spi/spi-tegra*
18291
18292 TEGRA QUAD SPI DRIVER
18293 M:      Thierry Reding <thierry.reding@gmail.com>
18294 M:      Jonathan Hunter <jonathanh@nvidia.com>
18295 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18296 L:      linux-tegra@vger.kernel.org
18297 S:      Maintained
18298 F:      drivers/spi/spi-tegra210-quad.c
18299
18300 TEGRA VIDEO DRIVER
18301 M:      Thierry Reding <thierry.reding@gmail.com>
18302 M:      Jonathan Hunter <jonathanh@nvidia.com>
18303 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18304 L:      linux-media@vger.kernel.org
18305 L:      linux-tegra@vger.kernel.org
18306 S:      Maintained
18307 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
18308 F:      drivers/staging/media/tegra-video/
18309
18310 TEGRA XUSB PADCTL DRIVER
18311 M:      JC Kuo <jckuo@nvidia.com>
18312 S:      Supported
18313 F:      drivers/phy/tegra/xusb*
18314
18315 TEHUTI ETHERNET DRIVER
18316 M:      Andy Gospodarek <andy@greyhouse.net>
18317 L:      netdev@vger.kernel.org
18318 S:      Supported
18319 F:      drivers/net/ethernet/tehuti/*
18320
18321 TELECOM CLOCK DRIVER FOR MCPL0010
18322 M:      Mark Gross <mark.gross@intel.com>
18323 S:      Supported
18324 F:      drivers/char/tlclk.c
18325
18326 TEMPO SEMICONDUCTOR DRIVERS
18327 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
18328 S:      Maintained
18329 F:      Documentation/devicetree/bindings/sound/tscs*.txt
18330 F:      sound/soc/codecs/tscs*.c
18331 F:      sound/soc/codecs/tscs*.h
18332
18333 TENSILICA XTENSA PORT (xtensa)
18334 M:      Chris Zankel <chris@zankel.net>
18335 M:      Max Filippov <jcmvbkbc@gmail.com>
18336 L:      linux-xtensa@linux-xtensa.org
18337 S:      Maintained
18338 T:      git git://github.com/czankel/xtensa-linux.git
18339 F:      arch/xtensa/
18340 F:      drivers/irqchip/irq-xtensa-*
18341
18342 TEXAS INSTRUMENTS ASoC DRIVERS
18343 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18344 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18345 S:      Maintained
18346 F:      sound/soc/ti/
18347
18348 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18349 M:      Ricardo Ribalda <ribalda@kernel.org>
18350 L:      linux-iio@vger.kernel.org
18351 S:      Supported
18352 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18353 F:      drivers/iio/dac/ti-dac7612.c
18354
18355 TEXAS INSTRUMENTS DMA DRIVERS
18356 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18357 L:      dmaengine@vger.kernel.org
18358 S:      Maintained
18359 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18360 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
18361 F:      Documentation/devicetree/bindings/dma/ti/
18362 F:      drivers/dma/ti/
18363 X:      drivers/dma/ti/cppi41.c
18364 F:      include/linux/dma/k3-udma-glue.h
18365 F:      include/linux/dma/ti-cppi5.h
18366 F:      include/linux/dma/k3-psil.h
18367
18368 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18369 M:      Nishanth Menon <nm@ti.com>
18370 M:      Tero Kristo <kristo@kernel.org>
18371 M:      Santosh Shilimkar <ssantosh@kernel.org>
18372 L:      linux-arm-kernel@lists.infradead.org
18373 S:      Maintained
18374 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18375 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
18376 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
18377 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18378 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18379 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
18380 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
18381 F:      drivers/clk/keystone/sci-clk.c
18382 F:      drivers/firmware/ti_sci*
18383 F:      drivers/irqchip/irq-ti-sci-inta.c
18384 F:      drivers/irqchip/irq-ti-sci-intr.c
18385 F:      drivers/reset/reset-ti-sci.c
18386 F:      drivers/soc/ti/ti_sci_inta_msi.c
18387 F:      drivers/soc/ti/ti_sci_pm_domains.c
18388 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
18389 F:      include/linux/soc/ti/ti_sci_inta_msi.h
18390 F:      include/linux/soc/ti/ti_sci_protocol.h
18391
18392 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18393 M:      Robert Marko <robert.marko@sartura.hr>
18394 M:      Luka Perkov <luka.perkov@sartura.hr>
18395 L:      linux-hwmon@vger.kernel.org
18396 S:      Maintained
18397 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18398 F:      Documentation/hwmon/tps23861.rst
18399 F:      drivers/hwmon/tps23861.c
18400
18401 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
18402 M:      Puranjay Mohan <puranjay12@gmail.com>
18403 L:      linux-iio@vger.kernel.org
18404 S:      Supported
18405 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
18406 F:      drivers/iio/temperature/tmp117.c
18407
18408 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18409 M:      Hans Verkuil <hverkuil@xs4all.nl>
18410 L:      linux-media@vger.kernel.org
18411 S:      Maintained
18412 W:      https://linuxtv.org
18413 T:      git git://linuxtv.org/media_tree.git
18414 F:      drivers/media/radio/radio-raremono.c
18415
18416 THERMAL
18417 M:      Zhang Rui <rui.zhang@intel.com>
18418 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18419 R:      Amit Kucheria <amitk@kernel.org>
18420 L:      linux-pm@vger.kernel.org
18421 S:      Supported
18422 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
18424 F:      Documentation/devicetree/bindings/thermal/
18425 F:      drivers/thermal/
18426 F:      include/linux/cpu_cooling.h
18427 F:      include/linux/thermal.h
18428 F:      include/uapi/linux/thermal.h
18429
18430 THERMAL DRIVER FOR AMLOGIC SOCS
18431 M:      Guillaume La Roque <glaroque@baylibre.com>
18432 L:      linux-pm@vger.kernel.org
18433 L:      linux-amlogic@lists.infradead.org
18434 S:      Supported
18435 W:      http://linux-meson.com/
18436 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18437 F:      drivers/thermal/amlogic_thermal.c
18438
18439 THERMAL/CPU_COOLING
18440 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
18441 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18442 M:      Viresh Kumar <viresh.kumar@linaro.org>
18443 R:      Lukasz Luba <lukasz.luba@arm.com>
18444 L:      linux-pm@vger.kernel.org
18445 S:      Supported
18446 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
18447 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
18448 F:      drivers/thermal/cpufreq_cooling.c
18449 F:      drivers/thermal/cpuidle_cooling.c
18450 F:      include/linux/cpu_cooling.h
18451
18452 THERMAL/POWER_ALLOCATOR
18453 M:      Lukasz Luba <lukasz.luba@arm.com>
18454 L:      linux-pm@vger.kernel.org
18455 S:      Maintained
18456 F:      Documentation/driver-api/thermal/power_allocator.rst
18457 F:      drivers/thermal/gov_power_allocator.c
18458 F:      include/trace/events/thermal_power_allocator.h
18459
18460 THINKPAD ACPI EXTRAS DRIVER
18461 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18462 L:      ibm-acpi-devel@lists.sourceforge.net
18463 L:      platform-driver-x86@vger.kernel.org
18464 S:      Maintained
18465 W:      http://ibm-acpi.sourceforge.net
18466 W:      http://thinkwiki.org/wiki/Ibm-acpi
18467 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18468 F:      drivers/platform/x86/thinkpad_acpi.c
18469
18470 THINKPAD LMI DRIVER
18471 M:      Mark Pearson <markpearson@lenovo.com>
18472 L:      platform-driver-x86@vger.kernel.org
18473 S:      Maintained
18474 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
18475 F:      drivers/platform/x86/think-lmi.?
18476
18477 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18478 M:      Isaac Hazan <isaac.hazan@intel.com>
18479 L:      linux-usb@vger.kernel.org
18480 S:      Maintained
18481 F:      drivers/thunderbolt/dma_test.c
18482
18483 THUNDERBOLT DRIVER
18484 M:      Andreas Noever <andreas.noever@gmail.com>
18485 M:      Michael Jamet <michael.jamet@intel.com>
18486 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18487 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18488 L:      linux-usb@vger.kernel.org
18489 S:      Maintained
18490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18491 F:      Documentation/admin-guide/thunderbolt.rst
18492 F:      drivers/thunderbolt/
18493 F:      include/linux/thunderbolt.h
18494
18495 THUNDERBOLT NETWORK DRIVER
18496 M:      Michael Jamet <michael.jamet@intel.com>
18497 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18498 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18499 L:      netdev@vger.kernel.org
18500 S:      Maintained
18501 F:      drivers/net/thunderbolt.c
18502
18503 THUNDERX GPIO DRIVER
18504 M:      Robert Richter <rric@kernel.org>
18505 S:      Odd Fixes
18506 F:      drivers/gpio/gpio-thunderx.c
18507
18508 TI ADS131E0X ADC SERIES DRIVER
18509 M:      Tomislav Denis <tomislav.denis@avl.com>
18510 L:      linux-iio@vger.kernel.org
18511 S:      Maintained
18512 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18513 F:      drivers/iio/adc/ti-ads131e08.c
18514
18515 TI AM437X VPFE DRIVER
18516 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18517 L:      linux-media@vger.kernel.org
18518 S:      Maintained
18519 W:      https://linuxtv.org
18520 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18521 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18522 F:      drivers/media/platform/am437x/
18523
18524 TI BANDGAP AND THERMAL DRIVER
18525 M:      Eduardo Valentin <edubezval@gmail.com>
18526 M:      Keerthy <j-keerthy@ti.com>
18527 L:      linux-pm@vger.kernel.org
18528 L:      linux-omap@vger.kernel.org
18529 S:      Maintained
18530 F:      drivers/thermal/ti-soc-thermal/
18531
18532 TI BQ27XXX POWER SUPPLY DRIVER
18533 F:      drivers/power/supply/bq27xxx_battery.c
18534 F:      drivers/power/supply/bq27xxx_battery_i2c.c
18535 F:      include/linux/power/bq27xxx_battery.h
18536
18537 TI CDCE706 CLOCK DRIVER
18538 M:      Max Filippov <jcmvbkbc@gmail.com>
18539 S:      Maintained
18540 F:      drivers/clk/clk-cdce706.c
18541
18542 TI CLOCK DRIVER
18543 M:      Tero Kristo <kristo@kernel.org>
18544 L:      linux-omap@vger.kernel.org
18545 S:      Odd Fixes
18546 F:      drivers/clk/ti/
18547 F:      include/linux/clk/ti.h
18548
18549 TI DAVINCI MACHINE SUPPORT
18550 M:      Sekhar Nori <nsekhar@ti.com>
18551 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
18552 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18553 S:      Supported
18554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18555 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18556 F:      arch/arm/boot/dts/da850*
18557 F:      arch/arm/mach-davinci/
18558 F:      drivers/i2c/busses/i2c-davinci.c
18559
18560 TI DAVINCI SERIES CLOCK DRIVER
18561 M:      David Lechner <david@lechnology.com>
18562 R:      Sekhar Nori <nsekhar@ti.com>
18563 S:      Maintained
18564 F:      Documentation/devicetree/bindings/clock/ti/davinci/
18565 F:      drivers/clk/davinci/
18566
18567 TI DAVINCI SERIES GPIO DRIVER
18568 M:      Keerthy <j-keerthy@ti.com>
18569 L:      linux-gpio@vger.kernel.org
18570 S:      Maintained
18571 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
18572 F:      drivers/gpio/gpio-davinci.c
18573
18574 TI DAVINCI SERIES MEDIA DRIVER
18575 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18576 L:      linux-media@vger.kernel.org
18577 S:      Maintained
18578 W:      https://linuxtv.org
18579 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18580 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18581 F:      drivers/media/platform/davinci/
18582 F:      include/media/davinci/
18583
18584 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18585 R:      David Lechner <david@lechnology.com>
18586 L:      linux-iio@vger.kernel.org
18587 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
18588 F:      drivers/counter/ti-eqep.c
18589
18590 TI ETHERNET SWITCH DRIVER (CPSW)
18591 R:      Grygorii Strashko <grygorii.strashko@ti.com>
18592 L:      linux-omap@vger.kernel.org
18593 L:      netdev@vger.kernel.org
18594 S:      Maintained
18595 F:      drivers/net/ethernet/ti/cpsw*
18596 F:      drivers/net/ethernet/ti/davinci*
18597
18598 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18599 M:      Alex Dubov <oakad@yahoo.com>
18600 S:      Maintained
18601 W:      http://tifmxx.berlios.de/
18602 F:      drivers/memstick/host/tifm_ms.c
18603 F:      drivers/misc/tifm*
18604 F:      drivers/mmc/host/tifm_sd.c
18605 F:      include/linux/tifm.h
18606
18607 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
18608 M:      Santosh Shilimkar <ssantosh@kernel.org>
18609 L:      linux-kernel@vger.kernel.org
18610 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18611 S:      Maintained
18612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
18613 F:      drivers/soc/ti/*
18614
18615 TI LM49xxx FAMILY ASoC CODEC DRIVERS
18616 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
18617 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
18618 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18619 S:      Maintained
18620 F:      sound/soc/codecs/isabelle*
18621 F:      sound/soc/codecs/lm49453*
18622
18623 TI PCM3060 ASoC CODEC DRIVER
18624 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
18625 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18626 S:      Maintained
18627 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
18628 F:      sound/soc/codecs/pcm3060*
18629
18630 TI TAS571X FAMILY ASoC CODEC DRIVER
18631 M:      Kevin Cernekee <cernekee@chromium.org>
18632 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18633 S:      Odd Fixes
18634 F:      sound/soc/codecs/tas571x*
18635
18636 TI TRF7970A NFC DRIVER
18637 M:      Mark Greer <mgreer@animalcreek.com>
18638 L:      linux-wireless@vger.kernel.org
18639 L:      linux-nfc@lists.01.org (subscribers-only)
18640 S:      Supported
18641 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
18642 F:      drivers/nfc/trf7970a.c
18643
18644 TI TSC2046 ADC DRIVER
18645 M:      Oleksij Rempel <o.rempel@pengutronix.de>
18646 R:      kernel@pengutronix.de
18647 L:      linux-iio@vger.kernel.org
18648 S:      Maintained
18649 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
18650 F:      drivers/iio/adc/ti-tsc2046.c
18651
18652 TI TWL4030 SERIES SOC CODEC DRIVER
18653 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18654 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18655 S:      Maintained
18656 F:      sound/soc/codecs/twl4030*
18657
18658 TI VPE/CAL DRIVERS
18659 M:      Benoit Parrot <bparrot@ti.com>
18660 L:      linux-media@vger.kernel.org
18661 S:      Maintained
18662 W:      http://linuxtv.org/
18663 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18664 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
18665 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
18666 F:      drivers/media/platform/ti-vpe/
18667
18668 TI WILINK WIRELESS DRIVERS
18669 L:      linux-wireless@vger.kernel.org
18670 S:      Orphan
18671 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
18672 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
18673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
18674 F:      drivers/net/wireless/ti/
18675 F:      include/linux/wl12xx.h
18676
18677 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
18678 M:      John Stultz <john.stultz@linaro.org>
18679 M:      Thomas Gleixner <tglx@linutronix.de>
18680 R:      Stephen Boyd <sboyd@kernel.org>
18681 L:      linux-kernel@vger.kernel.org
18682 S:      Supported
18683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
18684 F:      include/linux/clocksource.h
18685 F:      include/linux/time.h
18686 F:      include/linux/timex.h
18687 F:      include/uapi/linux/time.h
18688 F:      include/uapi/linux/timex.h
18689 F:      kernel/time/alarmtimer.c
18690 F:      kernel/time/clocksource.c
18691 F:      kernel/time/ntp.c
18692 F:      kernel/time/time*.c
18693 F:      tools/testing/selftests/timers/
18694
18695 TIPC NETWORK LAYER
18696 M:      Jon Maloy <jmaloy@redhat.com>
18697 M:      Ying Xue <ying.xue@windriver.com>
18698 L:      netdev@vger.kernel.org (core kernel code)
18699 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
18700 S:      Maintained
18701 W:      http://tipc.sourceforge.net/
18702 F:      include/uapi/linux/tipc*.h
18703 F:      net/tipc/
18704
18705 TLAN NETWORK DRIVER
18706 M:      Samuel Chessman <chessman@tux.org>
18707 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
18708 S:      Maintained
18709 W:      http://sourceforge.net/projects/tlan/
18710 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
18711 F:      drivers/net/ethernet/ti/tlan.*
18712
18713 TM6000 VIDEO4LINUX DRIVER
18714 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18715 L:      linux-media@vger.kernel.org
18716 S:      Odd fixes
18717 W:      https://linuxtv.org
18718 T:      git git://linuxtv.org/media_tree.git
18719 F:      Documentation/admin-guide/media/tm6000*
18720 F:      drivers/media/usb/tm6000/
18721
18722 TMIO/SDHI MMC DRIVER
18723 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
18724 L:      linux-mmc@vger.kernel.org
18725 S:      Supported
18726 F:      drivers/mmc/host/renesas_sdhi*
18727 F:      drivers/mmc/host/tmio_mmc*
18728 F:      include/linux/mfd/tmio.h
18729
18730 TMP401 HARDWARE MONITOR DRIVER
18731 M:      Guenter Roeck <linux@roeck-us.net>
18732 L:      linux-hwmon@vger.kernel.org
18733 S:      Maintained
18734 F:      Documentation/hwmon/tmp401.rst
18735 F:      drivers/hwmon/tmp401.c
18736
18737 TMP513 HARDWARE MONITOR DRIVER
18738 M:      Eric Tremblay <etremblay@distech-controls.com>
18739 L:      linux-hwmon@vger.kernel.org
18740 S:      Maintained
18741 F:      Documentation/hwmon/tmp513.rst
18742 F:      drivers/hwmon/tmp513.c
18743
18744 TMPFS (SHMEM FILESYSTEM)
18745 M:      Hugh Dickins <hughd@google.com>
18746 L:      linux-mm@kvack.org
18747 S:      Maintained
18748 F:      include/linux/shmem_fs.h
18749 F:      mm/shmem.c
18750
18751 TOMOYO SECURITY MODULE
18752 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
18753 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
18754 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
18755 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
18756 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
18757 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
18758 S:      Maintained
18759 W:      https://tomoyo.osdn.jp/
18760 F:      security/tomoyo/
18761
18762 TOPSTAR LAPTOP EXTRAS DRIVER
18763 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
18764 L:      platform-driver-x86@vger.kernel.org
18765 S:      Maintained
18766 F:      drivers/platform/x86/topstar-laptop.c
18767
18768 TORTURE-TEST MODULES
18769 M:      Davidlohr Bueso <dave@stgolabs.net>
18770 M:      "Paul E. McKenney" <paulmck@kernel.org>
18771 M:      Josh Triplett <josh@joshtriplett.org>
18772 L:      linux-kernel@vger.kernel.org
18773 S:      Supported
18774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18775 F:      Documentation/RCU/torture.rst
18776 F:      kernel/locking/locktorture.c
18777 F:      kernel/rcu/rcuscale.c
18778 F:      kernel/rcu/rcutorture.c
18779 F:      kernel/rcu/refscale.c
18780 F:      kernel/torture.c
18781
18782 TOSHIBA ACPI EXTRAS DRIVER
18783 M:      Azael Avalos <coproscefalo@gmail.com>
18784 L:      platform-driver-x86@vger.kernel.org
18785 S:      Maintained
18786 F:      drivers/platform/x86/toshiba_acpi.c
18787
18788 TOSHIBA BLUETOOTH DRIVER
18789 M:      Azael Avalos <coproscefalo@gmail.com>
18790 L:      platform-driver-x86@vger.kernel.org
18791 S:      Maintained
18792 F:      drivers/platform/x86/toshiba_bluetooth.c
18793
18794 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
18795 M:      Azael Avalos <coproscefalo@gmail.com>
18796 L:      platform-driver-x86@vger.kernel.org
18797 S:      Maintained
18798 F:      drivers/platform/x86/toshiba_haps.c
18799
18800 TOSHIBA SMM DRIVER
18801 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
18802 S:      Maintained
18803 W:      http://www.buzzard.org.uk/toshiba/
18804 F:      drivers/char/toshiba.c
18805 F:      include/linux/toshiba.h
18806 F:      include/uapi/linux/toshiba.h
18807
18808 TOSHIBA TC358743 DRIVER
18809 M:      Mats Randgaard <matrandg@cisco.com>
18810 L:      linux-media@vger.kernel.org
18811 S:      Maintained
18812 F:      drivers/media/i2c/tc358743*
18813 F:      include/media/i2c/tc358743.h
18814
18815 TOSHIBA WMI HOTKEYS DRIVER
18816 M:      Azael Avalos <coproscefalo@gmail.com>
18817 L:      platform-driver-x86@vger.kernel.org
18818 S:      Maintained
18819 F:      drivers/platform/x86/toshiba-wmi.c
18820
18821 TPM DEVICE DRIVER
18822 M:      Peter Huewe <peterhuewe@gmx.de>
18823 M:      Jarkko Sakkinen <jarkko@kernel.org>
18824 R:      Jason Gunthorpe <jgg@ziepe.ca>
18825 L:      linux-integrity@vger.kernel.org
18826 S:      Maintained
18827 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
18828 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
18829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
18830 F:      drivers/char/tpm/
18831
18832 TRACING
18833 M:      Steven Rostedt <rostedt@goodmis.org>
18834 M:      Ingo Molnar <mingo@redhat.com>
18835 S:      Maintained
18836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
18837 F:      Documentation/trace/ftrace.rst
18838 F:      arch/*/*/*/ftrace.h
18839 F:      arch/*/kernel/ftrace.c
18840 F:      fs/tracefs/
18841 F:      include/*/ftrace.h
18842 F:      include/linux/trace*.h
18843 F:      include/trace/
18844 F:      kernel/trace/
18845 F:      tools/testing/selftests/ftrace/
18846
18847 TRACING MMIO ACCESSES (MMIOTRACE)
18848 M:      Steven Rostedt <rostedt@goodmis.org>
18849 M:      Ingo Molnar <mingo@kernel.org>
18850 R:      Karol Herbst <karolherbst@gmail.com>
18851 R:      Pekka Paalanen <ppaalanen@gmail.com>
18852 L:      linux-kernel@vger.kernel.org
18853 L:      nouveau@lists.freedesktop.org
18854 S:      Maintained
18855 F:      arch/x86/mm/kmmio.c
18856 F:      arch/x86/mm/mmio-mod.c
18857 F:      arch/x86/mm/testmmiotrace.c
18858 F:      include/linux/mmiotrace.h
18859 F:      kernel/trace/trace_mmiotrace.c
18860
18861 TRIVIAL PATCHES
18862 M:      Jiri Kosina <trivial@kernel.org>
18863 S:      Maintained
18864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
18865 K:      ^Subject:.*(?i)trivial
18866
18867 TTY LAYER
18868 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18869 M:      Jiri Slaby <jirislaby@kernel.org>
18870 S:      Supported
18871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
18872 F:      Documentation/driver-api/serial/
18873 F:      drivers/tty/
18874 F:      drivers/tty/serial/serial_core.c
18875 F:      include/linux/selection.h
18876 F:      include/linux/serial.h
18877 F:      include/linux/serial_core.h
18878 F:      include/linux/sysrq.h
18879 F:      include/linux/tty*.h
18880 F:      include/linux/vt.h
18881 F:      include/linux/vt_*.h
18882 F:      include/uapi/linux/serial.h
18883 F:      include/uapi/linux/serial_core.h
18884 F:      include/uapi/linux/tty.h
18885
18886 TUA9001 MEDIA DRIVER
18887 M:      Antti Palosaari <crope@iki.fi>
18888 L:      linux-media@vger.kernel.org
18889 S:      Maintained
18890 W:      https://linuxtv.org
18891 W:      http://palosaari.fi/linux/
18892 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18893 T:      git git://linuxtv.org/anttip/media_tree.git
18894 F:      drivers/media/tuners/tua9001*
18895
18896 TULIP NETWORK DRIVERS
18897 L:      netdev@vger.kernel.org
18898 L:      linux-parisc@vger.kernel.org
18899 S:      Orphan
18900 F:      drivers/net/ethernet/dec/tulip/
18901
18902 TUN/TAP driver
18903 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
18904 S:      Maintained
18905 W:      http://vtun.sourceforge.net/tun
18906 F:      Documentation/networking/tuntap.rst
18907 F:      arch/um/os-Linux/drivers/
18908
18909 TURBOCHANNEL SUBSYSTEM
18910 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
18911 M:      Ralf Baechle <ralf@linux-mips.org>
18912 L:      linux-mips@vger.kernel.org
18913 S:      Maintained
18914 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
18915 F:      drivers/tc/
18916 F:      include/linux/tc.h
18917
18918 TURBOSTAT UTILITY
18919 M:      "Len Brown" <lenb@kernel.org>
18920 L:      linux-pm@vger.kernel.org
18921 S:      Supported
18922 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18923 B:      https://bugzilla.kernel.org
18924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
18925 F:      tools/power/x86/turbostat/
18926
18927 TW5864 VIDEO4LINUX DRIVER
18928 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18929 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18930 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
18931 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18932 L:      linux-media@vger.kernel.org
18933 S:      Supported
18934 F:      drivers/media/pci/tw5864/
18935
18936 TW68 VIDEO4LINUX DRIVER
18937 M:      Hans Verkuil <hverkuil@xs4all.nl>
18938 L:      linux-media@vger.kernel.org
18939 S:      Odd Fixes
18940 W:      https://linuxtv.org
18941 T:      git git://linuxtv.org/media_tree.git
18942 F:      drivers/media/pci/tw68/
18943
18944 TW686X VIDEO4LINUX DRIVER
18945 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18946 L:      linux-media@vger.kernel.org
18947 S:      Maintained
18948 W:      http://linuxtv.org
18949 T:      git git://linuxtv.org/media_tree.git
18950 F:      drivers/media/pci/tw686x/
18951
18952 UACCE ACCELERATOR FRAMEWORK
18953 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
18954 M:      Zhou Wang <wangzhou1@hisilicon.com>
18955 L:      linux-accelerators@lists.ozlabs.org
18956 L:      linux-kernel@vger.kernel.org
18957 S:      Maintained
18958 F:      Documentation/ABI/testing/sysfs-driver-uacce
18959 F:      Documentation/misc-devices/uacce.rst
18960 F:      drivers/misc/uacce/
18961 F:      include/linux/uacce.h
18962 F:      include/uapi/misc/uacce/
18963
18964 UBI FILE SYSTEM (UBIFS)
18965 M:      Richard Weinberger <richard@nod.at>
18966 L:      linux-mtd@lists.infradead.org
18967 S:      Supported
18968 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
18969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18971 F:      Documentation/filesystems/ubifs-authentication.rst
18972 F:      Documentation/filesystems/ubifs.rst
18973 F:      fs/ubifs/
18974
18975 UCLINUX (M68KNOMMU AND COLDFIRE)
18976 M:      Greg Ungerer <gerg@linux-m68k.org>
18977 L:      linux-m68k@lists.linux-m68k.org
18978 L:      uclinux-dev@uclinux.org  (subscribers-only)
18979 S:      Maintained
18980 W:      http://www.linux-m68k.org/
18981 W:      http://www.uclinux.org/
18982 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
18983 F:      arch/m68k/*/*_no.*
18984 F:      arch/m68k/68*/
18985 F:      arch/m68k/coldfire/
18986 F:      arch/m68k/include/asm/*_no.*
18987
18988 UDF FILESYSTEM
18989 M:      Jan Kara <jack@suse.com>
18990 S:      Maintained
18991 F:      Documentation/filesystems/udf.rst
18992 F:      fs/udf/
18993
18994 UDRAW TABLET
18995 M:      Bastien Nocera <hadess@hadess.net>
18996 L:      linux-input@vger.kernel.org
18997 S:      Maintained
18998 F:      drivers/hid/hid-udraw-ps3.c
18999
19000 UFS FILESYSTEM
19001 M:      Evgeniy Dushistov <dushistov@mail.ru>
19002 S:      Maintained
19003 F:      Documentation/admin-guide/ufs.rst
19004 F:      fs/ufs/
19005
19006 UHID USERSPACE HID IO DRIVER
19007 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19008 L:      linux-input@vger.kernel.org
19009 S:      Maintained
19010 F:      drivers/hid/uhid.c
19011 F:      include/uapi/linux/uhid.h
19012
19013 ULPI BUS
19014 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19015 L:      linux-usb@vger.kernel.org
19016 S:      Maintained
19017 F:      drivers/usb/common/ulpi.c
19018 F:      include/linux/ulpi/
19019
19020 UNICODE SUBSYSTEM
19021 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
19022 L:      linux-fsdevel@vger.kernel.org
19023 S:      Supported
19024 F:      fs/unicode/
19025
19026 UNIFDEF
19027 M:      Tony Finch <dot@dotat.at>
19028 S:      Maintained
19029 W:      http://dotat.at/prog/unifdef
19030 F:      scripts/unifdef.c
19031
19032 UNIFORM CDROM DRIVER
19033 M:      Jens Axboe <axboe@kernel.dk>
19034 S:      Maintained
19035 W:      http://www.kernel.dk
19036 F:      Documentation/cdrom/
19037 F:      drivers/cdrom/cdrom.c
19038 F:      include/linux/cdrom.h
19039 F:      include/uapi/linux/cdrom.h
19040
19041 UNISYS S-PAR DRIVERS
19042 M:      David Kershner <david.kershner@unisys.com>
19043 L:      sparmaintainer@unisys.com (Unisys internal)
19044 S:      Supported
19045 F:      drivers/staging/unisys/
19046 F:      drivers/visorbus/
19047 F:      include/linux/visorbus.h
19048
19049 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
19050 R:      Alim Akhtar <alim.akhtar@samsung.com>
19051 R:      Avri Altman <avri.altman@wdc.com>
19052 L:      linux-scsi@vger.kernel.org
19053 S:      Supported
19054 F:      Documentation/scsi/ufs.rst
19055 F:      drivers/scsi/ufs/
19056
19057 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
19058 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
19059 L:      linux-scsi@vger.kernel.org
19060 S:      Supported
19061 F:      drivers/scsi/ufs/*dwc*
19062
19063 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
19064 M:      Stanley Chu <stanley.chu@mediatek.com>
19065 L:      linux-scsi@vger.kernel.org
19066 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
19067 S:      Maintained
19068 F:      drivers/scsi/ufs/ufs-mediatek*
19069
19070 UNSORTED BLOCK IMAGES (UBI)
19071 M:      Richard Weinberger <richard@nod.at>
19072 L:      linux-mtd@lists.infradead.org
19073 S:      Supported
19074 W:      http://www.linux-mtd.infradead.org/
19075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19077 F:      drivers/mtd/ubi/
19078 F:      include/linux/mtd/ubi.h
19079 F:      include/uapi/mtd/ubi-user.h
19080
19081 USB "USBNET" DRIVER FRAMEWORK
19082 M:      Oliver Neukum <oneukum@suse.com>
19083 L:      netdev@vger.kernel.org
19084 S:      Maintained
19085 W:      http://www.linux-usb.org/usbnet
19086 F:      drivers/net/usb/usbnet.c
19087 F:      include/linux/usb/usbnet.h
19088
19089 USB ACM DRIVER
19090 M:      Oliver Neukum <oneukum@suse.com>
19091 L:      linux-usb@vger.kernel.org
19092 S:      Maintained
19093 F:      Documentation/usb/acm.rst
19094 F:      drivers/usb/class/cdc-acm.*
19095
19096 USB APPLE MFI FASTCHARGE DRIVER
19097 M:      Bastien Nocera <hadess@hadess.net>
19098 L:      linux-usb@vger.kernel.org
19099 S:      Maintained
19100 F:      drivers/usb/misc/apple-mfi-fastcharge.c
19101
19102 USB AR5523 WIRELESS DRIVER
19103 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
19104 L:      linux-wireless@vger.kernel.org
19105 S:      Maintained
19106 F:      drivers/net/wireless/ath/ar5523/
19107
19108 USB ATTACHED SCSI
19109 M:      Oliver Neukum <oneukum@suse.com>
19110 L:      linux-usb@vger.kernel.org
19111 L:      linux-scsi@vger.kernel.org
19112 S:      Maintained
19113 F:      drivers/usb/storage/uas.c
19114
19115 USB CDC ETHERNET DRIVER
19116 M:      Oliver Neukum <oliver@neukum.org>
19117 L:      linux-usb@vger.kernel.org
19118 S:      Maintained
19119 F:      drivers/net/usb/cdc_*.c
19120 F:      include/uapi/linux/usb/cdc.h
19121
19122 USB CHAOSKEY DRIVER
19123 M:      Keith Packard <keithp@keithp.com>
19124 L:      linux-usb@vger.kernel.org
19125 S:      Maintained
19126 F:      drivers/usb/misc/chaoskey.c
19127
19128 USB CYPRESS C67X00 DRIVER
19129 M:      Peter Korsgaard <jacmet@sunsite.dk>
19130 L:      linux-usb@vger.kernel.org
19131 S:      Maintained
19132 F:      drivers/usb/c67x00/
19133
19134 USB DAVICOM DM9601 DRIVER
19135 M:      Peter Korsgaard <jacmet@sunsite.dk>
19136 L:      netdev@vger.kernel.org
19137 S:      Maintained
19138 W:      http://www.linux-usb.org/usbnet
19139 F:      drivers/net/usb/dm9601.c
19140
19141 USB EHCI DRIVER
19142 M:      Alan Stern <stern@rowland.harvard.edu>
19143 L:      linux-usb@vger.kernel.org
19144 S:      Maintained
19145 F:      Documentation/usb/ehci.rst
19146 F:      drivers/usb/host/ehci*
19147
19148 USB GADGET/PERIPHERAL SUBSYSTEM
19149 M:      Felipe Balbi <balbi@kernel.org>
19150 L:      linux-usb@vger.kernel.org
19151 S:      Maintained
19152 W:      http://www.linux-usb.org/gadget
19153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19154 F:      drivers/usb/gadget/
19155 F:      include/linux/usb/gadget*
19156
19157 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19158 M:      Jiri Kosina <jikos@kernel.org>
19159 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
19160 L:      linux-usb@vger.kernel.org
19161 S:      Maintained
19162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19163 F:      Documentation/hid/hiddev.rst
19164 F:      drivers/hid/usbhid/
19165
19166 USB INTEL XHCI ROLE MUX DRIVER
19167 M:      Hans de Goede <hdegoede@redhat.com>
19168 L:      linux-usb@vger.kernel.org
19169 S:      Maintained
19170 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
19171
19172 USB IP DRIVER FOR HISILICON KIRIN 960
19173 M:      Yu Chen <chenyu56@huawei.com>
19174 M:      Binghui Wang <wangbinghui@hisilicon.com>
19175 L:      linux-usb@vger.kernel.org
19176 S:      Maintained
19177 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19178 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
19179
19180 USB IP DRIVER FOR HISILICON KIRIN 970
19181 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19182 L:      linux-usb@vger.kernel.org
19183 S:      Maintained
19184 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
19185 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
19186
19187 USB ISP116X DRIVER
19188 M:      Olav Kongas <ok@artecdesign.ee>
19189 L:      linux-usb@vger.kernel.org
19190 S:      Maintained
19191 F:      drivers/usb/host/isp116x*
19192 F:      include/linux/usb/isp116x.h
19193
19194 USB ISP1760 DRIVER
19195 M:      Rui Miguel Silva <rui.silva@linaro.org>
19196 L:      linux-usb@vger.kernel.org
19197 S:      Maintained
19198 F:      drivers/usb/isp1760/*
19199 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19200
19201 USB LAN78XX ETHERNET DRIVER
19202 M:      Woojung Huh <woojung.huh@microchip.com>
19203 M:      UNGLinuxDriver@microchip.com
19204 L:      netdev@vger.kernel.org
19205 S:      Maintained
19206 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19207 F:      drivers/net/usb/lan78xx.*
19208 F:      include/dt-bindings/net/microchip-lan78xx.h
19209
19210 USB MASS STORAGE DRIVER
19211 M:      Alan Stern <stern@rowland.harvard.edu>
19212 L:      linux-usb@vger.kernel.org
19213 L:      usb-storage@lists.one-eyed-alien.net
19214 S:      Maintained
19215 F:      drivers/usb/storage/
19216
19217 USB MIDI DRIVER
19218 M:      Clemens Ladisch <clemens@ladisch.de>
19219 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19220 S:      Maintained
19221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19222 F:      sound/usb/midi.*
19223
19224 USB NETWORKING DRIVERS
19225 L:      linux-usb@vger.kernel.org
19226 S:      Odd Fixes
19227 F:      drivers/net/usb/
19228
19229 USB OHCI DRIVER
19230 M:      Alan Stern <stern@rowland.harvard.edu>
19231 L:      linux-usb@vger.kernel.org
19232 S:      Maintained
19233 F:      Documentation/usb/ohci.rst
19234 F:      drivers/usb/host/ohci*
19235
19236 USB OTG FSM (Finite State Machine)
19237 M:      Peter Chen <peter.chen@kernel.org>
19238 L:      linux-usb@vger.kernel.org
19239 S:      Maintained
19240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19241 F:      drivers/usb/common/usb-otg-fsm.c
19242
19243 USB OVER IP DRIVER
19244 M:      Valentina Manea <valentina.manea.m@gmail.com>
19245 M:      Shuah Khan <shuah@kernel.org>
19246 M:      Shuah Khan <skhan@linuxfoundation.org>
19247 L:      linux-usb@vger.kernel.org
19248 S:      Maintained
19249 F:      Documentation/usb/usbip_protocol.rst
19250 F:      drivers/usb/usbip/
19251 F:      tools/testing/selftests/drivers/usb/usbip/
19252 F:      tools/usb/usbip/
19253
19254 USB PEGASUS DRIVER
19255 M:      Petko Manolov <petkan@nucleusys.com>
19256 L:      linux-usb@vger.kernel.org
19257 L:      netdev@vger.kernel.org
19258 S:      Maintained
19259 W:      https://github.com/petkan/pegasus
19260 T:      git git://github.com/petkan/pegasus.git
19261 F:      drivers/net/usb/pegasus.*
19262
19263 USB PHY LAYER
19264 M:      Felipe Balbi <balbi@kernel.org>
19265 L:      linux-usb@vger.kernel.org
19266 S:      Maintained
19267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19268 F:      drivers/usb/phy/
19269
19270 USB PRINTER DRIVER (usblp)
19271 M:      Pete Zaitcev <zaitcev@redhat.com>
19272 L:      linux-usb@vger.kernel.org
19273 S:      Supported
19274 F:      drivers/usb/class/usblp.c
19275
19276 USB RAW GADGET DRIVER
19277 R:      Andrey Konovalov <andreyknvl@gmail.com>
19278 L:      linux-usb@vger.kernel.org
19279 S:      Maintained
19280 F:      Documentation/usb/raw-gadget.rst
19281 F:      drivers/usb/gadget/legacy/raw_gadget.c
19282 F:      include/uapi/linux/usb/raw_gadget.h
19283
19284 USB QMI WWAN NETWORK DRIVER
19285 M:      Bjørn Mork <bjorn@mork.no>
19286 L:      netdev@vger.kernel.org
19287 S:      Maintained
19288 F:      Documentation/ABI/testing/sysfs-class-net-qmi
19289 F:      drivers/net/usb/qmi_wwan.c
19290
19291 USB RTL8150 DRIVER
19292 M:      Petko Manolov <petkan@nucleusys.com>
19293 L:      linux-usb@vger.kernel.org
19294 L:      netdev@vger.kernel.org
19295 S:      Maintained
19296 W:      https://github.com/petkan/rtl8150
19297 T:      git git://github.com/petkan/rtl8150.git
19298 F:      drivers/net/usb/rtl8150.c
19299
19300 USB SERIAL SUBSYSTEM
19301 M:      Johan Hovold <johan@kernel.org>
19302 L:      linux-usb@vger.kernel.org
19303 S:      Maintained
19304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
19305 F:      Documentation/usb/usb-serial.rst
19306 F:      drivers/usb/serial/
19307 F:      include/linux/usb/serial.h
19308
19309 USB SMSC75XX ETHERNET DRIVER
19310 M:      Steve Glendinning <steve.glendinning@shawell.net>
19311 L:      netdev@vger.kernel.org
19312 S:      Maintained
19313 F:      drivers/net/usb/smsc75xx.*
19314
19315 USB SMSC95XX ETHERNET DRIVER
19316 M:      Steve Glendinning <steve.glendinning@shawell.net>
19317 M:      UNGLinuxDriver@microchip.com
19318 L:      netdev@vger.kernel.org
19319 S:      Maintained
19320 F:      drivers/net/usb/smsc95xx.*
19321
19322 USB SUBSYSTEM
19323 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19324 L:      linux-usb@vger.kernel.org
19325 S:      Supported
19326 W:      http://www.linux-usb.org
19327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
19328 F:      Documentation/devicetree/bindings/usb/
19329 F:      Documentation/usb/
19330 F:      drivers/usb/
19331 F:      include/linux/usb.h
19332 F:      include/linux/usb/
19333
19334 USB TYPEC BUS FOR ALTERNATE MODES
19335 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19336 L:      linux-usb@vger.kernel.org
19337 S:      Maintained
19338 F:      Documentation/ABI/testing/sysfs-bus-typec
19339 F:      Documentation/driver-api/usb/typec_bus.rst
19340 F:      drivers/usb/typec/altmodes/
19341 F:      include/linux/usb/typec_altmode.h
19342
19343 USB TYPEC CLASS
19344 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19345 L:      linux-usb@vger.kernel.org
19346 S:      Maintained
19347 F:      Documentation/ABI/testing/sysfs-class-typec
19348 F:      Documentation/driver-api/usb/typec.rst
19349 F:      drivers/usb/typec/
19350 F:      include/linux/usb/typec.h
19351
19352 USB TYPEC INTEL PMC MUX DRIVER
19353 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19354 L:      linux-usb@vger.kernel.org
19355 S:      Maintained
19356 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19357 F:      drivers/usb/typec/mux/intel_pmc_mux.c
19358
19359 USB TYPEC PI3USB30532 MUX DRIVER
19360 M:      Hans de Goede <hdegoede@redhat.com>
19361 L:      linux-usb@vger.kernel.org
19362 S:      Maintained
19363 F:      drivers/usb/typec/mux/pi3usb30532.c
19364
19365 USB TYPEC PORT CONTROLLER DRIVERS
19366 M:      Guenter Roeck <linux@roeck-us.net>
19367 L:      linux-usb@vger.kernel.org
19368 S:      Maintained
19369 F:      drivers/usb/typec/tcpm/
19370
19371 USB UHCI DRIVER
19372 M:      Alan Stern <stern@rowland.harvard.edu>
19373 L:      linux-usb@vger.kernel.org
19374 S:      Maintained
19375 F:      drivers/usb/host/uhci*
19376
19377 USB VIDEO CLASS
19378 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19379 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
19380 L:      linux-media@vger.kernel.org
19381 S:      Maintained
19382 W:      http://www.ideasonboard.org/uvc/
19383 T:      git git://linuxtv.org/media_tree.git
19384 F:      drivers/media/usb/uvc/
19385 F:      include/uapi/linux/uvcvideo.h
19386
19387 USB WEBCAM GADGET
19388 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19389 L:      linux-usb@vger.kernel.org
19390 S:      Maintained
19391 F:      drivers/usb/gadget/function/*uvc*
19392 F:      drivers/usb/gadget/legacy/webcam.c
19393 F:      include/uapi/linux/usb/g_uvc.h
19394
19395 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19396 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
19397 L:      linux-wireless@vger.kernel.org
19398 S:      Maintained
19399 F:      drivers/net/wireless/rndis_wlan.c
19400
19401 USB XHCI DRIVER
19402 M:      Mathias Nyman <mathias.nyman@intel.com>
19403 L:      linux-usb@vger.kernel.org
19404 S:      Supported
19405 F:      drivers/usb/host/pci-quirks*
19406 F:      drivers/usb/host/xhci*
19407
19408 USB ZD1201 DRIVER
19409 L:      linux-wireless@vger.kernel.org
19410 S:      Orphan
19411 W:      http://linux-lc100020.sourceforge.net
19412 F:      drivers/net/wireless/zydas/zd1201.*
19413
19414 USB ZR364XX DRIVER
19415 M:      Antoine Jacquet <royale@zerezo.com>
19416 L:      linux-usb@vger.kernel.org
19417 L:      linux-media@vger.kernel.org
19418 S:      Maintained
19419 W:      http://royale.zerezo.com/zr364xx/
19420 T:      git git://linuxtv.org/media_tree.git
19421 F:      Documentation/admin-guide/media/zr364xx*
19422 F:      drivers/media/usb/zr364xx/
19423
19424 USER-MODE LINUX (UML)
19425 M:      Jeff Dike <jdike@addtoit.com>
19426 M:      Richard Weinberger <richard@nod.at>
19427 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
19428 L:      linux-um@lists.infradead.org
19429 S:      Maintained
19430 W:      http://user-mode-linux.sourceforge.net
19431 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
19432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19433 F:      Documentation/virt/uml/
19434 F:      arch/um/
19435 F:      arch/x86/um/
19436 F:      fs/hostfs/
19437
19438 USERSPACE COPYIN/COPYOUT (UIOVEC)
19439 M:      Alexander Viro <viro@zeniv.linux.org.uk>
19440 S:      Maintained
19441 F:      include/linux/uio.h
19442 F:      lib/iov_iter.c
19443
19444 USERSPACE DMA BUFFER DRIVER
19445 M:      Gerd Hoffmann <kraxel@redhat.com>
19446 L:      dri-devel@lists.freedesktop.org
19447 S:      Maintained
19448 T:      git git://anongit.freedesktop.org/drm/drm-misc
19449 F:      drivers/dma-buf/udmabuf.c
19450 F:      include/uapi/linux/udmabuf.h
19451
19452 USERSPACE I/O (UIO)
19453 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19454 S:      Maintained
19455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19456 F:      Documentation/driver-api/uio-howto.rst
19457 F:      drivers/uio/
19458 F:      include/linux/uio_driver.h
19459
19460 UTIL-LINUX PACKAGE
19461 M:      Karel Zak <kzak@redhat.com>
19462 L:      util-linux@vger.kernel.org
19463 S:      Maintained
19464 W:      http://en.wikipedia.org/wiki/Util-linux
19465 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19466
19467 UUID HELPERS
19468 M:      Christoph Hellwig <hch@lst.de>
19469 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19470 L:      linux-kernel@vger.kernel.org
19471 S:      Maintained
19472 T:      git git://git.infradead.org/users/hch/uuid.git
19473 F:      include/linux/uuid.h
19474 F:      include/uapi/linux/uuid.h
19475 F:      lib/test_uuid.c
19476 F:      lib/uuid.c
19477
19478 UV SYSFS DRIVER
19479 M:      Justin Ernst <justin.ernst@hpe.com>
19480 L:      platform-driver-x86@vger.kernel.org
19481 S:      Maintained
19482 F:      drivers/platform/x86/uv_sysfs.c
19483
19484 UVESAFB DRIVER
19485 M:      Michal Januszewski <spock@gentoo.org>
19486 L:      linux-fbdev@vger.kernel.org
19487 S:      Maintained
19488 W:      https://github.com/mjanusz/v86d
19489 F:      Documentation/fb/uvesafb.rst
19490 F:      drivers/video/fbdev/uvesafb.*
19491
19492 Ux500 CLOCK DRIVERS
19493 M:      Ulf Hansson <ulf.hansson@linaro.org>
19494 L:      linux-clk@vger.kernel.org
19495 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19496 S:      Maintained
19497 F:      drivers/clk/ux500/
19498
19499 VF610 NAND DRIVER
19500 M:      Stefan Agner <stefan@agner.ch>
19501 L:      linux-mtd@lists.infradead.org
19502 S:      Supported
19503 F:      drivers/mtd/nand/raw/vf610_nfc.c
19504
19505 VFAT/FAT/MSDOS FILESYSTEM
19506 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
19507 S:      Maintained
19508 F:      Documentation/filesystems/vfat.rst
19509 F:      fs/fat/
19510
19511 VFIO DRIVER
19512 M:      Alex Williamson <alex.williamson@redhat.com>
19513 R:      Cornelia Huck <cohuck@redhat.com>
19514 L:      kvm@vger.kernel.org
19515 S:      Maintained
19516 T:      git git://github.com/awilliam/linux-vfio.git
19517 F:      Documentation/driver-api/vfio.rst
19518 F:      drivers/vfio/
19519 F:      include/linux/vfio.h
19520 F:      include/uapi/linux/vfio.h
19521
19522 VFIO FSL-MC DRIVER
19523 M:      Diana Craciun <diana.craciun@oss.nxp.com>
19524 L:      kvm@vger.kernel.org
19525 S:      Maintained
19526 F:      drivers/vfio/fsl-mc/
19527
19528 VFIO MEDIATED DEVICE DRIVERS
19529 M:      Kirti Wankhede <kwankhede@nvidia.com>
19530 L:      kvm@vger.kernel.org
19531 S:      Maintained
19532 F:      Documentation/driver-api/vfio-mediated-device.rst
19533 F:      drivers/vfio/mdev/
19534 F:      include/linux/mdev.h
19535 F:      samples/vfio-mdev/
19536
19537 VFIO PLATFORM DRIVER
19538 M:      Eric Auger <eric.auger@redhat.com>
19539 L:      kvm@vger.kernel.org
19540 S:      Maintained
19541 F:      drivers/vfio/platform/
19542
19543 VGA_SWITCHEROO
19544 R:      Lukas Wunner <lukas@wunner.de>
19545 S:      Maintained
19546 T:      git git://anongit.freedesktop.org/drm/drm-misc
19547 F:      Documentation/gpu/vga-switcheroo.rst
19548 F:      drivers/gpu/vga/vga_switcheroo.c
19549 F:      include/linux/vga_switcheroo.h
19550
19551 VIA RHINE NETWORK DRIVER
19552 S:      Maintained
19553 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
19554 F:      drivers/net/ethernet/via/via-rhine.c
19555
19556 VIA SD/MMC CARD CONTROLLER DRIVER
19557 M:      Bruce Chang <brucechang@via.com.tw>
19558 M:      Harald Welte <HaraldWelte@viatech.com>
19559 S:      Maintained
19560 F:      drivers/mmc/host/via-sdmmc.c
19561
19562 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19563 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
19564 L:      linux-fbdev@vger.kernel.org
19565 S:      Maintained
19566 F:      drivers/video/fbdev/via/
19567 F:      include/linux/via-core.h
19568 F:      include/linux/via-gpio.h
19569 F:      include/linux/via_i2c.h
19570
19571 VIA VELOCITY NETWORK DRIVER
19572 M:      Francois Romieu <romieu@fr.zoreil.com>
19573 L:      netdev@vger.kernel.org
19574 S:      Maintained
19575 F:      drivers/net/ethernet/via/via-velocity.*
19576
19577 VICODEC VIRTUAL CODEC DRIVER
19578 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
19579 L:      linux-media@vger.kernel.org
19580 S:      Maintained
19581 W:      https://linuxtv.org
19582 T:      git git://linuxtv.org/media_tree.git
19583 F:      drivers/media/test-drivers/vicodec/*
19584
19585 VIDEO I2C POLLING DRIVER
19586 M:      Matt Ranostay <matt.ranostay@konsulko.com>
19587 L:      linux-media@vger.kernel.org
19588 S:      Maintained
19589 F:      drivers/media/i2c/video-i2c.c
19590
19591 VIDEO MULTIPLEXER DRIVER
19592 M:      Philipp Zabel <p.zabel@pengutronix.de>
19593 L:      linux-media@vger.kernel.org
19594 S:      Maintained
19595 F:      drivers/media/platform/video-mux.c
19596
19597 VIDEOBUF2 FRAMEWORK
19598 M:      Tomasz Figa <tfiga@chromium.org>
19599 M:      Marek Szyprowski <m.szyprowski@samsung.com>
19600 L:      linux-media@vger.kernel.org
19601 S:      Maintained
19602 F:      drivers/media/common/videobuf2/*
19603 F:      include/media/videobuf2-*
19604
19605 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
19606 M:      Helen Koike <helen.koike@collabora.com>
19607 R:      Shuah Khan <skhan@linuxfoundation.org>
19608 L:      linux-media@vger.kernel.org
19609 S:      Maintained
19610 W:      https://linuxtv.org
19611 T:      git git://linuxtv.org/media_tree.git
19612 F:      drivers/media/test-drivers/vimc/*
19613
19614 VIRT LIB
19615 M:      Alex Williamson <alex.williamson@redhat.com>
19616 M:      Paolo Bonzini <pbonzini@redhat.com>
19617 L:      kvm@vger.kernel.org
19618 S:      Supported
19619 F:      virt/lib/
19620
19621 VIRTIO AND VHOST VSOCK DRIVER
19622 M:      Stefan Hajnoczi <stefanha@redhat.com>
19623 M:      Stefano Garzarella <sgarzare@redhat.com>
19624 L:      kvm@vger.kernel.org
19625 L:      virtualization@lists.linux-foundation.org
19626 L:      netdev@vger.kernel.org
19627 S:      Maintained
19628 F:      drivers/net/vsockmon.c
19629 F:      drivers/vhost/vsock.c
19630 F:      include/linux/virtio_vsock.h
19631 F:      include/uapi/linux/virtio_vsock.h
19632 F:      include/uapi/linux/vm_sockets_diag.h
19633 F:      include/uapi/linux/vsockmon.h
19634 F:      net/vmw_vsock/af_vsock_tap.c
19635 F:      net/vmw_vsock/diag.c
19636 F:      net/vmw_vsock/virtio_transport.c
19637 F:      net/vmw_vsock/virtio_transport_common.c
19638 F:      net/vmw_vsock/vsock_loopback.c
19639 F:      tools/testing/vsock/
19640
19641 VIRTIO BLOCK AND SCSI DRIVERS
19642 M:      "Michael S. Tsirkin" <mst@redhat.com>
19643 M:      Jason Wang <jasowang@redhat.com>
19644 R:      Paolo Bonzini <pbonzini@redhat.com>
19645 R:      Stefan Hajnoczi <stefanha@redhat.com>
19646 L:      virtualization@lists.linux-foundation.org
19647 S:      Maintained
19648 F:      drivers/block/virtio_blk.c
19649 F:      drivers/scsi/virtio_scsi.c
19650 F:      drivers/vhost/scsi.c
19651 F:      include/uapi/linux/virtio_blk.h
19652 F:      include/uapi/linux/virtio_scsi.h
19653
19654 VIRTIO CONSOLE DRIVER
19655 M:      Amit Shah <amit@kernel.org>
19656 L:      virtualization@lists.linux-foundation.org
19657 S:      Maintained
19658 F:      drivers/char/virtio_console.c
19659 F:      include/linux/virtio_console.h
19660 F:      include/uapi/linux/virtio_console.h
19661
19662 VIRTIO CORE AND NET DRIVERS
19663 M:      "Michael S. Tsirkin" <mst@redhat.com>
19664 M:      Jason Wang <jasowang@redhat.com>
19665 L:      virtualization@lists.linux-foundation.org
19666 S:      Maintained
19667 F:      Documentation/devicetree/bindings/virtio/
19668 F:      drivers/block/virtio_blk.c
19669 F:      drivers/crypto/virtio/
19670 F:      drivers/net/virtio_net.c
19671 F:      drivers/vdpa/
19672 F:      drivers/virtio/
19673 F:      include/linux/vdpa.h
19674 F:      include/linux/virtio*.h
19675 F:      include/uapi/linux/virtio_*.h
19676 F:      tools/virtio/
19677
19678 VIRTIO BALLOON
19679 M:      "Michael S. Tsirkin" <mst@redhat.com>
19680 M:      David Hildenbrand <david@redhat.com>
19681 L:      virtualization@lists.linux-foundation.org
19682 S:      Maintained
19683 F:      drivers/virtio/virtio_balloon.c
19684 F:      include/uapi/linux/virtio_balloon.h
19685 F:      include/linux/balloon_compaction.h
19686 F:      mm/balloon_compaction.c
19687
19688 VIRTIO CRYPTO DRIVER
19689 M:      Gonglei <arei.gonglei@huawei.com>
19690 L:      virtualization@lists.linux-foundation.org
19691 L:      linux-crypto@vger.kernel.org
19692 S:      Maintained
19693 F:      drivers/crypto/virtio/
19694 F:      include/uapi/linux/virtio_crypto.h
19695
19696 VIRTIO DRIVERS FOR S390
19697 M:      Cornelia Huck <cohuck@redhat.com>
19698 M:      Halil Pasic <pasic@linux.ibm.com>
19699 L:      linux-s390@vger.kernel.org
19700 L:      virtualization@lists.linux-foundation.org
19701 L:      kvm@vger.kernel.org
19702 S:      Supported
19703 F:      arch/s390/include/uapi/asm/virtio-ccw.h
19704 F:      drivers/s390/virtio/
19705
19706 VIRTIO FILE SYSTEM
19707 M:      Vivek Goyal <vgoyal@redhat.com>
19708 M:      Stefan Hajnoczi <stefanha@redhat.com>
19709 M:      Miklos Szeredi <miklos@szeredi.hu>
19710 L:      virtualization@lists.linux-foundation.org
19711 L:      linux-fsdevel@vger.kernel.org
19712 S:      Supported
19713 W:      https://virtio-fs.gitlab.io/
19714 F:      Documentation/filesystems/virtiofs.rst
19715 F:      fs/fuse/virtio_fs.c
19716 F:      include/uapi/linux/virtio_fs.h
19717
19718 VIRTIO GPU DRIVER
19719 M:      David Airlie <airlied@linux.ie>
19720 M:      Gerd Hoffmann <kraxel@redhat.com>
19721 L:      dri-devel@lists.freedesktop.org
19722 L:      virtualization@lists.linux-foundation.org
19723 S:      Maintained
19724 T:      git git://anongit.freedesktop.org/drm/drm-misc
19725 F:      drivers/gpu/drm/virtio/
19726 F:      include/uapi/linux/virtio_gpu.h
19727
19728 VIRTIO HOST (VHOST)
19729 M:      "Michael S. Tsirkin" <mst@redhat.com>
19730 M:      Jason Wang <jasowang@redhat.com>
19731 L:      kvm@vger.kernel.org
19732 L:      virtualization@lists.linux-foundation.org
19733 L:      netdev@vger.kernel.org
19734 S:      Maintained
19735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
19736 F:      drivers/vhost/
19737 F:      include/linux/vhost_iotlb.h
19738 F:      include/uapi/linux/vhost.h
19739
19740 VIRTIO INPUT DRIVER
19741 M:      Gerd Hoffmann <kraxel@redhat.com>
19742 S:      Maintained
19743 F:      drivers/virtio/virtio_input.c
19744 F:      include/uapi/linux/virtio_input.h
19745
19746 VIRTIO IOMMU DRIVER
19747 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
19748 L:      virtualization@lists.linux-foundation.org
19749 S:      Maintained
19750 F:      drivers/iommu/virtio-iommu.c
19751 F:      include/uapi/linux/virtio_iommu.h
19752
19753 VIRTIO MEM DRIVER
19754 M:      David Hildenbrand <david@redhat.com>
19755 L:      virtualization@lists.linux-foundation.org
19756 S:      Maintained
19757 W:      https://virtio-mem.gitlab.io/
19758 F:      drivers/virtio/virtio_mem.c
19759 F:      include/uapi/linux/virtio_mem.h
19760
19761 VIRTIO SOUND DRIVER
19762 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
19763 M:      "Michael S. Tsirkin" <mst@redhat.com>
19764 L:      virtualization@lists.linux-foundation.org
19765 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19766 S:      Maintained
19767 F:      include/uapi/linux/virtio_snd.h
19768 F:      sound/virtio/*
19769
19770 VIRTIO I2C DRIVER
19771 M:      Jie Deng <jie.deng@intel.com>
19772 M:      Viresh Kumar <viresh.kumar@linaro.org>
19773 L:      linux-i2c@vger.kernel.org
19774 L:      virtualization@lists.linux-foundation.org
19775 S:      Maintained
19776 F:      drivers/i2c/busses/i2c-virtio.c
19777 F:      include/uapi/linux/virtio_i2c.h
19778
19779 VIRTUAL BOX GUEST DEVICE DRIVER
19780 M:      Hans de Goede <hdegoede@redhat.com>
19781 M:      Arnd Bergmann <arnd@arndb.de>
19782 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19783 S:      Maintained
19784 F:      drivers/virt/vboxguest/
19785 F:      include/linux/vbox_utils.h
19786 F:      include/uapi/linux/vbox*.h
19787
19788 VIRTUAL BOX SHARED FOLDER VFS DRIVER
19789 M:      Hans de Goede <hdegoede@redhat.com>
19790 L:      linux-fsdevel@vger.kernel.org
19791 S:      Maintained
19792 F:      fs/vboxsf/*
19793
19794 VIRTUAL SERIO DEVICE DRIVER
19795 M:      Stephen Chandler Paul <thatslyude@gmail.com>
19796 S:      Maintained
19797 F:      drivers/input/serio/userio.c
19798 F:      include/uapi/linux/userio.h
19799
19800 VIVID VIRTUAL VIDEO DRIVER
19801 M:      Hans Verkuil <hverkuil@xs4all.nl>
19802 L:      linux-media@vger.kernel.org
19803 S:      Maintained
19804 W:      https://linuxtv.org
19805 T:      git git://linuxtv.org/media_tree.git
19806 F:      drivers/media/test-drivers/vivid/*
19807
19808 VIDTV VIRTUAL DIGITAL TV DRIVER
19809 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
19810 L:      linux-media@vger.kernel.org
19811 S:      Maintained
19812 W:      https://linuxtv.org
19813 T:      git git://linuxtv.org/media_tree.git
19814 F:      drivers/media/test-drivers/vidtv/*
19815
19816 VLYNQ BUS
19817 M:      Florian Fainelli <f.fainelli@gmail.com>
19818 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
19819 S:      Maintained
19820 F:      drivers/vlynq/vlynq.c
19821 F:      include/linux/vlynq.h
19822
19823 VME SUBSYSTEM
19824 M:      Martyn Welch <martyn@welchs.me.uk>
19825 M:      Manohar Vanga <manohar.vanga@gmail.com>
19826 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19827 L:      linux-kernel@vger.kernel.org
19828 S:      Maintained
19829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19830 F:      Documentation/driver-api/vme.rst
19831 F:      drivers/staging/vme/
19832 F:      drivers/vme/
19833 F:      include/linux/vme*
19834
19835 VMWARE BALLOON DRIVER
19836 M:      Nadav Amit <namit@vmware.com>
19837 M:      "VMware, Inc." <pv-drivers@vmware.com>
19838 L:      linux-kernel@vger.kernel.org
19839 S:      Maintained
19840 F:      drivers/misc/vmw_balloon.c
19841
19842 VMWARE HYPERVISOR INTERFACE
19843 M:      Deep Shah <sdeep@vmware.com>
19844 M:      "VMware, Inc." <pv-drivers@vmware.com>
19845 L:      virtualization@lists.linux-foundation.org
19846 S:      Supported
19847 F:      arch/x86/include/asm/vmware.h
19848 F:      arch/x86/kernel/cpu/vmware.c
19849
19850 VMWARE PVRDMA DRIVER
19851 M:      Adit Ranadive <aditr@vmware.com>
19852 M:      VMware PV-Drivers <pv-drivers@vmware.com>
19853 L:      linux-rdma@vger.kernel.org
19854 S:      Maintained
19855 F:      drivers/infiniband/hw/vmw_pvrdma/
19856
19857 VMware PVSCSI driver
19858 M:      Vishal Bhakta <vbhakta@vmware.com>
19859 M:      VMware PV-Drivers <pv-drivers@vmware.com>
19860 L:      linux-scsi@vger.kernel.org
19861 S:      Maintained
19862 F:      drivers/scsi/vmw_pvscsi.c
19863 F:      drivers/scsi/vmw_pvscsi.h
19864
19865 VMWARE VIRTUAL PTP CLOCK DRIVER
19866 M:      Vivek Thampi <vithampi@vmware.com>
19867 M:      "VMware, Inc." <pv-drivers@vmware.com>
19868 L:      netdev@vger.kernel.org
19869 S:      Supported
19870 F:      drivers/ptp/ptp_vmw.c
19871
19872 VMWARE VMCI DRIVER
19873 M:      Jorgen Hansen <jhansen@vmware.com>
19874 M:      Vishnu Dasa <vdasa@vmware.com>
19875 L:      linux-kernel@vger.kernel.org
19876 L:      pv-drivers@vmware.com (private)
19877 S:      Maintained
19878 F:      drivers/misc/vmw_vmci/
19879
19880 VMWARE VMMOUSE SUBDRIVER
19881 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
19882 M:      "VMware, Inc." <pv-drivers@vmware.com>
19883 L:      linux-input@vger.kernel.org
19884 S:      Maintained
19885 F:      drivers/input/mouse/vmmouse.c
19886 F:      drivers/input/mouse/vmmouse.h
19887
19888 VMWARE VMXNET3 ETHERNET DRIVER
19889 M:      Ronak Doshi <doshir@vmware.com>
19890 M:      pv-drivers@vmware.com
19891 L:      netdev@vger.kernel.org
19892 S:      Maintained
19893 F:      drivers/net/vmxnet3/
19894
19895 VOCORE VOCORE2 BOARD
19896 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
19897 L:      linux-mips@vger.kernel.org
19898 S:      Maintained
19899 F:      arch/mips/boot/dts/ralink/vocore2.dts
19900
19901 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
19902 M:      Liam Girdwood <lgirdwood@gmail.com>
19903 M:      Mark Brown <broonie@kernel.org>
19904 L:      linux-kernel@vger.kernel.org
19905 S:      Supported
19906 W:      http://www.slimlogic.co.uk/?p=48
19907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
19908 F:      Documentation/devicetree/bindings/regulator/
19909 F:      Documentation/power/regulator/
19910 F:      drivers/regulator/
19911 F:      include/dt-bindings/regulator/
19912 F:      include/linux/regulator/
19913 K:      regulator_get_optional
19914
19915 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
19916 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
19917 F:      drivers/regulator/irq_helpers.c
19918
19919 VRF
19920 M:      David Ahern <dsahern@kernel.org>
19921 L:      netdev@vger.kernel.org
19922 S:      Maintained
19923 F:      Documentation/networking/vrf.rst
19924 F:      drivers/net/vrf.c
19925
19926 VSPRINTF
19927 M:      Petr Mladek <pmladek@suse.com>
19928 M:      Steven Rostedt <rostedt@goodmis.org>
19929 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
19930 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19931 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
19932 S:      Maintained
19933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
19934 F:      Documentation/core-api/printk-formats.rst
19935 F:      lib/test_printf.c
19936 F:      lib/test_scanf.c
19937 F:      lib/vsprintf.c
19938
19939 VT1211 HARDWARE MONITOR DRIVER
19940 M:      Juerg Haefliger <juergh@gmail.com>
19941 L:      linux-hwmon@vger.kernel.org
19942 S:      Maintained
19943 F:      Documentation/hwmon/vt1211.rst
19944 F:      drivers/hwmon/vt1211.c
19945
19946 VT8231 HARDWARE MONITOR DRIVER
19947 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
19948 L:      linux-hwmon@vger.kernel.org
19949 S:      Maintained
19950 F:      drivers/hwmon/vt8231.c
19951
19952 VUB300 USB to SDIO/SD/MMC bridge chip
19953 L:      linux-mmc@vger.kernel.org
19954 S:      Orphan
19955 F:      drivers/mmc/host/vub300.c
19956
19957 W1 DALLAS'S 1-WIRE BUS
19958 M:      Evgeniy Polyakov <zbr@ioremap.net>
19959 S:      Maintained
19960 F:      Documentation/devicetree/bindings/w1/
19961 F:      Documentation/w1/
19962 F:      drivers/w1/
19963 F:      include/linux/w1.h
19964
19965 W83791D HARDWARE MONITORING DRIVER
19966 M:      Marc Hulsman <m.hulsman@tudelft.nl>
19967 L:      linux-hwmon@vger.kernel.org
19968 S:      Maintained
19969 F:      Documentation/hwmon/w83791d.rst
19970 F:      drivers/hwmon/w83791d.c
19971
19972 W83793 HARDWARE MONITORING DRIVER
19973 M:      Rudolf Marek <r.marek@assembler.cz>
19974 L:      linux-hwmon@vger.kernel.org
19975 S:      Maintained
19976 F:      Documentation/hwmon/w83793.rst
19977 F:      drivers/hwmon/w83793.c
19978
19979 W83795 HARDWARE MONITORING DRIVER
19980 M:      Jean Delvare <jdelvare@suse.com>
19981 L:      linux-hwmon@vger.kernel.org
19982 S:      Maintained
19983 F:      drivers/hwmon/w83795.c
19984
19985 W83L51xD SD/MMC CARD INTERFACE DRIVER
19986 M:      Pierre Ossman <pierre@ossman.eu>
19987 S:      Maintained
19988 F:      drivers/mmc/host/wbsd.*
19989
19990 WACOM PROTOCOL 4 SERIAL TABLETS
19991 M:      Julian Squires <julian@cipht.net>
19992 M:      Hans de Goede <hdegoede@redhat.com>
19993 L:      linux-input@vger.kernel.org
19994 S:      Maintained
19995 F:      drivers/input/tablet/wacom_serial4.c
19996
19997 WATCHDOG DEVICE DRIVERS
19998 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
19999 M:      Guenter Roeck <linux@roeck-us.net>
20000 L:      linux-watchdog@vger.kernel.org
20001 S:      Maintained
20002 W:      http://www.linux-watchdog.org/
20003 T:      git git://www.linux-watchdog.org/linux-watchdog.git
20004 F:      Documentation/devicetree/bindings/watchdog/
20005 F:      Documentation/watchdog/
20006 F:      drivers/watchdog/
20007 F:      include/linux/watchdog.h
20008 F:      include/uapi/linux/watchdog.h
20009
20010 WHISKEYCOVE PMIC GPIO DRIVER
20011 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
20012 L:      linux-gpio@vger.kernel.org
20013 S:      Maintained
20014 F:      drivers/gpio/gpio-wcove.c
20015
20016 WHWAVE RTC DRIVER
20017 M:      Dianlong Li <long17.cool@163.com>
20018 L:      linux-rtc@vger.kernel.org
20019 S:      Maintained
20020 F:      drivers/rtc/rtc-sd3078.c
20021
20022 WIIMOTE HID DRIVER
20023 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20024 L:      linux-input@vger.kernel.org
20025 S:      Maintained
20026 F:      drivers/hid/hid-wiimote*
20027
20028 WILOCITY WIL6210 WIRELESS DRIVER
20029 M:      Maya Erez <merez@codeaurora.org>
20030 L:      linux-wireless@vger.kernel.org
20031 L:      wil6210@qti.qualcomm.com
20032 S:      Supported
20033 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
20034 F:      drivers/net/wireless/ath/wil6210/
20035
20036 WINBOND CIR DRIVER
20037 M:      David Härdeman <david@hardeman.nu>
20038 S:      Maintained
20039 F:      drivers/media/rc/winbond-cir.c
20040
20041 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
20042 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20043 L:      linux-watchdog@vger.kernel.org
20044 S:      Maintained
20045 F:      drivers/watchdog/ebc-c384_wdt.c
20046
20047 WINSYSTEMS WS16C48 GPIO DRIVER
20048 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20049 L:      linux-gpio@vger.kernel.org
20050 S:      Maintained
20051 F:      drivers/gpio/gpio-ws16c48.c
20052
20053 WIREGUARD SECURE NETWORK TUNNEL
20054 M:      Jason A. Donenfeld <Jason@zx2c4.com>
20055 L:      wireguard@lists.zx2c4.com
20056 L:      netdev@vger.kernel.org
20057 S:      Maintained
20058 F:      drivers/net/wireguard/
20059 F:      tools/testing/selftests/wireguard/
20060
20061 WISTRON LAPTOP BUTTON DRIVER
20062 M:      Miloslav Trmac <mitr@volny.cz>
20063 S:      Maintained
20064 F:      drivers/input/misc/wistron_btns.c
20065
20066 WL3501 WIRELESS PCMCIA CARD DRIVER
20067 L:      linux-wireless@vger.kernel.org
20068 S:      Odd fixes
20069 F:      drivers/net/wireless/wl3501*
20070
20071 WOLFSON MICROELECTRONICS DRIVERS
20072 L:      patches@opensource.cirrus.com
20073 S:      Supported
20074 W:      https://github.com/CirrusLogic/linux-drivers/wiki
20075 T:      git https://github.com/CirrusLogic/linux-drivers.git
20076 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
20077 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
20078 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
20079 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
20080 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
20081 F:      Documentation/devicetree/bindings/sound/wm*
20082 F:      Documentation/hwmon/wm83??.rst
20083 F:      arch/arm/mach-s3c/mach-crag6410*
20084 F:      drivers/clk/clk-wm83*.c
20085 F:      drivers/gpio/gpio-*wm*.c
20086 F:      drivers/gpio/gpio-arizona.c
20087 F:      drivers/hwmon/wm83??-hwmon.c
20088 F:      drivers/input/misc/wm831x-on.c
20089 F:      drivers/input/touchscreen/wm831x-ts.c
20090 F:      drivers/input/touchscreen/wm97*.c
20091 F:      drivers/leds/leds-wm83*.c
20092 F:      drivers/mfd/arizona*
20093 F:      drivers/mfd/cs47l24*
20094 F:      drivers/mfd/wm*.c
20095 F:      drivers/power/supply/wm83*.c
20096 F:      drivers/regulator/arizona*
20097 F:      drivers/regulator/wm8*.c
20098 F:      drivers/rtc/rtc-wm83*.c
20099 F:      drivers/video/backlight/wm83*_bl.c
20100 F:      drivers/watchdog/wm83*_wdt.c
20101 F:      include/linux/mfd/arizona/
20102 F:      include/linux/mfd/wm831x/
20103 F:      include/linux/mfd/wm8350/
20104 F:      include/linux/mfd/wm8400*
20105 F:      include/linux/regulator/arizona*
20106 F:      include/linux/wm97xx.h
20107 F:      include/sound/wm????.h
20108 F:      sound/soc/codecs/arizona*
20109 F:      sound/soc/codecs/cs47l24*
20110 F:      sound/soc/codecs/wm*
20111
20112 WORKQUEUE
20113 M:      Tejun Heo <tj@kernel.org>
20114 R:      Lai Jiangshan <jiangshanlai@gmail.com>
20115 S:      Maintained
20116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
20117 F:      Documentation/core-api/workqueue.rst
20118 F:      include/linux/workqueue.h
20119 F:      kernel/workqueue.c
20120
20121 WWAN DRIVERS
20122 M:      Loic Poulain <loic.poulain@linaro.org>
20123 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
20124 R:      Johannes Berg <johannes@sipsolutions.net>
20125 L:      netdev@vger.kernel.org
20126 S:      Maintained
20127 F:      drivers/net/wwan/
20128 F:      include/linux/wwan.h
20129 F:      include/uapi/linux/wwan.h
20130
20131 X-POWERS AXP288 PMIC DRIVERS
20132 M:      Hans de Goede <hdegoede@redhat.com>
20133 S:      Maintained
20134 F:      drivers/acpi/pmic/intel_pmic_xpower.c
20135 N:      axp288
20136
20137 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
20138 M:      Chen-Yu Tsai <wens@csie.org>
20139 L:      linux-kernel@vger.kernel.org
20140 S:      Maintained
20141 N:      axp[128]
20142
20143 X.25 STACK
20144 M:      Martin Schiller <ms@dev.tdt.de>
20145 L:      linux-x25@vger.kernel.org
20146 S:      Maintained
20147 F:      Documentation/networking/lapb-module.rst
20148 F:      Documentation/networking/x25*
20149 F:      drivers/net/wan/hdlc_x25.c
20150 F:      drivers/net/wan/lapbether.c
20151 F:      include/*/lapb.h
20152 F:      include/net/x25*
20153 F:      include/uapi/linux/x25.h
20154 F:      net/lapb/
20155 F:      net/x25/
20156
20157 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20158 M:      Thomas Gleixner <tglx@linutronix.de>
20159 M:      Ingo Molnar <mingo@redhat.com>
20160 M:      Borislav Petkov <bp@alien8.de>
20161 M:      x86@kernel.org
20162 R:      "H. Peter Anvin" <hpa@zytor.com>
20163 L:      linux-kernel@vger.kernel.org
20164 S:      Maintained
20165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20166 F:      Documentation/devicetree/bindings/x86/
20167 F:      Documentation/x86/
20168 F:      arch/x86/
20169
20170 X86 ENTRY CODE
20171 M:      Andy Lutomirski <luto@kernel.org>
20172 L:      linux-kernel@vger.kernel.org
20173 S:      Maintained
20174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
20175 F:      arch/x86/entry/
20176
20177 X86 MCE INFRASTRUCTURE
20178 M:      Tony Luck <tony.luck@intel.com>
20179 M:      Borislav Petkov <bp@alien8.de>
20180 L:      linux-edac@vger.kernel.org
20181 S:      Maintained
20182 F:      arch/x86/kernel/cpu/mce/*
20183
20184 X86 MICROCODE UPDATE SUPPORT
20185 M:      Borislav Petkov <bp@alien8.de>
20186 S:      Maintained
20187 F:      arch/x86/kernel/cpu/microcode/*
20188
20189 X86 MM
20190 M:      Dave Hansen <dave.hansen@linux.intel.com>
20191 M:      Andy Lutomirski <luto@kernel.org>
20192 M:      Peter Zijlstra <peterz@infradead.org>
20193 L:      linux-kernel@vger.kernel.org
20194 S:      Maintained
20195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20196 F:      arch/x86/mm/
20197
20198 X86 PLATFORM DRIVERS
20199 M:      Hans de Goede <hdegoede@redhat.com>
20200 M:      Mark Gross <mgross@linux.intel.com>
20201 L:      platform-driver-x86@vger.kernel.org
20202 S:      Maintained
20203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20204 F:      drivers/platform/olpc/
20205 F:      drivers/platform/x86/
20206
20207 X86 PLATFORM DRIVERS - ARCH
20208 R:      Darren Hart <dvhart@infradead.org>
20209 R:      Andy Shevchenko <andy@infradead.org>
20210 L:      platform-driver-x86@vger.kernel.org
20211 L:      x86@kernel.org
20212 S:      Maintained
20213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20214 F:      arch/x86/platform
20215
20216 X86 PLATFORM UV HPE SUPERDOME FLEX
20217 M:      Steve Wahl <steve.wahl@hpe.com>
20218 R:      Mike Travis <mike.travis@hpe.com>
20219 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
20220 R:      Russ Anderson <russ.anderson@hpe.com>
20221 S:      Supported
20222 F:      arch/x86/include/asm/uv/
20223 F:      arch/x86/kernel/apic/x2apic_uv_x.c
20224 F:      arch/x86/platform/uv/
20225
20226 X86 VDSO
20227 M:      Andy Lutomirski <luto@kernel.org>
20228 L:      linux-kernel@vger.kernel.org
20229 S:      Maintained
20230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20231 F:      arch/x86/entry/vdso/
20232
20233 XARRAY
20234 M:      Matthew Wilcox <willy@infradead.org>
20235 L:      linux-fsdevel@vger.kernel.org
20236 S:      Supported
20237 F:      Documentation/core-api/xarray.rst
20238 F:      include/linux/idr.h
20239 F:      include/linux/xarray.h
20240 F:      lib/idr.c
20241 F:      lib/xarray.c
20242 F:      tools/testing/radix-tree
20243
20244 XBOX DVD IR REMOTE
20245 M:      Benjamin Valentin <benpicco@googlemail.com>
20246 S:      Maintained
20247 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
20248 F:      drivers/media/rc/xbox_remote.c
20249
20250 XC2028/3028 TUNER DRIVER
20251 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20252 L:      linux-media@vger.kernel.org
20253 S:      Maintained
20254 W:      https://linuxtv.org
20255 T:      git git://linuxtv.org/media_tree.git
20256 F:      drivers/media/tuners/tuner-xc2028.*
20257
20258 XDP (eXpress Data Path)
20259 M:      Alexei Starovoitov <ast@kernel.org>
20260 M:      Daniel Borkmann <daniel@iogearbox.net>
20261 M:      David S. Miller <davem@davemloft.net>
20262 M:      Jakub Kicinski <kuba@kernel.org>
20263 M:      Jesper Dangaard Brouer <hawk@kernel.org>
20264 M:      John Fastabend <john.fastabend@gmail.com>
20265 L:      netdev@vger.kernel.org
20266 L:      bpf@vger.kernel.org
20267 S:      Supported
20268 F:      include/net/xdp.h
20269 F:      include/net/xdp_priv.h
20270 F:      include/trace/events/xdp.h
20271 F:      kernel/bpf/cpumap.c
20272 F:      kernel/bpf/devmap.c
20273 F:      net/core/xdp.c
20274 F:      samples/bpf/xdp*
20275 F:      tools/testing/selftests/bpf/*xdp*
20276 F:      tools/testing/selftests/bpf/*/*xdp*
20277 F:      drivers/net/ethernet/*/*/*/*/*xdp*
20278 F:      drivers/net/ethernet/*/*/*xdp*
20279 K:      (?:\b|_)xdp(?:\b|_)
20280
20281 XDP SOCKETS (AF_XDP)
20282 M:      Björn Töpel <bjorn@kernel.org>
20283 M:      Magnus Karlsson <magnus.karlsson@intel.com>
20284 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
20285 L:      netdev@vger.kernel.org
20286 L:      bpf@vger.kernel.org
20287 S:      Maintained
20288 F:      Documentation/networking/af_xdp.rst
20289 F:      include/net/xdp_sock*
20290 F:      include/net/xsk_buff_pool.h
20291 F:      include/uapi/linux/if_xdp.h
20292 F:      include/uapi/linux/xdp_diag.h
20293 F:      include/net/netns/xdp.h
20294 F:      net/xdp/
20295 F:      samples/bpf/xdpsock*
20296 F:      tools/lib/bpf/xsk*
20297
20298 XEN BLOCK SUBSYSTEM
20299 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
20300 M:      Roger Pau Monné <roger.pau@citrix.com>
20301 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20302 S:      Supported
20303 F:      drivers/block/xen*
20304 F:      drivers/block/xen-blkback/*
20305
20306 XEN HYPERVISOR ARM
20307 M:      Stefano Stabellini <sstabellini@kernel.org>
20308 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20309 S:      Maintained
20310 F:      arch/arm/include/asm/xen/
20311 F:      arch/arm/xen/
20312
20313 XEN HYPERVISOR ARM64
20314 M:      Stefano Stabellini <sstabellini@kernel.org>
20315 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20316 S:      Maintained
20317 F:      arch/arm64/include/asm/xen/
20318 F:      arch/arm64/xen/
20319
20320 XEN HYPERVISOR INTERFACE
20321 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
20322 M:      Juergen Gross <jgross@suse.com>
20323 R:      Stefano Stabellini <sstabellini@kernel.org>
20324 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20325 S:      Supported
20326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
20327 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
20328 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
20329 F:      arch/x86/include/asm/pvclock-abi.h
20330 F:      arch/x86/include/asm/xen/
20331 F:      arch/x86/platform/pvh/
20332 F:      arch/x86/xen/
20333 F:      drivers/*/xen-*front.c
20334 F:      drivers/xen/
20335 F:      include/uapi/xen/
20336 F:      include/xen/
20337
20338 XEN NETWORK BACKEND DRIVER
20339 M:      Wei Liu <wei.liu@kernel.org>
20340 M:      Paul Durrant <paul@xen.org>
20341 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20342 L:      netdev@vger.kernel.org
20343 S:      Supported
20344 F:      drivers/net/xen-netback/*
20345
20346 XEN PCI SUBSYSTEM
20347 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
20348 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20349 S:      Supported
20350 F:      arch/x86/pci/*xen*
20351 F:      drivers/pci/*xen*
20352
20353 XEN PVSCSI DRIVERS
20354 M:      Juergen Gross <jgross@suse.com>
20355 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20356 L:      linux-scsi@vger.kernel.org
20357 S:      Supported
20358 F:      drivers/scsi/xen-scsifront.c
20359 F:      drivers/xen/xen-scsiback.c
20360 F:      include/xen/interface/io/vscsiif.h
20361
20362 XEN SOUND FRONTEND DRIVER
20363 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
20364 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20365 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20366 S:      Supported
20367 F:      sound/xen/*
20368
20369 XEN SWIOTLB SUBSYSTEM
20370 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
20371 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20372 L:      iommu@lists.linux-foundation.org
20373 S:      Supported
20374 F:      arch/x86/xen/*swiotlb*
20375 F:      drivers/xen/*swiotlb*
20376
20377 XFS FILESYSTEM
20378 C:      irc://irc.oftc.net/xfs
20379 M:      Darrick J. Wong <djwong@kernel.org>
20380 M:      linux-xfs@vger.kernel.org
20381 L:      linux-xfs@vger.kernel.org
20382 S:      Supported
20383 W:      http://xfs.org/
20384 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
20385 F:      Documentation/ABI/testing/sysfs-fs-xfs
20386 F:      Documentation/admin-guide/xfs.rst
20387 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
20388 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
20389 F:      fs/xfs/
20390 F:      include/uapi/linux/dqblk_xfs.h
20391 F:      include/uapi/linux/fsmap.h
20392
20393 XILINX AXI ETHERNET DRIVER
20394 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
20395 S:      Maintained
20396 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
20397
20398 XILINX CAN DRIVER
20399 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
20400 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
20401 L:      linux-can@vger.kernel.org
20402 S:      Maintained
20403 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
20404 F:      drivers/net/can/xilinx_can.c
20405
20406 XILINX GPIO DRIVER
20407 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
20408 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
20409 R:      Michal Simek <michal.simek@xilinx.com>
20410 S:      Maintained
20411 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20412 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.txt
20413 F:      drivers/gpio/gpio-xilinx.c
20414 F:      drivers/gpio/gpio-zynq.c
20415
20416 XILINX SD-FEC IP CORES
20417 M:      Derek Kiernan <derek.kiernan@xilinx.com>
20418 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
20419 S:      Maintained
20420 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
20421 F:      Documentation/misc-devices/xilinx_sdfec.rst
20422 F:      drivers/misc/Kconfig
20423 F:      drivers/misc/Makefile
20424 F:      drivers/misc/xilinx_sdfec.c
20425 F:      include/uapi/misc/xilinx_sdfec.h
20426
20427 XILINX UARTLITE SERIAL DRIVER
20428 M:      Peter Korsgaard <jacmet@sunsite.dk>
20429 L:      linux-serial@vger.kernel.org
20430 S:      Maintained
20431 F:      drivers/tty/serial/uartlite.c
20432
20433 XILINX VIDEO IP CORES
20434 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20435 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20436 L:      linux-media@vger.kernel.org
20437 S:      Supported
20438 T:      git git://linuxtv.org/media_tree.git
20439 F:      Documentation/devicetree/bindings/media/xilinx/
20440 F:      drivers/media/platform/xilinx/
20441 F:      include/uapi/linux/xilinx-v4l2-controls.h
20442
20443 XILINX ZYNQMP DPDMA DRIVER
20444 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20445 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20446 L:      dmaengine@vger.kernel.org
20447 S:      Supported
20448 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20449 F:      drivers/dma/xilinx/xilinx_dpdma.c
20450 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20451
20452 XILINX ZYNQMP PSGTR PHY DRIVER
20453 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
20454 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20455 L:      linux-kernel@vger.kernel.org
20456 S:      Supported
20457 T:      git https://github.com/Xilinx/linux-xlnx.git
20458 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20459 F:      drivers/phy/xilinx/phy-zynqmp.c
20460
20461 XILLYBUS DRIVER
20462 M:      Eli Billauer <eli.billauer@gmail.com>
20463 L:      linux-kernel@vger.kernel.org
20464 S:      Supported
20465 F:      drivers/char/xillybus/
20466
20467 XLP9XX I2C DRIVER
20468 M:      George Cherian <gcherian@marvell.com>
20469 L:      linux-i2c@vger.kernel.org
20470 S:      Supported
20471 W:      http://www.marvell.com
20472 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20473 F:      drivers/i2c/busses/i2c-xlp9xx.c
20474
20475 XRA1403 GPIO EXPANDER
20476 M:      Nandor Han <nandor.han@ge.com>
20477 M:      Semi Malinen <semi.malinen@ge.com>
20478 L:      linux-gpio@vger.kernel.org
20479 S:      Maintained
20480 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20481 F:      drivers/gpio/gpio-xra1403.c
20482
20483 XTENSA XTFPGA PLATFORM SUPPORT
20484 M:      Max Filippov <jcmvbkbc@gmail.com>
20485 L:      linux-xtensa@linux-xtensa.org
20486 S:      Maintained
20487 F:      drivers/spi/spi-xtensa-xtfpga.c
20488 F:      sound/soc/xtensa/xtfpga-i2s.c
20489
20490 YAM DRIVER FOR AX.25
20491 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
20492 L:      linux-hams@vger.kernel.org
20493 S:      Maintained
20494 F:      drivers/net/hamradio/yam*
20495 F:      include/linux/yam.h
20496
20497 YAMA SECURITY MODULE
20498 M:      Kees Cook <keescook@chromium.org>
20499 S:      Supported
20500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20501 F:      Documentation/admin-guide/LSM/Yama.rst
20502 F:      security/yama/
20503
20504 YEALINK PHONE DRIVER
20505 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
20506 L:      usbb2k-api-dev@nongnu.org
20507 S:      Maintained
20508 F:      Documentation/input/devices/yealink.rst
20509 F:      drivers/input/misc/yealink.*
20510
20511 Z8530 DRIVER FOR AX.25
20512 M:      Joerg Reuter <jreuter@yaina.de>
20513 L:      linux-hams@vger.kernel.org
20514 S:      Maintained
20515 W:      http://yaina.de/jreuter/
20516 W:      http://www.qsl.net/dl1bke/
20517 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
20518 F:      drivers/net/hamradio/*scc.c
20519 F:      drivers/net/hamradio/z8530.h
20520
20521 ZBUD COMPRESSED PAGE ALLOCATOR
20522 M:      Seth Jennings <sjenning@redhat.com>
20523 M:      Dan Streetman <ddstreet@ieee.org>
20524 L:      linux-mm@kvack.org
20525 S:      Maintained
20526 F:      mm/zbud.c
20527
20528 ZD1211RW WIRELESS DRIVER
20529 M:      Daniel Drake <dsd@gentoo.org>
20530 M:      Ulrich Kunitz <kune@deine-taler.de>
20531 L:      linux-wireless@vger.kernel.org
20532 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
20533 S:      Maintained
20534 W:      http://zd1211.ath.cx/wiki/DriverRewrite
20535 F:      drivers/net/wireless/zydas/zd1211rw/
20536
20537 ZD1301 MEDIA DRIVER
20538 M:      Antti Palosaari <crope@iki.fi>
20539 L:      linux-media@vger.kernel.org
20540 S:      Maintained
20541 W:      https://linuxtv.org/
20542 W:      http://palosaari.fi/linux/
20543 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20544 F:      drivers/media/usb/dvb-usb-v2/zd1301*
20545
20546 ZD1301_DEMOD MEDIA DRIVER
20547 M:      Antti Palosaari <crope@iki.fi>
20548 L:      linux-media@vger.kernel.org
20549 S:      Maintained
20550 W:      https://linuxtv.org/
20551 W:      http://palosaari.fi/linux/
20552 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20553 F:      drivers/media/dvb-frontends/zd1301_demod*
20554
20555 ZHAOXIN PROCESSOR SUPPORT
20556 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
20557 L:      linux-kernel@vger.kernel.org
20558 S:      Maintained
20559 F:      arch/x86/kernel/cpu/zhaoxin.c
20560
20561 ZONEFS FILESYSTEM
20562 M:      Damien Le Moal <damien.lemoal@wdc.com>
20563 M:      Naohiro Aota <naohiro.aota@wdc.com>
20564 R:      Johannes Thumshirn <jth@kernel.org>
20565 L:      linux-fsdevel@vger.kernel.org
20566 S:      Maintained
20567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
20568 F:      Documentation/filesystems/zonefs.rst
20569 F:      fs/zonefs/
20570
20571 ZPOOL COMPRESSED PAGE STORAGE API
20572 M:      Dan Streetman <ddstreet@ieee.org>
20573 L:      linux-mm@kvack.org
20574 S:      Maintained
20575 F:      include/linux/zpool.h
20576 F:      mm/zpool.c
20577
20578 ZR36067 VIDEO FOR LINUX DRIVER
20579 M:      Corentin Labbe <clabbe@baylibre.com>
20580 L:      mjpeg-users@lists.sourceforge.net
20581 L:      linux-media@vger.kernel.org
20582 S:      Maintained
20583 W:      http://mjpeg.sourceforge.net/driver-zoran/
20584 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20585 F:      Documentation/driver-api/media/drivers/zoran.rst
20586 F:      drivers/staging/media/zoran/
20587
20588 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
20589 M:      Minchan Kim <minchan@kernel.org>
20590 M:      Nitin Gupta <ngupta@vflare.org>
20591 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20592 L:      linux-kernel@vger.kernel.org
20593 S:      Maintained
20594 F:      Documentation/admin-guide/blockdev/zram.rst
20595 F:      drivers/block/zram/
20596
20597 ZS DECSTATION Z85C30 SERIAL DRIVER
20598 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20599 S:      Maintained
20600 F:      drivers/tty/serial/zs.*
20601
20602 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
20603 M:      Minchan Kim <minchan@kernel.org>
20604 M:      Nitin Gupta <ngupta@vflare.org>
20605 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20606 L:      linux-mm@kvack.org
20607 S:      Maintained
20608 F:      Documentation/vm/zsmalloc.rst
20609 F:      include/linux/zsmalloc.h
20610 F:      mm/zsmalloc.c
20611
20612 ZSWAP COMPRESSED SWAP CACHING
20613 M:      Seth Jennings <sjenning@redhat.com>
20614 M:      Dan Streetman <ddstreet@ieee.org>
20615 M:      Vitaly Wool <vitaly.wool@konsulko.com>
20616 L:      linux-mm@kvack.org
20617 S:      Maintained
20618 F:      mm/zswap.c
20619
20620 THE REST
20621 M:      Linus Torvalds <torvalds@linux-foundation.org>
20622 L:      linux-kernel@vger.kernel.org
20623 S:      Buried alive in reporters
20624 Q:      http://patchwork.kernel.org/project/LKML/list/
20625 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
20626 F:      *
20627 F:      */