Merge tag 'net-next-5.15' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev...
[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 CORE, KOBJECTS, DEBUGFS AND SYSFS
5729 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5730 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5731 S:      Supported
5732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5733 F:      Documentation/core-api/kobject.rst
5734 F:      drivers/base/
5735 F:      fs/debugfs/
5736 F:      fs/sysfs/
5737 F:      include/linux/debugfs.h
5738 F:      include/linux/kobj*
5739 F:      lib/kobj*
5740
5741 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5742 M:      Nishanth Menon <nm@ti.com>
5743 L:      linux-pm@vger.kernel.org
5744 S:      Maintained
5745 F:      drivers/soc/ti/smartreflex.c
5746 F:      include/linux/power/smartreflex.h
5747
5748 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5749 M:      Maxime Ripard <mripard@kernel.org>
5750 M:      Chen-Yu Tsai <wens@csie.org>
5751 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
5752 L:      dri-devel@lists.freedesktop.org
5753 S:      Supported
5754 T:      git git://anongit.freedesktop.org/drm/drm-misc
5755 F:      drivers/gpu/drm/sun4i/sun8i*
5756
5757 DRM DRIVER FOR ARM PL111 CLCD
5758 M:      Emma Anholt <emma@anholt.net>
5759 S:      Supported
5760 T:      git git://anongit.freedesktop.org/drm/drm-misc
5761 F:      drivers/gpu/drm/pl111/
5762
5763 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5764 M:      Linus Walleij <linus.walleij@linaro.org>
5765 S:      Maintained
5766 T:      git git://anongit.freedesktop.org/drm/drm-misc
5767 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5768 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5769
5770 DRM DRIVER FOR ASPEED BMC GFX
5771 M:      Joel Stanley <joel@jms.id.au>
5772 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5773 S:      Supported
5774 T:      git git://anongit.freedesktop.org/drm/drm-misc
5775 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5776 F:      drivers/gpu/drm/aspeed/
5777
5778 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5779 M:      Dave Airlie <airlied@redhat.com>
5780 R:      Thomas Zimmermann <tzimmermann@suse.de>
5781 L:      dri-devel@lists.freedesktop.org
5782 S:      Supported
5783 T:      git git://anongit.freedesktop.org/drm/drm-misc
5784 F:      drivers/gpu/drm/ast/
5785
5786 DRM DRIVER FOR BOCHS VIRTUAL GPU
5787 M:      Gerd Hoffmann <kraxel@redhat.com>
5788 L:      virtualization@lists.linux-foundation.org
5789 S:      Maintained
5790 T:      git git://anongit.freedesktop.org/drm/drm-misc
5791 F:      drivers/gpu/drm/bochs/
5792
5793 DRM DRIVER FOR BOE HIMAX8279D PANELS
5794 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5795 S:      Maintained
5796 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5797 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5798
5799 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5800 M:      Jagan Teki <jagan@amarulasolutions.com>
5801 S:      Maintained
5802 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5803 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
5804
5805 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5806 M:      Linus Walleij <linus.walleij@linaro.org>
5807 S:      Maintained
5808 T:      git git://anongit.freedesktop.org/drm/drm-misc
5809 F:      drivers/gpu/drm/tve200/
5810
5811 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5812 M:      Icenowy Zheng <icenowy@aosc.io>
5813 S:      Maintained
5814 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5815 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5816
5817 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5818 M:      Jagan Teki <jagan@amarulasolutions.com>
5819 S:      Maintained
5820 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5821 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5822
5823 DRM DRIVER FOR GENERIC USB DISPLAY
5824 M:      Noralf Trønnes <noralf@tronnes.org>
5825 S:      Maintained
5826 W:      https://github.com/notro/gud/wiki
5827 T:      git git://anongit.freedesktop.org/drm/drm-misc
5828 F:      drivers/gpu/drm/gud/
5829 F:      include/drm/gud.h
5830
5831 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5832 M:      Hans de Goede <hdegoede@redhat.com>
5833 S:      Maintained
5834 T:      git git://anongit.freedesktop.org/drm/drm-misc
5835 F:      drivers/gpu/drm/tiny/gm12u320.c
5836
5837 DRM DRIVER FOR HX8357D PANELS
5838 M:      Emma Anholt <emma@anholt.net>
5839 S:      Maintained
5840 T:      git git://anongit.freedesktop.org/drm/drm-misc
5841 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5842 F:      drivers/gpu/drm/tiny/hx8357d.c
5843
5844 DRM DRIVER FOR ILITEK ILI9225 PANELS
5845 M:      David Lechner <david@lechnology.com>
5846 S:      Maintained
5847 T:      git git://anongit.freedesktop.org/drm/drm-misc
5848 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5849 F:      drivers/gpu/drm/tiny/ili9225.c
5850
5851 DRM DRIVER FOR ILITEK ILI9486 PANELS
5852 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5853 S:      Maintained
5854 T:      git git://anongit.freedesktop.org/drm/drm-misc
5855 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5856 F:      drivers/gpu/drm/tiny/ili9486.c
5857
5858 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5859 S:      Orphan / Obsolete
5860 F:      drivers/gpu/drm/i810/
5861 F:      include/uapi/drm/i810_drm.h
5862
5863 DRM DRIVER FOR LVDS PANELS
5864 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5865 L:      dri-devel@lists.freedesktop.org
5866 T:      git git://anongit.freedesktop.org/drm/drm-misc
5867 S:      Maintained
5868 F:      drivers/gpu/drm/panel/panel-lvds.c
5869 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5870
5871 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5872 M:      Guido Günther <agx@sigxcpu.org>
5873 R:      Purism Kernel Team <kernel@puri.sm>
5874 S:      Maintained
5875 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5876 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5877
5878 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5879 S:      Orphan / Obsolete
5880 F:      drivers/gpu/drm/mga/
5881 F:      include/uapi/drm/mga_drm.h
5882
5883 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5884 M:      Dave Airlie <airlied@redhat.com>
5885 R:      Thomas Zimmermann <tzimmermann@suse.de>
5886 L:      dri-devel@lists.freedesktop.org
5887 S:      Supported
5888 T:      git git://anongit.freedesktop.org/drm/drm-misc
5889 F:      drivers/gpu/drm/mgag200/
5890
5891 DRM DRIVER FOR MI0283QT
5892 M:      Noralf Trønnes <noralf@tronnes.org>
5893 S:      Maintained
5894 T:      git git://anongit.freedesktop.org/drm/drm-misc
5895 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5896 F:      drivers/gpu/drm/tiny/mi0283qt.c
5897
5898 DRM DRIVER FOR MSM ADRENO GPU
5899 M:      Rob Clark <robdclark@gmail.com>
5900 M:      Sean Paul <sean@poorly.run>
5901 L:      linux-arm-msm@vger.kernel.org
5902 L:      dri-devel@lists.freedesktop.org
5903 L:      freedreno@lists.freedesktop.org
5904 S:      Maintained
5905 T:      git https://gitlab.freedesktop.org/drm/msm.git
5906 F:      Documentation/devicetree/bindings/display/msm/
5907 F:      drivers/gpu/drm/msm/
5908 F:      include/uapi/drm/msm_drm.h
5909
5910 DRM DRIVER FOR NOVATEK NT35510 PANELS
5911 M:      Linus Walleij <linus.walleij@linaro.org>
5912 S:      Maintained
5913 T:      git git://anongit.freedesktop.org/drm/drm-misc
5914 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5915 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5916
5917 DRM DRIVER FOR NOVATEK NT36672A PANELS
5918 M:      Sumit Semwal <sumit.semwal@linaro.org>
5919 S:      Maintained
5920 T:      git git://anongit.freedesktop.org/drm/drm-misc
5921 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
5922 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
5923
5924 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5925 M:      Ben Skeggs <bskeggs@redhat.com>
5926 L:      dri-devel@lists.freedesktop.org
5927 L:      nouveau@lists.freedesktop.org
5928 S:      Supported
5929 T:      git git://github.com/skeggsb/linux
5930 F:      drivers/gpu/drm/nouveau/
5931 F:      include/uapi/drm/nouveau_drm.h
5932
5933 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5934 M:      Stefan Mavrodiev <stefan@olimex.com>
5935 S:      Maintained
5936 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5937 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5938
5939 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5940 M:      Noralf Trønnes <noralf@tronnes.org>
5941 S:      Maintained
5942 T:      git git://anongit.freedesktop.org/drm/drm-misc
5943 F:      Documentation/devicetree/bindings/display/repaper.txt
5944 F:      drivers/gpu/drm/tiny/repaper.c
5945
5946 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5947 M:      Dave Airlie <airlied@redhat.com>
5948 M:      Gerd Hoffmann <kraxel@redhat.com>
5949 L:      virtualization@lists.linux-foundation.org
5950 S:      Obsolete
5951 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5952 T:      git git://anongit.freedesktop.org/drm/drm-misc
5953 F:      drivers/gpu/drm/tiny/cirrus.c
5954
5955 DRM DRIVER FOR QXL VIRTUAL GPU
5956 M:      Dave Airlie <airlied@redhat.com>
5957 M:      Gerd Hoffmann <kraxel@redhat.com>
5958 L:      virtualization@lists.linux-foundation.org
5959 L:      spice-devel@lists.freedesktop.org
5960 S:      Maintained
5961 T:      git git://anongit.freedesktop.org/drm/drm-misc
5962 F:      drivers/gpu/drm/qxl/
5963 F:      include/uapi/drm/qxl_drm.h
5964
5965 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5966 S:      Orphan / Obsolete
5967 F:      drivers/gpu/drm/r128/
5968 F:      include/uapi/drm/r128_drm.h
5969
5970 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5971 M:      Robert Chiras <robert.chiras@nxp.com>
5972 S:      Maintained
5973 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5974 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5975
5976 DRM DRIVER FOR SITRONIX ST7703 PANELS
5977 M:      Guido Günther <agx@sigxcpu.org>
5978 R:      Purism Kernel Team <kernel@puri.sm>
5979 R:      Ondrej Jirman <megous@megous.com>
5980 S:      Maintained
5981 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
5982 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
5983
5984 DRM DRIVER FOR SAVAGE VIDEO CARDS
5985 S:      Orphan / Obsolete
5986 F:      drivers/gpu/drm/savage/
5987 F:      include/uapi/drm/savage_drm.h
5988
5989 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
5990 M:      Thomas Zimmermann <tzimmermann@suse.de>
5991 L:      dri-devel@lists.freedesktop.org
5992 S:      Maintained
5993 T:      git git://anongit.freedesktop.org/drm/drm-misc
5994 F:      drivers/gpu/drm/tiny/simpledrm.c
5995
5996 DRM DRIVER FOR SIS VIDEO CARDS
5997 S:      Orphan / Obsolete
5998 F:      drivers/gpu/drm/sis/
5999 F:      include/uapi/drm/sis_drm.h
6000
6001 DRM DRIVER FOR SITRONIX ST7586 PANELS
6002 M:      David Lechner <david@lechnology.com>
6003 S:      Maintained
6004 T:      git git://anongit.freedesktop.org/drm/drm-misc
6005 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6006 F:      drivers/gpu/drm/tiny/st7586.c
6007
6008 DRM DRIVER FOR SITRONIX ST7701 PANELS
6009 M:      Jagan Teki <jagan@amarulasolutions.com>
6010 S:      Maintained
6011 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6012 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6013
6014 DRM DRIVER FOR SITRONIX ST7735R PANELS
6015 M:      David Lechner <david@lechnology.com>
6016 S:      Maintained
6017 T:      git git://anongit.freedesktop.org/drm/drm-misc
6018 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6019 F:      drivers/gpu/drm/tiny/st7735r.c
6020
6021 DRM DRIVER FOR SONY ACX424AKP PANELS
6022 M:      Linus Walleij <linus.walleij@linaro.org>
6023 S:      Maintained
6024 T:      git git://anongit.freedesktop.org/drm/drm-misc
6025 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
6026
6027 DRM DRIVER FOR ST-ERICSSON MCDE
6028 M:      Linus Walleij <linus.walleij@linaro.org>
6029 S:      Maintained
6030 T:      git git://anongit.freedesktop.org/drm/drm-misc
6031 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6032 F:      drivers/gpu/drm/mcde/
6033
6034 DRM DRIVER FOR TDFX VIDEO CARDS
6035 S:      Orphan / Obsolete
6036 F:      drivers/gpu/drm/tdfx/
6037
6038 DRM DRIVER FOR TPO TPG110 PANELS
6039 M:      Linus Walleij <linus.walleij@linaro.org>
6040 S:      Maintained
6041 T:      git git://anongit.freedesktop.org/drm/drm-misc
6042 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6043 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6044
6045 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6046 M:      Dave Airlie <airlied@redhat.com>
6047 R:      Sean Paul <sean@poorly.run>
6048 R:      Thomas Zimmermann <tzimmermann@suse.de>
6049 L:      dri-devel@lists.freedesktop.org
6050 S:      Supported
6051 T:      git git://anongit.freedesktop.org/drm/drm-misc
6052 F:      drivers/gpu/drm/udl/
6053
6054 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6055 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6056 M:      Melissa Wen <melissa.srw@gmail.com>
6057 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6058 R:      Daniel Vetter <daniel@ffwll.ch>
6059 L:      dri-devel@lists.freedesktop.org
6060 S:      Maintained
6061 T:      git git://anongit.freedesktop.org/drm/drm-misc
6062 F:      Documentation/gpu/vkms.rst
6063 F:      drivers/gpu/drm/vkms/
6064
6065 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6066 M:      Hans de Goede <hdegoede@redhat.com>
6067 L:      dri-devel@lists.freedesktop.org
6068 S:      Maintained
6069 T:      git git://anongit.freedesktop.org/drm/drm-misc
6070 F:      drivers/gpu/drm/vboxvideo/
6071
6072 DRM DRIVER FOR VMWARE VIRTUAL GPU
6073 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
6074 M:      Roland Scheidegger <sroland@vmware.com>
6075 M:      Zack Rusin <zackr@vmware.com>
6076 L:      dri-devel@lists.freedesktop.org
6077 S:      Supported
6078 T:      git git://people.freedesktop.org/~sroland/linux
6079 F:      drivers/gpu/drm/vmwgfx/
6080 F:      include/uapi/drm/vmwgfx_drm.h
6081
6082 DRM DRIVERS
6083 M:      David Airlie <airlied@linux.ie>
6084 M:      Daniel Vetter <daniel@ffwll.ch>
6085 L:      dri-devel@lists.freedesktop.org
6086 S:      Maintained
6087 B:      https://gitlab.freedesktop.org/drm
6088 C:      irc://chat.freenode.net/dri-devel
6089 T:      git git://anongit.freedesktop.org/drm/drm
6090 F:      Documentation/devicetree/bindings/display/
6091 F:      Documentation/devicetree/bindings/gpu/
6092 F:      Documentation/gpu/
6093 F:      drivers/gpu/drm/
6094 F:      drivers/gpu/vga/
6095 F:      include/drm/
6096 F:      include/linux/vga*
6097 F:      include/uapi/drm/
6098
6099 DRM DRIVERS AND MISC GPU PATCHES
6100 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6101 M:      Maxime Ripard <mripard@kernel.org>
6102 M:      Thomas Zimmermann <tzimmermann@suse.de>
6103 S:      Maintained
6104 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6105 T:      git git://anongit.freedesktop.org/drm/drm-misc
6106 F:      Documentation/gpu/
6107 F:      drivers/gpu/drm/*
6108 F:      drivers/gpu/vga/
6109 F:      include/drm/drm*
6110 F:      include/linux/vga*
6111 F:      include/uapi/drm/drm*
6112
6113 DRM DRIVERS FOR ALLWINNER A10
6114 M:      Maxime Ripard <mripard@kernel.org>
6115 M:      Chen-Yu Tsai <wens@csie.org>
6116 L:      dri-devel@lists.freedesktop.org
6117 S:      Supported
6118 T:      git git://anongit.freedesktop.org/drm/drm-misc
6119 F:      Documentation/devicetree/bindings/display/allwinner*
6120 F:      drivers/gpu/drm/sun4i/
6121
6122 DRM DRIVERS FOR AMLOGIC SOCS
6123 M:      Neil Armstrong <narmstrong@baylibre.com>
6124 L:      dri-devel@lists.freedesktop.org
6125 L:      linux-amlogic@lists.infradead.org
6126 S:      Supported
6127 W:      http://linux-meson.com/
6128 T:      git git://anongit.freedesktop.org/drm/drm-misc
6129 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6130 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6131 F:      Documentation/gpu/meson.rst
6132 F:      drivers/gpu/drm/meson/
6133
6134 DRM DRIVERS FOR ATMEL HLCDC
6135 M:      Sam Ravnborg <sam@ravnborg.org>
6136 M:      Boris Brezillon <bbrezillon@kernel.org>
6137 L:      dri-devel@lists.freedesktop.org
6138 S:      Supported
6139 T:      git git://anongit.freedesktop.org/drm/drm-misc
6140 F:      Documentation/devicetree/bindings/display/atmel/
6141 F:      drivers/gpu/drm/atmel-hlcdc/
6142
6143 DRM DRIVERS FOR BRIDGE CHIPS
6144 M:      Andrzej Hajda <a.hajda@samsung.com>
6145 M:      Neil Armstrong <narmstrong@baylibre.com>
6146 M:      Robert Foss <robert.foss@linaro.org>
6147 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6148 R:      Jonas Karlman <jonas@kwiboo.se>
6149 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6150 S:      Maintained
6151 T:      git git://anongit.freedesktop.org/drm/drm-misc
6152 F:      drivers/gpu/drm/bridge/
6153
6154 DRM DRIVERS FOR EXYNOS
6155 M:      Inki Dae <inki.dae@samsung.com>
6156 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6157 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6158 M:      Kyungmin Park <kyungmin.park@samsung.com>
6159 L:      dri-devel@lists.freedesktop.org
6160 S:      Supported
6161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6162 F:      Documentation/devicetree/bindings/display/exynos/
6163 F:      drivers/gpu/drm/exynos/
6164 F:      include/uapi/drm/exynos_drm.h
6165
6166 DRM DRIVERS FOR FREESCALE DCU
6167 M:      Stefan Agner <stefan@agner.ch>
6168 M:      Alison Wang <alison.wang@nxp.com>
6169 L:      dri-devel@lists.freedesktop.org
6170 S:      Supported
6171 T:      git git://anongit.freedesktop.org/drm/drm-misc
6172 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6173 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6174 F:      drivers/gpu/drm/fsl-dcu/
6175
6176 DRM DRIVERS FOR FREESCALE IMX
6177 M:      Philipp Zabel <p.zabel@pengutronix.de>
6178 L:      dri-devel@lists.freedesktop.org
6179 S:      Maintained
6180 F:      Documentation/devicetree/bindings/display/imx/
6181 F:      drivers/gpu/drm/imx/
6182 F:      drivers/gpu/ipu-v3/
6183
6184 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6185 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6186 L:      dri-devel@lists.freedesktop.org
6187 S:      Maintained
6188 T:      git git://github.com/patjak/drm-gma500
6189 F:      drivers/gpu/drm/gma500/
6190
6191 DRM DRIVERS FOR HISILICON
6192 M:      Xinliang Liu <xinliang.liu@linaro.org>
6193 M:      Tian Tao  <tiantao6@hisilicon.com>
6194 R:      John Stultz <john.stultz@linaro.org>
6195 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6196 R:      Chen Feng <puck.chen@hisilicon.com>
6197 L:      dri-devel@lists.freedesktop.org
6198 S:      Maintained
6199 T:      git git://anongit.freedesktop.org/drm/drm-misc
6200 F:      Documentation/devicetree/bindings/display/hisilicon/
6201 F:      drivers/gpu/drm/hisilicon/
6202
6203 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6204 M:      Deepak Rawat <drawat.floss@gmail.com>
6205 L:      linux-hyperv@vger.kernel.org
6206 L:      dri-devel@lists.freedesktop.org
6207 S:      Maintained
6208 T:      git git://anongit.freedesktop.org/drm/drm-misc
6209 F:      drivers/gpu/drm/hyperv
6210
6211 DRM DRIVERS FOR LIMA
6212 M:      Qiang Yu <yuq825@gmail.com>
6213 L:      dri-devel@lists.freedesktop.org
6214 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6215 S:      Maintained
6216 T:      git git://anongit.freedesktop.org/drm/drm-misc
6217 F:      drivers/gpu/drm/lima/
6218 F:      include/uapi/drm/lima_drm.h
6219
6220 DRM DRIVERS FOR MEDIATEK
6221 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6222 M:      Philipp Zabel <p.zabel@pengutronix.de>
6223 L:      dri-devel@lists.freedesktop.org
6224 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6225 S:      Supported
6226 F:      Documentation/devicetree/bindings/display/mediatek/
6227 F:      drivers/gpu/drm/mediatek/
6228 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6229 F:      drivers/phy/mediatek/phy-mtk-mipi*
6230
6231 DRM DRIVERS FOR NVIDIA TEGRA
6232 M:      Thierry Reding <thierry.reding@gmail.com>
6233 L:      dri-devel@lists.freedesktop.org
6234 L:      linux-tegra@vger.kernel.org
6235 S:      Supported
6236 T:      git git://anongit.freedesktop.org/tegra/linux.git
6237 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6238 F:      drivers/gpu/drm/tegra/
6239 F:      drivers/gpu/host1x/
6240 F:      include/linux/host1x.h
6241 F:      include/uapi/drm/tegra_drm.h
6242
6243 DRM DRIVERS FOR RENESAS
6244 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6245 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6246 L:      dri-devel@lists.freedesktop.org
6247 L:      linux-renesas-soc@vger.kernel.org
6248 S:      Supported
6249 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6250 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6251 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6252 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6253 F:      drivers/gpu/drm/rcar-du/
6254 F:      drivers/gpu/drm/shmobile/
6255 F:      include/linux/platform_data/shmob_drm.h
6256
6257 DRM DRIVERS FOR ROCKCHIP
6258 M:      Sandy Huang <hjc@rock-chips.com>
6259 M:      Heiko Stübner <heiko@sntech.de>
6260 L:      dri-devel@lists.freedesktop.org
6261 S:      Maintained
6262 T:      git git://anongit.freedesktop.org/drm/drm-misc
6263 F:      Documentation/devicetree/bindings/display/rockchip/
6264 F:      drivers/gpu/drm/rockchip/
6265
6266 DRM DRIVERS FOR STI
6267 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6268 L:      dri-devel@lists.freedesktop.org
6269 S:      Maintained
6270 T:      git git://anongit.freedesktop.org/drm/drm-misc
6271 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6272 F:      drivers/gpu/drm/sti
6273
6274 DRM DRIVERS FOR STM
6275 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6276 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6277 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6278 L:      dri-devel@lists.freedesktop.org
6279 S:      Maintained
6280 T:      git git://anongit.freedesktop.org/drm/drm-misc
6281 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6282 F:      drivers/gpu/drm/stm
6283
6284 DRM DRIVERS FOR TI KEYSTONE
6285 M:      Jyri Sarha <jyri.sarha@iki.fi>
6286 M:      Tomi Valkeinen <tomba@kernel.org>
6287 L:      dri-devel@lists.freedesktop.org
6288 S:      Maintained
6289 T:      git git://anongit.freedesktop.org/drm/drm-misc
6290 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6291 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6292 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6293 F:      drivers/gpu/drm/tidss/
6294
6295 DRM DRIVERS FOR TI LCDC
6296 M:      Jyri Sarha <jyri.sarha@iki.fi>
6297 R:      Tomi Valkeinen <tomba@kernel.org>
6298 L:      dri-devel@lists.freedesktop.org
6299 S:      Maintained
6300 F:      Documentation/devicetree/bindings/display/tilcdc/
6301 F:      drivers/gpu/drm/tilcdc/
6302
6303 DRM DRIVERS FOR TI OMAP
6304 M:      Tomi Valkeinen <tomba@kernel.org>
6305 L:      dri-devel@lists.freedesktop.org
6306 S:      Maintained
6307 F:      Documentation/devicetree/bindings/display/ti/
6308 F:      drivers/gpu/drm/omapdrm/
6309
6310 DRM DRIVERS FOR V3D
6311 M:      Emma Anholt <emma@anholt.net>
6312 S:      Supported
6313 T:      git git://anongit.freedesktop.org/drm/drm-misc
6314 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6315 F:      drivers/gpu/drm/v3d/
6316 F:      include/uapi/drm/v3d_drm.h
6317
6318 DRM DRIVERS FOR VC4
6319 M:      Emma Anholt <emma@anholt.net>
6320 M:      Maxime Ripard <mripard@kernel.org>
6321 S:      Supported
6322 T:      git git://github.com/anholt/linux
6323 T:      git git://anongit.freedesktop.org/drm/drm-misc
6324 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6325 F:      drivers/gpu/drm/vc4/
6326 F:      include/uapi/drm/vc4_drm.h
6327
6328 DRM DRIVERS FOR VIVANTE GPU IP
6329 M:      Lucas Stach <l.stach@pengutronix.de>
6330 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6331 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6332 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6333 L:      dri-devel@lists.freedesktop.org
6334 S:      Maintained
6335 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6336 F:      drivers/gpu/drm/etnaviv/
6337 F:      include/uapi/drm/etnaviv_drm.h
6338
6339 DRM DRIVERS FOR XEN
6340 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6341 L:      dri-devel@lists.freedesktop.org
6342 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6343 S:      Supported
6344 T:      git git://anongit.freedesktop.org/drm/drm-misc
6345 F:      Documentation/gpu/xen-front.rst
6346 F:      drivers/gpu/drm/xen/
6347
6348 DRM DRIVERS FOR XILINX
6349 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6350 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6351 L:      dri-devel@lists.freedesktop.org
6352 S:      Maintained
6353 T:      git git://anongit.freedesktop.org/drm/drm-misc
6354 F:      Documentation/devicetree/bindings/display/xlnx/
6355 F:      drivers/gpu/drm/xlnx/
6356
6357 DRM PANEL DRIVERS
6358 M:      Thierry Reding <thierry.reding@gmail.com>
6359 R:      Sam Ravnborg <sam@ravnborg.org>
6360 L:      dri-devel@lists.freedesktop.org
6361 S:      Maintained
6362 T:      git git://anongit.freedesktop.org/drm/drm-misc
6363 F:      Documentation/devicetree/bindings/display/panel/
6364 F:      drivers/gpu/drm/drm_panel.c
6365 F:      drivers/gpu/drm/panel/
6366 F:      include/drm/drm_panel.h
6367
6368 DRM TTM SUBSYSTEM
6369 M:      Christian Koenig <christian.koenig@amd.com>
6370 M:      Huang Rui <ray.huang@amd.com>
6371 L:      dri-devel@lists.freedesktop.org
6372 S:      Maintained
6373 T:      git git://anongit.freedesktop.org/drm/drm-misc
6374 F:      drivers/gpu/drm/ttm/
6375 F:      include/drm/ttm/
6376
6377 DSBR100 USB FM RADIO DRIVER
6378 M:      Alexey Klimov <klimov.linux@gmail.com>
6379 L:      linux-media@vger.kernel.org
6380 S:      Maintained
6381 T:      git git://linuxtv.org/media_tree.git
6382 F:      drivers/media/radio/dsbr100.c
6383
6384 DT3155 MEDIA DRIVER
6385 M:      Hans Verkuil <hverkuil@xs4all.nl>
6386 L:      linux-media@vger.kernel.org
6387 S:      Odd Fixes
6388 W:      https://linuxtv.org
6389 T:      git git://linuxtv.org/media_tree.git
6390 F:      drivers/media/pci/dt3155/
6391
6392 DVB_USB_AF9015 MEDIA DRIVER
6393 M:      Antti Palosaari <crope@iki.fi>
6394 L:      linux-media@vger.kernel.org
6395 S:      Maintained
6396 W:      https://linuxtv.org
6397 W:      http://palosaari.fi/linux/
6398 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6399 T:      git git://linuxtv.org/anttip/media_tree.git
6400 F:      drivers/media/usb/dvb-usb-v2/af9015*
6401
6402 DVB_USB_AF9035 MEDIA DRIVER
6403 M:      Antti Palosaari <crope@iki.fi>
6404 L:      linux-media@vger.kernel.org
6405 S:      Maintained
6406 W:      https://linuxtv.org
6407 W:      http://palosaari.fi/linux/
6408 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6409 T:      git git://linuxtv.org/anttip/media_tree.git
6410 F:      drivers/media/usb/dvb-usb-v2/af9035*
6411
6412 DVB_USB_ANYSEE MEDIA DRIVER
6413 M:      Antti Palosaari <crope@iki.fi>
6414 L:      linux-media@vger.kernel.org
6415 S:      Maintained
6416 W:      https://linuxtv.org
6417 W:      http://palosaari.fi/linux/
6418 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6419 T:      git git://linuxtv.org/anttip/media_tree.git
6420 F:      drivers/media/usb/dvb-usb-v2/anysee*
6421
6422 DVB_USB_AU6610 MEDIA DRIVER
6423 M:      Antti Palosaari <crope@iki.fi>
6424 L:      linux-media@vger.kernel.org
6425 S:      Maintained
6426 W:      https://linuxtv.org
6427 W:      http://palosaari.fi/linux/
6428 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6429 T:      git git://linuxtv.org/anttip/media_tree.git
6430 F:      drivers/media/usb/dvb-usb-v2/au6610*
6431
6432 DVB_USB_CE6230 MEDIA DRIVER
6433 M:      Antti Palosaari <crope@iki.fi>
6434 L:      linux-media@vger.kernel.org
6435 S:      Maintained
6436 W:      https://linuxtv.org
6437 W:      http://palosaari.fi/linux/
6438 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6439 T:      git git://linuxtv.org/anttip/media_tree.git
6440 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6441
6442 DVB_USB_CXUSB MEDIA DRIVER
6443 M:      Michael Krufky <mkrufky@linuxtv.org>
6444 L:      linux-media@vger.kernel.org
6445 S:      Maintained
6446 W:      https://linuxtv.org
6447 W:      http://github.com/mkrufky
6448 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6449 T:      git git://linuxtv.org/media_tree.git
6450 F:      drivers/media/usb/dvb-usb/cxusb*
6451
6452 DVB_USB_EC168 MEDIA DRIVER
6453 M:      Antti Palosaari <crope@iki.fi>
6454 L:      linux-media@vger.kernel.org
6455 S:      Maintained
6456 W:      https://linuxtv.org
6457 W:      http://palosaari.fi/linux/
6458 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6459 T:      git git://linuxtv.org/anttip/media_tree.git
6460 F:      drivers/media/usb/dvb-usb-v2/ec168*
6461
6462 DVB_USB_GL861 MEDIA DRIVER
6463 M:      Antti Palosaari <crope@iki.fi>
6464 L:      linux-media@vger.kernel.org
6465 S:      Maintained
6466 W:      https://linuxtv.org
6467 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6468 T:      git git://linuxtv.org/anttip/media_tree.git
6469 F:      drivers/media/usb/dvb-usb-v2/gl861*
6470
6471 DVB_USB_MXL111SF MEDIA DRIVER
6472 M:      Michael Krufky <mkrufky@linuxtv.org>
6473 L:      linux-media@vger.kernel.org
6474 S:      Maintained
6475 W:      https://linuxtv.org
6476 W:      http://github.com/mkrufky
6477 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6478 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6479 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6480
6481 DVB_USB_RTL28XXU MEDIA DRIVER
6482 M:      Antti Palosaari <crope@iki.fi>
6483 L:      linux-media@vger.kernel.org
6484 S:      Maintained
6485 W:      https://linuxtv.org
6486 W:      http://palosaari.fi/linux/
6487 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6488 T:      git git://linuxtv.org/anttip/media_tree.git
6489 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6490
6491 DVB_USB_V2 MEDIA DRIVER
6492 M:      Antti Palosaari <crope@iki.fi>
6493 L:      linux-media@vger.kernel.org
6494 S:      Maintained
6495 W:      https://linuxtv.org
6496 W:      http://palosaari.fi/linux/
6497 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6498 T:      git git://linuxtv.org/anttip/media_tree.git
6499 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6500 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6501
6502 DYNAMIC DEBUG
6503 M:      Jason Baron <jbaron@akamai.com>
6504 S:      Maintained
6505 F:      include/linux/dynamic_debug.h
6506 F:      lib/dynamic_debug.c
6507
6508 DYNAMIC INTERRUPT MODERATION
6509 M:      Tal Gilboa <talgi@nvidia.com>
6510 S:      Maintained
6511 F:      Documentation/networking/net_dim.rst
6512 F:      include/linux/dim.h
6513 F:      lib/dim/
6514
6515 DZ DECSTATION DZ11 SERIAL DRIVER
6516 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6517 S:      Maintained
6518 F:      drivers/tty/serial/dz.*
6519
6520 E3X0 POWER BUTTON DRIVER
6521 M:      Moritz Fischer <moritz.fischer@ettus.com>
6522 L:      usrp-users@lists.ettus.com
6523 S:      Supported
6524 W:      http://www.ettus.com
6525 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6526 F:      drivers/input/misc/e3x0-button.c
6527
6528 E4000 MEDIA DRIVER
6529 M:      Antti Palosaari <crope@iki.fi>
6530 L:      linux-media@vger.kernel.org
6531 S:      Maintained
6532 W:      https://linuxtv.org
6533 W:      http://palosaari.fi/linux/
6534 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6535 T:      git git://linuxtv.org/anttip/media_tree.git
6536 F:      drivers/media/tuners/e4000*
6537
6538 EARTH_PT1 MEDIA DRIVER
6539 M:      Akihiro Tsukada <tskd08@gmail.com>
6540 L:      linux-media@vger.kernel.org
6541 S:      Odd Fixes
6542 F:      drivers/media/pci/pt1/
6543
6544 EARTH_PT3 MEDIA DRIVER
6545 M:      Akihiro Tsukada <tskd08@gmail.com>
6546 L:      linux-media@vger.kernel.org
6547 S:      Odd Fixes
6548 F:      drivers/media/pci/pt3/
6549
6550 EC100 MEDIA DRIVER
6551 M:      Antti Palosaari <crope@iki.fi>
6552 L:      linux-media@vger.kernel.org
6553 S:      Maintained
6554 W:      https://linuxtv.org
6555 W:      http://palosaari.fi/linux/
6556 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6557 T:      git git://linuxtv.org/anttip/media_tree.git
6558 F:      drivers/media/dvb-frontends/ec100*
6559
6560 ECRYPT FILE SYSTEM
6561 M:      Tyler Hicks <code@tyhicks.com>
6562 L:      ecryptfs@vger.kernel.org
6563 S:      Odd Fixes
6564 W:      http://ecryptfs.org
6565 W:      https://launchpad.net/ecryptfs
6566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6567 F:      Documentation/filesystems/ecryptfs.rst
6568 F:      fs/ecryptfs/
6569
6570 EDAC-AMD64
6571 M:      Yazen Ghannam <yazen.ghannam@amd.com>
6572 L:      linux-edac@vger.kernel.org
6573 S:      Supported
6574 F:      drivers/edac/amd64_edac*
6575 F:      drivers/edac/mce_amd*
6576
6577 EDAC-ARMADA
6578 M:      Jan Luebbe <jlu@pengutronix.de>
6579 L:      linux-edac@vger.kernel.org
6580 S:      Maintained
6581 F:      drivers/edac/armada_xp_*
6582
6583 EDAC-AST2500
6584 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6585 S:      Supported
6586 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6587 F:      drivers/edac/aspeed_edac.c
6588
6589 EDAC-BLUEFIELD
6590 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6591 S:      Supported
6592 F:      drivers/edac/bluefield_edac.c
6593
6594 EDAC-CALXEDA
6595 M:      Andre Przywara <andre.przywara@arm.com>
6596 L:      linux-edac@vger.kernel.org
6597 S:      Maintained
6598 F:      drivers/edac/highbank*
6599
6600 EDAC-CAVIUM OCTEON
6601 M:      Ralf Baechle <ralf@linux-mips.org>
6602 L:      linux-edac@vger.kernel.org
6603 L:      linux-mips@vger.kernel.org
6604 S:      Supported
6605 F:      drivers/edac/octeon_edac*
6606
6607 EDAC-CAVIUM THUNDERX
6608 M:      Robert Richter <rric@kernel.org>
6609 L:      linux-edac@vger.kernel.org
6610 S:      Odd Fixes
6611 F:      drivers/edac/thunderx_edac*
6612
6613 EDAC-CORE
6614 M:      Borislav Petkov <bp@alien8.de>
6615 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6616 M:      Tony Luck <tony.luck@intel.com>
6617 R:      James Morse <james.morse@arm.com>
6618 R:      Robert Richter <rric@kernel.org>
6619 L:      linux-edac@vger.kernel.org
6620 S:      Supported
6621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6622 F:      Documentation/admin-guide/ras.rst
6623 F:      Documentation/driver-api/edac.rst
6624 F:      drivers/edac/
6625 F:      include/linux/edac.h
6626
6627 EDAC-DMC520
6628 M:      Lei Wang <lewan@microsoft.com>
6629 L:      linux-edac@vger.kernel.org
6630 S:      Supported
6631 F:      drivers/edac/dmc520_edac.c
6632
6633 EDAC-E752X
6634 M:      Mark Gross <mark.gross@intel.com>
6635 L:      linux-edac@vger.kernel.org
6636 S:      Maintained
6637 F:      drivers/edac/e752x_edac.c
6638
6639 EDAC-E7XXX
6640 L:      linux-edac@vger.kernel.org
6641 S:      Maintained
6642 F:      drivers/edac/e7xxx_edac.c
6643
6644 EDAC-FSL_DDR
6645 M:      York Sun <york.sun@nxp.com>
6646 L:      linux-edac@vger.kernel.org
6647 S:      Maintained
6648 F:      drivers/edac/fsl_ddr_edac.*
6649
6650 EDAC-GHES
6651 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6652 L:      linux-edac@vger.kernel.org
6653 S:      Maintained
6654 F:      drivers/edac/ghes_edac.c
6655
6656 EDAC-I10NM
6657 M:      Tony Luck <tony.luck@intel.com>
6658 L:      linux-edac@vger.kernel.org
6659 S:      Maintained
6660 F:      drivers/edac/i10nm_base.c
6661
6662 EDAC-I3000
6663 L:      linux-edac@vger.kernel.org
6664 S:      Orphan
6665 F:      drivers/edac/i3000_edac.c
6666
6667 EDAC-I5000
6668 L:      linux-edac@vger.kernel.org
6669 S:      Maintained
6670 F:      drivers/edac/i5000_edac.c
6671
6672 EDAC-I5400
6673 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6674 L:      linux-edac@vger.kernel.org
6675 S:      Maintained
6676 F:      drivers/edac/i5400_edac.c
6677
6678 EDAC-I7300
6679 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6680 L:      linux-edac@vger.kernel.org
6681 S:      Maintained
6682 F:      drivers/edac/i7300_edac.c
6683
6684 EDAC-I7CORE
6685 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6686 L:      linux-edac@vger.kernel.org
6687 S:      Maintained
6688 F:      drivers/edac/i7core_edac.c
6689
6690 EDAC-I82443BXGX
6691 M:      Tim Small <tim@buttersideup.com>
6692 L:      linux-edac@vger.kernel.org
6693 S:      Maintained
6694 F:      drivers/edac/i82443bxgx_edac.c
6695
6696 EDAC-I82975X
6697 M:      "Arvind R." <arvino55@gmail.com>
6698 L:      linux-edac@vger.kernel.org
6699 S:      Maintained
6700 F:      drivers/edac/i82975x_edac.c
6701
6702 EDAC-IE31200
6703 M:      Jason Baron <jbaron@akamai.com>
6704 L:      linux-edac@vger.kernel.org
6705 S:      Maintained
6706 F:      drivers/edac/ie31200_edac.c
6707
6708 EDAC-IGEN6
6709 M:      Tony Luck <tony.luck@intel.com>
6710 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6711 L:      linux-edac@vger.kernel.org
6712 S:      Maintained
6713 F:      drivers/edac/igen6_edac.c
6714
6715 EDAC-MPC85XX
6716 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6717 L:      linux-edac@vger.kernel.org
6718 S:      Maintained
6719 F:      drivers/edac/mpc85xx_edac.[ch]
6720
6721 EDAC-PASEMI
6722 M:      Egor Martovetsky <egor@pasemi.com>
6723 L:      linux-edac@vger.kernel.org
6724 S:      Maintained
6725 F:      drivers/edac/pasemi_edac.c
6726
6727 EDAC-PND2
6728 M:      Tony Luck <tony.luck@intel.com>
6729 L:      linux-edac@vger.kernel.org
6730 S:      Maintained
6731 F:      drivers/edac/pnd2_edac.[ch]
6732
6733 EDAC-QCOM
6734 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6735 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6736 L:      linux-arm-msm@vger.kernel.org
6737 L:      linux-edac@vger.kernel.org
6738 S:      Maintained
6739 F:      drivers/edac/qcom_edac.c
6740
6741 EDAC-R82600
6742 M:      Tim Small <tim@buttersideup.com>
6743 L:      linux-edac@vger.kernel.org
6744 S:      Maintained
6745 F:      drivers/edac/r82600_edac.c
6746
6747 EDAC-SBRIDGE
6748 M:      Tony Luck <tony.luck@intel.com>
6749 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6750 L:      linux-edac@vger.kernel.org
6751 S:      Maintained
6752 F:      drivers/edac/sb_edac.c
6753
6754 EDAC-SIFIVE
6755 M:      Yash Shah <yash.shah@sifive.com>
6756 L:      linux-edac@vger.kernel.org
6757 S:      Supported
6758 F:      drivers/edac/sifive_edac.c
6759
6760 EDAC-SKYLAKE
6761 M:      Tony Luck <tony.luck@intel.com>
6762 L:      linux-edac@vger.kernel.org
6763 S:      Maintained
6764 F:      drivers/edac/skx_*.[ch]
6765
6766 EDAC-TI
6767 M:      Tero Kristo <kristo@kernel.org>
6768 L:      linux-edac@vger.kernel.org
6769 S:      Odd Fixes
6770 F:      drivers/edac/ti_edac.c
6771
6772 EDIROL UA-101/UA-1000 DRIVER
6773 M:      Clemens Ladisch <clemens@ladisch.de>
6774 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6775 S:      Maintained
6776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6777 F:      sound/usb/misc/ua101.c
6778
6779 EFI TEST DRIVER
6780 M:      Ivan Hu <ivan.hu@canonical.com>
6781 M:      Ard Biesheuvel <ardb@kernel.org>
6782 L:      linux-efi@vger.kernel.org
6783 S:      Maintained
6784 F:      drivers/firmware/efi/test/
6785
6786 EFI VARIABLE FILESYSTEM
6787 M:      Matthew Garrett <matthew.garrett@nebula.com>
6788 M:      Jeremy Kerr <jk@ozlabs.org>
6789 M:      Ard Biesheuvel <ardb@kernel.org>
6790 L:      linux-efi@vger.kernel.org
6791 S:      Maintained
6792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6793 F:      fs/efivarfs/
6794
6795 EFIFB FRAMEBUFFER DRIVER
6796 M:      Peter Jones <pjones@redhat.com>
6797 L:      linux-fbdev@vger.kernel.org
6798 S:      Maintained
6799 F:      drivers/video/fbdev/efifb.c
6800
6801 EFS FILESYSTEM
6802 S:      Orphan
6803 W:      http://aeschi.ch.eu.org/efs/
6804 F:      fs/efs/
6805
6806 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6807 M:      Douglas Miller <dougmill@linux.ibm.com>
6808 L:      netdev@vger.kernel.org
6809 S:      Maintained
6810 F:      drivers/net/ethernet/ibm/ehea/
6811
6812 EM28XX VIDEO4LINUX DRIVER
6813 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6814 L:      linux-media@vger.kernel.org
6815 S:      Maintained
6816 W:      https://linuxtv.org
6817 T:      git git://linuxtv.org/media_tree.git
6818 F:      Documentation/admin-guide/media/em28xx*
6819 F:      drivers/media/usb/em28xx/
6820
6821 EMBEDDED LINUX
6822 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6823 M:      Matt Mackall <mpm@selenic.com>
6824 M:      David Woodhouse <dwmw2@infradead.org>
6825 L:      linux-embedded@vger.kernel.org
6826 S:      Maintained
6827
6828 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6829 M:      Adrian Hunter <adrian.hunter@intel.com>
6830 M:      Ritesh Harjani <riteshh@codeaurora.org>
6831 M:      Asutosh Das <asutoshd@codeaurora.org>
6832 L:      linux-mmc@vger.kernel.org
6833 S:      Maintained
6834 F:      drivers/mmc/host/cqhci*
6835
6836 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6837 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6838 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6839 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6840 L:      linux-scsi@vger.kernel.org
6841 S:      Supported
6842 W:      http://www.broadcom.com
6843 F:      drivers/scsi/be2iscsi/
6844
6845 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6846 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6847 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6848 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6849 L:      netdev@vger.kernel.org
6850 S:      Supported
6851 W:      http://www.emulex.com
6852 F:      drivers/net/ethernet/emulex/benet/
6853
6854 EMULEX ONECONNECT ROCE DRIVER
6855 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6856 L:      linux-rdma@vger.kernel.org
6857 S:      Odd Fixes
6858 W:      http://www.broadcom.com
6859 F:      drivers/infiniband/hw/ocrdma/
6860 F:      include/uapi/rdma/ocrdma-abi.h
6861
6862 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6863 M:      James Smart <james.smart@broadcom.com>
6864 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6865 L:      linux-scsi@vger.kernel.org
6866 S:      Supported
6867 W:      http://www.broadcom.com
6868 F:      drivers/scsi/lpfc/
6869
6870 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
6871 M:      James Smart <james.smart@broadcom.com>
6872 M:      Ram Vegesna <ram.vegesna@broadcom.com>
6873 L:      linux-scsi@vger.kernel.org
6874 L:      target-devel@vger.kernel.org
6875 S:      Supported
6876 W:      http://www.broadcom.com
6877 F:      drivers/scsi/elx/
6878
6879 ENE CB710 FLASH CARD READER DRIVER
6880 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6881 S:      Maintained
6882 F:      drivers/misc/cb710/
6883 F:      drivers/mmc/host/cb710-mmc.*
6884 F:      include/linux/cb710.h
6885
6886 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6887 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6888 S:      Maintained
6889 F:      drivers/media/rc/ene_ir.*
6890
6891 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6892 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6893 L:      linuxppc-dev@lists.ozlabs.org
6894 S:      Maintained
6895 F:      drivers/tty/ehv_bytechan.c
6896
6897 EPSON S1D13XXX FRAMEBUFFER DRIVER
6898 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6899 S:      Maintained
6900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6901 F:      drivers/video/fbdev/s1d13xxxfb.c
6902 F:      include/video/s1d13xxxfb.h
6903
6904 EROFS FILE SYSTEM
6905 M:      Gao Xiang <xiang@kernel.org>
6906 M:      Chao Yu <chao@kernel.org>
6907 L:      linux-erofs@lists.ozlabs.org
6908 S:      Maintained
6909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6910 F:      Documentation/filesystems/erofs.rst
6911 F:      fs/erofs/
6912 F:      include/trace/events/erofs.h
6913
6914 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6915 M:      Jeff Layton <jlayton@kernel.org>
6916 S:      Maintained
6917 F:      include/linux/errseq.h
6918 F:      lib/errseq.c
6919
6920 ET131X NETWORK DRIVER
6921 M:      Mark Einon <mark.einon@gmail.com>
6922 S:      Odd Fixes
6923 F:      drivers/net/ethernet/agere/
6924
6925 ETAS ES58X CAN/USB DRIVER
6926 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
6927 L:      linux-can@vger.kernel.org
6928 S:      Maintained
6929 F:      drivers/net/can/usb/etas_es58x/
6930
6931 ETHERNET BRIDGE
6932 M:      Roopa Prabhu <roopa@nvidia.com>
6933 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
6934 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6935 L:      netdev@vger.kernel.org
6936 S:      Maintained
6937 W:      http://www.linuxfoundation.org/en/Net:Bridge
6938 F:      include/linux/netfilter_bridge/
6939 F:      net/bridge/
6940
6941 ETHERNET PHY LIBRARY
6942 M:      Andrew Lunn <andrew@lunn.ch>
6943 M:      Heiner Kallweit <hkallweit1@gmail.com>
6944 R:      Russell King <linux@armlinux.org.uk>
6945 L:      netdev@vger.kernel.org
6946 S:      Maintained
6947 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6948 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6949 F:      Documentation/devicetree/bindings/net/mdio*
6950 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6951 F:      Documentation/networking/phy.rst
6952 F:      drivers/net/mdio/
6953 F:      drivers/net/mdio/acpi_mdio.c
6954 F:      drivers/net/mdio/fwnode_mdio.c
6955 F:      drivers/net/mdio/of_mdio.c
6956 F:      drivers/net/pcs/
6957 F:      drivers/net/phy/
6958 F:      drivers/of/of_net.c
6959 F:      include/dt-bindings/net/qca-ar803x.h
6960 F:      include/linux/*mdio*.h
6961 F:      include/linux/mdio/*.h
6962 F:      include/linux/of_net.h
6963 F:      include/linux/phy.h
6964 F:      include/linux/phy_fixed.h
6965 F:      include/linux/platform_data/mdio-bcm-unimac.h
6966 F:      include/linux/platform_data/mdio-gpio.h
6967 F:      include/trace/events/mdio.h
6968 F:      include/uapi/linux/mdio.h
6969 F:      include/uapi/linux/mii.h
6970
6971 EXFAT FILE SYSTEM
6972 M:      Namjae Jeon <linkinjeon@kernel.org>
6973 M:      Sungjong Seo <sj1557.seo@samsung.com>
6974 L:      linux-fsdevel@vger.kernel.org
6975 S:      Maintained
6976 F:      fs/exfat/
6977
6978 EXT2 FILE SYSTEM
6979 M:      Jan Kara <jack@suse.com>
6980 L:      linux-ext4@vger.kernel.org
6981 S:      Maintained
6982 F:      Documentation/filesystems/ext2.rst
6983 F:      fs/ext2/
6984 F:      include/linux/ext2*
6985
6986 EXT4 FILE SYSTEM
6987 M:      "Theodore Ts'o" <tytso@mit.edu>
6988 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6989 L:      linux-ext4@vger.kernel.org
6990 S:      Maintained
6991 W:      http://ext4.wiki.kernel.org
6992 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6994 F:      Documentation/filesystems/ext4/
6995 F:      fs/ext4/
6996 F:      include/trace/events/ext4.h
6997
6998 Extended Verification Module (EVM)
6999 M:      Mimi Zohar <zohar@linux.ibm.com>
7000 L:      linux-integrity@vger.kernel.org
7001 S:      Supported
7002 F:      security/integrity/evm/
7003
7004 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7005 M:      Ard Biesheuvel <ardb@kernel.org>
7006 L:      linux-efi@vger.kernel.org
7007 S:      Maintained
7008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7009 F:      Documentation/admin-guide/efi-stub.rst
7010 F:      arch/*/include/asm/efi.h
7011 F:      arch/*/kernel/efi.c
7012 F:      arch/arm/boot/compressed/efi-header.S
7013 F:      arch/arm64/kernel/efi-entry.S
7014 F:      arch/x86/platform/efi/
7015 F:      drivers/firmware/efi/
7016 F:      include/linux/efi*.h
7017
7018 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7019 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7020 M:      Chanwoo Choi <cw00.choi@samsung.com>
7021 L:      linux-kernel@vger.kernel.org
7022 S:      Maintained
7023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7024 F:      Documentation/devicetree/bindings/extcon/
7025 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7026 F:      drivers/extcon/
7027 F:      include/linux/extcon.h
7028 F:      include/linux/extcon/
7029
7030 EXTRA BOOT CONFIG
7031 M:      Masami Hiramatsu <mhiramat@kernel.org>
7032 S:      Maintained
7033 F:      Documentation/admin-guide/bootconfig.rst
7034 F:      fs/proc/bootconfig.c
7035 F:      include/linux/bootconfig.h
7036 F:      lib/bootconfig.c
7037 F:      tools/bootconfig/*
7038 F:      tools/bootconfig/scripts/*
7039
7040 EXYNOS DP DRIVER
7041 M:      Jingoo Han <jingoohan1@gmail.com>
7042 L:      dri-devel@lists.freedesktop.org
7043 S:      Maintained
7044 F:      drivers/gpu/drm/exynos/exynos_dp*
7045
7046 EXYNOS SYSMMU (IOMMU) driver
7047 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7048 L:      iommu@lists.linux-foundation.org
7049 S:      Maintained
7050 F:      drivers/iommu/exynos-iommu.c
7051
7052 F2FS FILE SYSTEM
7053 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7054 M:      Chao Yu <chao@kernel.org>
7055 L:      linux-f2fs-devel@lists.sourceforge.net
7056 S:      Maintained
7057 W:      https://f2fs.wiki.kernel.org/
7058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7059 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7060 F:      Documentation/filesystems/f2fs.rst
7061 F:      fs/f2fs/
7062 F:      include/linux/f2fs_fs.h
7063 F:      include/trace/events/f2fs.h
7064 F:      include/uapi/linux/f2fs.h
7065
7066 F71805F HARDWARE MONITORING DRIVER
7067 M:      Jean Delvare <jdelvare@suse.com>
7068 L:      linux-hwmon@vger.kernel.org
7069 S:      Maintained
7070 F:      Documentation/hwmon/f71805f.rst
7071 F:      drivers/hwmon/f71805f.c
7072
7073 FADDR2LINE
7074 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7075 S:      Maintained
7076 F:      scripts/faddr2line
7077
7078 FAILOVER MODULE
7079 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7080 L:      netdev@vger.kernel.org
7081 S:      Supported
7082 F:      Documentation/networking/failover.rst
7083 F:      include/net/failover.h
7084 F:      net/core/failover.c
7085
7086 FANOTIFY
7087 M:      Jan Kara <jack@suse.cz>
7088 R:      Amir Goldstein <amir73il@gmail.com>
7089 R:      Matthew Bobrowski <repnop@google.com>
7090 L:      linux-fsdevel@vger.kernel.org
7091 S:      Maintained
7092 F:      fs/notify/fanotify/
7093 F:      include/linux/fanotify.h
7094 F:      include/uapi/linux/fanotify.h
7095
7096 FARSYNC SYNCHRONOUS DRIVER
7097 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7098 S:      Supported
7099 W:      http://www.farsite.co.uk/
7100 F:      drivers/net/wan/farsync.*
7101
7102 FAULT INJECTION SUPPORT
7103 M:      Akinobu Mita <akinobu.mita@gmail.com>
7104 S:      Supported
7105 F:      Documentation/fault-injection/
7106 F:      lib/fault-inject.c
7107
7108 FBTFT Framebuffer drivers
7109 L:      dri-devel@lists.freedesktop.org
7110 L:      linux-fbdev@vger.kernel.org
7111 S:      Orphan
7112 F:      drivers/staging/fbtft/
7113
7114 FC0011 TUNER DRIVER
7115 M:      Michael Buesch <m@bues.ch>
7116 L:      linux-media@vger.kernel.org
7117 S:      Maintained
7118 F:      drivers/media/tuners/fc0011.c
7119 F:      drivers/media/tuners/fc0011.h
7120
7121 FC2580 MEDIA DRIVER
7122 M:      Antti Palosaari <crope@iki.fi>
7123 L:      linux-media@vger.kernel.org
7124 S:      Maintained
7125 W:      https://linuxtv.org
7126 W:      http://palosaari.fi/linux/
7127 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7128 T:      git git://linuxtv.org/anttip/media_tree.git
7129 F:      drivers/media/tuners/fc2580*
7130
7131 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7132 M:      Hannes Reinecke <hare@suse.de>
7133 L:      linux-scsi@vger.kernel.org
7134 S:      Supported
7135 W:      www.Open-FCoE.org
7136 F:      drivers/scsi/fcoe/
7137 F:      drivers/scsi/libfc/
7138 F:      include/scsi/fc/
7139 F:      include/scsi/libfc.h
7140 F:      include/scsi/libfcoe.h
7141 F:      include/uapi/scsi/fc/
7142
7143 FILE LOCKING (flock() and fcntl()/lockf())
7144 M:      Jeff Layton <jlayton@kernel.org>
7145 M:      "J. Bruce Fields" <bfields@fieldses.org>
7146 L:      linux-fsdevel@vger.kernel.org
7147 S:      Maintained
7148 F:      fs/fcntl.c
7149 F:      fs/locks.c
7150 F:      include/linux/fcntl.h
7151 F:      include/uapi/linux/fcntl.h
7152
7153 FILESYSTEM DIRECT ACCESS (DAX)
7154 M:      Dan Williams <dan.j.williams@intel.com>
7155 R:      Matthew Wilcox <willy@infradead.org>
7156 R:      Jan Kara <jack@suse.cz>
7157 L:      linux-fsdevel@vger.kernel.org
7158 L:      nvdimm@lists.linux.dev
7159 S:      Supported
7160 F:      fs/dax.c
7161 F:      include/linux/dax.h
7162 F:      include/trace/events/fs_dax.h
7163
7164 FILESYSTEMS (VFS and infrastructure)
7165 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7166 L:      linux-fsdevel@vger.kernel.org
7167 S:      Maintained
7168 F:      fs/*
7169 F:      include/linux/fs.h
7170 F:      include/linux/fs_types.h
7171 F:      include/uapi/linux/fs.h
7172 F:      include/uapi/linux/openat2.h
7173 X:      fs/io-wq.c
7174 X:      fs/io-wq.h
7175 X:      fs/io_uring.c
7176
7177 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7178 M:      Riku Voipio <riku.voipio@iki.fi>
7179 L:      linux-hwmon@vger.kernel.org
7180 S:      Maintained
7181 F:      drivers/hwmon/f75375s.c
7182 F:      include/linux/f75375s.h
7183
7184 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7185 M:      Clemens Ladisch <clemens@ladisch.de>
7186 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7187 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7188 S:      Maintained
7189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7190 F:      include/uapi/sound/firewire.h
7191 F:      sound/firewire/
7192
7193 FIREWIRE MEDIA DRIVERS (firedtv)
7194 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7195 L:      linux-media@vger.kernel.org
7196 L:      linux1394-devel@lists.sourceforge.net
7197 S:      Maintained
7198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7199 F:      drivers/media/firewire/
7200
7201 FIREWIRE SBP-2 TARGET
7202 M:      Chris Boot <bootc@bootc.net>
7203 L:      linux-scsi@vger.kernel.org
7204 L:      target-devel@vger.kernel.org
7205 L:      linux1394-devel@lists.sourceforge.net
7206 S:      Maintained
7207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7208 F:      drivers/target/sbp/
7209
7210 FIREWIRE SUBSYSTEM
7211 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7212 L:      linux1394-devel@lists.sourceforge.net
7213 S:      Maintained
7214 W:      http://ieee1394.wiki.kernel.org/
7215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7216 F:      drivers/firewire/
7217 F:      include/linux/firewire.h
7218 F:      include/uapi/linux/firewire*.h
7219 F:      tools/firewire/
7220
7221 FIRMWARE FRAMEWORK FOR ARMV8-A
7222 M:      Sudeep Holla <sudeep.holla@arm.com>
7223 L:      linux-arm-kernel@lists.infradead.org
7224 S:      Maintained
7225 F:      drivers/firmware/arm_ffa/
7226 F:      include/linux/arm_ffa.h
7227
7228 FIRMWARE LOADER (request_firmware)
7229 M:      Luis Chamberlain <mcgrof@kernel.org>
7230 L:      linux-kernel@vger.kernel.org
7231 S:      Maintained
7232 F:      Documentation/firmware_class/
7233 F:      drivers/base/firmware_loader/
7234 F:      include/linux/firmware.h
7235
7236 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7237 M:      Joshua Morris <josh.h.morris@us.ibm.com>
7238 M:      Philip Kelleher <pjk1939@linux.ibm.com>
7239 S:      Maintained
7240 F:      drivers/block/rsxx/
7241
7242 FLEXTIMER FTM-QUADDEC DRIVER
7243 M:      Patrick Havelange <patrick.havelange@essensium.com>
7244 L:      linux-iio@vger.kernel.org
7245 S:      Maintained
7246 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7247 F:      drivers/counter/ftm-quaddec.c
7248
7249 FLOPPY DRIVER
7250 M:      Denis Efremov <efremov@linux.com>
7251 L:      linux-block@vger.kernel.org
7252 S:      Odd Fixes
7253 F:      drivers/block/floppy.c
7254
7255 FLYSKY FSIA6B RC RECEIVER
7256 M:      Markus Koch <markus@notsyncing.net>
7257 L:      linux-input@vger.kernel.org
7258 S:      Maintained
7259 F:      drivers/input/joystick/fsia6b.c
7260
7261 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7262 M:      Geoffrey D. Bennett <g@b4.vu>
7263 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7264 S:      Maintained
7265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7266 F:      sound/usb/mixer_scarlett_gen2.c
7267
7268 FORCEDETH GIGABIT ETHERNET DRIVER
7269 M:      Rain River <rain.1986.08.12@gmail.com>
7270 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7271 L:      netdev@vger.kernel.org
7272 S:      Maintained
7273 F:      drivers/net/ethernet/nvidia/*
7274
7275 FPGA DFL DRIVERS
7276 M:      Wu Hao <hao.wu@intel.com>
7277 R:      Tom Rix <trix@redhat.com>
7278 L:      linux-fpga@vger.kernel.org
7279 S:      Maintained
7280 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7281 F:      Documentation/fpga/dfl.rst
7282 F:      drivers/fpga/dfl*
7283 F:      drivers/uio/uio_dfl.c
7284 F:      include/linux/dfl.h
7285 F:      include/uapi/linux/fpga-dfl.h
7286
7287 FPGA MANAGER FRAMEWORK
7288 M:      Moritz Fischer <mdf@kernel.org>
7289 R:      Tom Rix <trix@redhat.com>
7290 L:      linux-fpga@vger.kernel.org
7291 S:      Maintained
7292 W:      http://www.rocketboards.org
7293 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7295 F:      Documentation/devicetree/bindings/fpga/
7296 F:      Documentation/driver-api/fpga/
7297 F:      Documentation/fpga/
7298 F:      drivers/fpga/
7299 F:      include/linux/fpga/
7300
7301 FPU EMULATOR
7302 M:      Bill Metzenthen <billm@melbpc.org.au>
7303 S:      Maintained
7304 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7305 F:      arch/x86/math-emu/
7306
7307 FRAMEBUFFER LAYER
7308 L:      dri-devel@lists.freedesktop.org
7309 L:      linux-fbdev@vger.kernel.org
7310 S:      Orphan
7311 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7312 T:      git git://anongit.freedesktop.org/drm/drm-misc
7313 F:      Documentation/fb/
7314 F:      drivers/video/
7315 F:      include/linux/fb.h
7316 F:      include/uapi/linux/fb.h
7317 F:      include/uapi/video/
7318 F:      include/video/
7319
7320 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7321 M:      Horia Geantă <horia.geanta@nxp.com>
7322 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7323 L:      linux-crypto@vger.kernel.org
7324 S:      Maintained
7325 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7326 F:      drivers/crypto/caam/
7327
7328 FREESCALE COLDFIRE M5441X MMC DRIVER
7329 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7330 L:      linux-mmc@vger.kernel.org
7331 S:      Maintained
7332 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7333 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7334
7335 FREESCALE DIU FRAMEBUFFER DRIVER
7336 M:      Timur Tabi <timur@kernel.org>
7337 L:      linux-fbdev@vger.kernel.org
7338 S:      Maintained
7339 F:      drivers/video/fbdev/fsl-diu-fb.*
7340
7341 FREESCALE DMA DRIVER
7342 M:      Li Yang <leoyang.li@nxp.com>
7343 M:      Zhang Wei <zw@zh-kernel.org>
7344 L:      linuxppc-dev@lists.ozlabs.org
7345 S:      Maintained
7346 F:      drivers/dma/fsldma.*
7347
7348 FREESCALE DSPI DRIVER
7349 M:      Vladimir Oltean <olteanv@gmail.com>
7350 L:      linux-spi@vger.kernel.org
7351 S:      Maintained
7352 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7353 F:      drivers/spi/spi-fsl-dspi.c
7354 F:      include/linux/spi/spi-fsl-dspi.h
7355
7356 FREESCALE ENETC ETHERNET DRIVERS
7357 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7358 L:      netdev@vger.kernel.org
7359 S:      Maintained
7360 F:      drivers/net/ethernet/freescale/enetc/
7361
7362 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7363 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7364 L:      netdev@vger.kernel.org
7365 S:      Maintained
7366 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7367 F:      drivers/net/ethernet/freescale/gianfar*
7368
7369 FREESCALE GPMI NAND DRIVER
7370 M:      Han Xu <han.xu@nxp.com>
7371 L:      linux-mtd@lists.infradead.org
7372 S:      Maintained
7373 F:      drivers/mtd/nand/raw/gpmi-nand/*
7374
7375 FREESCALE I2C CPM DRIVER
7376 M:      Jochen Friedrich <jochen@scram.de>
7377 L:      linuxppc-dev@lists.ozlabs.org
7378 L:      linux-i2c@vger.kernel.org
7379 S:      Maintained
7380 F:      drivers/i2c/busses/i2c-cpm.c
7381
7382 FREESCALE IMX / MXC FEC DRIVER
7383 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7384 L:      netdev@vger.kernel.org
7385 S:      Maintained
7386 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
7387 F:      drivers/net/ethernet/freescale/fec.h
7388 F:      drivers/net/ethernet/freescale/fec_main.c
7389 F:      drivers/net/ethernet/freescale/fec_ptp.c
7390
7391 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7392 M:      Sascha Hauer <s.hauer@pengutronix.de>
7393 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7394 L:      linux-fbdev@vger.kernel.org
7395 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7396 S:      Maintained
7397 F:      drivers/video/fbdev/imxfb.c
7398 F:      include/linux/platform_data/video-imxfb.h
7399
7400 FREESCALE IMX DDR PMU DRIVER
7401 M:      Frank Li <Frank.li@nxp.com>
7402 L:      linux-arm-kernel@lists.infradead.org
7403 S:      Maintained
7404 F:      Documentation/admin-guide/perf/imx-ddr.rst
7405 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7406 F:      drivers/perf/fsl_imx8_ddr_perf.c
7407
7408 FREESCALE IMX I2C DRIVER
7409 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7410 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7411 L:      linux-i2c@vger.kernel.org
7412 S:      Maintained
7413 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7414 F:      drivers/i2c/busses/i2c-imx.c
7415
7416 FREESCALE IMX LPI2C DRIVER
7417 M:      Dong Aisheng <aisheng.dong@nxp.com>
7418 L:      linux-i2c@vger.kernel.org
7419 L:      linux-imx@nxp.com
7420 S:      Maintained
7421 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7422 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7423
7424 FREESCALE MPC I2C DRIVER
7425 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7426 L:      linux-i2c@vger.kernel.org
7427 S:      Maintained
7428 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7429 F:      drivers/i2c/busses/i2c-mpc.c
7430
7431 FREESCALE QORIQ DPAA ETHERNET DRIVER
7432 M:      Madalin Bucur <madalin.bucur@nxp.com>
7433 L:      netdev@vger.kernel.org
7434 S:      Maintained
7435 F:      drivers/net/ethernet/freescale/dpaa
7436
7437 FREESCALE QORIQ DPAA FMAN DRIVER
7438 M:      Madalin Bucur <madalin.bucur@nxp.com>
7439 L:      netdev@vger.kernel.org
7440 S:      Maintained
7441 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7442 F:      drivers/net/ethernet/freescale/fman
7443
7444 FREESCALE QORIQ PTP CLOCK DRIVER
7445 M:      Yangbo Lu <yangbo.lu@nxp.com>
7446 L:      netdev@vger.kernel.org
7447 S:      Maintained
7448 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7449 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7450 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7451 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7452 F:      drivers/ptp/ptp_qoriq.c
7453 F:      drivers/ptp/ptp_qoriq_debugfs.c
7454 F:      include/linux/fsl/ptp_qoriq.h
7455
7456 FREESCALE QUAD SPI DRIVER
7457 M:      Han Xu <han.xu@nxp.com>
7458 L:      linux-spi@vger.kernel.org
7459 S:      Maintained
7460 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7461 F:      drivers/spi/spi-fsl-qspi.c
7462
7463 FREESCALE QUICC ENGINE LIBRARY
7464 M:      Qiang Zhao <qiang.zhao@nxp.com>
7465 L:      linuxppc-dev@lists.ozlabs.org
7466 S:      Maintained
7467 F:      drivers/soc/fsl/qe/
7468 F:      include/soc/fsl/*qe*.h
7469 F:      include/soc/fsl/*ucc*.h
7470
7471 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7472 M:      Li Yang <leoyang.li@nxp.com>
7473 L:      netdev@vger.kernel.org
7474 L:      linuxppc-dev@lists.ozlabs.org
7475 S:      Maintained
7476 F:      drivers/net/ethernet/freescale/ucc_geth*
7477
7478 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7479 M:      Zhao Qiang <qiang.zhao@nxp.com>
7480 L:      netdev@vger.kernel.org
7481 L:      linuxppc-dev@lists.ozlabs.org
7482 S:      Maintained
7483 F:      drivers/net/wan/fsl_ucc_hdlc*
7484
7485 FREESCALE QUICC ENGINE UCC UART DRIVER
7486 M:      Timur Tabi <timur@kernel.org>
7487 L:      linuxppc-dev@lists.ozlabs.org
7488 S:      Maintained
7489 F:      drivers/tty/serial/ucc_uart.c
7490
7491 FREESCALE SOC DRIVERS
7492 M:      Li Yang <leoyang.li@nxp.com>
7493 L:      linuxppc-dev@lists.ozlabs.org
7494 L:      linux-arm-kernel@lists.infradead.org
7495 S:      Maintained
7496 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7497 F:      Documentation/devicetree/bindings/soc/fsl/
7498 F:      drivers/soc/fsl/
7499 F:      include/linux/fsl/
7500
7501 FREESCALE SOC FS_ENET DRIVER
7502 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7503 L:      linuxppc-dev@lists.ozlabs.org
7504 L:      netdev@vger.kernel.org
7505 S:      Maintained
7506 F:      drivers/net/ethernet/freescale/fs_enet/
7507 F:      include/linux/fs_enet_pd.h
7508
7509 FREESCALE SOC SOUND DRIVERS
7510 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7511 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7512 R:      Fabio Estevam <festevam@gmail.com>
7513 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7514 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7515 L:      linuxppc-dev@lists.ozlabs.org
7516 S:      Maintained
7517 F:      sound/soc/fsl/fsl*
7518 F:      sound/soc/fsl/imx*
7519 F:      sound/soc/fsl/mpc8610_hpcd.c
7520
7521 FREESCALE USB PERIPHERAL DRIVERS
7522 M:      Li Yang <leoyang.li@nxp.com>
7523 L:      linux-usb@vger.kernel.org
7524 L:      linuxppc-dev@lists.ozlabs.org
7525 S:      Maintained
7526 F:      drivers/usb/gadget/udc/fsl*
7527
7528 FREESCALE USB PHY DRIVER
7529 M:      Ran Wang <ran.wang_1@nxp.com>
7530 L:      linux-usb@vger.kernel.org
7531 L:      linuxppc-dev@lists.ozlabs.org
7532 S:      Maintained
7533 F:      drivers/usb/phy/phy-fsl-usb*
7534
7535 FREEVXFS FILESYSTEM
7536 M:      Christoph Hellwig <hch@infradead.org>
7537 S:      Maintained
7538 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7539 F:      fs/freevxfs/
7540
7541 FREEZER
7542 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7543 M:      Pavel Machek <pavel@ucw.cz>
7544 L:      linux-pm@vger.kernel.org
7545 S:      Supported
7546 F:      Documentation/power/freezing-of-tasks.rst
7547 F:      include/linux/freezer.h
7548 F:      kernel/freezer.c
7549
7550 FRONTSWAP API
7551 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7552 L:      linux-kernel@vger.kernel.org
7553 S:      Maintained
7554 F:      include/linux/frontswap.h
7555 F:      mm/frontswap.c
7556
7557 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7558 M:      David Howells <dhowells@redhat.com>
7559 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7560 S:      Supported
7561 F:      Documentation/filesystems/caching/
7562 F:      fs/fscache/
7563 F:      include/linux/fscache*.h
7564
7565 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7566 M:      Theodore Y. Ts'o <tytso@mit.edu>
7567 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7568 M:      Eric Biggers <ebiggers@kernel.org>
7569 L:      linux-fscrypt@vger.kernel.org
7570 S:      Supported
7571 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7572 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7573 F:      Documentation/filesystems/fscrypt.rst
7574 F:      fs/crypto/
7575 F:      include/linux/fscrypt*.h
7576 F:      include/uapi/linux/fscrypt.h
7577
7578 FSI SUBSYSTEM
7579 M:      Jeremy Kerr <jk@ozlabs.org>
7580 M:      Joel Stanley <joel@jms.id.au>
7581 R:      Alistar Popple <alistair@popple.id.au>
7582 R:      Eddie James <eajames@linux.ibm.com>
7583 L:      linux-fsi@lists.ozlabs.org
7584 S:      Supported
7585 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7587 F:      drivers/fsi/
7588 F:      include/linux/fsi*.h
7589 F:      include/trace/events/fsi*.h
7590
7591 FSI-ATTACHED I2C DRIVER
7592 M:      Eddie James <eajames@linux.ibm.com>
7593 L:      linux-i2c@vger.kernel.org
7594 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7595 S:      Maintained
7596 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7597 F:      drivers/i2c/busses/i2c-fsi.c
7598
7599 FSI-ATTACHED SPI DRIVER
7600 M:      Eddie James <eajames@linux.ibm.com>
7601 L:      linux-spi@vger.kernel.org
7602 S:      Maintained
7603 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7604 F:      drivers/spi/spi-fsi.c
7605
7606 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7607 M:      Jan Kara <jack@suse.cz>
7608 R:      Amir Goldstein <amir73il@gmail.com>
7609 L:      linux-fsdevel@vger.kernel.org
7610 S:      Maintained
7611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7612 F:      fs/notify/
7613 F:      include/linux/fsnotify*.h
7614
7615 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7616 M:      Eric Biggers <ebiggers@kernel.org>
7617 M:      Theodore Y. Ts'o <tytso@mit.edu>
7618 L:      linux-fscrypt@vger.kernel.org
7619 S:      Supported
7620 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7621 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7622 F:      Documentation/filesystems/fsverity.rst
7623 F:      fs/verity/
7624 F:      include/linux/fsverity.h
7625 F:      include/uapi/linux/fsverity.h
7626
7627 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7628 M:      Michael Zaidman <michael.zaidman@gmail.com>
7629 L:      linux-i2c@vger.kernel.org
7630 L:      linux-input@vger.kernel.org
7631 S:      Maintained
7632 F:      drivers/hid/hid-ft260.c
7633
7634 FUJITSU LAPTOP EXTRAS
7635 M:      Jonathan Woithe <jwoithe@just42.net>
7636 L:      platform-driver-x86@vger.kernel.org
7637 S:      Maintained
7638 F:      drivers/platform/x86/fujitsu-laptop.c
7639
7640 FUJITSU M-5MO LS CAMERA ISP DRIVER
7641 M:      Kyungmin Park <kyungmin.park@samsung.com>
7642 M:      Heungjun Kim <riverful.kim@samsung.com>
7643 L:      linux-media@vger.kernel.org
7644 S:      Maintained
7645 F:      drivers/media/i2c/m5mols/
7646 F:      include/media/i2c/m5mols.h
7647
7648 FUJITSU TABLET EXTRAS
7649 M:      Robert Gerlach <khnz@gmx.de>
7650 L:      platform-driver-x86@vger.kernel.org
7651 S:      Maintained
7652 F:      drivers/platform/x86/fujitsu-tablet.c
7653
7654 FUSE: FILESYSTEM IN USERSPACE
7655 M:      Miklos Szeredi <miklos@szeredi.hu>
7656 L:      linux-fsdevel@vger.kernel.org
7657 S:      Maintained
7658 W:      https://github.com/libfuse/
7659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7660 F:      Documentation/filesystems/fuse.rst
7661 F:      fs/fuse/
7662 F:      include/uapi/linux/fuse.h
7663
7664 FUTEX SUBSYSTEM
7665 M:      Thomas Gleixner <tglx@linutronix.de>
7666 M:      Ingo Molnar <mingo@redhat.com>
7667 R:      Peter Zijlstra <peterz@infradead.org>
7668 R:      Darren Hart <dvhart@infradead.org>
7669 R:      Davidlohr Bueso <dave@stgolabs.net>
7670 L:      linux-kernel@vger.kernel.org
7671 S:      Maintained
7672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7673 F:      Documentation/locking/*futex*
7674 F:      include/asm-generic/futex.h
7675 F:      include/linux/futex.h
7676 F:      include/uapi/linux/futex.h
7677 F:      kernel/futex.c
7678 F:      tools/perf/bench/futex*
7679 F:      tools/testing/selftests/futex/
7680
7681 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7682 M:      Tim Harvey <tharvey@gateworks.com>
7683 M:      Robert Jones <rjones@gateworks.com>
7684 S:      Maintained
7685 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7686 F:      drivers/mfd/gateworks-gsc.c
7687 F:      include/linux/mfd/gsc.h
7688 F:      Documentation/hwmon/gsc-hwmon.rst
7689 F:      drivers/hwmon/gsc-hwmon.c
7690 F:      include/linux/platform_data/gsc_hwmon.h
7691
7692 GCC PLUGINS
7693 M:      Kees Cook <keescook@chromium.org>
7694 L:      linux-hardening@vger.kernel.org
7695 S:      Maintained
7696 F:      Documentation/kbuild/gcc-plugins.rst
7697 F:      scripts/Makefile.gcc-plugins
7698 F:      scripts/gcc-plugins/
7699
7700 GCOV BASED KERNEL PROFILING
7701 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7702 S:      Maintained
7703 F:      Documentation/dev-tools/gcov.rst
7704 F:      kernel/gcov/
7705
7706 GDB KERNEL DEBUGGING HELPER SCRIPTS
7707 M:      Jan Kiszka <jan.kiszka@siemens.com>
7708 M:      Kieran Bingham <kbingham@kernel.org>
7709 S:      Supported
7710 F:      scripts/gdb/
7711
7712 GEMINI CRYPTO DRIVER
7713 M:      Corentin Labbe <clabbe@baylibre.com>
7714 L:      linux-crypto@vger.kernel.org
7715 S:      Maintained
7716 F:      drivers/crypto/gemini/
7717
7718 GEMTEK FM RADIO RECEIVER DRIVER
7719 M:      Hans Verkuil <hverkuil@xs4all.nl>
7720 L:      linux-media@vger.kernel.org
7721 S:      Maintained
7722 W:      https://linuxtv.org
7723 T:      git git://linuxtv.org/media_tree.git
7724 F:      drivers/media/radio/radio-gemtek*
7725
7726 GENERIC ARCHITECTURE TOPOLOGY
7727 M:      Sudeep Holla <sudeep.holla@arm.com>
7728 L:      linux-kernel@vger.kernel.org
7729 S:      Maintained
7730 F:      drivers/base/arch_topology.c
7731 F:      include/linux/arch_topology.h
7732
7733 GENERIC ENTRY CODE
7734 M:      Thomas Gleixner <tglx@linutronix.de>
7735 M:      Peter Zijlstra <peterz@infradead.org>
7736 M:      Andy Lutomirski <luto@kernel.org>
7737 L:      linux-kernel@vger.kernel.org
7738 S:      Maintained
7739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7740 F:      include/linux/entry-common.h
7741 F:      include/linux/entry-kvm.h
7742 F:      kernel/entry/
7743
7744 GENERIC GPIO I2C DRIVER
7745 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7746 S:      Supported
7747 F:      drivers/i2c/busses/i2c-gpio.c
7748 F:      include/linux/platform_data/i2c-gpio.h
7749
7750 GENERIC GPIO I2C MULTIPLEXER DRIVER
7751 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7752 L:      linux-i2c@vger.kernel.org
7753 S:      Supported
7754 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7755 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7756 F:      include/linux/platform_data/i2c-mux-gpio.h
7757
7758 GENERIC HDLC (WAN) DRIVERS
7759 M:      Krzysztof Halasa <khc@pm.waw.pl>
7760 S:      Maintained
7761 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7762 F:      drivers/net/wan/c101.c
7763 F:      drivers/net/wan/hd6457*
7764 F:      drivers/net/wan/hdlc*
7765 F:      drivers/net/wan/n2.c
7766 F:      drivers/net/wan/pc300too.c
7767 F:      drivers/net/wan/pci200syn.c
7768 F:      drivers/net/wan/wanxl*
7769
7770 GENERIC INCLUDE/ASM HEADER FILES
7771 M:      Arnd Bergmann <arnd@arndb.de>
7772 L:      linux-arch@vger.kernel.org
7773 S:      Maintained
7774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7775 F:      include/asm-generic/
7776 F:      include/uapi/asm-generic/
7777
7778 GENERIC PHY FRAMEWORK
7779 M:      Kishon Vijay Abraham I <kishon@ti.com>
7780 M:      Vinod Koul <vkoul@kernel.org>
7781 L:      linux-phy@lists.infradead.org
7782 S:      Supported
7783 Q:      https://patchwork.kernel.org/project/linux-phy/list/
7784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7785 F:      Documentation/devicetree/bindings/phy/
7786 F:      drivers/phy/
7787 F:      include/linux/phy/
7788
7789 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7790 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7791 S:      Supported
7792 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7793
7794 GENERIC PM DOMAINS
7795 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7796 M:      Kevin Hilman <khilman@kernel.org>
7797 M:      Ulf Hansson <ulf.hansson@linaro.org>
7798 L:      linux-pm@vger.kernel.org
7799 S:      Supported
7800 F:      Documentation/devicetree/bindings/power/power?domain*
7801 F:      drivers/base/power/domain*.c
7802 F:      include/linux/pm_domain.h
7803
7804 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7805 M:      Eugen Hristev <eugen.hristev@microchip.com>
7806 L:      linux-input@vger.kernel.org
7807 S:      Maintained
7808 F:      drivers/input/touchscreen/resistive-adc-touch.c
7809
7810 GENERIC STRING LIBRARY
7811 R:      Andy Shevchenko <andy@kernel.org>
7812 S:      Maintained
7813 F:      lib/string.c
7814 F:      lib/string_helpers.c
7815 F:      lib/test_string.c
7816 F:      lib/test-string_helpers.c
7817
7818 GENERIC UIO DRIVER FOR PCI DEVICES
7819 M:      "Michael S. Tsirkin" <mst@redhat.com>
7820 L:      kvm@vger.kernel.org
7821 S:      Supported
7822 F:      drivers/uio/uio_pci_generic.c
7823
7824 GENERIC VDSO LIBRARY
7825 M:      Andy Lutomirski <luto@kernel.org>
7826 M:      Thomas Gleixner <tglx@linutronix.de>
7827 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7828 L:      linux-kernel@vger.kernel.org
7829 S:      Maintained
7830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7831 F:      include/asm-generic/vdso/vsyscall.h
7832 F:      include/vdso/
7833 F:      kernel/time/vsyscall.c
7834 F:      lib/vdso/
7835
7836 GENWQE (IBM Generic Workqueue Card)
7837 M:      Frank Haverkamp <haver@linux.ibm.com>
7838 S:      Supported
7839 F:      drivers/misc/genwqe/
7840
7841 GET_MAINTAINER SCRIPT
7842 M:      Joe Perches <joe@perches.com>
7843 S:      Maintained
7844 F:      scripts/get_maintainer.pl
7845
7846 GFS2 FILE SYSTEM
7847 M:      Bob Peterson <rpeterso@redhat.com>
7848 M:      Andreas Gruenbacher <agruenba@redhat.com>
7849 L:      cluster-devel@redhat.com
7850 S:      Supported
7851 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7853 F:      Documentation/filesystems/gfs2*
7854 F:      fs/gfs2/
7855 F:      include/uapi/linux/gfs2_ondisk.h
7856
7857 GIGABYTE WMI DRIVER
7858 M:      Thomas Weißschuh <thomas@weissschuh.net>
7859 L:      platform-driver-x86@vger.kernel.org
7860 S:      Maintained
7861 F:      drivers/platform/x86/gigabyte-wmi.c
7862
7863 GNSS SUBSYSTEM
7864 M:      Johan Hovold <johan@kernel.org>
7865 S:      Maintained
7866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7867 F:      Documentation/ABI/testing/sysfs-class-gnss
7868 F:      Documentation/devicetree/bindings/gnss/
7869 F:      drivers/gnss/
7870 F:      include/linux/gnss.h
7871
7872 GO7007 MPEG CODEC
7873 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7874 L:      linux-media@vger.kernel.org
7875 S:      Maintained
7876 F:      drivers/media/usb/go7007/
7877
7878 GOODIX TOUCHSCREEN
7879 M:      Bastien Nocera <hadess@hadess.net>
7880 L:      linux-input@vger.kernel.org
7881 S:      Maintained
7882 F:      drivers/input/touchscreen/goodix.c
7883
7884 GOOGLE ETHERNET DRIVERS
7885 M:      Jeroen de Borst <jeroendb@google.com>
7886 R:      Catherine Sullivan <csully@google.com>
7887 R:      David Awogbemila <awogbemila@google.com>
7888 L:      netdev@vger.kernel.org
7889 S:      Supported
7890 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7891 F:      drivers/net/ethernet/google
7892
7893 GPD POCKET FAN DRIVER
7894 M:      Hans de Goede <hdegoede@redhat.com>
7895 L:      platform-driver-x86@vger.kernel.org
7896 S:      Maintained
7897 F:      drivers/platform/x86/gpd-pocket-fan.c
7898
7899 GPIO ACPI SUPPORT
7900 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7901 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7902 L:      linux-gpio@vger.kernel.org
7903 L:      linux-acpi@vger.kernel.org
7904 S:      Maintained
7905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
7906 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7907 F:      drivers/gpio/gpiolib-acpi.c
7908 F:      drivers/gpio/gpiolib-acpi.h
7909
7910 GPIO AGGREGATOR
7911 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7912 L:      linux-gpio@vger.kernel.org
7913 S:      Supported
7914 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7915 F:      drivers/gpio/gpio-aggregator.c
7916
7917 GPIO IR Transmitter
7918 M:      Sean Young <sean@mess.org>
7919 L:      linux-media@vger.kernel.org
7920 S:      Maintained
7921 F:      drivers/media/rc/gpio-ir-tx.c
7922
7923 GPIO MOCKUP DRIVER
7924 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7925 L:      linux-gpio@vger.kernel.org
7926 S:      Maintained
7927 F:      drivers/gpio/gpio-mockup.c
7928 F:      tools/testing/selftests/gpio/
7929
7930 GPIO REGMAP
7931 R:      Michael Walle <michael@walle.cc>
7932 S:      Maintained
7933 F:      drivers/gpio/gpio-regmap.c
7934 F:      include/linux/gpio/regmap.h
7935
7936 GPIO SUBSYSTEM
7937 M:      Linus Walleij <linus.walleij@linaro.org>
7938 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7939 L:      linux-gpio@vger.kernel.org
7940 S:      Maintained
7941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7942 F:      Documentation/ABI/obsolete/sysfs-gpio
7943 F:      Documentation/ABI/testing/gpio-cdev
7944 F:      Documentation/admin-guide/gpio/
7945 F:      Documentation/devicetree/bindings/gpio/
7946 F:      Documentation/driver-api/gpio/
7947 F:      drivers/gpio/
7948 F:      include/asm-generic/gpio.h
7949 F:      include/linux/gpio.h
7950 F:      include/linux/gpio/
7951 F:      include/linux/of_gpio.h
7952 F:      include/uapi/linux/gpio.h
7953 F:      tools/gpio/
7954
7955 GRE DEMULTIPLEXER DRIVER
7956 M:      Dmitry Kozlov <xeb@mail.ru>
7957 L:      netdev@vger.kernel.org
7958 S:      Maintained
7959 F:      include/net/gre.h
7960 F:      net/ipv4/gre_demux.c
7961 F:      net/ipv4/gre_offload.c
7962
7963 GRETH 10/100/1G Ethernet MAC device driver
7964 M:      Andreas Larsson <andreas@gaisler.com>
7965 L:      netdev@vger.kernel.org
7966 S:      Maintained
7967 F:      drivers/net/ethernet/aeroflex/
7968
7969 GREYBUS AUDIO PROTOCOLS DRIVERS
7970 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7971 M:      Mark Greer <mgreer@animalcreek.com>
7972 S:      Maintained
7973 F:      drivers/staging/greybus/audio_apbridgea.c
7974 F:      drivers/staging/greybus/audio_apbridgea.h
7975 F:      drivers/staging/greybus/audio_codec.c
7976 F:      drivers/staging/greybus/audio_codec.h
7977 F:      drivers/staging/greybus/audio_gb.c
7978 F:      drivers/staging/greybus/audio_manager.c
7979 F:      drivers/staging/greybus/audio_manager.h
7980 F:      drivers/staging/greybus/audio_manager_module.c
7981 F:      drivers/staging/greybus/audio_manager_private.h
7982 F:      drivers/staging/greybus/audio_manager_sysfs.c
7983 F:      drivers/staging/greybus/audio_module.c
7984 F:      drivers/staging/greybus/audio_topology.c
7985
7986 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7987 M:      Viresh Kumar <vireshk@kernel.org>
7988 S:      Maintained
7989 F:      drivers/staging/greybus/authentication.c
7990 F:      drivers/staging/greybus/bootrom.c
7991 F:      drivers/staging/greybus/firmware.h
7992 F:      drivers/staging/greybus/fw-core.c
7993 F:      drivers/staging/greybus/fw-download.c
7994 F:      drivers/staging/greybus/fw-management.c
7995 F:      drivers/staging/greybus/greybus_authentication.h
7996 F:      drivers/staging/greybus/greybus_firmware.h
7997 F:      drivers/staging/greybus/hid.c
7998 F:      drivers/staging/greybus/i2c.c
7999 F:      drivers/staging/greybus/spi.c
8000 F:      drivers/staging/greybus/spilib.c
8001 F:      drivers/staging/greybus/spilib.h
8002
8003 GREYBUS LOOPBACK DRIVER
8004 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8005 S:      Maintained
8006 F:      drivers/staging/greybus/loopback.c
8007
8008 GREYBUS PLATFORM DRIVERS
8009 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8010 S:      Maintained
8011 F:      drivers/staging/greybus/arche-apb-ctrl.c
8012 F:      drivers/staging/greybus/arche-platform.c
8013 F:      drivers/staging/greybus/arche_platform.h
8014
8015 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8016 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8017 S:      Maintained
8018 F:      drivers/staging/greybus/gpio.c
8019 F:      drivers/staging/greybus/light.c
8020 F:      drivers/staging/greybus/power_supply.c
8021 F:      drivers/staging/greybus/sdio.c
8022 F:      drivers/staging/greybus/spi.c
8023 F:      drivers/staging/greybus/spilib.c
8024
8025 GREYBUS SUBSYSTEM
8026 M:      Johan Hovold <johan@kernel.org>
8027 M:      Alex Elder <elder@kernel.org>
8028 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8029 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8030 S:      Maintained
8031 F:      drivers/greybus/
8032 F:      drivers/staging/greybus/
8033 F:      include/linux/greybus.h
8034 F:      include/linux/greybus/
8035
8036 GREYBUS UART PROTOCOLS DRIVERS
8037 M:      David Lin <dtwlin@gmail.com>
8038 S:      Maintained
8039 F:      drivers/staging/greybus/log.c
8040 F:      drivers/staging/greybus/uart.c
8041
8042 GS1662 VIDEO SERIALIZER
8043 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8044 L:      linux-media@vger.kernel.org
8045 S:      Maintained
8046 T:      git git://linuxtv.org/media_tree.git
8047 F:      drivers/media/spi/gs1662.c
8048
8049 GSPCA FINEPIX SUBDRIVER
8050 M:      Frank Zago <frank@zago.net>
8051 L:      linux-media@vger.kernel.org
8052 S:      Maintained
8053 T:      git git://linuxtv.org/media_tree.git
8054 F:      drivers/media/usb/gspca/finepix.c
8055
8056 GSPCA GL860 SUBDRIVER
8057 M:      Olivier Lorin <o.lorin@laposte.net>
8058 L:      linux-media@vger.kernel.org
8059 S:      Maintained
8060 T:      git git://linuxtv.org/media_tree.git
8061 F:      drivers/media/usb/gspca/gl860/
8062
8063 GSPCA M5602 SUBDRIVER
8064 M:      Erik Andren <erik.andren@gmail.com>
8065 L:      linux-media@vger.kernel.org
8066 S:      Maintained
8067 T:      git git://linuxtv.org/media_tree.git
8068 F:      drivers/media/usb/gspca/m5602/
8069
8070 GSPCA PAC207 SONIXB SUBDRIVER
8071 M:      Hans Verkuil <hverkuil@xs4all.nl>
8072 L:      linux-media@vger.kernel.org
8073 S:      Odd Fixes
8074 T:      git git://linuxtv.org/media_tree.git
8075 F:      drivers/media/usb/gspca/pac207.c
8076
8077 GSPCA SN9C20X SUBDRIVER
8078 M:      Brian Johnson <brijohn@gmail.com>
8079 L:      linux-media@vger.kernel.org
8080 S:      Maintained
8081 T:      git git://linuxtv.org/media_tree.git
8082 F:      drivers/media/usb/gspca/sn9c20x.c
8083
8084 GSPCA T613 SUBDRIVER
8085 M:      Leandro Costantino <lcostantino@gmail.com>
8086 L:      linux-media@vger.kernel.org
8087 S:      Maintained
8088 T:      git git://linuxtv.org/media_tree.git
8089 F:      drivers/media/usb/gspca/t613.c
8090
8091 GSPCA USB WEBCAM DRIVER
8092 M:      Hans Verkuil <hverkuil@xs4all.nl>
8093 L:      linux-media@vger.kernel.org
8094 S:      Odd Fixes
8095 T:      git git://linuxtv.org/media_tree.git
8096 F:      drivers/media/usb/gspca/
8097
8098 GTP (GPRS Tunneling Protocol)
8099 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8100 M:      Harald Welte <laforge@gnumonks.org>
8101 L:      osmocom-net-gprs@lists.osmocom.org
8102 S:      Maintained
8103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8104 F:      drivers/net/gtp.c
8105
8106 GUID PARTITION TABLE (GPT)
8107 M:      Davidlohr Bueso <dave@stgolabs.net>
8108 L:      linux-efi@vger.kernel.org
8109 S:      Maintained
8110 F:      block/partitions/efi.*
8111
8112 H8/300 ARCHITECTURE
8113 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8114 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8115 S:      Maintained
8116 W:      http://uclinux-h8.sourceforge.jp
8117 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8118 F:      arch/h8300/
8119 F:      drivers/clk/h8300/
8120 F:      drivers/clocksource/h8300_*.c
8121 F:      drivers/irqchip/irq-renesas-h8*.c
8122
8123 HABANALABS PCI DRIVER
8124 M:      Oded Gabbay <ogabbay@kernel.org>
8125 S:      Supported
8126 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8127 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8128 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8129 F:      drivers/misc/habanalabs/
8130 F:      include/uapi/misc/habanalabs.h
8131
8132 HACKRF MEDIA DRIVER
8133 M:      Antti Palosaari <crope@iki.fi>
8134 L:      linux-media@vger.kernel.org
8135 S:      Maintained
8136 W:      https://linuxtv.org
8137 W:      http://palosaari.fi/linux/
8138 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8139 T:      git git://linuxtv.org/anttip/media_tree.git
8140 F:      drivers/media/usb/hackrf/
8141
8142 HANTRO VPU CODEC DRIVER
8143 M:      Ezequiel Garcia <ezequiel@collabora.com>
8144 M:      Philipp Zabel <p.zabel@pengutronix.de>
8145 L:      linux-media@vger.kernel.org
8146 L:      linux-rockchip@lists.infradead.org
8147 S:      Maintained
8148 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8149 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8150 F:      drivers/staging/media/hantro/
8151
8152 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8153 M:      Frank Seidel <frank@f-seidel.de>
8154 L:      platform-driver-x86@vger.kernel.org
8155 S:      Maintained
8156 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8157 F:      drivers/platform/x86/hdaps.c
8158
8159 HARDWARE MONITORING
8160 M:      Jean Delvare <jdelvare@suse.com>
8161 M:      Guenter Roeck <linux@roeck-us.net>
8162 L:      linux-hwmon@vger.kernel.org
8163 S:      Maintained
8164 W:      http://hwmon.wiki.kernel.org/
8165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8166 F:      Documentation/devicetree/bindings/hwmon/
8167 F:      Documentation/hwmon/
8168 F:      drivers/hwmon/
8169 F:      include/linux/hwmon*.h
8170 F:      include/trace/events/hwmon*.h
8171 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8172
8173 HARDWARE RANDOM NUMBER GENERATOR CORE
8174 M:      Matt Mackall <mpm@selenic.com>
8175 M:      Herbert Xu <herbert@gondor.apana.org.au>
8176 L:      linux-crypto@vger.kernel.org
8177 S:      Odd fixes
8178 F:      Documentation/admin-guide/hw_random.rst
8179 F:      Documentation/devicetree/bindings/rng/
8180 F:      drivers/char/hw_random/
8181 F:      include/linux/hw_random.h
8182
8183 HARDWARE SPINLOCK CORE
8184 M:      Ohad Ben-Cohen <ohad@wizery.com>
8185 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8186 R:      Baolin Wang <baolin.wang7@gmail.com>
8187 L:      linux-remoteproc@vger.kernel.org
8188 S:      Maintained
8189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8190 F:      Documentation/devicetree/bindings/hwlock/
8191 F:      Documentation/locking/hwspinlock.rst
8192 F:      drivers/hwspinlock/
8193 F:      include/linux/hwspinlock.h
8194
8195 HARDWARE TRACING FACILITIES
8196 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8197 S:      Maintained
8198 F:      drivers/hwtracing/
8199
8200 HARMONY SOUND DRIVER
8201 L:      linux-parisc@vger.kernel.org
8202 S:      Maintained
8203 F:      sound/parisc/harmony.*
8204
8205 HDPVR USB VIDEO ENCODER DRIVER
8206 M:      Hans Verkuil <hverkuil@xs4all.nl>
8207 L:      linux-media@vger.kernel.org
8208 S:      Odd Fixes
8209 W:      https://linuxtv.org
8210 T:      git git://linuxtv.org/media_tree.git
8211 F:      drivers/media/usb/hdpvr/
8212
8213 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8214 M:      Matt Hsiao <matt.hsiao@hpe.com>
8215 S:      Supported
8216 F:      drivers/misc/hpilo.[ch]
8217
8218 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8219 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8220 S:      Supported
8221 F:      Documentation/watchdog/hpwdt.rst
8222 F:      drivers/watchdog/hpwdt.c
8223
8224 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8225 M:      Don Brace <don.brace@microchip.com>
8226 L:      storagedev@microchip.com
8227 L:      linux-scsi@vger.kernel.org
8228 S:      Supported
8229 F:      Documentation/scsi/hpsa.rst
8230 F:      drivers/scsi/hpsa*.[ch]
8231 F:      include/linux/cciss*.h
8232 F:      include/uapi/linux/cciss*.h
8233
8234 HFI1 DRIVER
8235 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8236 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8237 L:      linux-rdma@vger.kernel.org
8238 S:      Supported
8239 F:      drivers/infiniband/hw/hfi1
8240
8241 HFS FILESYSTEM
8242 L:      linux-fsdevel@vger.kernel.org
8243 S:      Orphan
8244 F:      Documentation/filesystems/hfs.rst
8245 F:      fs/hfs/
8246
8247 HFSPLUS FILESYSTEM
8248 L:      linux-fsdevel@vger.kernel.org
8249 S:      Orphan
8250 F:      Documentation/filesystems/hfsplus.rst
8251 F:      fs/hfsplus/
8252
8253 HGA FRAMEBUFFER DRIVER
8254 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8255 L:      linux-nvidia@lists.surfsouth.com
8256 S:      Maintained
8257 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8258 F:      drivers/video/fbdev/hgafb.c
8259
8260 HIBERNATION (aka Software Suspend, aka swsusp)
8261 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
8262 M:      Pavel Machek <pavel@ucw.cz>
8263 L:      linux-pm@vger.kernel.org
8264 S:      Supported
8265 B:      https://bugzilla.kernel.org
8266 F:      arch/*/include/asm/suspend*.h
8267 F:      arch/x86/power/
8268 F:      drivers/base/power/
8269 F:      include/linux/freezer.h
8270 F:      include/linux/pm.h
8271 F:      include/linux/suspend.h
8272 F:      kernel/power/
8273
8274 HID CORE LAYER
8275 M:      Jiri Kosina <jikos@kernel.org>
8276 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8277 L:      linux-input@vger.kernel.org
8278 S:      Maintained
8279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8280 F:      drivers/hid/
8281 F:      include/linux/hid*
8282 F:      include/uapi/linux/hid*
8283
8284 HID PLAYSTATION DRIVER
8285 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8286 L:      linux-input@vger.kernel.org
8287 S:      Supported
8288 F:      drivers/hid/hid-playstation.c
8289
8290 HID SENSOR HUB DRIVERS
8291 M:      Jiri Kosina <jikos@kernel.org>
8292 M:      Jonathan Cameron <jic23@kernel.org>
8293 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8294 L:      linux-input@vger.kernel.org
8295 L:      linux-iio@vger.kernel.org
8296 S:      Maintained
8297 F:      Documentation/hid/hid-sensor*
8298 F:      drivers/hid/hid-sensor-*
8299 F:      drivers/iio/*/hid-*
8300 F:      include/linux/hid-sensor-*
8301
8302 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8303 M:      Thomas Gleixner <tglx@linutronix.de>
8304 L:      linux-kernel@vger.kernel.org
8305 S:      Maintained
8306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8307 F:      Documentation/timers/
8308 F:      include/linux/clockchips.h
8309 F:      include/linux/hrtimer.h
8310 F:      kernel/time/clockevents.c
8311 F:      kernel/time/hrtimer.c
8312 F:      kernel/time/timer_*.c
8313
8314 HIGH-SPEED SCC DRIVER FOR AX.25
8315 L:      linux-hams@vger.kernel.org
8316 S:      Orphan
8317 F:      drivers/net/hamradio/dmascc.c
8318 F:      drivers/net/hamradio/scc.c
8319
8320 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8321 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8322 S:      Supported
8323 W:      http://www.highpoint-tech.com
8324 F:      Documentation/scsi/hptiop.rst
8325 F:      drivers/scsi/hptiop.c
8326
8327 HIPPI
8328 M:      Jes Sorensen <jes@trained-monkey.org>
8329 L:      linux-hippi@sunsite.dk
8330 S:      Maintained
8331 F:      drivers/net/hippi/
8332 F:      include/linux/hippidevice.h
8333 F:      include/uapi/linux/if_hippi.h
8334 F:      net/802/hippi.c
8335
8336 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8337 M:      Kurt Kanzenbach <kurt@linutronix.de>
8338 L:      netdev@vger.kernel.org
8339 S:      Maintained
8340 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8341 F:      drivers/net/dsa/hirschmann/*
8342 F:      include/linux/platform_data/hirschmann-hellcreek.h
8343 F:      net/dsa/tag_hellcreek.c
8344
8345 HISILICON DMA DRIVER
8346 M:      Zhou Wang <wangzhou1@hisilicon.com>
8347 L:      dmaengine@vger.kernel.org
8348 S:      Maintained
8349 F:      drivers/dma/hisi_dma.c
8350
8351 HISILICON GPIO DRIVER
8352 M:      Luo Jiaxing <luojiaxing@huawei.com>
8353 L:      linux-gpio@vger.kernel.org
8354 S:      Maintained
8355 F:      drivers/gpio/gpio-hisi.c
8356
8357 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8358 M:      Zaibo Xu <xuzaibo@huawei.com>
8359 L:      linux-crypto@vger.kernel.org
8360 S:      Maintained
8361 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8362 F:      drivers/crypto/hisilicon/hpre/hpre.h
8363 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8364 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8365
8366 HISILICON I2C CONTROLLER DRIVER
8367 M:      Yicong Yang <yangyicong@hisilicon.com>
8368 L:      linux-i2c@vger.kernel.org
8369 S:      Maintained
8370 W:      https://www.hisilicon.com
8371 F:      drivers/i2c/busses/i2c-hisi.c
8372
8373 HISILICON LPC BUS DRIVER
8374 M:      john.garry@huawei.com
8375 S:      Maintained
8376 W:      http://www.hisilicon.com
8377 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8378 F:      drivers/bus/hisi_lpc.c
8379
8380 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8381 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8382 M:      Salil Mehta <salil.mehta@huawei.com>
8383 L:      netdev@vger.kernel.org
8384 S:      Maintained
8385 W:      http://www.hisilicon.com
8386 F:      drivers/net/ethernet/hisilicon/hns3/
8387
8388 HISILICON NETWORK SUBSYSTEM DRIVER
8389 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8390 M:      Salil Mehta <salil.mehta@huawei.com>
8391 L:      netdev@vger.kernel.org
8392 S:      Maintained
8393 W:      http://www.hisilicon.com
8394 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8395 F:      drivers/net/ethernet/hisilicon/
8396
8397 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8398 M:      John Stultz <john.stultz@linaro.org>
8399 L:      linux-kernel@vger.kernel.org
8400 S:      Maintained
8401 F:      drivers/misc/hisi_hikey_usb.c
8402 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8403
8404 HISILICON PMU DRIVER
8405 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8406 S:      Supported
8407 W:      http://www.hisilicon.com
8408 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8409 F:      drivers/perf/hisilicon
8410
8411 HISILICON QM AND ZIP Controller DRIVER
8412 M:      Zhou Wang <wangzhou1@hisilicon.com>
8413 L:      linux-crypto@vger.kernel.org
8414 S:      Maintained
8415 F:      Documentation/ABI/testing/debugfs-hisi-zip
8416 F:      drivers/crypto/hisilicon/qm.c
8417 F:      drivers/crypto/hisilicon/qm.h
8418 F:      drivers/crypto/hisilicon/sgl.c
8419 F:      drivers/crypto/hisilicon/zip/
8420
8421 HISILICON ROCE DRIVER
8422 M:      Lijun Ou <oulijun@huawei.com>
8423 M:      Weihang Li <liweihang@huawei.com>
8424 L:      linux-rdma@vger.kernel.org
8425 S:      Maintained
8426 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8427 F:      drivers/infiniband/hw/hns/
8428
8429 HISILICON SAS Controller
8430 M:      John Garry <john.garry@huawei.com>
8431 S:      Supported
8432 W:      http://www.hisilicon.com
8433 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8434 F:      drivers/scsi/hisi_sas/
8435
8436 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8437 M:      Zaibo Xu <xuzaibo@huawei.com>
8438 L:      linux-crypto@vger.kernel.org
8439 S:      Maintained
8440 F:      Documentation/ABI/testing/debugfs-hisi-sec
8441 F:      drivers/crypto/hisilicon/sec2/sec.h
8442 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8443 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8444 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8445
8446 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8447 M:      Jay Fang <f.fangjian@huawei.com>
8448 L:      linux-spi@vger.kernel.org
8449 S:      Maintained
8450 W:      http://www.hisilicon.com
8451 F:      drivers/spi/spi-hisi-kunpeng.c
8452
8453 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8454 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8455 L:      linux-kernel@vger.kernel.org
8456 S:      Maintained
8457 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8458 F:      drivers/spmi/hisi-spmi-controller.c
8459
8460 HISILICON STAGING DRIVERS FOR HIKEY 960/970
8461 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8462 S:      Maintained
8463 F:      drivers/staging/hikey9xx/
8464
8465 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8466 M:      Zaibo Xu <xuzaibo@huawei.com>
8467 S:      Maintained
8468 F:      drivers/crypto/hisilicon/trng/trng.c
8469
8470 HISILICON V3XX SPI NOR FLASH Controller Driver
8471 M:      John Garry <john.garry@huawei.com>
8472 S:      Maintained
8473 W:      http://www.hisilicon.com
8474 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8475
8476 HMM - Heterogeneous Memory Management
8477 M:      Jérôme Glisse <jglisse@redhat.com>
8478 L:      linux-mm@kvack.org
8479 S:      Maintained
8480 F:      Documentation/vm/hmm.rst
8481 F:      include/linux/hmm*
8482 F:      lib/test_hmm*
8483 F:      mm/hmm*
8484 F:      tools/testing/selftests/vm/*hmm*
8485
8486 HOST AP DRIVER
8487 M:      Jouni Malinen <j@w1.fi>
8488 L:      linux-wireless@vger.kernel.org
8489 S:      Obsolete
8490 W:      http://w1.fi/hostap-driver.html
8491 F:      drivers/net/wireless/intersil/hostap/
8492
8493 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8494 L:      platform-driver-x86@vger.kernel.org
8495 S:      Orphan
8496 F:      drivers/platform/x86/tc1100-wmi.c
8497
8498 HPET:   High Precision Event Timers driver
8499 M:      Clemens Ladisch <clemens@ladisch.de>
8500 S:      Maintained
8501 F:      Documentation/timers/hpet.rst
8502 F:      drivers/char/hpet.c
8503 F:      include/linux/hpet.h
8504 F:      include/uapi/linux/hpet.h
8505
8506 HPET:   x86
8507 S:      Orphan
8508 F:      arch/x86/include/asm/hpet.h
8509 F:      arch/x86/kernel/hpet.c
8510
8511 HPFS FILESYSTEM
8512 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8513 S:      Maintained
8514 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8515 F:      fs/hpfs/
8516
8517 HSI SUBSYSTEM
8518 M:      Sebastian Reichel <sre@kernel.org>
8519 S:      Maintained
8520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8521 F:      Documentation/ABI/testing/sysfs-bus-hsi
8522 F:      Documentation/driver-api/hsi.rst
8523 F:      drivers/hsi/
8524 F:      include/linux/hsi/
8525 F:      include/uapi/linux/hsi/
8526
8527 HSO 3G MODEM DRIVER
8528 L:      linux-usb@vger.kernel.org
8529 S:      Orphan
8530 F:      drivers/net/usb/hso.c
8531
8532 HSR NETWORK PROTOCOL
8533 L:      netdev@vger.kernel.org
8534 S:      Orphan
8535 F:      net/hsr/
8536
8537 HT16K33 LED CONTROLLER DRIVER
8538 M:      Robin van der Gracht <robin@protonic.nl>
8539 S:      Maintained
8540 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8541 F:      drivers/auxdisplay/ht16k33.c
8542
8543 HTCPEN TOUCHSCREEN DRIVER
8544 M:      Pau Oliva Fora <pof@eslack.org>
8545 L:      linux-input@vger.kernel.org
8546 S:      Maintained
8547 F:      drivers/input/touchscreen/htcpen.c
8548
8549 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8550 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8551 L:      linux-iio@vger.kernel.org
8552 S:      Maintained
8553 W:      http://www.st.com/
8554 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8555 F:      drivers/iio/humidity/hts221*
8556
8557 HUAWEI ETHERNET DRIVER
8558 M:      Bin Luo <luobin9@huawei.com>
8559 L:      netdev@vger.kernel.org
8560 S:      Supported
8561 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8562 F:      drivers/net/ethernet/huawei/hinic/
8563
8564 HUGETLB FILESYSTEM
8565 M:      Mike Kravetz <mike.kravetz@oracle.com>
8566 L:      linux-mm@kvack.org
8567 S:      Maintained
8568 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8569 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8570 F:      Documentation/vm/hugetlbfs_reserv.rst
8571 F:      fs/hugetlbfs/
8572 F:      include/linux/hugetlb.h
8573 F:      mm/hugetlb.c
8574
8575 HVA ST MEDIA DRIVER
8576 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8577 L:      linux-media@vger.kernel.org
8578 S:      Supported
8579 W:      https://linuxtv.org
8580 T:      git git://linuxtv.org/media_tree.git
8581 F:      drivers/media/platform/sti/hva
8582
8583 HWPOISON MEMORY FAILURE HANDLING
8584 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8585 L:      linux-mm@kvack.org
8586 S:      Maintained
8587 F:      mm/hwpoison-inject.c
8588 F:      mm/memory-failure.c
8589
8590 HYCON HY46XX TOUCHSCREEN SUPPORT
8591 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
8592 L:      linux-input@vger.kernel.org
8593 S:      Maintained
8594 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8595 F:      drivers/input/touchscreen/hycon-hy46xx.c
8596
8597 HYGON PROCESSOR SUPPORT
8598 M:      Pu Wen <puwen@hygon.cn>
8599 L:      linux-kernel@vger.kernel.org
8600 S:      Maintained
8601 F:      arch/x86/kernel/cpu/hygon.c
8602
8603 HYNIX HI556 SENSOR DRIVER
8604 M:      Shawn Tu <shawnx.tu@intel.com>
8605 L:      linux-media@vger.kernel.org
8606 S:      Maintained
8607 T:      git git://linuxtv.org/media_tree.git
8608 F:      drivers/media/i2c/hi556.c
8609
8610 Hyper-V/Azure CORE AND DRIVERS
8611 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8612 M:      Haiyang Zhang <haiyangz@microsoft.com>
8613 M:      Stephen Hemminger <sthemmin@microsoft.com>
8614 M:      Wei Liu <wei.liu@kernel.org>
8615 M:      Dexuan Cui <decui@microsoft.com>
8616 L:      linux-hyperv@vger.kernel.org
8617 S:      Supported
8618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8619 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8620 F:      Documentation/ABI/testing/debugfs-hyperv
8621 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8622 F:      arch/x86/hyperv
8623 F:      arch/x86/include/asm/hyperv-tlfs.h
8624 F:      arch/x86/include/asm/mshyperv.h
8625 F:      arch/x86/include/asm/trace/hyperv.h
8626 F:      arch/x86/kernel/cpu/mshyperv.c
8627 F:      drivers/clocksource/hyperv_timer.c
8628 F:      drivers/hid/hid-hyperv.c
8629 F:      drivers/hv/
8630 F:      drivers/input/serio/hyperv-keyboard.c
8631 F:      drivers/iommu/hyperv-iommu.c
8632 F:      drivers/net/ethernet/microsoft/
8633 F:      drivers/net/hyperv/
8634 F:      drivers/pci/controller/pci-hyperv-intf.c
8635 F:      drivers/pci/controller/pci-hyperv.c
8636 F:      drivers/scsi/storvsc_drv.c
8637 F:      drivers/uio/uio_hv_generic.c
8638 F:      drivers/video/fbdev/hyperv_fb.c
8639 F:      include/asm-generic/hyperv-tlfs.h
8640 F:      include/asm-generic/mshyperv.h
8641 F:      include/clocksource/hyperv_timer.h
8642 F:      include/linux/hyperv.h
8643 F:      include/uapi/linux/hyperv.h
8644 F:      net/vmw_vsock/hyperv_transport.c
8645 F:      tools/hv/
8646
8647 HYPERBUS SUPPORT
8648 M:      Vignesh Raghavendra <vigneshr@ti.com>
8649 L:      linux-mtd@lists.infradead.org
8650 S:      Supported
8651 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8652 C:      irc://irc.oftc.net/mtd
8653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8654 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8655 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8656 F:      drivers/mtd/hyperbus/
8657 F:      include/linux/mtd/hyperbus.h
8658
8659 HYPERVISOR VIRTUAL CONSOLE DRIVER
8660 L:      linuxppc-dev@lists.ozlabs.org
8661 S:      Odd Fixes
8662 F:      drivers/tty/hvc/
8663
8664 I2C ACPI SUPPORT
8665 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8666 L:      linux-i2c@vger.kernel.org
8667 L:      linux-acpi@vger.kernel.org
8668 S:      Maintained
8669 F:      drivers/i2c/i2c-core-acpi.c
8670
8671 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8672 M:      Ajay Gupta <ajayg@nvidia.com>
8673 L:      linux-i2c@vger.kernel.org
8674 S:      Maintained
8675 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8676 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8677
8678 I2C MUXES
8679 M:      Peter Rosin <peda@axentia.se>
8680 L:      linux-i2c@vger.kernel.org
8681 S:      Maintained
8682 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8683 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8684 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8685 F:      Documentation/i2c/i2c-topology.rst
8686 F:      Documentation/i2c/muxes/
8687 F:      drivers/i2c/i2c-mux.c
8688 F:      drivers/i2c/muxes/
8689 F:      include/linux/i2c-mux.h
8690
8691 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8692 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8693 L:      linux-i2c@vger.kernel.org
8694 S:      Maintained
8695 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8696 F:      drivers/i2c/busses/i2c-mv64xxx.c
8697
8698 I2C OVER PARALLEL PORT
8699 M:      Jean Delvare <jdelvare@suse.com>
8700 L:      linux-i2c@vger.kernel.org
8701 S:      Maintained
8702 F:      Documentation/i2c/busses/i2c-parport.rst
8703 F:      drivers/i2c/busses/i2c-parport.c
8704
8705 I2C SUBSYSTEM
8706 M:      Wolfram Sang <wsa@kernel.org>
8707 L:      linux-i2c@vger.kernel.org
8708 S:      Maintained
8709 W:      https://i2c.wiki.kernel.org/
8710 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8712 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8713 F:      Documentation/i2c/
8714 F:      drivers/i2c/*
8715 F:      include/linux/i2c-dev.h
8716 F:      include/linux/i2c-smbus.h
8717 F:      include/linux/i2c.h
8718 F:      include/uapi/linux/i2c-*.h
8719 F:      include/uapi/linux/i2c.h
8720
8721 I2C SUBSYSTEM HOST DRIVERS
8722 L:      linux-i2c@vger.kernel.org
8723 S:      Odd Fixes
8724 W:      https://i2c.wiki.kernel.org/
8725 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8727 F:      Documentation/devicetree/bindings/i2c/
8728 F:      drivers/i2c/algos/
8729 F:      drivers/i2c/busses/
8730
8731 I2C-TAOS-EVM DRIVER
8732 M:      Jean Delvare <jdelvare@suse.com>
8733 L:      linux-i2c@vger.kernel.org
8734 S:      Maintained
8735 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8736 F:      drivers/i2c/busses/i2c-taos-evm.c
8737
8738 I2C-TINY-USB DRIVER
8739 M:      Till Harbaum <till@harbaum.org>
8740 L:      linux-i2c@vger.kernel.org
8741 S:      Maintained
8742 W:      http://www.harbaum.org/till/i2c_tiny_usb
8743 F:      drivers/i2c/busses/i2c-tiny-usb.c
8744
8745 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8746 M:      Jean Delvare <jdelvare@suse.com>
8747 L:      linux-i2c@vger.kernel.org
8748 S:      Maintained
8749 F:      Documentation/i2c/busses/i2c-ali1535.rst
8750 F:      Documentation/i2c/busses/i2c-ali1563.rst
8751 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8752 F:      Documentation/i2c/busses/i2c-amd756.rst
8753 F:      Documentation/i2c/busses/i2c-amd8111.rst
8754 F:      Documentation/i2c/busses/i2c-i801.rst
8755 F:      Documentation/i2c/busses/i2c-nforce2.rst
8756 F:      Documentation/i2c/busses/i2c-piix4.rst
8757 F:      Documentation/i2c/busses/i2c-sis5595.rst
8758 F:      Documentation/i2c/busses/i2c-sis630.rst
8759 F:      Documentation/i2c/busses/i2c-sis96x.rst
8760 F:      Documentation/i2c/busses/i2c-via.rst
8761 F:      Documentation/i2c/busses/i2c-viapro.rst
8762 F:      drivers/i2c/busses/i2c-ali1535.c
8763 F:      drivers/i2c/busses/i2c-ali1563.c
8764 F:      drivers/i2c/busses/i2c-ali15x3.c
8765 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8766 F:      drivers/i2c/busses/i2c-amd756.c
8767 F:      drivers/i2c/busses/i2c-amd8111.c
8768 F:      drivers/i2c/busses/i2c-i801.c
8769 F:      drivers/i2c/busses/i2c-isch.c
8770 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8771 F:      drivers/i2c/busses/i2c-nforce2.c
8772 F:      drivers/i2c/busses/i2c-piix4.c
8773 F:      drivers/i2c/busses/i2c-sis5595.c
8774 F:      drivers/i2c/busses/i2c-sis630.c
8775 F:      drivers/i2c/busses/i2c-sis96x.c
8776 F:      drivers/i2c/busses/i2c-via.c
8777 F:      drivers/i2c/busses/i2c-viapro.c
8778
8779 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8780 M:      Hans de Goede <hdegoede@redhat.com>
8781 L:      linux-i2c@vger.kernel.org
8782 S:      Maintained
8783 F:      drivers/i2c/busses/i2c-cht-wc.c
8784
8785 I2C/SMBUS ISMT DRIVER
8786 M:      Seth Heasley <seth.heasley@intel.com>
8787 M:      Neil Horman <nhorman@tuxdriver.com>
8788 L:      linux-i2c@vger.kernel.org
8789 F:      Documentation/i2c/busses/i2c-ismt.rst
8790 F:      drivers/i2c/busses/i2c-ismt.c
8791
8792 I2C/SMBUS STUB DRIVER
8793 M:      Jean Delvare <jdelvare@suse.com>
8794 L:      linux-i2c@vger.kernel.org
8795 S:      Maintained
8796 F:      drivers/i2c/i2c-stub.c
8797
8798 I3C DRIVER FOR CADENCE I3C MASTER IP
8799 M:      Przemysław Gaj <pgaj@cadence.com>
8800 S:      Maintained
8801 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8802 F:      drivers/i3c/master/i3c-master-cdns.c
8803
8804 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8805 M:      Vitor Soares <vitor.soares@synopsys.com>
8806 S:      Maintained
8807 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8808 F:      drivers/i3c/master/dw*
8809
8810 I3C SUBSYSTEM
8811 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
8812 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8813 S:      Maintained
8814 C:      irc://chat.freenode.net/linux-i3c
8815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8816 F:      Documentation/ABI/testing/sysfs-bus-i3c
8817 F:      Documentation/devicetree/bindings/i3c/
8818 F:      Documentation/driver-api/i3c
8819 F:      drivers/i3c/
8820 F:      include/linux/i3c/
8821
8822 IA64 (Itanium) PLATFORM
8823 L:      linux-ia64@vger.kernel.org
8824 S:      Orphan
8825 F:      Documentation/ia64/
8826 F:      arch/ia64/
8827
8828 IBM Power 842 compression accelerator
8829 M:      Haren Myneni <haren@us.ibm.com>
8830 S:      Supported
8831 F:      crypto/842.c
8832 F:      drivers/crypto/nx/Kconfig
8833 F:      drivers/crypto/nx/Makefile
8834 F:      drivers/crypto/nx/nx-842*
8835 F:      include/linux/sw842.h
8836 F:      lib/842/
8837
8838 IBM Power in-Nest Crypto Acceleration
8839 M:      Breno Leitão <leitao@debian.org>
8840 M:      Nayna Jain <nayna@linux.ibm.com>
8841 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8842 L:      linux-crypto@vger.kernel.org
8843 S:      Supported
8844 F:      drivers/crypto/nx/Kconfig
8845 F:      drivers/crypto/nx/Makefile
8846 F:      drivers/crypto/nx/nx-aes*
8847 F:      drivers/crypto/nx/nx-sha*
8848 F:      drivers/crypto/nx/nx.*
8849 F:      drivers/crypto/nx/nx_csbcpb.h
8850 F:      drivers/crypto/nx/nx_debugfs.c
8851
8852 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8853 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8854 L:      linux-pci@vger.kernel.org
8855 L:      linuxppc-dev@lists.ozlabs.org
8856 S:      Supported
8857 F:      drivers/pci/hotplug/rpadlpar*
8858
8859 IBM Power Linux RAID adapter
8860 M:      Brian King <brking@us.ibm.com>
8861 S:      Supported
8862 F:      drivers/scsi/ipr.*
8863
8864 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8865 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8866 L:      linux-pci@vger.kernel.org
8867 L:      linuxppc-dev@lists.ozlabs.org
8868 S:      Supported
8869 F:      drivers/pci/hotplug/rpaphp*
8870
8871 IBM Power SRIOV Virtual NIC Device Driver
8872 M:      Dany Madden <drt@linux.ibm.com>
8873 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8874 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
8875 L:      netdev@vger.kernel.org
8876 S:      Supported
8877 F:      drivers/net/ethernet/ibm/ibmvnic.*
8878
8879 IBM Power Virtual Accelerator Switchboard
8880 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8881 L:      linuxppc-dev@lists.ozlabs.org
8882 S:      Supported
8883 F:      arch/powerpc/include/asm/vas.h
8884 F:      arch/powerpc/platforms/powernv/copy-paste.h
8885 F:      arch/powerpc/platforms/powernv/vas*
8886
8887 IBM Power Virtual Ethernet Device Driver
8888 M:      Cristobal Forno <cforno12@linux.ibm.com>
8889 L:      netdev@vger.kernel.org
8890 S:      Supported
8891 F:      drivers/net/ethernet/ibm/ibmveth.*
8892
8893 IBM Power Virtual FC Device Drivers
8894 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8895 L:      linux-scsi@vger.kernel.org
8896 S:      Supported
8897 F:      drivers/scsi/ibmvscsi/ibmvfc*
8898
8899 IBM Power Virtual Management Channel Driver
8900 M:      Brad Warrum <bwarrum@linux.ibm.com>
8901 M:      Ritu Agarwal <rituagar@linux.ibm.com>
8902 S:      Supported
8903 F:      drivers/misc/ibmvmc.*
8904
8905 IBM Power Virtual SCSI Device Drivers
8906 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8907 L:      linux-scsi@vger.kernel.org
8908 S:      Supported
8909 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8910 F:      include/scsi/viosrp.h
8911
8912 IBM Power Virtual SCSI Device Target Driver
8913 M:      Michael Cyr <mikecyr@linux.ibm.com>
8914 L:      linux-scsi@vger.kernel.org
8915 L:      target-devel@vger.kernel.org
8916 S:      Supported
8917 F:      drivers/scsi/ibmvscsi_tgt/
8918
8919 IBM Power VMX Cryptographic instructions
8920 M:      Breno Leitão <leitao@debian.org>
8921 M:      Nayna Jain <nayna@linux.ibm.com>
8922 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8923 L:      linux-crypto@vger.kernel.org
8924 S:      Supported
8925 F:      drivers/crypto/vmx/Kconfig
8926 F:      drivers/crypto/vmx/Makefile
8927 F:      drivers/crypto/vmx/aes*
8928 F:      drivers/crypto/vmx/ghash*
8929 F:      drivers/crypto/vmx/ppc-xlate.pl
8930 F:      drivers/crypto/vmx/vmx.c
8931
8932 IBM ServeRAID RAID DRIVER
8933 S:      Orphan
8934 F:      drivers/scsi/ips.*
8935
8936 ICH LPC AND GPIO DRIVER
8937 M:      Peter Tyser <ptyser@xes-inc.com>
8938 S:      Maintained
8939 F:      drivers/gpio/gpio-ich.c
8940 F:      drivers/mfd/lpc_ich.c
8941
8942 ICY I2C DRIVER
8943 M:      Max Staudt <max@enpas.org>
8944 L:      linux-i2c@vger.kernel.org
8945 S:      Maintained
8946 F:      drivers/i2c/busses/i2c-icy.c
8947
8948 IDEAPAD LAPTOP EXTRAS DRIVER
8949 M:      Ike Panhc <ike.pan@canonical.com>
8950 L:      platform-driver-x86@vger.kernel.org
8951 S:      Maintained
8952 W:      http://launchpad.net/ideapad-laptop
8953 F:      drivers/platform/x86/ideapad-laptop.c
8954
8955 IDEAPAD LAPTOP SLIDEBAR DRIVER
8956 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8957 L:      linux-input@vger.kernel.org
8958 S:      Maintained
8959 W:      https://github.com/o2genum/ideapad-slidebar
8960 F:      drivers/input/misc/ideapad_slidebar.c
8961
8962 IDT VersaClock 5 CLOCK DRIVER
8963 M:      Luca Ceresoli <luca@lucaceresoli.net>
8964 S:      Maintained
8965 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
8966 F:      drivers/clk/clk-versaclock5.c
8967
8968 IEEE 802.15.4 SUBSYSTEM
8969 M:      Alexander Aring <alex.aring@gmail.com>
8970 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8971 L:      linux-wpan@vger.kernel.org
8972 S:      Maintained
8973 W:      https://linux-wpan.org/
8974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8976 F:      Documentation/networking/ieee802154.rst
8977 F:      drivers/net/ieee802154/
8978 F:      include/linux/ieee802154.h
8979 F:      include/linux/nl802154.h
8980 F:      include/net/af_ieee802154.h
8981 F:      include/net/cfg802154.h
8982 F:      include/net/ieee802154_netdev.h
8983 F:      include/net/mac802154.h
8984 F:      include/net/nl802154.h
8985 F:      net/ieee802154/
8986 F:      net/mac802154/
8987
8988 IFE PROTOCOL
8989 M:      Yotam Gigi <yotam.gi@gmail.com>
8990 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8991 F:      include/net/ife.h
8992 F:      include/uapi/linux/ife.h
8993 F:      net/ife
8994
8995 IGORPLUG-USB IR RECEIVER
8996 M:      Sean Young <sean@mess.org>
8997 L:      linux-media@vger.kernel.org
8998 S:      Maintained
8999 F:      drivers/media/rc/igorplugusb.c
9000
9001 IGUANAWORKS USB IR TRANSCEIVER
9002 M:      Sean Young <sean@mess.org>
9003 L:      linux-media@vger.kernel.org
9004 S:      Maintained
9005 F:      drivers/media/rc/iguanair.c
9006
9007 IIO DIGITAL POTENTIOMETER DAC
9008 M:      Peter Rosin <peda@axentia.se>
9009 L:      linux-iio@vger.kernel.org
9010 S:      Maintained
9011 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9012 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9013 F:      drivers/iio/dac/dpot-dac.c
9014
9015 IIO ENVELOPE DETECTOR
9016 M:      Peter Rosin <peda@axentia.se>
9017 L:      linux-iio@vger.kernel.org
9018 S:      Maintained
9019 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9020 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9021 F:      drivers/iio/adc/envelope-detector.c
9022
9023 IIO MULTIPLEXER
9024 M:      Peter Rosin <peda@axentia.se>
9025 L:      linux-iio@vger.kernel.org
9026 S:      Maintained
9027 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9028 F:      drivers/iio/multiplexer/iio-mux.c
9029
9030 IIO SCMI BASED DRIVER
9031 M:      Jyoti Bhayana <jbhayana@google.com>
9032 L:      linux-iio@vger.kernel.org
9033 S:      Maintained
9034 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9035
9036 IIO SUBSYSTEM AND DRIVERS
9037 M:      Jonathan Cameron <jic23@kernel.org>
9038 R:      Lars-Peter Clausen <lars@metafoo.de>
9039 L:      linux-iio@vger.kernel.org
9040 S:      Maintained
9041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9042 F:      Documentation/ABI/testing/configfs-iio*
9043 F:      Documentation/ABI/testing/sysfs-bus-iio*
9044 F:      Documentation/devicetree/bindings/iio/
9045 F:      drivers/iio/
9046 F:      drivers/staging/iio/
9047 F:      include/linux/iio/
9048 F:      tools/iio/
9049
9050 IIO UNIT CONVERTER
9051 M:      Peter Rosin <peda@axentia.se>
9052 L:      linux-iio@vger.kernel.org
9053 S:      Maintained
9054 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9055 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9056 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9057 F:      drivers/iio/afe/iio-rescale.c
9058
9059 IKANOS/ADI EAGLE ADSL USB DRIVER
9060 M:      Matthieu Castet <castet.matthieu@free.fr>
9061 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9062 S:      Maintained
9063 F:      drivers/usb/atm/ueagle-atm.c
9064
9065 IMGTEC ASCII LCD DRIVER
9066 M:      Paul Burton <paulburton@kernel.org>
9067 S:      Maintained
9068 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
9069 F:      drivers/auxdisplay/img-ascii-lcd.c
9070
9071 IMGTEC IR DECODER DRIVER
9072 S:      Orphan
9073 F:      drivers/media/rc/img-ir/
9074
9075 IMON SOUNDGRAPH USB IR RECEIVER
9076 M:      Sean Young <sean@mess.org>
9077 L:      linux-media@vger.kernel.org
9078 S:      Maintained
9079 F:      drivers/media/rc/imon.c
9080 F:      drivers/media/rc/imon_raw.c
9081
9082 IMS TWINTURBO FRAMEBUFFER DRIVER
9083 L:      linux-fbdev@vger.kernel.org
9084 S:      Orphan
9085 F:      drivers/video/fbdev/imsttfb.c
9086
9087 INA209 HARDWARE MONITOR DRIVER
9088 M:      Guenter Roeck <linux@roeck-us.net>
9089 L:      linux-hwmon@vger.kernel.org
9090 S:      Maintained
9091 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9092 F:      Documentation/hwmon/ina209.rst
9093 F:      drivers/hwmon/ina209.c
9094
9095 INA2XX HARDWARE MONITOR DRIVER
9096 M:      Guenter Roeck <linux@roeck-us.net>
9097 L:      linux-hwmon@vger.kernel.org
9098 S:      Maintained
9099 F:      Documentation/hwmon/ina2xx.rst
9100 F:      drivers/hwmon/ina2xx.c
9101 F:      include/linux/platform_data/ina2xx.h
9102
9103 INDUSTRY PACK SUBSYSTEM (IPACK)
9104 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9105 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9106 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9107 L:      industrypack-devel@lists.sourceforge.net
9108 S:      Maintained
9109 W:      http://industrypack.sourceforge.net
9110 F:      drivers/ipack/
9111
9112 INFINEON DPS310 Driver
9113 M:      Eddie James <eajames@linux.ibm.com>
9114 L:      linux-iio@vger.kernel.org
9115 S:      Maintained
9116 F:      drivers/iio/pressure/dps310.c
9117
9118 INFINIBAND SUBSYSTEM
9119 M:      Doug Ledford <dledford@redhat.com>
9120 M:      Jason Gunthorpe <jgg@nvidia.com>
9121 L:      linux-rdma@vger.kernel.org
9122 S:      Supported
9123 W:      https://github.com/linux-rdma/rdma-core
9124 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9126 F:      Documentation/devicetree/bindings/infiniband/
9127 F:      Documentation/infiniband/
9128 F:      drivers/infiniband/
9129 F:      include/rdma/
9130 F:      include/trace/events/ib_mad.h
9131 F:      include/trace/events/ib_umad.h
9132 F:      include/uapi/linux/if_infiniband.h
9133 F:      include/uapi/rdma/
9134 F:      samples/bpf/ibumad_kern.c
9135 F:      samples/bpf/ibumad_user.c
9136
9137 INGENIC JZ4780 NAND DRIVER
9138 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9139 L:      linux-mtd@lists.infradead.org
9140 L:      linux-mips@vger.kernel.org
9141 S:      Maintained
9142 F:      drivers/mtd/nand/raw/ingenic/
9143
9144 INGENIC JZ47xx SoCs
9145 M:      Paul Cercueil <paul@crapouillou.net>
9146 L:      linux-mips@vger.kernel.org
9147 S:      Maintained
9148 F:      arch/mips/boot/dts/ingenic/
9149 F:      arch/mips/generic/board-ingenic.c
9150 F:      arch/mips/include/asm/mach-ingenic/
9151 F:      arch/mips/ingenic/Kconfig
9152 F:      drivers/clk/ingenic/
9153 F:      drivers/dma/dma-jz4780.c
9154 F:      drivers/gpu/drm/ingenic/
9155 F:      drivers/i2c/busses/i2c-jz4780.c
9156 F:      drivers/iio/adc/ingenic-adc.c
9157 F:      drivers/irqchip/irq-ingenic.c
9158 F:      drivers/memory/jz4780-nemc.c
9159 F:      drivers/mmc/host/jz4740_mmc.c
9160 F:      drivers/mtd/nand/raw/ingenic/
9161 F:      drivers/pinctrl/pinctrl-ingenic.c
9162 F:      drivers/power/supply/ingenic-battery.c
9163 F:      drivers/pwm/pwm-jz4740.c
9164 F:      drivers/remoteproc/ingenic_rproc.c
9165 F:      drivers/rtc/rtc-jz4740.c
9166 F:      drivers/tty/serial/8250/8250_ingenic.c
9167 F:      drivers/usb/musb/jz4740.c
9168 F:      drivers/watchdog/jz4740_wdt.c
9169 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9170 F:      include/linux/mfd/ingenic-tcu.h
9171 F:      sound/soc/codecs/jz47*
9172 F:      sound/soc/jz4740/
9173
9174 INOTIFY
9175 M:      Jan Kara <jack@suse.cz>
9176 R:      Amir Goldstein <amir73il@gmail.com>
9177 L:      linux-fsdevel@vger.kernel.org
9178 S:      Maintained
9179 F:      Documentation/filesystems/inotify.rst
9180 F:      fs/notify/inotify/
9181 F:      include/linux/inotify.h
9182 F:      include/uapi/linux/inotify.h
9183
9184 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9185 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9186 L:      linux-input@vger.kernel.org
9187 S:      Maintained
9188 Q:      http://patchwork.kernel.org/project/linux-input/list/
9189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9190 F:      Documentation/devicetree/bindings/input/
9191 F:      Documentation/devicetree/bindings/serio/
9192 F:      Documentation/input/
9193 F:      drivers/input/
9194 F:      include/linux/input.h
9195 F:      include/linux/input/
9196 F:      include/uapi/linux/input-event-codes.h
9197 F:      include/uapi/linux/input.h
9198
9199 INPUT MULTITOUCH (MT) PROTOCOL
9200 M:      Henrik Rydberg <rydberg@bitmath.org>
9201 L:      linux-input@vger.kernel.org
9202 S:      Odd fixes
9203 F:      Documentation/input/multi-touch-protocol.rst
9204 F:      drivers/input/input-mt.c
9205 K:      \b(ABS|SYN)_MT_
9206
9207 INSIDE SECURE CRYPTO DRIVER
9208 M:      Antoine Tenart <atenart@kernel.org>
9209 L:      linux-crypto@vger.kernel.org
9210 S:      Maintained
9211 F:      drivers/crypto/inside-secure/
9212
9213 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9214 M:      Mimi Zohar <zohar@linux.ibm.com>
9215 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9216 L:      linux-integrity@vger.kernel.org
9217 S:      Supported
9218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9219 F:      security/integrity/ima/
9220
9221 INTEL 810/815 FRAMEBUFFER DRIVER
9222 M:      Antonino Daplas <adaplas@gmail.com>
9223 L:      linux-fbdev@vger.kernel.org
9224 S:      Maintained
9225 F:      drivers/video/fbdev/i810/
9226
9227 INTEL ASoC DRIVERS
9228 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9229 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9230 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9231 M:      Jie Yang <yang.jie@linux.intel.com>
9232 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9233 S:      Supported
9234 F:      sound/soc/intel/
9235
9236 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9237 M:      Hans de Goede <hdegoede@redhat.com>
9238 L:      platform-driver-x86@vger.kernel.org
9239 S:      Maintained
9240 F:      drivers/platform/x86/intel_atomisp2_pm.c
9241
9242 INTEL ATOMISP2 LED DRIVER
9243 M:      Hans de Goede <hdegoede@redhat.com>
9244 L:      platform-driver-x86@vger.kernel.org
9245 S:      Maintained
9246 F:      drivers/platform/x86/intel_atomisp2_led.c
9247
9248 INTEL BROXTON PMC DRIVER
9249 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9250 M:      Zha Qipeng <qipeng.zha@intel.com>
9251 S:      Maintained
9252 F:      drivers/mfd/intel_pmc_bxt.c
9253 F:      include/linux/mfd/intel_pmc_bxt.h
9254
9255 INTEL C600 SERIES SAS CONTROLLER DRIVER
9256 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9257 L:      linux-scsi@vger.kernel.org
9258 S:      Supported
9259 T:      git git://git.code.sf.net/p/intel-sas/isci
9260 F:      drivers/scsi/isci/
9261
9262 INTEL CPU family model numbers
9263 M:      Tony Luck <tony.luck@intel.com>
9264 M:      x86@kernel.org
9265 L:      linux-kernel@vger.kernel.org
9266 S:      Supported
9267 F:      arch/x86/include/asm/intel-family.h
9268
9269 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9270 M:      Jani Nikula <jani.nikula@linux.intel.com>
9271 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9272 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9273 L:      intel-gfx@lists.freedesktop.org
9274 S:      Supported
9275 W:      https://01.org/linuxgraphics/
9276 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9277 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9278 C:      irc://chat.freenode.net/intel-gfx
9279 T:      git git://anongit.freedesktop.org/drm-intel
9280 F:      Documentation/gpu/i915.rst
9281 F:      drivers/gpu/drm/i915/
9282 F:      include/drm/i915*
9283 F:      include/uapi/drm/i915_drm.h
9284
9285 INTEL ETHERNET DRIVERS
9286 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9287 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9288 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9289 S:      Supported
9290 W:      http://www.intel.com/support/feedback.htm
9291 W:      http://e1000.sourceforge.net/
9292 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9295 F:      Documentation/networking/device_drivers/ethernet/intel/
9296 F:      drivers/net/ethernet/intel/
9297 F:      drivers/net/ethernet/intel/*/
9298 F:      include/linux/avf/virtchnl.h
9299 F:      include/linux/net/intel/iidc.h
9300
9301 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9302 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9303 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9304 L:      linux-rdma@vger.kernel.org
9305 S:      Supported
9306 F:      drivers/infiniband/hw/irdma/
9307 F:      include/uapi/rdma/irdma-abi.h
9308
9309 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9310 M:      Maik Broemme <mbroemme@libmpq.org>
9311 L:      linux-fbdev@vger.kernel.org
9312 S:      Maintained
9313 F:      Documentation/fb/intelfb.rst
9314 F:      drivers/video/fbdev/intelfb/
9315
9316 INTEL GPIO DRIVERS
9317 M:      Andy Shevchenko <andy@kernel.org>
9318 L:      linux-gpio@vger.kernel.org
9319 S:      Maintained
9320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9321 F:      drivers/gpio/gpio-ich.c
9322 F:      drivers/gpio/gpio-merrifield.c
9323 F:      drivers/gpio/gpio-ml-ioh.c
9324 F:      drivers/gpio/gpio-pch.c
9325 F:      drivers/gpio/gpio-sch.c
9326 F:      drivers/gpio/gpio-sodaville.c
9327
9328 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9329 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9330 M:      Zhi Wang <zhi.a.wang@intel.com>
9331 L:      intel-gvt-dev@lists.freedesktop.org
9332 L:      intel-gfx@lists.freedesktop.org
9333 S:      Supported
9334 W:      https://01.org/igvt-g
9335 T:      git https://github.com/intel/gvt-linux.git
9336 F:      drivers/gpu/drm/i915/gvt/
9337
9338 INTEL HID EVENT DRIVER
9339 M:      Alex Hung <alex.hung@canonical.com>
9340 L:      platform-driver-x86@vger.kernel.org
9341 S:      Maintained
9342 F:      drivers/platform/x86/intel-hid.c
9343
9344 INTEL I/OAT DMA DRIVER
9345 M:      Dave Jiang <dave.jiang@intel.com>
9346 R:      Dan Williams <dan.j.williams@intel.com>
9347 L:      dmaengine@vger.kernel.org
9348 S:      Supported
9349 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9350 F:      drivers/dma/ioat*
9351
9352 INTEL IADX DRIVER
9353 M:      Dave Jiang <dave.jiang@intel.com>
9354 L:      dmaengine@vger.kernel.org
9355 S:      Supported
9356 F:      drivers/dma/idxd/*
9357 F:      include/uapi/linux/idxd.h
9358
9359 INTEL IDLE DRIVER
9360 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9361 M:      Len Brown <lenb@kernel.org>
9362 L:      linux-pm@vger.kernel.org
9363 S:      Supported
9364 B:      https://bugzilla.kernel.org
9365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9366 F:      drivers/idle/intel_idle.c
9367
9368 INTEL INTEGRATED SENSOR HUB DRIVER
9369 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9370 M:      Jiri Kosina <jikos@kernel.org>
9371 L:      linux-input@vger.kernel.org
9372 S:      Maintained
9373 F:      drivers/hid/intel-ish-hid/
9374
9375 INTEL IOMMU (VT-d)
9376 M:      David Woodhouse <dwmw2@infradead.org>
9377 M:      Lu Baolu <baolu.lu@linux.intel.com>
9378 L:      iommu@lists.linux-foundation.org
9379 S:      Supported
9380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9381 F:      drivers/iommu/intel/
9382 F:      include/linux/intel-iommu.h
9383 F:      include/linux/intel-svm.h
9384
9385 INTEL IOP-ADMA DMA DRIVER
9386 R:      Dan Williams <dan.j.williams@intel.com>
9387 S:      Odd fixes
9388 F:      drivers/dma/iop-adma.c
9389
9390 INTEL IPU3 CSI-2 CIO2 DRIVER
9391 M:      Yong Zhi <yong.zhi@intel.com>
9392 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9393 M:      Bingbu Cao <bingbu.cao@intel.com>
9394 M:      Dan Scally <djrscally@gmail.com>
9395 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9396 L:      linux-media@vger.kernel.org
9397 S:      Maintained
9398 T:      git git://linuxtv.org/media_tree.git
9399 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9400 F:      drivers/media/pci/intel/ipu3/
9401
9402 INTEL IPU3 CSI-2 IMGU DRIVER
9403 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9404 R:      Bingbu Cao <bingbu.cao@intel.com>
9405 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9406 L:      linux-media@vger.kernel.org
9407 S:      Maintained
9408 F:      Documentation/admin-guide/media/ipu3.rst
9409 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9410 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9411 F:      drivers/staging/media/ipu3/
9412
9413 INTEL IXP4XX CRYPTO SUPPORT
9414 M:      Corentin Labbe <clabbe@baylibre.com>
9415 L:      linux-crypto@vger.kernel.org
9416 S:      Maintained
9417 F:      drivers/crypto/ixp4xx_crypto.c
9418
9419 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9420 M:      Krzysztof Halasa <khalasa@piap.pl>
9421 S:      Maintained
9422 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9423 F:      drivers/net/wan/ixp4xx_hss.c
9424 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9425 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9426 F:      include/linux/soc/ixp4xx/npe.h
9427 F:      include/linux/soc/ixp4xx/qmgr.h
9428
9429 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9430 M:      Deepak Saxena <dsaxena@plexity.net>
9431 S:      Maintained
9432 F:      Documentation/devicetree/bindings/display/intel,ixp46x-rng.yaml
9433 F:      drivers/char/hw_random/ixp4xx-rng.c
9434
9435 INTEL KEEM BAY DRM DRIVER
9436 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9437 M:      Edmund Dea <edmund.j.dea@intel.com>
9438 S:      Maintained
9439 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9440 F:      drivers/gpu/drm/kmb/
9441
9442 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9443 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9444 S:      Maintained
9445 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9446 F:      drivers/crypto/keembay/Kconfig
9447 F:      drivers/crypto/keembay/Makefile
9448 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9449 F:      drivers/crypto/keembay/ocs-aes.c
9450 F:      drivers/crypto/keembay/ocs-aes.h
9451
9452 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9453 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9454 M:      Declan Murphy <declan.murphy@intel.com>
9455 S:      Maintained
9456 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9457 F:      drivers/crypto/keembay/Kconfig
9458 F:      drivers/crypto/keembay/Makefile
9459 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9460 F:      drivers/crypto/keembay/ocs-hcu.c
9461 F:      drivers/crypto/keembay/ocs-hcu.h
9462
9463 INTEL MANAGEMENT ENGINE (mei)
9464 M:      Tomas Winkler <tomas.winkler@intel.com>
9465 L:      linux-kernel@vger.kernel.org
9466 S:      Supported
9467 F:      Documentation/driver-api/mei/*
9468 F:      drivers/misc/mei/
9469 F:      drivers/watchdog/mei_wdt.c
9470 F:      include/linux/mei_cl_bus.h
9471 F:      include/uapi/linux/mei.h
9472 F:      samples/mei/*
9473
9474 INTEL MAX 10 BMC MFD DRIVER
9475 M:      Xu Yilun <yilun.xu@intel.com>
9476 R:      Tom Rix <trix@redhat.com>
9477 S:      Maintained
9478 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9479 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9480 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9481 F:      drivers/mfd/intel-m10-bmc.c
9482 F:      include/linux/mfd/intel-m10-bmc.h
9483
9484 INTEL MENLOW THERMAL DRIVER
9485 M:      Sujith Thomas <sujith.thomas@intel.com>
9486 L:      platform-driver-x86@vger.kernel.org
9487 S:      Supported
9488 W:      https://01.org/linux-acpi
9489 F:      drivers/platform/x86/intel_menlow.c
9490
9491 INTEL P-Unit IPC DRIVER
9492 M:      Zha Qipeng <qipeng.zha@intel.com>
9493 L:      platform-driver-x86@vger.kernel.org
9494 S:      Maintained
9495 F:      arch/x86/include/asm/intel_punit_ipc.h
9496 F:      drivers/platform/x86/intel_punit_ipc.c
9497
9498 INTEL PMC CORE DRIVER
9499 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9500 M:      David E Box <david.e.box@intel.com>
9501 L:      platform-driver-x86@vger.kernel.org
9502 S:      Maintained
9503 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9504 F:      drivers/platform/x86/intel_pmc_core*
9505
9506 INTEL PMIC GPIO DRIVERS
9507 M:      Andy Shevchenko <andy@kernel.org>
9508 S:      Maintained
9509 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9510 F:      drivers/gpio/gpio-*cove.c
9511
9512 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9513 M:      Andy Shevchenko <andy@kernel.org>
9514 S:      Maintained
9515 F:      drivers/mfd/intel_soc_pmic*
9516 F:      include/linux/mfd/intel_soc_pmic*
9517
9518 INTEL PMT DRIVER
9519 M:      "David E. Box" <david.e.box@linux.intel.com>
9520 S:      Maintained
9521 F:      drivers/mfd/intel_pmt.c
9522 F:      drivers/platform/x86/intel_pmt_*
9523
9524 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9525 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9526 L:      linux-wireless@vger.kernel.org
9527 S:      Maintained
9528 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9529 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9530 F:      drivers/net/wireless/intel/ipw2x00/
9531
9532 INTEL PSTATE DRIVER
9533 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9534 M:      Len Brown <lenb@kernel.org>
9535 L:      linux-pm@vger.kernel.org
9536 S:      Supported
9537 F:      drivers/cpufreq/intel_pstate.c
9538
9539 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
9540 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9541 L:      linux-iio@vger.kernel.org
9542 F:      drivers/counter/intel-qep.c
9543
9544 INTEL SCU DRIVERS
9545 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9546 S:      Maintained
9547 F:      arch/x86/include/asm/intel_scu_ipc.h
9548 F:      drivers/platform/x86/intel_scu_*
9549
9550 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9551 M:      Daniel Scally <djrscally@gmail.com>
9552 S:      Maintained
9553 F:      drivers/platform/x86/intel/int3472/
9554
9555 INTEL SPEED SELECT TECHNOLOGY
9556 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9557 L:      platform-driver-x86@vger.kernel.org
9558 S:      Maintained
9559 F:      drivers/platform/x86/intel_speed_select_if/
9560 F:      include/uapi/linux/isst_if.h
9561 F:      tools/power/x86/intel-speed-select/
9562
9563 INTEL STRATIX10 FIRMWARE DRIVERS
9564 M:      Richard Gong <richard.gong@linux.intel.com>
9565 L:      linux-kernel@vger.kernel.org
9566 S:      Maintained
9567 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9568 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9569 F:      drivers/firmware/stratix10-rsu.c
9570 F:      drivers/firmware/stratix10-svc.c
9571 F:      include/linux/firmware/intel/stratix10-smc.h
9572 F:      include/linux/firmware/intel/stratix10-svc-client.h
9573
9574 INTEL TELEMETRY DRIVER
9575 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9576 M:      "David E. Box" <david.e.box@linux.intel.com>
9577 L:      platform-driver-x86@vger.kernel.org
9578 S:      Maintained
9579 F:      arch/x86/include/asm/intel_telemetry.h
9580 F:      drivers/platform/x86/intel_telemetry*
9581
9582 INTEL UNCORE FREQUENCY CONTROL
9583 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9584 L:      platform-driver-x86@vger.kernel.org
9585 S:      Maintained
9586 F:      drivers/platform/x86/intel-uncore-frequency.c
9587
9588 INTEL VIRTUAL BUTTON DRIVER
9589 M:      AceLan Kao <acelan.kao@canonical.com>
9590 L:      platform-driver-x86@vger.kernel.org
9591 S:      Maintained
9592 F:      drivers/platform/x86/intel-vbtn.c
9593
9594 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9595 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9596 L:      linux-wireless@vger.kernel.org
9597 S:      Supported
9598 F:      drivers/net/wireless/intel/iwlegacy/
9599
9600 INTEL WIRELESS WIFI LINK (iwlwifi)
9601 M:      Luca Coelho <luciano.coelho@intel.com>
9602 L:      linux-wireless@vger.kernel.org
9603 S:      Supported
9604 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9606 F:      drivers/net/wireless/intel/iwlwifi/
9607
9608 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9609 M:      Jithu Joseph <jithu.joseph@intel.com>
9610 R:      Maurice Ma <maurice.ma@intel.com>
9611 S:      Maintained
9612 W:      https://slimbootloader.github.io/security/firmware-update.html
9613 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
9614
9615 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9616 L:      Dell.Client.Kernel@dell.com
9617 S:      Maintained
9618 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
9619
9620 INTEL WWAN IOSM DRIVER
9621 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
9622 M:      Intel Corporation <linuxwwan@intel.com>
9623 L:      netdev@vger.kernel.org
9624 S:      Maintained
9625 F:      drivers/net/wwan/iosm/
9626
9627 INTEL(R) TRACE HUB
9628 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9629 S:      Supported
9630 F:      Documentation/trace/intel_th.rst
9631 F:      drivers/hwtracing/intel_th/
9632 F:      include/linux/intel_th.h
9633
9634 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9635 M:      Ning Sun <ning.sun@intel.com>
9636 L:      tboot-devel@lists.sourceforge.net
9637 S:      Supported
9638 W:      http://tboot.sourceforge.net
9639 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9640 F:      Documentation/x86/intel_txt.rst
9641 F:      arch/x86/kernel/tboot.c
9642 F:      include/linux/tboot.h
9643
9644 INTEL SGX
9645 M:      Jarkko Sakkinen <jarkko@kernel.org>
9646 R:      Dave Hansen <dave.hansen@linux.intel.com>
9647 L:      linux-sgx@vger.kernel.org
9648 S:      Supported
9649 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9651 F:      Documentation/x86/sgx.rst
9652 F:      arch/x86/entry/vdso/vsgx.S
9653 F:      arch/x86/include/asm/sgx.h
9654 F:      arch/x86/include/uapi/asm/sgx.h
9655 F:      arch/x86/kernel/cpu/sgx/*
9656 F:      tools/testing/selftests/sgx/*
9657 K:      \bSGX_
9658
9659 INTERCONNECT API
9660 M:      Georgi Djakov <djakov@kernel.org>
9661 L:      linux-pm@vger.kernel.org
9662 S:      Maintained
9663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9664 F:      Documentation/devicetree/bindings/interconnect/
9665 F:      Documentation/driver-api/interconnect.rst
9666 F:      drivers/interconnect/
9667 F:      include/dt-bindings/interconnect/
9668 F:      include/linux/interconnect-provider.h
9669 F:      include/linux/interconnect.h
9670
9671 INTERRUPT COUNTER DRIVER
9672 M:      Oleksij Rempel <o.rempel@pengutronix.de>
9673 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
9674 L:      linux-iio@vger.kernel.org
9675 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9676 F:      drivers/counter/interrupt-cnt.c
9677
9678 INVENSENSE ICM-426xx IMU DRIVER
9679 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9680 L:      linux-iio@vger.kernel.org
9681 S:      Maintained
9682 W:      https://invensense.tdk.com/
9683 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9684 F:      drivers/iio/imu/inv_icm42600/
9685
9686 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9687 M:      Linus Walleij <linus.walleij@linaro.org>
9688 L:      linux-iio@vger.kernel.org
9689 S:      Maintained
9690 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9691 F:      drivers/iio/gyro/mpu3050*
9692
9693 IOC3 ETHERNET DRIVER
9694 M:      Ralf Baechle <ralf@linux-mips.org>
9695 L:      linux-mips@vger.kernel.org
9696 S:      Maintained
9697 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9698
9699 IOMAP FILESYSTEM LIBRARY
9700 M:      Christoph Hellwig <hch@infradead.org>
9701 M:      Darrick J. Wong <djwong@kernel.org>
9702 M:      linux-xfs@vger.kernel.org
9703 M:      linux-fsdevel@vger.kernel.org
9704 L:      linux-xfs@vger.kernel.org
9705 L:      linux-fsdevel@vger.kernel.org
9706 S:      Supported
9707 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9708 F:      fs/iomap/
9709 F:      include/linux/iomap.h
9710
9711 IOMMU DRIVERS
9712 M:      Joerg Roedel <joro@8bytes.org>
9713 M:      Will Deacon <will@kernel.org>
9714 L:      iommu@lists.linux-foundation.org
9715 S:      Maintained
9716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9717 F:      Documentation/devicetree/bindings/iommu/
9718 F:      Documentation/userspace-api/iommu.rst
9719 F:      drivers/iommu/
9720 F:      include/linux/iommu.h
9721 F:      include/linux/iova.h
9722 F:      include/linux/of_iommu.h
9723 F:      include/uapi/linux/iommu.h
9724
9725 IO_URING
9726 M:      Jens Axboe <axboe@kernel.dk>
9727 R:      Pavel Begunkov <asml.silence@gmail.com>
9728 L:      io-uring@vger.kernel.org
9729 S:      Maintained
9730 T:      git git://git.kernel.dk/linux-block
9731 T:      git git://git.kernel.dk/liburing
9732 F:      fs/io-wq.c
9733 F:      fs/io-wq.h
9734 F:      fs/io_uring.c
9735 F:      include/linux/io_uring.h
9736 F:      include/uapi/linux/io_uring.h
9737 F:      tools/io_uring/
9738
9739 IPMI SUBSYSTEM
9740 M:      Corey Minyard <minyard@acm.org>
9741 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9742 S:      Supported
9743 W:      http://openipmi.sourceforge.net/
9744 F:      Documentation/driver-api/ipmi.rst
9745 F:      Documentation/devicetree/bindings/ipmi/
9746 F:      drivers/char/ipmi/
9747 F:      include/linux/ipmi*
9748 F:      include/uapi/linux/ipmi*
9749
9750 IPS SCSI RAID DRIVER
9751 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9752 L:      linux-scsi@vger.kernel.org
9753 S:      Maintained
9754 W:      http://www.adaptec.com/
9755 F:      drivers/scsi/ips*
9756
9757 IPVS
9758 M:      Simon Horman <horms@verge.net.au>
9759 M:      Julian Anastasov <ja@ssi.bg>
9760 L:      netdev@vger.kernel.org
9761 L:      lvs-devel@vger.kernel.org
9762 S:      Maintained
9763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9764 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9765 F:      Documentation/networking/ipvs-sysctl.rst
9766 F:      include/net/ip_vs.h
9767 F:      include/uapi/linux/ip_vs.h
9768 F:      net/netfilter/ipvs/
9769
9770 IPWIRELESS DRIVER
9771 M:      Jiri Kosina <jikos@kernel.org>
9772 M:      David Sterba <dsterba@suse.com>
9773 S:      Odd Fixes
9774 F:      drivers/tty/ipwireless/
9775
9776 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9777 M:      Marc Zyngier <maz@kernel.org>
9778 S:      Maintained
9779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9780 F:      Documentation/core-api/irq/irq-domain.rst
9781 F:      include/linux/irqdomain.h
9782 F:      kernel/irq/irqdomain.c
9783 F:      kernel/irq/msi.c
9784
9785 IRQ SUBSYSTEM
9786 M:      Thomas Gleixner <tglx@linutronix.de>
9787 L:      linux-kernel@vger.kernel.org
9788 S:      Maintained
9789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9790 F:      kernel/irq/
9791
9792 IRQCHIP DRIVERS
9793 M:      Thomas Gleixner <tglx@linutronix.de>
9794 M:      Marc Zyngier <maz@kernel.org>
9795 L:      linux-kernel@vger.kernel.org
9796 S:      Maintained
9797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9798 F:      Documentation/devicetree/bindings/interrupt-controller/
9799 F:      drivers/irqchip/
9800
9801 ISA
9802 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9803 S:      Maintained
9804 F:      Documentation/driver-api/isa.rst
9805 F:      drivers/base/isa.c
9806 F:      include/linux/isa.h
9807
9808 ISA RADIO MODULE
9809 M:      Hans Verkuil <hverkuil@xs4all.nl>
9810 L:      linux-media@vger.kernel.org
9811 S:      Maintained
9812 W:      https://linuxtv.org
9813 T:      git git://linuxtv.org/media_tree.git
9814 F:      drivers/media/radio/radio-isa*
9815
9816 ISAPNP
9817 M:      Jaroslav Kysela <perex@perex.cz>
9818 S:      Maintained
9819 F:      Documentation/driver-api/isapnp.rst
9820 F:      drivers/pnp/isapnp/
9821 F:      include/linux/isapnp.h
9822
9823 ISCSI
9824 M:      Lee Duncan <lduncan@suse.com>
9825 M:      Chris Leech <cleech@redhat.com>
9826 L:      open-iscsi@googlegroups.com
9827 L:      linux-scsi@vger.kernel.org
9828 S:      Maintained
9829 W:      www.open-iscsi.com
9830 F:      drivers/scsi/*iscsi*
9831 F:      include/scsi/*iscsi*
9832
9833 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9834 M:      Peter Jones <pjones@redhat.com>
9835 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9836 S:      Maintained
9837 F:      drivers/firmware/iscsi_ibft*
9838
9839 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9840 M:      Sagi Grimberg <sagi@grimberg.me>
9841 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
9842 L:      linux-rdma@vger.kernel.org
9843 S:      Supported
9844 W:      http://www.openfabrics.org
9845 W:      www.open-iscsi.org
9846 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9847 F:      drivers/infiniband/ulp/iser/
9848
9849 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9850 M:      Sagi Grimberg <sagi@grimberg.me>
9851 L:      linux-rdma@vger.kernel.org
9852 L:      target-devel@vger.kernel.org
9853 S:      Supported
9854 W:      http://www.linux-iscsi.org
9855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9856 F:      drivers/infiniband/ulp/isert
9857
9858 ISDN/CMTP OVER BLUETOOTH
9859 M:      Karsten Keil <isdn@linux-pingi.de>
9860 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9861 L:      netdev@vger.kernel.org
9862 S:      Odd Fixes
9863 W:      http://www.isdn4linux.de
9864 F:      Documentation/isdn/
9865 F:      drivers/isdn/capi/
9866 F:      include/linux/isdn/
9867 F:      include/uapi/linux/isdn/
9868 F:      net/bluetooth/cmtp/
9869
9870 ISDN/mISDN SUBSYSTEM
9871 M:      Karsten Keil <isdn@linux-pingi.de>
9872 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9873 L:      netdev@vger.kernel.org
9874 S:      Maintained
9875 W:      http://www.isdn4linux.de
9876 F:      drivers/isdn/Kconfig
9877 F:      drivers/isdn/Makefile
9878 F:      drivers/isdn/hardware/
9879 F:      drivers/isdn/mISDN/
9880
9881 IT87 HARDWARE MONITORING DRIVER
9882 M:      Jean Delvare <jdelvare@suse.com>
9883 L:      linux-hwmon@vger.kernel.org
9884 S:      Maintained
9885 F:      Documentation/hwmon/it87.rst
9886 F:      drivers/hwmon/it87.c
9887
9888 IT913X MEDIA DRIVER
9889 M:      Antti Palosaari <crope@iki.fi>
9890 L:      linux-media@vger.kernel.org
9891 S:      Maintained
9892 W:      https://linuxtv.org
9893 W:      http://palosaari.fi/linux/
9894 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9895 T:      git git://linuxtv.org/anttip/media_tree.git
9896 F:      drivers/media/tuners/it913x*
9897
9898 ITE IT66121 HDMI BRIDGE DRIVER
9899 M:      Phong LE <ple@baylibre.com>
9900 M:      Neil Armstrong <narmstrong@baylibre.com>
9901 S:      Maintained
9902 T:      git git://anongit.freedesktop.org/drm/drm-misc
9903 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
9904 F:      drivers/gpu/drm/bridge/ite-it66121.c
9905
9906 IVTV VIDEO4LINUX DRIVER
9907 M:      Andy Walls <awalls@md.metrocast.net>
9908 L:      linux-media@vger.kernel.org
9909 S:      Maintained
9910 W:      https://linuxtv.org
9911 T:      git git://linuxtv.org/media_tree.git
9912 F:      Documentation/admin-guide/media/ivtv*
9913 F:      drivers/media/pci/ivtv/
9914 F:      include/uapi/linux/ivtv*
9915
9916 IX2505V MEDIA DRIVER
9917 M:      Malcolm Priestley <tvboxspy@gmail.com>
9918 L:      linux-media@vger.kernel.org
9919 S:      Maintained
9920 W:      https://linuxtv.org
9921 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9922 F:      drivers/media/dvb-frontends/ix2505v*
9923
9924 JAILHOUSE HYPERVISOR INTERFACE
9925 M:      Jan Kiszka <jan.kiszka@siemens.com>
9926 L:      jailhouse-dev@googlegroups.com
9927 S:      Maintained
9928 F:      arch/x86/include/asm/jailhouse_para.h
9929 F:      arch/x86/kernel/jailhouse.c
9930
9931 JC42.4 TEMPERATURE SENSOR DRIVER
9932 M:      Guenter Roeck <linux@roeck-us.net>
9933 L:      linux-hwmon@vger.kernel.org
9934 S:      Maintained
9935 F:      Documentation/hwmon/jc42.rst
9936 F:      drivers/hwmon/jc42.c
9937
9938 JFS FILESYSTEM
9939 M:      Dave Kleikamp <shaggy@kernel.org>
9940 L:      jfs-discussion@lists.sourceforge.net
9941 S:      Maintained
9942 W:      http://jfs.sourceforge.net/
9943 T:      git git://github.com/kleikamp/linux-shaggy.git
9944 F:      Documentation/admin-guide/jfs.rst
9945 F:      fs/jfs/
9946
9947 JME NETWORK DRIVER
9948 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9949 L:      netdev@vger.kernel.org
9950 S:      Maintained
9951 F:      drivers/net/ethernet/jme.*
9952
9953 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9954 M:      David Woodhouse <dwmw2@infradead.org>
9955 M:      Richard Weinberger <richard@nod.at>
9956 L:      linux-mtd@lists.infradead.org
9957 S:      Odd Fixes
9958 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9959 T:      git git://git.infradead.org/ubifs-2.6.git
9960 F:      fs/jffs2/
9961 F:      include/uapi/linux/jffs2.h
9962
9963 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9964 M:      "Theodore Ts'o" <tytso@mit.edu>
9965 M:      Jan Kara <jack@suse.com>
9966 L:      linux-ext4@vger.kernel.org
9967 S:      Maintained
9968 F:      fs/jbd2/
9969 F:      include/linux/jbd2.h
9970
9971 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9972 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9973 L:      linux-media@vger.kernel.org
9974 S:      Maintained
9975 F:      drivers/media/platform/rcar_jpu.c
9976
9977 JSM Neo PCI based serial card
9978 L:      linux-serial@vger.kernel.org
9979 S:      Orphan
9980 F:      drivers/tty/serial/jsm/
9981
9982 K10TEMP HARDWARE MONITORING DRIVER
9983 M:      Clemens Ladisch <clemens@ladisch.de>
9984 L:      linux-hwmon@vger.kernel.org
9985 S:      Maintained
9986 F:      Documentation/hwmon/k10temp.rst
9987 F:      drivers/hwmon/k10temp.c
9988
9989 K8TEMP HARDWARE MONITORING DRIVER
9990 M:      Rudolf Marek <r.marek@assembler.cz>
9991 L:      linux-hwmon@vger.kernel.org
9992 S:      Maintained
9993 F:      Documentation/hwmon/k8temp.rst
9994 F:      drivers/hwmon/k8temp.c
9995
9996 KASAN
9997 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
9998 R:      Alexander Potapenko <glider@google.com>
9999 R:      Andrey Konovalov <andreyknvl@gmail.com>
10000 R:      Dmitry Vyukov <dvyukov@google.com>
10001 L:      kasan-dev@googlegroups.com
10002 S:      Maintained
10003 F:      Documentation/dev-tools/kasan.rst
10004 F:      arch/*/include/asm/*kasan.h
10005 F:      arch/*/mm/kasan_init*
10006 F:      include/linux/kasan*.h
10007 F:      lib/Kconfig.kasan
10008 F:      lib/test_kasan*.c
10009 F:      mm/kasan/
10010 F:      scripts/Makefile.kasan
10011
10012 KCONFIG
10013 M:      Masahiro Yamada <masahiroy@kernel.org>
10014 L:      linux-kbuild@vger.kernel.org
10015 S:      Maintained
10016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10017 F:      Documentation/kbuild/kconfig*
10018 F:      scripts/Kconfig.include
10019 F:      scripts/kconfig/
10020
10021 KCOV
10022 R:      Dmitry Vyukov <dvyukov@google.com>
10023 R:      Andrey Konovalov <andreyknvl@gmail.com>
10024 L:      kasan-dev@googlegroups.com
10025 S:      Maintained
10026 F:      Documentation/dev-tools/kcov.rst
10027 F:      include/linux/kcov.h
10028 F:      include/uapi/linux/kcov.h
10029 F:      kernel/kcov.c
10030 F:      scripts/Makefile.kcov
10031
10032 KCSAN
10033 M:      Marco Elver <elver@google.com>
10034 R:      Dmitry Vyukov <dvyukov@google.com>
10035 L:      kasan-dev@googlegroups.com
10036 S:      Maintained
10037 F:      Documentation/dev-tools/kcsan.rst
10038 F:      include/linux/kcsan*.h
10039 F:      kernel/kcsan/
10040 F:      lib/Kconfig.kcsan
10041 F:      scripts/Makefile.kcsan
10042
10043 KDUMP
10044 M:      Dave Young <dyoung@redhat.com>
10045 M:      Baoquan He <bhe@redhat.com>
10046 R:      Vivek Goyal <vgoyal@redhat.com>
10047 L:      kexec@lists.infradead.org
10048 S:      Maintained
10049 W:      http://lse.sourceforge.net/kdump/
10050 F:      Documentation/admin-guide/kdump/
10051 F:      fs/proc/vmcore.c
10052 F:      include/linux/crash_core.h
10053 F:      include/linux/crash_dump.h
10054 F:      include/uapi/linux/vmcore.h
10055 F:      kernel/crash_*.c
10056
10057 KEENE FM RADIO TRANSMITTER DRIVER
10058 M:      Hans Verkuil <hverkuil@xs4all.nl>
10059 L:      linux-media@vger.kernel.org
10060 S:      Maintained
10061 W:      https://linuxtv.org
10062 T:      git git://linuxtv.org/media_tree.git
10063 F:      drivers/media/radio/radio-keene*
10064
10065 KERNEL AUTOMOUNTER
10066 M:      Ian Kent <raven@themaw.net>
10067 L:      autofs@vger.kernel.org
10068 S:      Maintained
10069 F:      fs/autofs/
10070
10071 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10072 M:      Masahiro Yamada <masahiroy@kernel.org>
10073 M:      Michal Marek <michal.lkml@markovi.net>
10074 L:      linux-kbuild@vger.kernel.org
10075 S:      Maintained
10076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10077 F:      Documentation/kbuild/
10078 F:      Makefile
10079 F:      scripts/*vmlinux*
10080 F:      scripts/Kbuild*
10081 F:      scripts/Makefile*
10082 F:      scripts/basic/
10083 F:      scripts/dummy-tools/
10084 F:      scripts/mk*
10085 F:      scripts/mod/
10086 F:      scripts/package/
10087
10088 KERNEL JANITORS
10089 L:      kernel-janitors@vger.kernel.org
10090 S:      Odd Fixes
10091 W:      http://kernelnewbies.org/KernelJanitors
10092
10093 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10094 M:      "J. Bruce Fields" <bfields@fieldses.org>
10095 M:      Chuck Lever <chuck.lever@oracle.com>
10096 L:      linux-nfs@vger.kernel.org
10097 S:      Supported
10098 W:      http://nfs.sourceforge.net/
10099 T:      git git://linux-nfs.org/~bfields/linux.git
10100 F:      fs/lockd/
10101 F:      fs/nfs_common/
10102 F:      fs/nfsd/
10103 F:      include/linux/lockd/
10104 F:      include/linux/sunrpc/
10105 F:      include/uapi/linux/nfsd/
10106 F:      include/uapi/linux/sunrpc/
10107 F:      net/sunrpc/
10108 F:      Documentation/filesystems/nfs/
10109
10110 KERNEL REGRESSIONS
10111 M:      Thorsten Leemhuis <linux@leemhuis.info>
10112 L:      regressions@lists.linux.dev
10113 S:      Supported
10114
10115 KERNEL SELFTEST FRAMEWORK
10116 M:      Shuah Khan <shuah@kernel.org>
10117 M:      Shuah Khan <skhan@linuxfoundation.org>
10118 L:      linux-kselftest@vger.kernel.org
10119 S:      Maintained
10120 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10122 F:      Documentation/dev-tools/kselftest*
10123 F:      tools/testing/selftests/
10124
10125 KERNEL SMB3 SERVER (KSMBD)
10126 M:      Namjae Jeon <linkinjeon@kernel.org>
10127 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
10128 M:      Steve French <sfrench@samba.org>
10129 M:      Hyunchul Lee <hyc.lee@gmail.com>
10130 L:      linux-cifs@vger.kernel.org
10131 S:      Maintained
10132 T:      git git://git.samba.org/ksmbd.git
10133 F:      fs/cifs_common/
10134 F:      fs/ksmbd/
10135
10136 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10137 M:      Brendan Higgins <brendanhiggins@google.com>
10138 L:      linux-kselftest@vger.kernel.org
10139 L:      kunit-dev@googlegroups.com
10140 S:      Maintained
10141 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10142 F:      Documentation/dev-tools/kunit/
10143 F:      include/kunit/
10144 F:      lib/kunit/
10145 F:      tools/testing/kunit/
10146
10147 KERNEL USERMODE HELPER
10148 M:      Luis Chamberlain <mcgrof@kernel.org>
10149 L:      linux-kernel@vger.kernel.org
10150 S:      Maintained
10151 F:      include/linux/umh.h
10152 F:      kernel/umh.c
10153
10154 KERNEL VIRTUAL MACHINE (KVM)
10155 M:      Paolo Bonzini <pbonzini@redhat.com>
10156 L:      kvm@vger.kernel.org
10157 S:      Supported
10158 W:      http://www.linux-kvm.org
10159 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10160 F:      Documentation/virt/kvm/
10161 F:      include/asm-generic/kvm*
10162 F:      include/kvm/iodev.h
10163 F:      include/linux/kvm*
10164 F:      include/trace/events/kvm.h
10165 F:      include/uapi/asm-generic/kvm*
10166 F:      include/uapi/linux/kvm*
10167 F:      tools/kvm/
10168 F:      tools/testing/selftests/kvm/
10169 F:      virt/kvm/*
10170
10171 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10172 M:      Marc Zyngier <maz@kernel.org>
10173 R:      James Morse <james.morse@arm.com>
10174 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10175 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10176 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10177 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10178 S:      Maintained
10179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10180 F:      arch/arm64/include/asm/kvm*
10181 F:      arch/arm64/include/uapi/asm/kvm*
10182 F:      arch/arm64/kvm/
10183 F:      include/kvm/arm_*
10184 F:      tools/testing/selftests/kvm/*/aarch64/
10185 F:      tools/testing/selftests/kvm/aarch64/
10186
10187 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10188 M:      Huacai Chen <chenhuacai@kernel.org>
10189 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10190 L:      linux-mips@vger.kernel.org
10191 L:      kvm@vger.kernel.org
10192 S:      Maintained
10193 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10194 F:      arch/mips/include/asm/kvm*
10195 F:      arch/mips/include/uapi/asm/kvm*
10196 F:      arch/mips/kvm/
10197
10198 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10199 M:      Paul Mackerras <paulus@ozlabs.org>
10200 L:      kvm-ppc@vger.kernel.org
10201 S:      Supported
10202 W:      http://www.linux-kvm.org/
10203 T:      git git://github.com/agraf/linux-2.6.git
10204 F:      arch/powerpc/include/asm/kvm*
10205 F:      arch/powerpc/include/uapi/asm/kvm*
10206 F:      arch/powerpc/kernel/kvm*
10207 F:      arch/powerpc/kvm/
10208
10209 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10210 M:      Christian Borntraeger <borntraeger@de.ibm.com>
10211 M:      Janosch Frank <frankja@linux.ibm.com>
10212 R:      David Hildenbrand <david@redhat.com>
10213 R:      Cornelia Huck <cohuck@redhat.com>
10214 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10215 L:      kvm@vger.kernel.org
10216 S:      Supported
10217 W:      http://www.ibm.com/developerworks/linux/linux390/
10218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10219 F:      Documentation/virt/kvm/s390*
10220 F:      arch/s390/include/asm/gmap.h
10221 F:      arch/s390/include/asm/kvm*
10222 F:      arch/s390/include/uapi/asm/kvm*
10223 F:      arch/s390/kernel/uv.c
10224 F:      arch/s390/kvm/
10225 F:      arch/s390/mm/gmap.c
10226 F:      tools/testing/selftests/kvm/*/s390x/
10227 F:      tools/testing/selftests/kvm/s390x/
10228
10229 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10230 M:      Paolo Bonzini <pbonzini@redhat.com>
10231 R:      Sean Christopherson <seanjc@google.com>
10232 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10233 R:      Wanpeng Li <wanpengli@tencent.com>
10234 R:      Jim Mattson <jmattson@google.com>
10235 R:      Joerg Roedel <joro@8bytes.org>
10236 L:      kvm@vger.kernel.org
10237 S:      Supported
10238 W:      http://www.linux-kvm.org
10239 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10240 F:      arch/x86/include/asm/kvm*
10241 F:      arch/x86/include/asm/pvclock-abi.h
10242 F:      arch/x86/include/asm/svm.h
10243 F:      arch/x86/include/asm/vmx*.h
10244 F:      arch/x86/include/uapi/asm/kvm*
10245 F:      arch/x86/include/uapi/asm/svm.h
10246 F:      arch/x86/include/uapi/asm/vmx.h
10247 F:      arch/x86/kernel/kvm.c
10248 F:      arch/x86/kernel/kvmclock.c
10249 F:      arch/x86/kvm/
10250 F:      arch/x86/kvm/*/
10251
10252 KERNFS
10253 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10254 M:      Tejun Heo <tj@kernel.org>
10255 S:      Supported
10256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10257 F:      fs/kernfs/
10258 F:      include/linux/kernfs.h
10259
10260 KEXEC
10261 M:      Eric Biederman <ebiederm@xmission.com>
10262 L:      kexec@lists.infradead.org
10263 S:      Maintained
10264 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10265 F:      include/linux/kexec.h
10266 F:      include/uapi/linux/kexec.h
10267 F:      kernel/kexec*
10268
10269 KEYS-ENCRYPTED
10270 M:      Mimi Zohar <zohar@linux.ibm.com>
10271 L:      linux-integrity@vger.kernel.org
10272 L:      keyrings@vger.kernel.org
10273 S:      Supported
10274 F:      Documentation/security/keys/trusted-encrypted.rst
10275 F:      include/keys/encrypted-type.h
10276 F:      security/keys/encrypted-keys/
10277
10278 KEYS-TRUSTED
10279 M:      James Bottomley <jejb@linux.ibm.com>
10280 M:      Jarkko Sakkinen <jarkko@kernel.org>
10281 M:      Mimi Zohar <zohar@linux.ibm.com>
10282 L:      linux-integrity@vger.kernel.org
10283 L:      keyrings@vger.kernel.org
10284 S:      Supported
10285 F:      Documentation/security/keys/trusted-encrypted.rst
10286 F:      include/keys/trusted-type.h
10287 F:      include/keys/trusted_tpm.h
10288 F:      security/keys/trusted-keys/
10289
10290 KEYS-TRUSTED-TEE
10291 M:      Sumit Garg <sumit.garg@linaro.org>
10292 L:      linux-integrity@vger.kernel.org
10293 L:      keyrings@vger.kernel.org
10294 S:      Supported
10295 F:      include/keys/trusted_tee.h
10296 F:      security/keys/trusted-keys/trusted_tee.c
10297
10298 KEYS/KEYRINGS
10299 M:      David Howells <dhowells@redhat.com>
10300 M:      Jarkko Sakkinen <jarkko@kernel.org>
10301 L:      keyrings@vger.kernel.org
10302 S:      Maintained
10303 F:      Documentation/security/keys/core.rst
10304 F:      include/keys/
10305 F:      include/linux/key-type.h
10306 F:      include/linux/key.h
10307 F:      include/linux/keyctl.h
10308 F:      include/uapi/linux/keyctl.h
10309 F:      security/keys/
10310
10311 KFENCE
10312 M:      Alexander Potapenko <glider@google.com>
10313 M:      Marco Elver <elver@google.com>
10314 R:      Dmitry Vyukov <dvyukov@google.com>
10315 L:      kasan-dev@googlegroups.com
10316 S:      Maintained
10317 F:      Documentation/dev-tools/kfence.rst
10318 F:      arch/*/include/asm/kfence.h
10319 F:      include/linux/kfence.h
10320 F:      lib/Kconfig.kfence
10321 F:      mm/kfence/
10322
10323 KFIFO
10324 M:      Stefani Seibold <stefani@seibold.net>
10325 S:      Maintained
10326 F:      include/linux/kfifo.h
10327 F:      lib/kfifo.c
10328 F:      samples/kfifo/
10329
10330 KGDB / KDB /debug_core
10331 M:      Jason Wessel <jason.wessel@windriver.com>
10332 M:      Daniel Thompson <daniel.thompson@linaro.org>
10333 R:      Douglas Anderson <dianders@chromium.org>
10334 L:      kgdb-bugreport@lists.sourceforge.net
10335 S:      Maintained
10336 W:      http://kgdb.wiki.kernel.org/
10337 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10338 F:      Documentation/dev-tools/kgdb.rst
10339 F:      drivers/misc/kgdbts.c
10340 F:      drivers/tty/serial/kgdboc.c
10341 F:      include/linux/kdb.h
10342 F:      include/linux/kgdb.h
10343 F:      kernel/debug/
10344
10345 KHADAS MCU MFD DRIVER
10346 M:      Neil Armstrong <narmstrong@baylibre.com>
10347 L:      linux-amlogic@lists.infradead.org
10348 S:      Maintained
10349 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10350 F:      drivers/mfd/khadas-mcu.c
10351 F:      include/linux/mfd/khadas-mcu.h
10352 F:      drivers/thermal/khadas_mcu_fan.c
10353
10354 KMEMLEAK
10355 M:      Catalin Marinas <catalin.marinas@arm.com>
10356 S:      Maintained
10357 F:      Documentation/dev-tools/kmemleak.rst
10358 F:      include/linux/kmemleak.h
10359 F:      mm/kmemleak.c
10360 F:      samples/kmemleak/kmemleak-test.c
10361
10362 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10363 M:      Luis Chamberlain <mcgrof@kernel.org>
10364 L:      linux-kernel@vger.kernel.org
10365 S:      Maintained
10366 F:      include/linux/kmod.h
10367 F:      kernel/kmod.c
10368 F:      lib/test_kmod.c
10369 F:      tools/testing/selftests/kmod/
10370
10371 KPROBES
10372 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10373 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10374 M:      "David S. Miller" <davem@davemloft.net>
10375 M:      Masami Hiramatsu <mhiramat@kernel.org>
10376 S:      Maintained
10377 F:      Documentation/trace/kprobes.rst
10378 F:      include/asm-generic/kprobes.h
10379 F:      include/linux/kprobes.h
10380 F:      kernel/kprobes.c
10381
10382 KS0108 LCD CONTROLLER DRIVER
10383 M:      Miguel Ojeda <ojeda@kernel.org>
10384 S:      Maintained
10385 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10386 F:      drivers/auxdisplay/ks0108.c
10387 F:      include/linux/ks0108.h
10388
10389 KTD253 BACKLIGHT DRIVER
10390 M:      Linus Walleij <linus.walleij@linaro.org>
10391 S:      Maintained
10392 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10393 F:      drivers/video/backlight/ktd253-backlight.c
10394
10395 KTEST
10396 M:      Steven Rostedt <rostedt@goodmis.org>
10397 M:      John Hawley <warthog9@eaglescrag.net>
10398 S:      Maintained
10399 F:      tools/testing/ktest
10400
10401 L3MDEV
10402 M:      David Ahern <dsahern@kernel.org>
10403 L:      netdev@vger.kernel.org
10404 S:      Maintained
10405 F:      include/net/l3mdev.h
10406 F:      net/l3mdev
10407
10408 L7 BPF FRAMEWORK
10409 M:      John Fastabend <john.fastabend@gmail.com>
10410 M:      Daniel Borkmann <daniel@iogearbox.net>
10411 M:      Jakub Sitnicki <jakub@cloudflare.com>
10412 M:      Lorenz Bauer <lmb@cloudflare.com>
10413 L:      netdev@vger.kernel.org
10414 L:      bpf@vger.kernel.org
10415 S:      Maintained
10416 F:      include/linux/skmsg.h
10417 F:      net/core/skmsg.c
10418 F:      net/core/sock_map.c
10419 F:      net/ipv4/tcp_bpf.c
10420 F:      net/ipv4/udp_bpf.c
10421 F:      net/unix/unix_bpf.c
10422
10423 LANDLOCK SECURITY MODULE
10424 M:      Mickaël Salaün <mic@digikod.net>
10425 L:      linux-security-module@vger.kernel.org
10426 S:      Supported
10427 W:      https://landlock.io
10428 T:      git https://github.com/landlock-lsm/linux.git
10429 F:      Documentation/security/landlock.rst
10430 F:      Documentation/userspace-api/landlock.rst
10431 F:      include/uapi/linux/landlock.h
10432 F:      samples/landlock/
10433 F:      security/landlock/
10434 F:      tools/testing/selftests/landlock/
10435 K:      landlock
10436 K:      LANDLOCK
10437
10438 LANTIQ / INTEL Ethernet drivers
10439 M:      Hauke Mehrtens <hauke@hauke-m.de>
10440 L:      netdev@vger.kernel.org
10441 S:      Maintained
10442 F:      drivers/net/dsa/lantiq_gswip.c
10443 F:      drivers/net/dsa/lantiq_pce.h
10444 F:      drivers/net/ethernet/lantiq_xrx200.c
10445 F:      net/dsa/tag_gswip.c
10446
10447 LANTIQ MIPS ARCHITECTURE
10448 M:      John Crispin <john@phrozen.org>
10449 L:      linux-mips@vger.kernel.org
10450 S:      Maintained
10451 F:      arch/mips/lantiq
10452 F:      drivers/soc/lantiq
10453
10454 LASI 53c700 driver for PARISC
10455 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10456 L:      linux-scsi@vger.kernel.org
10457 S:      Maintained
10458 F:      Documentation/scsi/53c700.rst
10459 F:      drivers/scsi/53c700*
10460
10461 LEAKING_ADDRESSES
10462 M:      Tobin C. Harding <me@tobin.cc>
10463 M:      Tycho Andersen <tycho@tycho.pizza>
10464 L:      linux-hardening@vger.kernel.org
10465 S:      Maintained
10466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10467 F:      scripts/leaking_addresses.pl
10468
10469 LED SUBSYSTEM
10470 M:      Pavel Machek <pavel@ucw.cz>
10471 L:      linux-leds@vger.kernel.org
10472 S:      Maintained
10473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10474 F:      Documentation/devicetree/bindings/leds/
10475 F:      drivers/leds/
10476 F:      include/linux/leds.h
10477
10478 LEGACY EEPROM DRIVER
10479 M:      Jean Delvare <jdelvare@suse.com>
10480 S:      Maintained
10481 F:      Documentation/misc-devices/eeprom.rst
10482 F:      drivers/misc/eeprom/eeprom.c
10483
10484 LEGO MINDSTORMS EV3
10485 R:      David Lechner <david@lechnology.com>
10486 S:      Maintained
10487 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10488 F:      arch/arm/boot/dts/da850-lego-ev3.dts
10489 F:      drivers/power/supply/lego_ev3_battery.c
10490
10491 LEGO USB Tower driver
10492 M:      Juergen Stuber <starblue@users.sourceforge.net>
10493 L:      legousb-devel@lists.sourceforge.net
10494 S:      Maintained
10495 W:      http://legousb.sourceforge.net/
10496 F:      drivers/usb/misc/legousbtower.c
10497
10498 LG LAPTOP EXTRAS
10499 M:      Matan Ziv-Av <matan@svgalib.org>
10500 L:      platform-driver-x86@vger.kernel.org
10501 S:      Maintained
10502 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10503 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10504 F:      drivers/platform/x86/lg-laptop.c
10505
10506 LG2160 MEDIA DRIVER
10507 M:      Michael Krufky <mkrufky@linuxtv.org>
10508 L:      linux-media@vger.kernel.org
10509 S:      Maintained
10510 W:      https://linuxtv.org
10511 W:      http://github.com/mkrufky
10512 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10513 T:      git git://linuxtv.org/mkrufky/tuners.git
10514 F:      drivers/media/dvb-frontends/lg2160.*
10515
10516 LGDT3305 MEDIA DRIVER
10517 M:      Michael Krufky <mkrufky@linuxtv.org>
10518 L:      linux-media@vger.kernel.org
10519 S:      Maintained
10520 W:      https://linuxtv.org
10521 W:      http://github.com/mkrufky
10522 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10523 T:      git git://linuxtv.org/mkrufky/tuners.git
10524 F:      drivers/media/dvb-frontends/lgdt3305.*
10525
10526 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10527 M:      Viresh Kumar <vireshk@kernel.org>
10528 L:      linux-ide@vger.kernel.org
10529 S:      Maintained
10530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10531 F:      drivers/ata/pata_arasan_cf.c
10532 F:      include/linux/pata_arasan_cf_data.h
10533
10534 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10535 M:      Linus Walleij <linus.walleij@linaro.org>
10536 L:      linux-ide@vger.kernel.org
10537 S:      Maintained
10538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10539 F:      drivers/ata/pata_ftide010.c
10540 F:      drivers/ata/sata_gemini.c
10541 F:      drivers/ata/sata_gemini.h
10542
10543 LIBATA SATA AHCI PLATFORM devices support
10544 M:      Hans de Goede <hdegoede@redhat.com>
10545 M:      Jens Axboe <axboe@kernel.dk>
10546 L:      linux-ide@vger.kernel.org
10547 S:      Maintained
10548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10549 F:      drivers/ata/ahci_platform.c
10550 F:      drivers/ata/libahci_platform.c
10551 F:      include/linux/ahci_platform.h
10552
10553 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10554 M:      Mikael Pettersson <mikpelinux@gmail.com>
10555 L:      linux-ide@vger.kernel.org
10556 S:      Maintained
10557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10558 F:      drivers/ata/sata_promise.*
10559
10560 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10561 M:      Jens Axboe <axboe@kernel.dk>
10562 L:      linux-ide@vger.kernel.org
10563 S:      Maintained
10564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10565 F:      Documentation/devicetree/bindings/ata/
10566 F:      drivers/ata/
10567 F:      include/linux/ata.h
10568 F:      include/linux/libata.h
10569
10570 LIBLOCKDEP
10571 M:      Sasha Levin <alexander.levin@microsoft.com>
10572 S:      Maintained
10573 F:      tools/lib/lockdep/
10574
10575 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10576 M:      Dan Williams <dan.j.williams@intel.com>
10577 M:      Vishal Verma <vishal.l.verma@intel.com>
10578 M:      Dave Jiang <dave.jiang@intel.com>
10579 L:      nvdimm@lists.linux.dev
10580 S:      Supported
10581 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10582 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10583 F:      drivers/nvdimm/blk.c
10584 F:      drivers/nvdimm/region_devs.c
10585
10586 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10587 M:      Vishal Verma <vishal.l.verma@intel.com>
10588 M:      Dan Williams <dan.j.williams@intel.com>
10589 M:      Dave Jiang <dave.jiang@intel.com>
10590 L:      nvdimm@lists.linux.dev
10591 S:      Supported
10592 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10593 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10594 F:      drivers/nvdimm/btt*
10595
10596 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10597 M:      Dan Williams <dan.j.williams@intel.com>
10598 M:      Vishal Verma <vishal.l.verma@intel.com>
10599 M:      Dave Jiang <dave.jiang@intel.com>
10600 L:      nvdimm@lists.linux.dev
10601 S:      Supported
10602 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10603 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10604 F:      drivers/nvdimm/pmem*
10605
10606 LIBNVDIMM: DEVICETREE BINDINGS
10607 M:      Oliver O'Halloran <oohall@gmail.com>
10608 L:      nvdimm@lists.linux.dev
10609 S:      Supported
10610 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10611 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10612 F:      drivers/nvdimm/of_pmem.c
10613
10614 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10615 M:      Dan Williams <dan.j.williams@intel.com>
10616 M:      Vishal Verma <vishal.l.verma@intel.com>
10617 M:      Dave Jiang <dave.jiang@intel.com>
10618 M:      Ira Weiny <ira.weiny@intel.com>
10619 L:      nvdimm@lists.linux.dev
10620 S:      Supported
10621 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10622 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10624 F:      drivers/acpi/nfit/*
10625 F:      drivers/nvdimm/*
10626 F:      include/linux/libnvdimm.h
10627 F:      include/linux/nd.h
10628 F:      include/uapi/linux/ndctl.h
10629 F:      tools/testing/nvdimm/
10630
10631 LICENSES and SPDX stuff
10632 M:      Thomas Gleixner <tglx@linutronix.de>
10633 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10634 L:      linux-spdx@vger.kernel.org
10635 S:      Maintained
10636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10637 F:      COPYING
10638 F:      Documentation/process/license-rules.rst
10639 F:      LICENSES/
10640 F:      scripts/spdxcheck-test.sh
10641 F:      scripts/spdxcheck.py
10642
10643 LINEAR RANGES HELPERS
10644 M:      Mark Brown <broonie@kernel.org>
10645 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10646 F:      lib/linear_ranges.c
10647 F:      lib/test_linear_ranges.c
10648 F:      include/linux/linear_range.h
10649
10650 LINUX FOR POWER MACINTOSH
10651 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10652 L:      linuxppc-dev@lists.ozlabs.org
10653 S:      Odd Fixes
10654 F:      arch/powerpc/platforms/powermac/
10655 F:      drivers/macintosh/
10656
10657 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10658 M:      Michael Ellerman <mpe@ellerman.id.au>
10659 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10660 R:      Paul Mackerras <paulus@samba.org>
10661 L:      linuxppc-dev@lists.ozlabs.org
10662 S:      Supported
10663 W:      https://github.com/linuxppc/wiki/wiki
10664 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10666 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10667 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10668 F:      Documentation/devicetree/bindings/powerpc/
10669 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10670 F:      Documentation/powerpc/
10671 F:      arch/powerpc/
10672 F:      drivers/*/*/*pasemi*
10673 F:      drivers/*/*pasemi*
10674 F:      drivers/char/tpm/tpm_ibmvtpm*
10675 F:      drivers/crypto/nx/
10676 F:      drivers/crypto/vmx/
10677 F:      drivers/i2c/busses/i2c-opal.c
10678 F:      drivers/net/ethernet/ibm/ibmveth.*
10679 F:      drivers/net/ethernet/ibm/ibmvnic.*
10680 F:      drivers/pci/hotplug/pnv_php.c
10681 F:      drivers/pci/hotplug/rpa*
10682 F:      drivers/rtc/rtc-opal.c
10683 F:      drivers/scsi/ibmvscsi/
10684 F:      drivers/tty/hvc/hvc_opal.c
10685 F:      drivers/watchdog/wdrtas.c
10686 F:      tools/testing/selftests/powerpc
10687 N:      /pmac
10688 N:      powermac
10689 N:      powernv
10690 N:      [^a-z0-9]ps3
10691 N:      pseries
10692
10693 LINUX FOR POWERPC EMBEDDED MPC5XXX
10694 M:      Anatolij Gustschin <agust@denx.de>
10695 L:      linuxppc-dev@lists.ozlabs.org
10696 S:      Odd Fixes
10697 F:      arch/powerpc/platforms/512x/
10698 F:      arch/powerpc/platforms/52xx/
10699
10700 LINUX FOR POWERPC EMBEDDED PPC4XX
10701 L:      linuxppc-dev@lists.ozlabs.org
10702 S:      Orphan
10703 F:      arch/powerpc/platforms/40x/
10704 F:      arch/powerpc/platforms/44x/
10705
10706 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10707 M:      Scott Wood <oss@buserror.net>
10708 L:      linuxppc-dev@lists.ozlabs.org
10709 S:      Odd fixes
10710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10711 F:      Documentation/devicetree/bindings/powerpc/fsl/
10712 F:      arch/powerpc/platforms/83xx/
10713 F:      arch/powerpc/platforms/85xx/
10714
10715 LINUX FOR POWERPC EMBEDDED PPC8XX
10716 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10717 L:      linuxppc-dev@lists.ozlabs.org
10718 S:      Maintained
10719 F:      arch/powerpc/platforms/8xx/
10720
10721 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10722 M:      Kees Cook <keescook@chromium.org>
10723 S:      Maintained
10724 F:      drivers/misc/lkdtm/*
10725 F:      tools/testing/selftests/lkdtm/*
10726
10727 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10728 M:      Alan Stern <stern@rowland.harvard.edu>
10729 M:      Andrea Parri <parri.andrea@gmail.com>
10730 M:      Will Deacon <will@kernel.org>
10731 M:      Peter Zijlstra <peterz@infradead.org>
10732 M:      Boqun Feng <boqun.feng@gmail.com>
10733 M:      Nicholas Piggin <npiggin@gmail.com>
10734 M:      David Howells <dhowells@redhat.com>
10735 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10736 M:      Luc Maranget <luc.maranget@inria.fr>
10737 M:      "Paul E. McKenney" <paulmck@kernel.org>
10738 R:      Akira Yokosawa <akiyks@gmail.com>
10739 R:      Daniel Lustig <dlustig@nvidia.com>
10740 R:      Joel Fernandes <joel@joelfernandes.org>
10741 L:      linux-kernel@vger.kernel.org
10742 L:      linux-arch@vger.kernel.org
10743 S:      Supported
10744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10745 F:      Documentation/atomic_bitops.txt
10746 F:      Documentation/atomic_t.txt
10747 F:      Documentation/core-api/refcount-vs-atomic.rst
10748 F:      Documentation/litmus-tests/
10749 F:      Documentation/memory-barriers.txt
10750 F:      tools/memory-model/
10751
10752 LIS3LV02D ACCELEROMETER DRIVER
10753 M:      Eric Piel <eric.piel@tremplin-utc.net>
10754 S:      Maintained
10755 F:      Documentation/misc-devices/lis3lv02d.rst
10756 F:      drivers/misc/lis3lv02d/
10757 F:      drivers/platform/x86/hp_accel.c
10758
10759 LIST KUNIT TEST
10760 M:      David Gow <davidgow@google.com>
10761 L:      linux-kselftest@vger.kernel.org
10762 L:      kunit-dev@googlegroups.com
10763 S:      Maintained
10764 F:      lib/list-test.c
10765
10766 LITEX PLATFORM
10767 M:      Karol Gugala <kgugala@antmicro.com>
10768 M:      Mateusz Holenko <mholenko@antmicro.com>
10769 S:      Maintained
10770 F:      Documentation/devicetree/bindings/*/litex,*.yaml
10771 F:      arch/openrisc/boot/dts/or1klitex.dts
10772 F:      drivers/soc/litex/litex_soc_ctrl.c
10773 F:      drivers/tty/serial/liteuart.c
10774 F:      include/linux/litex.h
10775
10776 LIVE PATCHING
10777 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10778 M:      Jiri Kosina <jikos@kernel.org>
10779 M:      Miroslav Benes <mbenes@suse.cz>
10780 M:      Petr Mladek <pmladek@suse.com>
10781 R:      Joe Lawrence <joe.lawrence@redhat.com>
10782 L:      live-patching@vger.kernel.org
10783 S:      Maintained
10784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10785 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10786 F:      Documentation/livepatch/
10787 F:      arch/powerpc/include/asm/livepatch.h
10788 F:      arch/s390/include/asm/livepatch.h
10789 F:      arch/x86/include/asm/livepatch.h
10790 F:      include/linux/livepatch.h
10791 F:      kernel/livepatch/
10792 F:      lib/livepatch/
10793 F:      samples/livepatch/
10794 F:      tools/testing/selftests/livepatch/
10795
10796 LLC (802.2)
10797 L:      netdev@vger.kernel.org
10798 S:      Odd fixes
10799 F:      include/linux/llc.h
10800 F:      include/net/llc*
10801 F:      include/uapi/linux/llc.h
10802 F:      net/llc/
10803
10804 LM73 HARDWARE MONITOR DRIVER
10805 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10806 L:      linux-hwmon@vger.kernel.org
10807 S:      Maintained
10808 F:      drivers/hwmon/lm73.c
10809
10810 LM78 HARDWARE MONITOR DRIVER
10811 M:      Jean Delvare <jdelvare@suse.com>
10812 L:      linux-hwmon@vger.kernel.org
10813 S:      Maintained
10814 F:      Documentation/hwmon/lm78.rst
10815 F:      drivers/hwmon/lm78.c
10816
10817 LM83 HARDWARE MONITOR DRIVER
10818 M:      Jean Delvare <jdelvare@suse.com>
10819 L:      linux-hwmon@vger.kernel.org
10820 S:      Maintained
10821 F:      Documentation/hwmon/lm83.rst
10822 F:      drivers/hwmon/lm83.c
10823
10824 LM90 HARDWARE MONITOR DRIVER
10825 M:      Jean Delvare <jdelvare@suse.com>
10826 L:      linux-hwmon@vger.kernel.org
10827 S:      Maintained
10828 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10829 F:      Documentation/hwmon/lm90.rst
10830 F:      drivers/hwmon/lm90.c
10831 F:      include/dt-bindings/thermal/lm90.h
10832
10833 LM95234 HARDWARE MONITOR DRIVER
10834 M:      Guenter Roeck <linux@roeck-us.net>
10835 L:      linux-hwmon@vger.kernel.org
10836 S:      Maintained
10837 F:      Documentation/hwmon/lm95234.rst
10838 F:      drivers/hwmon/lm95234.c
10839
10840 LME2510 MEDIA DRIVER
10841 M:      Malcolm Priestley <tvboxspy@gmail.com>
10842 L:      linux-media@vger.kernel.org
10843 S:      Maintained
10844 W:      https://linuxtv.org
10845 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10846 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10847
10848 LOADPIN SECURITY MODULE
10849 M:      Kees Cook <keescook@chromium.org>
10850 S:      Supported
10851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10852 F:      Documentation/admin-guide/LSM/LoadPin.rst
10853 F:      security/loadpin/
10854
10855 LOCKING PRIMITIVES
10856 M:      Peter Zijlstra <peterz@infradead.org>
10857 M:      Ingo Molnar <mingo@redhat.com>
10858 M:      Will Deacon <will@kernel.org>
10859 R:      Waiman Long <longman@redhat.com>
10860 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
10861 L:      linux-kernel@vger.kernel.org
10862 S:      Maintained
10863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10864 F:      Documentation/locking/
10865 F:      arch/*/include/asm/spinlock*.h
10866 F:      include/linux/lockdep.h
10867 F:      include/linux/mutex*.h
10868 F:      include/linux/rwlock*.h
10869 F:      include/linux/rwsem*.h
10870 F:      include/linux/seqlock.h
10871 F:      include/linux/spinlock*.h
10872 F:      kernel/locking/
10873 F:      lib/locking*.[ch]
10874 X:      kernel/locking/locktorture.c
10875
10876 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10877 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
10878 L:      linux-ntfs-dev@lists.sourceforge.net
10879 S:      Maintained
10880 W:      http://www.linux-ntfs.org/content/view/19/37/
10881 F:      Documentation/admin-guide/ldm.rst
10882 F:      block/partitions/ldm.*
10883
10884 LOGITECH HID GAMING KEYBOARDS
10885 M:      Hans de Goede <hdegoede@redhat.com>
10886 L:      linux-input@vger.kernel.org
10887 S:      Maintained
10888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10889 F:      drivers/hid/hid-lg-g15.c
10890
10891 LONTIUM LT8912B MIPI TO HDMI BRIDGE
10892 M:      Adrien Grassein <adrien.grassein@gmail.com>
10893 S:      Maintained
10894 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
10895 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
10896
10897 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10898 M:      Sathya Prakash <sathya.prakash@broadcom.com>
10899 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10900 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10901 L:      MPT-FusionLinux.pdl@broadcom.com
10902 L:      linux-scsi@vger.kernel.org
10903 S:      Supported
10904 W:      http://www.avagotech.com/support/
10905 F:      drivers/message/fusion/
10906 F:      drivers/scsi/mpt3sas/
10907
10908 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10909 M:      Matthew Wilcox <willy@infradead.org>
10910 L:      linux-scsi@vger.kernel.org
10911 S:      Maintained
10912 F:      drivers/scsi/sym53c8xx_2/
10913
10914 LTC1660 DAC DRIVER
10915 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10916 L:      linux-iio@vger.kernel.org
10917 S:      Maintained
10918 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10919 F:      drivers/iio/dac/ltc1660.c
10920
10921 LTC2947 HARDWARE MONITOR DRIVER
10922 M:      Nuno Sá <nuno.sa@analog.com>
10923 L:      linux-hwmon@vger.kernel.org
10924 S:      Supported
10925 W:      http://ez.analog.com/community/linux-device-drivers
10926 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10927 F:      drivers/hwmon/ltc2947-core.c
10928 F:      drivers/hwmon/ltc2947-i2c.c
10929 F:      drivers/hwmon/ltc2947-spi.c
10930 F:      drivers/hwmon/ltc2947.h
10931
10932 LTC2983 IIO TEMPERATURE DRIVER
10933 M:      Nuno Sá <nuno.sa@analog.com>
10934 L:      linux-iio@vger.kernel.org
10935 S:      Supported
10936 W:      http://ez.analog.com/community/linux-device-drivers
10937 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10938 F:      drivers/iio/temperature/ltc2983.c
10939
10940 LTC4261 HARDWARE MONITOR DRIVER
10941 M:      Guenter Roeck <linux@roeck-us.net>
10942 L:      linux-hwmon@vger.kernel.org
10943 S:      Maintained
10944 F:      Documentation/hwmon/ltc4261.rst
10945 F:      drivers/hwmon/ltc4261.c
10946
10947 LTC4306 I2C MULTIPLEXER DRIVER
10948 M:      Michael Hennerich <michael.hennerich@analog.com>
10949 L:      linux-i2c@vger.kernel.org
10950 S:      Supported
10951 W:      http://ez.analog.com/community/linux-device-drivers
10952 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10953 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10954
10955 LTP (Linux Test Project)
10956 M:      Mike Frysinger <vapier@gentoo.org>
10957 M:      Cyril Hrubis <chrubis@suse.cz>
10958 M:      Wanlong Gao <wanlong.gao@gmail.com>
10959 M:      Jan Stancek <jstancek@redhat.com>
10960 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10961 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
10962 L:      ltp@lists.linux.it (subscribers-only)
10963 S:      Maintained
10964 W:      http://linux-test-project.github.io/
10965 T:      git git://github.com/linux-test-project/ltp.git
10966
10967 LYNX PCS MODULE
10968 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
10969 L:      netdev@vger.kernel.org
10970 S:      Supported
10971 F:      drivers/net/pcs/pcs-lynx.c
10972 F:      include/linux/pcs-lynx.h
10973
10974 M68K ARCHITECTURE
10975 M:      Geert Uytterhoeven <geert@linux-m68k.org>
10976 L:      linux-m68k@lists.linux-m68k.org
10977 S:      Maintained
10978 W:      http://www.linux-m68k.org/
10979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10980 F:      arch/m68k/
10981 F:      drivers/zorro/
10982
10983 M68K ON APPLE MACINTOSH
10984 M:      Joshua Thompson <funaho@jurai.org>
10985 L:      linux-m68k@lists.linux-m68k.org
10986 S:      Maintained
10987 W:      http://www.mac.linux-m68k.org/
10988 F:      arch/m68k/mac/
10989 F:      drivers/macintosh/adb-iop.c
10990 F:      drivers/macintosh/via-macii.c
10991
10992 M68K ON HP9000/300
10993 M:      Philip Blundell <philb@gnu.org>
10994 S:      Maintained
10995 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10996 F:      arch/m68k/hp300/
10997
10998 M88DS3103 MEDIA DRIVER
10999 M:      Antti Palosaari <crope@iki.fi>
11000 L:      linux-media@vger.kernel.org
11001 S:      Maintained
11002 W:      https://linuxtv.org
11003 W:      http://palosaari.fi/linux/
11004 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11005 T:      git git://linuxtv.org/anttip/media_tree.git
11006 F:      drivers/media/dvb-frontends/m88ds3103*
11007
11008 M88RS2000 MEDIA DRIVER
11009 M:      Malcolm Priestley <tvboxspy@gmail.com>
11010 L:      linux-media@vger.kernel.org
11011 S:      Maintained
11012 W:      https://linuxtv.org
11013 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11014 F:      drivers/media/dvb-frontends/m88rs2000*
11015
11016 MA901 MASTERKIT USB FM RADIO DRIVER
11017 M:      Alexey Klimov <klimov.linux@gmail.com>
11018 L:      linux-media@vger.kernel.org
11019 S:      Maintained
11020 T:      git git://linuxtv.org/media_tree.git
11021 F:      drivers/media/radio/radio-ma901.c
11022
11023 MAC80211
11024 M:      Johannes Berg <johannes@sipsolutions.net>
11025 L:      linux-wireless@vger.kernel.org
11026 S:      Maintained
11027 W:      https://wireless.wiki.kernel.org/
11028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11030 F:      Documentation/networking/mac80211-injection.rst
11031 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11032 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11033 F:      include/net/mac80211.h
11034 F:      net/mac80211/
11035
11036 MAILBOX API
11037 M:      Jassi Brar <jassisinghbrar@gmail.com>
11038 L:      linux-kernel@vger.kernel.org
11039 S:      Maintained
11040 F:      drivers/mailbox/
11041 F:      include/linux/mailbox_client.h
11042 F:      include/linux/mailbox_controller.h
11043 F:      include/dt-bindings/mailbox/
11044 F:      Documentation/devicetree/bindings/mailbox/
11045
11046 MAILBOX ARM MHUv2
11047 M:      Viresh Kumar <viresh.kumar@linaro.org>
11048 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11049 L:      linux-kernel@vger.kernel.org
11050 S:      Maintained
11051 F:      drivers/mailbox/arm_mhuv2.c
11052 F:      include/linux/mailbox/arm_mhuv2_message.h
11053 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11054
11055 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11056 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11057 M:      Matt Johnston <matt@codeconstruct.com.au>
11058 L:      netdev@vger.kernel.org
11059 S:      Maintained
11060 F:      Documentation/networking/mctp.rst
11061 F:      drivers/net/mctp/
11062 F:      include/net/mctp.h
11063 F:      include/net/mctpdevice.h
11064 F:      include/net/netns/mctp.h
11065 F:      net/mctp/
11066
11067 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11068 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11069 L:      linux-man@vger.kernel.org
11070 S:      Maintained
11071 W:      http://www.kernel.org/doc/man-pages
11072
11073 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11074 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11075 L:      linux-mips@vger.kernel.org
11076 S:      Maintained
11077 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
11078
11079 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11080 M:      Andrew Lunn <andrew@lunn.ch>
11081 M:      Vivien Didelot <vivien.didelot@gmail.com>
11082 L:      netdev@vger.kernel.org
11083 S:      Maintained
11084 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11085 F:      Documentation/networking/devlink/mv88e6xxx.rst
11086 F:      drivers/net/dsa/mv88e6xxx/
11087 F:      include/linux/platform_data/mv88e6xxx.h
11088
11089 MARVELL ARMADA 3700 PHY DRIVERS
11090 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11091 S:      Maintained
11092 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11093 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11094 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11095 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11096
11097 MARVELL ARMADA DRM SUPPORT
11098 M:      Russell King <linux@armlinux.org.uk>
11099 S:      Maintained
11100 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11101 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11102 F:      Documentation/devicetree/bindings/display/armada/
11103 F:      drivers/gpu/drm/armada/
11104 F:      include/uapi/drm/armada_drm.h
11105
11106 MARVELL CRYPTO DRIVER
11107 M:      Boris Brezillon <bbrezillon@kernel.org>
11108 M:      Arnaud Ebalard <arno@natisbad.org>
11109 M:      Srujana Challa <schalla@marvell.com>
11110 L:      linux-crypto@vger.kernel.org
11111 S:      Maintained
11112 F:      drivers/crypto/marvell/
11113 F:      include/linux/soc/marvell/octeontx2/
11114
11115 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11116 M:      Mirko Lindner <mlindner@marvell.com>
11117 M:      Stephen Hemminger <stephen@networkplumber.org>
11118 L:      netdev@vger.kernel.org
11119 S:      Maintained
11120 F:      drivers/net/ethernet/marvell/sk*
11121
11122 MARVELL LIBERTAS WIRELESS DRIVER
11123 L:      libertas-dev@lists.infradead.org
11124 S:      Orphan
11125 F:      drivers/net/wireless/marvell/libertas/
11126
11127 MARVELL MACCHIATOBIN SUPPORT
11128 M:      Russell King <linux@armlinux.org.uk>
11129 L:      linux-arm-kernel@lists.infradead.org
11130 S:      Maintained
11131 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11132
11133 MARVELL MV643XX ETHERNET DRIVER
11134 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11135 L:      netdev@vger.kernel.org
11136 S:      Maintained
11137 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11138 F:      include/linux/mv643xx.h
11139
11140 MARVELL MV88X3310 PHY DRIVER
11141 M:      Russell King <linux@armlinux.org.uk>
11142 M:      Marek Behún <kabel@kernel.org>
11143 L:      netdev@vger.kernel.org
11144 S:      Maintained
11145 F:      drivers/net/phy/marvell10g.c
11146
11147 MARVELL MVEBU THERMAL DRIVER
11148 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11149 S:      Maintained
11150 F:      drivers/thermal/armada_thermal.c
11151
11152 MARVELL MVNETA ETHERNET DRIVER
11153 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11154 L:      netdev@vger.kernel.org
11155 S:      Maintained
11156 F:      drivers/net/ethernet/marvell/mvneta.*
11157
11158 MARVELL MVPP2 ETHERNET DRIVER
11159 M:      Marcin Wojtas <mw@semihalf.com>
11160 M:      Russell King <linux@armlinux.org.uk>
11161 L:      netdev@vger.kernel.org
11162 S:      Maintained
11163 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11164 F:      drivers/net/ethernet/marvell/mvpp2/
11165
11166 MARVELL MWIFIEX WIRELESS DRIVER
11167 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11168 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11169 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11170 M:      Xinming Hu <huxinming820@gmail.com>
11171 L:      linux-wireless@vger.kernel.org
11172 S:      Maintained
11173 F:      drivers/net/wireless/marvell/mwifiex/
11174
11175 MARVELL MWL8K WIRELESS DRIVER
11176 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11177 L:      linux-wireless@vger.kernel.org
11178 S:      Odd Fixes
11179 F:      drivers/net/wireless/marvell/mwl8k.c
11180
11181 MARVELL NAND CONTROLLER DRIVER
11182 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11183 L:      linux-mtd@lists.infradead.org
11184 S:      Maintained
11185 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11186 F:      drivers/mtd/nand/raw/marvell_nand.c
11187
11188 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11189 M:      Sunil Goutham <sgoutham@marvell.com>
11190 M:      Geetha sowjanya <gakula@marvell.com>
11191 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11192 M:      hariprasad <hkelam@marvell.com>
11193 L:      netdev@vger.kernel.org
11194 S:      Supported
11195 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11196 F:      include/linux/soc/marvell/octeontx2/
11197
11198 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11199 M:      Sunil Goutham <sgoutham@marvell.com>
11200 M:      Linu Cherian <lcherian@marvell.com>
11201 M:      Geetha sowjanya <gakula@marvell.com>
11202 M:      Jerin Jacob <jerinj@marvell.com>
11203 M:      hariprasad <hkelam@marvell.com>
11204 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11205 L:      netdev@vger.kernel.org
11206 S:      Supported
11207 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11208 F:      drivers/net/ethernet/marvell/octeontx2/af/
11209
11210 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11211 M:      Vadym Kochan <vkochan@marvell.com>
11212 M:      Taras Chornyi <tchornyi@marvell.com>
11213 S:      Supported
11214 W:      https://github.com/Marvell-switching/switchdev-prestera
11215 F:      drivers/net/ethernet/marvell/prestera/
11216
11217 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11218 M:      Nicolas Pitre <nico@fluxnic.net>
11219 S:      Odd Fixes
11220 F:      drivers/mmc/host/mvsdio.*
11221
11222 MARVELL USB MDIO CONTROLLER DRIVER
11223 M:      Tobias Waldekranz <tobias@waldekranz.com>
11224 L:      netdev@vger.kernel.org
11225 S:      Maintained
11226 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11227 F:      drivers/net/mdio/mdio-mvusb.c
11228
11229 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11230 M:      Hu Ziji <huziji@marvell.com>
11231 L:      linux-mmc@vger.kernel.org
11232 S:      Supported
11233 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11234 F:      drivers/mmc/host/sdhci-xenon*
11235
11236 MATROX FRAMEBUFFER DRIVER
11237 L:      linux-fbdev@vger.kernel.org
11238 S:      Orphan
11239 F:      drivers/video/fbdev/matrox/matroxfb_*
11240 F:      include/uapi/linux/matroxfb.h
11241
11242 MAX15301 DRIVER
11243 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11244 L:      linux-hwmon@vger.kernel.org
11245 S:      Maintained
11246 F:      Documentation/hwmon/max15301.rst
11247 F:      drivers/hwmon/pmbus/max15301.c
11248
11249 MAX16065 HARDWARE MONITOR DRIVER
11250 M:      Guenter Roeck <linux@roeck-us.net>
11251 L:      linux-hwmon@vger.kernel.org
11252 S:      Maintained
11253 F:      Documentation/hwmon/max16065.rst
11254 F:      drivers/hwmon/max16065.c
11255
11256 MAX2175 SDR TUNER DRIVER
11257 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11258 L:      linux-media@vger.kernel.org
11259 S:      Maintained
11260 T:      git git://linuxtv.org/media_tree.git
11261 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11262 F:      Documentation/userspace-api/media/drivers/max2175.rst
11263 F:      drivers/media/i2c/max2175*
11264 F:      include/uapi/linux/max2175.h
11265
11266 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11267 L:      linux-hwmon@vger.kernel.org
11268 S:      Orphan
11269 F:      Documentation/hwmon/max6650.rst
11270 F:      drivers/hwmon/max6650.c
11271
11272 MAX6697 HARDWARE MONITOR DRIVER
11273 M:      Guenter Roeck <linux@roeck-us.net>
11274 L:      linux-hwmon@vger.kernel.org
11275 S:      Maintained
11276 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11277 F:      Documentation/hwmon/max6697.rst
11278 F:      drivers/hwmon/max6697.c
11279 F:      include/linux/platform_data/max6697.h
11280
11281 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11282 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11283 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11284 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11285 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11286 L:      linux-media@vger.kernel.org
11287 S:      Maintained
11288 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11289 F:      drivers/media/i2c/max9286.c
11290
11291 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11292 M:      Peter Rosin <peda@axentia.se>
11293 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11294 S:      Maintained
11295 F:      Documentation/devicetree/bindings/sound/max9860.txt
11296 F:      sound/soc/codecs/max9860.*
11297
11298 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11299 M:      Andreas Klinger <ak@it-klinger.de>
11300 L:      linux-iio@vger.kernel.org
11301 S:      Maintained
11302 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11303 F:      drivers/iio/proximity/mb1232.c
11304
11305 MAXIM MAX77650 PMIC MFD DRIVER
11306 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
11307 L:      linux-kernel@vger.kernel.org
11308 S:      Maintained
11309 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11310 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11311 F:      drivers/gpio/gpio-max77650.c
11312 F:      drivers/input/misc/max77650-onkey.c
11313 F:      drivers/leds/leds-max77650.c
11314 F:      drivers/mfd/max77650.c
11315 F:      drivers/power/supply/max77650-charger.c
11316 F:      drivers/regulator/max77650-regulator.c
11317 F:      include/linux/mfd/max77650.h
11318
11319 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11320 M:      Javier Martinez Canillas <javier@dowhile0.org>
11321 L:      linux-kernel@vger.kernel.org
11322 S:      Supported
11323 F:      Documentation/devicetree/bindings/*/*max77802.txt
11324 F:      drivers/regulator/max77802-regulator.c
11325 F:      include/dt-bindings/*/*max77802.h
11326
11327 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11328 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11329 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11330 L:      linux-pm@vger.kernel.org
11331 S:      Supported
11332 F:      drivers/power/supply/max14577_charger.c
11333 F:      drivers/power/supply/max77693_charger.c
11334
11335 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11336 M:      Chanwoo Choi <cw00.choi@samsung.com>
11337 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11338 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11339 L:      linux-kernel@vger.kernel.org
11340 S:      Supported
11341 F:      Documentation/devicetree/bindings/*/max77686.txt
11342 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11343 F:      Documentation/devicetree/bindings/mfd/max14577.txt
11344 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11345 F:      drivers/*/max14577*.c
11346 F:      drivers/*/max77686*.c
11347 F:      drivers/*/max77693*.c
11348 F:      drivers/clk/clk-max77686.c
11349 F:      drivers/extcon/extcon-max14577.c
11350 F:      drivers/extcon/extcon-max77693.c
11351 F:      drivers/rtc/rtc-max77686.c
11352 F:      include/linux/mfd/max14577*.h
11353 F:      include/linux/mfd/max77686*.h
11354 F:      include/linux/mfd/max77693*.h
11355
11356 MAXIRADIO FM RADIO RECEIVER DRIVER
11357 M:      Hans Verkuil <hverkuil@xs4all.nl>
11358 L:      linux-media@vger.kernel.org
11359 S:      Maintained
11360 W:      https://linuxtv.org
11361 T:      git git://linuxtv.org/media_tree.git
11362 F:      drivers/media/radio/radio-maxiradio*
11363
11364 MAXLINEAR ETHERNET PHY DRIVER
11365 M:      Xu Liang <lxu@maxlinear.com>
11366 L:      netdev@vger.kernel.org
11367 S:      Supported
11368 F:      drivers/net/phy/mxl-gpy.c
11369
11370 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11371 R:      Yasushi SHOJI <yashi@spacecubics.com>
11372 L:      linux-can@vger.kernel.org
11373 S:      Maintained
11374 F:      drivers/net/can/usb/mcba_usb.c
11375
11376 MCAN MMIO DEVICE DRIVER
11377 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11378 L:      linux-can@vger.kernel.org
11379 S:      Maintained
11380 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11381 F:      drivers/net/can/m_can/m_can.c
11382 F:      drivers/net/can/m_can/m_can.h
11383 F:      drivers/net/can/m_can/m_can_platform.c
11384
11385 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11386 M:      Rishi Gupta <gupt21@gmail.com>
11387 L:      linux-i2c@vger.kernel.org
11388 L:      linux-input@vger.kernel.org
11389 S:      Maintained
11390 F:      drivers/hid/hid-mcp2221.c
11391
11392 MCP251XFD SPI-CAN NETWORK DRIVER
11393 M:      Marc Kleine-Budde <mkl@pengutronix.de>
11394 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11395 R:      Thomas Kopp <thomas.kopp@microchip.com>
11396 L:      linux-can@vger.kernel.org
11397 S:      Maintained
11398 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11399 F:      drivers/net/can/spi/mcp251xfd/
11400
11401 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11402 M:      Peter Rosin <peda@axentia.se>
11403 L:      linux-iio@vger.kernel.org
11404 S:      Maintained
11405 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11406 F:      drivers/iio/potentiometer/mcp4018.c
11407 F:      drivers/iio/potentiometer/mcp4531.c
11408
11409 MCR20A IEEE-802.15.4 RADIO DRIVER
11410 M:      Xue Liu <liuxuenetmail@gmail.com>
11411 L:      linux-wpan@vger.kernel.org
11412 S:      Maintained
11413 W:      https://github.com/xueliu/mcr20a-linux
11414 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11415 F:      drivers/net/ieee802154/mcr20a.c
11416 F:      drivers/net/ieee802154/mcr20a.h
11417
11418 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11419 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
11420 L:      linux-iio@vger.kernel.org
11421 S:      Maintained
11422 F:      drivers/iio/dac/cio-dac.c
11423
11424 MEDIA CONTROLLER FRAMEWORK
11425 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11426 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11427 L:      linux-media@vger.kernel.org
11428 S:      Supported
11429 W:      https://www.linuxtv.org
11430 T:      git git://linuxtv.org/media_tree.git
11431 F:      drivers/media/mc/
11432 F:      include/media/media-*.h
11433 F:      include/uapi/linux/media.h
11434
11435 MEDIA DRIVER FOR FREESCALE IMX PXP
11436 M:      Philipp Zabel <p.zabel@pengutronix.de>
11437 L:      linux-media@vger.kernel.org
11438 S:      Maintained
11439 T:      git git://linuxtv.org/media_tree.git
11440 F:      drivers/media/platform/imx-pxp.[ch]
11441
11442 MEDIA DRIVERS FOR ASCOT2E
11443 M:      Sergey Kozlov <serjk@netup.ru>
11444 M:      Abylay Ospan <aospan@netup.ru>
11445 L:      linux-media@vger.kernel.org
11446 S:      Supported
11447 W:      https://linuxtv.org
11448 W:      http://netup.tv/
11449 T:      git git://linuxtv.org/media_tree.git
11450 F:      drivers/media/dvb-frontends/ascot2e*
11451
11452 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11453 M:      Jasmin Jessich <jasmin@anw.at>
11454 L:      linux-media@vger.kernel.org
11455 S:      Maintained
11456 W:      https://linuxtv.org
11457 T:      git git://linuxtv.org/media_tree.git
11458 F:      drivers/media/dvb-frontends/cxd2099*
11459
11460 MEDIA DRIVERS FOR CXD2841ER
11461 M:      Sergey Kozlov <serjk@netup.ru>
11462 M:      Abylay Ospan <aospan@netup.ru>
11463 L:      linux-media@vger.kernel.org
11464 S:      Supported
11465 W:      https://linuxtv.org
11466 W:      http://netup.tv/
11467 T:      git git://linuxtv.org/media_tree.git
11468 F:      drivers/media/dvb-frontends/cxd2841er*
11469
11470 MEDIA DRIVERS FOR CXD2880
11471 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11472 L:      linux-media@vger.kernel.org
11473 S:      Supported
11474 W:      http://linuxtv.org/
11475 T:      git git://linuxtv.org/media_tree.git
11476 F:      drivers/media/dvb-frontends/cxd2880/*
11477 F:      drivers/media/spi/cxd2880*
11478
11479 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11480 L:      linux-media@vger.kernel.org
11481 S:      Orphan
11482 W:      https://linuxtv.org
11483 T:      git git://linuxtv.org/media_tree.git
11484 F:      drivers/media/pci/ddbridge/*
11485
11486 MEDIA DRIVERS FOR FREESCALE IMX
11487 M:      Steve Longerbeam <slongerbeam@gmail.com>
11488 M:      Philipp Zabel <p.zabel@pengutronix.de>
11489 L:      linux-media@vger.kernel.org
11490 S:      Maintained
11491 T:      git git://linuxtv.org/media_tree.git
11492 F:      Documentation/admin-guide/media/imx.rst
11493 F:      Documentation/devicetree/bindings/media/imx.txt
11494 F:      drivers/staging/media/imx/
11495 F:      include/linux/imx-media.h
11496 F:      include/media/imx.h
11497
11498 MEDIA DRIVERS FOR FREESCALE IMX7
11499 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11500 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11501 L:      linux-media@vger.kernel.org
11502 S:      Maintained
11503 T:      git git://linuxtv.org/media_tree.git
11504 F:      Documentation/admin-guide/media/imx7.rst
11505 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11506 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11507 F:      drivers/staging/media/imx/imx7-media-csi.c
11508 F:      drivers/staging/media/imx/imx7-mipi-csis.c
11509
11510 MEDIA DRIVERS FOR HELENE
11511 M:      Abylay Ospan <aospan@netup.ru>
11512 L:      linux-media@vger.kernel.org
11513 S:      Supported
11514 W:      https://linuxtv.org
11515 W:      http://netup.tv/
11516 T:      git git://linuxtv.org/media_tree.git
11517 F:      drivers/media/dvb-frontends/helene*
11518
11519 MEDIA DRIVERS FOR HORUS3A
11520 M:      Sergey Kozlov <serjk@netup.ru>
11521 M:      Abylay Ospan <aospan@netup.ru>
11522 L:      linux-media@vger.kernel.org
11523 S:      Supported
11524 W:      https://linuxtv.org
11525 W:      http://netup.tv/
11526 T:      git git://linuxtv.org/media_tree.git
11527 F:      drivers/media/dvb-frontends/horus3a*
11528
11529 MEDIA DRIVERS FOR LNBH25
11530 M:      Sergey Kozlov <serjk@netup.ru>
11531 M:      Abylay Ospan <aospan@netup.ru>
11532 L:      linux-media@vger.kernel.org
11533 S:      Supported
11534 W:      https://linuxtv.org
11535 W:      http://netup.tv/
11536 T:      git git://linuxtv.org/media_tree.git
11537 F:      drivers/media/dvb-frontends/lnbh25*
11538
11539 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11540 L:      linux-media@vger.kernel.org
11541 S:      Orphan
11542 W:      https://linuxtv.org
11543 T:      git git://linuxtv.org/media_tree.git
11544 F:      drivers/media/dvb-frontends/mxl5xx*
11545
11546 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11547 M:      Sergey Kozlov <serjk@netup.ru>
11548 M:      Abylay Ospan <aospan@netup.ru>
11549 L:      linux-media@vger.kernel.org
11550 S:      Supported
11551 W:      https://linuxtv.org
11552 W:      http://netup.tv/
11553 T:      git git://linuxtv.org/media_tree.git
11554 F:      drivers/media/pci/netup_unidvb/*
11555
11556 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11557 M:      Dmitry Osipenko <digetx@gmail.com>
11558 L:      linux-media@vger.kernel.org
11559 L:      linux-tegra@vger.kernel.org
11560 S:      Maintained
11561 T:      git git://linuxtv.org/media_tree.git
11562 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11563 F:      drivers/staging/media/tegra-vde/
11564
11565 MEDIA DRIVERS FOR RENESAS - CEU
11566 M:      Jacopo Mondi <jacopo@jmondi.org>
11567 L:      linux-media@vger.kernel.org
11568 L:      linux-renesas-soc@vger.kernel.org
11569 S:      Supported
11570 T:      git git://linuxtv.org/media_tree.git
11571 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11572 F:      drivers/media/platform/renesas-ceu.c
11573 F:      include/media/drv-intf/renesas-ceu.h
11574
11575 MEDIA DRIVERS FOR RENESAS - DRIF
11576 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11577 L:      linux-media@vger.kernel.org
11578 L:      linux-renesas-soc@vger.kernel.org
11579 S:      Supported
11580 T:      git git://linuxtv.org/media_tree.git
11581 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
11582 F:      drivers/media/platform/rcar_drif.c
11583
11584 MEDIA DRIVERS FOR RENESAS - FCP
11585 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11586 L:      linux-media@vger.kernel.org
11587 L:      linux-renesas-soc@vger.kernel.org
11588 S:      Supported
11589 T:      git git://linuxtv.org/media_tree.git
11590 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11591 F:      drivers/media/platform/rcar-fcp.c
11592 F:      include/media/rcar-fcp.h
11593
11594 MEDIA DRIVERS FOR RENESAS - FDP1
11595 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11596 L:      linux-media@vger.kernel.org
11597 L:      linux-renesas-soc@vger.kernel.org
11598 S:      Supported
11599 T:      git git://linuxtv.org/media_tree.git
11600 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11601 F:      drivers/media/platform/rcar_fdp1.c
11602
11603 MEDIA DRIVERS FOR RENESAS - VIN
11604 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11605 L:      linux-media@vger.kernel.org
11606 L:      linux-renesas-soc@vger.kernel.org
11607 S:      Supported
11608 T:      git git://linuxtv.org/media_tree.git
11609 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11610 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
11611 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11612 F:      drivers/media/platform/rcar-vin/
11613
11614 MEDIA DRIVERS FOR RENESAS - VSP1
11615 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11616 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11617 L:      linux-media@vger.kernel.org
11618 L:      linux-renesas-soc@vger.kernel.org
11619 S:      Supported
11620 T:      git git://linuxtv.org/media_tree.git
11621 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11622 F:      drivers/media/platform/vsp1/
11623
11624 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11625 L:      linux-media@vger.kernel.org
11626 S:      Orphan
11627 W:      https://linuxtv.org
11628 T:      git git://linuxtv.org/media_tree.git
11629 F:      drivers/media/dvb-frontends/stv0910*
11630
11631 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11632 L:      linux-media@vger.kernel.org
11633 S:      Orphan
11634 W:      https://linuxtv.org
11635 T:      git git://linuxtv.org/media_tree.git
11636 F:      drivers/media/dvb-frontends/stv6111*
11637
11638 MEDIA DRIVERS FOR STM32 - DCMI
11639 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
11640 L:      linux-media@vger.kernel.org
11641 S:      Supported
11642 T:      git git://linuxtv.org/media_tree.git
11643 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11644 F:      drivers/media/platform/stm32/stm32-dcmi.c
11645
11646 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11647 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11648 L:      linux-media@vger.kernel.org
11649 S:      Maintained
11650 W:      https://linuxtv.org
11651 Q:      http://patchwork.kernel.org/project/linux-media/list/
11652 T:      git git://linuxtv.org/media_tree.git
11653 F:      Documentation/admin-guide/media/
11654 F:      Documentation/devicetree/bindings/media/
11655 F:      Documentation/driver-api/media/
11656 F:      Documentation/userspace-api/media/
11657 F:      drivers/media/
11658 F:      drivers/staging/media/
11659 F:      include/linux/platform_data/media/
11660 F:      include/media/
11661 F:      include/uapi/linux/dvb/
11662 F:      include/uapi/linux/ivtv*
11663 F:      include/uapi/linux/media.h
11664 F:      include/uapi/linux/meye.h
11665 F:      include/uapi/linux/uvcvideo.h
11666 F:      include/uapi/linux/v4l2-*
11667 F:      include/uapi/linux/videodev2.h
11668
11669 MEDIATEK BLUETOOTH DRIVER
11670 M:      Sean Wang <sean.wang@mediatek.com>
11671 L:      linux-bluetooth@vger.kernel.org
11672 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11673 S:      Maintained
11674 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11675 F:      drivers/bluetooth/btmtkuart.c
11676
11677 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11678 M:      Sean Wang <sean.wang@mediatek.com>
11679 L:      linux-pm@vger.kernel.org
11680 S:      Maintained
11681 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11682 F:      drivers/power/reset/mt6323-poweroff.c
11683
11684 MEDIATEK CIR DRIVER
11685 M:      Sean Wang <sean.wang@mediatek.com>
11686 S:      Maintained
11687 F:      drivers/media/rc/mtk-cir.c
11688
11689 MEDIATEK DMA DRIVER
11690 M:      Sean Wang <sean.wang@mediatek.com>
11691 L:      dmaengine@vger.kernel.org
11692 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11693 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11694 S:      Maintained
11695 F:      Documentation/devicetree/bindings/dma/mtk-*
11696 F:      drivers/dma/mediatek/
11697
11698 MEDIATEK ETHERNET DRIVER
11699 M:      Felix Fietkau <nbd@nbd.name>
11700 M:      John Crispin <john@phrozen.org>
11701 M:      Sean Wang <sean.wang@mediatek.com>
11702 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11703 L:      netdev@vger.kernel.org
11704 S:      Maintained
11705 F:      drivers/net/ethernet/mediatek/
11706
11707 MEDIATEK I2C CONTROLLER DRIVER
11708 M:      Qii Wang <qii.wang@mediatek.com>
11709 L:      linux-i2c@vger.kernel.org
11710 S:      Maintained
11711 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11712 F:      drivers/i2c/busses/i2c-mt65xx.c
11713
11714 MEDIATEK IOMMU DRIVER
11715 M:      Yong Wu <yong.wu@mediatek.com>
11716 L:      iommu@lists.linux-foundation.org
11717 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11718 S:      Supported
11719 F:      Documentation/devicetree/bindings/iommu/mediatek*
11720 F:      drivers/iommu/mtk_iommu*
11721 F:      include/dt-bindings/memory/mt*-port.h
11722
11723 MEDIATEK JPEG DRIVER
11724 M:      Rick Chang <rick.chang@mediatek.com>
11725 M:      Bin Liu <bin.liu@mediatek.com>
11726 S:      Supported
11727 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11728 F:      drivers/media/platform/mtk-jpeg/
11729
11730 MEDIATEK MDP DRIVER
11731 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11732 M:      Houlong Wei <houlong.wei@mediatek.com>
11733 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11734 S:      Supported
11735 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11736 F:      drivers/media/platform/mtk-mdp/
11737 F:      drivers/media/platform/mtk-vpu/
11738
11739 MEDIATEK MEDIA DRIVER
11740 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11741 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11742 S:      Supported
11743 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11744 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11745 F:      drivers/media/platform/mtk-vcodec/
11746 F:      drivers/media/platform/mtk-vpu/
11747
11748 MEDIATEK MMC/SD/SDIO DRIVER
11749 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11750 S:      Maintained
11751 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11752 F:      drivers/mmc/host/mtk-sd.c
11753
11754 MEDIATEK MT76 WIRELESS LAN DRIVER
11755 M:      Felix Fietkau <nbd@nbd.name>
11756 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11757 R:      Ryder Lee <ryder.lee@mediatek.com>
11758 L:      linux-wireless@vger.kernel.org
11759 S:      Maintained
11760 F:      drivers/net/wireless/mediatek/mt76/
11761
11762 MEDIATEK MT7601U WIRELESS LAN DRIVER
11763 M:      Jakub Kicinski <kubakici@wp.pl>
11764 L:      linux-wireless@vger.kernel.org
11765 S:      Maintained
11766 F:      drivers/net/wireless/mediatek/mt7601u/
11767
11768 MEDIATEK MT7621 CLOCK DRIVER
11769 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11770 S:      Maintained
11771 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
11772 F:      drivers/clk/ralink/clk-mt7621.c
11773
11774 MEDIATEK MT7621/28/88 I2C DRIVER
11775 M:      Stefan Roese <sr@denx.de>
11776 L:      linux-i2c@vger.kernel.org
11777 S:      Maintained
11778 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11779 F:      drivers/i2c/busses/i2c-mt7621.c
11780
11781 MEDIATEK MT7621 PHY PCI DRIVER
11782 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11783 S:      Maintained
11784 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11785 F:      drivers/phy/ralink/phy-mt7621-pci.c
11786
11787 MEDIATEK NAND CONTROLLER DRIVER
11788 L:      linux-mtd@lists.infradead.org
11789 S:      Orphan
11790 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11791 F:      drivers/mtd/nand/raw/mtk_*
11792
11793 MEDIATEK PMIC LED DRIVER
11794 M:      Sean Wang <sean.wang@mediatek.com>
11795 S:      Maintained
11796 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11797 F:      drivers/leds/leds-mt6323.c
11798
11799 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11800 M:      Sean Wang <sean.wang@mediatek.com>
11801 S:      Maintained
11802 F:      drivers/char/hw_random/mtk-rng.c
11803
11804 MEDIATEK SWITCH DRIVER
11805 M:      Sean Wang <sean.wang@mediatek.com>
11806 M:      Landen Chao <Landen.Chao@mediatek.com>
11807 M:      DENG Qingfang <dqfext@gmail.com>
11808 L:      netdev@vger.kernel.org
11809 S:      Maintained
11810 F:      drivers/net/dsa/mt7530.*
11811 F:      net/dsa/tag_mtk.c
11812
11813 MEDIATEK USB3 DRD IP DRIVER
11814 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
11815 L:      linux-usb@vger.kernel.org
11816 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11817 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11818 S:      Maintained
11819 F:      Documentation/devicetree/bindings/usb/mediatek,*
11820 F:      drivers/usb/host/xhci-mtk*
11821 F:      drivers/usb/mtu3/
11822
11823 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11824 M:      Peter Senna Tschudin <peter.senna@gmail.com>
11825 M:      Martin Donnelly <martin.donnelly@ge.com>
11826 M:      Martyn Welch <martyn.welch@collabora.co.uk>
11827 S:      Maintained
11828 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11829 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11830
11831 MEGARAID SCSI/SAS DRIVERS
11832 M:      Kashyap Desai <kashyap.desai@broadcom.com>
11833 M:      Sumit Saxena <sumit.saxena@broadcom.com>
11834 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11835 L:      megaraidlinux.pdl@broadcom.com
11836 L:      linux-scsi@vger.kernel.org
11837 S:      Maintained
11838 W:      http://www.avagotech.com/support/
11839 F:      Documentation/scsi/megaraid.rst
11840 F:      drivers/scsi/megaraid.*
11841 F:      drivers/scsi/megaraid/
11842
11843 MELEXIS MLX90614 DRIVER
11844 M:      Crt Mori <cmo@melexis.com>
11845 L:      linux-iio@vger.kernel.org
11846 S:      Supported
11847 W:      http://www.melexis.com
11848 F:      drivers/iio/temperature/mlx90614.c
11849
11850 MELEXIS MLX90632 DRIVER
11851 M:      Crt Mori <cmo@melexis.com>
11852 L:      linux-iio@vger.kernel.org
11853 S:      Supported
11854 W:      http://www.melexis.com
11855 F:      drivers/iio/temperature/mlx90632.c
11856
11857 MELFAS MIP4 TOUCHSCREEN DRIVER
11858 M:      Sangwon Jee <jeesw@melfas.com>
11859 S:      Supported
11860 W:      http://www.melfas.com
11861 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11862 F:      drivers/input/touchscreen/melfas_mip4.c
11863
11864 MELLANOX BLUEFIELD I2C DRIVER
11865 M:      Khalil Blaiech <kblaiech@nvidia.com>
11866 L:      linux-i2c@vger.kernel.org
11867 S:      Supported
11868 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
11869 F:      drivers/i2c/busses/i2c-mlxbf.c
11870
11871 MELLANOX ETHERNET DRIVER (mlx4_en)
11872 M:      Tariq Toukan <tariqt@nvidia.com>
11873 L:      netdev@vger.kernel.org
11874 S:      Supported
11875 W:      http://www.mellanox.com
11876 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11877 F:      drivers/net/ethernet/mellanox/mlx4/en_*
11878
11879 MELLANOX ETHERNET DRIVER (mlx5e)
11880 M:      Saeed Mahameed <saeedm@nvidia.com>
11881 L:      netdev@vger.kernel.org
11882 S:      Supported
11883 W:      http://www.mellanox.com
11884 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11885 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
11886
11887 MELLANOX ETHERNET INNOVA DRIVERS
11888 R:      Boris Pismenny <borisp@nvidia.com>
11889 L:      netdev@vger.kernel.org
11890 S:      Supported
11891 W:      http://www.mellanox.com
11892 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11893 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
11894 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11895 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11896 F:      include/linux/mlx5/mlx5_ifc_fpga.h
11897
11898 MELLANOX ETHERNET SWITCH DRIVERS
11899 M:      Jiri Pirko <jiri@nvidia.com>
11900 M:      Ido Schimmel <idosch@nvidia.com>
11901 L:      netdev@vger.kernel.org
11902 S:      Supported
11903 W:      http://www.mellanox.com
11904 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11905 F:      drivers/net/ethernet/mellanox/mlxsw/
11906 F:      tools/testing/selftests/drivers/net/mlxsw/
11907
11908 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11909 M:      mlxsw@nvidia.com
11910 L:      netdev@vger.kernel.org
11911 S:      Supported
11912 W:      http://www.mellanox.com
11913 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11914 F:      drivers/net/ethernet/mellanox/mlxfw/
11915
11916 MELLANOX HARDWARE PLATFORM SUPPORT
11917 M:      Hans de Goede <hdegoede@redhat.com>
11918 M:      Mark Gross <mgross@linux.intel.com>
11919 M:      Vadim Pasternak <vadimp@nvidia.com>
11920 L:      platform-driver-x86@vger.kernel.org
11921 S:      Supported
11922 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11923 F:      drivers/platform/mellanox/
11924 F:      include/linux/platform_data/mlxreg.h
11925
11926 MELLANOX MLX4 core VPI driver
11927 M:      Tariq Toukan <tariqt@nvidia.com>
11928 L:      netdev@vger.kernel.org
11929 L:      linux-rdma@vger.kernel.org
11930 S:      Supported
11931 W:      http://www.mellanox.com
11932 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11933 F:      drivers/net/ethernet/mellanox/mlx4/
11934 F:      include/linux/mlx4/
11935
11936 MELLANOX MLX4 IB driver
11937 M:      Yishai Hadas <yishaih@nvidia.com>
11938 L:      linux-rdma@vger.kernel.org
11939 S:      Supported
11940 W:      http://www.mellanox.com
11941 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11942 F:      drivers/infiniband/hw/mlx4/
11943 F:      include/linux/mlx4/
11944 F:      include/uapi/rdma/mlx4-abi.h
11945
11946 MELLANOX MLX5 core VPI driver
11947 M:      Saeed Mahameed <saeedm@nvidia.com>
11948 M:      Leon Romanovsky <leonro@nvidia.com>
11949 L:      netdev@vger.kernel.org
11950 L:      linux-rdma@vger.kernel.org
11951 S:      Supported
11952 W:      http://www.mellanox.com
11953 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11954 F:      Documentation/networking/device_drivers/ethernet/mellanox/
11955 F:      drivers/net/ethernet/mellanox/mlx5/core/
11956 F:      include/linux/mlx5/
11957
11958 MELLANOX MLX5 IB driver
11959 M:      Leon Romanovsky <leonro@nvidia.com>
11960 L:      linux-rdma@vger.kernel.org
11961 S:      Supported
11962 W:      http://www.mellanox.com
11963 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11964 F:      drivers/infiniband/hw/mlx5/
11965 F:      include/linux/mlx5/
11966 F:      include/uapi/rdma/mlx5-abi.h
11967
11968 MELLANOX MLXCPLD I2C AND MUX DRIVER
11969 M:      Vadim Pasternak <vadimp@nvidia.com>
11970 M:      Michael Shych <michaelsh@nvidia.com>
11971 L:      linux-i2c@vger.kernel.org
11972 S:      Supported
11973 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11974 F:      drivers/i2c/busses/i2c-mlxcpld.c
11975 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11976
11977 MELLANOX MLXCPLD LED DRIVER
11978 M:      Vadim Pasternak <vadimp@nvidia.com>
11979 L:      linux-leds@vger.kernel.org
11980 S:      Supported
11981 F:      Documentation/leds/leds-mlxcpld.rst
11982 F:      drivers/leds/leds-mlxcpld.c
11983 F:      drivers/leds/leds-mlxreg.c
11984
11985 MELLANOX PLATFORM DRIVER
11986 M:      Vadim Pasternak <vadimp@nvidia.com>
11987 L:      platform-driver-x86@vger.kernel.org
11988 S:      Supported
11989 F:      drivers/platform/x86/mlx-platform.c
11990
11991 MEMBARRIER SUPPORT
11992 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11993 M:      "Paul E. McKenney" <paulmck@kernel.org>
11994 L:      linux-kernel@vger.kernel.org
11995 S:      Supported
11996 F:      arch/powerpc/include/asm/membarrier.h
11997 F:      include/uapi/linux/membarrier.h
11998 F:      kernel/sched/membarrier.c
11999
12000 MEMBLOCK
12001 M:      Mike Rapoport <rppt@linux.ibm.com>
12002 L:      linux-mm@kvack.org
12003 S:      Maintained
12004 F:      Documentation/core-api/boot-time-mm.rst
12005 F:      include/linux/memblock.h
12006 F:      mm/memblock.c
12007
12008 MEMORY CONTROLLER DRIVERS
12009 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
12010 L:      linux-kernel@vger.kernel.org
12011 S:      Maintained
12012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12013 F:      Documentation/devicetree/bindings/memory-controllers/
12014 F:      drivers/memory/
12015 F:      include/dt-bindings/memory/
12016 F:      include/memory/
12017
12018 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12019 M:      Dmitry Osipenko <digetx@gmail.com>
12020 L:      linux-pm@vger.kernel.org
12021 L:      linux-tegra@vger.kernel.org
12022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12023 S:      Maintained
12024 F:      drivers/devfreq/tegra30-devfreq.c
12025
12026 MEMORY MANAGEMENT
12027 M:      Andrew Morton <akpm@linux-foundation.org>
12028 L:      linux-mm@kvack.org
12029 S:      Maintained
12030 W:      http://www.linux-mm.org
12031 T:      quilt https://ozlabs.org/~akpm/mmotm/
12032 T:      quilt https://ozlabs.org/~akpm/mmots/
12033 T:      git git://github.com/hnaz/linux-mm.git
12034 F:      include/linux/gfp.h
12035 F:      include/linux/memory_hotplug.h
12036 F:      include/linux/mm.h
12037 F:      include/linux/mmzone.h
12038 F:      include/linux/pagewalk.h
12039 F:      include/linux/vmalloc.h
12040 F:      mm/
12041 F:      tools/testing/selftests/vm/
12042
12043 MEMORY TECHNOLOGY DEVICES (MTD)
12044 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12045 M:      Richard Weinberger <richard@nod.at>
12046 M:      Vignesh Raghavendra <vigneshr@ti.com>
12047 L:      linux-mtd@lists.infradead.org
12048 S:      Maintained
12049 W:      http://www.linux-mtd.infradead.org/
12050 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12051 C:      irc://irc.oftc.net/mtd
12052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12054 F:      Documentation/devicetree/bindings/mtd/
12055 F:      drivers/mtd/
12056 F:      include/linux/mtd/
12057 F:      include/uapi/mtd/
12058
12059 MEN A21 WATCHDOG DRIVER
12060 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12061 L:      linux-watchdog@vger.kernel.org
12062 S:      Maintained
12063 F:      drivers/watchdog/mena21_wdt.c
12064
12065 MEN CHAMELEON BUS (mcb)
12066 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12067 S:      Maintained
12068 F:      Documentation/driver-api/men-chameleon-bus.rst
12069 F:      drivers/mcb/
12070 F:      include/linux/mcb.h
12071
12072 MEN F21BMC (Board Management Controller)
12073 M:      Andreas Werner <andreas.werner@men.de>
12074 S:      Supported
12075 F:      Documentation/hwmon/menf21bmc.rst
12076 F:      drivers/hwmon/menf21bmc_hwmon.c
12077 F:      drivers/leds/leds-menf21bmc.c
12078 F:      drivers/mfd/menf21bmc.c
12079 F:      drivers/watchdog/menf21bmc_wdt.c
12080
12081 MEN Z069 WATCHDOG DRIVER
12082 M:      Johannes Thumshirn <jth@kernel.org>
12083 L:      linux-watchdog@vger.kernel.org
12084 S:      Maintained
12085 F:      drivers/watchdog/menz69_wdt.c
12086
12087 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12088 M:      Neil Armstrong <narmstrong@baylibre.com>
12089 L:      linux-media@vger.kernel.org
12090 L:      linux-amlogic@lists.infradead.org
12091 S:      Supported
12092 W:      http://linux-meson.com/
12093 T:      git git://linuxtv.org/media_tree.git
12094 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12095 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12096 F:      drivers/media/cec/platform/meson/ao-cec.c
12097
12098 MESON GE2D DRIVER FOR AMLOGIC SOCS
12099 M:      Neil Armstrong <narmstrong@baylibre.com>
12100 L:      linux-media@vger.kernel.org
12101 L:      linux-amlogic@lists.infradead.org
12102 S:      Supported
12103 T:      git git://linuxtv.org/media_tree.git
12104 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12105 F:      drivers/media/platform/meson/ge2d/
12106
12107 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12108 M:      Liang Yang <liang.yang@amlogic.com>
12109 L:      linux-mtd@lists.infradead.org
12110 S:      Maintained
12111 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12112 F:      drivers/mtd/nand/raw/meson_*
12113
12114 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12115 M:      Neil Armstrong <narmstrong@baylibre.com>
12116 L:      linux-media@vger.kernel.org
12117 L:      linux-amlogic@lists.infradead.org
12118 S:      Supported
12119 T:      git git://linuxtv.org/media_tree.git
12120 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12121 F:      drivers/staging/media/meson/vdec/
12122
12123 METHODE UDPU SUPPORT
12124 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12125 S:      Maintained
12126 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12127
12128 MHI BUS
12129 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12130 M:      Hemant Kumar <hemantk@codeaurora.org>
12131 L:      linux-arm-msm@vger.kernel.org
12132 S:      Maintained
12133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12134 F:      Documentation/ABI/stable/sysfs-bus-mhi
12135 F:      Documentation/mhi/
12136 F:      drivers/bus/mhi/
12137 F:      include/linux/mhi.h
12138
12139 MICROBLAZE ARCHITECTURE
12140 M:      Michal Simek <monstr@monstr.eu>
12141 S:      Supported
12142 W:      http://www.monstr.eu/fdt/
12143 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12144 F:      arch/microblaze/
12145
12146 MICROCHIP AT91 DMA DRIVERS
12147 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12148 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12149 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12150 L:      dmaengine@vger.kernel.org
12151 S:      Supported
12152 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12153 F:      drivers/dma/at_hdmac.c
12154 F:      drivers/dma/at_hdmac_regs.h
12155 F:      drivers/dma/at_xdmac.c
12156 F:      include/dt-bindings/dma/at91.h
12157
12158 MICROCHIP AT91 SERIAL DRIVER
12159 M:      Richard Genoud <richard.genoud@gmail.com>
12160 S:      Maintained
12161 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12162 F:      drivers/tty/serial/atmel_serial.c
12163 F:      drivers/tty/serial/atmel_serial.h
12164
12165 MICROCHIP AT91 USART MFD DRIVER
12166 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12167 L:      linux-kernel@vger.kernel.org
12168 S:      Supported
12169 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12170 F:      drivers/mfd/at91-usart.c
12171 F:      include/dt-bindings/mfd/at91-usart.h
12172
12173 MICROCHIP AT91 USART SPI DRIVER
12174 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12175 L:      linux-spi@vger.kernel.org
12176 S:      Supported
12177 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12178 F:      drivers/spi/spi-at91-usart.c
12179
12180 MICROCHIP AUDIO ASOC DRIVERS
12181 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12182 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12183 S:      Supported
12184 F:      sound/soc/atmel
12185
12186 MICROCHIP ECC DRIVER
12187 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12188 L:      linux-crypto@vger.kernel.org
12189 S:      Maintained
12190 F:      drivers/crypto/atmel-ecc.*
12191
12192 MICROCHIP I2C DRIVER
12193 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12194 L:      linux-i2c@vger.kernel.org
12195 S:      Supported
12196 F:      drivers/i2c/busses/i2c-at91-*.c
12197 F:      drivers/i2c/busses/i2c-at91.h
12198
12199 MICROCHIP ISC DRIVER
12200 M:      Eugen Hristev <eugen.hristev@microchip.com>
12201 L:      linux-media@vger.kernel.org
12202 S:      Supported
12203 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12204 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12205 F:      drivers/media/platform/atmel/atmel-isc-base.c
12206 F:      drivers/media/platform/atmel/atmel-isc-regs.h
12207 F:      drivers/media/platform/atmel/atmel-isc.h
12208 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
12209 F:      drivers/media/platform/atmel/atmel-sama7g5-isc.c
12210 F:      include/linux/atmel-isc-media.h
12211
12212 MICROCHIP ISI DRIVER
12213 M:      Eugen Hristev <eugen.hristev@microchip.com>
12214 L:      linux-media@vger.kernel.org
12215 S:      Supported
12216 F:      drivers/media/platform/atmel/atmel-isi.c
12217 F:      drivers/media/platform/atmel/atmel-isi.h
12218
12219 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12220 M:      Woojung Huh <woojung.huh@microchip.com>
12221 M:      UNGLinuxDriver@microchip.com
12222 L:      netdev@vger.kernel.org
12223 S:      Maintained
12224 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12225 F:      drivers/net/dsa/microchip/*
12226 F:      include/linux/platform_data/microchip-ksz.h
12227 F:      net/dsa/tag_ksz.c
12228
12229 MICROCHIP LAN743X ETHERNET DRIVER
12230 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12231 M:      UNGLinuxDriver@microchip.com
12232 L:      netdev@vger.kernel.org
12233 S:      Maintained
12234 F:      drivers/net/ethernet/microchip/lan743x_*
12235
12236 MICROCHIP LCDFB DRIVER
12237 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
12238 L:      linux-fbdev@vger.kernel.org
12239 S:      Maintained
12240 F:      drivers/video/fbdev/atmel_lcdfb.c
12241 F:      include/video/atmel_lcdc.h
12242
12243 MICROCHIP MCP16502 PMIC DRIVER
12244 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12245 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12246 S:      Supported
12247 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12248 F:      drivers/regulator/mcp16502.c
12249
12250 MICROCHIP MCP3911 ADC DRIVER
12251 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12252 M:      Kent Gustavsson <kent@minoris.se>
12253 L:      linux-iio@vger.kernel.org
12254 S:      Supported
12255 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12256 F:      drivers/iio/adc/mcp3911.c
12257
12258 MICROCHIP MMC/SD/SDIO MCI DRIVER
12259 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12260 S:      Maintained
12261 F:      drivers/mmc/host/atmel-mci.c
12262
12263 MICROCHIP NAND DRIVER
12264 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12265 L:      linux-mtd@lists.infradead.org
12266 S:      Supported
12267 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12268 F:      drivers/mtd/nand/raw/atmel/*
12269
12270 MICROCHIP PWM DRIVER
12271 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12272 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12273 L:      linux-pwm@vger.kernel.org
12274 S:      Supported
12275 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12276 F:      drivers/pwm/pwm-atmel.c
12277
12278 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12279 M:      Eugen Hristev <eugen.hristev@microchip.com>
12280 L:      linux-iio@vger.kernel.org
12281 S:      Supported
12282 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12283 F:      drivers/iio/adc/at91-sama5d2_adc.c
12284 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12285
12286 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12287 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12288 S:      Supported
12289 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12290
12291 MICROCHIP SPI DRIVER
12292 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12293 S:      Supported
12294 F:      drivers/spi/spi-atmel.*
12295
12296 MICROCHIP SSC DRIVER
12297 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12298 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12299 S:      Supported
12300 F:      drivers/misc/atmel-ssc.c
12301 F:      include/linux/atmel-ssc.h
12302
12303 MICROCHIP USB251XB DRIVER
12304 M:      Richard Leitner <richard.leitner@skidata.com>
12305 L:      linux-usb@vger.kernel.org
12306 S:      Maintained
12307 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12308 F:      drivers/usb/misc/usb251xb.c
12309
12310 MICROCHIP USBA UDC DRIVER
12311 M:      Cristian Birsan <cristian.birsan@microchip.com>
12312 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12313 S:      Supported
12314 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12315
12316 MICROCHIP WILC1000 WIFI DRIVER
12317 M:      Ajay Singh <ajay.kathat@microchip.com>
12318 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12319 L:      linux-wireless@vger.kernel.org
12320 S:      Supported
12321 F:      drivers/net/wireless/microchip/wilc1000/
12322
12323 MICROSEMI MIPS SOCS
12324 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12325 M:      UNGLinuxDriver@microchip.com
12326 L:      linux-mips@vger.kernel.org
12327 S:      Supported
12328 F:      Documentation/devicetree/bindings/mips/mscc.txt
12329 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12330 F:      arch/mips/boot/dts/mscc/
12331 F:      arch/mips/configs/generic/board-ocelot.config
12332 F:      arch/mips/generic/board-ocelot.c
12333
12334 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12335 M:      Don Brace <don.brace@microchip.com>
12336 L:      storagedev@microchip.com
12337 L:      linux-scsi@vger.kernel.org
12338 S:      Supported
12339 F:      Documentation/scsi/smartpqi.rst
12340 F:      drivers/scsi/smartpqi/Kconfig
12341 F:      drivers/scsi/smartpqi/Makefile
12342 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
12343 F:      include/linux/cciss*.h
12344 F:      include/uapi/linux/cciss*.h
12345
12346 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12347 M:      Maximilian Luz <luzmaximilian@gmail.com>
12348 L:      linux-pm@vger.kernel.org
12349 L:      platform-driver-x86@vger.kernel.org
12350 S:      Maintained
12351 F:      drivers/power/supply/surface_battery.c
12352 F:      drivers/power/supply/surface_charger.c
12353
12354 MICROSOFT SURFACE DTX DRIVER
12355 M:      Maximilian Luz <luzmaximilian@gmail.com>
12356 L:      platform-driver-x86@vger.kernel.org
12357 S:      Maintained
12358 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
12359 F:      drivers/platform/surface/surface_dtx.c
12360 F:      include/uapi/linux/surface_aggregator/dtx.h
12361
12362 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12363 M:      Maximilian Luz <luzmaximilian@gmail.com>
12364 L:      platform-driver-x86@vger.kernel.org
12365 S:      Maintained
12366 F:      drivers/platform/surface/surface_gpe.c
12367
12368 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12369 M:      Hans de Goede <hdegoede@redhat.com>
12370 M:      Mark Gross <mgross@linux.intel.com>
12371 M:      Maximilian Luz <luzmaximilian@gmail.com>
12372 L:      platform-driver-x86@vger.kernel.org
12373 S:      Maintained
12374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12375 F:      drivers/platform/surface/
12376
12377 MICROSOFT SURFACE HID TRANSPORT DRIVER
12378 M:      Maximilian Luz <luzmaximilian@gmail.com>
12379 L:      linux-input@vger.kernel.org
12380 L:      platform-driver-x86@vger.kernel.org
12381 S:      Maintained
12382 F:      drivers/hid/surface-hid/
12383
12384 MICROSOFT SURFACE HOT-PLUG DRIVER
12385 M:      Maximilian Luz <luzmaximilian@gmail.com>
12386 L:      platform-driver-x86@vger.kernel.org
12387 S:      Maintained
12388 F:      drivers/platform/surface/surface_hotplug.c
12389
12390 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12391 M:      Maximilian Luz <luzmaximilian@gmail.com>
12392 L:      platform-driver-x86@vger.kernel.org
12393 S:      Maintained
12394 F:      drivers/platform/surface/surface_platform_profile.c
12395
12396 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12397 M:      Chen Yu <yu.c.chen@intel.com>
12398 L:      platform-driver-x86@vger.kernel.org
12399 S:      Supported
12400 F:      drivers/platform/surface/surfacepro3_button.c
12401
12402 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12403 M:      Maximilian Luz <luzmaximilian@gmail.com>
12404 L:      platform-driver-x86@vger.kernel.org
12405 S:      Maintained
12406 W:      https://github.com/linux-surface/surface-aggregator-module
12407 C:      irc://irc.libera.chat/linux-surface
12408 F:      Documentation/driver-api/surface_aggregator/
12409 F:      drivers/platform/surface/aggregator/
12410 F:      drivers/platform/surface/surface_acpi_notify.c
12411 F:      drivers/platform/surface/surface_aggregator_cdev.c
12412 F:      drivers/platform/surface/surface_aggregator_registry.c
12413 F:      include/linux/surface_acpi_notify.h
12414 F:      include/linux/surface_aggregator/
12415 F:      include/uapi/linux/surface_aggregator/
12416
12417 MICROTEK X6 SCANNER
12418 M:      Oliver Neukum <oliver@neukum.org>
12419 S:      Maintained
12420 F:      drivers/usb/image/microtek.*
12421
12422 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12423 M:      Luka Kovacic <luka.kovacic@sartura.hr>
12424 M:      Luka Perkov <luka.perkov@sartura.hr>
12425 S:      Maintained
12426 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12427 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12428 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12429 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12430 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12431 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12432
12433 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12434 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12435 L:      linux-media@vger.kernel.org
12436 S:      Maintained
12437 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12438 F:      Documentation/driver-api/media/drivers/ccs/
12439 F:      Documentation/userspace-api/media/drivers/ccs.rst
12440 F:      drivers/media/i2c/ccs-pll.c
12441 F:      drivers/media/i2c/ccs-pll.h
12442 F:      drivers/media/i2c/ccs/
12443 F:      include/uapi/linux/ccs.h
12444 F:      include/uapi/linux/smiapp.h
12445
12446 MIPS
12447 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12448 L:      linux-mips@vger.kernel.org
12449 S:      Maintained
12450 W:      http://www.linux-mips.org/
12451 Q:      https://patchwork.kernel.org/project/linux-mips/list/
12452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12453 F:      Documentation/devicetree/bindings/mips/
12454 F:      Documentation/mips/
12455 F:      arch/mips/
12456 F:      drivers/platform/mips/
12457
12458 MIPS BOSTON DEVELOPMENT BOARD
12459 M:      Paul Burton <paulburton@kernel.org>
12460 L:      linux-mips@vger.kernel.org
12461 S:      Maintained
12462 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
12463 F:      arch/mips/boot/dts/img/boston.dts
12464 F:      arch/mips/configs/generic/board-boston.config
12465 F:      drivers/clk/imgtec/clk-boston.c
12466 F:      include/dt-bindings/clock/boston-clock.h
12467
12468 MIPS CORE DRIVERS
12469 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12470 M:      Serge Semin <fancer.lancer@gmail.com>
12471 L:      linux-mips@vger.kernel.org
12472 S:      Supported
12473 F:      drivers/bus/mips_cdmm.c
12474 F:      drivers/clocksource/mips-gic-timer.c
12475 F:      drivers/cpuidle/cpuidle-cps.c
12476 F:      drivers/irqchip/irq-mips-cpu.c
12477 F:      drivers/irqchip/irq-mips-gic.c
12478
12479 MIPS GENERIC PLATFORM
12480 M:      Paul Burton <paulburton@kernel.org>
12481 L:      linux-mips@vger.kernel.org
12482 S:      Supported
12483 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12484 F:      arch/mips/generic/
12485 F:      arch/mips/tools/generic-board-config.sh
12486
12487 MIPS RINT INSTRUCTION EMULATION
12488 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
12489 L:      linux-mips@vger.kernel.org
12490 S:      Supported
12491 F:      arch/mips/math-emu/dp_rint.c
12492 F:      arch/mips/math-emu/sp_rint.c
12493
12494 MIPS/LOONGSON1 ARCHITECTURE
12495 M:      Keguang Zhang <keguang.zhang@gmail.com>
12496 L:      linux-mips@vger.kernel.org
12497 S:      Maintained
12498 F:      arch/mips/include/asm/mach-loongson32/
12499 F:      arch/mips/loongson32/
12500 F:      drivers/*/*/*loongson1*
12501 F:      drivers/*/*loongson1*
12502
12503 MIPS/LOONGSON2EF ARCHITECTURE
12504 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12505 L:      linux-mips@vger.kernel.org
12506 S:      Maintained
12507 F:      arch/mips/include/asm/mach-loongson2ef/
12508 F:      arch/mips/loongson2ef/
12509 F:      drivers/cpufreq/loongson2_cpufreq.c
12510
12511 MIPS/LOONGSON64 ARCHITECTURE
12512 M:      Huacai Chen <chenhuacai@kernel.org>
12513 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12514 L:      linux-mips@vger.kernel.org
12515 S:      Maintained
12516 F:      arch/mips/include/asm/mach-loongson64/
12517 F:      arch/mips/loongson64/
12518 F:      drivers/irqchip/irq-loongson*
12519 F:      drivers/platform/mips/cpu_hwmon.c
12520
12521 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12522 M:      Hans Verkuil <hverkuil@xs4all.nl>
12523 L:      linux-media@vger.kernel.org
12524 S:      Odd Fixes
12525 W:      https://linuxtv.org
12526 T:      git git://linuxtv.org/media_tree.git
12527 F:      drivers/media/radio/radio-miropcm20*
12528
12529 MMP SUPPORT
12530 R:      Lubomir Rintel <lkundrak@v3.sk>
12531 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12532 S:      Odd Fixes
12533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12534 F:      arch/arm/boot/dts/mmp*
12535 F:      arch/arm/mach-mmp/
12536 F:      include/linux/soc/mmp/
12537
12538 MMP USB PHY DRIVERS
12539 R:      Lubomir Rintel <lkundrak@v3.sk>
12540 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12541 S:      Maintained
12542 F:      drivers/phy/marvell/phy-mmp3-usb.c
12543 F:      drivers/phy/marvell/phy-pxa-usb.c
12544
12545 MMU GATHER AND TLB INVALIDATION
12546 M:      Will Deacon <will@kernel.org>
12547 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12548 M:      Andrew Morton <akpm@linux-foundation.org>
12549 M:      Nick Piggin <npiggin@gmail.com>
12550 M:      Peter Zijlstra <peterz@infradead.org>
12551 L:      linux-arch@vger.kernel.org
12552 L:      linux-mm@kvack.org
12553 S:      Maintained
12554 F:      arch/*/include/asm/tlb.h
12555 F:      include/asm-generic/tlb.h
12556 F:      mm/mmu_gather.c
12557
12558 MN88472 MEDIA DRIVER
12559 M:      Antti Palosaari <crope@iki.fi>
12560 L:      linux-media@vger.kernel.org
12561 S:      Maintained
12562 W:      https://linuxtv.org
12563 W:      http://palosaari.fi/linux/
12564 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12565 F:      drivers/media/dvb-frontends/mn88472*
12566
12567 MN88473 MEDIA DRIVER
12568 M:      Antti Palosaari <crope@iki.fi>
12569 L:      linux-media@vger.kernel.org
12570 S:      Maintained
12571 W:      https://linuxtv.org
12572 W:      http://palosaari.fi/linux/
12573 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12574 F:      drivers/media/dvb-frontends/mn88473*
12575
12576 MODULE SUPPORT
12577 M:      Jessica Yu <jeyu@kernel.org>
12578 S:      Maintained
12579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12580 F:      include/linux/module.h
12581 F:      kernel/module.c
12582
12583 MONOLITHIC POWER SYSTEM PMIC DRIVER
12584 M:      Saravanan Sekar <sravanhome@gmail.com>
12585 S:      Maintained
12586 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12587 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12588 F:      drivers/iio/adc/mp2629_adc.c
12589 F:      drivers/mfd/mp2629.c
12590 F:      drivers/power/supply/mp2629_charger.c
12591 F:      drivers/regulator/mp5416.c
12592 F:      drivers/regulator/mpq7920.c
12593 F:      drivers/regulator/mpq7920.h
12594 F:      include/linux/mfd/mp2629.h
12595
12596 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12597 S:      Orphan
12598 W:      http://popies.net/meye/
12599 F:      Documentation/userspace-api/media/drivers/meye*
12600 F:      drivers/media/pci/meye/
12601 F:      include/uapi/linux/meye.h
12602
12603 MOTORCOMM PHY DRIVER
12604 M:      Peter Geis <pgwipeout@gmail.com>
12605 L:      netdev@vger.kernel.org
12606 S:      Maintained
12607 F:      drivers/net/phy/motorcomm.c
12608
12609 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12610 M:      Jiri Slaby <jirislaby@kernel.org>
12611 S:      Maintained
12612 F:      Documentation/driver-api/serial/moxa-smartio.rst
12613 F:      drivers/tty/mxser.*
12614
12615 MR800 AVERMEDIA USB FM RADIO DRIVER
12616 M:      Alexey Klimov <klimov.linux@gmail.com>
12617 L:      linux-media@vger.kernel.org
12618 S:      Maintained
12619 T:      git git://linuxtv.org/media_tree.git
12620 F:      drivers/media/radio/radio-mr800.c
12621
12622 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12623 M:      Alan Ott <alan@signal11.us>
12624 L:      linux-wpan@vger.kernel.org
12625 S:      Maintained
12626 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12627 F:      drivers/net/ieee802154/mrf24j40.c
12628
12629 MSI LAPTOP SUPPORT
12630 M:      "Lee, Chun-Yi" <jlee@suse.com>
12631 L:      platform-driver-x86@vger.kernel.org
12632 S:      Maintained
12633 F:      drivers/platform/x86/msi-laptop.c
12634
12635 MSI WMI SUPPORT
12636 L:      platform-driver-x86@vger.kernel.org
12637 S:      Orphan
12638 F:      drivers/platform/x86/msi-wmi.c
12639
12640 MSI001 MEDIA DRIVER
12641 M:      Antti Palosaari <crope@iki.fi>
12642 L:      linux-media@vger.kernel.org
12643 S:      Maintained
12644 W:      https://linuxtv.org
12645 W:      http://palosaari.fi/linux/
12646 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12647 T:      git git://linuxtv.org/anttip/media_tree.git
12648 F:      drivers/media/tuners/msi001*
12649
12650 MSI2500 MEDIA DRIVER
12651 M:      Antti Palosaari <crope@iki.fi>
12652 L:      linux-media@vger.kernel.org
12653 S:      Maintained
12654 W:      https://linuxtv.org
12655 W:      http://palosaari.fi/linux/
12656 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12657 T:      git git://linuxtv.org/anttip/media_tree.git
12658 F:      drivers/media/usb/msi2500/
12659
12660 MSTAR INTERRUPT CONTROLLER DRIVER
12661 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12662 M:      Daniel Palmer <daniel@thingy.jp>
12663 S:      Maintained
12664 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12665 F:      drivers/irqchip/irq-mst-intc.c
12666
12667 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12668 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12669 L:      linux-mtd@lists.infradead.org
12670 S:      Maintained
12671 F:      drivers/mtd/devices/docg3*
12672
12673 MT9M032 APTINA SENSOR DRIVER
12674 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12675 L:      linux-media@vger.kernel.org
12676 S:      Maintained
12677 T:      git git://linuxtv.org/media_tree.git
12678 F:      drivers/media/i2c/mt9m032.c
12679 F:      include/media/i2c/mt9m032.h
12680
12681 MT9P031 APTINA CAMERA SENSOR
12682 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12683 L:      linux-media@vger.kernel.org
12684 S:      Maintained
12685 T:      git git://linuxtv.org/media_tree.git
12686 F:      drivers/media/i2c/mt9p031.c
12687 F:      include/media/i2c/mt9p031.h
12688
12689 MT9T001 APTINA CAMERA SENSOR
12690 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12691 L:      linux-media@vger.kernel.org
12692 S:      Maintained
12693 T:      git git://linuxtv.org/media_tree.git
12694 F:      drivers/media/i2c/mt9t001.c
12695 F:      include/media/i2c/mt9t001.h
12696
12697 MT9T112 APTINA CAMERA SENSOR
12698 M:      Jacopo Mondi <jacopo@jmondi.org>
12699 L:      linux-media@vger.kernel.org
12700 S:      Odd Fixes
12701 T:      git git://linuxtv.org/media_tree.git
12702 F:      drivers/media/i2c/mt9t112.c
12703 F:      include/media/i2c/mt9t112.h
12704
12705 MT9V032 APTINA CAMERA SENSOR
12706 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12707 L:      linux-media@vger.kernel.org
12708 S:      Maintained
12709 T:      git git://linuxtv.org/media_tree.git
12710 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12711 F:      drivers/media/i2c/mt9v032.c
12712 F:      include/media/i2c/mt9v032.h
12713
12714 MT9V111 APTINA CAMERA SENSOR
12715 M:      Jacopo Mondi <jacopo@jmondi.org>
12716 L:      linux-media@vger.kernel.org
12717 S:      Maintained
12718 T:      git git://linuxtv.org/media_tree.git
12719 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12720 F:      drivers/media/i2c/mt9v111.c
12721
12722 MULTIFUNCTION DEVICES (MFD)
12723 M:      Lee Jones <lee.jones@linaro.org>
12724 S:      Supported
12725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12726 F:      Documentation/devicetree/bindings/mfd/
12727 F:      drivers/mfd/
12728 F:      include/dt-bindings/mfd/
12729 F:      include/linux/mfd/
12730
12731 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12732 S:      Orphan
12733 F:      drivers/mmc/host/mmc_spi.c
12734 F:      include/linux/spi/mmc_spi.h
12735
12736 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12737 M:      Ulf Hansson <ulf.hansson@linaro.org>
12738 L:      linux-mmc@vger.kernel.org
12739 S:      Maintained
12740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12741 F:      Documentation/devicetree/bindings/mmc/
12742 F:      drivers/mmc/
12743 F:      include/linux/mmc/
12744 F:      include/uapi/linux/mmc/
12745
12746 MULTIPLEXER SUBSYSTEM
12747 M:      Peter Rosin <peda@axentia.se>
12748 S:      Maintained
12749 F:      Documentation/ABI/testing/sysfs-class-mux*
12750 F:      Documentation/devicetree/bindings/mux/
12751 F:      drivers/mux/
12752 F:      include/dt-bindings/mux/
12753 F:      include/linux/mux/
12754
12755 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12756 M:      Bin Liu <b-liu@ti.com>
12757 L:      linux-usb@vger.kernel.org
12758 S:      Maintained
12759 F:      drivers/usb/musb/
12760
12761 MXL301RF MEDIA DRIVER
12762 M:      Akihiro Tsukada <tskd08@gmail.com>
12763 L:      linux-media@vger.kernel.org
12764 S:      Odd Fixes
12765 F:      drivers/media/tuners/mxl301rf*
12766
12767 MXL5007T MEDIA DRIVER
12768 M:      Michael Krufky <mkrufky@linuxtv.org>
12769 L:      linux-media@vger.kernel.org
12770 S:      Maintained
12771 W:      https://linuxtv.org
12772 W:      http://github.com/mkrufky
12773 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12774 T:      git git://linuxtv.org/mkrufky/tuners.git
12775 F:      drivers/media/tuners/mxl5007t.*
12776
12777 MXSFB DRM DRIVER
12778 M:      Marek Vasut <marex@denx.de>
12779 M:      Stefan Agner <stefan@agner.ch>
12780 L:      dri-devel@lists.freedesktop.org
12781 S:      Supported
12782 T:      git git://anongit.freedesktop.org/drm/drm-misc
12783 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
12784 F:      drivers/gpu/drm/mxsfb/
12785
12786 MYLEX DAC960 PCI RAID Controller
12787 M:      Hannes Reinecke <hare@kernel.org>
12788 L:      linux-scsi@vger.kernel.org
12789 S:      Supported
12790 F:      drivers/scsi/myrb.*
12791 F:      drivers/scsi/myrs.*
12792
12793 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12794 M:      Chris Lee <christopher.lee@cspi.com>
12795 L:      netdev@vger.kernel.org
12796 S:      Supported
12797 W:      https://www.cspi.com/ethernet-products/support/downloads/
12798 F:      drivers/net/ethernet/myricom/myri10ge/
12799
12800 NAND FLASH SUBSYSTEM
12801 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12802 R:      Richard Weinberger <richard@nod.at>
12803 L:      linux-mtd@lists.infradead.org
12804 S:      Maintained
12805 W:      http://www.linux-mtd.infradead.org/
12806 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12807 C:      irc://irc.oftc.net/mtd
12808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12809 F:      drivers/mtd/nand/
12810 F:      include/linux/mtd/*nand*.h
12811
12812 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12813 M:      Daniel Mack <zonque@gmail.com>
12814 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12815 S:      Maintained
12816 W:      http://www.native-instruments.com
12817 F:      sound/usb/caiaq/
12818
12819 NATSEMI ETHERNET DRIVER (DP8381x)
12820 S:      Orphan
12821 F:      drivers/net/ethernet/natsemi/natsemi.c
12822
12823 NCR 5380 SCSI DRIVERS
12824 M:      Finn Thain <fthain@linux-m68k.org>
12825 M:      Michael Schmitz <schmitzmic@gmail.com>
12826 L:      linux-scsi@vger.kernel.org
12827 S:      Maintained
12828 F:      Documentation/scsi/g_NCR5380.rst
12829 F:      drivers/scsi/NCR5380.*
12830 F:      drivers/scsi/arm/cumana_1.c
12831 F:      drivers/scsi/arm/oak.c
12832 F:      drivers/scsi/atari_scsi.*
12833 F:      drivers/scsi/dmx3191d.c
12834 F:      drivers/scsi/g_NCR5380.*
12835 F:      drivers/scsi/mac_scsi.*
12836 F:      drivers/scsi/sun3_scsi.*
12837 F:      drivers/scsi/sun3_scsi_vme.c
12838
12839 NCSI LIBRARY
12840 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
12841 S:      Maintained
12842 F:      net/ncsi/
12843
12844 NCT6775 HARDWARE MONITOR DRIVER
12845 M:      Guenter Roeck <linux@roeck-us.net>
12846 L:      linux-hwmon@vger.kernel.org
12847 S:      Maintained
12848 F:      Documentation/hwmon/nct6775.rst
12849 F:      drivers/hwmon/nct6775.c
12850
12851 NETDEVSIM
12852 M:      Jakub Kicinski <kuba@kernel.org>
12853 S:      Maintained
12854 F:      drivers/net/netdevsim/*
12855
12856 NETEM NETWORK EMULATOR
12857 M:      Stephen Hemminger <stephen@networkplumber.org>
12858 L:      netdev@vger.kernel.org
12859 S:      Maintained
12860 F:      net/sched/sch_netem.c
12861
12862 NETERION 10GbE DRIVERS (s2io/vxge)
12863 M:      Jon Mason <jdmason@kudzu.us>
12864 L:      netdev@vger.kernel.org
12865 S:      Supported
12866 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12867 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12868 F:      drivers/net/ethernet/neterion/
12869
12870 NETFILTER
12871 M:      Pablo Neira Ayuso <pablo@netfilter.org>
12872 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
12873 M:      Florian Westphal <fw@strlen.de>
12874 L:      netfilter-devel@vger.kernel.org
12875 L:      coreteam@netfilter.org
12876 S:      Maintained
12877 W:      http://www.netfilter.org/
12878 W:      http://www.iptables.org/
12879 W:      http://www.nftables.org/
12880 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
12881 C:      irc://irc.libera.chat/netfilter
12882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12884 F:      include/linux/netfilter*
12885 F:      include/linux/netfilter/
12886 F:      include/net/netfilter/
12887 F:      include/uapi/linux/netfilter*
12888 F:      include/uapi/linux/netfilter/
12889 F:      net/*/netfilter.c
12890 F:      net/*/netfilter/
12891 F:      net/bridge/br_netfilter*.c
12892 F:      net/netfilter/
12893
12894 NETROM NETWORK LAYER
12895 M:      Ralf Baechle <ralf@linux-mips.org>
12896 L:      linux-hams@vger.kernel.org
12897 S:      Maintained
12898 W:      http://www.linux-ax25.org/
12899 F:      include/net/netrom.h
12900 F:      include/uapi/linux/netrom.h
12901 F:      net/netrom/
12902
12903 NETRONIX EMBEDDED CONTROLLER
12904 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
12905 S:      Maintained
12906 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
12907 F:      drivers/mfd/ntxec.c
12908 F:      drivers/pwm/pwm-ntxec.c
12909 F:      drivers/rtc/rtc-ntxec.c
12910 F:      include/linux/mfd/ntxec.h
12911
12912 NETRONOME ETHERNET DRIVERS
12913 M:      Simon Horman <simon.horman@corigine.com>
12914 R:      Jakub Kicinski <kuba@kernel.org>
12915 L:      oss-drivers@corigine.com
12916 S:      Maintained
12917 F:      drivers/net/ethernet/netronome/
12918
12919 NETWORK BLOCK DEVICE (NBD)
12920 M:      Josef Bacik <josef@toxicpanda.com>
12921 L:      linux-block@vger.kernel.org
12922 L:      nbd@other.debian.org
12923 S:      Maintained
12924 F:      Documentation/admin-guide/blockdev/nbd.rst
12925 F:      drivers/block/nbd.c
12926 F:      include/trace/events/nbd.h
12927 F:      include/uapi/linux/nbd.h
12928
12929 NETWORK DROP MONITOR
12930 M:      Neil Horman <nhorman@tuxdriver.com>
12931 L:      netdev@vger.kernel.org
12932 S:      Maintained
12933 W:      https://fedorahosted.org/dropwatch/
12934 F:      include/uapi/linux/net_dropmon.h
12935 F:      net/core/drop_monitor.c
12936
12937 NETWORKING DRIVERS
12938 M:      "David S. Miller" <davem@davemloft.net>
12939 M:      Jakub Kicinski <kuba@kernel.org>
12940 L:      netdev@vger.kernel.org
12941 S:      Maintained
12942 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12945 F:      Documentation/devicetree/bindings/net/
12946 F:      drivers/connector/
12947 F:      drivers/net/
12948 F:      include/linux/etherdevice.h
12949 F:      include/linux/fcdevice.h
12950 F:      include/linux/fddidevice.h
12951 F:      include/linux/hippidevice.h
12952 F:      include/linux/if_*
12953 F:      include/linux/inetdevice.h
12954 F:      include/linux/netdevice.h
12955 F:      include/uapi/linux/if_*
12956 F:      include/uapi/linux/netdevice.h
12957
12958 NETWORKING DRIVERS (WIRELESS)
12959 M:      Kalle Valo <kvalo@codeaurora.org>
12960 L:      linux-wireless@vger.kernel.org
12961 S:      Maintained
12962 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
12964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
12965 F:      Documentation/devicetree/bindings/net/wireless/
12966 F:      drivers/net/wireless/
12967
12968 NETWORKING [DSA]
12969 M:      Andrew Lunn <andrew@lunn.ch>
12970 M:      Vivien Didelot <vivien.didelot@gmail.com>
12971 M:      Florian Fainelli <f.fainelli@gmail.com>
12972 M:      Vladimir Oltean <olteanv@gmail.com>
12973 S:      Maintained
12974 F:      Documentation/devicetree/bindings/net/dsa/
12975 F:      drivers/net/dsa/
12976 F:      include/linux/dsa/
12977 F:      include/linux/platform_data/dsa.h
12978 F:      include/net/dsa.h
12979 F:      net/dsa/
12980
12981 NETWORKING [GENERAL]
12982 M:      "David S. Miller" <davem@davemloft.net>
12983 M:      Jakub Kicinski <kuba@kernel.org>
12984 L:      netdev@vger.kernel.org
12985 S:      Maintained
12986 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12987 B:      mailto:netdev@vger.kernel.org
12988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12989 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12990 F:      Documentation/networking/
12991 F:      include/linux/in.h
12992 F:      include/linux/net.h
12993 F:      include/linux/netdevice.h
12994 F:      include/net/
12995 F:      include/uapi/linux/in.h
12996 F:      include/uapi/linux/net.h
12997 F:      include/uapi/linux/net_namespace.h
12998 F:      include/uapi/linux/netdevice.h
12999 F:      lib/net_utils.c
13000 F:      lib/random32.c
13001 F:      net/
13002 F:      tools/testing/selftests/net/
13003
13004 NETWORKING [IPSEC]
13005 M:      Steffen Klassert <steffen.klassert@secunet.com>
13006 M:      Herbert Xu <herbert@gondor.apana.org.au>
13007 M:      "David S. Miller" <davem@davemloft.net>
13008 L:      netdev@vger.kernel.org
13009 S:      Maintained
13010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13012 F:      include/net/xfrm.h
13013 F:      include/uapi/linux/xfrm.h
13014 F:      net/ipv4/ah4.c
13015 F:      net/ipv4/esp4*
13016 F:      net/ipv4/ip_vti.c
13017 F:      net/ipv4/ipcomp.c
13018 F:      net/ipv4/xfrm*
13019 F:      net/ipv6/ah6.c
13020 F:      net/ipv6/esp6*
13021 F:      net/ipv6/ip6_vti.c
13022 F:      net/ipv6/ipcomp6.c
13023 F:      net/ipv6/xfrm*
13024 F:      net/key/
13025 F:      net/xfrm/
13026 F:      tools/testing/selftests/net/ipsec.c
13027
13028 NETWORKING [IPv4/IPv6]
13029 M:      "David S. Miller" <davem@davemloft.net>
13030 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13031 M:      David Ahern <dsahern@kernel.org>
13032 L:      netdev@vger.kernel.org
13033 S:      Maintained
13034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13035 F:      arch/x86/net/*
13036 F:      include/net/ip*
13037 F:      net/ipv4/
13038 F:      net/ipv6/
13039
13040 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13041 M:      Paul Moore <paul@paul-moore.com>
13042 L:      netdev@vger.kernel.org
13043 L:      linux-security-module@vger.kernel.org
13044 S:      Maintained
13045 W:      https://github.com/netlabel
13046 F:      Documentation/netlabel/
13047 F:      include/net/calipso.h
13048 F:      include/net/cipso_ipv4.h
13049 F:      include/net/netlabel.h
13050 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13051 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13052 F:      net/ipv4/cipso_ipv4.c
13053 F:      net/ipv6/calipso.c
13054 F:      net/netfilter/xt_CONNSECMARK.c
13055 F:      net/netfilter/xt_SECMARK.c
13056 F:      net/netlabel/
13057
13058 NETWORKING [MPTCP]
13059 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13060 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13061 L:      netdev@vger.kernel.org
13062 L:      mptcp@lists.linux.dev
13063 S:      Maintained
13064 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13065 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13066 F:      Documentation/networking/mptcp-sysctl.rst
13067 F:      include/net/mptcp.h
13068 F:      include/trace/events/mptcp.h
13069 F:      include/uapi/linux/mptcp.h
13070 F:      net/mptcp/
13071 F:      tools/testing/selftests/net/mptcp/
13072
13073 NETWORKING [TCP]
13074 M:      Eric Dumazet <edumazet@google.com>
13075 L:      netdev@vger.kernel.org
13076 S:      Maintained
13077 F:      include/linux/tcp.h
13078 F:      include/net/tcp.h
13079 F:      include/trace/events/tcp.h
13080 F:      include/uapi/linux/tcp.h
13081 F:      net/ipv4/syncookies.c
13082 F:      net/ipv4/tcp*.c
13083 F:      net/ipv6/syncookies.c
13084 F:      net/ipv6/tcp*.c
13085
13086 NETWORKING [TLS]
13087 M:      Boris Pismenny <borisp@nvidia.com>
13088 M:      John Fastabend <john.fastabend@gmail.com>
13089 M:      Daniel Borkmann <daniel@iogearbox.net>
13090 M:      Jakub Kicinski <kuba@kernel.org>
13091 L:      netdev@vger.kernel.org
13092 S:      Maintained
13093 F:      include/net/tls.h
13094 F:      include/uapi/linux/tls.h
13095 F:      net/tls/*
13096
13097 NETWORKING [WIRELESS]
13098 L:      linux-wireless@vger.kernel.org
13099 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13100
13101 NETXEN (1/10) GbE SUPPORT
13102 M:      Manish Chopra <manishc@marvell.com>
13103 M:      Rahul Verma <rahulv@marvell.com>
13104 M:      GR-Linux-NIC-Dev@marvell.com
13105 L:      netdev@vger.kernel.org
13106 S:      Supported
13107 F:      drivers/net/ethernet/qlogic/netxen/
13108
13109 NET_FAILOVER MODULE
13110 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13111 L:      netdev@vger.kernel.org
13112 S:      Supported
13113 F:      Documentation/networking/net_failover.rst
13114 F:      drivers/net/net_failover.c
13115 F:      include/net/net_failover.h
13116
13117 NEXTHOP
13118 M:      David Ahern <dsahern@kernel.org>
13119 L:      netdev@vger.kernel.org
13120 S:      Maintained
13121 F:      include/net/netns/nexthop.h
13122 F:      include/net/nexthop.h
13123 F:      include/uapi/linux/nexthop.h
13124 F:      net/ipv4/nexthop.c
13125
13126 NFC SUBSYSTEM
13127 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13128 L:      linux-nfc@lists.01.org (subscribers-only)
13129 L:      netdev@vger.kernel.org
13130 S:      Maintained
13131 F:      Documentation/devicetree/bindings/net/nfc/
13132 F:      drivers/nfc/
13133 F:      include/linux/platform_data/nfcmrvl.h
13134 F:      include/net/nfc/
13135 F:      include/uapi/linux/nfc.h
13136 F:      net/nfc/
13137
13138 NFC VIRTUAL NCI DEVICE DRIVER
13139 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13140 L:      netdev@vger.kernel.org
13141 L:      linux-nfc@lists.01.org (subscribers-only)
13142 S:      Supported
13143 F:      drivers/nfc/virtual_ncidev.c
13144 F:      tools/testing/selftests/nci/
13145
13146 NFS, SUNRPC, AND LOCKD CLIENTS
13147 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13148 M:      Anna Schumaker <anna.schumaker@netapp.com>
13149 L:      linux-nfs@vger.kernel.org
13150 S:      Maintained
13151 W:      http://client.linux-nfs.org
13152 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13153 F:      fs/lockd/
13154 F:      fs/nfs/
13155 F:      fs/nfs_common/
13156 F:      include/linux/lockd/
13157 F:      include/linux/nfs*
13158 F:      include/linux/sunrpc/
13159 F:      include/uapi/linux/nfs*
13160 F:      include/uapi/linux/sunrpc/
13161 F:      net/sunrpc/
13162 F:      Documentation/filesystems/nfs/
13163
13164 NILFS2 FILESYSTEM
13165 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13166 L:      linux-nilfs@vger.kernel.org
13167 S:      Supported
13168 W:      https://nilfs.sourceforge.io/
13169 W:      https://nilfs.osdn.jp/
13170 T:      git git://github.com/konis/nilfs2.git
13171 F:      Documentation/filesystems/nilfs2.rst
13172 F:      fs/nilfs2/
13173 F:      include/trace/events/nilfs2.h
13174 F:      include/uapi/linux/nilfs2_api.h
13175 F:      include/uapi/linux/nilfs2_ondisk.h
13176
13177 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13178 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13179 S:      Maintained
13180 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13181 F:      Documentation/scsi/NinjaSCSI.rst
13182 F:      drivers/scsi/pcmcia/nsp_*
13183
13184 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13185 M:      GOTO Masanori <gotom@debian.or.jp>
13186 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13187 S:      Maintained
13188 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13189 F:      Documentation/scsi/NinjaSCSI.rst
13190 F:      drivers/scsi/nsp32*
13191
13192 NIOS2 ARCHITECTURE
13193 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13194 S:      Maintained
13195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
13196 F:      arch/nios2/
13197
13198 NITRO ENCLAVES (NE)
13199 M:      Andra Paraschiv <andraprs@amazon.com>
13200 M:      Alexandru Vasile <lexnv@amazon.com>
13201 M:      Alexandru Ciobotaru <alcioa@amazon.com>
13202 L:      linux-kernel@vger.kernel.org
13203 S:      Supported
13204 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13205 F:      Documentation/virt/ne_overview.rst
13206 F:      drivers/virt/nitro_enclaves/
13207 F:      include/linux/nitro_enclaves.h
13208 F:      include/uapi/linux/nitro_enclaves.h
13209 F:      samples/nitro_enclaves/
13210
13211 NOHZ, DYNTICKS SUPPORT
13212 M:      Frederic Weisbecker <fweisbec@gmail.com>
13213 M:      Thomas Gleixner <tglx@linutronix.de>
13214 M:      Ingo Molnar <mingo@kernel.org>
13215 L:      linux-kernel@vger.kernel.org
13216 S:      Maintained
13217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13218 F:      include/linux/sched/nohz.h
13219 F:      include/linux/tick.h
13220 F:      kernel/time/tick*.*
13221
13222 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13223 M:      Pavel Machek <pavel@ucw.cz>
13224 M:      Sakari Ailus <sakari.ailus@iki.fi>
13225 L:      linux-media@vger.kernel.org
13226 S:      Maintained
13227 F:      drivers/media/i2c/ad5820.c
13228 F:      drivers/media/i2c/et8ek8
13229
13230 NOKIA N900 POWER SUPPLY DRIVERS
13231 R:      Pali Rohár <pali@kernel.org>
13232 F:      drivers/power/supply/bq2415x_charger.c
13233 F:      drivers/power/supply/bq27xxx_battery.c
13234 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13235 F:      drivers/power/supply/isp1704_charger.c
13236 F:      drivers/power/supply/rx51_battery.c
13237 F:      include/linux/power/bq2415x_charger.h
13238 F:      include/linux/power/bq27xxx_battery.h
13239
13240 NOLIBC HEADER FILE
13241 M:      Willy Tarreau <w@1wt.eu>
13242 S:      Maintained
13243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13244 F:      tools/include/nolibc/
13245
13246 NSDEPS
13247 M:      Matthias Maennich <maennich@google.com>
13248 S:      Maintained
13249 F:      Documentation/core-api/symbol-namespaces.rst
13250 F:      scripts/nsdeps
13251
13252 NTB AMD DRIVER
13253 M:      Sanjay R Mehta <sanju.mehta@amd.com>
13254 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13255 L:      linux-ntb@googlegroups.com
13256 S:      Supported
13257 F:      drivers/ntb/hw/amd/
13258
13259 NTB DRIVER CORE
13260 M:      Jon Mason <jdmason@kudzu.us>
13261 M:      Dave Jiang <dave.jiang@intel.com>
13262 M:      Allen Hubbe <allenbh@gmail.com>
13263 L:      linux-ntb@googlegroups.com
13264 S:      Supported
13265 W:      https://github.com/jonmason/ntb/wiki
13266 T:      git git://github.com/jonmason/ntb.git
13267 F:      drivers/net/ntb_netdev.c
13268 F:      drivers/ntb/
13269 F:      include/linux/ntb.h
13270 F:      include/linux/ntb_transport.h
13271 F:      tools/testing/selftests/ntb/
13272
13273 NTB IDT DRIVER
13274 M:      Serge Semin <fancer.lancer@gmail.com>
13275 L:      linux-ntb@googlegroups.com
13276 S:      Supported
13277 F:      drivers/ntb/hw/idt/
13278
13279 NTB INTEL DRIVER
13280 M:      Dave Jiang <dave.jiang@intel.com>
13281 L:      linux-ntb@googlegroups.com
13282 S:      Supported
13283 W:      https://github.com/davejiang/linux/wiki
13284 T:      git https://github.com/davejiang/linux.git
13285 F:      drivers/ntb/hw/intel/
13286
13287 NTFS FILESYSTEM
13288 M:      Anton Altaparmakov <anton@tuxera.com>
13289 L:      linux-ntfs-dev@lists.sourceforge.net
13290 S:      Supported
13291 W:      http://www.tuxera.com/
13292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13293 F:      Documentation/filesystems/ntfs.rst
13294 F:      fs/ntfs/
13295
13296 NUBUS SUBSYSTEM
13297 M:      Finn Thain <fthain@linux-m68k.org>
13298 L:      linux-m68k@lists.linux-m68k.org
13299 S:      Maintained
13300 F:      arch/*/include/asm/nubus.h
13301 F:      drivers/nubus/
13302 F:      include/linux/nubus.h
13303 F:      include/uapi/linux/nubus.h
13304
13305 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13306 M:      Antonino Daplas <adaplas@gmail.com>
13307 L:      linux-fbdev@vger.kernel.org
13308 S:      Maintained
13309 F:      drivers/video/fbdev/nvidia/
13310 F:      drivers/video/fbdev/riva/
13311
13312 NVM EXPRESS DRIVER
13313 M:      Keith Busch <kbusch@kernel.org>
13314 M:      Jens Axboe <axboe@fb.com>
13315 M:      Christoph Hellwig <hch@lst.de>
13316 M:      Sagi Grimberg <sagi@grimberg.me>
13317 L:      linux-nvme@lists.infradead.org
13318 S:      Supported
13319 W:      http://git.infradead.org/nvme.git
13320 T:      git://git.infradead.org/nvme.git
13321 F:      drivers/nvme/host/
13322 F:      include/linux/nvme.h
13323 F:      include/uapi/linux/nvme_ioctl.h
13324
13325 NVM EXPRESS FC TRANSPORT DRIVERS
13326 M:      James Smart <james.smart@broadcom.com>
13327 L:      linux-nvme@lists.infradead.org
13328 S:      Supported
13329 F:      drivers/nvme/host/fc.c
13330 F:      drivers/nvme/target/fc.c
13331 F:      drivers/nvme/target/fcloop.c
13332 F:      include/linux/nvme-fc-driver.h
13333 F:      include/linux/nvme-fc.h
13334
13335 NVM EXPRESS TARGET DRIVER
13336 M:      Christoph Hellwig <hch@lst.de>
13337 M:      Sagi Grimberg <sagi@grimberg.me>
13338 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
13339 L:      linux-nvme@lists.infradead.org
13340 S:      Supported
13341 W:      http://git.infradead.org/nvme.git
13342 T:      git://git.infradead.org/nvme.git
13343 F:      drivers/nvme/target/
13344
13345 NVMEM FRAMEWORK
13346 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13347 S:      Maintained
13348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13349 F:      Documentation/ABI/stable/sysfs-bus-nvmem
13350 F:      Documentation/devicetree/bindings/nvmem/
13351 F:      drivers/nvmem/
13352 F:      include/linux/nvmem-consumer.h
13353 F:      include/linux/nvmem-provider.h
13354
13355 NXP C45 TJA11XX PHY DRIVER
13356 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13357 L:      netdev@vger.kernel.org
13358 S:      Maintained
13359 F:      drivers/net/phy/nxp-c45-tja11xx.c
13360
13361 NXP FSPI DRIVER
13362 M:      Ashish Kumar <ashish.kumar@nxp.com>
13363 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
13364 L:      linux-spi@vger.kernel.org
13365 S:      Maintained
13366 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
13367 F:      drivers/spi/spi-nxp-fspi.c
13368
13369 NXP FXAS21002C DRIVER
13370 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13371 L:      linux-iio@vger.kernel.org
13372 S:      Maintained
13373 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13374 F:      drivers/iio/gyro/fxas21002c.h
13375 F:      drivers/iio/gyro/fxas21002c_core.c
13376 F:      drivers/iio/gyro/fxas21002c_i2c.c
13377 F:      drivers/iio/gyro/fxas21002c_spi.c
13378
13379 NXP i.MX CLOCK DRIVERS
13380 M:      Abel Vesa <abel.vesa@nxp.com>
13381 L:      linux-clk@vger.kernel.org
13382 L:      linux-imx@nxp.com
13383 S:      Maintained
13384 F:      drivers/clk/imx/
13385
13386 NXP i.MX 8MQ DCSS DRIVER
13387 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13388 R:      Lucas Stach <l.stach@pengutronix.de>
13389 L:      dri-devel@lists.freedesktop.org
13390 S:      Maintained
13391 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13392 F:      drivers/gpu/drm/imx/dcss/
13393
13394 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13395 M:      Jagan Teki <jagan@amarulasolutions.com>
13396 S:      Maintained
13397 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13398 F:      drivers/regulator/pf8x00-regulator.c
13399
13400 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13401 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13402 L:      linux-kernel@vger.kernel.org
13403 S:      Maintained
13404 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13405 F:      drivers/extcon/extcon-ptn5150.c
13406
13407 NXP SGTL5000 DRIVER
13408 M:      Fabio Estevam <festevam@gmail.com>
13409 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13410 S:      Maintained
13411 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
13412 F:      sound/soc/codecs/sgtl5000*
13413
13414 NXP SJA1105 ETHERNET SWITCH DRIVER
13415 M:      Vladimir Oltean <olteanv@gmail.com>
13416 L:      linux-kernel@vger.kernel.org
13417 S:      Maintained
13418 F:      drivers/net/dsa/sja1105
13419 F:      drivers/net/pcs/pcs-xpcs-nxp.c
13420
13421 NXP TDA998X DRM DRIVER
13422 M:      Russell King <linux@armlinux.org.uk>
13423 S:      Maintained
13424 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13425 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13426 F:      drivers/gpu/drm/i2c/tda998x_drv.c
13427 F:      include/drm/i2c/tda998x.h
13428 F:      include/dt-bindings/display/tda998x.h
13429 K:      "nxp,tda998x"
13430
13431 NXP TFA9879 DRIVER
13432 M:      Peter Rosin <peda@axentia.se>
13433 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13434 S:      Maintained
13435 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
13436 F:      sound/soc/codecs/tfa9879*
13437
13438 NXP/Goodix TFA989X (TFA1) DRIVER
13439 M:      Stephan Gerhold <stephan@gerhold.net>
13440 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13441 S:      Maintained
13442 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13443 F:      sound/soc/codecs/tfa989x.c
13444
13445 NXP-NCI NFC DRIVER
13446 R:      Charles Gorand <charles.gorand@effinnov.com>
13447 L:      linux-nfc@lists.01.org (subscribers-only)
13448 S:      Supported
13449 F:      drivers/nfc/nxp-nci
13450
13451 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13452 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
13453 R:      NXP Linux Team <linux-imx@nxp.com>
13454 L:      linux-media@vger.kernel.org
13455 S:      Maintained
13456 F:      Documentation/devicetree/bindings/media/imx8-jpeg.yaml
13457 F:      drivers/media/platform/imx-jpeg
13458
13459 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13460 M:      Jonas Malaco <jonas@protocubo.io>
13461 L:      linux-hwmon@vger.kernel.org
13462 S:      Maintained
13463 F:      Documentation/hwmon/nzxt-kraken2.rst
13464 F:      drivers/hwmon/nzxt-kraken2.c
13465
13466 OBJAGG
13467 M:      Jiri Pirko <jiri@nvidia.com>
13468 L:      netdev@vger.kernel.org
13469 S:      Supported
13470 F:      include/linux/objagg.h
13471 F:      lib/objagg.c
13472 F:      lib/test_objagg.c
13473
13474 OBJTOOL
13475 M:      Josh Poimboeuf <jpoimboe@redhat.com>
13476 M:      Peter Zijlstra <peterz@infradead.org>
13477 S:      Supported
13478 F:      tools/objtool/
13479 F:      include/linux/objtool.h
13480
13481 OCELOT ETHERNET SWITCH DRIVER
13482 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
13483 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
13484 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13485 M:      UNGLinuxDriver@microchip.com
13486 L:      netdev@vger.kernel.org
13487 S:      Supported
13488 F:      drivers/net/dsa/ocelot/*
13489 F:      drivers/net/ethernet/mscc/
13490 F:      include/soc/mscc/ocelot*
13491 F:      net/dsa/tag_ocelot.c
13492 F:      net/dsa/tag_ocelot_8021q.c
13493 F:      tools/testing/selftests/drivers/net/ocelot/*
13494
13495 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13496 M:      Frederic Barrat <fbarrat@linux.ibm.com>
13497 M:      Andrew Donnellan <ajd@linux.ibm.com>
13498 L:      linuxppc-dev@lists.ozlabs.org
13499 S:      Supported
13500 F:      Documentation/userspace-api/accelerators/ocxl.rst
13501 F:      arch/powerpc/include/asm/pnv-ocxl.h
13502 F:      arch/powerpc/platforms/powernv/ocxl.c
13503 F:      drivers/misc/ocxl/
13504 F:      include/misc/ocxl*
13505 F:      include/uapi/misc/ocxl.h
13506
13507 OMAP AUDIO SUPPORT
13508 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
13509 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
13510 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13511 L:      linux-omap@vger.kernel.org
13512 S:      Maintained
13513 F:      sound/soc/ti/n810.c
13514 F:      sound/soc/ti/omap*
13515 F:      sound/soc/ti/rx51.c
13516 F:      sound/soc/ti/sdma-pcm.*
13517
13518 OMAP CLOCK FRAMEWORK SUPPORT
13519 M:      Paul Walmsley <paul@pwsan.com>
13520 L:      linux-omap@vger.kernel.org
13521 S:      Maintained
13522 F:      arch/arm/*omap*/*clock*
13523
13524 OMAP DEVICE TREE SUPPORT
13525 M:      Benoît Cousson <bcousson@baylibre.com>
13526 M:      Tony Lindgren <tony@atomide.com>
13527 L:      linux-omap@vger.kernel.org
13528 L:      devicetree@vger.kernel.org
13529 S:      Maintained
13530 F:      arch/arm/boot/dts/*am3*
13531 F:      arch/arm/boot/dts/*am4*
13532 F:      arch/arm/boot/dts/*am5*
13533 F:      arch/arm/boot/dts/*dra7*
13534 F:      arch/arm/boot/dts/*omap*
13535 F:      arch/arm/boot/dts/logicpd-som-lv*
13536 F:      arch/arm/boot/dts/logicpd-torpedo*
13537
13538 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13539 L:      linux-omap@vger.kernel.org
13540 L:      linux-fbdev@vger.kernel.org
13541 S:      Orphan
13542 F:      Documentation/arm/omap/dss.rst
13543 F:      drivers/video/fbdev/omap2/
13544
13545 OMAP FRAMEBUFFER SUPPORT
13546 L:      linux-fbdev@vger.kernel.org
13547 L:      linux-omap@vger.kernel.org
13548 S:      Orphan
13549 F:      drivers/video/fbdev/omap/
13550
13551 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13552 M:      Roger Quadros <rogerq@kernel.org>
13553 M:      Tony Lindgren <tony@atomide.com>
13554 L:      linux-omap@vger.kernel.org
13555 S:      Maintained
13556 F:      arch/arm/mach-omap2/*gpmc*
13557 F:      drivers/memory/omap-gpmc.c
13558
13559 OMAP GPIO DRIVER
13560 M:      Grygorii Strashko <grygorii.strashko@ti.com>
13561 M:      Santosh Shilimkar <ssantosh@kernel.org>
13562 M:      Kevin Hilman <khilman@kernel.org>
13563 L:      linux-omap@vger.kernel.org
13564 S:      Maintained
13565 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
13566 F:      drivers/gpio/gpio-omap.c
13567
13568 OMAP HARDWARE SPINLOCK SUPPORT
13569 M:      Ohad Ben-Cohen <ohad@wizery.com>
13570 L:      linux-omap@vger.kernel.org
13571 S:      Maintained
13572 F:      drivers/hwspinlock/omap_hwspinlock.c
13573
13574 OMAP HS MMC SUPPORT
13575 L:      linux-mmc@vger.kernel.org
13576 L:      linux-omap@vger.kernel.org
13577 S:      Orphan
13578 F:      drivers/mmc/host/omap_hsmmc.c
13579
13580 OMAP HWMOD DATA
13581 M:      Paul Walmsley <paul@pwsan.com>
13582 L:      linux-omap@vger.kernel.org
13583 S:      Maintained
13584 F:      arch/arm/mach-omap2/omap_hwmod*data*
13585
13586 OMAP HWMOD SUPPORT
13587 M:      Benoît Cousson <bcousson@baylibre.com>
13588 M:      Paul Walmsley <paul@pwsan.com>
13589 L:      linux-omap@vger.kernel.org
13590 S:      Maintained
13591 F:      arch/arm/mach-omap2/omap_hwmod.*
13592
13593 OMAP I2C DRIVER
13594 M:      Vignesh R <vigneshr@ti.com>
13595 L:      linux-omap@vger.kernel.org
13596 L:      linux-i2c@vger.kernel.org
13597 S:      Maintained
13598 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
13599 F:      drivers/i2c/busses/i2c-omap.c
13600
13601 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13602 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13603 L:      linux-media@vger.kernel.org
13604 S:      Maintained
13605 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
13606 F:      drivers/media/platform/omap3isp/
13607 F:      drivers/staging/media/omap4iss/
13608
13609 OMAP MMC SUPPORT
13610 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13611 L:      linux-omap@vger.kernel.org
13612 S:      Odd Fixes
13613 F:      drivers/mmc/host/omap.c
13614
13615 OMAP POWER MANAGEMENT SUPPORT
13616 M:      Kevin Hilman <khilman@kernel.org>
13617 L:      linux-omap@vger.kernel.org
13618 S:      Maintained
13619 F:      arch/arm/*omap*/*pm*
13620 F:      drivers/cpufreq/omap-cpufreq.c
13621
13622 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13623 M:      Rajendra Nayak <rnayak@codeaurora.org>
13624 M:      Paul Walmsley <paul@pwsan.com>
13625 L:      linux-omap@vger.kernel.org
13626 S:      Maintained
13627 F:      arch/arm/mach-omap2/prm*
13628
13629 OMAP RANDOM NUMBER GENERATOR SUPPORT
13630 M:      Deepak Saxena <dsaxena@plexity.net>
13631 S:      Maintained
13632 F:      drivers/char/hw_random/omap-rng.c
13633
13634 OMAP USB SUPPORT
13635 L:      linux-usb@vger.kernel.org
13636 L:      linux-omap@vger.kernel.org
13637 S:      Orphan
13638 F:      arch/arm/*omap*/usb*
13639 F:      drivers/usb/*/*omap*
13640
13641 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13642 M:      Mark Jackson <mpfj@newflow.co.uk>
13643 L:      linux-omap@vger.kernel.org
13644 S:      Maintained
13645 F:      arch/arm/boot/dts/am335x-nano.dts
13646
13647 OMAP1 SUPPORT
13648 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13649 M:      Tony Lindgren <tony@atomide.com>
13650 L:      linux-omap@vger.kernel.org
13651 S:      Maintained
13652 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13654 F:      arch/arm/configs/omap1_defconfig
13655 F:      arch/arm/mach-omap1/
13656 F:      arch/arm/plat-omap/
13657 F:      drivers/i2c/busses/i2c-omap.c
13658 F:      include/linux/platform_data/ams-delta-fiq.h
13659 F:      include/linux/platform_data/i2c-omap.h
13660
13661 OMAP2+ SUPPORT
13662 M:      Tony Lindgren <tony@atomide.com>
13663 L:      linux-omap@vger.kernel.org
13664 S:      Maintained
13665 W:      http://www.muru.com/linux/omap/
13666 W:      http://linux.omap.com/
13667 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13669 F:      arch/arm/configs/omap2plus_defconfig
13670 F:      arch/arm/mach-omap2/
13671 F:      arch/arm/plat-omap/
13672 F:      drivers/bus/ti-sysc.c
13673 F:      drivers/i2c/busses/i2c-omap.c
13674 F:      drivers/irqchip/irq-omap-intc.c
13675 F:      drivers/mfd/*omap*.c
13676 F:      drivers/mfd/menelaus.c
13677 F:      drivers/mfd/palmas.c
13678 F:      drivers/mfd/tps65217.c
13679 F:      drivers/mfd/tps65218.c
13680 F:      drivers/mfd/tps65910.c
13681 F:      drivers/mfd/twl-core.[ch]
13682 F:      drivers/mfd/twl4030*.c
13683 F:      drivers/mfd/twl6030*.c
13684 F:      drivers/mfd/twl6040*.c
13685 F:      drivers/regulator/palmas-regulator*.c
13686 F:      drivers/regulator/pbias-regulator.c
13687 F:      drivers/regulator/tps65217-regulator.c
13688 F:      drivers/regulator/tps65218-regulator.c
13689 F:      drivers/regulator/tps65910-regulator.c
13690 F:      drivers/regulator/twl-regulator.c
13691 F:      drivers/regulator/twl6030-regulator.c
13692 F:      include/linux/platform_data/i2c-omap.h
13693 F:      include/linux/platform_data/ti-sysc.h
13694
13695 OMFS FILESYSTEM
13696 M:      Bob Copeland <me@bobcopeland.com>
13697 L:      linux-karma-devel@lists.sourceforge.net
13698 S:      Maintained
13699 F:      Documentation/filesystems/omfs.rst
13700 F:      fs/omfs/
13701
13702 OMNIKEY CARDMAN 4000 DRIVER
13703 M:      Harald Welte <laforge@gnumonks.org>
13704 S:      Maintained
13705 F:      drivers/char/pcmcia/cm4000_cs.c
13706 F:      include/linux/cm4000_cs.h
13707 F:      include/uapi/linux/cm4000_cs.h
13708
13709 OMNIKEY CARDMAN 4040 DRIVER
13710 M:      Harald Welte <laforge@gnumonks.org>
13711 S:      Maintained
13712 F:      drivers/char/pcmcia/cm4040_cs.*
13713
13714 OMNIVISION OV02A10 SENSOR DRIVER
13715 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13716 L:      linux-media@vger.kernel.org
13717 S:      Maintained
13718 T:      git git://linuxtv.org/media_tree.git
13719 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13720 F:      drivers/media/i2c/ov02a10.c
13721
13722 OMNIVISION OV13858 SENSOR DRIVER
13723 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13724 L:      linux-media@vger.kernel.org
13725 S:      Maintained
13726 T:      git git://linuxtv.org/media_tree.git
13727 F:      drivers/media/i2c/ov13858.c
13728
13729 OMNIVISION OV2680 SENSOR DRIVER
13730 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13731 L:      linux-media@vger.kernel.org
13732 S:      Maintained
13733 T:      git git://linuxtv.org/media_tree.git
13734 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
13735 F:      drivers/media/i2c/ov2680.c
13736
13737 OMNIVISION OV2685 SENSOR DRIVER
13738 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13739 L:      linux-media@vger.kernel.org
13740 S:      Maintained
13741 T:      git git://linuxtv.org/media_tree.git
13742 F:      drivers/media/i2c/ov2685.c
13743
13744 OMNIVISION OV2740 SENSOR DRIVER
13745 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13746 R:      Shawn Tu <shawnx.tu@intel.com>
13747 R:      Bingbu Cao <bingbu.cao@intel.com>
13748 L:      linux-media@vger.kernel.org
13749 S:      Maintained
13750 T:      git git://linuxtv.org/media_tree.git
13751 F:      drivers/media/i2c/ov2740.c
13752
13753 OMNIVISION OV5640 SENSOR DRIVER
13754 M:      Steve Longerbeam <slongerbeam@gmail.com>
13755 L:      linux-media@vger.kernel.org
13756 S:      Maintained
13757 T:      git git://linuxtv.org/media_tree.git
13758 F:      drivers/media/i2c/ov5640.c
13759
13760 OMNIVISION OV5647 SENSOR DRIVER
13761 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
13762 M:      Jacopo Mondi <jacopo@jmondi.org>
13763 L:      linux-media@vger.kernel.org
13764 S:      Maintained
13765 T:      git git://linuxtv.org/media_tree.git
13766 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
13767 F:      drivers/media/i2c/ov5647.c
13768
13769 OMNIVISION OV5670 SENSOR DRIVER
13770 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13771 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
13772 L:      linux-media@vger.kernel.org
13773 S:      Maintained
13774 T:      git git://linuxtv.org/media_tree.git
13775 F:      drivers/media/i2c/ov5670.c
13776
13777 OMNIVISION OV5675 SENSOR DRIVER
13778 M:      Shawn Tu <shawnx.tu@intel.com>
13779 L:      linux-media@vger.kernel.org
13780 S:      Maintained
13781 T:      git git://linuxtv.org/media_tree.git
13782 F:      drivers/media/i2c/ov5675.c
13783
13784 OMNIVISION OV5695 SENSOR DRIVER
13785 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13786 L:      linux-media@vger.kernel.org
13787 S:      Maintained
13788 T:      git git://linuxtv.org/media_tree.git
13789 F:      drivers/media/i2c/ov5695.c
13790
13791 OMNIVISION OV7670 SENSOR DRIVER
13792 L:      linux-media@vger.kernel.org
13793 S:      Orphan
13794 T:      git git://linuxtv.org/media_tree.git
13795 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
13796 F:      drivers/media/i2c/ov7670.c
13797
13798 OMNIVISION OV772x SENSOR DRIVER
13799 M:      Jacopo Mondi <jacopo@jmondi.org>
13800 L:      linux-media@vger.kernel.org
13801 S:      Odd fixes
13802 T:      git git://linuxtv.org/media_tree.git
13803 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13804 F:      drivers/media/i2c/ov772x.c
13805 F:      include/media/i2c/ov772x.h
13806
13807 OMNIVISION OV7740 SENSOR DRIVER
13808 M:      Wenyou Yang <wenyou.yang@microchip.com>
13809 L:      linux-media@vger.kernel.org
13810 S:      Maintained
13811 T:      git git://linuxtv.org/media_tree.git
13812 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
13813 F:      drivers/media/i2c/ov7740.c
13814
13815 OMNIVISION OV8856 SENSOR DRIVER
13816 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13817 L:      linux-media@vger.kernel.org
13818 S:      Maintained
13819 T:      git git://linuxtv.org/media_tree.git
13820 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13821 F:      drivers/media/i2c/ov8856.c
13822
13823 OMNIVISION OV9640 SENSOR DRIVER
13824 M:      Petr Cvek <petrcvekcz@gmail.com>
13825 L:      linux-media@vger.kernel.org
13826 S:      Maintained
13827 F:      drivers/media/i2c/ov9640.*
13828
13829 OMNIVISION OV9650 SENSOR DRIVER
13830 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13831 R:      Akinobu Mita <akinobu.mita@gmail.com>
13832 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13833 L:      linux-media@vger.kernel.org
13834 S:      Maintained
13835 T:      git git://linuxtv.org/media_tree.git
13836 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
13837 F:      drivers/media/i2c/ov9650.c
13838
13839 OMNIVISION OV9734 SENSOR DRIVER
13840 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13841 R:      Bingbu Cao <bingbu.cao@intel.com>
13842 L:      linux-media@vger.kernel.org
13843 S:      Maintained
13844 T:      git git://linuxtv.org/media_tree.git
13845 F:      drivers/media/i2c/ov9734.c
13846
13847 ONENAND FLASH DRIVER
13848 M:      Kyungmin Park <kyungmin.park@samsung.com>
13849 L:      linux-mtd@lists.infradead.org
13850 S:      Maintained
13851 F:      drivers/mtd/nand/onenand/
13852 F:      include/linux/mtd/onenand*.h
13853
13854 ONION OMEGA2+ BOARD
13855 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
13856 L:      linux-mips@vger.kernel.org
13857 S:      Maintained
13858 F:      arch/mips/boot/dts/ralink/omega2p.dts
13859
13860 OP-TEE DRIVER
13861 M:      Jens Wiklander <jens.wiklander@linaro.org>
13862 L:      op-tee@lists.trustedfirmware.org
13863 S:      Maintained
13864 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
13865 F:      drivers/tee/optee/
13866
13867 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
13868 M:      Sumit Garg <sumit.garg@linaro.org>
13869 L:      op-tee@lists.trustedfirmware.org
13870 S:      Maintained
13871 F:      drivers/char/hw_random/optee-rng.c
13872
13873 OPA-VNIC DRIVER
13874 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
13875 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
13876 L:      linux-rdma@vger.kernel.org
13877 S:      Supported
13878 F:      drivers/infiniband/ulp/opa_vnic
13879
13880 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
13881 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
13882 M:      Frank Rowand <frowand.list@gmail.com>
13883 L:      devicetree@vger.kernel.org
13884 S:      Maintained
13885 F:      Documentation/devicetree/dynamic-resolution-notes.rst
13886 F:      Documentation/devicetree/overlay-notes.rst
13887 F:      drivers/of/overlay.c
13888 F:      drivers/of/resolver.c
13889 K:      of_overlay_notifier_
13890
13891 OPEN FIRMWARE AND FLATTENED DEVICE TREE
13892 M:      Rob Herring <robh+dt@kernel.org>
13893 M:      Frank Rowand <frowand.list@gmail.com>
13894 L:      devicetree@vger.kernel.org
13895 S:      Maintained
13896 W:      http://www.devicetree.org/
13897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13898 F:      Documentation/ABI/testing/sysfs-firmware-ofw
13899 F:      drivers/of/
13900 F:      include/linux/of*.h
13901 F:      scripts/dtc/
13902
13903 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
13904 M:      Rob Herring <robh+dt@kernel.org>
13905 L:      devicetree@vger.kernel.org
13906 S:      Maintained
13907 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
13908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13909 F:      Documentation/devicetree/
13910 F:      arch/*/boot/dts/
13911 F:      include/dt-bindings/
13912
13913 OPENCOMPUTE PTP CLOCK DRIVER
13914 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
13915 L:      netdev@vger.kernel.org
13916 S:      Maintained
13917 F:      drivers/ptp/ptp_ocp.c
13918
13919 OPENCORES I2C BUS DRIVER
13920 M:      Peter Korsgaard <peter@korsgaard.com>
13921 M:      Andrew Lunn <andrew@lunn.ch>
13922 L:      linux-i2c@vger.kernel.org
13923 S:      Maintained
13924 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
13925 F:      Documentation/i2c/busses/i2c-ocores.rst
13926 F:      drivers/i2c/busses/i2c-ocores.c
13927 F:      include/linux/platform_data/i2c-ocores.h
13928
13929 OPENRISC ARCHITECTURE
13930 M:      Jonas Bonn <jonas@southpole.se>
13931 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
13932 M:      Stafford Horne <shorne@gmail.com>
13933 L:      openrisc@lists.librecores.org
13934 S:      Maintained
13935 W:      http://openrisc.io
13936 T:      git git://github.com/openrisc/linux.git
13937 F:      Documentation/devicetree/bindings/openrisc/
13938 F:      Documentation/openrisc/
13939 F:      arch/openrisc/
13940 F:      drivers/irqchip/irq-ompic.c
13941 F:      drivers/irqchip/irq-or1k-*
13942
13943 OPENVSWITCH
13944 M:      Pravin B Shelar <pshelar@ovn.org>
13945 L:      netdev@vger.kernel.org
13946 L:      dev@openvswitch.org
13947 S:      Maintained
13948 W:      http://openvswitch.org
13949 F:      include/uapi/linux/openvswitch.h
13950 F:      net/openvswitch/
13951
13952 OPERATING PERFORMANCE POINTS (OPP)
13953 M:      Viresh Kumar <vireshk@kernel.org>
13954 M:      Nishanth Menon <nm@ti.com>
13955 M:      Stephen Boyd <sboyd@kernel.org>
13956 L:      linux-pm@vger.kernel.org
13957 S:      Maintained
13958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
13959 F:      Documentation/devicetree/bindings/opp/
13960 F:      Documentation/power/opp.rst
13961 F:      drivers/opp/
13962 F:      include/linux/pm_opp.h
13963
13964 OPL4 DRIVER
13965 M:      Clemens Ladisch <clemens@ladisch.de>
13966 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13967 S:      Maintained
13968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13969 F:      sound/drivers/opl4/
13970
13971 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
13972 M:      Mark Fasheh <mark@fasheh.com>
13973 M:      Joel Becker <jlbec@evilplan.org>
13974 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
13975 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
13976 S:      Supported
13977 W:      http://ocfs2.wiki.kernel.org
13978 F:      Documentation/filesystems/dlmfs.rst
13979 F:      Documentation/filesystems/ocfs2.rst
13980 F:      fs/ocfs2/
13981
13982 ORANGEFS FILESYSTEM
13983 M:      Mike Marshall <hubcap@omnibond.com>
13984 R:      Martin Brandenburg <martin@omnibond.com>
13985 L:      devel@lists.orangefs.org
13986 S:      Supported
13987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
13988 F:      Documentation/filesystems/orangefs.rst
13989 F:      fs/orangefs/
13990
13991 ORINOCO DRIVER
13992 L:      linux-wireless@vger.kernel.org
13993 S:      Orphan
13994 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
13995 W:      http://www.nongnu.org/orinoco/
13996 F:      drivers/net/wireless/intersil/orinoco/
13997
13998 OV2659 OMNIVISION SENSOR DRIVER
13999 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14000 L:      linux-media@vger.kernel.org
14001 S:      Maintained
14002 W:      https://linuxtv.org
14003 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14004 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14005 F:      drivers/media/i2c/ov2659.c
14006 F:      include/media/i2c/ov2659.h
14007
14008 OVERLAY FILESYSTEM
14009 M:      Miklos Szeredi <miklos@szeredi.hu>
14010 L:      linux-unionfs@vger.kernel.org
14011 S:      Supported
14012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14013 F:      Documentation/filesystems/overlayfs.rst
14014 F:      fs/overlayfs/
14015
14016 P54 WIRELESS DRIVER
14017 M:      Christian Lamparter <chunkeey@googlemail.com>
14018 L:      linux-wireless@vger.kernel.org
14019 S:      Maintained
14020 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14021 F:      drivers/net/wireless/intersil/p54/
14022
14023 PACKING
14024 M:      Vladimir Oltean <olteanv@gmail.com>
14025 L:      netdev@vger.kernel.org
14026 S:      Supported
14027 F:      Documentation/core-api/packing.rst
14028 F:      include/linux/packing.h
14029 F:      lib/packing.c
14030
14031 PADATA PARALLEL EXECUTION MECHANISM
14032 M:      Steffen Klassert <steffen.klassert@secunet.com>
14033 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14034 L:      linux-crypto@vger.kernel.org
14035 L:      linux-kernel@vger.kernel.org
14036 S:      Maintained
14037 F:      Documentation/core-api/padata.rst
14038 F:      include/linux/padata.h
14039 F:      kernel/padata.c
14040
14041 PAGE POOL
14042 M:      Jesper Dangaard Brouer <hawk@kernel.org>
14043 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
14044 L:      netdev@vger.kernel.org
14045 S:      Supported
14046 F:      Documentation/networking/page_pool.rst
14047 F:      include/net/page_pool.h
14048 F:      include/trace/events/page_pool.h
14049 F:      net/core/page_pool.c
14050
14051 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14052 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
14053 L:      platform-driver-x86@vger.kernel.org
14054 S:      Maintained
14055 F:      drivers/platform/x86/panasonic-laptop.c
14056
14057 PARALLAX PING IIO SENSOR DRIVER
14058 M:      Andreas Klinger <ak@it-klinger.de>
14059 L:      linux-iio@vger.kernel.org
14060 S:      Maintained
14061 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14062 F:      drivers/iio/proximity/ping.c
14063
14064 PARALLEL LCD/KEYPAD PANEL DRIVER
14065 M:      Willy Tarreau <willy@haproxy.com>
14066 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14067 S:      Odd Fixes
14068 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14069 F:      drivers/auxdisplay/panel.c
14070
14071 PARALLEL PORT SUBSYSTEM
14072 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14073 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14074 L:      linux-parport@lists.infradead.org (subscribers-only)
14075 S:      Maintained
14076 F:      Documentation/driver-api/parport*.rst
14077 F:      drivers/char/ppdev.c
14078 F:      drivers/parport/
14079 F:      include/linux/parport*.h
14080 F:      include/uapi/linux/ppdev.h
14081
14082 PARAVIRT_OPS INTERFACE
14083 M:      Juergen Gross <jgross@suse.com>
14084 M:      Deep Shah <sdeep@vmware.com>
14085 M:      "VMware, Inc." <pv-drivers@vmware.com>
14086 L:      virtualization@lists.linux-foundation.org
14087 S:      Supported
14088 F:      Documentation/virt/paravirt_ops.rst
14089 F:      arch/*/include/asm/paravirt*.h
14090 F:      arch/*/kernel/paravirt*
14091 F:      include/linux/hypervisor.h
14092
14093 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14094 M:      Tim Waugh <tim@cyberelk.net>
14095 L:      linux-parport@lists.infradead.org (subscribers-only)
14096 S:      Maintained
14097 F:      Documentation/admin-guide/blockdev/paride.rst
14098 F:      drivers/block/paride/
14099
14100 PARISC ARCHITECTURE
14101 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14102 M:      Helge Deller <deller@gmx.de>
14103 L:      linux-parisc@vger.kernel.org
14104 S:      Maintained
14105 W:      https://parisc.wiki.kernel.org
14106 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14109 F:      Documentation/parisc/
14110 F:      arch/parisc/
14111 F:      drivers/char/agp/parisc-agp.c
14112 F:      drivers/input/misc/hp_sdc_rtc.c
14113 F:      drivers/input/serio/gscps2.c
14114 F:      drivers/input/serio/hp_sdc*
14115 F:      drivers/parisc/
14116 F:      drivers/parport/parport_gsc.*
14117 F:      drivers/tty/serial/8250/8250_gsc.c
14118 F:      drivers/video/console/sti*
14119 F:      drivers/video/fbdev/sti*
14120 F:      drivers/video/logo/logo_parisc*
14121 F:      include/linux/hp_sdc.h
14122
14123 PARMAN
14124 M:      Jiri Pirko <jiri@nvidia.com>
14125 L:      netdev@vger.kernel.org
14126 S:      Supported
14127 F:      include/linux/parman.h
14128 F:      lib/parman.c
14129 F:      lib/test_parman.c
14130
14131 PC ENGINES APU BOARD DRIVER
14132 M:      Enrico Weigelt, metux IT consult <info@metux.net>
14133 S:      Maintained
14134 F:      drivers/platform/x86/pcengines-apuv2.c
14135
14136 PC87360 HARDWARE MONITORING DRIVER
14137 M:      Jim Cromie <jim.cromie@gmail.com>
14138 L:      linux-hwmon@vger.kernel.org
14139 S:      Maintained
14140 F:      Documentation/hwmon/pc87360.rst
14141 F:      drivers/hwmon/pc87360.c
14142
14143 PC8736x GPIO DRIVER
14144 M:      Jim Cromie <jim.cromie@gmail.com>
14145 S:      Maintained
14146 F:      drivers/char/pc8736x_gpio.c
14147
14148 PC87427 HARDWARE MONITORING DRIVER
14149 M:      Jean Delvare <jdelvare@suse.com>
14150 L:      linux-hwmon@vger.kernel.org
14151 S:      Maintained
14152 F:      Documentation/hwmon/pc87427.rst
14153 F:      drivers/hwmon/pc87427.c
14154
14155 PCA9532 LED DRIVER
14156 M:      Riku Voipio <riku.voipio@iki.fi>
14157 S:      Maintained
14158 F:      drivers/leds/leds-pca9532.c
14159 F:      include/linux/leds-pca9532.h
14160
14161 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14162 M:      Guenter Roeck <linux@roeck-us.net>
14163 L:      linux-i2c@vger.kernel.org
14164 S:      Maintained
14165 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14166
14167 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14168 M:      Khalid Aziz <khalid@gonehiking.org>
14169 S:      Maintained
14170 F:      drivers/firmware/pcdp.*
14171
14172 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14173 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14174 M:      Pali Rohár <pali@kernel.org>
14175 L:      linux-pci@vger.kernel.org
14176 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14177 S:      Maintained
14178 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14179 F:      drivers/pci/controller/pci-aardvark.c
14180
14181 PCI DRIVER FOR ALTERA PCIE IP
14182 M:      Joyce Ooi <joyce.ooi@intel.com>
14183 L:      linux-pci@vger.kernel.org
14184 S:      Supported
14185 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
14186 F:      drivers/pci/controller/pcie-altera.c
14187
14188 PCI DRIVER FOR APPLIEDMICRO XGENE
14189 M:      Toan Le <toan@os.amperecomputing.com>
14190 L:      linux-pci@vger.kernel.org
14191 L:      linux-arm-kernel@lists.infradead.org
14192 S:      Maintained
14193 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
14194 F:      drivers/pci/controller/pci-xgene.c
14195
14196 PCI DRIVER FOR ARM VERSATILE PLATFORM
14197 M:      Rob Herring <robh@kernel.org>
14198 L:      linux-pci@vger.kernel.org
14199 L:      linux-arm-kernel@lists.infradead.org
14200 S:      Maintained
14201 F:      Documentation/devicetree/bindings/pci/versatile.yaml
14202 F:      drivers/pci/controller/pci-versatile.c
14203
14204 PCI DRIVER FOR ARMADA 8K
14205 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14206 L:      linux-pci@vger.kernel.org
14207 L:      linux-arm-kernel@lists.infradead.org
14208 S:      Maintained
14209 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
14210 F:      drivers/pci/controller/dwc/pcie-armada8k.c
14211
14212 PCI DRIVER FOR CADENCE PCIE IP
14213 M:      Tom Joseph <tjoseph@cadence.com>
14214 L:      linux-pci@vger.kernel.org
14215 S:      Maintained
14216 F:      Documentation/devicetree/bindings/pci/cdns,*
14217 F:      drivers/pci/controller/cadence/
14218
14219 PCI DRIVER FOR FREESCALE LAYERSCAPE
14220 M:      Minghuan Lian <minghuan.Lian@nxp.com>
14221 M:      Mingkai Hu <mingkai.hu@nxp.com>
14222 M:      Roy Zang <roy.zang@nxp.com>
14223 L:      linuxppc-dev@lists.ozlabs.org
14224 L:      linux-pci@vger.kernel.org
14225 L:      linux-arm-kernel@lists.infradead.org
14226 S:      Maintained
14227 F:      drivers/pci/controller/dwc/*layerscape*
14228
14229 PCI DRIVER FOR GENERIC OF HOSTS
14230 M:      Will Deacon <will@kernel.org>
14231 L:      linux-pci@vger.kernel.org
14232 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14233 S:      Maintained
14234 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14235 F:      drivers/pci/controller/pci-host-common.c
14236 F:      drivers/pci/controller/pci-host-generic.c
14237
14238 PCI DRIVER FOR IMX6
14239 M:      Richard Zhu <hongxing.zhu@nxp.com>
14240 M:      Lucas Stach <l.stach@pengutronix.de>
14241 L:      linux-pci@vger.kernel.org
14242 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14243 S:      Maintained
14244 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
14245 F:      drivers/pci/controller/dwc/*imx6*
14246
14247 PCI DRIVER FOR FU740
14248 M:      Paul Walmsley <paul.walmsley@sifive.com>
14249 M:      Greentime Hu <greentime.hu@sifive.com>
14250 L:      linux-pci@vger.kernel.org
14251 S:      Maintained
14252 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14253 F:      drivers/pci/controller/dwc/pcie-fu740.c
14254
14255 PCI DRIVER FOR INTEL IXP4XX
14256 M:      Linus Walleij <linus.walleij@linaro.org>
14257 S:      Maintained
14258 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
14259 F:      drivers/pci/controller/pci-ixp4xx.c
14260
14261 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14262 M:      Jonathan Derrick <jonathan.derrick@intel.com>
14263 L:      linux-pci@vger.kernel.org
14264 S:      Supported
14265 F:      drivers/pci/controller/vmd.c
14266
14267 PCI DRIVER FOR MICROSEMI SWITCHTEC
14268 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14269 M:      Logan Gunthorpe <logang@deltatee.com>
14270 L:      linux-pci@vger.kernel.org
14271 S:      Maintained
14272 F:      Documentation/ABI/testing/sysfs-class-switchtec
14273 F:      Documentation/driver-api/switchtec.rst
14274 F:      drivers/ntb/hw/mscc/
14275 F:      drivers/pci/switch/switchtec*
14276 F:      include/linux/switchtec.h
14277 F:      include/uapi/linux/switchtec_ioctl.h
14278
14279 PCI DRIVER FOR MOBIVEIL PCIE IP
14280 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14281 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14282 L:      linux-pci@vger.kernel.org
14283 S:      Supported
14284 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14285 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
14286
14287 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14288 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14289 L:      linux-pci@vger.kernel.org
14290 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14291 S:      Maintained
14292 F:      drivers/pci/controller/*mvebu*
14293
14294 PCI DRIVER FOR NVIDIA TEGRA
14295 M:      Thierry Reding <thierry.reding@gmail.com>
14296 L:      linux-tegra@vger.kernel.org
14297 L:      linux-pci@vger.kernel.org
14298 S:      Supported
14299 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14300 F:      drivers/pci/controller/pci-tegra.c
14301
14302 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14303 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14304 L:      linux-pci@vger.kernel.org
14305 L:      linux-arm-kernel@lists.infradead.org
14306 S:      Maintained
14307 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14308 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14309
14310 PCI DRIVER FOR RENESAS R-CAR
14311 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14312 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14313 L:      linux-pci@vger.kernel.org
14314 L:      linux-renesas-soc@vger.kernel.org
14315 S:      Maintained
14316 F:      Documentation/devicetree/bindings/pci/*rcar*
14317 F:      drivers/pci/controller/*rcar*
14318
14319 PCI DRIVER FOR SAMSUNG EXYNOS
14320 M:      Jingoo Han <jingoohan1@gmail.com>
14321 L:      linux-pci@vger.kernel.org
14322 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14323 L:      linux-samsung-soc@vger.kernel.org
14324 S:      Maintained
14325 F:      drivers/pci/controller/dwc/pci-exynos.c
14326
14327 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14328 M:      Jingoo Han <jingoohan1@gmail.com>
14329 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14330 L:      linux-pci@vger.kernel.org
14331 S:      Maintained
14332 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
14333 F:      drivers/pci/controller/dwc/*designware*
14334
14335 PCI DRIVER FOR TI DRA7XX/J721E
14336 M:      Kishon Vijay Abraham I <kishon@ti.com>
14337 L:      linux-omap@vger.kernel.org
14338 L:      linux-pci@vger.kernel.org
14339 L:      linux-arm-kernel@lists.infradead.org
14340 S:      Supported
14341 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
14342 F:      drivers/pci/controller/cadence/pci-j721e.c
14343 F:      drivers/pci/controller/dwc/pci-dra7xx.c
14344
14345 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14346 M:      Linus Walleij <linus.walleij@linaro.org>
14347 L:      linux-pci@vger.kernel.org
14348 S:      Maintained
14349 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14350 F:      drivers/pci/controller/pci-v3-semi.c
14351
14352 PCI ENDPOINT SUBSYSTEM
14353 M:      Kishon Vijay Abraham I <kishon@ti.com>
14354 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14355 R:      Krzysztof Wilczyński <kw@linux.com>
14356 L:      linux-pci@vger.kernel.org
14357 S:      Supported
14358 F:      Documentation/PCI/endpoint/*
14359 F:      Documentation/misc-devices/pci-endpoint-test.rst
14360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
14361 F:      drivers/misc/pci_endpoint_test.c
14362 F:      drivers/pci/endpoint/
14363 F:      tools/pci/
14364
14365 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14366 M:      Russell Currey <ruscur@russell.cc>
14367 M:      Oliver O'Halloran <oohall@gmail.com>
14368 L:      linuxppc-dev@lists.ozlabs.org
14369 S:      Supported
14370 F:      Documentation/PCI/pci-error-recovery.rst
14371 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
14372 F:      arch/powerpc/include/*/eeh*.h
14373 F:      arch/powerpc/kernel/eeh*.c
14374 F:      arch/powerpc/platforms/*/eeh*.c
14375 F:      drivers/pci/pcie/aer.c
14376 F:      drivers/pci/pcie/dpc.c
14377 F:      drivers/pci/pcie/err.c
14378
14379 PCI ERROR RECOVERY
14380 M:      Linas Vepstas <linasvepstas@gmail.com>
14381 L:      linux-pci@vger.kernel.org
14382 S:      Supported
14383 F:      Documentation/PCI/pci-error-recovery.rst
14384
14385 PCI MSI DRIVER FOR ALTERA MSI IP
14386 M:      Joyce Ooi <joyce.ooi@intel.com>
14387 L:      linux-pci@vger.kernel.org
14388 S:      Supported
14389 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14390 F:      drivers/pci/controller/pcie-altera-msi.c
14391
14392 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14393 M:      Toan Le <toan@os.amperecomputing.com>
14394 L:      linux-pci@vger.kernel.org
14395 L:      linux-arm-kernel@lists.infradead.org
14396 S:      Maintained
14397 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14398 F:      drivers/pci/controller/pci-xgene-msi.c
14399
14400 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14401 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14402 R:      Rob Herring <robh@kernel.org>
14403 R:      Krzysztof Wilczyński <kw@linux.com>
14404 L:      linux-pci@vger.kernel.org
14405 S:      Supported
14406 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
14408 F:      drivers/pci/controller/
14409
14410 PCI SUBSYSTEM
14411 M:      Bjorn Helgaas <bhelgaas@google.com>
14412 L:      linux-pci@vger.kernel.org
14413 S:      Supported
14414 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14416 F:      Documentation/PCI/
14417 F:      Documentation/devicetree/bindings/pci/
14418 F:      arch/x86/kernel/early-quirks.c
14419 F:      arch/x86/kernel/quirks.c
14420 F:      arch/x86/pci/
14421 F:      drivers/acpi/pci*
14422 F:      drivers/pci/
14423 F:      include/asm-generic/pci*
14424 F:      include/linux/of_pci.h
14425 F:      include/linux/pci*
14426 F:      include/uapi/linux/pci*
14427 F:      lib/pci*
14428
14429 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14430 M:      Jonathan Chocron <jonnyc@amazon.com>
14431 L:      linux-pci@vger.kernel.org
14432 S:      Maintained
14433 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
14434 F:      drivers/pci/controller/dwc/pcie-al.c
14435
14436 PCIE DRIVER FOR AMLOGIC MESON
14437 M:      Yue Wang <yue.wang@Amlogic.com>
14438 L:      linux-pci@vger.kernel.org
14439 L:      linux-amlogic@lists.infradead.org
14440 S:      Maintained
14441 F:      drivers/pci/controller/dwc/pci-meson.c
14442
14443 PCIE DRIVER FOR AXIS ARTPEC
14444 M:      Jesper Nilsson <jesper.nilsson@axis.com>
14445 L:      linux-arm-kernel@axis.com
14446 L:      linux-pci@vger.kernel.org
14447 S:      Maintained
14448 F:      Documentation/devicetree/bindings/pci/axis,artpec*
14449 F:      drivers/pci/controller/dwc/*artpec*
14450
14451 PCIE DRIVER FOR CAVIUM THUNDERX
14452 M:      Robert Richter <rric@kernel.org>
14453 L:      linux-pci@vger.kernel.org
14454 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14455 S:      Odd Fixes
14456 F:      drivers/pci/controller/pci-thunder-*
14457
14458 PCIE DRIVER FOR HISILICON
14459 M:      Zhou Wang <wangzhou1@hisilicon.com>
14460 L:      linux-pci@vger.kernel.org
14461 S:      Maintained
14462 F:      drivers/pci/controller/dwc/pcie-hisi.c
14463
14464 PCIE DRIVER FOR HISILICON KIRIN
14465 M:      Xiaowei Song <songxiaowei@hisilicon.com>
14466 M:      Binghui Wang <wangbinghui@hisilicon.com>
14467 L:      linux-pci@vger.kernel.org
14468 S:      Maintained
14469 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
14470 F:      drivers/pci/controller/dwc/pcie-kirin.c
14471
14472 PCIE DRIVER FOR HISILICON STB
14473 M:      Shawn Guo <shawn.guo@linaro.org>
14474 L:      linux-pci@vger.kernel.org
14475 S:      Maintained
14476 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14477 F:      drivers/pci/controller/dwc/pcie-histb.c
14478
14479 PCIE DRIVER FOR INTEL LGM GW SOC
14480 M:      Rahul Tanwar <rtanwar@maxlinear.com>
14481 L:      linux-pci@vger.kernel.org
14482 S:      Maintained
14483 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
14484 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
14485
14486 PCIE DRIVER FOR MEDIATEK
14487 M:      Ryder Lee <ryder.lee@mediatek.com>
14488 M:      Jianjun Wang <jianjun.wang@mediatek.com>
14489 L:      linux-pci@vger.kernel.org
14490 L:      linux-mediatek@lists.infradead.org
14491 S:      Supported
14492 F:      Documentation/devicetree/bindings/pci/mediatek*
14493 F:      drivers/pci/controller/*mediatek*
14494
14495 PCIE DRIVER FOR MICROCHIP
14496 M:      Daire McNamara <daire.mcnamara@microchip.com>
14497 L:      linux-pci@vger.kernel.org
14498 S:      Supported
14499 F:      Documentation/devicetree/bindings/pci/microchip*
14500 F:      drivers/pci/controller/*microchip*
14501
14502 PCIE DRIVER FOR QUALCOMM MSM
14503 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
14504 L:      linux-pci@vger.kernel.org
14505 L:      linux-arm-msm@vger.kernel.org
14506 S:      Maintained
14507 F:      drivers/pci/controller/dwc/*qcom*
14508
14509 PCIE DRIVER FOR ROCKCHIP
14510 M:      Shawn Lin <shawn.lin@rock-chips.com>
14511 L:      linux-pci@vger.kernel.org
14512 L:      linux-rockchip@lists.infradead.org
14513 S:      Maintained
14514 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
14515 F:      drivers/pci/controller/pcie-rockchip*
14516
14517 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14518 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14519 L:      linux-pci@vger.kernel.org
14520 S:      Maintained
14521 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
14522 F:      drivers/pci/controller/dwc/pcie-uniphier*
14523
14524 PCIE DRIVER FOR ST SPEAR13XX
14525 M:      Pratyush Anand <pratyush.anand@gmail.com>
14526 L:      linux-pci@vger.kernel.org
14527 S:      Maintained
14528 F:      drivers/pci/controller/dwc/*spear*
14529
14530 PCMCIA SUBSYSTEM
14531 M:      Dominik Brodowski <linux@dominikbrodowski.net>
14532 S:      Odd Fixes
14533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14534 F:      Documentation/pcmcia/
14535 F:      drivers/pcmcia/
14536 F:      include/pcmcia/
14537 F:      tools/pcmcia/
14538
14539 PCNET32 NETWORK DRIVER
14540 M:      Don Fry <pcnet32@frontier.com>
14541 L:      netdev@vger.kernel.org
14542 S:      Maintained
14543 F:      drivers/net/ethernet/amd/pcnet32.c
14544
14545 PCRYPT PARALLEL CRYPTO ENGINE
14546 M:      Steffen Klassert <steffen.klassert@secunet.com>
14547 L:      linux-crypto@vger.kernel.org
14548 S:      Maintained
14549 F:      crypto/pcrypt.c
14550 F:      include/crypto/pcrypt.h
14551
14552 PEAQ WMI HOTKEYS DRIVER
14553 M:      Hans de Goede <hdegoede@redhat.com>
14554 L:      platform-driver-x86@vger.kernel.org
14555 S:      Maintained
14556 F:      drivers/platform/x86/peaq-wmi.c
14557
14558 PENSANDO ETHERNET DRIVERS
14559 M:      Shannon Nelson <snelson@pensando.io>
14560 M:      drivers@pensando.io
14561 L:      netdev@vger.kernel.org
14562 S:      Supported
14563 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14564 F:      drivers/net/ethernet/pensando/
14565
14566 PER-CPU MEMORY ALLOCATOR
14567 M:      Dennis Zhou <dennis@kernel.org>
14568 M:      Tejun Heo <tj@kernel.org>
14569 M:      Christoph Lameter <cl@linux.com>
14570 L:      linux-mm@kvack.org
14571 S:      Maintained
14572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14573 F:      arch/*/include/asm/percpu.h
14574 F:      include/linux/percpu*.h
14575 F:      lib/percpu*.c
14576 F:      mm/percpu*.c
14577
14578 PER-TASK DELAY ACCOUNTING
14579 M:      Balbir Singh <bsingharora@gmail.com>
14580 S:      Maintained
14581 F:      include/linux/delayacct.h
14582 F:      kernel/delayacct.c
14583
14584 PERFORMANCE EVENTS SUBSYSTEM
14585 M:      Peter Zijlstra <peterz@infradead.org>
14586 M:      Ingo Molnar <mingo@redhat.com>
14587 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
14588 R:      Mark Rutland <mark.rutland@arm.com>
14589 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
14590 R:      Jiri Olsa <jolsa@redhat.com>
14591 R:      Namhyung Kim <namhyung@kernel.org>
14592 L:      linux-perf-users@vger.kernel.org
14593 L:      linux-kernel@vger.kernel.org
14594 S:      Supported
14595 W:      https://perf.wiki.kernel.org/
14596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14597 F:      arch/*/events/*
14598 F:      arch/*/events/*/*
14599 F:      arch/*/include/asm/perf_event.h
14600 F:      arch/*/kernel/*/*/perf_event*.c
14601 F:      arch/*/kernel/*/perf_event*.c
14602 F:      arch/*/kernel/perf_callchain.c
14603 F:      arch/*/kernel/perf_event*.c
14604 F:      include/linux/perf_event.h
14605 F:      include/uapi/linux/perf_event.h
14606 F:      kernel/events/*
14607 F:      tools/lib/perf/
14608 F:      tools/perf/
14609
14610 PERFORMANCE EVENTS TOOLING ARM64
14611 R:      John Garry <john.garry@huawei.com>
14612 R:      Will Deacon <will@kernel.org>
14613 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
14614 R:      Leo Yan <leo.yan@linaro.org>
14615 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14616 S:      Supported
14617 F:      tools/build/feature/test-libopencsd.c
14618 F:      tools/perf/arch/arm*/
14619 F:      tools/perf/pmu-events/arch/arm64/
14620 F:      tools/perf/util/arm-spe*
14621 F:      tools/perf/util/cs-etm*
14622
14623 PERSONALITY HANDLING
14624 M:      Christoph Hellwig <hch@infradead.org>
14625 L:      linux-abi-devel@lists.sourceforge.net
14626 S:      Maintained
14627 F:      include/linux/personality.h
14628 F:      include/uapi/linux/personality.h
14629
14630 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14631 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
14632 L:      linux-input@vger.kernel.org
14633 S:      Maintained
14634 F:      Documentation/input/devices/pxrc.rst
14635 F:      drivers/input/joystick/pxrc.c
14636
14637 PHONET PROTOCOL
14638 M:      Remi Denis-Courmont <courmisch@gmail.com>
14639 S:      Supported
14640 F:      Documentation/networking/phonet.rst
14641 F:      include/linux/phonet.h
14642 F:      include/net/phonet/
14643 F:      include/uapi/linux/phonet.h
14644 F:      net/phonet/
14645
14646 PHRAM MTD DRIVER
14647 M:      Joern Engel <joern@lazybastard.org>
14648 L:      linux-mtd@lists.infradead.org
14649 S:      Maintained
14650 F:      drivers/mtd/devices/phram.c
14651
14652 PICOLCD HID DRIVER
14653 M:      Bruno Prémont <bonbons@linux-vserver.org>
14654 L:      linux-input@vger.kernel.org
14655 S:      Maintained
14656 F:      drivers/hid/hid-picolcd*
14657
14658 PIDFD API
14659 M:      Christian Brauner <christian@brauner.io>
14660 L:      linux-kernel@vger.kernel.org
14661 S:      Maintained
14662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14663 F:      samples/pidfd/
14664 F:      tools/testing/selftests/clone3/
14665 F:      tools/testing/selftests/pid_namespace/
14666 F:      tools/testing/selftests/pidfd/
14667 K:      (?i)pidfd
14668 K:      (?i)clone3
14669 K:      \b(clone_args|kernel_clone_args)\b
14670
14671 PIN CONTROL SUBSYSTEM
14672 M:      Linus Walleij <linus.walleij@linaro.org>
14673 L:      linux-gpio@vger.kernel.org
14674 S:      Maintained
14675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14676 F:      Documentation/devicetree/bindings/pinctrl/
14677 F:      Documentation/driver-api/pin-control.rst
14678 F:      drivers/pinctrl/
14679 F:      include/linux/pinctrl/
14680
14681 PIN CONTROLLER - FREESCALE
14682 M:      Dong Aisheng <aisheng.dong@nxp.com>
14683 M:      Fabio Estevam <festevam@gmail.com>
14684 M:      Shawn Guo <shawnguo@kernel.org>
14685 M:      Stefan Agner <stefan@agner.ch>
14686 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
14687 L:      linux-gpio@vger.kernel.org
14688 S:      Maintained
14689 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
14690 F:      drivers/pinctrl/freescale/
14691
14692 PIN CONTROLLER - INTEL
14693 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
14694 M:      Andy Shevchenko <andy@kernel.org>
14695 S:      Maintained
14696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14697 F:      drivers/pinctrl/intel/
14698
14699 PIN CONTROLLER - MEDIATEK
14700 M:      Sean Wang <sean.wang@kernel.org>
14701 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14702 S:      Maintained
14703 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
14704 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
14705 F:      drivers/pinctrl/mediatek/
14706
14707 PIN CONTROLLER - MICROCHIP AT91
14708 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14709 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14710 L:      linux-gpio@vger.kernel.org
14711 S:      Supported
14712 F:      drivers/gpio/gpio-sama5d2-piobu.c
14713 F:      drivers/pinctrl/pinctrl-at91*
14714
14715 PIN CONTROLLER - QUALCOMM
14716 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14717 L:      linux-arm-msm@vger.kernel.org
14718 S:      Maintained
14719 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14720 F:      drivers/pinctrl/qcom/
14721
14722 PIN CONTROLLER - RENESAS
14723 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14724 L:      linux-renesas-soc@vger.kernel.org
14725 S:      Supported
14726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14727 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
14728 F:      drivers/pinctrl/renesas/
14729
14730 PIN CONTROLLER - SAMSUNG
14731 M:      Tomasz Figa <tomasz.figa@gmail.com>
14732 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
14733 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14734 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14735 L:      linux-samsung-soc@vger.kernel.org
14736 S:      Maintained
14737 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
14738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14739 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14740 F:      drivers/pinctrl/samsung/
14741 F:      include/dt-bindings/pinctrl/samsung.h
14742
14743 PIN CONTROLLER - SINGLE
14744 M:      Tony Lindgren <tony@atomide.com>
14745 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
14746 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14747 L:      linux-omap@vger.kernel.org
14748 S:      Maintained
14749 F:      drivers/pinctrl/pinctrl-single.c
14750
14751 PIN CONTROLLER - ST SPEAR
14752 M:      Viresh Kumar <vireshk@kernel.org>
14753 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14754 S:      Maintained
14755 W:      http://www.st.com/spear
14756 F:      drivers/pinctrl/spear/
14757
14758 PISTACHIO SOC SUPPORT
14759 M:      James Hartley <james.hartley@sondrel.com>
14760 L:      linux-mips@vger.kernel.org
14761 S:      Odd Fixes
14762 F:      arch/mips/boot/dts/img/pistachio*
14763 F:      arch/mips/configs/pistachio*_defconfig
14764 F:      arch/mips/pistachio/
14765
14766 PKTCDVD DRIVER
14767 M:      linux-block@vger.kernel.org
14768 S:      Orphan
14769 F:      drivers/block/pktcdvd.c
14770 F:      include/linux/pktcdvd.h
14771 F:      include/uapi/linux/pktcdvd.h
14772
14773 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14774 M:      Tomasz Duszynski <tduszyns@gmail.com>
14775 S:      Maintained
14776 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14777 F:      drivers/iio/chemical/pms7003.c
14778
14779 PLDMFW LIBRARY
14780 M:      Jacob Keller <jacob.e.keller@intel.com>
14781 S:      Maintained
14782 F:      Documentation/driver-api/pldmfw/
14783 F:      include/linux/pldmfw.h
14784 F:      lib/pldmfw/
14785
14786 PLX DMA DRIVER
14787 M:      Logan Gunthorpe <logang@deltatee.com>
14788 S:      Maintained
14789 F:      drivers/dma/plx_dma.c
14790
14791 PM6764TR DRIVER
14792 M:      Charles Hsu     <hsu.yungteng@gmail.com>
14793 L:      linux-hwmon@vger.kernel.org
14794 S:      Maintained
14795 F:      Documentation/hwmon/pm6764tr.rst
14796 F:      drivers/hwmon/pmbus/pm6764tr.c
14797
14798 PM-GRAPH UTILITY
14799 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14800 L:      linux-pm@vger.kernel.org
14801 S:      Supported
14802 W:      https://01.org/pm-graph
14803 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14804 T:      git git://github.com/intel/pm-graph
14805 F:      tools/power/pm-graph
14806
14807 PMBUS HARDWARE MONITORING DRIVERS
14808 M:      Guenter Roeck <linux@roeck-us.net>
14809 L:      linux-hwmon@vger.kernel.org
14810 S:      Maintained
14811 W:      http://hwmon.wiki.kernel.org/
14812 W:      http://www.roeck-us.net/linux/drivers/
14813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14814 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14815 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
14816 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
14817 F:      Documentation/hwmon/adm1275.rst
14818 F:      Documentation/hwmon/ibm-cffps.rst
14819 F:      Documentation/hwmon/ir35221.rst
14820 F:      Documentation/hwmon/lm25066.rst
14821 F:      Documentation/hwmon/ltc2978.rst
14822 F:      Documentation/hwmon/ltc3815.rst
14823 F:      Documentation/hwmon/max16064.rst
14824 F:      Documentation/hwmon/max20751.rst
14825 F:      Documentation/hwmon/max31785.rst
14826 F:      Documentation/hwmon/max34440.rst
14827 F:      Documentation/hwmon/max8688.rst
14828 F:      Documentation/hwmon/pmbus-core.rst
14829 F:      Documentation/hwmon/pmbus.rst
14830 F:      Documentation/hwmon/tps40422.rst
14831 F:      Documentation/hwmon/ucd9000.rst
14832 F:      Documentation/hwmon/ucd9200.rst
14833 F:      Documentation/hwmon/zl6100.rst
14834 F:      drivers/hwmon/pmbus/
14835 F:      include/linux/pmbus.h
14836
14837 PMC SIERRA MaxRAID DRIVER
14838 L:      linux-scsi@vger.kernel.org
14839 S:      Orphan
14840 W:      http://www.pmc-sierra.com/
14841 F:      drivers/scsi/pmcraid.*
14842
14843 PMC SIERRA PM8001 DRIVER
14844 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14845 L:      linux-scsi@vger.kernel.org
14846 S:      Supported
14847 F:      drivers/scsi/pm8001/
14848
14849 PNI RM3100 IIO DRIVER
14850 M:      Song Qiang <songqiang1304521@gmail.com>
14851 L:      linux-iio@vger.kernel.org
14852 S:      Maintained
14853 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
14854 F:      drivers/iio/magnetometer/rm3100*
14855
14856 PNP SUPPORT
14857 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
14858 L:      linux-acpi@vger.kernel.org
14859 S:      Maintained
14860 F:      drivers/pnp/
14861 F:      include/linux/pnp.h
14862
14863 POSIX CLOCKS and TIMERS
14864 M:      Thomas Gleixner <tglx@linutronix.de>
14865 L:      linux-kernel@vger.kernel.org
14866 S:      Maintained
14867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
14868 F:      fs/timerfd.c
14869 F:      include/linux/time_namespace.h
14870 F:      include/linux/timer*
14871 F:      kernel/time/*timer*
14872 F:      kernel/time/namespace.c
14873
14874 POWER MANAGEMENT CORE
14875 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
14876 L:      linux-pm@vger.kernel.org
14877 S:      Supported
14878 B:      https://bugzilla.kernel.org
14879 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14880 F:      drivers/base/power/
14881 F:      drivers/powercap/
14882 F:      include/linux/intel_rapl.h
14883 F:      include/linux/pm.h
14884 F:      include/linux/pm_*
14885 F:      include/linux/powercap.h
14886 F:      kernel/configs/nopm.config
14887
14888 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
14889 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
14890 L:      linux-pm@vger.kernel.org
14891 S:      Supported
14892 B:      https://bugzilla.kernel.org
14893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14894 F:      drivers/powercap/dtpm*
14895 F:      include/linux/dtpm.h
14896
14897 POWER STATE COORDINATION INTERFACE (PSCI)
14898 M:      Mark Rutland <mark.rutland@arm.com>
14899 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14900 L:      linux-arm-kernel@lists.infradead.org
14901 S:      Maintained
14902 F:      drivers/firmware/psci/
14903 F:      include/linux/psci.h
14904 F:      include/uapi/linux/psci.h
14905
14906 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
14907 M:      Sebastian Reichel <sre@kernel.org>
14908 L:      linux-pm@vger.kernel.org
14909 S:      Maintained
14910 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
14911 F:      Documentation/ABI/testing/sysfs-class-power
14912 F:      Documentation/devicetree/bindings/power/supply/
14913 F:      drivers/power/supply/
14914 F:      include/linux/power/
14915 F:      include/linux/power_supply.h
14916
14917 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
14918 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
14919 L:      linuxppc-dev@lists.ozlabs.org
14920 S:      Maintained
14921 F:      drivers/char/powernv-op-panel.c
14922
14923 PPP OVER ATM (RFC 2364)
14924 M:      Mitchell Blank Jr <mitch@sfgoth.com>
14925 S:      Maintained
14926 F:      include/uapi/linux/atmppp.h
14927 F:      net/atm/pppoatm.c
14928
14929 PPP OVER ETHERNET
14930 M:      Michal Ostrowski <mostrows@earthlink.net>
14931 S:      Maintained
14932 F:      drivers/net/ppp/pppoe.c
14933 F:      drivers/net/ppp/pppox.c
14934
14935 PPP OVER L2TP
14936 M:      James Chapman <jchapman@katalix.com>
14937 S:      Maintained
14938 F:      include/linux/if_pppol2tp.h
14939 F:      include/uapi/linux/if_pppol2tp.h
14940 F:      net/l2tp/l2tp_ppp.c
14941
14942 PPP PROTOCOL DRIVERS AND COMPRESSORS
14943 M:      Paul Mackerras <paulus@samba.org>
14944 L:      linux-ppp@vger.kernel.org
14945 S:      Maintained
14946 F:      drivers/net/ppp/ppp_*
14947
14948 PPS SUPPORT
14949 M:      Rodolfo Giometti <giometti@enneenne.com>
14950 L:      linuxpps@ml.enneenne.com (subscribers-only)
14951 S:      Maintained
14952 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
14953 F:      Documentation/ABI/testing/sysfs-pps
14954 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
14955 F:      Documentation/driver-api/pps.rst
14956 F:      drivers/pps/
14957 F:      include/linux/pps*.h
14958 F:      include/uapi/linux/pps.h
14959
14960 PPTP DRIVER
14961 M:      Dmitry Kozlov <xeb@mail.ru>
14962 L:      netdev@vger.kernel.org
14963 S:      Maintained
14964 W:      http://sourceforge.net/projects/accel-pptp
14965 F:      drivers/net/ppp/pptp.c
14966
14967 PRESSURE STALL INFORMATION (PSI)
14968 M:      Johannes Weiner <hannes@cmpxchg.org>
14969 S:      Maintained
14970 F:      include/linux/psi*
14971 F:      kernel/sched/psi.c
14972
14973 PRINTK
14974 M:      Petr Mladek <pmladek@suse.com>
14975 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
14976 R:      Steven Rostedt <rostedt@goodmis.org>
14977 R:      John Ogness <john.ogness@linutronix.de>
14978 S:      Maintained
14979 F:      include/linux/printk.h
14980 F:      kernel/printk/
14981
14982 PROC FILESYSTEM
14983 L:      linux-kernel@vger.kernel.org
14984 L:      linux-fsdevel@vger.kernel.org
14985 S:      Maintained
14986 F:      Documentation/filesystems/proc.rst
14987 F:      fs/proc/
14988 F:      include/linux/proc_fs.h
14989 F:      tools/testing/selftests/proc/
14990
14991 PROC SYSCTL
14992 M:      Luis Chamberlain <mcgrof@kernel.org>
14993 M:      Kees Cook <keescook@chromium.org>
14994 M:      Iurii Zaikin <yzaikin@google.com>
14995 L:      linux-kernel@vger.kernel.org
14996 L:      linux-fsdevel@vger.kernel.org
14997 S:      Maintained
14998 F:      fs/proc/proc_sysctl.c
14999 F:      include/linux/sysctl.h
15000 F:      kernel/sysctl-test.c
15001 F:      kernel/sysctl.c
15002 F:      tools/testing/selftests/sysctl/
15003
15004 PS3 NETWORK SUPPORT
15005 M:      Geoff Levand <geoff@infradead.org>
15006 L:      netdev@vger.kernel.org
15007 L:      linuxppc-dev@lists.ozlabs.org
15008 S:      Maintained
15009 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
15010
15011 PS3 PLATFORM SUPPORT
15012 M:      Geoff Levand <geoff@infradead.org>
15013 L:      linuxppc-dev@lists.ozlabs.org
15014 S:      Maintained
15015 F:      arch/powerpc/boot/ps3*
15016 F:      arch/powerpc/include/asm/lv1call.h
15017 F:      arch/powerpc/include/asm/ps3*.h
15018 F:      arch/powerpc/platforms/ps3/
15019 F:      drivers/*/ps3*
15020 F:      drivers/ps3/
15021 F:      drivers/rtc/rtc-ps3.c
15022 F:      drivers/usb/host/*ps3.c
15023 F:      sound/ppc/snd_ps3*
15024
15025 PS3VRAM DRIVER
15026 M:      Jim Paris <jim@jtan.com>
15027 M:      Geoff Levand <geoff@infradead.org>
15028 L:      linuxppc-dev@lists.ozlabs.org
15029 S:      Maintained
15030 F:      drivers/block/ps3vram.c
15031
15032 PSAMPLE PACKET SAMPLING SUPPORT
15033 M:      Yotam Gigi <yotam.gi@gmail.com>
15034 S:      Maintained
15035 F:      include/net/psample.h
15036 F:      include/uapi/linux/psample.h
15037 F:      net/psample
15038
15039 PSTORE FILESYSTEM
15040 M:      Kees Cook <keescook@chromium.org>
15041 M:      Anton Vorontsov <anton@enomsg.org>
15042 M:      Colin Cross <ccross@android.com>
15043 M:      Tony Luck <tony.luck@intel.com>
15044 S:      Maintained
15045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15046 F:      Documentation/admin-guide/ramoops.rst
15047 F:      Documentation/admin-guide/pstore-blk.rst
15048 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
15049 F:      drivers/acpi/apei/erst.c
15050 F:      drivers/firmware/efi/efi-pstore.c
15051 F:      fs/pstore/
15052 F:      include/linux/pstore*
15053 K:      \b(pstore|ramoops)
15054
15055 PTP HARDWARE CLOCK SUPPORT
15056 M:      Richard Cochran <richardcochran@gmail.com>
15057 L:      netdev@vger.kernel.org
15058 S:      Maintained
15059 W:      http://linuxptp.sourceforge.net/
15060 F:      Documentation/ABI/testing/sysfs-ptp
15061 F:      Documentation/driver-api/ptp.rst
15062 F:      drivers/net/phy/dp83640*
15063 F:      drivers/ptp/*
15064 F:      include/linux/ptp_cl*
15065
15066 PTP VIRTUAL CLOCK SUPPORT
15067 M:      Yangbo Lu <yangbo.lu@nxp.com>
15068 L:      netdev@vger.kernel.org
15069 S:      Maintained
15070 F:      drivers/ptp/ptp_vclock.c
15071 F:      net/ethtool/phc_vclocks.c
15072
15073 PTRACE SUPPORT
15074 M:      Oleg Nesterov <oleg@redhat.com>
15075 S:      Maintained
15076 F:      arch/*/*/ptrace*.c
15077 F:      arch/*/include/asm/ptrace*.h
15078 F:      arch/*/ptrace*.c
15079 F:      include/asm-generic/syscall.h
15080 F:      include/linux/ptrace.h
15081 F:      include/linux/regset.h
15082 F:      include/linux/tracehook.h
15083 F:      include/uapi/linux/ptrace.h
15084 F:      include/uapi/linux/ptrace.h
15085 F:      kernel/ptrace.c
15086
15087 PULSE8-CEC DRIVER
15088 M:      Hans Verkuil <hverkuil@xs4all.nl>
15089 L:      linux-media@vger.kernel.org
15090 S:      Maintained
15091 T:      git git://linuxtv.org/media_tree.git
15092 F:      Documentation/admin-guide/media/pulse8-cec.rst
15093 F:      drivers/media/cec/usb/pulse8/
15094
15095 PVRUSB2 VIDEO4LINUX DRIVER
15096 M:      Mike Isely <isely@pobox.com>
15097 L:      pvrusb2@isely.net       (subscribers-only)
15098 L:      linux-media@vger.kernel.org
15099 S:      Maintained
15100 W:      http://www.isely.net/pvrusb2/
15101 T:      git git://linuxtv.org/media_tree.git
15102 F:      Documentation/driver-api/media/drivers/pvrusb2*
15103 F:      drivers/media/usb/pvrusb2/
15104
15105 PWC WEBCAM DRIVER
15106 M:      Hans Verkuil <hverkuil@xs4all.nl>
15107 L:      linux-media@vger.kernel.org
15108 S:      Odd Fixes
15109 T:      git git://linuxtv.org/media_tree.git
15110 F:      drivers/media/usb/pwc/*
15111 F:      include/trace/events/pwc.h
15112
15113 PWM FAN DRIVER
15114 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15115 L:      linux-hwmon@vger.kernel.org
15116 S:      Supported
15117 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15118 F:      Documentation/hwmon/pwm-fan.rst
15119 F:      drivers/hwmon/pwm-fan.c
15120
15121 PWM IR Transmitter
15122 M:      Sean Young <sean@mess.org>
15123 L:      linux-media@vger.kernel.org
15124 S:      Maintained
15125 F:      drivers/media/rc/pwm-ir-tx.c
15126
15127 PWM SUBSYSTEM
15128 M:      Thierry Reding <thierry.reding@gmail.com>
15129 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15130 M:      Lee Jones <lee.jones@linaro.org>
15131 L:      linux-pwm@vger.kernel.org
15132 S:      Maintained
15133 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
15134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15135 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15136 F:      Documentation/devicetree/bindings/pwm/
15137 F:      Documentation/driver-api/pwm.rst
15138 F:      drivers/gpio/gpio-mvebu.c
15139 F:      drivers/pwm/
15140 F:      drivers/video/backlight/pwm_bl.c
15141 F:      include/linux/pwm.h
15142 F:      include/linux/pwm_backlight.h
15143 K:      pwm_(config|apply_state|ops)
15144
15145 PXA GPIO DRIVER
15146 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15147 L:      linux-gpio@vger.kernel.org
15148 S:      Maintained
15149 F:      drivers/gpio/gpio-pxa.c
15150
15151 PXA MMCI DRIVER
15152 S:      Orphan
15153
15154 PXA RTC DRIVER
15155 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15156 L:      linux-rtc@vger.kernel.org
15157 S:      Maintained
15158
15159 PXA2xx/PXA3xx SUPPORT
15160 M:      Daniel Mack <daniel@zonque.org>
15161 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
15162 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15163 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15164 S:      Maintained
15165 T:      git git://github.com/hzhuang1/linux.git
15166 T:      git git://github.com/rjarzmik/linux.git
15167 F:      arch/arm/boot/dts/pxa*
15168 F:      arch/arm/mach-pxa/
15169 F:      drivers/dma/pxa*
15170 F:      drivers/pcmcia/pxa2xx*
15171 F:      drivers/pinctrl/pxa/
15172 F:      drivers/spi/spi-pxa2xx*
15173 F:      drivers/usb/gadget/udc/pxa2*
15174 F:      include/sound/pxa2xx-lib.h
15175 F:      sound/arm/pxa*
15176 F:      sound/soc/pxa/
15177
15178 QAT DRIVER
15179 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15180 L:      qat-linux@intel.com
15181 S:      Supported
15182 F:      drivers/crypto/qat/
15183
15184 QCOM AUDIO (ASoC) DRIVERS
15185 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15186 M:      Banajit Goswami <bgoswami@codeaurora.org>
15187 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15188 S:      Supported
15189 F:      sound/soc/codecs/lpass-va-macro.c
15190 F:      sound/soc/codecs/lpass-wsa-macro.*
15191 F:      sound/soc/codecs/msm8916-wcd-analog.c
15192 F:      sound/soc/codecs/msm8916-wcd-digital.c
15193 F:      sound/soc/codecs/wcd9335.*
15194 F:      sound/soc/codecs/wcd934x.c
15195 F:      sound/soc/codecs/wcd-clsh-v2.*
15196 F:      sound/soc/codecs/wsa881x.c
15197 F:      sound/soc/qcom/
15198
15199 QCOM IPA DRIVER
15200 M:      Alex Elder <elder@kernel.org>
15201 L:      netdev@vger.kernel.org
15202 S:      Supported
15203 F:      drivers/net/ipa/
15204
15205 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15206 M:      Gabriel Somlo <somlo@cmu.edu>
15207 M:      "Michael S. Tsirkin" <mst@redhat.com>
15208 L:      qemu-devel@nongnu.org
15209 S:      Maintained
15210 F:      drivers/firmware/qemu_fw_cfg.c
15211 F:      include/uapi/linux/qemu_fw_cfg.h
15212
15213 QIB DRIVER
15214 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15215 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15216 L:      linux-rdma@vger.kernel.org
15217 S:      Supported
15218 F:      drivers/infiniband/hw/qib/
15219
15220 QLOGIC QL41xxx FCOE DRIVER
15221 M:      Saurav Kashyap <skashyap@marvell.com>
15222 M:      Javed Hasan <jhasan@marvell.com>
15223 M:      GR-QLogic-Storage-Upstream@marvell.com
15224 L:      linux-scsi@vger.kernel.org
15225 S:      Supported
15226 F:      drivers/scsi/qedf/
15227
15228 QLOGIC QL41xxx ISCSI DRIVER
15229 M:      Nilesh Javali <njavali@marvell.com>
15230 M:      Manish Rangankar <mrangankar@marvell.com>
15231 M:      GR-QLogic-Storage-Upstream@marvell.com
15232 L:      linux-scsi@vger.kernel.org
15233 S:      Supported
15234 F:      drivers/scsi/qedi/
15235
15236 QLOGIC QL4xxx ETHERNET DRIVER
15237 M:      Ariel Elior <aelior@marvell.com>
15238 M:      GR-everest-linux-l2@marvell.com
15239 L:      netdev@vger.kernel.org
15240 S:      Supported
15241 F:      drivers/net/ethernet/qlogic/qed/
15242 F:      drivers/net/ethernet/qlogic/qede/
15243 F:      include/linux/qed/
15244
15245 QLOGIC QL4xxx RDMA DRIVER
15246 M:      Michal Kalderon <mkalderon@marvell.com>
15247 M:      Ariel Elior <aelior@marvell.com>
15248 L:      linux-rdma@vger.kernel.org
15249 S:      Supported
15250 F:      drivers/infiniband/hw/qedr/
15251 F:      include/uapi/rdma/qedr-abi.h
15252
15253 QLOGIC QLA1280 SCSI DRIVER
15254 M:      Michael Reed <mdr@sgi.com>
15255 L:      linux-scsi@vger.kernel.org
15256 S:      Maintained
15257 F:      drivers/scsi/qla1280.[ch]
15258
15259 QLOGIC QLA2XXX FC-SCSI DRIVER
15260 M:      Nilesh Javali <njavali@marvell.com>
15261 M:      GR-QLogic-Storage-Upstream@marvell.com
15262 L:      linux-scsi@vger.kernel.org
15263 S:      Supported
15264 F:      drivers/scsi/qla2xxx/
15265
15266 QLOGIC QLA3XXX NETWORK DRIVER
15267 M:      GR-Linux-NIC-Dev@marvell.com
15268 L:      netdev@vger.kernel.org
15269 S:      Supported
15270 F:      drivers/net/ethernet/qlogic/qla3xxx.*
15271
15272 QLOGIC QLA4XXX iSCSI DRIVER
15273 M:      Nilesh Javali <njavali@marvell.com>
15274 M:      Manish Rangankar <mrangankar@marvell.com>
15275 M:      GR-QLogic-Storage-Upstream@marvell.com
15276 L:      linux-scsi@vger.kernel.org
15277 S:      Supported
15278 F:      drivers/scsi/qla4xxx/
15279
15280 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15281 M:      Shahed Shaikh <shshaikh@marvell.com>
15282 M:      Manish Chopra <manishc@marvell.com>
15283 M:      GR-Linux-NIC-Dev@marvell.com
15284 L:      netdev@vger.kernel.org
15285 S:      Supported
15286 F:      drivers/net/ethernet/qlogic/qlcnic/
15287
15288 QLOGIC QLGE 10Gb ETHERNET DRIVER
15289 M:      Manish Chopra <manishc@marvell.com>
15290 M:      GR-Linux-NIC-Dev@marvell.com
15291 M:      Coiby Xu <coiby.xu@gmail.com>
15292 L:      netdev@vger.kernel.org
15293 S:      Supported
15294 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
15295 F:      drivers/staging/qlge/
15296
15297 QM1D1B0004 MEDIA DRIVER
15298 M:      Akihiro Tsukada <tskd08@gmail.com>
15299 L:      linux-media@vger.kernel.org
15300 S:      Odd Fixes
15301 F:      drivers/media/tuners/qm1d1b0004*
15302
15303 QM1D1C0042 MEDIA DRIVER
15304 M:      Akihiro Tsukada <tskd08@gmail.com>
15305 L:      linux-media@vger.kernel.org
15306 S:      Odd Fixes
15307 F:      drivers/media/tuners/qm1d1c0042*
15308
15309 QNX4 FILESYSTEM
15310 M:      Anders Larsen <al@alarsen.net>
15311 S:      Maintained
15312 W:      http://www.alarsen.net/linux/qnx4fs/
15313 F:      fs/qnx4/
15314 F:      include/uapi/linux/qnx4_fs.h
15315 F:      include/uapi/linux/qnxtypes.h
15316
15317 QORIQ DPAA2 FSL-MC BUS DRIVER
15318 M:      Stuart Yoder <stuyoder@gmail.com>
15319 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
15320 L:      linux-kernel@vger.kernel.org
15321 S:      Maintained
15322 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
15323 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15324 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15325 F:      drivers/bus/fsl-mc/
15326 F:      include/uapi/linux/fsl_mc.h
15327
15328 QT1010 MEDIA DRIVER
15329 M:      Antti Palosaari <crope@iki.fi>
15330 L:      linux-media@vger.kernel.org
15331 S:      Maintained
15332 W:      https://linuxtv.org
15333 W:      http://palosaari.fi/linux/
15334 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15335 T:      git git://linuxtv.org/anttip/media_tree.git
15336 F:      drivers/media/tuners/qt1010*
15337
15338 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15339 M:      Kalle Valo <kvalo@codeaurora.org>
15340 L:      ath10k@lists.infradead.org
15341 S:      Supported
15342 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15344 F:      drivers/net/wireless/ath/ath10k/
15345
15346 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15347 M:      Kalle Valo <kvalo@codeaurora.org>
15348 L:      ath11k@lists.infradead.org
15349 S:      Supported
15350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15351 F:      drivers/net/wireless/ath/ath11k/
15352
15353 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15354 M:      ath9k-devel@qca.qualcomm.com
15355 L:      linux-wireless@vger.kernel.org
15356 S:      Supported
15357 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15358 F:      drivers/net/wireless/ath/ath9k/
15359
15360 QUALCOMM CAMERA SUBSYSTEM DRIVER
15361 M:      Robert Foss <robert.foss@linaro.org>
15362 M:      Todor Tomov <todor.too@gmail.com>
15363 L:      linux-media@vger.kernel.org
15364 S:      Maintained
15365 F:      Documentation/admin-guide/media/qcom_camss.rst
15366 F:      Documentation/devicetree/bindings/media/*camss*
15367 F:      drivers/media/platform/qcom/camss/
15368
15369 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15370 M:      Niklas Cassel <nks@flawful.org>
15371 L:      linux-pm@vger.kernel.org
15372 L:      linux-arm-msm@vger.kernel.org
15373 S:      Maintained
15374 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15375 F:      drivers/soc/qcom/cpr.c
15376
15377 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15378 M:      Ilia Lin <ilia.lin@kernel.org>
15379 L:      linux-pm@vger.kernel.org
15380 S:      Maintained
15381 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15382 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
15383
15384 QUALCOMM CRYPTO DRIVERS
15385 M:      Thara Gopinath <thara.gopinath@linaro.org>
15386 L:      linux-crypto@vger.kernel.org
15387 L:      linux-arm-msm@vger.kernel.org
15388 S:      Maintained
15389 F:      drivers/crypto/qce/
15390
15391 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15392 M:      Timur Tabi <timur@kernel.org>
15393 L:      netdev@vger.kernel.org
15394 S:      Maintained
15395 F:      drivers/net/ethernet/qualcomm/emac/
15396
15397 QUALCOMM ETHQOS ETHERNET DRIVER
15398 M:      Vinod Koul <vkoul@kernel.org>
15399 L:      netdev@vger.kernel.org
15400 S:      Maintained
15401 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
15402 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15403
15404 QUALCOMM GENERIC INTERFACE I2C DRIVER
15405 M:      Akash Asthana <akashast@codeaurora.org>
15406 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
15407 L:      linux-i2c@vger.kernel.org
15408 L:      linux-arm-msm@vger.kernel.org
15409 S:      Supported
15410 F:      drivers/i2c/busses/i2c-qcom-geni.c
15411
15412 QUALCOMM HEXAGON ARCHITECTURE
15413 M:      Brian Cain <bcain@codeaurora.org>
15414 L:      linux-hexagon@vger.kernel.org
15415 S:      Supported
15416 F:      arch/hexagon/
15417
15418 QUALCOMM HIDMA DRIVER
15419 M:      Sinan Kaya <okaya@kernel.org>
15420 L:      linux-arm-kernel@lists.infradead.org
15421 L:      linux-arm-msm@vger.kernel.org
15422 L:      dmaengine@vger.kernel.org
15423 S:      Supported
15424 F:      drivers/dma/qcom/hidma*
15425
15426 QUALCOMM I2C CCI DRIVER
15427 M:      Loic Poulain <loic.poulain@linaro.org>
15428 M:      Robert Foss <robert.foss@linaro.org>
15429 L:      linux-i2c@vger.kernel.org
15430 L:      linux-arm-msm@vger.kernel.org
15431 S:      Maintained
15432 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15433 F:      drivers/i2c/busses/i2c-qcom-cci.c
15434
15435 QUALCOMM IOMMU
15436 M:      Rob Clark <robdclark@gmail.com>
15437 L:      iommu@lists.linux-foundation.org
15438 L:      linux-arm-msm@vger.kernel.org
15439 S:      Maintained
15440 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
15441
15442 QUALCOMM IPC ROUTER (QRTR) DRIVER
15443 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15444 L:      linux-arm-msm@vger.kernel.org
15445 S:      Maintained
15446 F:      include/trace/events/qrtr.h
15447 F:      include/uapi/linux/qrtr.h
15448 F:      net/qrtr/
15449
15450 QUALCOMM IPCC MAILBOX DRIVER
15451 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15452 L:      linux-arm-msm@vger.kernel.org
15453 S:      Supported
15454 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15455 F:      drivers/mailbox/qcom-ipcc.c
15456 F:      include/dt-bindings/mailbox/qcom-ipcc.h
15457
15458 QUALCOMM IPQ4019 USB PHY DRIVER
15459 M:      Robert Marko <robert.marko@sartura.hr>
15460 M:      Luka Perkov <luka.perkov@sartura.hr>
15461 L:      linux-arm-msm@vger.kernel.org
15462 S:      Maintained
15463 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15464 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15465
15466 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15467 M:      Robert Marko <robert.marko@sartura.hr>
15468 M:      Luka Perkov <luka.perkov@sartura.hr>
15469 L:      linux-arm-msm@vger.kernel.org
15470 S:      Maintained
15471 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15472 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
15473
15474 QUALCOMM RMNET DRIVER
15475 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15476 M:      Sean Tranchetti <stranche@codeaurora.org>
15477 L:      netdev@vger.kernel.org
15478 S:      Maintained
15479 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15480 F:      drivers/net/ethernet/qualcomm/rmnet/
15481 F:      include/linux/if_rmnet.h
15482
15483 QUALCOMM TSENS THERMAL DRIVER
15484 M:      Amit Kucheria <amitk@kernel.org>
15485 M:      Thara Gopinath <thara.gopinath@linaro.org>
15486 L:      linux-pm@vger.kernel.org
15487 L:      linux-arm-msm@vger.kernel.org
15488 S:      Maintained
15489 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15490 F:      drivers/thermal/qcom/
15491
15492 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15493 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
15494 L:      linux-media@vger.kernel.org
15495 L:      linux-arm-msm@vger.kernel.org
15496 S:      Maintained
15497 T:      git git://linuxtv.org/media_tree.git
15498 F:      Documentation/devicetree/bindings/media/*venus*
15499 F:      drivers/media/platform/qcom/venus/
15500
15501 QUALCOMM WCN36XX WIRELESS DRIVER
15502 M:      Kalle Valo <kvalo@codeaurora.org>
15503 L:      wcn36xx@lists.infradead.org
15504 S:      Supported
15505 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15506 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
15507 F:      drivers/net/wireless/ath/wcn36xx/
15508
15509 QUANTENNA QTNFMAC WIRELESS DRIVER
15510 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
15511 R:      Sergey Matyukevich <geomatsi@gmail.com>
15512 L:      linux-wireless@vger.kernel.org
15513 S:      Maintained
15514 F:      drivers/net/wireless/quantenna
15515
15516 RADEON and AMDGPU DRM DRIVERS
15517 M:      Alex Deucher <alexander.deucher@amd.com>
15518 M:      Christian König <christian.koenig@amd.com>
15519 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
15520 L:      amd-gfx@lists.freedesktop.org
15521 S:      Supported
15522 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
15523 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
15524 C:      irc://irc.oftc.net/radeon
15525 F:      drivers/gpu/drm/amd/
15526 F:      drivers/gpu/drm/radeon/
15527 F:      include/uapi/drm/amdgpu_drm.h
15528 F:      include/uapi/drm/radeon_drm.h
15529
15530 RADEON FRAMEBUFFER DISPLAY DRIVER
15531 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
15532 L:      linux-fbdev@vger.kernel.org
15533 S:      Maintained
15534 F:      drivers/video/fbdev/aty/radeon*
15535 F:      include/uapi/linux/radeonfb.h
15536
15537 RADIOSHARK RADIO DRIVER
15538 M:      Hans Verkuil <hverkuil@xs4all.nl>
15539 L:      linux-media@vger.kernel.org
15540 S:      Maintained
15541 T:      git git://linuxtv.org/media_tree.git
15542 F:      drivers/media/radio/radio-shark.c
15543
15544 RADIOSHARK2 RADIO DRIVER
15545 M:      Hans Verkuil <hverkuil@xs4all.nl>
15546 L:      linux-media@vger.kernel.org
15547 S:      Maintained
15548 T:      git git://linuxtv.org/media_tree.git
15549 F:      drivers/media/radio/radio-shark2.c
15550 F:      drivers/media/radio/radio-tea5777.c
15551
15552 RADOS BLOCK DEVICE (RBD)
15553 M:      Ilya Dryomov <idryomov@gmail.com>
15554 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
15555 L:      ceph-devel@vger.kernel.org
15556 S:      Supported
15557 W:      http://ceph.com/
15558 T:      git git://github.com/ceph/ceph-client.git
15559 F:      Documentation/ABI/testing/sysfs-bus-rbd
15560 F:      drivers/block/rbd.c
15561 F:      drivers/block/rbd_types.h
15562
15563 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15564 M:      Paul Mackerras <paulus@samba.org>
15565 L:      linux-fbdev@vger.kernel.org
15566 S:      Maintained
15567 F:      drivers/video/fbdev/aty/aty128fb.c
15568
15569 RAINSHADOW-CEC DRIVER
15570 M:      Hans Verkuil <hverkuil@xs4all.nl>
15571 L:      linux-media@vger.kernel.org
15572 S:      Maintained
15573 T:      git git://linuxtv.org/media_tree.git
15574 F:      drivers/media/cec/usb/rainshadow/
15575
15576 RALINK MIPS ARCHITECTURE
15577 M:      John Crispin <john@phrozen.org>
15578 L:      linux-mips@vger.kernel.org
15579 S:      Maintained
15580 F:      arch/mips/ralink
15581
15582 RALINK RT2X00 WIRELESS LAN DRIVER
15583 M:      Stanislaw Gruszka <stf_xl@wp.pl>
15584 M:      Helmut Schaa <helmut.schaa@googlemail.com>
15585 L:      linux-wireless@vger.kernel.org
15586 S:      Maintained
15587 F:      drivers/net/wireless/ralink/rt2x00/
15588
15589 RAMDISK RAM BLOCK DEVICE DRIVER
15590 M:      Jens Axboe <axboe@kernel.dk>
15591 S:      Maintained
15592 F:      Documentation/admin-guide/blockdev/ramdisk.rst
15593 F:      drivers/block/brd.c
15594
15595 RANCHU VIRTUAL BOARD FOR MIPS
15596 M:      Miodrag Dinic <miodrag.dinic@mips.com>
15597 L:      linux-mips@vger.kernel.org
15598 S:      Supported
15599 F:      arch/mips/configs/generic/board-ranchu.config
15600 F:      arch/mips/generic/board-ranchu.c
15601
15602 RANDOM NUMBER DRIVER
15603 M:      "Theodore Ts'o" <tytso@mit.edu>
15604 S:      Maintained
15605 F:      drivers/char/random.c
15606
15607 RAPIDIO SUBSYSTEM
15608 M:      Matt Porter <mporter@kernel.crashing.org>
15609 M:      Alexandre Bounine <alex.bou9@gmail.com>
15610 S:      Maintained
15611 F:      drivers/rapidio/
15612
15613 RAS INFRASTRUCTURE
15614 M:      Tony Luck <tony.luck@intel.com>
15615 M:      Borislav Petkov <bp@alien8.de>
15616 L:      linux-edac@vger.kernel.org
15617 S:      Maintained
15618 F:      Documentation/admin-guide/ras.rst
15619 F:      drivers/ras/
15620 F:      include/linux/ras.h
15621 F:      include/ras/ras_event.h
15622
15623 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15624 L:      linux-wireless@vger.kernel.org
15625 S:      Orphan
15626 F:      drivers/net/wireless/ray*
15627
15628 RC-CORE / LIRC FRAMEWORK
15629 M:      Sean Young <sean@mess.org>
15630 L:      linux-media@vger.kernel.org
15631 S:      Maintained
15632 W:      http://linuxtv.org
15633 T:      git git://linuxtv.org/media_tree.git
15634 F:      Documentation/driver-api/media/rc-core.rst
15635 F:      Documentation/userspace-api/media/rc/
15636 F:      drivers/media/rc/
15637 F:      include/media/rc-map.h
15638 F:      include/media/rc-core.h
15639 F:      include/uapi/linux/lirc.h
15640
15641 RCMM REMOTE CONTROLS DECODER
15642 M:      Patrick Lerda <patrick9876@free.fr>
15643 S:      Maintained
15644 F:      drivers/media/rc/ir-rcmm-decoder.c
15645
15646 RCUTORTURE TEST FRAMEWORK
15647 M:      "Paul E. McKenney" <paulmck@kernel.org>
15648 M:      Josh Triplett <josh@joshtriplett.org>
15649 R:      Steven Rostedt <rostedt@goodmis.org>
15650 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15651 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15652 L:      rcu@vger.kernel.org
15653 S:      Supported
15654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15655 F:      tools/testing/selftests/rcutorture
15656
15657 RDACM20 Camera Sensor
15658 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15659 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15660 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15661 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15662 L:      linux-media@vger.kernel.org
15663 S:      Maintained
15664 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15665 F:      drivers/media/i2c/max9271.c
15666 F:      drivers/media/i2c/max9271.h
15667 F:      drivers/media/i2c/rdacm20.c
15668
15669 RDACM21 Camera Sensor
15670 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15671 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15672 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15673 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15674 L:      linux-media@vger.kernel.org
15675 S:      Maintained
15676 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15677 F:      drivers/media/i2c/max9271.c
15678 F:      drivers/media/i2c/max9271.h
15679 F:      drivers/media/i2c/rdacm21.c
15680
15681 RDC R-321X SoC
15682 M:      Florian Fainelli <florian@openwrt.org>
15683 S:      Maintained
15684
15685 RDC R6040 FAST ETHERNET DRIVER
15686 M:      Florian Fainelli <f.fainelli@gmail.com>
15687 L:      netdev@vger.kernel.org
15688 S:      Maintained
15689 F:      drivers/net/ethernet/rdc/r6040.c
15690
15691 RDMAVT - RDMA verbs software
15692 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15693 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15694 L:      linux-rdma@vger.kernel.org
15695 S:      Supported
15696 F:      drivers/infiniband/sw/rdmavt
15697
15698 RDS - RELIABLE DATAGRAM SOCKETS
15699 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
15700 L:      netdev@vger.kernel.org
15701 L:      linux-rdma@vger.kernel.org
15702 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
15703 S:      Supported
15704 W:      https://oss.oracle.com/projects/rds/
15705 F:      Documentation/networking/rds.rst
15706 F:      net/rds/
15707
15708 RDT - RESOURCE ALLOCATION
15709 M:      Fenghua Yu <fenghua.yu@intel.com>
15710 M:      Reinette Chatre <reinette.chatre@intel.com>
15711 L:      linux-kernel@vger.kernel.org
15712 S:      Supported
15713 F:      Documentation/x86/resctrl*
15714 F:      arch/x86/include/asm/resctrl.h
15715 F:      arch/x86/kernel/cpu/resctrl/
15716 F:      tools/testing/selftests/resctrl/
15717
15718 READ-COPY UPDATE (RCU)
15719 M:      "Paul E. McKenney" <paulmck@kernel.org>
15720 M:      Josh Triplett <josh@joshtriplett.org>
15721 R:      Steven Rostedt <rostedt@goodmis.org>
15722 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15723 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15724 R:      Joel Fernandes <joel@joelfernandes.org>
15725 L:      rcu@vger.kernel.org
15726 S:      Supported
15727 W:      http://www.rdrop.com/users/paulmck/RCU/
15728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15729 F:      Documentation/RCU/
15730 F:      include/linux/rcu*
15731 F:      kernel/rcu/
15732 X:      Documentation/RCU/torture.rst
15733 X:      include/linux/srcu*.h
15734 X:      kernel/rcu/srcu*.c
15735
15736 REAL TIME CLOCK (RTC) SUBSYSTEM
15737 M:      Alessandro Zummo <a.zummo@towertech.it>
15738 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
15739 L:      linux-rtc@vger.kernel.org
15740 S:      Maintained
15741 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
15742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15743 F:      Documentation/admin-guide/rtc.rst
15744 F:      Documentation/devicetree/bindings/rtc/
15745 F:      drivers/rtc/
15746 F:      include/linux/platform_data/rtc-*
15747 F:      include/linux/rtc.h
15748 F:      include/linux/rtc/
15749 F:      include/uapi/linux/rtc.h
15750 F:      tools/testing/selftests/rtc/
15751
15752 REALTEK AUDIO CODECS
15753 M:      Oder Chiou <oder_chiou@realtek.com>
15754 S:      Maintained
15755 F:      include/sound/rt*.h
15756 F:      sound/soc/codecs/rt*
15757
15758 REALTEK RTL83xx SMI DSA ROUTER CHIPS
15759 M:      Linus Walleij <linus.walleij@linaro.org>
15760 S:      Maintained
15761 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
15762 F:      drivers/net/dsa/realtek-smi*
15763 F:      drivers/net/dsa/rtl83*
15764
15765 REALTEK WIRELESS DRIVER (rtlwifi family)
15766 M:      Ping-Ke Shih <pkshih@realtek.com>
15767 L:      linux-wireless@vger.kernel.org
15768 S:      Maintained
15769 W:      https://wireless.wiki.kernel.org/
15770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15771 F:      drivers/net/wireless/realtek/rtlwifi/
15772
15773 REALTEK WIRELESS DRIVER (rtw88)
15774 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
15775 L:      linux-wireless@vger.kernel.org
15776 S:      Maintained
15777 F:      drivers/net/wireless/realtek/rtw88/
15778
15779 REDPINE WIRELESS DRIVER
15780 M:      Amitkumar Karwar <amitkarwar@gmail.com>
15781 M:      Siva Rebbagondla <siva8118@gmail.com>
15782 L:      linux-wireless@vger.kernel.org
15783 S:      Maintained
15784 F:      drivers/net/wireless/rsi/
15785
15786 REGISTER MAP ABSTRACTION
15787 M:      Mark Brown <broonie@kernel.org>
15788 L:      linux-kernel@vger.kernel.org
15789 S:      Supported
15790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15791 F:      Documentation/devicetree/bindings/regmap/
15792 F:      drivers/base/regmap/
15793 F:      include/linux/regmap.h
15794
15795 REISERFS FILE SYSTEM
15796 L:      reiserfs-devel@vger.kernel.org
15797 S:      Supported
15798 F:      fs/reiserfs/
15799
15800 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15801 M:      Ohad Ben-Cohen <ohad@wizery.com>
15802 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15803 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
15804 L:      linux-remoteproc@vger.kernel.org
15805 S:      Maintained
15806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15807 F:      Documentation/ABI/testing/sysfs-class-remoteproc
15808 F:      Documentation/devicetree/bindings/remoteproc/
15809 F:      Documentation/staging/remoteproc.rst
15810 F:      drivers/remoteproc/
15811 F:      include/linux/remoteproc.h
15812 F:      include/linux/remoteproc/
15813
15814 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15815 M:      Ohad Ben-Cohen <ohad@wizery.com>
15816 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15817 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
15818 L:      linux-remoteproc@vger.kernel.org
15819 S:      Maintained
15820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15821 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
15822 F:      Documentation/staging/rpmsg.rst
15823 F:      drivers/rpmsg/
15824 F:      include/linux/rpmsg.h
15825 F:      include/linux/rpmsg/
15826 F:      include/uapi/linux/rpmsg.h
15827 F:      samples/rpmsg/
15828
15829 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
15830 M:      Stephan Gerhold <stephan@gerhold.net>
15831 L:      netdev@vger.kernel.org
15832 L:      linux-remoteproc@vger.kernel.org
15833 S:      Maintained
15834 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
15835
15836 RENESAS CLOCK DRIVERS
15837 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15838 L:      linux-renesas-soc@vger.kernel.org
15839 S:      Supported
15840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
15841 F:      Documentation/devicetree/bindings/clock/renesas,*
15842 F:      drivers/clk/renesas/
15843
15844 RENESAS EMEV2 I2C DRIVER
15845 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15846 L:      linux-renesas-soc@vger.kernel.org
15847 S:      Supported
15848 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
15849 F:      drivers/i2c/busses/i2c-emev2.c
15850
15851 RENESAS ETHERNET DRIVERS
15852 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
15853 L:      netdev@vger.kernel.org
15854 L:      linux-renesas-soc@vger.kernel.org
15855 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
15856 F:      drivers/net/ethernet/renesas/
15857 F:      include/linux/sh_eth.h
15858
15859 RENESAS R-CAR GYROADC DRIVER
15860 M:      Marek Vasut <marek.vasut@gmail.com>
15861 L:      linux-iio@vger.kernel.org
15862 S:      Supported
15863 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
15864 F:      drivers/iio/adc/rcar-gyroadc.c
15865
15866 RENESAS R-CAR I2C DRIVERS
15867 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15868 L:      linux-renesas-soc@vger.kernel.org
15869 S:      Supported
15870 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
15871 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
15872 F:      drivers/i2c/busses/i2c-rcar.c
15873 F:      drivers/i2c/busses/i2c-sh_mobile.c
15874
15875 RENESAS R-CAR THERMAL DRIVERS
15876 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
15877 L:      linux-renesas-soc@vger.kernel.org
15878 S:      Supported
15879 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
15880 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
15881 F:      drivers/thermal/rcar_gen3_thermal.c
15882 F:      drivers/thermal/rcar_thermal.c
15883
15884 RENESAS RIIC DRIVER
15885 M:      Chris Brandt <chris.brandt@renesas.com>
15886 L:      linux-renesas-soc@vger.kernel.org
15887 S:      Supported
15888 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
15889 F:      drivers/i2c/busses/i2c-riic.c
15890
15891 RENESAS USB PHY DRIVER
15892 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15893 L:      linux-renesas-soc@vger.kernel.org
15894 S:      Maintained
15895 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
15896
15897 RESET CONTROLLER FRAMEWORK
15898 M:      Philipp Zabel <p.zabel@pengutronix.de>
15899 S:      Maintained
15900 T:      git git://git.pengutronix.de/git/pza/linux
15901 F:      Documentation/devicetree/bindings/reset/
15902 F:      Documentation/driver-api/reset.rst
15903 F:      drivers/reset/
15904 F:      include/dt-bindings/reset/
15905 F:      include/linux/reset-controller.h
15906 F:      include/linux/reset.h
15907 F:      include/linux/reset/
15908 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
15909
15910 RESTARTABLE SEQUENCES SUPPORT
15911 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15912 M:      Peter Zijlstra <peterz@infradead.org>
15913 M:      "Paul E. McKenney" <paulmck@kernel.org>
15914 M:      Boqun Feng <boqun.feng@gmail.com>
15915 L:      linux-kernel@vger.kernel.org
15916 S:      Supported
15917 F:      include/trace/events/rseq.h
15918 F:      include/uapi/linux/rseq.h
15919 F:      kernel/rseq.c
15920 F:      tools/testing/selftests/rseq/
15921
15922 RFKILL
15923 M:      Johannes Berg <johannes@sipsolutions.net>
15924 L:      linux-wireless@vger.kernel.org
15925 S:      Maintained
15926 W:      https://wireless.wiki.kernel.org/
15927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
15928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
15929 F:      Documentation/ABI/stable/sysfs-class-rfkill
15930 F:      Documentation/driver-api/rfkill.rst
15931 F:      include/linux/rfkill.h
15932 F:      include/uapi/linux/rfkill.h
15933 F:      net/rfkill/
15934
15935 RHASHTABLE
15936 M:      Thomas Graf <tgraf@suug.ch>
15937 M:      Herbert Xu <herbert@gondor.apana.org.au>
15938 L:      netdev@vger.kernel.org
15939 S:      Maintained
15940 F:      include/linux/rhashtable-types.h
15941 F:      include/linux/rhashtable.h
15942 F:      lib/rhashtable.c
15943 F:      lib/test_rhashtable.c
15944
15945 RICOH R5C592 MEMORYSTICK DRIVER
15946 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15947 S:      Maintained
15948 F:      drivers/memstick/host/r592.*
15949
15950 RICOH SMARTMEDIA/XD DRIVER
15951 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15952 S:      Maintained
15953 F:      drivers/mtd/nand/raw/r852.c
15954 F:      drivers/mtd/nand/raw/r852.h
15955
15956 RISC-V ARCHITECTURE
15957 M:      Paul Walmsley <paul.walmsley@sifive.com>
15958 M:      Palmer Dabbelt <palmer@dabbelt.com>
15959 M:      Albert Ou <aou@eecs.berkeley.edu>
15960 L:      linux-riscv@lists.infradead.org
15961 S:      Supported
15962 P:      Documentation/riscv/patch-acceptance.rst
15963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
15964 F:      arch/riscv/
15965 N:      riscv
15966 K:      riscv
15967
15968 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
15969 M:      Lewis Hanly <lewis.hanly@microchip.com>
15970 L:      linux-riscv@lists.infradead.org
15971 S:      Supported
15972 F:      drivers/mailbox/mailbox-mpfs.c
15973 F:      drivers/soc/microchip/
15974 F:      include/soc/microchip/mpfs.h
15975
15976 RNBD BLOCK DRIVERS
15977 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
15978 M:      Jack Wang <jinpu.wang@ionos.com>
15979 L:      linux-block@vger.kernel.org
15980 S:      Maintained
15981 F:      drivers/block/rnbd/
15982
15983 ROCCAT DRIVERS
15984 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
15985 S:      Maintained
15986 W:      http://sourceforge.net/projects/roccat/
15987 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
15988 F:      drivers/hid/hid-roccat*
15989 F:      include/linux/hid-roccat*
15990
15991 ROCKCHIP ISP V1 DRIVER
15992 M:      Helen Koike <helen.koike@collabora.com>
15993 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
15994 L:      linux-media@vger.kernel.org
15995 L:      linux-rockchip@lists.infradead.org
15996 S:      Maintained
15997 F:      Documentation/admin-guide/media/rkisp1.rst
15998 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
15999 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16000 F:      drivers/media/platform/rockchip/rkisp1
16001 F:      include/uapi/linux/rkisp1-config.h
16002
16003 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16004 M:      Jacob Chen <jacob-chen@iotwrt.com>
16005 M:      Ezequiel Garcia <ezequiel@collabora.com>
16006 L:      linux-media@vger.kernel.org
16007 L:      linux-rockchip@lists.infradead.org
16008 S:      Maintained
16009 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
16010 F:      drivers/media/platform/rockchip/rga/
16011
16012 ROCKCHIP VIDEO DECODER DRIVER
16013 M:      Ezequiel Garcia <ezequiel@collabora.com>
16014 L:      linux-media@vger.kernel.org
16015 L:      linux-rockchip@lists.infradead.org
16016 S:      Maintained
16017 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
16018 F:      drivers/staging/media/rkvdec/
16019
16020 ROCKER DRIVER
16021 M:      Jiri Pirko <jiri@resnulli.us>
16022 L:      netdev@vger.kernel.org
16023 S:      Supported
16024 F:      drivers/net/ethernet/rocker/
16025
16026 ROCKETPORT EXPRESS/INFINITY DRIVER
16027 M:      Kevin Cernekee <cernekee@gmail.com>
16028 L:      linux-serial@vger.kernel.org
16029 S:      Odd Fixes
16030 F:      drivers/tty/serial/rp2.*
16031
16032 ROHM BD99954 CHARGER IC
16033 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16034 L:      linux-power@fi.rohmeurope.com
16035 S:      Supported
16036 F:      drivers/power/supply/bd99954-charger.c
16037 F:      drivers/power/supply/bd99954-charger.h
16038
16039 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16040 M:      Tomasz Duszynski <tduszyns@gmail.com>
16041 S:      Maintained
16042 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
16043 F:      drivers/iio/light/bh1750.c
16044
16045 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16046 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
16047 L:      linux-kernel@vger.kernel.org
16048 L:      linux-renesas-soc@vger.kernel.org
16049 S:      Supported
16050 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
16051 F:      drivers/gpio/gpio-bd9571mwv.c
16052 F:      drivers/mfd/bd9571mwv.c
16053 F:      drivers/regulator/bd9571mwv-regulator.c
16054 F:      include/linux/mfd/bd9571mwv.h
16055
16056 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16057 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16058 L:      linux-power@fi.rohmeurope.com
16059 S:      Supported
16060 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
16061 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
16062 F:      drivers/clk/clk-bd718x7.c
16063 F:      drivers/gpio/gpio-bd70528.c
16064 F:      drivers/gpio/gpio-bd71815.c
16065 F:      drivers/gpio/gpio-bd71828.c
16066 F:      drivers/mfd/rohm-bd70528.c
16067 F:      drivers/mfd/rohm-bd71828.c
16068 F:      drivers/mfd/rohm-bd718x7.c
16069 F:      drivers/mfd/rohm-bd9576.c
16070 F:      drivers/power/supply/bd70528-charger.c
16071 F:      drivers/regulator/bd70528-regulator.c
16072 F:      drivers/regulator/bd71815-regulator.c
16073 F:      drivers/regulator/bd71828-regulator.c
16074 F:      drivers/regulator/bd718x7-regulator.c
16075 F:      drivers/regulator/bd9576-regulator.c
16076 F:      drivers/regulator/rohm-regulator.c
16077 F:      drivers/rtc/rtc-bd70528.c
16078 F:      drivers/watchdog/bd70528_wdt.c
16079 F:      drivers/watchdog/bd9576_wdt.c
16080 F:      include/linux/mfd/rohm-bd70528.h
16081 F:      include/linux/mfd/rohm-bd71815.h
16082 F:      include/linux/mfd/rohm-bd71828.h
16083 F:      include/linux/mfd/rohm-bd718x7.h
16084 F:      include/linux/mfd/rohm-bd957x.h
16085 F:      include/linux/mfd/rohm-generic.h
16086 F:      include/linux/mfd/rohm-shared.h
16087
16088 ROSE NETWORK LAYER
16089 M:      Ralf Baechle <ralf@linux-mips.org>
16090 L:      linux-hams@vger.kernel.org
16091 S:      Maintained
16092 W:      http://www.linux-ax25.org/
16093 F:      include/net/rose.h
16094 F:      include/uapi/linux/rose.h
16095 F:      net/rose/
16096
16097 ROTATION DRIVER FOR ALLWINNER A83T
16098 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
16099 L:      linux-media@vger.kernel.org
16100 S:      Maintained
16101 T:      git git://linuxtv.org/media_tree.git
16102 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16103 F:      drivers/media/platform/sunxi/sun8i-rotate/
16104
16105 RTL2830 MEDIA DRIVER
16106 M:      Antti Palosaari <crope@iki.fi>
16107 L:      linux-media@vger.kernel.org
16108 S:      Maintained
16109 W:      https://linuxtv.org
16110 W:      http://palosaari.fi/linux/
16111 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16112 T:      git git://linuxtv.org/anttip/media_tree.git
16113 F:      drivers/media/dvb-frontends/rtl2830*
16114
16115 RTL2832 MEDIA DRIVER
16116 M:      Antti Palosaari <crope@iki.fi>
16117 L:      linux-media@vger.kernel.org
16118 S:      Maintained
16119 W:      https://linuxtv.org
16120 W:      http://palosaari.fi/linux/
16121 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16122 T:      git git://linuxtv.org/anttip/media_tree.git
16123 F:      drivers/media/dvb-frontends/rtl2832*
16124
16125 RTL2832_SDR MEDIA DRIVER
16126 M:      Antti Palosaari <crope@iki.fi>
16127 L:      linux-media@vger.kernel.org
16128 S:      Maintained
16129 W:      https://linuxtv.org
16130 W:      http://palosaari.fi/linux/
16131 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16132 T:      git git://linuxtv.org/anttip/media_tree.git
16133 F:      drivers/media/dvb-frontends/rtl2832_sdr*
16134
16135 RTL8180 WIRELESS DRIVER
16136 L:      linux-wireless@vger.kernel.org
16137 S:      Orphan
16138 W:      https://wireless.wiki.kernel.org/
16139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16140 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
16141
16142 RTL8187 WIRELESS DRIVER
16143 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16144 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
16145 M:      Larry Finger <Larry.Finger@lwfinger.net>
16146 L:      linux-wireless@vger.kernel.org
16147 S:      Maintained
16148 W:      https://wireless.wiki.kernel.org/
16149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16150 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
16151
16152 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16153 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
16154 L:      linux-wireless@vger.kernel.org
16155 S:      Maintained
16156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16157 F:      drivers/net/wireless/realtek/rtl8xxxu/
16158
16159 RTRS TRANSPORT DRIVERS
16160 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16161 M:      Jack Wang <jinpu.wang@ionos.com>
16162 L:      linux-rdma@vger.kernel.org
16163 S:      Maintained
16164 F:      drivers/infiniband/ulp/rtrs/
16165
16166 RXRPC SOCKETS (AF_RXRPC)
16167 M:      David Howells <dhowells@redhat.com>
16168 M:      Marc Dionne <marc.dionne@auristor.com>
16169 L:      linux-afs@lists.infradead.org
16170 S:      Supported
16171 W:      https://www.infradead.org/~dhowells/kafs/
16172 F:      Documentation/networking/rxrpc.rst
16173 F:      include/keys/rxrpc-type.h
16174 F:      include/net/af_rxrpc.h
16175 F:      include/trace/events/rxrpc.h
16176 F:      include/uapi/linux/rxrpc.h
16177 F:      net/rxrpc/
16178
16179 S3 SAVAGE FRAMEBUFFER DRIVER
16180 M:      Antonino Daplas <adaplas@gmail.com>
16181 L:      linux-fbdev@vger.kernel.org
16182 S:      Maintained
16183 F:      drivers/video/fbdev/savage/
16184
16185 S390
16186 M:      Heiko Carstens <hca@linux.ibm.com>
16187 M:      Vasily Gorbik <gor@linux.ibm.com>
16188 M:      Christian Borntraeger <borntraeger@de.ibm.com>
16189 L:      linux-s390@vger.kernel.org
16190 S:      Supported
16191 W:      http://www.ibm.com/developerworks/linux/linux390/
16192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16193 F:      Documentation/driver-api/s390-drivers.rst
16194 F:      Documentation/s390/
16195 F:      arch/s390/
16196 F:      drivers/s390/
16197
16198 S390 COMMON I/O LAYER
16199 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
16200 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
16201 L:      linux-s390@vger.kernel.org
16202 S:      Supported
16203 W:      http://www.ibm.com/developerworks/linux/linux390/
16204 F:      drivers/s390/cio/
16205
16206 S390 DASD DRIVER
16207 M:      Stefan Haberland <sth@linux.ibm.com>
16208 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
16209 L:      linux-s390@vger.kernel.org
16210 S:      Supported
16211 W:      http://www.ibm.com/developerworks/linux/linux390/
16212 F:      block/partitions/ibm.c
16213 F:      drivers/s390/block/dasd*
16214 F:      include/linux/dasd_mod.h
16215
16216 S390 IOMMU (PCI)
16217 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16218 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16219 L:      linux-s390@vger.kernel.org
16220 S:      Supported
16221 W:      http://www.ibm.com/developerworks/linux/linux390/
16222 F:      drivers/iommu/s390-iommu.c
16223
16224 S390 IUCV NETWORK LAYER
16225 M:      Julian Wiedmann <jwi@linux.ibm.com>
16226 M:      Karsten Graul <kgraul@linux.ibm.com>
16227 L:      linux-s390@vger.kernel.org
16228 L:      netdev@vger.kernel.org
16229 S:      Supported
16230 W:      http://www.ibm.com/developerworks/linux/linux390/
16231 F:      drivers/s390/net/*iucv*
16232 F:      include/net/iucv/
16233 F:      net/iucv/
16234
16235 S390 NETWORK DRIVERS
16236 M:      Julian Wiedmann <jwi@linux.ibm.com>
16237 M:      Karsten Graul <kgraul@linux.ibm.com>
16238 L:      linux-s390@vger.kernel.org
16239 L:      netdev@vger.kernel.org
16240 S:      Supported
16241 W:      http://www.ibm.com/developerworks/linux/linux390/
16242 F:      drivers/s390/net/
16243
16244 S390 PCI SUBSYSTEM
16245 M:      Niklas Schnelle <schnelle@linux.ibm.com>
16246 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16247 L:      linux-s390@vger.kernel.org
16248 S:      Supported
16249 W:      http://www.ibm.com/developerworks/linux/linux390/
16250 F:      arch/s390/pci/
16251 F:      drivers/pci/hotplug/s390_pci_hpc.c
16252 F:      Documentation/s390/pci.rst
16253
16254 S390 VFIO AP DRIVER
16255 M:      Tony Krowiak <akrowiak@linux.ibm.com>
16256 M:      Halil Pasic <pasic@linux.ibm.com>
16257 M:      Jason Herne <jjherne@linux.ibm.com>
16258 L:      linux-s390@vger.kernel.org
16259 S:      Supported
16260 W:      http://www.ibm.com/developerworks/linux/linux390/
16261 F:      Documentation/s390/vfio-ap.rst
16262 F:      drivers/s390/crypto/vfio_ap_drv.c
16263 F:      drivers/s390/crypto/vfio_ap_ops.c
16264 F:      drivers/s390/crypto/vfio_ap_private.h
16265
16266 S390 VFIO-CCW DRIVER
16267 M:      Cornelia Huck <cohuck@redhat.com>
16268 M:      Eric Farman <farman@linux.ibm.com>
16269 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16270 R:      Halil Pasic <pasic@linux.ibm.com>
16271 L:      linux-s390@vger.kernel.org
16272 L:      kvm@vger.kernel.org
16273 S:      Supported
16274 F:      Documentation/s390/vfio-ccw.rst
16275 F:      drivers/s390/cio/vfio_ccw*
16276 F:      include/uapi/linux/vfio_ccw.h
16277
16278 S390 VFIO-PCI DRIVER
16279 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16280 M:      Eric Farman <farman@linux.ibm.com>
16281 L:      linux-s390@vger.kernel.org
16282 L:      kvm@vger.kernel.org
16283 S:      Supported
16284 F:      drivers/vfio/pci/vfio_pci_zdev.c
16285 F:      include/uapi/linux/vfio_zdev.h
16286
16287 S390 ZCRYPT DRIVER
16288 M:      Harald Freudenberger <freude@linux.ibm.com>
16289 L:      linux-s390@vger.kernel.org
16290 S:      Supported
16291 W:      http://www.ibm.com/developerworks/linux/linux390/
16292 F:      drivers/s390/crypto/
16293
16294 S390 ZFCP DRIVER
16295 M:      Steffen Maier <maier@linux.ibm.com>
16296 M:      Benjamin Block <bblock@linux.ibm.com>
16297 L:      linux-s390@vger.kernel.org
16298 S:      Supported
16299 W:      http://www.ibm.com/developerworks/linux/linux390/
16300 F:      drivers/s390/scsi/zfcp_*
16301
16302 S3C ADC BATTERY DRIVER
16303 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16304 L:      linux-samsung-soc@vger.kernel.org
16305 S:      Odd Fixes
16306 F:      drivers/power/supply/s3c_adc_battery.c
16307 F:      include/linux/s3c_adc_battery.h
16308
16309 S3C24XX SD/MMC Driver
16310 M:      Ben Dooks <ben-linux@fluff.org>
16311 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16312 S:      Supported
16313 F:      drivers/mmc/host/s3cmci.*
16314
16315 SAA6588 RDS RECEIVER DRIVER
16316 M:      Hans Verkuil <hverkuil@xs4all.nl>
16317 L:      linux-media@vger.kernel.org
16318 S:      Odd Fixes
16319 W:      https://linuxtv.org
16320 T:      git git://linuxtv.org/media_tree.git
16321 F:      drivers/media/i2c/saa6588*
16322
16323 SAA7134 VIDEO4LINUX DRIVER
16324 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16325 L:      linux-media@vger.kernel.org
16326 S:      Odd fixes
16327 W:      https://linuxtv.org
16328 T:      git git://linuxtv.org/media_tree.git
16329 F:      Documentation/driver-api/media/drivers/saa7134*
16330 F:      drivers/media/pci/saa7134/
16331
16332 SAA7146 VIDEO4LINUX-2 DRIVER
16333 M:      Hans Verkuil <hverkuil@xs4all.nl>
16334 L:      linux-media@vger.kernel.org
16335 S:      Maintained
16336 T:      git git://linuxtv.org/media_tree.git
16337 F:      drivers/media/common/saa7146/
16338 F:      drivers/media/pci/saa7146/
16339 F:      include/media/drv-intf/saa7146*
16340
16341 SAFESETID SECURITY MODULE
16342 M:      Micah Morton <mortonm@chromium.org>
16343 S:      Supported
16344 F:      Documentation/admin-guide/LSM/SafeSetID.rst
16345 F:      security/safesetid/
16346
16347 SAMSUNG AUDIO (ASoC) DRIVERS
16348 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16349 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16350 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16351 S:      Supported
16352 F:      Documentation/devicetree/bindings/sound/samsung*
16353 F:      sound/soc/samsung/
16354
16355 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16356 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16357 L:      linux-crypto@vger.kernel.org
16358 L:      linux-samsung-soc@vger.kernel.org
16359 S:      Maintained
16360 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16361 F:      drivers/crypto/exynos-rng.c
16362
16363 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16364 M:      Łukasz Stelmach <l.stelmach@samsung.com>
16365 L:      linux-samsung-soc@vger.kernel.org
16366 S:      Maintained
16367 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
16368 F:      drivers/char/hw_random/exynos-trng.c
16369
16370 SAMSUNG FRAMEBUFFER DRIVER
16371 M:      Jingoo Han <jingoohan1@gmail.com>
16372 L:      linux-fbdev@vger.kernel.org
16373 S:      Maintained
16374 F:      drivers/video/fbdev/s3c-fb.c
16375
16376 SAMSUNG INTERCONNECT DRIVERS
16377 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16378 M:      Artur Świgoń <a.swigon@samsung.com>
16379 L:      linux-pm@vger.kernel.org
16380 L:      linux-samsung-soc@vger.kernel.org
16381 S:      Supported
16382 F:      drivers/interconnect/samsung/
16383
16384 SAMSUNG LAPTOP DRIVER
16385 M:      Corentin Chary <corentin.chary@gmail.com>
16386 L:      platform-driver-x86@vger.kernel.org
16387 S:      Maintained
16388 F:      drivers/platform/x86/samsung-laptop.c
16389
16390 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16391 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16392 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16393 L:      linux-kernel@vger.kernel.org
16394 L:      linux-samsung-soc@vger.kernel.org
16395 S:      Supported
16396 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
16397 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16398 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
16399 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
16400 F:      drivers/clk/clk-s2mps11.c
16401 F:      drivers/mfd/sec*.c
16402 F:      drivers/regulator/s2m*.c
16403 F:      drivers/regulator/s5m*.c
16404 F:      drivers/rtc/rtc-s5m.c
16405 F:      include/linux/mfd/samsung/
16406
16407 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16408 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16409 L:      linux-media@vger.kernel.org
16410 L:      linux-samsung-soc@vger.kernel.org
16411 S:      Maintained
16412 F:      drivers/media/platform/s3c-camif/
16413 F:      include/media/drv-intf/s3c_camif.h
16414
16415 SAMSUNG S3FWRN5 NFC DRIVER
16416 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16417 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
16418 L:      linux-nfc@lists.01.org (subscribers-only)
16419 S:      Maintained
16420 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16421 F:      drivers/nfc/s3fwrn5
16422
16423 SAMSUNG S5C73M3 CAMERA DRIVER
16424 M:      Andrzej Hajda <a.hajda@samsung.com>
16425 L:      linux-media@vger.kernel.org
16426 S:      Supported
16427 F:      drivers/media/i2c/s5c73m3/*
16428
16429 SAMSUNG S5K5BAF CAMERA DRIVER
16430 M:      Andrzej Hajda <a.hajda@samsung.com>
16431 L:      linux-media@vger.kernel.org
16432 S:      Supported
16433 F:      drivers/media/i2c/s5k5baf.c
16434
16435 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16436 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16437 M:      Vladimir Zapolskiy <vz@mleia.com>
16438 L:      linux-crypto@vger.kernel.org
16439 L:      linux-samsung-soc@vger.kernel.org
16440 S:      Maintained
16441 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16442 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16443 F:      drivers/crypto/s5p-sss.c
16444
16445 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16446 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16447 L:      linux-media@vger.kernel.org
16448 S:      Supported
16449 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
16450 F:      drivers/media/platform/exynos4-is/
16451
16452 SAMSUNG SOC CLOCK DRIVERS
16453 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16454 M:      Tomasz Figa <tomasz.figa@gmail.com>
16455 M:      Chanwoo Choi <cw00.choi@samsung.com>
16456 L:      linux-samsung-soc@vger.kernel.org
16457 S:      Supported
16458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16459 F:      Documentation/devicetree/bindings/clock/exynos*.txt
16460 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
16461 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
16462 F:      drivers/clk/samsung/
16463 F:      include/dt-bindings/clock/exynos*.h
16464 F:      include/linux/clk/samsung.h
16465 F:      include/linux/platform_data/clk-s3c2410.h
16466
16467 SAMSUNG SPI DRIVERS
16468 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16469 M:      Andi Shyti <andi@etezian.org>
16470 L:      linux-spi@vger.kernel.org
16471 L:      linux-samsung-soc@vger.kernel.org
16472 S:      Maintained
16473 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
16474 F:      drivers/spi/spi-s3c*
16475 F:      include/linux/platform_data/spi-s3c64xx.h
16476 F:      include/linux/spi/s3c24xx-fiq.h
16477
16478 SAMSUNG SXGBE DRIVERS
16479 M:      Byungho An <bh74.an@samsung.com>
16480 L:      netdev@vger.kernel.org
16481 S:      Supported
16482 F:      drivers/net/ethernet/samsung/sxgbe/
16483
16484 SAMSUNG THERMAL DRIVER
16485 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16486 L:      linux-pm@vger.kernel.org
16487 L:      linux-samsung-soc@vger.kernel.org
16488 S:      Supported
16489 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
16490 F:      drivers/thermal/samsung/
16491
16492 SAMSUNG USB2 PHY DRIVER
16493 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16494 L:      linux-kernel@vger.kernel.org
16495 S:      Supported
16496 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
16497 F:      Documentation/driver-api/phy/samsung-usb2.rst
16498 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
16499 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
16500 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
16501 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
16502 F:      drivers/phy/samsung/phy-samsung-usb2.c
16503 F:      drivers/phy/samsung/phy-samsung-usb2.h
16504
16505 SC1200 WDT DRIVER
16506 M:      Zwane Mwaikambo <zwanem@gmail.com>
16507 S:      Maintained
16508 F:      drivers/watchdog/sc1200wdt.c
16509
16510 SCHEDULER
16511 M:      Ingo Molnar <mingo@redhat.com>
16512 M:      Peter Zijlstra <peterz@infradead.org>
16513 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
16514 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
16515 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
16516 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
16517 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
16518 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
16519 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
16520 L:      linux-kernel@vger.kernel.org
16521 S:      Maintained
16522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16523 F:      include/linux/preempt.h
16524 F:      include/linux/sched.h
16525 F:      include/linux/wait.h
16526 F:      include/uapi/linux/sched.h
16527 F:      kernel/sched/
16528
16529 SCR24X CHIP CARD INTERFACE DRIVER
16530 M:      Lubomir Rintel <lkundrak@v3.sk>
16531 S:      Supported
16532 F:      drivers/char/pcmcia/scr24x_cs.c
16533
16534 SCSI CDROM DRIVER
16535 M:      Jens Axboe <axboe@kernel.dk>
16536 L:      linux-scsi@vger.kernel.org
16537 S:      Maintained
16538 W:      http://www.kernel.dk
16539 F:      drivers/scsi/sr*
16540
16541 SCSI RDMA PROTOCOL (SRP) INITIATOR
16542 M:      Bart Van Assche <bvanassche@acm.org>
16543 L:      linux-rdma@vger.kernel.org
16544 S:      Supported
16545 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16546 F:      drivers/infiniband/ulp/srp/
16547 F:      include/scsi/srp.h
16548
16549 SCSI RDMA PROTOCOL (SRP) TARGET
16550 M:      Bart Van Assche <bvanassche@acm.org>
16551 L:      linux-rdma@vger.kernel.org
16552 L:      target-devel@vger.kernel.org
16553 S:      Supported
16554 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16555 F:      drivers/infiniband/ulp/srpt/
16556
16557 SCSI SG DRIVER
16558 M:      Doug Gilbert <dgilbert@interlog.com>
16559 L:      linux-scsi@vger.kernel.org
16560 S:      Maintained
16561 W:      http://sg.danny.cz/sg
16562 F:      Documentation/scsi/scsi-generic.rst
16563 F:      drivers/scsi/sg.c
16564 F:      include/scsi/sg.h
16565
16566 SCSI SUBSYSTEM
16567 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
16568 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16569 L:      linux-scsi@vger.kernel.org
16570 S:      Maintained
16571 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
16572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16574 F:      Documentation/devicetree/bindings/scsi/
16575 F:      drivers/scsi/
16576 F:      include/scsi/
16577
16578 SCSI TAPE DRIVER
16579 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
16580 L:      linux-scsi@vger.kernel.org
16581 S:      Maintained
16582 F:      Documentation/scsi/st.rst
16583 F:      drivers/scsi/st.*
16584 F:      drivers/scsi/st_*.h
16585
16586 SCSI TARGET CORE USER DRIVER
16587 M:      Bodo Stroesser <bostroesser@gmail.com>
16588 L:      linux-scsi@vger.kernel.org
16589 L:      target-devel@vger.kernel.org
16590 S:      Supported
16591 F:      Documentation/target/tcmu-design.rst
16592 F:      drivers/target/target_core_user.c
16593 F:      include/uapi/linux/target_core_user.h
16594
16595 SCSI TARGET SUBSYSTEM
16596 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16597 L:      linux-scsi@vger.kernel.org
16598 L:      target-devel@vger.kernel.org
16599 S:      Supported
16600 W:      http://www.linux-iscsi.org
16601 Q:      https://patchwork.kernel.org/project/target-devel/list/
16602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16603 F:      Documentation/target/
16604 F:      drivers/target/
16605 F:      include/target/
16606
16607 SCTP PROTOCOL
16608 M:      Vlad Yasevich <vyasevich@gmail.com>
16609 M:      Neil Horman <nhorman@tuxdriver.com>
16610 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
16611 L:      linux-sctp@vger.kernel.org
16612 S:      Maintained
16613 W:      http://lksctp.sourceforge.net
16614 F:      Documentation/networking/sctp.rst
16615 F:      include/linux/sctp.h
16616 F:      include/net/sctp/
16617 F:      include/uapi/linux/sctp.h
16618 F:      net/sctp/
16619
16620 SCx200 CPU SUPPORT
16621 M:      Jim Cromie <jim.cromie@gmail.com>
16622 S:      Odd Fixes
16623 F:      Documentation/i2c/busses/scx200_acb.rst
16624 F:      arch/x86/platform/scx200/
16625 F:      drivers/i2c/busses/scx200*
16626 F:      drivers/mtd/maps/scx200_docflash.c
16627 F:      drivers/watchdog/scx200_wdt.c
16628 F:      include/linux/scx200.h
16629
16630 SCx200 GPIO DRIVER
16631 M:      Jim Cromie <jim.cromie@gmail.com>
16632 S:      Maintained
16633 F:      drivers/char/scx200_gpio.c
16634 F:      include/linux/scx200_gpio.h
16635
16636 SCx200 HRT CLOCKSOURCE DRIVER
16637 M:      Jim Cromie <jim.cromie@gmail.com>
16638 S:      Maintained
16639 F:      drivers/clocksource/scx200_hrt.c
16640
16641 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
16642 M:      Sascha Sommer <saschasommer@freenet.de>
16643 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
16644 S:      Maintained
16645 F:      drivers/mmc/host/sdricoh_cs.c
16646
16647 SECO BOARDS CEC DRIVER
16648 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
16649 S:      Maintained
16650 F:      drivers/media/cec/platform/seco/seco-cec.c
16651 F:      drivers/media/cec/platform/seco/seco-cec.h
16652
16653 SECURE COMPUTING
16654 M:      Kees Cook <keescook@chromium.org>
16655 R:      Andy Lutomirski <luto@amacapital.net>
16656 R:      Will Drewry <wad@chromium.org>
16657 S:      Supported
16658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
16659 F:      Documentation/userspace-api/seccomp_filter.rst
16660 F:      include/linux/seccomp.h
16661 F:      include/uapi/linux/seccomp.h
16662 F:      kernel/seccomp.c
16663 F:      tools/testing/selftests/kselftest_harness.h
16664 F:      tools/testing/selftests/seccomp/*
16665 K:      \bsecure_computing
16666 K:      \bTIF_SECCOMP\b
16667
16668 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
16669 M:      Al Cooper <alcooperx@gmail.com>
16670 L:      linux-mmc@vger.kernel.org
16671 L:      bcm-kernel-feedback-list@broadcom.com
16672 S:      Maintained
16673 F:      drivers/mmc/host/sdhci-brcmstb*
16674
16675 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
16676 M:      Adrian Hunter <adrian.hunter@intel.com>
16677 L:      linux-mmc@vger.kernel.org
16678 S:      Maintained
16679 F:      drivers/mmc/host/sdhci*
16680 F:      include/linux/mmc/sdhci*
16681
16682 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
16683 M:      Eugen Hristev <eugen.hristev@microchip.com>
16684 L:      linux-mmc@vger.kernel.org
16685 S:      Supported
16686 F:      drivers/mmc/host/sdhci-of-at91.c
16687
16688 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
16689 M:      Ben Dooks <ben-linux@fluff.org>
16690 M:      Jaehoon Chung <jh80.chung@samsung.com>
16691 L:      linux-mmc@vger.kernel.org
16692 S:      Maintained
16693 F:      drivers/mmc/host/sdhci-s3c*
16694
16695 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
16696 M:      Viresh Kumar <vireshk@kernel.org>
16697 L:      linux-mmc@vger.kernel.org
16698 S:      Maintained
16699 F:      drivers/mmc/host/sdhci-spear.c
16700
16701 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
16702 M:      Kishon Vijay Abraham I <kishon@ti.com>
16703 L:      linux-mmc@vger.kernel.org
16704 S:      Maintained
16705 F:      drivers/mmc/host/sdhci-omap.c
16706
16707 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
16708 M:      Jonathan Derrick <jonathan.derrick@intel.com>
16709 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
16710 L:      linux-block@vger.kernel.org
16711 S:      Supported
16712 F:      block/opal_proto.h
16713 F:      block/sed*
16714 F:      include/linux/sed*
16715 F:      include/uapi/linux/sed*
16716
16717 SECURITY CONTACT
16718 M:      Security Officers <security@kernel.org>
16719 S:      Supported
16720 F:      Documentation/admin-guide/security-bugs.rst
16721
16722 SECURITY SUBSYSTEM
16723 M:      James Morris <jmorris@namei.org>
16724 M:      "Serge E. Hallyn" <serge@hallyn.com>
16725 L:      linux-security-module@vger.kernel.org (suggested Cc:)
16726 S:      Supported
16727 W:      http://kernsec.org/
16728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
16729 F:      security/
16730 X:      security/selinux/
16731
16732 SELINUX SECURITY MODULE
16733 M:      Paul Moore <paul@paul-moore.com>
16734 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
16735 M:      Eric Paris <eparis@parisplace.org>
16736 L:      selinux@vger.kernel.org
16737 S:      Supported
16738 W:      https://selinuxproject.org
16739 W:      https://github.com/SELinuxProject
16740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
16741 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
16742 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
16743 F:      Documentation/admin-guide/LSM/SELinux.rst
16744 F:      include/trace/events/avc.h
16745 F:      include/uapi/linux/selinux_netlink.h
16746 F:      scripts/selinux/
16747 F:      security/selinux/
16748
16749 SENSABLE PHANTOM
16750 M:      Jiri Slaby <jirislaby@kernel.org>
16751 S:      Maintained
16752 F:      drivers/misc/phantom.c
16753 F:      include/uapi/linux/phantom.h
16754
16755 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
16756 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
16757 S:      Maintained
16758 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
16759 F:      drivers/iio/chemical/scd30.h
16760 F:      drivers/iio/chemical/scd30_core.c
16761 F:      drivers/iio/chemical/scd30_i2c.c
16762 F:      drivers/iio/chemical/scd30_serial.c
16763
16764 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
16765 M:      Tomasz Duszynski <tduszyns@gmail.com>
16766 S:      Maintained
16767 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
16768 F:      drivers/iio/chemical/sps30.c
16769 F:      drivers/iio/chemical/sps30_i2c.c
16770 F:      drivers/iio/chemical/sps30_serial.c
16771
16772 SERIAL DEVICE BUS
16773 M:      Rob Herring <robh@kernel.org>
16774 L:      linux-serial@vger.kernel.org
16775 S:      Maintained
16776 F:      Documentation/devicetree/bindings/serial/serial.yaml
16777 F:      drivers/tty/serdev/
16778 F:      include/linux/serdev.h
16779
16780 SERIAL DRIVERS
16781 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16782 L:      linux-serial@vger.kernel.org
16783 S:      Maintained
16784 F:      Documentation/devicetree/bindings/serial/
16785 F:      drivers/tty/serial/
16786
16787 SERIAL IR RECEIVER
16788 M:      Sean Young <sean@mess.org>
16789 L:      linux-media@vger.kernel.org
16790 S:      Maintained
16791 F:      drivers/media/rc/serial_ir.c
16792
16793 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
16794 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16795 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16796 S:      Maintained
16797 F:      Documentation/devicetree/bindings/slimbus/
16798 F:      drivers/slimbus/
16799 F:      include/linux/slimbus.h
16800
16801 SFC NETWORK DRIVER
16802 M:      Edward Cree <ecree.xilinx@gmail.com>
16803 M:      Martin Habets <habetsm.xilinx@gmail.com>
16804 L:      netdev@vger.kernel.org
16805 S:      Supported
16806 F:      drivers/net/ethernet/sfc/
16807
16808 SFF/SFP/SFP+ MODULE SUPPORT
16809 M:      Russell King <linux@armlinux.org.uk>
16810 L:      netdev@vger.kernel.org
16811 S:      Maintained
16812 F:      drivers/net/phy/phylink.c
16813 F:      drivers/net/phy/sfp*
16814 F:      include/linux/mdio/mdio-i2c.h
16815 F:      include/linux/phylink.h
16816 F:      include/linux/sfp.h
16817 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)
16818
16819 SGI GRU DRIVER
16820 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
16821 S:      Maintained
16822 F:      drivers/misc/sgi-gru/
16823
16824 SGI XP/XPC/XPNET DRIVER
16825 M:      Robin Holt <robinmholt@gmail.com>
16826 M:      Steve Wahl <steve.wahl@hpe.com>
16827 R:      Mike Travis <mike.travis@hpe.com>
16828 S:      Maintained
16829 F:      drivers/misc/sgi-xp/
16830
16831 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
16832 M:      Karsten Graul <kgraul@linux.ibm.com>
16833 M:      Guvenc Gulce <guvenc@linux.ibm.com>
16834 L:      linux-s390@vger.kernel.org
16835 S:      Supported
16836 W:      http://www.ibm.com/developerworks/linux/linux390/
16837 F:      net/smc/
16838
16839 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
16840 M:      Linus Walleij <linus.walleij@linaro.org>
16841 L:      linux-iio@vger.kernel.org
16842 S:      Maintained
16843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
16844 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
16845 F:      drivers/iio/light/gp2ap002.c
16846
16847 SHARP RJ54N1CB0C SENSOR DRIVER
16848 M:      Jacopo Mondi <jacopo@jmondi.org>
16849 L:      linux-media@vger.kernel.org
16850 S:      Odd fixes
16851 T:      git git://linuxtv.org/media_tree.git
16852 F:      drivers/media/i2c/rj54n1cb0c.c
16853 F:      include/media/i2c/rj54n1cb0c.h
16854
16855 SH_VOU V4L2 OUTPUT DRIVER
16856 L:      linux-media@vger.kernel.org
16857 S:      Orphan
16858 F:      drivers/media/platform/sh_vou.c
16859 F:      include/media/drv-intf/sh_vou.h
16860
16861 SI2157 MEDIA DRIVER
16862 M:      Antti Palosaari <crope@iki.fi>
16863 L:      linux-media@vger.kernel.org
16864 S:      Maintained
16865 W:      https://linuxtv.org
16866 W:      http://palosaari.fi/linux/
16867 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16868 T:      git git://linuxtv.org/anttip/media_tree.git
16869 F:      drivers/media/tuners/si2157*
16870
16871 SI2165 MEDIA DRIVER
16872 M:      Matthias Schwarzott <zzam@gentoo.org>
16873 L:      linux-media@vger.kernel.org
16874 S:      Maintained
16875 W:      https://linuxtv.org
16876 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16877 F:      drivers/media/dvb-frontends/si2165*
16878
16879 SI2168 MEDIA DRIVER
16880 M:      Antti Palosaari <crope@iki.fi>
16881 L:      linux-media@vger.kernel.org
16882 S:      Maintained
16883 W:      https://linuxtv.org
16884 W:      http://palosaari.fi/linux/
16885 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16886 T:      git git://linuxtv.org/anttip/media_tree.git
16887 F:      drivers/media/dvb-frontends/si2168*
16888
16889 SI470X FM RADIO RECEIVER I2C DRIVER
16890 M:      Hans Verkuil <hverkuil@xs4all.nl>
16891 L:      linux-media@vger.kernel.org
16892 S:      Odd Fixes
16893 W:      https://linuxtv.org
16894 T:      git git://linuxtv.org/media_tree.git
16895 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
16896
16897 SI470X FM RADIO RECEIVER USB DRIVER
16898 M:      Hans Verkuil <hverkuil@xs4all.nl>
16899 L:      linux-media@vger.kernel.org
16900 S:      Maintained
16901 W:      https://linuxtv.org
16902 T:      git git://linuxtv.org/media_tree.git
16903 F:      drivers/media/radio/si470x/radio-si470x-common.c
16904 F:      drivers/media/radio/si470x/radio-si470x-usb.c
16905 F:      drivers/media/radio/si470x/radio-si470x.h
16906
16907 SI4713 FM RADIO TRANSMITTER I2C DRIVER
16908 M:      Eduardo Valentin <edubezval@gmail.com>
16909 L:      linux-media@vger.kernel.org
16910 S:      Odd Fixes
16911 W:      https://linuxtv.org
16912 T:      git git://linuxtv.org/media_tree.git
16913 F:      drivers/media/radio/si4713/si4713.?
16914
16915 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
16916 M:      Eduardo Valentin <edubezval@gmail.com>
16917 L:      linux-media@vger.kernel.org
16918 S:      Odd Fixes
16919 W:      https://linuxtv.org
16920 T:      git git://linuxtv.org/media_tree.git
16921 F:      drivers/media/radio/si4713/radio-platform-si4713.c
16922
16923 SI4713 FM RADIO TRANSMITTER USB DRIVER
16924 M:      Hans Verkuil <hverkuil@xs4all.nl>
16925 L:      linux-media@vger.kernel.org
16926 S:      Maintained
16927 W:      https://linuxtv.org
16928 T:      git git://linuxtv.org/media_tree.git
16929 F:      drivers/media/radio/si4713/radio-usb-si4713.c
16930
16931 SIANO DVB DRIVER
16932 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16933 L:      linux-media@vger.kernel.org
16934 S:      Odd fixes
16935 W:      https://linuxtv.org
16936 T:      git git://linuxtv.org/media_tree.git
16937 F:      drivers/media/common/siano/
16938 F:      drivers/media/mmc/siano/
16939 F:      drivers/media/usb/siano/
16940 F:      drivers/media/usb/siano/
16941
16942 SIFIVE DRIVERS
16943 M:      Palmer Dabbelt <palmer@dabbelt.com>
16944 M:      Paul Walmsley <paul.walmsley@sifive.com>
16945 L:      linux-riscv@lists.infradead.org
16946 S:      Supported
16947 T:      git git://github.com/sifive/riscv-linux.git
16948 N:      sifive
16949 K:      [^@]sifive
16950
16951 SIFIVE FU540 SYSTEM-ON-CHIP
16952 M:      Paul Walmsley <paul.walmsley@sifive.com>
16953 M:      Palmer Dabbelt <palmer@dabbelt.com>
16954 L:      linux-riscv@lists.infradead.org
16955 S:      Supported
16956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
16957 N:      fu540
16958 K:      fu540
16959
16960 SIFIVE PDMA DRIVER
16961 M:      Green Wan <green.wan@sifive.com>
16962 S:      Maintained
16963 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
16964 F:      drivers/dma/sf-pdma/
16965
16966 SILEAD TOUCHSCREEN DRIVER
16967 M:      Hans de Goede <hdegoede@redhat.com>
16968 L:      linux-input@vger.kernel.org
16969 L:      platform-driver-x86@vger.kernel.org
16970 S:      Maintained
16971 F:      drivers/input/touchscreen/silead.c
16972 F:      drivers/platform/x86/touchscreen_dmi.c
16973
16974 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
16975 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
16976 S:      Supported
16977 F:      drivers/staging/wfx/
16978
16979 SILICON MOTION SM712 FRAME BUFFER DRIVER
16980 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16981 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16982 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16983 L:      linux-fbdev@vger.kernel.org
16984 S:      Maintained
16985 F:      Documentation/fb/sm712fb.rst
16986 F:      drivers/video/fbdev/sm712*
16987
16988 SILVACO I3C DUAL-ROLE MASTER
16989 M:      Miquel Raynal <miquel.raynal@bootlin.com>
16990 M:      Conor Culhane <conor.culhane@silvaco.com>
16991 L:      linux-i3c@lists.infradead.org
16992 S:      Maintained
16993 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
16994 F:      drivers/i3c/master/svc-i3c-master.c
16995
16996 SIMPLEFB FB DRIVER
16997 M:      Hans de Goede <hdegoede@redhat.com>
16998 L:      linux-fbdev@vger.kernel.org
16999 S:      Maintained
17000 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
17001 F:      drivers/video/fbdev/simplefb.c
17002 F:      include/linux/platform_data/simplefb.h
17003
17004 SIMTEC EB110ATX (Chalice CATS)
17005 M:      Simtec Linux Team <linux@simtec.co.uk>
17006 S:      Supported
17007 W:      http://www.simtec.co.uk/products/EB110ATX/
17008
17009 SIMTEC EB2410ITX (BAST)
17010 M:      Simtec Linux Team <linux@simtec.co.uk>
17011 S:      Supported
17012 W:      http://www.simtec.co.uk/products/EB2410ITX/
17013 F:      arch/arm/mach-s3c/bast-ide.c
17014 F:      arch/arm/mach-s3c/bast-irq.c
17015 F:      arch/arm/mach-s3c/mach-bast.c
17016
17017 SIOX
17018 M:      Thorsten Scherer <t.scherer@eckelmann.de>
17019 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17020 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
17021 S:      Supported
17022 F:      drivers/gpio/gpio-siox.c
17023 F:      drivers/siox/*
17024 F:      include/trace/events/siox.h
17025
17026 SIPHASH PRF ROUTINES
17027 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17028 S:      Maintained
17029 F:      include/linux/siphash.h
17030 F:      lib/siphash.c
17031 F:      lib/test_siphash.c
17032
17033 SIS 190 ETHERNET DRIVER
17034 M:      Francois Romieu <romieu@fr.zoreil.com>
17035 L:      netdev@vger.kernel.org
17036 S:      Maintained
17037 F:      drivers/net/ethernet/sis/sis190.c
17038
17039 SIS 900/7016 FAST ETHERNET DRIVER
17040 M:      Daniele Venzano <venza@brownhat.org>
17041 L:      netdev@vger.kernel.org
17042 S:      Maintained
17043 W:      http://www.brownhat.org/sis900.html
17044 F:      drivers/net/ethernet/sis/sis900.*
17045
17046 SIS FRAMEBUFFER DRIVER
17047 M:      Thomas Winischhofer <thomas@winischhofer.net>
17048 S:      Maintained
17049 W:      http://www.winischhofer.net/linuxsisvga.shtml
17050 F:      Documentation/fb/sisfb.rst
17051 F:      drivers/video/fbdev/sis/
17052 F:      include/video/sisfb.h
17053
17054 SIS I2C TOUCHSCREEN DRIVER
17055 M:      Mika Penttilä <mika.penttila@nextfour.com>
17056 L:      linux-input@vger.kernel.org
17057 S:      Maintained
17058 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
17059 F:      drivers/input/touchscreen/sis_i2c.c
17060
17061 SIS USB2VGA DRIVER
17062 M:      Thomas Winischhofer <thomas@winischhofer.net>
17063 S:      Maintained
17064 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
17065 F:      drivers/usb/misc/sisusbvga/
17066
17067 SLAB ALLOCATOR
17068 M:      Christoph Lameter <cl@linux.com>
17069 M:      Pekka Enberg <penberg@kernel.org>
17070 M:      David Rientjes <rientjes@google.com>
17071 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
17072 M:      Andrew Morton <akpm@linux-foundation.org>
17073 M:      Vlastimil Babka <vbabka@suse.cz>
17074 L:      linux-mm@kvack.org
17075 S:      Maintained
17076 F:      include/linux/sl?b*.h
17077 F:      mm/sl?b*
17078
17079 SLEEPABLE READ-COPY UPDATE (SRCU)
17080 M:      Lai Jiangshan <jiangshanlai@gmail.com>
17081 M:      "Paul E. McKenney" <paulmck@kernel.org>
17082 M:      Josh Triplett <josh@joshtriplett.org>
17083 R:      Steven Rostedt <rostedt@goodmis.org>
17084 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17085 L:      rcu@vger.kernel.org
17086 S:      Supported
17087 W:      http://www.rdrop.com/users/paulmck/RCU/
17088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17089 F:      include/linux/srcu*.h
17090 F:      kernel/rcu/srcu*.c
17091
17092 SMACK SECURITY MODULE
17093 M:      Casey Schaufler <casey@schaufler-ca.com>
17094 L:      linux-security-module@vger.kernel.org
17095 S:      Maintained
17096 W:      http://schaufler-ca.com
17097 T:      git git://github.com/cschaufler/smack-next
17098 F:      Documentation/admin-guide/LSM/Smack.rst
17099 F:      security/smack/
17100
17101 SMC91x ETHERNET DRIVER
17102 M:      Nicolas Pitre <nico@fluxnic.net>
17103 S:      Odd Fixes
17104 F:      drivers/net/ethernet/smsc/smc91x.*
17105
17106 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17107 M:      Mark Rutland <mark.rutland@arm.com>
17108 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17109 M:      Sudeep Holla <sudeep.holla@arm.com>
17110 L:      linux-arm-kernel@lists.infradead.org
17111 S:      Maintained
17112 F:      drivers/firmware/smccc/
17113 F:      include/linux/arm-smccc.h
17114
17115 SMM665 HARDWARE MONITOR DRIVER
17116 M:      Guenter Roeck <linux@roeck-us.net>
17117 L:      linux-hwmon@vger.kernel.org
17118 S:      Maintained
17119 F:      Documentation/hwmon/smm665.rst
17120 F:      drivers/hwmon/smm665.c
17121
17122 SMSC EMC2103 HARDWARE MONITOR DRIVER
17123 M:      Steve Glendinning <steve.glendinning@shawell.net>
17124 L:      linux-hwmon@vger.kernel.org
17125 S:      Maintained
17126 F:      Documentation/hwmon/emc2103.rst
17127 F:      drivers/hwmon/emc2103.c
17128
17129 SMSC SCH5627 HARDWARE MONITOR DRIVER
17130 M:      Hans de Goede <hdegoede@redhat.com>
17131 L:      linux-hwmon@vger.kernel.org
17132 S:      Supported
17133 F:      Documentation/hwmon/sch5627.rst
17134 F:      drivers/hwmon/sch5627.c
17135
17136 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17137 M:      Steve Glendinning <steve.glendinning@shawell.net>
17138 L:      linux-fbdev@vger.kernel.org
17139 S:      Maintained
17140 F:      drivers/video/fbdev/smscufx.c
17141
17142 SMSC47B397 HARDWARE MONITOR DRIVER
17143 M:      Jean Delvare <jdelvare@suse.com>
17144 L:      linux-hwmon@vger.kernel.org
17145 S:      Maintained
17146 F:      Documentation/hwmon/smsc47b397.rst
17147 F:      drivers/hwmon/smsc47b397.c
17148
17149 SMSC911x ETHERNET DRIVER
17150 M:      Steve Glendinning <steve.glendinning@shawell.net>
17151 L:      netdev@vger.kernel.org
17152 S:      Maintained
17153 F:      drivers/net/ethernet/smsc/smsc911x.*
17154 F:      include/linux/smsc911x.h
17155
17156 SMSC9420 PCI ETHERNET DRIVER
17157 M:      Steve Glendinning <steve.glendinning@shawell.net>
17158 L:      netdev@vger.kernel.org
17159 S:      Maintained
17160 F:      drivers/net/ethernet/smsc/smsc9420.*
17161
17162 SOCIONEXT (SNI) AVE NETWORK DRIVER
17163 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17164 L:      netdev@vger.kernel.org
17165 S:      Maintained
17166 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17167 F:      drivers/net/ethernet/socionext/sni_ave.c
17168
17169 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17170 M:      Jassi Brar <jaswinder.singh@linaro.org>
17171 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
17172 L:      netdev@vger.kernel.org
17173 S:      Maintained
17174 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
17175 F:      drivers/net/ethernet/socionext/netsec.c
17176
17177 SOCIONEXT (SNI) Synquacer SPI DRIVER
17178 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
17179 M:      Jassi Brar <jaswinder.singh@linaro.org>
17180 L:      linux-spi@vger.kernel.org
17181 S:      Maintained
17182 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
17183 F:      drivers/spi/spi-synquacer.c
17184
17185 SOCIONEXT SYNQUACER I2C DRIVER
17186 M:      Ard Biesheuvel <ardb@kernel.org>
17187 L:      linux-i2c@vger.kernel.org
17188 S:      Maintained
17189 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17190 F:      drivers/i2c/busses/i2c-synquacer.c
17191
17192 SOCIONEXT UNIPHIER SOUND DRIVER
17193 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17194 S:      Orphan
17195 F:      sound/soc/uniphier/
17196
17197 SOEKRIS NET48XX LED SUPPORT
17198 M:      Chris Boot <bootc@bootc.net>
17199 S:      Maintained
17200 F:      drivers/leds/leds-net48xx.c
17201
17202 SOFT-IWARP DRIVER (siw)
17203 M:      Bernard Metzler <bmt@zurich.ibm.com>
17204 L:      linux-rdma@vger.kernel.org
17205 S:      Supported
17206 F:      drivers/infiniband/sw/siw/
17207 F:      include/uapi/rdma/siw-abi.h
17208
17209 SOFT-ROCE DRIVER (rxe)
17210 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
17211 L:      linux-rdma@vger.kernel.org
17212 S:      Supported
17213 F:      drivers/infiniband/sw/rxe/
17214 F:      include/uapi/rdma/rdma_user_rxe.h
17215
17216 SOFTLOGIC 6x10 MPEG CODEC
17217 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17218 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17219 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17220 M:      Ismael Luceno <ismael@iodev.co.uk>
17221 L:      linux-media@vger.kernel.org
17222 S:      Supported
17223 F:      drivers/media/pci/solo6x10/
17224
17225 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17226 M:      James Morse <james.morse@arm.com>
17227 L:      linux-arm-kernel@lists.infradead.org
17228 S:      Maintained
17229 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
17230 F:      drivers/firmware/arm_sdei.c
17231 F:      include/linux/arm_sdei.h
17232 F:      include/uapi/linux/arm_sdei.h
17233
17234 SOFTWARE NODES
17235 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17236 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17237 L:      linux-acpi@vger.kernel.org
17238 S:      Maintained
17239 F:      drivers/base/swnode.c
17240
17241 SOFTWARE RAID (Multiple Disks) SUPPORT
17242 M:      Song Liu <song@kernel.org>
17243 L:      linux-raid@vger.kernel.org
17244 S:      Supported
17245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17246 F:      drivers/md/Kconfig
17247 F:      drivers/md/Makefile
17248 F:      drivers/md/md*
17249 F:      drivers/md/raid*
17250 F:      include/linux/raid/
17251 F:      include/uapi/linux/raid/
17252
17253 SOLIDRUN CLEARFOG SUPPORT
17254 M:      Russell King <linux@armlinux.org.uk>
17255 S:      Maintained
17256 F:      arch/arm/boot/dts/armada-388-clearfog*
17257 F:      arch/arm/boot/dts/armada-38x-solidrun-*
17258
17259 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17260 M:      Russell King <linux@armlinux.org.uk>
17261 S:      Maintained
17262 F:      arch/arm/boot/dts/imx6*-cubox-i*
17263 F:      arch/arm/boot/dts/imx6*-hummingboard*
17264 F:      arch/arm/boot/dts/imx6*-sr-*
17265
17266 SONIC NETWORK DRIVER
17267 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17268 L:      netdev@vger.kernel.org
17269 S:      Maintained
17270 F:      drivers/net/ethernet/natsemi/sonic.*
17271
17272 SONICS SILICON BACKPLANE DRIVER (SSB)
17273 M:      Michael Buesch <m@bues.ch>
17274 L:      linux-wireless@vger.kernel.org
17275 S:      Maintained
17276 F:      drivers/ssb/
17277 F:      include/linux/ssb/
17278
17279 SONY IMX208 SENSOR DRIVER
17280 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17281 L:      linux-media@vger.kernel.org
17282 S:      Maintained
17283 T:      git git://linuxtv.org/media_tree.git
17284 F:      drivers/media/i2c/imx208.c
17285
17286 SONY IMX214 SENSOR DRIVER
17287 M:      Ricardo Ribalda <ribalda@kernel.org>
17288 L:      linux-media@vger.kernel.org
17289 S:      Maintained
17290 T:      git git://linuxtv.org/media_tree.git
17291 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
17292 F:      drivers/media/i2c/imx214.c
17293
17294 SONY IMX219 SENSOR DRIVER
17295 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
17296 L:      linux-media@vger.kernel.org
17297 S:      Maintained
17298 T:      git git://linuxtv.org/media_tree.git
17299 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
17300 F:      drivers/media/i2c/imx219.c
17301
17302 SONY IMX258 SENSOR DRIVER
17303 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17304 L:      linux-media@vger.kernel.org
17305 S:      Maintained
17306 T:      git git://linuxtv.org/media_tree.git
17307 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
17308 F:      drivers/media/i2c/imx258.c
17309
17310 SONY IMX274 SENSOR DRIVER
17311 M:      Leon Luo <leonl@leopardimaging.com>
17312 L:      linux-media@vger.kernel.org
17313 S:      Maintained
17314 T:      git git://linuxtv.org/media_tree.git
17315 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
17316 F:      drivers/media/i2c/imx274.c
17317
17318 SONY IMX290 SENSOR DRIVER
17319 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17320 L:      linux-media@vger.kernel.org
17321 S:      Maintained
17322 T:      git git://linuxtv.org/media_tree.git
17323 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
17324 F:      drivers/media/i2c/imx290.c
17325
17326 SONY IMX319 SENSOR DRIVER
17327 M:      Bingbu Cao <bingbu.cao@intel.com>
17328 L:      linux-media@vger.kernel.org
17329 S:      Maintained
17330 T:      git git://linuxtv.org/media_tree.git
17331 F:      drivers/media/i2c/imx319.c
17332
17333 SONY IMX334 SENSOR DRIVER
17334 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17335 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17336 L:      linux-media@vger.kernel.org
17337 S:      Maintained
17338 T:      git git://linuxtv.org/media_tree.git
17339 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17340 F:      drivers/media/i2c/imx334.c
17341
17342 SONY IMX355 SENSOR DRIVER
17343 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
17344 L:      linux-media@vger.kernel.org
17345 S:      Maintained
17346 T:      git git://linuxtv.org/media_tree.git
17347 F:      drivers/media/i2c/imx355.c
17348
17349 SONY MEMORYSTICK SUBSYSTEM
17350 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17351 M:      Alex Dubov <oakad@yahoo.com>
17352 M:      Ulf Hansson <ulf.hansson@linaro.org>
17353 L:      linux-mmc@vger.kernel.org
17354 S:      Maintained
17355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17356 F:      drivers/memstick/
17357 F:      include/linux/memstick.h
17358
17359 SONY VAIO CONTROL DEVICE DRIVER
17360 M:      Mattia Dongili <malattia@linux.it>
17361 L:      platform-driver-x86@vger.kernel.org
17362 S:      Maintained
17363 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17364 F:      Documentation/admin-guide/laptops/sony-laptop.rst
17365 F:      drivers/char/sonypi.c
17366 F:      drivers/platform/x86/sony-laptop.c
17367 F:      include/linux/sony-laptop.h
17368
17369 SOUND
17370 M:      Jaroslav Kysela <perex@perex.cz>
17371 M:      Takashi Iwai <tiwai@suse.com>
17372 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17373 S:      Maintained
17374 W:      http://www.alsa-project.org/
17375 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
17376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17377 F:      Documentation/sound/
17378 F:      include/sound/
17379 F:      include/uapi/sound/
17380 F:      sound/
17381
17382 SOUND - COMPRESSED AUDIO
17383 M:      Vinod Koul <vkoul@kernel.org>
17384 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17385 S:      Supported
17386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17387 F:      Documentation/sound/designs/compress-offload.rst
17388 F:      include/sound/compress_driver.h
17389 F:      include/uapi/sound/compress_*
17390 F:      sound/core/compress_offload.c
17391 F:      sound/soc/soc-compress.c
17392
17393 SOUND - DMAENGINE HELPERS
17394 M:      Lars-Peter Clausen <lars@metafoo.de>
17395 S:      Supported
17396 F:      include/sound/dmaengine_pcm.h
17397 F:      sound/core/pcm_dmaengine.c
17398 F:      sound/soc/soc-generic-dmaengine-pcm.c
17399
17400 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17401 M:      Liam Girdwood <lgirdwood@gmail.com>
17402 M:      Mark Brown <broonie@kernel.org>
17403 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17404 S:      Supported
17405 W:      http://alsa-project.org/main/index.php/ASoC
17406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17407 F:      Documentation/devicetree/bindings/sound/
17408 F:      Documentation/sound/soc/
17409 F:      include/dt-bindings/sound/
17410 F:      include/sound/soc*
17411 F:      sound/soc/
17412
17413 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17414 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17415 M:      Liam Girdwood <lgirdwood@gmail.com>
17416 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17417 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
17418 M:      Daniel Baluta <daniel.baluta@nxp.com>
17419 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17420 S:      Supported
17421 W:      https://github.com/thesofproject/linux/
17422 F:      sound/soc/sof/
17423
17424 SOUNDWIRE SUBSYSTEM
17425 M:      Vinod Koul <vkoul@kernel.org>
17426 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
17427 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17428 R:      Sanyog Kale <sanyog.r.kale@intel.com>
17429 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17430 S:      Supported
17431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17432 F:      Documentation/driver-api/soundwire/
17433 F:      drivers/soundwire/
17434 F:      include/linux/soundwire/
17435
17436 SP2 MEDIA DRIVER
17437 M:      Olli Salonen <olli.salonen@iki.fi>
17438 L:      linux-media@vger.kernel.org
17439 S:      Maintained
17440 W:      https://linuxtv.org
17441 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17442 F:      drivers/media/dvb-frontends/sp2*
17443
17444 SPARC + UltraSPARC (sparc/sparc64)
17445 M:      "David S. Miller" <davem@davemloft.net>
17446 L:      sparclinux@vger.kernel.org
17447 S:      Maintained
17448 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
17449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17451 F:      arch/sparc/
17452 F:      drivers/sbus/
17453
17454 SPARC SERIAL DRIVERS
17455 M:      "David S. Miller" <davem@davemloft.net>
17456 L:      sparclinux@vger.kernel.org
17457 S:      Maintained
17458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17460 F:      drivers/tty/serial/suncore.c
17461 F:      drivers/tty/serial/sunhv.c
17462 F:      drivers/tty/serial/sunsab.c
17463 F:      drivers/tty/serial/sunsab.h
17464 F:      drivers/tty/serial/sunsu.c
17465 F:      drivers/tty/serial/sunzilog.c
17466 F:      drivers/tty/serial/sunzilog.h
17467 F:      drivers/tty/vcc.c
17468 F:      include/linux/sunserialcore.h
17469
17470 SPARSE CHECKER
17471 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17472 L:      linux-sparse@vger.kernel.org
17473 S:      Maintained
17474 W:      https://sparse.docs.kernel.org/
17475 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17476 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
17477 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17478 F:      include/linux/compiler.h
17479
17480 SPEAKUP CONSOLE SPEECH DRIVER
17481 M:      William Hubbs <w.d.hubbs@gmail.com>
17482 M:      Chris Brannon <chris@the-brannons.com>
17483 M:      Kirk Reiser <kirk@reisers.ca>
17484 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
17485 L:      speakup@linux-speakup.org
17486 S:      Odd Fixes
17487 W:      http://www.linux-speakup.org/
17488 W:      https://github.com/linux-speakup/speakup
17489 B:      https://github.com/linux-speakup/speakup/issues
17490 F:      drivers/accessibility/speakup/
17491
17492 SPEAR CLOCK FRAMEWORK SUPPORT
17493 M:      Viresh Kumar <vireshk@kernel.org>
17494 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17495 S:      Maintained
17496 W:      http://www.st.com/spear
17497 F:      drivers/clk/spear/
17498
17499 SPEAR PLATFORM SUPPORT
17500 M:      Viresh Kumar <vireshk@kernel.org>
17501 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
17502 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17503 S:      Maintained
17504 W:      http://www.st.com/spear
17505 F:      arch/arm/boot/dts/spear*
17506 F:      arch/arm/mach-spear/
17507
17508 SPI NOR SUBSYSTEM
17509 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
17510 R:      Michael Walle <michael@walle.cc>
17511 R:      Pratyush Yadav <p.yadav@ti.com>
17512 L:      linux-mtd@lists.infradead.org
17513 S:      Maintained
17514 W:      http://www.linux-mtd.infradead.org/
17515 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
17516 C:      irc://irc.oftc.net/mtd
17517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17518 F:      drivers/mtd/spi-nor/
17519 F:      include/linux/mtd/spi-nor.h
17520
17521 SPI SUBSYSTEM
17522 M:      Mark Brown <broonie@kernel.org>
17523 L:      linux-spi@vger.kernel.org
17524 S:      Maintained
17525 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
17526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17527 F:      Documentation/devicetree/bindings/spi/
17528 F:      Documentation/spi/
17529 F:      drivers/spi/
17530 F:      include/linux/spi/
17531 F:      include/uapi/linux/spi/
17532 F:      tools/spi/
17533
17534 SPIDERNET NETWORK DRIVER for CELL
17535 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
17536 M:      Geoff Levand <geoff@infradead.org>
17537 L:      netdev@vger.kernel.org
17538 L:      linuxppc-dev@lists.ozlabs.org
17539 S:      Maintained
17540 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17541 F:      drivers/net/ethernet/toshiba/spider_net*
17542
17543 SPMI SUBSYSTEM
17544 M:      Stephen Boyd <sboyd@kernel.org>
17545 L:      linux-kernel@vger.kernel.org
17546 S:      Maintained
17547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17548 F:      Documentation/devicetree/bindings/spmi/
17549 F:      drivers/spmi/
17550 F:      include/dt-bindings/spmi/spmi.h
17551 F:      include/linux/spmi.h
17552 F:      include/trace/events/spmi.h
17553
17554 SPU FILE SYSTEM
17555 M:      Jeremy Kerr <jk@ozlabs.org>
17556 L:      linuxppc-dev@lists.ozlabs.org
17557 S:      Supported
17558 W:      http://www.ibm.com/developerworks/power/cell/
17559 F:      Documentation/filesystems/spufs/spufs.rst
17560 F:      arch/powerpc/platforms/cell/spufs/
17561
17562 SQUASHFS FILE SYSTEM
17563 M:      Phillip Lougher <phillip@squashfs.org.uk>
17564 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
17565 S:      Maintained
17566 W:      http://squashfs.org.uk
17567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17568 F:      Documentation/filesystems/squashfs.rst
17569 F:      fs/squashfs/
17570
17571 SRM (Alpha) environment access
17572 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
17573 S:      Maintained
17574 F:      arch/alpha/kernel/srm_env.c
17575
17576 ST LSM6DSx IMU IIO DRIVER
17577 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
17578 L:      linux-iio@vger.kernel.org
17579 S:      Maintained
17580 W:      http://www.st.com/
17581 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17582 F:      drivers/iio/imu/st_lsm6dsx/
17583
17584 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17585 M:      Mickael Guene <mickael.guene@st.com>
17586 L:      linux-media@vger.kernel.org
17587 S:      Maintained
17588 T:      git git://linuxtv.org/media_tree.git
17589 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17590 F:      drivers/media/i2c/st-mipid02.c
17591
17592 ST STM32 I2C/SMBUS DRIVER
17593 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
17594 M:      Alain Volmat <alain.volmat@foss.st.com>
17595 L:      linux-i2c@vger.kernel.org
17596 S:      Maintained
17597 F:      drivers/i2c/busses/i2c-stm32*
17598
17599 ST STM32 SPI DRIVER
17600 M:      Alain Volmat <alain.volmat@foss.st.com>
17601 L:      linux-spi@vger.kernel.org
17602 S:      Maintained
17603 F:      drivers/spi/spi-stm32.c
17604
17605 ST STPDDC60 DRIVER
17606 M:      Daniel Nilsson <daniel.nilsson@flex.com>
17607 L:      linux-hwmon@vger.kernel.org
17608 S:      Maintained
17609 F:      Documentation/hwmon/stpddc60.rst
17610 F:      drivers/hwmon/pmbus/stpddc60.c
17611
17612 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
17613 M:      Song Qiang <songqiang1304521@gmail.com>
17614 L:      linux-iio@vger.kernel.org
17615 S:      Maintained
17616 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
17617 F:      drivers/iio/proximity/vl53l0x-i2c.c
17618
17619 STABLE BRANCH
17620 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17621 M:      Sasha Levin <sashal@kernel.org>
17622 L:      stable@vger.kernel.org
17623 S:      Supported
17624 F:      Documentation/process/stable-kernel-rules.rst
17625
17626 STAGING - ATOMISP DRIVER
17627 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17628 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
17629 L:      linux-media@vger.kernel.org
17630 S:      Maintained
17631 F:      drivers/staging/media/atomisp/
17632
17633 STAGING - FIELDBUS SUBSYSTEM
17634 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17635 S:      Maintained
17636 F:      drivers/staging/fieldbus/*
17637 F:      drivers/staging/fieldbus/Documentation/
17638
17639 STAGING - HMS ANYBUS-S BUS
17640 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17641 S:      Maintained
17642 F:      drivers/staging/fieldbus/anybuss/
17643
17644 STAGING - INDUSTRIAL IO
17645 M:      Jonathan Cameron <jic23@kernel.org>
17646 L:      linux-iio@vger.kernel.org
17647 S:      Odd Fixes
17648 F:      Documentation/devicetree/bindings/staging/iio/
17649 F:      drivers/staging/iio/
17650
17651 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
17652 M:      Marc Dietrich <marvin24@gmx.de>
17653 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
17654 L:      linux-tegra@vger.kernel.org
17655 S:      Maintained
17656 F:      drivers/staging/nvec/
17657
17658 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
17659 M:      Jens Frederich <jfrederich@gmail.com>
17660 M:      Daniel Drake <dsd@laptop.org>
17661 M:      Jon Nettleton <jon.nettleton@gmail.com>
17662 S:      Maintained
17663 W:      http://wiki.laptop.org/go/DCON
17664 F:      drivers/staging/olpc_dcon/
17665
17666 STAGING - REALTEK RTL8188EU DRIVERS
17667 M:      Larry Finger <Larry.Finger@lwfinger.net>
17668 S:      Odd Fixes
17669 F:      drivers/staging/rtl8188eu/
17670
17671 STAGING - REALTEK RTL8712U DRIVERS
17672 M:      Larry Finger <Larry.Finger@lwfinger.net>
17673 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
17674 S:      Odd Fixes
17675 F:      drivers/staging/rtl8712/
17676
17677 STAGING - SEPS525 LCD CONTROLLER DRIVERS
17678 M:      Michael Hennerich <michael.hennerich@analog.com>
17679 L:      linux-fbdev@vger.kernel.org
17680 S:      Supported
17681 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
17682 F:      drivers/staging/fbtft/fb_seps525.c
17683
17684 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
17685 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17686 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17687 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17688 L:      linux-fbdev@vger.kernel.org
17689 S:      Maintained
17690 F:      drivers/staging/sm750fb/
17691
17692 STAGING - VIA VT665X DRIVERS
17693 M:      Forest Bond <forest@alittletooquiet.net>
17694 S:      Odd Fixes
17695 F:      drivers/staging/vt665?/
17696
17697 STAGING SUBSYSTEM
17698 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17699 L:      linux-staging@lists.linux.dev
17700 S:      Supported
17701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
17702 F:      drivers/staging/
17703
17704 STARFIRE/DURALAN NETWORK DRIVER
17705 M:      Ion Badulescu <ionut@badula.org>
17706 S:      Odd Fixes
17707 F:      drivers/net/ethernet/adaptec/starfire*
17708
17709 STATIC BRANCH/CALL
17710 M:      Peter Zijlstra <peterz@infradead.org>
17711 M:      Josh Poimboeuf <jpoimboe@redhat.com>
17712 M:      Jason Baron <jbaron@akamai.com>
17713 R:      Steven Rostedt <rostedt@goodmis.org>
17714 R:      Ard Biesheuvel <ardb@kernel.org>
17715 S:      Supported
17716 F:      arch/*/include/asm/jump_label*.h
17717 F:      arch/*/include/asm/static_call*.h
17718 F:      arch/*/kernel/jump_label.c
17719 F:      arch/*/kernel/static_call.c
17720 F:      include/linux/jump_label*.h
17721 F:      include/linux/static_call*.h
17722 F:      kernel/jump_label.c
17723 F:      kernel/static_call.c
17724
17725 STI AUDIO (ASoC) DRIVERS
17726 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17727 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17728 S:      Maintained
17729 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
17730 F:      sound/soc/sti/
17731
17732 STI CEC DRIVER
17733 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
17734 S:      Maintained
17735 F:      Documentation/devicetree/bindings/media/stih-cec.txt
17736 F:      drivers/media/cec/platform/sti/
17737
17738 STK1160 USB VIDEO CAPTURE DRIVER
17739 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17740 L:      linux-media@vger.kernel.org
17741 S:      Maintained
17742 T:      git git://linuxtv.org/media_tree.git
17743 F:      drivers/media/usb/stk1160/
17744
17745 STM32 AUDIO (ASoC) DRIVERS
17746 M:      Olivier Moysan <olivier.moysan@foss.st.com>
17747 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17748 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17749 S:      Maintained
17750 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-*.yaml
17751 F:      sound/soc/stm/
17752
17753 STM32 TIMER/LPTIMER DRIVERS
17754 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
17755 S:      Maintained
17756 F:      Documentation/ABI/testing/*timer-stm32
17757 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
17758 F:      drivers/*/stm32-*timer*
17759 F:      drivers/pwm/pwm-stm32*
17760 F:      include/linux/*/stm32-*tim*
17761
17762 STMMAC ETHERNET DRIVER
17763 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
17764 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
17765 M:      Jose Abreu <joabreu@synopsys.com>
17766 L:      netdev@vger.kernel.org
17767 S:      Supported
17768 W:      http://www.stlinux.com
17769 F:      Documentation/networking/device_drivers/ethernet/stmicro/
17770 F:      drivers/net/ethernet/stmicro/stmmac/
17771
17772 SUN3/3X
17773 M:      Sam Creasey <sammy@sammy.net>
17774 S:      Maintained
17775 W:      http://sammy.net/sun3/
17776 F:      arch/m68k/include/asm/sun3*
17777 F:      arch/m68k/kernel/*sun3*
17778 F:      arch/m68k/sun3*/
17779 F:      drivers/net/ethernet/i825xx/sun3*
17780
17781 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
17782 M:      Hans de Goede <hdegoede@redhat.com>
17783 L:      linux-input@vger.kernel.org
17784 S:      Maintained
17785 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
17786 F:      drivers/input/keyboard/sun4i-lradc-keys.c
17787
17788 SUNDANCE NETWORK DRIVER
17789 M:      Denis Kirjanov <kda@linux-powerpc.org>
17790 L:      netdev@vger.kernel.org
17791 S:      Maintained
17792 F:      drivers/net/ethernet/dlink/sundance.c
17793
17794 SUPERH
17795 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
17796 M:      Rich Felker <dalias@libc.org>
17797 L:      linux-sh@vger.kernel.org
17798 S:      Maintained
17799 Q:      http://patchwork.kernel.org/project/linux-sh/list/
17800 F:      Documentation/sh/
17801 F:      arch/sh/
17802 F:      drivers/sh/
17803
17804 SUSPEND TO RAM
17805 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
17806 M:      Len Brown <len.brown@intel.com>
17807 M:      Pavel Machek <pavel@ucw.cz>
17808 L:      linux-pm@vger.kernel.org
17809 S:      Supported
17810 B:      https://bugzilla.kernel.org
17811 F:      Documentation/power/
17812 F:      arch/x86/kernel/acpi/
17813 F:      drivers/base/power/
17814 F:      include/linux/freezer.h
17815 F:      include/linux/pm.h
17816 F:      include/linux/suspend.h
17817 F:      kernel/power/
17818
17819 SVGA HANDLING
17820 M:      Martin Mares <mj@ucw.cz>
17821 L:      linux-video@atrey.karlin.mff.cuni.cz
17822 S:      Maintained
17823 F:      Documentation/admin-guide/svga.rst
17824 F:      arch/x86/boot/video*
17825
17826 SWIOTLB SUBSYSTEM
17827 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17828 L:      iommu@lists.linux-foundation.org
17829 S:      Supported
17830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
17831 F:      arch/*/kernel/pci-swiotlb.c
17832 F:      include/linux/swiotlb.h
17833 F:      kernel/dma/swiotlb.c
17834
17835 SWITCHDEV
17836 M:      Jiri Pirko <jiri@resnulli.us>
17837 M:      Ivan Vecera <ivecera@redhat.com>
17838 L:      netdev@vger.kernel.org
17839 S:      Supported
17840 F:      include/net/switchdev.h
17841 F:      net/switchdev/
17842
17843 SY8106A REGULATOR DRIVER
17844 M:      Icenowy Zheng <icenowy@aosc.io>
17845 S:      Maintained
17846 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
17847 F:      drivers/regulator/sy8106a-regulator.c
17848
17849 SYNC FILE FRAMEWORK
17850 M:      Sumit Semwal <sumit.semwal@linaro.org>
17851 R:      Gustavo Padovan <gustavo@padovan.org>
17852 L:      linux-media@vger.kernel.org
17853 L:      dri-devel@lists.freedesktop.org
17854 S:      Maintained
17855 T:      git git://anongit.freedesktop.org/drm/drm-misc
17856 F:      Documentation/driver-api/sync_file.rst
17857 F:      drivers/dma-buf/dma-fence*
17858 F:      drivers/dma-buf/sw_sync.c
17859 F:      drivers/dma-buf/sync_*
17860 F:      include/linux/sync_file.h
17861 F:      include/uapi/linux/sync_file.h
17862
17863 SYNOPSYS ARC ARCHITECTURE
17864 M:      Vineet Gupta <vgupta@kernel.org>
17865 L:      linux-snps-arc@lists.infradead.org
17866 S:      Supported
17867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
17868 F:      Documentation/devicetree/bindings/arc/*
17869 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
17870 F:      arch/arc/
17871 F:      drivers/clocksource/arc_timer.c
17872 F:      drivers/tty/serial/arc_uart.c
17873
17874 SYNOPSYS ARC HSDK SDP pll clock driver
17875 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17876 S:      Supported
17877 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
17878 F:      drivers/clk/clk-hsdk-pll.c
17879
17880 SYNOPSYS ARC SDP clock driver
17881 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17882 S:      Supported
17883 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
17884 F:      drivers/clk/axs10x/*
17885
17886 SYNOPSYS ARC SDP platform support
17887 M:      Alexey Brodkin <abrodkin@synopsys.com>
17888 S:      Supported
17889 F:      Documentation/devicetree/bindings/arc/axs10*
17890 F:      arch/arc/boot/dts/ax*
17891 F:      arch/arc/plat-axs10x
17892
17893 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
17894 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17895 S:      Supported
17896 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
17897 F:      drivers/reset/reset-axs10x.c
17898
17899 SYNOPSYS CREG GPIO DRIVER
17900 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17901 S:      Maintained
17902 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
17903 F:      drivers/gpio/gpio-creg-snps.c
17904
17905 SYNOPSYS DESIGNWARE 8250 UART DRIVER
17906 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17907 S:      Maintained
17908 F:      drivers/tty/serial/8250/8250_dw.c
17909 F:      drivers/tty/serial/8250/8250_dwlib.*
17910 F:      drivers/tty/serial/8250/8250_lpss.c
17911
17912 SYNOPSYS DESIGNWARE APB GPIO DRIVER
17913 M:      Hoan Tran <hoan@os.amperecomputing.com>
17914 M:      Serge Semin <fancer.lancer@gmail.com>
17915 L:      linux-gpio@vger.kernel.org
17916 S:      Maintained
17917 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
17918 F:      drivers/gpio/gpio-dwapb.c
17919
17920 SYNOPSYS DESIGNWARE APB SSI DRIVER
17921 M:      Serge Semin <fancer.lancer@gmail.com>
17922 L:      linux-spi@vger.kernel.org
17923 S:      Supported
17924 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
17925 F:      drivers/spi/spi-dw*
17926
17927 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
17928 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17929 S:      Maintained
17930 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
17931 F:      drivers/dma/dw-axi-dmac/
17932
17933 SYNOPSYS DESIGNWARE DMAC DRIVER
17934 M:      Viresh Kumar <vireshk@kernel.org>
17935 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17936 S:      Maintained
17937 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
17938 F:      drivers/dma/dw/
17939 F:      include/dt-bindings/dma/dw-dmac.h
17940 F:      include/linux/dma/dw.h
17941 F:      include/linux/platform_data/dma-dw.h
17942
17943 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
17944 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17945 L:      netdev@vger.kernel.org
17946 S:      Supported
17947 F:      drivers/net/ethernet/synopsys/
17948
17949 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
17950 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17951 L:      netdev@vger.kernel.org
17952 S:      Supported
17953 F:      drivers/net/pcs/pcs-xpcs.c
17954 F:      drivers/net/pcs/pcs-xpcs.h
17955 F:      include/linux/pcs/pcs-xpcs.h
17956
17957 SYNOPSYS DESIGNWARE I2C DRIVER
17958 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
17959 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17960 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
17961 L:      linux-i2c@vger.kernel.org
17962 S:      Maintained
17963 F:      drivers/i2c/busses/i2c-designware-*
17964
17965 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
17966 M:      Jaehoon Chung <jh80.chung@samsung.com>
17967 L:      linux-mmc@vger.kernel.org
17968 S:      Maintained
17969 F:      drivers/mmc/host/dw_mmc*
17970
17971 SYNOPSYS HSDK RESET CONTROLLER DRIVER
17972 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17973 S:      Supported
17974 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
17975 F:      drivers/reset/reset-hsdk.c
17976 F:      include/dt-bindings/reset/snps,hsdk-reset.h
17977
17978 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
17979 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
17980 M:      Manjunath M B <manjumb@synopsys.com>
17981 L:      linux-mmc@vger.kernel.org
17982 S:      Maintained
17983 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
17984
17985 SYSTEM CONFIGURATION (SYSCON)
17986 M:      Lee Jones <lee.jones@linaro.org>
17987 M:      Arnd Bergmann <arnd@arndb.de>
17988 S:      Supported
17989 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
17990 F:      drivers/mfd/syscon.c
17991
17992 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
17993 M:      Sudeep Holla <sudeep.holla@arm.com>
17994 R:      Cristian Marussi <cristian.marussi@arm.com>
17995 L:      linux-arm-kernel@lists.infradead.org
17996 S:      Maintained
17997 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
17998 F:      drivers/clk/clk-sc[mp]i.c
17999 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
18000 F:      drivers/firmware/arm_scmi/
18001 F:      drivers/firmware/arm_scpi.c
18002 F:      drivers/regulator/scmi-regulator.c
18003 F:      drivers/reset/reset-scmi.c
18004 F:      include/linux/sc[mp]i_protocol.h
18005 F:      include/trace/events/scmi.h
18006
18007 SYSTEM RESET/SHUTDOWN DRIVERS
18008 M:      Sebastian Reichel <sre@kernel.org>
18009 L:      linux-pm@vger.kernel.org
18010 S:      Maintained
18011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
18012 F:      Documentation/devicetree/bindings/power/reset/
18013 F:      drivers/power/reset/
18014
18015 SYSTEM TRACE MODULE CLASS
18016 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
18017 S:      Maintained
18018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
18019 F:      Documentation/trace/stm.rst
18020 F:      drivers/hwtracing/stm/
18021 F:      include/linux/stm.h
18022 F:      include/uapi/linux/stm.h
18023
18024 SYSTEM76 ACPI DRIVER
18025 M:      Jeremy Soller <jeremy@system76.com>
18026 M:      System76 Product Development <productdev@system76.com>
18027 L:      platform-driver-x86@vger.kernel.org
18028 S:      Maintained
18029 F:      drivers/platform/x86/system76_acpi.c
18030
18031 SYSV FILESYSTEM
18032 M:      Christoph Hellwig <hch@infradead.org>
18033 S:      Maintained
18034 F:      Documentation/filesystems/sysv-fs.rst
18035 F:      fs/sysv/
18036 F:      include/linux/sysv_fs.h
18037
18038 TASKSTATS STATISTICS INTERFACE
18039 M:      Balbir Singh <bsingharora@gmail.com>
18040 S:      Maintained
18041 F:      Documentation/accounting/taskstats*
18042 F:      include/linux/taskstats*
18043 F:      kernel/taskstats.c
18044
18045 TC subsystem
18046 M:      Jamal Hadi Salim <jhs@mojatatu.com>
18047 M:      Cong Wang <xiyou.wangcong@gmail.com>
18048 M:      Jiri Pirko <jiri@resnulli.us>
18049 L:      netdev@vger.kernel.org
18050 S:      Maintained
18051 F:      include/net/pkt_cls.h
18052 F:      include/net/pkt_sched.h
18053 F:      include/net/tc_act/
18054 F:      include/uapi/linux/pkt_cls.h
18055 F:      include/uapi/linux/pkt_sched.h
18056 F:      include/uapi/linux/tc_act/
18057 F:      include/uapi/linux/tc_ematch/
18058 F:      net/sched/
18059
18060 TC90522 MEDIA DRIVER
18061 M:      Akihiro Tsukada <tskd08@gmail.com>
18062 L:      linux-media@vger.kernel.org
18063 S:      Odd Fixes
18064 F:      drivers/media/dvb-frontends/tc90522*
18065
18066 TCP LOW PRIORITY MODULE
18067 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
18068 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
18069 S:      Maintained
18070 W:      http://tcp-lp-mod.sourceforge.net/
18071 F:      net/ipv4/tcp_lp.c
18072
18073 TDA10071 MEDIA DRIVER
18074 M:      Antti Palosaari <crope@iki.fi>
18075 L:      linux-media@vger.kernel.org
18076 S:      Maintained
18077 W:      https://linuxtv.org
18078 W:      http://palosaari.fi/linux/
18079 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18080 T:      git git://linuxtv.org/anttip/media_tree.git
18081 F:      drivers/media/dvb-frontends/tda10071*
18082
18083 TDA18212 MEDIA DRIVER
18084 M:      Antti Palosaari <crope@iki.fi>
18085 L:      linux-media@vger.kernel.org
18086 S:      Maintained
18087 W:      https://linuxtv.org
18088 W:      http://palosaari.fi/linux/
18089 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18090 T:      git git://linuxtv.org/anttip/media_tree.git
18091 F:      drivers/media/tuners/tda18212*
18092
18093 TDA18218 MEDIA DRIVER
18094 M:      Antti Palosaari <crope@iki.fi>
18095 L:      linux-media@vger.kernel.org
18096 S:      Maintained
18097 W:      https://linuxtv.org
18098 W:      http://palosaari.fi/linux/
18099 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18100 T:      git git://linuxtv.org/anttip/media_tree.git
18101 F:      drivers/media/tuners/tda18218*
18102
18103 TDA18250 MEDIA DRIVER
18104 M:      Olli Salonen <olli.salonen@iki.fi>
18105 L:      linux-media@vger.kernel.org
18106 S:      Maintained
18107 W:      https://linuxtv.org
18108 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18109 T:      git git://linuxtv.org/media_tree.git
18110 F:      drivers/media/tuners/tda18250*
18111
18112 TDA18271 MEDIA DRIVER
18113 M:      Michael Krufky <mkrufky@linuxtv.org>
18114 L:      linux-media@vger.kernel.org
18115 S:      Maintained
18116 W:      https://linuxtv.org
18117 W:      http://github.com/mkrufky
18118 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18119 T:      git git://linuxtv.org/mkrufky/tuners.git
18120 F:      drivers/media/tuners/tda18271*
18121
18122 TDA1997x MEDIA DRIVER
18123 M:      Tim Harvey <tharvey@gateworks.com>
18124 L:      linux-media@vger.kernel.org
18125 S:      Maintained
18126 W:      https://linuxtv.org
18127 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18128 F:      drivers/media/i2c/tda1997x.*
18129
18130 TDA827x MEDIA DRIVER
18131 M:      Michael Krufky <mkrufky@linuxtv.org>
18132 L:      linux-media@vger.kernel.org
18133 S:      Maintained
18134 W:      https://linuxtv.org
18135 W:      http://github.com/mkrufky
18136 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18137 T:      git git://linuxtv.org/mkrufky/tuners.git
18138 F:      drivers/media/tuners/tda8290.*
18139
18140 TDA8290 MEDIA DRIVER
18141 M:      Michael Krufky <mkrufky@linuxtv.org>
18142 L:      linux-media@vger.kernel.org
18143 S:      Maintained
18144 W:      https://linuxtv.org
18145 W:      http://github.com/mkrufky
18146 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18147 T:      git git://linuxtv.org/mkrufky/tuners.git
18148 F:      drivers/media/tuners/tda8290.*
18149
18150 TDA9840 MEDIA DRIVER
18151 M:      Hans Verkuil <hverkuil@xs4all.nl>
18152 L:      linux-media@vger.kernel.org
18153 S:      Maintained
18154 W:      https://linuxtv.org
18155 T:      git git://linuxtv.org/media_tree.git
18156 F:      drivers/media/i2c/tda9840*
18157
18158 TEA5761 TUNER DRIVER
18159 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18160 L:      linux-media@vger.kernel.org
18161 S:      Odd fixes
18162 W:      https://linuxtv.org
18163 T:      git git://linuxtv.org/media_tree.git
18164 F:      drivers/media/tuners/tea5761.*
18165
18166 TEA5767 TUNER DRIVER
18167 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18168 L:      linux-media@vger.kernel.org
18169 S:      Maintained
18170 W:      https://linuxtv.org
18171 T:      git git://linuxtv.org/media_tree.git
18172 F:      drivers/media/tuners/tea5767.*
18173
18174 TEA6415C MEDIA DRIVER
18175 M:      Hans Verkuil <hverkuil@xs4all.nl>
18176 L:      linux-media@vger.kernel.org
18177 S:      Maintained
18178 W:      https://linuxtv.org
18179 T:      git git://linuxtv.org/media_tree.git
18180 F:      drivers/media/i2c/tea6415c*
18181
18182 TEA6420 MEDIA DRIVER
18183 M:      Hans Verkuil <hverkuil@xs4all.nl>
18184 L:      linux-media@vger.kernel.org
18185 S:      Maintained
18186 W:      https://linuxtv.org
18187 T:      git git://linuxtv.org/media_tree.git
18188 F:      drivers/media/i2c/tea6420*
18189
18190 TEAM DRIVER
18191 M:      Jiri Pirko <jiri@resnulli.us>
18192 L:      netdev@vger.kernel.org
18193 S:      Supported
18194 F:      drivers/net/team/
18195 F:      include/linux/if_team.h
18196 F:      include/uapi/linux/if_team.h
18197
18198 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18199 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
18200 S:      Maintained
18201 F:      arch/x86/platform/ts5500/
18202
18203 TECHNOTREND USB IR RECEIVER
18204 M:      Sean Young <sean@mess.org>
18205 L:      linux-media@vger.kernel.org
18206 S:      Maintained
18207 F:      drivers/media/rc/ttusbir.c
18208
18209 TECHWELL TW9910 VIDEO DECODER
18210 L:      linux-media@vger.kernel.org
18211 S:      Orphan
18212 F:      drivers/media/i2c/tw9910.c
18213 F:      include/media/i2c/tw9910.h
18214
18215 TEE SUBSYSTEM
18216 M:      Jens Wiklander <jens.wiklander@linaro.org>
18217 R:      Sumit Garg <sumit.garg@linaro.org>
18218 L:      op-tee@lists.trustedfirmware.org
18219 S:      Maintained
18220 F:      Documentation/staging/tee.rst
18221 F:      drivers/tee/
18222 F:      include/linux/tee_drv.h
18223 F:      include/uapi/linux/tee.h
18224
18225 TEGRA ARCHITECTURE SUPPORT
18226 M:      Thierry Reding <thierry.reding@gmail.com>
18227 M:      Jonathan Hunter <jonathanh@nvidia.com>
18228 L:      linux-tegra@vger.kernel.org
18229 S:      Supported
18230 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
18231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18232 N:      [^a-z]tegra
18233
18234 TEGRA CLOCK DRIVER
18235 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
18236 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
18237 S:      Supported
18238 F:      drivers/clk/tegra/
18239
18240 TEGRA DMA DRIVERS
18241 M:      Laxman Dewangan <ldewangan@nvidia.com>
18242 M:      Jon Hunter <jonathanh@nvidia.com>
18243 S:      Supported
18244 F:      drivers/dma/tegra*
18245
18246 TEGRA I2C DRIVER
18247 M:      Laxman Dewangan <ldewangan@nvidia.com>
18248 R:      Dmitry Osipenko <digetx@gmail.com>
18249 S:      Supported
18250 F:      drivers/i2c/busses/i2c-tegra.c
18251
18252 TEGRA IOMMU DRIVERS
18253 M:      Thierry Reding <thierry.reding@gmail.com>
18254 R:      Krishna Reddy <vdumpa@nvidia.com>
18255 L:      linux-tegra@vger.kernel.org
18256 S:      Supported
18257 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18258 F:      drivers/iommu/tegra*
18259
18260 TEGRA KBC DRIVER
18261 M:      Laxman Dewangan <ldewangan@nvidia.com>
18262 S:      Supported
18263 F:      drivers/input/keyboard/tegra-kbc.c
18264
18265 TEGRA NAND DRIVER
18266 M:      Stefan Agner <stefan@agner.ch>
18267 M:      Lucas Stach <dev@lynxeye.de>
18268 S:      Maintained
18269 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18270 F:      drivers/mtd/nand/raw/tegra_nand.c
18271
18272 TEGRA PWM DRIVER
18273 M:      Thierry Reding <thierry.reding@gmail.com>
18274 S:      Supported
18275 F:      drivers/pwm/pwm-tegra.c
18276
18277 TEGRA SERIAL DRIVER
18278 M:      Laxman Dewangan <ldewangan@nvidia.com>
18279 S:      Supported
18280 F:      drivers/tty/serial/serial-tegra.c
18281
18282 TEGRA SPI DRIVER
18283 M:      Laxman Dewangan <ldewangan@nvidia.com>
18284 S:      Supported
18285 F:      drivers/spi/spi-tegra*
18286
18287 TEGRA QUAD SPI DRIVER
18288 M:      Thierry Reding <thierry.reding@gmail.com>
18289 M:      Jonathan Hunter <jonathanh@nvidia.com>
18290 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18291 L:      linux-tegra@vger.kernel.org
18292 S:      Maintained
18293 F:      drivers/spi/spi-tegra210-quad.c
18294
18295 TEGRA VIDEO DRIVER
18296 M:      Thierry Reding <thierry.reding@gmail.com>
18297 M:      Jonathan Hunter <jonathanh@nvidia.com>
18298 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18299 L:      linux-media@vger.kernel.org
18300 L:      linux-tegra@vger.kernel.org
18301 S:      Maintained
18302 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
18303 F:      drivers/staging/media/tegra-video/
18304
18305 TEGRA XUSB PADCTL DRIVER
18306 M:      JC Kuo <jckuo@nvidia.com>
18307 S:      Supported
18308 F:      drivers/phy/tegra/xusb*
18309
18310 TEHUTI ETHERNET DRIVER
18311 M:      Andy Gospodarek <andy@greyhouse.net>
18312 L:      netdev@vger.kernel.org
18313 S:      Supported
18314 F:      drivers/net/ethernet/tehuti/*
18315
18316 TELECOM CLOCK DRIVER FOR MCPL0010
18317 M:      Mark Gross <mark.gross@intel.com>
18318 S:      Supported
18319 F:      drivers/char/tlclk.c
18320
18321 TEMPO SEMICONDUCTOR DRIVERS
18322 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
18323 S:      Maintained
18324 F:      Documentation/devicetree/bindings/sound/tscs*.txt
18325 F:      sound/soc/codecs/tscs*.c
18326 F:      sound/soc/codecs/tscs*.h
18327
18328 TENSILICA XTENSA PORT (xtensa)
18329 M:      Chris Zankel <chris@zankel.net>
18330 M:      Max Filippov <jcmvbkbc@gmail.com>
18331 L:      linux-xtensa@linux-xtensa.org
18332 S:      Maintained
18333 T:      git git://github.com/czankel/xtensa-linux.git
18334 F:      arch/xtensa/
18335 F:      drivers/irqchip/irq-xtensa-*
18336
18337 TEXAS INSTRUMENTS ASoC DRIVERS
18338 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18339 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18340 S:      Maintained
18341 F:      sound/soc/ti/
18342
18343 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18344 M:      Ricardo Ribalda <ribalda@kernel.org>
18345 L:      linux-iio@vger.kernel.org
18346 S:      Supported
18347 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18348 F:      drivers/iio/dac/ti-dac7612.c
18349
18350 TEXAS INSTRUMENTS DMA DRIVERS
18351 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18352 L:      dmaengine@vger.kernel.org
18353 S:      Maintained
18354 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18355 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
18356 F:      Documentation/devicetree/bindings/dma/ti/
18357 F:      drivers/dma/ti/
18358 X:      drivers/dma/ti/cppi41.c
18359 F:      include/linux/dma/k3-udma-glue.h
18360 F:      include/linux/dma/ti-cppi5.h
18361 F:      include/linux/dma/k3-psil.h
18362
18363 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18364 M:      Nishanth Menon <nm@ti.com>
18365 M:      Tero Kristo <kristo@kernel.org>
18366 M:      Santosh Shilimkar <ssantosh@kernel.org>
18367 L:      linux-arm-kernel@lists.infradead.org
18368 S:      Maintained
18369 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18370 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
18371 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
18372 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18373 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18374 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
18375 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
18376 F:      drivers/clk/keystone/sci-clk.c
18377 F:      drivers/firmware/ti_sci*
18378 F:      drivers/irqchip/irq-ti-sci-inta.c
18379 F:      drivers/irqchip/irq-ti-sci-intr.c
18380 F:      drivers/reset/reset-ti-sci.c
18381 F:      drivers/soc/ti/ti_sci_inta_msi.c
18382 F:      drivers/soc/ti/ti_sci_pm_domains.c
18383 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
18384 F:      include/linux/soc/ti/ti_sci_inta_msi.h
18385 F:      include/linux/soc/ti/ti_sci_protocol.h
18386
18387 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18388 M:      Robert Marko <robert.marko@sartura.hr>
18389 M:      Luka Perkov <luka.perkov@sartura.hr>
18390 L:      linux-hwmon@vger.kernel.org
18391 S:      Maintained
18392 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18393 F:      Documentation/hwmon/tps23861.rst
18394 F:      drivers/hwmon/tps23861.c
18395
18396 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
18397 M:      Puranjay Mohan <puranjay12@gmail.com>
18398 L:      linux-iio@vger.kernel.org
18399 S:      Supported
18400 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
18401 F:      drivers/iio/temperature/tmp117.c
18402
18403 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18404 M:      Hans Verkuil <hverkuil@xs4all.nl>
18405 L:      linux-media@vger.kernel.org
18406 S:      Maintained
18407 W:      https://linuxtv.org
18408 T:      git git://linuxtv.org/media_tree.git
18409 F:      drivers/media/radio/radio-raremono.c
18410
18411 THERMAL
18412 M:      Zhang Rui <rui.zhang@intel.com>
18413 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18414 R:      Amit Kucheria <amitk@kernel.org>
18415 L:      linux-pm@vger.kernel.org
18416 S:      Supported
18417 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
18419 F:      Documentation/devicetree/bindings/thermal/
18420 F:      drivers/thermal/
18421 F:      include/linux/cpu_cooling.h
18422 F:      include/linux/thermal.h
18423 F:      include/uapi/linux/thermal.h
18424
18425 THERMAL DRIVER FOR AMLOGIC SOCS
18426 M:      Guillaume La Roque <glaroque@baylibre.com>
18427 L:      linux-pm@vger.kernel.org
18428 L:      linux-amlogic@lists.infradead.org
18429 S:      Supported
18430 W:      http://linux-meson.com/
18431 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18432 F:      drivers/thermal/amlogic_thermal.c
18433
18434 THERMAL/CPU_COOLING
18435 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
18436 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18437 M:      Viresh Kumar <viresh.kumar@linaro.org>
18438 R:      Lukasz Luba <lukasz.luba@arm.com>
18439 L:      linux-pm@vger.kernel.org
18440 S:      Supported
18441 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
18442 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
18443 F:      drivers/thermal/cpufreq_cooling.c
18444 F:      drivers/thermal/cpuidle_cooling.c
18445 F:      include/linux/cpu_cooling.h
18446
18447 THERMAL/POWER_ALLOCATOR
18448 M:      Lukasz Luba <lukasz.luba@arm.com>
18449 L:      linux-pm@vger.kernel.org
18450 S:      Maintained
18451 F:      Documentation/driver-api/thermal/power_allocator.rst
18452 F:      drivers/thermal/gov_power_allocator.c
18453 F:      include/trace/events/thermal_power_allocator.h
18454
18455 THINKPAD ACPI EXTRAS DRIVER
18456 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18457 L:      ibm-acpi-devel@lists.sourceforge.net
18458 L:      platform-driver-x86@vger.kernel.org
18459 S:      Maintained
18460 W:      http://ibm-acpi.sourceforge.net
18461 W:      http://thinkwiki.org/wiki/Ibm-acpi
18462 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18463 F:      drivers/platform/x86/thinkpad_acpi.c
18464
18465 THINKPAD LMI DRIVER
18466 M:      Mark Pearson <markpearson@lenovo.com>
18467 L:      platform-driver-x86@vger.kernel.org
18468 S:      Maintained
18469 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
18470 F:      drivers/platform/x86/think-lmi.?
18471
18472 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18473 M:      Isaac Hazan <isaac.hazan@intel.com>
18474 L:      linux-usb@vger.kernel.org
18475 S:      Maintained
18476 F:      drivers/thunderbolt/dma_test.c
18477
18478 THUNDERBOLT DRIVER
18479 M:      Andreas Noever <andreas.noever@gmail.com>
18480 M:      Michael Jamet <michael.jamet@intel.com>
18481 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18482 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18483 L:      linux-usb@vger.kernel.org
18484 S:      Maintained
18485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18486 F:      Documentation/admin-guide/thunderbolt.rst
18487 F:      drivers/thunderbolt/
18488 F:      include/linux/thunderbolt.h
18489
18490 THUNDERBOLT NETWORK DRIVER
18491 M:      Michael Jamet <michael.jamet@intel.com>
18492 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18493 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18494 L:      netdev@vger.kernel.org
18495 S:      Maintained
18496 F:      drivers/net/thunderbolt.c
18497
18498 THUNDERX GPIO DRIVER
18499 M:      Robert Richter <rric@kernel.org>
18500 S:      Odd Fixes
18501 F:      drivers/gpio/gpio-thunderx.c
18502
18503 TI ADS131E0X ADC SERIES DRIVER
18504 M:      Tomislav Denis <tomislav.denis@avl.com>
18505 L:      linux-iio@vger.kernel.org
18506 S:      Maintained
18507 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18508 F:      drivers/iio/adc/ti-ads131e08.c
18509
18510 TI AM437X VPFE DRIVER
18511 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18512 L:      linux-media@vger.kernel.org
18513 S:      Maintained
18514 W:      https://linuxtv.org
18515 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18516 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18517 F:      drivers/media/platform/am437x/
18518
18519 TI BANDGAP AND THERMAL DRIVER
18520 M:      Eduardo Valentin <edubezval@gmail.com>
18521 M:      Keerthy <j-keerthy@ti.com>
18522 L:      linux-pm@vger.kernel.org
18523 L:      linux-omap@vger.kernel.org
18524 S:      Maintained
18525 F:      drivers/thermal/ti-soc-thermal/
18526
18527 TI BQ27XXX POWER SUPPLY DRIVER
18528 F:      drivers/power/supply/bq27xxx_battery.c
18529 F:      drivers/power/supply/bq27xxx_battery_i2c.c
18530 F:      include/linux/power/bq27xxx_battery.h
18531
18532 TI CDCE706 CLOCK DRIVER
18533 M:      Max Filippov <jcmvbkbc@gmail.com>
18534 S:      Maintained
18535 F:      drivers/clk/clk-cdce706.c
18536
18537 TI CLOCK DRIVER
18538 M:      Tero Kristo <kristo@kernel.org>
18539 L:      linux-omap@vger.kernel.org
18540 S:      Odd Fixes
18541 F:      drivers/clk/ti/
18542 F:      include/linux/clk/ti.h
18543
18544 TI DAVINCI MACHINE SUPPORT
18545 M:      Sekhar Nori <nsekhar@ti.com>
18546 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
18547 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18548 S:      Supported
18549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18550 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18551 F:      arch/arm/boot/dts/da850*
18552 F:      arch/arm/mach-davinci/
18553 F:      drivers/i2c/busses/i2c-davinci.c
18554
18555 TI DAVINCI SERIES CLOCK DRIVER
18556 M:      David Lechner <david@lechnology.com>
18557 R:      Sekhar Nori <nsekhar@ti.com>
18558 S:      Maintained
18559 F:      Documentation/devicetree/bindings/clock/ti/davinci/
18560 F:      drivers/clk/davinci/
18561
18562 TI DAVINCI SERIES GPIO DRIVER
18563 M:      Keerthy <j-keerthy@ti.com>
18564 L:      linux-gpio@vger.kernel.org
18565 S:      Maintained
18566 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
18567 F:      drivers/gpio/gpio-davinci.c
18568
18569 TI DAVINCI SERIES MEDIA DRIVER
18570 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18571 L:      linux-media@vger.kernel.org
18572 S:      Maintained
18573 W:      https://linuxtv.org
18574 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18575 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18576 F:      drivers/media/platform/davinci/
18577 F:      include/media/davinci/
18578
18579 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18580 R:      David Lechner <david@lechnology.com>
18581 L:      linux-iio@vger.kernel.org
18582 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
18583 F:      drivers/counter/ti-eqep.c
18584
18585 TI ETHERNET SWITCH DRIVER (CPSW)
18586 R:      Grygorii Strashko <grygorii.strashko@ti.com>
18587 L:      linux-omap@vger.kernel.org
18588 L:      netdev@vger.kernel.org
18589 S:      Maintained
18590 F:      drivers/net/ethernet/ti/cpsw*
18591 F:      drivers/net/ethernet/ti/davinci*
18592
18593 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18594 M:      Alex Dubov <oakad@yahoo.com>
18595 S:      Maintained
18596 W:      http://tifmxx.berlios.de/
18597 F:      drivers/memstick/host/tifm_ms.c
18598 F:      drivers/misc/tifm*
18599 F:      drivers/mmc/host/tifm_sd.c
18600 F:      include/linux/tifm.h
18601
18602 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
18603 M:      Santosh Shilimkar <ssantosh@kernel.org>
18604 L:      linux-kernel@vger.kernel.org
18605 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18606 S:      Maintained
18607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
18608 F:      drivers/soc/ti/*
18609
18610 TI LM49xxx FAMILY ASoC CODEC DRIVERS
18611 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
18612 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
18613 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18614 S:      Maintained
18615 F:      sound/soc/codecs/isabelle*
18616 F:      sound/soc/codecs/lm49453*
18617
18618 TI PCM3060 ASoC CODEC DRIVER
18619 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
18620 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18621 S:      Maintained
18622 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
18623 F:      sound/soc/codecs/pcm3060*
18624
18625 TI TAS571X FAMILY ASoC CODEC DRIVER
18626 M:      Kevin Cernekee <cernekee@chromium.org>
18627 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18628 S:      Odd Fixes
18629 F:      sound/soc/codecs/tas571x*
18630
18631 TI TRF7970A NFC DRIVER
18632 M:      Mark Greer <mgreer@animalcreek.com>
18633 L:      linux-wireless@vger.kernel.org
18634 L:      linux-nfc@lists.01.org (subscribers-only)
18635 S:      Supported
18636 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
18637 F:      drivers/nfc/trf7970a.c
18638
18639 TI TSC2046 ADC DRIVER
18640 M:      Oleksij Rempel <o.rempel@pengutronix.de>
18641 R:      kernel@pengutronix.de
18642 L:      linux-iio@vger.kernel.org
18643 S:      Maintained
18644 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
18645 F:      drivers/iio/adc/ti-tsc2046.c
18646
18647 TI TWL4030 SERIES SOC CODEC DRIVER
18648 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18649 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18650 S:      Maintained
18651 F:      sound/soc/codecs/twl4030*
18652
18653 TI VPE/CAL DRIVERS
18654 M:      Benoit Parrot <bparrot@ti.com>
18655 L:      linux-media@vger.kernel.org
18656 S:      Maintained
18657 W:      http://linuxtv.org/
18658 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18659 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
18660 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
18661 F:      drivers/media/platform/ti-vpe/
18662
18663 TI WILINK WIRELESS DRIVERS
18664 L:      linux-wireless@vger.kernel.org
18665 S:      Orphan
18666 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
18667 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
18668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
18669 F:      drivers/net/wireless/ti/
18670 F:      include/linux/wl12xx.h
18671
18672 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
18673 M:      John Stultz <john.stultz@linaro.org>
18674 M:      Thomas Gleixner <tglx@linutronix.de>
18675 R:      Stephen Boyd <sboyd@kernel.org>
18676 L:      linux-kernel@vger.kernel.org
18677 S:      Supported
18678 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
18679 F:      include/linux/clocksource.h
18680 F:      include/linux/time.h
18681 F:      include/linux/timex.h
18682 F:      include/uapi/linux/time.h
18683 F:      include/uapi/linux/timex.h
18684 F:      kernel/time/alarmtimer.c
18685 F:      kernel/time/clocksource.c
18686 F:      kernel/time/ntp.c
18687 F:      kernel/time/time*.c
18688 F:      tools/testing/selftests/timers/
18689
18690 TIPC NETWORK LAYER
18691 M:      Jon Maloy <jmaloy@redhat.com>
18692 M:      Ying Xue <ying.xue@windriver.com>
18693 L:      netdev@vger.kernel.org (core kernel code)
18694 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
18695 S:      Maintained
18696 W:      http://tipc.sourceforge.net/
18697 F:      include/uapi/linux/tipc*.h
18698 F:      net/tipc/
18699
18700 TLAN NETWORK DRIVER
18701 M:      Samuel Chessman <chessman@tux.org>
18702 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
18703 S:      Maintained
18704 W:      http://sourceforge.net/projects/tlan/
18705 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
18706 F:      drivers/net/ethernet/ti/tlan.*
18707
18708 TM6000 VIDEO4LINUX DRIVER
18709 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18710 L:      linux-media@vger.kernel.org
18711 S:      Odd fixes
18712 W:      https://linuxtv.org
18713 T:      git git://linuxtv.org/media_tree.git
18714 F:      Documentation/admin-guide/media/tm6000*
18715 F:      drivers/media/usb/tm6000/
18716
18717 TMIO/SDHI MMC DRIVER
18718 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
18719 L:      linux-mmc@vger.kernel.org
18720 S:      Supported
18721 F:      drivers/mmc/host/renesas_sdhi*
18722 F:      drivers/mmc/host/tmio_mmc*
18723 F:      include/linux/mfd/tmio.h
18724
18725 TMP401 HARDWARE MONITOR DRIVER
18726 M:      Guenter Roeck <linux@roeck-us.net>
18727 L:      linux-hwmon@vger.kernel.org
18728 S:      Maintained
18729 F:      Documentation/hwmon/tmp401.rst
18730 F:      drivers/hwmon/tmp401.c
18731
18732 TMP513 HARDWARE MONITOR DRIVER
18733 M:      Eric Tremblay <etremblay@distech-controls.com>
18734 L:      linux-hwmon@vger.kernel.org
18735 S:      Maintained
18736 F:      Documentation/hwmon/tmp513.rst
18737 F:      drivers/hwmon/tmp513.c
18738
18739 TMPFS (SHMEM FILESYSTEM)
18740 M:      Hugh Dickins <hughd@google.com>
18741 L:      linux-mm@kvack.org
18742 S:      Maintained
18743 F:      include/linux/shmem_fs.h
18744 F:      mm/shmem.c
18745
18746 TOMOYO SECURITY MODULE
18747 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
18748 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
18749 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
18750 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
18751 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
18752 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
18753 S:      Maintained
18754 W:      https://tomoyo.osdn.jp/
18755 F:      security/tomoyo/
18756
18757 TOPSTAR LAPTOP EXTRAS DRIVER
18758 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
18759 L:      platform-driver-x86@vger.kernel.org
18760 S:      Maintained
18761 F:      drivers/platform/x86/topstar-laptop.c
18762
18763 TORTURE-TEST MODULES
18764 M:      Davidlohr Bueso <dave@stgolabs.net>
18765 M:      "Paul E. McKenney" <paulmck@kernel.org>
18766 M:      Josh Triplett <josh@joshtriplett.org>
18767 L:      linux-kernel@vger.kernel.org
18768 S:      Supported
18769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18770 F:      Documentation/RCU/torture.rst
18771 F:      kernel/locking/locktorture.c
18772 F:      kernel/rcu/rcuscale.c
18773 F:      kernel/rcu/rcutorture.c
18774 F:      kernel/rcu/refscale.c
18775 F:      kernel/torture.c
18776
18777 TOSHIBA ACPI EXTRAS DRIVER
18778 M:      Azael Avalos <coproscefalo@gmail.com>
18779 L:      platform-driver-x86@vger.kernel.org
18780 S:      Maintained
18781 F:      drivers/platform/x86/toshiba_acpi.c
18782
18783 TOSHIBA BLUETOOTH DRIVER
18784 M:      Azael Avalos <coproscefalo@gmail.com>
18785 L:      platform-driver-x86@vger.kernel.org
18786 S:      Maintained
18787 F:      drivers/platform/x86/toshiba_bluetooth.c
18788
18789 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
18790 M:      Azael Avalos <coproscefalo@gmail.com>
18791 L:      platform-driver-x86@vger.kernel.org
18792 S:      Maintained
18793 F:      drivers/platform/x86/toshiba_haps.c
18794
18795 TOSHIBA SMM DRIVER
18796 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
18797 S:      Maintained
18798 W:      http://www.buzzard.org.uk/toshiba/
18799 F:      drivers/char/toshiba.c
18800 F:      include/linux/toshiba.h
18801 F:      include/uapi/linux/toshiba.h
18802
18803 TOSHIBA TC358743 DRIVER
18804 M:      Mats Randgaard <matrandg@cisco.com>
18805 L:      linux-media@vger.kernel.org
18806 S:      Maintained
18807 F:      drivers/media/i2c/tc358743*
18808 F:      include/media/i2c/tc358743.h
18809
18810 TOSHIBA WMI HOTKEYS DRIVER
18811 M:      Azael Avalos <coproscefalo@gmail.com>
18812 L:      platform-driver-x86@vger.kernel.org
18813 S:      Maintained
18814 F:      drivers/platform/x86/toshiba-wmi.c
18815
18816 TPM DEVICE DRIVER
18817 M:      Peter Huewe <peterhuewe@gmx.de>
18818 M:      Jarkko Sakkinen <jarkko@kernel.org>
18819 R:      Jason Gunthorpe <jgg@ziepe.ca>
18820 L:      linux-integrity@vger.kernel.org
18821 S:      Maintained
18822 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
18823 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
18824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
18825 F:      drivers/char/tpm/
18826
18827 TRACING
18828 M:      Steven Rostedt <rostedt@goodmis.org>
18829 M:      Ingo Molnar <mingo@redhat.com>
18830 S:      Maintained
18831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
18832 F:      Documentation/trace/ftrace.rst
18833 F:      arch/*/*/*/ftrace.h
18834 F:      arch/*/kernel/ftrace.c
18835 F:      fs/tracefs/
18836 F:      include/*/ftrace.h
18837 F:      include/linux/trace*.h
18838 F:      include/trace/
18839 F:      kernel/trace/
18840 F:      tools/testing/selftests/ftrace/
18841
18842 TRACING MMIO ACCESSES (MMIOTRACE)
18843 M:      Steven Rostedt <rostedt@goodmis.org>
18844 M:      Ingo Molnar <mingo@kernel.org>
18845 R:      Karol Herbst <karolherbst@gmail.com>
18846 R:      Pekka Paalanen <ppaalanen@gmail.com>
18847 L:      linux-kernel@vger.kernel.org
18848 L:      nouveau@lists.freedesktop.org
18849 S:      Maintained
18850 F:      arch/x86/mm/kmmio.c
18851 F:      arch/x86/mm/mmio-mod.c
18852 F:      arch/x86/mm/testmmiotrace.c
18853 F:      include/linux/mmiotrace.h
18854 F:      kernel/trace/trace_mmiotrace.c
18855
18856 TRIVIAL PATCHES
18857 M:      Jiri Kosina <trivial@kernel.org>
18858 S:      Maintained
18859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
18860 K:      ^Subject:.*(?i)trivial
18861
18862 TTY LAYER
18863 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18864 M:      Jiri Slaby <jirislaby@kernel.org>
18865 S:      Supported
18866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
18867 F:      Documentation/driver-api/serial/
18868 F:      drivers/tty/
18869 F:      drivers/tty/serial/serial_core.c
18870 F:      include/linux/selection.h
18871 F:      include/linux/serial.h
18872 F:      include/linux/serial_core.h
18873 F:      include/linux/sysrq.h
18874 F:      include/linux/tty*.h
18875 F:      include/linux/vt.h
18876 F:      include/linux/vt_*.h
18877 F:      include/uapi/linux/serial.h
18878 F:      include/uapi/linux/serial_core.h
18879 F:      include/uapi/linux/tty.h
18880
18881 TUA9001 MEDIA DRIVER
18882 M:      Antti Palosaari <crope@iki.fi>
18883 L:      linux-media@vger.kernel.org
18884 S:      Maintained
18885 W:      https://linuxtv.org
18886 W:      http://palosaari.fi/linux/
18887 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18888 T:      git git://linuxtv.org/anttip/media_tree.git
18889 F:      drivers/media/tuners/tua9001*
18890
18891 TULIP NETWORK DRIVERS
18892 L:      netdev@vger.kernel.org
18893 L:      linux-parisc@vger.kernel.org
18894 S:      Orphan
18895 F:      drivers/net/ethernet/dec/tulip/
18896
18897 TUN/TAP driver
18898 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
18899 S:      Maintained
18900 W:      http://vtun.sourceforge.net/tun
18901 F:      Documentation/networking/tuntap.rst
18902 F:      arch/um/os-Linux/drivers/
18903
18904 TURBOCHANNEL SUBSYSTEM
18905 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
18906 M:      Ralf Baechle <ralf@linux-mips.org>
18907 L:      linux-mips@vger.kernel.org
18908 S:      Maintained
18909 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
18910 F:      drivers/tc/
18911 F:      include/linux/tc.h
18912
18913 TURBOSTAT UTILITY
18914 M:      "Len Brown" <lenb@kernel.org>
18915 L:      linux-pm@vger.kernel.org
18916 S:      Supported
18917 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18918 B:      https://bugzilla.kernel.org
18919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
18920 F:      tools/power/x86/turbostat/
18921
18922 TW5864 VIDEO4LINUX DRIVER
18923 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18924 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18925 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
18926 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18927 L:      linux-media@vger.kernel.org
18928 S:      Supported
18929 F:      drivers/media/pci/tw5864/
18930
18931 TW68 VIDEO4LINUX DRIVER
18932 M:      Hans Verkuil <hverkuil@xs4all.nl>
18933 L:      linux-media@vger.kernel.org
18934 S:      Odd Fixes
18935 W:      https://linuxtv.org
18936 T:      git git://linuxtv.org/media_tree.git
18937 F:      drivers/media/pci/tw68/
18938
18939 TW686X VIDEO4LINUX DRIVER
18940 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18941 L:      linux-media@vger.kernel.org
18942 S:      Maintained
18943 W:      http://linuxtv.org
18944 T:      git git://linuxtv.org/media_tree.git
18945 F:      drivers/media/pci/tw686x/
18946
18947 UACCE ACCELERATOR FRAMEWORK
18948 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
18949 M:      Zhou Wang <wangzhou1@hisilicon.com>
18950 L:      linux-accelerators@lists.ozlabs.org
18951 L:      linux-kernel@vger.kernel.org
18952 S:      Maintained
18953 F:      Documentation/ABI/testing/sysfs-driver-uacce
18954 F:      Documentation/misc-devices/uacce.rst
18955 F:      drivers/misc/uacce/
18956 F:      include/linux/uacce.h
18957 F:      include/uapi/misc/uacce/
18958
18959 UBI FILE SYSTEM (UBIFS)
18960 M:      Richard Weinberger <richard@nod.at>
18961 L:      linux-mtd@lists.infradead.org
18962 S:      Supported
18963 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
18964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18966 F:      Documentation/filesystems/ubifs-authentication.rst
18967 F:      Documentation/filesystems/ubifs.rst
18968 F:      fs/ubifs/
18969
18970 UCLINUX (M68KNOMMU AND COLDFIRE)
18971 M:      Greg Ungerer <gerg@linux-m68k.org>
18972 L:      linux-m68k@lists.linux-m68k.org
18973 L:      uclinux-dev@uclinux.org  (subscribers-only)
18974 S:      Maintained
18975 W:      http://www.linux-m68k.org/
18976 W:      http://www.uclinux.org/
18977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
18978 F:      arch/m68k/*/*_no.*
18979 F:      arch/m68k/68*/
18980 F:      arch/m68k/coldfire/
18981 F:      arch/m68k/include/asm/*_no.*
18982
18983 UDF FILESYSTEM
18984 M:      Jan Kara <jack@suse.com>
18985 S:      Maintained
18986 F:      Documentation/filesystems/udf.rst
18987 F:      fs/udf/
18988
18989 UDRAW TABLET
18990 M:      Bastien Nocera <hadess@hadess.net>
18991 L:      linux-input@vger.kernel.org
18992 S:      Maintained
18993 F:      drivers/hid/hid-udraw-ps3.c
18994
18995 UFS FILESYSTEM
18996 M:      Evgeniy Dushistov <dushistov@mail.ru>
18997 S:      Maintained
18998 F:      Documentation/admin-guide/ufs.rst
18999 F:      fs/ufs/
19000
19001 UHID USERSPACE HID IO DRIVER
19002 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19003 L:      linux-input@vger.kernel.org
19004 S:      Maintained
19005 F:      drivers/hid/uhid.c
19006 F:      include/uapi/linux/uhid.h
19007
19008 ULPI BUS
19009 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19010 L:      linux-usb@vger.kernel.org
19011 S:      Maintained
19012 F:      drivers/usb/common/ulpi.c
19013 F:      include/linux/ulpi/
19014
19015 UNICODE SUBSYSTEM
19016 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
19017 L:      linux-fsdevel@vger.kernel.org
19018 S:      Supported
19019 F:      fs/unicode/
19020
19021 UNIFDEF
19022 M:      Tony Finch <dot@dotat.at>
19023 S:      Maintained
19024 W:      http://dotat.at/prog/unifdef
19025 F:      scripts/unifdef.c
19026
19027 UNIFORM CDROM DRIVER
19028 M:      Jens Axboe <axboe@kernel.dk>
19029 S:      Maintained
19030 W:      http://www.kernel.dk
19031 F:      Documentation/cdrom/
19032 F:      drivers/cdrom/cdrom.c
19033 F:      include/linux/cdrom.h
19034 F:      include/uapi/linux/cdrom.h
19035
19036 UNISYS S-PAR DRIVERS
19037 M:      David Kershner <david.kershner@unisys.com>
19038 L:      sparmaintainer@unisys.com (Unisys internal)
19039 S:      Supported
19040 F:      drivers/staging/unisys/
19041 F:      drivers/visorbus/
19042 F:      include/linux/visorbus.h
19043
19044 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
19045 R:      Alim Akhtar <alim.akhtar@samsung.com>
19046 R:      Avri Altman <avri.altman@wdc.com>
19047 L:      linux-scsi@vger.kernel.org
19048 S:      Supported
19049 F:      Documentation/scsi/ufs.rst
19050 F:      drivers/scsi/ufs/
19051
19052 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
19053 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
19054 L:      linux-scsi@vger.kernel.org
19055 S:      Supported
19056 F:      drivers/scsi/ufs/*dwc*
19057
19058 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
19059 M:      Stanley Chu <stanley.chu@mediatek.com>
19060 L:      linux-scsi@vger.kernel.org
19061 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
19062 S:      Maintained
19063 F:      drivers/scsi/ufs/ufs-mediatek*
19064
19065 UNSORTED BLOCK IMAGES (UBI)
19066 M:      Richard Weinberger <richard@nod.at>
19067 L:      linux-mtd@lists.infradead.org
19068 S:      Supported
19069 W:      http://www.linux-mtd.infradead.org/
19070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19072 F:      drivers/mtd/ubi/
19073 F:      include/linux/mtd/ubi.h
19074 F:      include/uapi/mtd/ubi-user.h
19075
19076 USB "USBNET" DRIVER FRAMEWORK
19077 M:      Oliver Neukum <oneukum@suse.com>
19078 L:      netdev@vger.kernel.org
19079 S:      Maintained
19080 W:      http://www.linux-usb.org/usbnet
19081 F:      drivers/net/usb/usbnet.c
19082 F:      include/linux/usb/usbnet.h
19083
19084 USB ACM DRIVER
19085 M:      Oliver Neukum <oneukum@suse.com>
19086 L:      linux-usb@vger.kernel.org
19087 S:      Maintained
19088 F:      Documentation/usb/acm.rst
19089 F:      drivers/usb/class/cdc-acm.*
19090
19091 USB APPLE MFI FASTCHARGE DRIVER
19092 M:      Bastien Nocera <hadess@hadess.net>
19093 L:      linux-usb@vger.kernel.org
19094 S:      Maintained
19095 F:      drivers/usb/misc/apple-mfi-fastcharge.c
19096
19097 USB AR5523 WIRELESS DRIVER
19098 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
19099 L:      linux-wireless@vger.kernel.org
19100 S:      Maintained
19101 F:      drivers/net/wireless/ath/ar5523/
19102
19103 USB ATTACHED SCSI
19104 M:      Oliver Neukum <oneukum@suse.com>
19105 L:      linux-usb@vger.kernel.org
19106 L:      linux-scsi@vger.kernel.org
19107 S:      Maintained
19108 F:      drivers/usb/storage/uas.c
19109
19110 USB CDC ETHERNET DRIVER
19111 M:      Oliver Neukum <oliver@neukum.org>
19112 L:      linux-usb@vger.kernel.org
19113 S:      Maintained
19114 F:      drivers/net/usb/cdc_*.c
19115 F:      include/uapi/linux/usb/cdc.h
19116
19117 USB CHAOSKEY DRIVER
19118 M:      Keith Packard <keithp@keithp.com>
19119 L:      linux-usb@vger.kernel.org
19120 S:      Maintained
19121 F:      drivers/usb/misc/chaoskey.c
19122
19123 USB CYPRESS C67X00 DRIVER
19124 M:      Peter Korsgaard <jacmet@sunsite.dk>
19125 L:      linux-usb@vger.kernel.org
19126 S:      Maintained
19127 F:      drivers/usb/c67x00/
19128
19129 USB DAVICOM DM9601 DRIVER
19130 M:      Peter Korsgaard <jacmet@sunsite.dk>
19131 L:      netdev@vger.kernel.org
19132 S:      Maintained
19133 W:      http://www.linux-usb.org/usbnet
19134 F:      drivers/net/usb/dm9601.c
19135
19136 USB EHCI DRIVER
19137 M:      Alan Stern <stern@rowland.harvard.edu>
19138 L:      linux-usb@vger.kernel.org
19139 S:      Maintained
19140 F:      Documentation/usb/ehci.rst
19141 F:      drivers/usb/host/ehci*
19142
19143 USB GADGET/PERIPHERAL SUBSYSTEM
19144 M:      Felipe Balbi <balbi@kernel.org>
19145 L:      linux-usb@vger.kernel.org
19146 S:      Maintained
19147 W:      http://www.linux-usb.org/gadget
19148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19149 F:      drivers/usb/gadget/
19150 F:      include/linux/usb/gadget*
19151
19152 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19153 M:      Jiri Kosina <jikos@kernel.org>
19154 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
19155 L:      linux-usb@vger.kernel.org
19156 S:      Maintained
19157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19158 F:      Documentation/hid/hiddev.rst
19159 F:      drivers/hid/usbhid/
19160
19161 USB INTEL XHCI ROLE MUX DRIVER
19162 M:      Hans de Goede <hdegoede@redhat.com>
19163 L:      linux-usb@vger.kernel.org
19164 S:      Maintained
19165 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
19166
19167 USB IP DRIVER FOR HISILICON KIRIN 960
19168 M:      Yu Chen <chenyu56@huawei.com>
19169 M:      Binghui Wang <wangbinghui@hisilicon.com>
19170 L:      linux-usb@vger.kernel.org
19171 S:      Maintained
19172 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19173 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
19174
19175 USB IP DRIVER FOR HISILICON KIRIN 970
19176 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19177 L:      linux-usb@vger.kernel.org
19178 S:      Maintained
19179 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
19180 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
19181
19182 USB ISP116X DRIVER
19183 M:      Olav Kongas <ok@artecdesign.ee>
19184 L:      linux-usb@vger.kernel.org
19185 S:      Maintained
19186 F:      drivers/usb/host/isp116x*
19187 F:      include/linux/usb/isp116x.h
19188
19189 USB ISP1760 DRIVER
19190 M:      Rui Miguel Silva <rui.silva@linaro.org>
19191 L:      linux-usb@vger.kernel.org
19192 S:      Maintained
19193 F:      drivers/usb/isp1760/*
19194 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19195
19196 USB LAN78XX ETHERNET DRIVER
19197 M:      Woojung Huh <woojung.huh@microchip.com>
19198 M:      UNGLinuxDriver@microchip.com
19199 L:      netdev@vger.kernel.org
19200 S:      Maintained
19201 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19202 F:      drivers/net/usb/lan78xx.*
19203 F:      include/dt-bindings/net/microchip-lan78xx.h
19204
19205 USB MASS STORAGE DRIVER
19206 M:      Alan Stern <stern@rowland.harvard.edu>
19207 L:      linux-usb@vger.kernel.org
19208 L:      usb-storage@lists.one-eyed-alien.net
19209 S:      Maintained
19210 F:      drivers/usb/storage/
19211
19212 USB MIDI DRIVER
19213 M:      Clemens Ladisch <clemens@ladisch.de>
19214 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19215 S:      Maintained
19216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19217 F:      sound/usb/midi.*
19218
19219 USB NETWORKING DRIVERS
19220 L:      linux-usb@vger.kernel.org
19221 S:      Odd Fixes
19222 F:      drivers/net/usb/
19223
19224 USB OHCI DRIVER
19225 M:      Alan Stern <stern@rowland.harvard.edu>
19226 L:      linux-usb@vger.kernel.org
19227 S:      Maintained
19228 F:      Documentation/usb/ohci.rst
19229 F:      drivers/usb/host/ohci*
19230
19231 USB OTG FSM (Finite State Machine)
19232 M:      Peter Chen <peter.chen@kernel.org>
19233 L:      linux-usb@vger.kernel.org
19234 S:      Maintained
19235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19236 F:      drivers/usb/common/usb-otg-fsm.c
19237
19238 USB OVER IP DRIVER
19239 M:      Valentina Manea <valentina.manea.m@gmail.com>
19240 M:      Shuah Khan <shuah@kernel.org>
19241 M:      Shuah Khan <skhan@linuxfoundation.org>
19242 L:      linux-usb@vger.kernel.org
19243 S:      Maintained
19244 F:      Documentation/usb/usbip_protocol.rst
19245 F:      drivers/usb/usbip/
19246 F:      tools/testing/selftests/drivers/usb/usbip/
19247 F:      tools/usb/usbip/
19248
19249 USB PEGASUS DRIVER
19250 M:      Petko Manolov <petkan@nucleusys.com>
19251 L:      linux-usb@vger.kernel.org
19252 L:      netdev@vger.kernel.org
19253 S:      Maintained
19254 W:      https://github.com/petkan/pegasus
19255 T:      git git://github.com/petkan/pegasus.git
19256 F:      drivers/net/usb/pegasus.*
19257
19258 USB PHY LAYER
19259 M:      Felipe Balbi <balbi@kernel.org>
19260 L:      linux-usb@vger.kernel.org
19261 S:      Maintained
19262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19263 F:      drivers/usb/phy/
19264
19265 USB PRINTER DRIVER (usblp)
19266 M:      Pete Zaitcev <zaitcev@redhat.com>
19267 L:      linux-usb@vger.kernel.org
19268 S:      Supported
19269 F:      drivers/usb/class/usblp.c
19270
19271 USB RAW GADGET DRIVER
19272 R:      Andrey Konovalov <andreyknvl@gmail.com>
19273 L:      linux-usb@vger.kernel.org
19274 S:      Maintained
19275 F:      Documentation/usb/raw-gadget.rst
19276 F:      drivers/usb/gadget/legacy/raw_gadget.c
19277 F:      include/uapi/linux/usb/raw_gadget.h
19278
19279 USB QMI WWAN NETWORK DRIVER
19280 M:      Bjørn Mork <bjorn@mork.no>
19281 L:      netdev@vger.kernel.org
19282 S:      Maintained
19283 F:      Documentation/ABI/testing/sysfs-class-net-qmi
19284 F:      drivers/net/usb/qmi_wwan.c
19285
19286 USB RTL8150 DRIVER
19287 M:      Petko Manolov <petkan@nucleusys.com>
19288 L:      linux-usb@vger.kernel.org
19289 L:      netdev@vger.kernel.org
19290 S:      Maintained
19291 W:      https://github.com/petkan/rtl8150
19292 T:      git git://github.com/petkan/rtl8150.git
19293 F:      drivers/net/usb/rtl8150.c
19294
19295 USB SERIAL SUBSYSTEM
19296 M:      Johan Hovold <johan@kernel.org>
19297 L:      linux-usb@vger.kernel.org
19298 S:      Maintained
19299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
19300 F:      Documentation/usb/usb-serial.rst
19301 F:      drivers/usb/serial/
19302 F:      include/linux/usb/serial.h
19303
19304 USB SMSC75XX ETHERNET DRIVER
19305 M:      Steve Glendinning <steve.glendinning@shawell.net>
19306 L:      netdev@vger.kernel.org
19307 S:      Maintained
19308 F:      drivers/net/usb/smsc75xx.*
19309
19310 USB SMSC95XX ETHERNET DRIVER
19311 M:      Steve Glendinning <steve.glendinning@shawell.net>
19312 M:      UNGLinuxDriver@microchip.com
19313 L:      netdev@vger.kernel.org
19314 S:      Maintained
19315 F:      drivers/net/usb/smsc95xx.*
19316
19317 USB SUBSYSTEM
19318 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19319 L:      linux-usb@vger.kernel.org
19320 S:      Supported
19321 W:      http://www.linux-usb.org
19322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
19323 F:      Documentation/devicetree/bindings/usb/
19324 F:      Documentation/usb/
19325 F:      drivers/usb/
19326 F:      include/linux/usb.h
19327 F:      include/linux/usb/
19328
19329 USB TYPEC BUS FOR ALTERNATE MODES
19330 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19331 L:      linux-usb@vger.kernel.org
19332 S:      Maintained
19333 F:      Documentation/ABI/testing/sysfs-bus-typec
19334 F:      Documentation/driver-api/usb/typec_bus.rst
19335 F:      drivers/usb/typec/altmodes/
19336 F:      include/linux/usb/typec_altmode.h
19337
19338 USB TYPEC CLASS
19339 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19340 L:      linux-usb@vger.kernel.org
19341 S:      Maintained
19342 F:      Documentation/ABI/testing/sysfs-class-typec
19343 F:      Documentation/driver-api/usb/typec.rst
19344 F:      drivers/usb/typec/
19345 F:      include/linux/usb/typec.h
19346
19347 USB TYPEC INTEL PMC MUX DRIVER
19348 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19349 L:      linux-usb@vger.kernel.org
19350 S:      Maintained
19351 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19352 F:      drivers/usb/typec/mux/intel_pmc_mux.c
19353
19354 USB TYPEC PI3USB30532 MUX DRIVER
19355 M:      Hans de Goede <hdegoede@redhat.com>
19356 L:      linux-usb@vger.kernel.org
19357 S:      Maintained
19358 F:      drivers/usb/typec/mux/pi3usb30532.c
19359
19360 USB TYPEC PORT CONTROLLER DRIVERS
19361 M:      Guenter Roeck <linux@roeck-us.net>
19362 L:      linux-usb@vger.kernel.org
19363 S:      Maintained
19364 F:      drivers/usb/typec/tcpm/
19365
19366 USB UHCI DRIVER
19367 M:      Alan Stern <stern@rowland.harvard.edu>
19368 L:      linux-usb@vger.kernel.org
19369 S:      Maintained
19370 F:      drivers/usb/host/uhci*
19371
19372 USB VIDEO CLASS
19373 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19374 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
19375 L:      linux-media@vger.kernel.org
19376 S:      Maintained
19377 W:      http://www.ideasonboard.org/uvc/
19378 T:      git git://linuxtv.org/media_tree.git
19379 F:      drivers/media/usb/uvc/
19380 F:      include/uapi/linux/uvcvideo.h
19381
19382 USB WEBCAM GADGET
19383 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19384 L:      linux-usb@vger.kernel.org
19385 S:      Maintained
19386 F:      drivers/usb/gadget/function/*uvc*
19387 F:      drivers/usb/gadget/legacy/webcam.c
19388 F:      include/uapi/linux/usb/g_uvc.h
19389
19390 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19391 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
19392 L:      linux-wireless@vger.kernel.org
19393 S:      Maintained
19394 F:      drivers/net/wireless/rndis_wlan.c
19395
19396 USB XHCI DRIVER
19397 M:      Mathias Nyman <mathias.nyman@intel.com>
19398 L:      linux-usb@vger.kernel.org
19399 S:      Supported
19400 F:      drivers/usb/host/pci-quirks*
19401 F:      drivers/usb/host/xhci*
19402
19403 USB ZD1201 DRIVER
19404 L:      linux-wireless@vger.kernel.org
19405 S:      Orphan
19406 W:      http://linux-lc100020.sourceforge.net
19407 F:      drivers/net/wireless/zydas/zd1201.*
19408
19409 USB ZR364XX DRIVER
19410 M:      Antoine Jacquet <royale@zerezo.com>
19411 L:      linux-usb@vger.kernel.org
19412 L:      linux-media@vger.kernel.org
19413 S:      Maintained
19414 W:      http://royale.zerezo.com/zr364xx/
19415 T:      git git://linuxtv.org/media_tree.git
19416 F:      Documentation/admin-guide/media/zr364xx*
19417 F:      drivers/media/usb/zr364xx/
19418
19419 USER-MODE LINUX (UML)
19420 M:      Jeff Dike <jdike@addtoit.com>
19421 M:      Richard Weinberger <richard@nod.at>
19422 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
19423 L:      linux-um@lists.infradead.org
19424 S:      Maintained
19425 W:      http://user-mode-linux.sourceforge.net
19426 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
19427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19428 F:      Documentation/virt/uml/
19429 F:      arch/um/
19430 F:      arch/x86/um/
19431 F:      fs/hostfs/
19432
19433 USERSPACE COPYIN/COPYOUT (UIOVEC)
19434 M:      Alexander Viro <viro@zeniv.linux.org.uk>
19435 S:      Maintained
19436 F:      include/linux/uio.h
19437 F:      lib/iov_iter.c
19438
19439 USERSPACE DMA BUFFER DRIVER
19440 M:      Gerd Hoffmann <kraxel@redhat.com>
19441 L:      dri-devel@lists.freedesktop.org
19442 S:      Maintained
19443 T:      git git://anongit.freedesktop.org/drm/drm-misc
19444 F:      drivers/dma-buf/udmabuf.c
19445 F:      include/uapi/linux/udmabuf.h
19446
19447 USERSPACE I/O (UIO)
19448 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19449 S:      Maintained
19450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19451 F:      Documentation/driver-api/uio-howto.rst
19452 F:      drivers/uio/
19453 F:      include/linux/uio_driver.h
19454
19455 UTIL-LINUX PACKAGE
19456 M:      Karel Zak <kzak@redhat.com>
19457 L:      util-linux@vger.kernel.org
19458 S:      Maintained
19459 W:      http://en.wikipedia.org/wiki/Util-linux
19460 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19461
19462 UUID HELPERS
19463 M:      Christoph Hellwig <hch@lst.de>
19464 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19465 L:      linux-kernel@vger.kernel.org
19466 S:      Maintained
19467 T:      git git://git.infradead.org/users/hch/uuid.git
19468 F:      include/linux/uuid.h
19469 F:      include/uapi/linux/uuid.h
19470 F:      lib/test_uuid.c
19471 F:      lib/uuid.c
19472
19473 UV SYSFS DRIVER
19474 M:      Justin Ernst <justin.ernst@hpe.com>
19475 L:      platform-driver-x86@vger.kernel.org
19476 S:      Maintained
19477 F:      drivers/platform/x86/uv_sysfs.c
19478
19479 UVESAFB DRIVER
19480 M:      Michal Januszewski <spock@gentoo.org>
19481 L:      linux-fbdev@vger.kernel.org
19482 S:      Maintained
19483 W:      https://github.com/mjanusz/v86d
19484 F:      Documentation/fb/uvesafb.rst
19485 F:      drivers/video/fbdev/uvesafb.*
19486
19487 Ux500 CLOCK DRIVERS
19488 M:      Ulf Hansson <ulf.hansson@linaro.org>
19489 L:      linux-clk@vger.kernel.org
19490 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19491 S:      Maintained
19492 F:      drivers/clk/ux500/
19493
19494 VF610 NAND DRIVER
19495 M:      Stefan Agner <stefan@agner.ch>
19496 L:      linux-mtd@lists.infradead.org
19497 S:      Supported
19498 F:      drivers/mtd/nand/raw/vf610_nfc.c
19499
19500 VFAT/FAT/MSDOS FILESYSTEM
19501 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
19502 S:      Maintained
19503 F:      Documentation/filesystems/vfat.rst
19504 F:      fs/fat/
19505
19506 VFIO DRIVER
19507 M:      Alex Williamson <alex.williamson@redhat.com>
19508 R:      Cornelia Huck <cohuck@redhat.com>
19509 L:      kvm@vger.kernel.org
19510 S:      Maintained
19511 T:      git git://github.com/awilliam/linux-vfio.git
19512 F:      Documentation/driver-api/vfio.rst
19513 F:      drivers/vfio/
19514 F:      include/linux/vfio.h
19515 F:      include/uapi/linux/vfio.h
19516
19517 VFIO FSL-MC DRIVER
19518 M:      Diana Craciun <diana.craciun@oss.nxp.com>
19519 L:      kvm@vger.kernel.org
19520 S:      Maintained
19521 F:      drivers/vfio/fsl-mc/
19522
19523 VFIO MEDIATED DEVICE DRIVERS
19524 M:      Kirti Wankhede <kwankhede@nvidia.com>
19525 L:      kvm@vger.kernel.org
19526 S:      Maintained
19527 F:      Documentation/driver-api/vfio-mediated-device.rst
19528 F:      drivers/vfio/mdev/
19529 F:      include/linux/mdev.h
19530 F:      samples/vfio-mdev/
19531
19532 VFIO PLATFORM DRIVER
19533 M:      Eric Auger <eric.auger@redhat.com>
19534 L:      kvm@vger.kernel.org
19535 S:      Maintained
19536 F:      drivers/vfio/platform/
19537
19538 VGA_SWITCHEROO
19539 R:      Lukas Wunner <lukas@wunner.de>
19540 S:      Maintained
19541 T:      git git://anongit.freedesktop.org/drm/drm-misc
19542 F:      Documentation/gpu/vga-switcheroo.rst
19543 F:      drivers/gpu/vga/vga_switcheroo.c
19544 F:      include/linux/vga_switcheroo.h
19545
19546 VIA RHINE NETWORK DRIVER
19547 S:      Maintained
19548 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
19549 F:      drivers/net/ethernet/via/via-rhine.c
19550
19551 VIA SD/MMC CARD CONTROLLER DRIVER
19552 M:      Bruce Chang <brucechang@via.com.tw>
19553 M:      Harald Welte <HaraldWelte@viatech.com>
19554 S:      Maintained
19555 F:      drivers/mmc/host/via-sdmmc.c
19556
19557 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19558 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
19559 L:      linux-fbdev@vger.kernel.org
19560 S:      Maintained
19561 F:      drivers/video/fbdev/via/
19562 F:      include/linux/via-core.h
19563 F:      include/linux/via-gpio.h
19564 F:      include/linux/via_i2c.h
19565
19566 VIA VELOCITY NETWORK DRIVER
19567 M:      Francois Romieu <romieu@fr.zoreil.com>
19568 L:      netdev@vger.kernel.org
19569 S:      Maintained
19570 F:      drivers/net/ethernet/via/via-velocity.*
19571
19572 VICODEC VIRTUAL CODEC DRIVER
19573 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
19574 L:      linux-media@vger.kernel.org
19575 S:      Maintained
19576 W:      https://linuxtv.org
19577 T:      git git://linuxtv.org/media_tree.git
19578 F:      drivers/media/test-drivers/vicodec/*
19579
19580 VIDEO I2C POLLING DRIVER
19581 M:      Matt Ranostay <matt.ranostay@konsulko.com>
19582 L:      linux-media@vger.kernel.org
19583 S:      Maintained
19584 F:      drivers/media/i2c/video-i2c.c
19585
19586 VIDEO MULTIPLEXER DRIVER
19587 M:      Philipp Zabel <p.zabel@pengutronix.de>
19588 L:      linux-media@vger.kernel.org
19589 S:      Maintained
19590 F:      drivers/media/platform/video-mux.c
19591
19592 VIDEOBUF2 FRAMEWORK
19593 M:      Tomasz Figa <tfiga@chromium.org>
19594 M:      Marek Szyprowski <m.szyprowski@samsung.com>
19595 L:      linux-media@vger.kernel.org
19596 S:      Maintained
19597 F:      drivers/media/common/videobuf2/*
19598 F:      include/media/videobuf2-*
19599
19600 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
19601 M:      Helen Koike <helen.koike@collabora.com>
19602 R:      Shuah Khan <skhan@linuxfoundation.org>
19603 L:      linux-media@vger.kernel.org
19604 S:      Maintained
19605 W:      https://linuxtv.org
19606 T:      git git://linuxtv.org/media_tree.git
19607 F:      drivers/media/test-drivers/vimc/*
19608
19609 VIRT LIB
19610 M:      Alex Williamson <alex.williamson@redhat.com>
19611 M:      Paolo Bonzini <pbonzini@redhat.com>
19612 L:      kvm@vger.kernel.org
19613 S:      Supported
19614 F:      virt/lib/
19615
19616 VIRTIO AND VHOST VSOCK DRIVER
19617 M:      Stefan Hajnoczi <stefanha@redhat.com>
19618 M:      Stefano Garzarella <sgarzare@redhat.com>
19619 L:      kvm@vger.kernel.org
19620 L:      virtualization@lists.linux-foundation.org
19621 L:      netdev@vger.kernel.org
19622 S:      Maintained
19623 F:      drivers/net/vsockmon.c
19624 F:      drivers/vhost/vsock.c
19625 F:      include/linux/virtio_vsock.h
19626 F:      include/uapi/linux/virtio_vsock.h
19627 F:      include/uapi/linux/vm_sockets_diag.h
19628 F:      include/uapi/linux/vsockmon.h
19629 F:      net/vmw_vsock/af_vsock_tap.c
19630 F:      net/vmw_vsock/diag.c
19631 F:      net/vmw_vsock/virtio_transport.c
19632 F:      net/vmw_vsock/virtio_transport_common.c
19633 F:      net/vmw_vsock/vsock_loopback.c
19634 F:      tools/testing/vsock/
19635
19636 VIRTIO BLOCK AND SCSI DRIVERS
19637 M:      "Michael S. Tsirkin" <mst@redhat.com>
19638 M:      Jason Wang <jasowang@redhat.com>
19639 R:      Paolo Bonzini <pbonzini@redhat.com>
19640 R:      Stefan Hajnoczi <stefanha@redhat.com>
19641 L:      virtualization@lists.linux-foundation.org
19642 S:      Maintained
19643 F:      drivers/block/virtio_blk.c
19644 F:      drivers/scsi/virtio_scsi.c
19645 F:      drivers/vhost/scsi.c
19646 F:      include/uapi/linux/virtio_blk.h
19647 F:      include/uapi/linux/virtio_scsi.h
19648
19649 VIRTIO CONSOLE DRIVER
19650 M:      Amit Shah <amit@kernel.org>
19651 L:      virtualization@lists.linux-foundation.org
19652 S:      Maintained
19653 F:      drivers/char/virtio_console.c
19654 F:      include/linux/virtio_console.h
19655 F:      include/uapi/linux/virtio_console.h
19656
19657 VIRTIO CORE AND NET DRIVERS
19658 M:      "Michael S. Tsirkin" <mst@redhat.com>
19659 M:      Jason Wang <jasowang@redhat.com>
19660 L:      virtualization@lists.linux-foundation.org
19661 S:      Maintained
19662 F:      Documentation/devicetree/bindings/virtio/
19663 F:      drivers/block/virtio_blk.c
19664 F:      drivers/crypto/virtio/
19665 F:      drivers/net/virtio_net.c
19666 F:      drivers/vdpa/
19667 F:      drivers/virtio/
19668 F:      include/linux/vdpa.h
19669 F:      include/linux/virtio*.h
19670 F:      include/uapi/linux/virtio_*.h
19671 F:      tools/virtio/
19672
19673 VIRTIO BALLOON
19674 M:      "Michael S. Tsirkin" <mst@redhat.com>
19675 M:      David Hildenbrand <david@redhat.com>
19676 L:      virtualization@lists.linux-foundation.org
19677 S:      Maintained
19678 F:      drivers/virtio/virtio_balloon.c
19679 F:      include/uapi/linux/virtio_balloon.h
19680 F:      include/linux/balloon_compaction.h
19681 F:      mm/balloon_compaction.c
19682
19683 VIRTIO CRYPTO DRIVER
19684 M:      Gonglei <arei.gonglei@huawei.com>
19685 L:      virtualization@lists.linux-foundation.org
19686 L:      linux-crypto@vger.kernel.org
19687 S:      Maintained
19688 F:      drivers/crypto/virtio/
19689 F:      include/uapi/linux/virtio_crypto.h
19690
19691 VIRTIO DRIVERS FOR S390
19692 M:      Cornelia Huck <cohuck@redhat.com>
19693 M:      Halil Pasic <pasic@linux.ibm.com>
19694 L:      linux-s390@vger.kernel.org
19695 L:      virtualization@lists.linux-foundation.org
19696 L:      kvm@vger.kernel.org
19697 S:      Supported
19698 F:      arch/s390/include/uapi/asm/virtio-ccw.h
19699 F:      drivers/s390/virtio/
19700
19701 VIRTIO FILE SYSTEM
19702 M:      Vivek Goyal <vgoyal@redhat.com>
19703 M:      Stefan Hajnoczi <stefanha@redhat.com>
19704 M:      Miklos Szeredi <miklos@szeredi.hu>
19705 L:      virtualization@lists.linux-foundation.org
19706 L:      linux-fsdevel@vger.kernel.org
19707 S:      Supported
19708 W:      https://virtio-fs.gitlab.io/
19709 F:      Documentation/filesystems/virtiofs.rst
19710 F:      fs/fuse/virtio_fs.c
19711 F:      include/uapi/linux/virtio_fs.h
19712
19713 VIRTIO GPU DRIVER
19714 M:      David Airlie <airlied@linux.ie>
19715 M:      Gerd Hoffmann <kraxel@redhat.com>
19716 L:      dri-devel@lists.freedesktop.org
19717 L:      virtualization@lists.linux-foundation.org
19718 S:      Maintained
19719 T:      git git://anongit.freedesktop.org/drm/drm-misc
19720 F:      drivers/gpu/drm/virtio/
19721 F:      include/uapi/linux/virtio_gpu.h
19722
19723 VIRTIO HOST (VHOST)
19724 M:      "Michael S. Tsirkin" <mst@redhat.com>
19725 M:      Jason Wang <jasowang@redhat.com>
19726 L:      kvm@vger.kernel.org
19727 L:      virtualization@lists.linux-foundation.org
19728 L:      netdev@vger.kernel.org
19729 S:      Maintained
19730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
19731 F:      drivers/vhost/
19732 F:      include/linux/vhost_iotlb.h
19733 F:      include/uapi/linux/vhost.h
19734
19735 VIRTIO INPUT DRIVER
19736 M:      Gerd Hoffmann <kraxel@redhat.com>
19737 S:      Maintained
19738 F:      drivers/virtio/virtio_input.c
19739 F:      include/uapi/linux/virtio_input.h
19740
19741 VIRTIO IOMMU DRIVER
19742 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
19743 L:      virtualization@lists.linux-foundation.org
19744 S:      Maintained
19745 F:      drivers/iommu/virtio-iommu.c
19746 F:      include/uapi/linux/virtio_iommu.h
19747
19748 VIRTIO MEM DRIVER
19749 M:      David Hildenbrand <david@redhat.com>
19750 L:      virtualization@lists.linux-foundation.org
19751 S:      Maintained
19752 W:      https://virtio-mem.gitlab.io/
19753 F:      drivers/virtio/virtio_mem.c
19754 F:      include/uapi/linux/virtio_mem.h
19755
19756 VIRTIO SOUND DRIVER
19757 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
19758 M:      "Michael S. Tsirkin" <mst@redhat.com>
19759 L:      virtualization@lists.linux-foundation.org
19760 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19761 S:      Maintained
19762 F:      include/uapi/linux/virtio_snd.h
19763 F:      sound/virtio/*
19764
19765 VIRTIO I2C DRIVER
19766 M:      Jie Deng <jie.deng@intel.com>
19767 M:      Viresh Kumar <viresh.kumar@linaro.org>
19768 L:      linux-i2c@vger.kernel.org
19769 L:      virtualization@lists.linux-foundation.org
19770 S:      Maintained
19771 F:      drivers/i2c/busses/i2c-virtio.c
19772 F:      include/uapi/linux/virtio_i2c.h
19773
19774 VIRTUAL BOX GUEST DEVICE DRIVER
19775 M:      Hans de Goede <hdegoede@redhat.com>
19776 M:      Arnd Bergmann <arnd@arndb.de>
19777 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19778 S:      Maintained
19779 F:      drivers/virt/vboxguest/
19780 F:      include/linux/vbox_utils.h
19781 F:      include/uapi/linux/vbox*.h
19782
19783 VIRTUAL BOX SHARED FOLDER VFS DRIVER
19784 M:      Hans de Goede <hdegoede@redhat.com>
19785 L:      linux-fsdevel@vger.kernel.org
19786 S:      Maintained
19787 F:      fs/vboxsf/*
19788
19789 VIRTUAL SERIO DEVICE DRIVER
19790 M:      Stephen Chandler Paul <thatslyude@gmail.com>
19791 S:      Maintained
19792 F:      drivers/input/serio/userio.c
19793 F:      include/uapi/linux/userio.h
19794
19795 VIVID VIRTUAL VIDEO DRIVER
19796 M:      Hans Verkuil <hverkuil@xs4all.nl>
19797 L:      linux-media@vger.kernel.org
19798 S:      Maintained
19799 W:      https://linuxtv.org
19800 T:      git git://linuxtv.org/media_tree.git
19801 F:      drivers/media/test-drivers/vivid/*
19802
19803 VIDTV VIRTUAL DIGITAL TV DRIVER
19804 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
19805 L:      linux-media@vger.kernel.org
19806 S:      Maintained
19807 W:      https://linuxtv.org
19808 T:      git git://linuxtv.org/media_tree.git
19809 F:      drivers/media/test-drivers/vidtv/*
19810
19811 VLYNQ BUS
19812 M:      Florian Fainelli <f.fainelli@gmail.com>
19813 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
19814 S:      Maintained
19815 F:      drivers/vlynq/vlynq.c
19816 F:      include/linux/vlynq.h
19817
19818 VME SUBSYSTEM
19819 M:      Martyn Welch <martyn@welchs.me.uk>
19820 M:      Manohar Vanga <manohar.vanga@gmail.com>
19821 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19822 L:      linux-kernel@vger.kernel.org
19823 S:      Maintained
19824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19825 F:      Documentation/driver-api/vme.rst
19826 F:      drivers/staging/vme/
19827 F:      drivers/vme/
19828 F:      include/linux/vme*
19829
19830 VMWARE BALLOON DRIVER
19831 M:      Nadav Amit <namit@vmware.com>
19832 M:      "VMware, Inc." <pv-drivers@vmware.com>
19833 L:      linux-kernel@vger.kernel.org
19834 S:      Maintained
19835 F:      drivers/misc/vmw_balloon.c
19836
19837 VMWARE HYPERVISOR INTERFACE
19838 M:      Deep Shah <sdeep@vmware.com>
19839 M:      "VMware, Inc." <pv-drivers@vmware.com>
19840 L:      virtualization@lists.linux-foundation.org
19841 S:      Supported
19842 F:      arch/x86/include/asm/vmware.h
19843 F:      arch/x86/kernel/cpu/vmware.c
19844
19845 VMWARE PVRDMA DRIVER
19846 M:      Adit Ranadive <aditr@vmware.com>
19847 M:      VMware PV-Drivers <pv-drivers@vmware.com>
19848 L:      linux-rdma@vger.kernel.org
19849 S:      Maintained
19850 F:      drivers/infiniband/hw/vmw_pvrdma/
19851
19852 VMware PVSCSI driver
19853 M:      Vishal Bhakta <vbhakta@vmware.com>
19854 M:      VMware PV-Drivers <pv-drivers@vmware.com>
19855 L:      linux-scsi@vger.kernel.org
19856 S:      Maintained
19857 F:      drivers/scsi/vmw_pvscsi.c
19858 F:      drivers/scsi/vmw_pvscsi.h
19859
19860 VMWARE VIRTUAL PTP CLOCK DRIVER
19861 M:      Vivek Thampi <vithampi@vmware.com>
19862 M:      "VMware, Inc." <pv-drivers@vmware.com>
19863 L:      netdev@vger.kernel.org
19864 S:      Supported
19865 F:      drivers/ptp/ptp_vmw.c
19866
19867 VMWARE VMCI DRIVER
19868 M:      Jorgen Hansen <jhansen@vmware.com>
19869 M:      Vishnu Dasa <vdasa@vmware.com>
19870 L:      linux-kernel@vger.kernel.org
19871 L:      pv-drivers@vmware.com (private)
19872 S:      Maintained
19873 F:      drivers/misc/vmw_vmci/
19874
19875 VMWARE VMMOUSE SUBDRIVER
19876 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
19877 M:      "VMware, Inc." <pv-drivers@vmware.com>
19878 L:      linux-input@vger.kernel.org
19879 S:      Maintained
19880 F:      drivers/input/mouse/vmmouse.c
19881 F:      drivers/input/mouse/vmmouse.h
19882
19883 VMWARE VMXNET3 ETHERNET DRIVER
19884 M:      Ronak Doshi <doshir@vmware.com>
19885 M:      pv-drivers@vmware.com
19886 L:      netdev@vger.kernel.org
19887 S:      Maintained
19888 F:      drivers/net/vmxnet3/
19889
19890 VOCORE VOCORE2 BOARD
19891 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
19892 L:      linux-mips@vger.kernel.org
19893 S:      Maintained
19894 F:      arch/mips/boot/dts/ralink/vocore2.dts
19895
19896 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
19897 M:      Liam Girdwood <lgirdwood@gmail.com>
19898 M:      Mark Brown <broonie@kernel.org>
19899 L:      linux-kernel@vger.kernel.org
19900 S:      Supported
19901 W:      http://www.slimlogic.co.uk/?p=48
19902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
19903 F:      Documentation/devicetree/bindings/regulator/
19904 F:      Documentation/power/regulator/
19905 F:      drivers/regulator/
19906 F:      include/dt-bindings/regulator/
19907 F:      include/linux/regulator/
19908 K:      regulator_get_optional
19909
19910 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
19911 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
19912 F:      drivers/regulator/irq_helpers.c
19913
19914 VRF
19915 M:      David Ahern <dsahern@kernel.org>
19916 L:      netdev@vger.kernel.org
19917 S:      Maintained
19918 F:      Documentation/networking/vrf.rst
19919 F:      drivers/net/vrf.c
19920
19921 VSPRINTF
19922 M:      Petr Mladek <pmladek@suse.com>
19923 M:      Steven Rostedt <rostedt@goodmis.org>
19924 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
19925 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19926 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
19927 S:      Maintained
19928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
19929 F:      Documentation/core-api/printk-formats.rst
19930 F:      lib/test_printf.c
19931 F:      lib/test_scanf.c
19932 F:      lib/vsprintf.c
19933
19934 VT1211 HARDWARE MONITOR DRIVER
19935 M:      Juerg Haefliger <juergh@gmail.com>
19936 L:      linux-hwmon@vger.kernel.org
19937 S:      Maintained
19938 F:      Documentation/hwmon/vt1211.rst
19939 F:      drivers/hwmon/vt1211.c
19940
19941 VT8231 HARDWARE MONITOR DRIVER
19942 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
19943 L:      linux-hwmon@vger.kernel.org
19944 S:      Maintained
19945 F:      drivers/hwmon/vt8231.c
19946
19947 VUB300 USB to SDIO/SD/MMC bridge chip
19948 L:      linux-mmc@vger.kernel.org
19949 S:      Orphan
19950 F:      drivers/mmc/host/vub300.c
19951
19952 W1 DALLAS'S 1-WIRE BUS
19953 M:      Evgeniy Polyakov <zbr@ioremap.net>
19954 S:      Maintained
19955 F:      Documentation/devicetree/bindings/w1/
19956 F:      Documentation/w1/
19957 F:      drivers/w1/
19958 F:      include/linux/w1.h
19959
19960 W83791D HARDWARE MONITORING DRIVER
19961 M:      Marc Hulsman <m.hulsman@tudelft.nl>
19962 L:      linux-hwmon@vger.kernel.org
19963 S:      Maintained
19964 F:      Documentation/hwmon/w83791d.rst
19965 F:      drivers/hwmon/w83791d.c
19966
19967 W83793 HARDWARE MONITORING DRIVER
19968 M:      Rudolf Marek <r.marek@assembler.cz>
19969 L:      linux-hwmon@vger.kernel.org
19970 S:      Maintained
19971 F:      Documentation/hwmon/w83793.rst
19972 F:      drivers/hwmon/w83793.c
19973
19974 W83795 HARDWARE MONITORING DRIVER
19975 M:      Jean Delvare <jdelvare@suse.com>
19976 L:      linux-hwmon@vger.kernel.org
19977 S:      Maintained
19978 F:      drivers/hwmon/w83795.c
19979
19980 W83L51xD SD/MMC CARD INTERFACE DRIVER
19981 M:      Pierre Ossman <pierre@ossman.eu>
19982 S:      Maintained
19983 F:      drivers/mmc/host/wbsd.*
19984
19985 WACOM PROTOCOL 4 SERIAL TABLETS
19986 M:      Julian Squires <julian@cipht.net>
19987 M:      Hans de Goede <hdegoede@redhat.com>
19988 L:      linux-input@vger.kernel.org
19989 S:      Maintained
19990 F:      drivers/input/tablet/wacom_serial4.c
19991
19992 WATCHDOG DEVICE DRIVERS
19993 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
19994 M:      Guenter Roeck <linux@roeck-us.net>
19995 L:      linux-watchdog@vger.kernel.org
19996 S:      Maintained
19997 W:      http://www.linux-watchdog.org/
19998 T:      git git://www.linux-watchdog.org/linux-watchdog.git
19999 F:      Documentation/devicetree/bindings/watchdog/
20000 F:      Documentation/watchdog/
20001 F:      drivers/watchdog/
20002 F:      include/linux/watchdog.h
20003 F:      include/uapi/linux/watchdog.h
20004
20005 WHISKEYCOVE PMIC GPIO DRIVER
20006 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
20007 L:      linux-gpio@vger.kernel.org
20008 S:      Maintained
20009 F:      drivers/gpio/gpio-wcove.c
20010
20011 WHWAVE RTC DRIVER
20012 M:      Dianlong Li <long17.cool@163.com>
20013 L:      linux-rtc@vger.kernel.org
20014 S:      Maintained
20015 F:      drivers/rtc/rtc-sd3078.c
20016
20017 WIIMOTE HID DRIVER
20018 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20019 L:      linux-input@vger.kernel.org
20020 S:      Maintained
20021 F:      drivers/hid/hid-wiimote*
20022
20023 WILOCITY WIL6210 WIRELESS DRIVER
20024 M:      Maya Erez <merez@codeaurora.org>
20025 L:      linux-wireless@vger.kernel.org
20026 L:      wil6210@qti.qualcomm.com
20027 S:      Supported
20028 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
20029 F:      drivers/net/wireless/ath/wil6210/
20030
20031 WINBOND CIR DRIVER
20032 M:      David Härdeman <david@hardeman.nu>
20033 S:      Maintained
20034 F:      drivers/media/rc/winbond-cir.c
20035
20036 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
20037 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20038 L:      linux-watchdog@vger.kernel.org
20039 S:      Maintained
20040 F:      drivers/watchdog/ebc-c384_wdt.c
20041
20042 WINSYSTEMS WS16C48 GPIO DRIVER
20043 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20044 L:      linux-gpio@vger.kernel.org
20045 S:      Maintained
20046 F:      drivers/gpio/gpio-ws16c48.c
20047
20048 WIREGUARD SECURE NETWORK TUNNEL
20049 M:      Jason A. Donenfeld <Jason@zx2c4.com>
20050 L:      wireguard@lists.zx2c4.com
20051 L:      netdev@vger.kernel.org
20052 S:      Maintained
20053 F:      drivers/net/wireguard/
20054 F:      tools/testing/selftests/wireguard/
20055
20056 WISTRON LAPTOP BUTTON DRIVER
20057 M:      Miloslav Trmac <mitr@volny.cz>
20058 S:      Maintained
20059 F:      drivers/input/misc/wistron_btns.c
20060
20061 WL3501 WIRELESS PCMCIA CARD DRIVER
20062 L:      linux-wireless@vger.kernel.org
20063 S:      Odd fixes
20064 F:      drivers/net/wireless/wl3501*
20065
20066 WOLFSON MICROELECTRONICS DRIVERS
20067 L:      patches@opensource.cirrus.com
20068 S:      Supported
20069 W:      https://github.com/CirrusLogic/linux-drivers/wiki
20070 T:      git https://github.com/CirrusLogic/linux-drivers.git
20071 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
20072 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
20073 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
20074 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
20075 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
20076 F:      Documentation/devicetree/bindings/sound/wm*
20077 F:      Documentation/hwmon/wm83??.rst
20078 F:      arch/arm/mach-s3c/mach-crag6410*
20079 F:      drivers/clk/clk-wm83*.c
20080 F:      drivers/gpio/gpio-*wm*.c
20081 F:      drivers/gpio/gpio-arizona.c
20082 F:      drivers/hwmon/wm83??-hwmon.c
20083 F:      drivers/input/misc/wm831x-on.c
20084 F:      drivers/input/touchscreen/wm831x-ts.c
20085 F:      drivers/input/touchscreen/wm97*.c
20086 F:      drivers/leds/leds-wm83*.c
20087 F:      drivers/mfd/arizona*
20088 F:      drivers/mfd/cs47l24*
20089 F:      drivers/mfd/wm*.c
20090 F:      drivers/power/supply/wm83*.c
20091 F:      drivers/regulator/arizona*
20092 F:      drivers/regulator/wm8*.c
20093 F:      drivers/rtc/rtc-wm83*.c
20094 F:      drivers/video/backlight/wm83*_bl.c
20095 F:      drivers/watchdog/wm83*_wdt.c
20096 F:      include/linux/mfd/arizona/
20097 F:      include/linux/mfd/wm831x/
20098 F:      include/linux/mfd/wm8350/
20099 F:      include/linux/mfd/wm8400*
20100 F:      include/linux/regulator/arizona*
20101 F:      include/linux/wm97xx.h
20102 F:      include/sound/wm????.h
20103 F:      sound/soc/codecs/arizona*
20104 F:      sound/soc/codecs/cs47l24*
20105 F:      sound/soc/codecs/wm*
20106
20107 WORKQUEUE
20108 M:      Tejun Heo <tj@kernel.org>
20109 R:      Lai Jiangshan <jiangshanlai@gmail.com>
20110 S:      Maintained
20111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
20112 F:      Documentation/core-api/workqueue.rst
20113 F:      include/linux/workqueue.h
20114 F:      kernel/workqueue.c
20115
20116 WWAN DRIVERS
20117 M:      Loic Poulain <loic.poulain@linaro.org>
20118 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
20119 R:      Johannes Berg <johannes@sipsolutions.net>
20120 L:      netdev@vger.kernel.org
20121 S:      Maintained
20122 F:      drivers/net/wwan/
20123 F:      include/linux/wwan.h
20124 F:      include/uapi/linux/wwan.h
20125
20126 X-POWERS AXP288 PMIC DRIVERS
20127 M:      Hans de Goede <hdegoede@redhat.com>
20128 S:      Maintained
20129 F:      drivers/acpi/pmic/intel_pmic_xpower.c
20130 N:      axp288
20131
20132 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
20133 M:      Chen-Yu Tsai <wens@csie.org>
20134 L:      linux-kernel@vger.kernel.org
20135 S:      Maintained
20136 N:      axp[128]
20137
20138 X.25 STACK
20139 M:      Martin Schiller <ms@dev.tdt.de>
20140 L:      linux-x25@vger.kernel.org
20141 S:      Maintained
20142 F:      Documentation/networking/lapb-module.rst
20143 F:      Documentation/networking/x25*
20144 F:      drivers/net/wan/hdlc_x25.c
20145 F:      drivers/net/wan/lapbether.c
20146 F:      include/*/lapb.h
20147 F:      include/net/x25*
20148 F:      include/uapi/linux/x25.h
20149 F:      net/lapb/
20150 F:      net/x25/
20151
20152 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20153 M:      Thomas Gleixner <tglx@linutronix.de>
20154 M:      Ingo Molnar <mingo@redhat.com>
20155 M:      Borislav Petkov <bp@alien8.de>
20156 M:      x86@kernel.org
20157 R:      "H. Peter Anvin" <hpa@zytor.com>
20158 L:      linux-kernel@vger.kernel.org
20159 S:      Maintained
20160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20161 F:      Documentation/devicetree/bindings/x86/
20162 F:      Documentation/x86/
20163 F:      arch/x86/
20164
20165 X86 ENTRY CODE
20166 M:      Andy Lutomirski <luto@kernel.org>
20167 L:      linux-kernel@vger.kernel.org
20168 S:      Maintained
20169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
20170 F:      arch/x86/entry/
20171
20172 X86 MCE INFRASTRUCTURE
20173 M:      Tony Luck <tony.luck@intel.com>
20174 M:      Borislav Petkov <bp@alien8.de>
20175 L:      linux-edac@vger.kernel.org
20176 S:      Maintained
20177 F:      arch/x86/kernel/cpu/mce/*
20178
20179 X86 MICROCODE UPDATE SUPPORT
20180 M:      Borislav Petkov <bp@alien8.de>
20181 S:      Maintained
20182 F:      arch/x86/kernel/cpu/microcode/*
20183
20184 X86 MM
20185 M:      Dave Hansen <dave.hansen@linux.intel.com>
20186 M:      Andy Lutomirski <luto@kernel.org>
20187 M:      Peter Zijlstra <peterz@infradead.org>
20188 L:      linux-kernel@vger.kernel.org
20189 S:      Maintained
20190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20191 F:      arch/x86/mm/
20192
20193 X86 PLATFORM DRIVERS
20194 M:      Hans de Goede <hdegoede@redhat.com>
20195 M:      Mark Gross <mgross@linux.intel.com>
20196 L:      platform-driver-x86@vger.kernel.org
20197 S:      Maintained
20198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20199 F:      drivers/platform/olpc/
20200 F:      drivers/platform/x86/
20201
20202 X86 PLATFORM DRIVERS - ARCH
20203 R:      Darren Hart <dvhart@infradead.org>
20204 R:      Andy Shevchenko <andy@infradead.org>
20205 L:      platform-driver-x86@vger.kernel.org
20206 L:      x86@kernel.org
20207 S:      Maintained
20208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20209 F:      arch/x86/platform
20210
20211 X86 PLATFORM UV HPE SUPERDOME FLEX
20212 M:      Steve Wahl <steve.wahl@hpe.com>
20213 R:      Mike Travis <mike.travis@hpe.com>
20214 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
20215 R:      Russ Anderson <russ.anderson@hpe.com>
20216 S:      Supported
20217 F:      arch/x86/include/asm/uv/
20218 F:      arch/x86/kernel/apic/x2apic_uv_x.c
20219 F:      arch/x86/platform/uv/
20220
20221 X86 VDSO
20222 M:      Andy Lutomirski <luto@kernel.org>
20223 L:      linux-kernel@vger.kernel.org
20224 S:      Maintained
20225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20226 F:      arch/x86/entry/vdso/
20227
20228 XARRAY
20229 M:      Matthew Wilcox <willy@infradead.org>
20230 L:      linux-fsdevel@vger.kernel.org
20231 S:      Supported
20232 F:      Documentation/core-api/xarray.rst
20233 F:      include/linux/idr.h
20234 F:      include/linux/xarray.h
20235 F:      lib/idr.c
20236 F:      lib/xarray.c
20237 F:      tools/testing/radix-tree
20238
20239 XBOX DVD IR REMOTE
20240 M:      Benjamin Valentin <benpicco@googlemail.com>
20241 S:      Maintained
20242 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
20243 F:      drivers/media/rc/xbox_remote.c
20244
20245 XC2028/3028 TUNER DRIVER
20246 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20247 L:      linux-media@vger.kernel.org
20248 S:      Maintained
20249 W:      https://linuxtv.org
20250 T:      git git://linuxtv.org/media_tree.git
20251 F:      drivers/media/tuners/tuner-xc2028.*
20252
20253 XDP (eXpress Data Path)
20254 M:      Alexei Starovoitov <ast@kernel.org>
20255 M:      Daniel Borkmann <daniel@iogearbox.net>
20256 M:      David S. Miller <davem@davemloft.net>
20257 M:      Jakub Kicinski <kuba@kernel.org>
20258 M:      Jesper Dangaard Brouer <hawk@kernel.org>
20259 M:      John Fastabend <john.fastabend@gmail.com>
20260 L:      netdev@vger.kernel.org
20261 L:      bpf@vger.kernel.org
20262 S:      Supported
20263 F:      include/net/xdp.h
20264 F:      include/net/xdp_priv.h
20265 F:      include/trace/events/xdp.h
20266 F:      kernel/bpf/cpumap.c
20267 F:      kernel/bpf/devmap.c
20268 F:      net/core/xdp.c
20269 F:      samples/bpf/xdp*
20270 F:      tools/testing/selftests/bpf/*xdp*
20271 F:      tools/testing/selftests/bpf/*/*xdp*
20272 F:      drivers/net/ethernet/*/*/*/*/*xdp*
20273 F:      drivers/net/ethernet/*/*/*xdp*
20274 K:      (?:\b|_)xdp(?:\b|_)
20275
20276 XDP SOCKETS (AF_XDP)
20277 M:      Björn Töpel <bjorn@kernel.org>
20278 M:      Magnus Karlsson <magnus.karlsson@intel.com>
20279 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
20280 L:      netdev@vger.kernel.org
20281 L:      bpf@vger.kernel.org
20282 S:      Maintained
20283 F:      Documentation/networking/af_xdp.rst
20284 F:      include/net/xdp_sock*
20285 F:      include/net/xsk_buff_pool.h
20286 F:      include/uapi/linux/if_xdp.h
20287 F:      include/uapi/linux/xdp_diag.h
20288 F:      include/net/netns/xdp.h
20289 F:      net/xdp/
20290 F:      samples/bpf/xdpsock*
20291 F:      tools/lib/bpf/xsk*
20292
20293 XEN BLOCK SUBSYSTEM
20294 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
20295 M:      Roger Pau Monné <roger.pau@citrix.com>
20296 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20297 S:      Supported
20298 F:      drivers/block/xen*
20299 F:      drivers/block/xen-blkback/*
20300
20301 XEN HYPERVISOR ARM
20302 M:      Stefano Stabellini <sstabellini@kernel.org>
20303 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20304 S:      Maintained
20305 F:      arch/arm/include/asm/xen/
20306 F:      arch/arm/xen/
20307
20308 XEN HYPERVISOR ARM64
20309 M:      Stefano Stabellini <sstabellini@kernel.org>
20310 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20311 S:      Maintained
20312 F:      arch/arm64/include/asm/xen/
20313 F:      arch/arm64/xen/
20314
20315 XEN HYPERVISOR INTERFACE
20316 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
20317 M:      Juergen Gross <jgross@suse.com>
20318 R:      Stefano Stabellini <sstabellini@kernel.org>
20319 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20320 S:      Supported
20321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
20322 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
20323 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
20324 F:      arch/x86/include/asm/pvclock-abi.h
20325 F:      arch/x86/include/asm/xen/
20326 F:      arch/x86/platform/pvh/
20327 F:      arch/x86/xen/
20328 F:      drivers/*/xen-*front.c
20329 F:      drivers/xen/
20330 F:      include/uapi/xen/
20331 F:      include/xen/
20332
20333 XEN NETWORK BACKEND DRIVER
20334 M:      Wei Liu <wei.liu@kernel.org>
20335 M:      Paul Durrant <paul@xen.org>
20336 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20337 L:      netdev@vger.kernel.org
20338 S:      Supported
20339 F:      drivers/net/xen-netback/*
20340
20341 XEN PCI SUBSYSTEM
20342 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
20343 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20344 S:      Supported
20345 F:      arch/x86/pci/*xen*
20346 F:      drivers/pci/*xen*
20347
20348 XEN PVSCSI DRIVERS
20349 M:      Juergen Gross <jgross@suse.com>
20350 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20351 L:      linux-scsi@vger.kernel.org
20352 S:      Supported
20353 F:      drivers/scsi/xen-scsifront.c
20354 F:      drivers/xen/xen-scsiback.c
20355 F:      include/xen/interface/io/vscsiif.h
20356
20357 XEN SOUND FRONTEND DRIVER
20358 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
20359 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20360 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20361 S:      Supported
20362 F:      sound/xen/*
20363
20364 XEN SWIOTLB SUBSYSTEM
20365 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
20366 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20367 L:      iommu@lists.linux-foundation.org
20368 S:      Supported
20369 F:      arch/x86/xen/*swiotlb*
20370 F:      drivers/xen/*swiotlb*
20371
20372 XFS FILESYSTEM
20373 C:      irc://irc.oftc.net/xfs
20374 M:      Darrick J. Wong <djwong@kernel.org>
20375 M:      linux-xfs@vger.kernel.org
20376 L:      linux-xfs@vger.kernel.org
20377 S:      Supported
20378 W:      http://xfs.org/
20379 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
20380 F:      Documentation/ABI/testing/sysfs-fs-xfs
20381 F:      Documentation/admin-guide/xfs.rst
20382 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
20383 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
20384 F:      fs/xfs/
20385 F:      include/uapi/linux/dqblk_xfs.h
20386 F:      include/uapi/linux/fsmap.h
20387
20388 XILINX AXI ETHERNET DRIVER
20389 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
20390 S:      Maintained
20391 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
20392
20393 XILINX CAN DRIVER
20394 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
20395 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
20396 L:      linux-can@vger.kernel.org
20397 S:      Maintained
20398 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
20399 F:      drivers/net/can/xilinx_can.c
20400
20401 XILINX GPIO DRIVER
20402 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
20403 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
20404 R:      Michal Simek <michal.simek@xilinx.com>
20405 S:      Maintained
20406 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20407 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.txt
20408 F:      drivers/gpio/gpio-xilinx.c
20409 F:      drivers/gpio/gpio-zynq.c
20410
20411 XILINX SD-FEC IP CORES
20412 M:      Derek Kiernan <derek.kiernan@xilinx.com>
20413 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
20414 S:      Maintained
20415 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
20416 F:      Documentation/misc-devices/xilinx_sdfec.rst
20417 F:      drivers/misc/Kconfig
20418 F:      drivers/misc/Makefile
20419 F:      drivers/misc/xilinx_sdfec.c
20420 F:      include/uapi/misc/xilinx_sdfec.h
20421
20422 XILINX UARTLITE SERIAL DRIVER
20423 M:      Peter Korsgaard <jacmet@sunsite.dk>
20424 L:      linux-serial@vger.kernel.org
20425 S:      Maintained
20426 F:      drivers/tty/serial/uartlite.c
20427
20428 XILINX VIDEO IP CORES
20429 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20430 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20431 L:      linux-media@vger.kernel.org
20432 S:      Supported
20433 T:      git git://linuxtv.org/media_tree.git
20434 F:      Documentation/devicetree/bindings/media/xilinx/
20435 F:      drivers/media/platform/xilinx/
20436 F:      include/uapi/linux/xilinx-v4l2-controls.h
20437
20438 XILINX ZYNQMP DPDMA DRIVER
20439 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20440 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20441 L:      dmaengine@vger.kernel.org
20442 S:      Supported
20443 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20444 F:      drivers/dma/xilinx/xilinx_dpdma.c
20445 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20446
20447 XILINX ZYNQMP PSGTR PHY DRIVER
20448 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
20449 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20450 L:      linux-kernel@vger.kernel.org
20451 S:      Supported
20452 T:      git https://github.com/Xilinx/linux-xlnx.git
20453 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20454 F:      drivers/phy/xilinx/phy-zynqmp.c
20455
20456 XILLYBUS DRIVER
20457 M:      Eli Billauer <eli.billauer@gmail.com>
20458 L:      linux-kernel@vger.kernel.org
20459 S:      Supported
20460 F:      drivers/char/xillybus/
20461
20462 XLP9XX I2C DRIVER
20463 M:      George Cherian <gcherian@marvell.com>
20464 L:      linux-i2c@vger.kernel.org
20465 S:      Supported
20466 W:      http://www.marvell.com
20467 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20468 F:      drivers/i2c/busses/i2c-xlp9xx.c
20469
20470 XRA1403 GPIO EXPANDER
20471 M:      Nandor Han <nandor.han@ge.com>
20472 M:      Semi Malinen <semi.malinen@ge.com>
20473 L:      linux-gpio@vger.kernel.org
20474 S:      Maintained
20475 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20476 F:      drivers/gpio/gpio-xra1403.c
20477
20478 XTENSA XTFPGA PLATFORM SUPPORT
20479 M:      Max Filippov <jcmvbkbc@gmail.com>
20480 L:      linux-xtensa@linux-xtensa.org
20481 S:      Maintained
20482 F:      drivers/spi/spi-xtensa-xtfpga.c
20483 F:      sound/soc/xtensa/xtfpga-i2s.c
20484
20485 YAM DRIVER FOR AX.25
20486 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
20487 L:      linux-hams@vger.kernel.org
20488 S:      Maintained
20489 F:      drivers/net/hamradio/yam*
20490 F:      include/linux/yam.h
20491
20492 YAMA SECURITY MODULE
20493 M:      Kees Cook <keescook@chromium.org>
20494 S:      Supported
20495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20496 F:      Documentation/admin-guide/LSM/Yama.rst
20497 F:      security/yama/
20498
20499 YEALINK PHONE DRIVER
20500 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
20501 L:      usbb2k-api-dev@nongnu.org
20502 S:      Maintained
20503 F:      Documentation/input/devices/yealink.rst
20504 F:      drivers/input/misc/yealink.*
20505
20506 Z8530 DRIVER FOR AX.25
20507 M:      Joerg Reuter <jreuter@yaina.de>
20508 L:      linux-hams@vger.kernel.org
20509 S:      Maintained
20510 W:      http://yaina.de/jreuter/
20511 W:      http://www.qsl.net/dl1bke/
20512 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
20513 F:      drivers/net/hamradio/*scc.c
20514 F:      drivers/net/hamradio/z8530.h
20515
20516 ZBUD COMPRESSED PAGE ALLOCATOR
20517 M:      Seth Jennings <sjenning@redhat.com>
20518 M:      Dan Streetman <ddstreet@ieee.org>
20519 L:      linux-mm@kvack.org
20520 S:      Maintained
20521 F:      mm/zbud.c
20522
20523 ZD1211RW WIRELESS DRIVER
20524 M:      Daniel Drake <dsd@gentoo.org>
20525 M:      Ulrich Kunitz <kune@deine-taler.de>
20526 L:      linux-wireless@vger.kernel.org
20527 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
20528 S:      Maintained
20529 W:      http://zd1211.ath.cx/wiki/DriverRewrite
20530 F:      drivers/net/wireless/zydas/zd1211rw/
20531
20532 ZD1301 MEDIA DRIVER
20533 M:      Antti Palosaari <crope@iki.fi>
20534 L:      linux-media@vger.kernel.org
20535 S:      Maintained
20536 W:      https://linuxtv.org/
20537 W:      http://palosaari.fi/linux/
20538 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20539 F:      drivers/media/usb/dvb-usb-v2/zd1301*
20540
20541 ZD1301_DEMOD MEDIA DRIVER
20542 M:      Antti Palosaari <crope@iki.fi>
20543 L:      linux-media@vger.kernel.org
20544 S:      Maintained
20545 W:      https://linuxtv.org/
20546 W:      http://palosaari.fi/linux/
20547 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20548 F:      drivers/media/dvb-frontends/zd1301_demod*
20549
20550 ZHAOXIN PROCESSOR SUPPORT
20551 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
20552 L:      linux-kernel@vger.kernel.org
20553 S:      Maintained
20554 F:      arch/x86/kernel/cpu/zhaoxin.c
20555
20556 ZONEFS FILESYSTEM
20557 M:      Damien Le Moal <damien.lemoal@wdc.com>
20558 M:      Naohiro Aota <naohiro.aota@wdc.com>
20559 R:      Johannes Thumshirn <jth@kernel.org>
20560 L:      linux-fsdevel@vger.kernel.org
20561 S:      Maintained
20562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
20563 F:      Documentation/filesystems/zonefs.rst
20564 F:      fs/zonefs/
20565
20566 ZPOOL COMPRESSED PAGE STORAGE API
20567 M:      Dan Streetman <ddstreet@ieee.org>
20568 L:      linux-mm@kvack.org
20569 S:      Maintained
20570 F:      include/linux/zpool.h
20571 F:      mm/zpool.c
20572
20573 ZR36067 VIDEO FOR LINUX DRIVER
20574 M:      Corentin Labbe <clabbe@baylibre.com>
20575 L:      mjpeg-users@lists.sourceforge.net
20576 L:      linux-media@vger.kernel.org
20577 S:      Maintained
20578 W:      http://mjpeg.sourceforge.net/driver-zoran/
20579 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20580 F:      Documentation/driver-api/media/drivers/zoran.rst
20581 F:      drivers/staging/media/zoran/
20582
20583 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
20584 M:      Minchan Kim <minchan@kernel.org>
20585 M:      Nitin Gupta <ngupta@vflare.org>
20586 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20587 L:      linux-kernel@vger.kernel.org
20588 S:      Maintained
20589 F:      Documentation/admin-guide/blockdev/zram.rst
20590 F:      drivers/block/zram/
20591
20592 ZS DECSTATION Z85C30 SERIAL DRIVER
20593 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20594 S:      Maintained
20595 F:      drivers/tty/serial/zs.*
20596
20597 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
20598 M:      Minchan Kim <minchan@kernel.org>
20599 M:      Nitin Gupta <ngupta@vflare.org>
20600 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20601 L:      linux-mm@kvack.org
20602 S:      Maintained
20603 F:      Documentation/vm/zsmalloc.rst
20604 F:      include/linux/zsmalloc.h
20605 F:      mm/zsmalloc.c
20606
20607 ZSWAP COMPRESSED SWAP CACHING
20608 M:      Seth Jennings <sjenning@redhat.com>
20609 M:      Dan Streetman <ddstreet@ieee.org>
20610 M:      Vitaly Wool <vitaly.wool@konsulko.com>
20611 L:      linux-mm@kvack.org
20612 S:      Maintained
20613 F:      mm/zswap.c
20614
20615 THE REST
20616 M:      Linus Torvalds <torvalds@linux-foundation.org>
20617 L:      linux-kernel@vger.kernel.org
20618 S:      Buried alive in reporters
20619 Q:      http://patchwork.kernel.org/project/LKML/list/
20620 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
20621 F:      *
20622 F:      */