Merge tag 'hyperv-next-signed-20201214' of git://git.kernel.org/pub/scm/linux/kernel...
[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:      Realtek linux nic maintainers <nic_swsd@realtek.com>
207 M:      Heiner Kallweit <hkallweit1@gmail.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
265 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
266 M:      Hans de Goede <hdegoede@redhat.com>
267 L:      linux-hwmon@vger.kernel.org
268 S:      Maintained
269 F:      drivers/hwmon/abituguru.c
270
271 ABIT UGURU 3 HARDWARE MONITOR DRIVER
272 M:      Alistair John Strachan <alistair@devzero.co.uk>
273 L:      linux-hwmon@vger.kernel.org
274 S:      Maintained
275 F:      drivers/hwmon/abituguru3.c
276
277 ACCES 104-DIO-48E GPIO DRIVER
278 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
279 L:      linux-gpio@vger.kernel.org
280 S:      Maintained
281 F:      drivers/gpio/gpio-104-dio-48e.c
282
283 ACCES 104-IDI-48 GPIO DRIVER
284 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
285 L:      linux-gpio@vger.kernel.org
286 S:      Maintained
287 F:      drivers/gpio/gpio-104-idi-48.c
288
289 ACCES 104-IDIO-16 GPIO DRIVER
290 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
291 L:      linux-gpio@vger.kernel.org
292 S:      Maintained
293 F:      drivers/gpio/gpio-104-idio-16.c
294
295 ACCES 104-QUAD-8 DRIVER
296 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
297 M:      Syed Nayyar Waris <syednwaris@gmail.com>
298 L:      linux-iio@vger.kernel.org
299 S:      Maintained
300 F:      Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
301 F:      Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
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 WMI DRIVER
434 L:      platform-driver-x86@vger.kernel.org
435 S:      Orphan
436 F:      drivers/platform/x86/wmi.c
437 F:      include/uapi/linux/wmi.h
438
439 AD1889 ALSA SOUND DRIVER
440 L:      linux-parisc@vger.kernel.org
441 S:      Maintained
442 W:      https://parisc.wiki.kernel.org/index.php/AD1889
443 F:      sound/pci/ad1889.*
444
445 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
446 M:      Michael Hennerich <michael.hennerich@analog.com>
447 S:      Supported
448 W:      http://wiki.analog.com/AD5254
449 W:      http://ez.analog.com/community/linux-device-drivers
450 F:      drivers/misc/ad525x_dpot.c
451
452 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
453 M:      Michael Hennerich <michael.hennerich@analog.com>
454 S:      Supported
455 W:      http://wiki.analog.com/AD5398
456 W:      http://ez.analog.com/community/linux-device-drivers
457 F:      drivers/regulator/ad5398.c
458
459 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
460 M:      Michael Hennerich <michael.hennerich@analog.com>
461 S:      Supported
462 W:      http://wiki.analog.com/AD7142
463 W:      http://ez.analog.com/community/linux-device-drivers
464 F:      drivers/input/misc/ad714x.c
465
466 AD7877 TOUCHSCREEN DRIVER
467 M:      Michael Hennerich <michael.hennerich@analog.com>
468 S:      Supported
469 W:      http://wiki.analog.com/AD7877
470 W:      http://ez.analog.com/community/linux-device-drivers
471 F:      drivers/input/touchscreen/ad7877.c
472
473 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
474 M:      Michael Hennerich <michael.hennerich@analog.com>
475 S:      Supported
476 W:      http://wiki.analog.com/AD7879
477 W:      http://ez.analog.com/community/linux-device-drivers
478 F:      drivers/input/touchscreen/ad7879.c
479
480 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
481 M:      Jiri Kosina <jikos@kernel.org>
482 S:      Maintained
483
484 ADF7242 IEEE 802.15.4 RADIO DRIVER
485 M:      Michael Hennerich <michael.hennerich@analog.com>
486 L:      linux-wpan@vger.kernel.org
487 S:      Supported
488 W:      https://wiki.analog.com/ADF7242
489 W:      http://ez.analog.com/community/linux-device-drivers
490 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
491 F:      drivers/net/ieee802154/adf7242.c
492
493 ADM1025 HARDWARE MONITOR DRIVER
494 M:      Jean Delvare <jdelvare@suse.com>
495 L:      linux-hwmon@vger.kernel.org
496 S:      Maintained
497 F:      Documentation/hwmon/adm1025.rst
498 F:      drivers/hwmon/adm1025.c
499
500 ADM1029 HARDWARE MONITOR DRIVER
501 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
502 L:      linux-hwmon@vger.kernel.org
503 S:      Maintained
504 F:      drivers/hwmon/adm1029.c
505
506 ADM8211 WIRELESS DRIVER
507 L:      linux-wireless@vger.kernel.org
508 S:      Orphan
509 W:      https://wireless.wiki.kernel.org/
510 F:      drivers/net/wireless/admtek/adm8211.*
511
512 ADP1653 FLASH CONTROLLER DRIVER
513 M:      Sakari Ailus <sakari.ailus@iki.fi>
514 L:      linux-media@vger.kernel.org
515 S:      Maintained
516 F:      drivers/media/i2c/adp1653.c
517 F:      include/media/i2c/adp1653.h
518
519 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
520 M:      Michael Hennerich <michael.hennerich@analog.com>
521 S:      Supported
522 W:      http://wiki.analog.com/ADP5520
523 W:      http://ez.analog.com/community/linux-device-drivers
524 F:      drivers/gpio/gpio-adp5520.c
525 F:      drivers/input/keyboard/adp5520-keys.c
526 F:      drivers/leds/leds-adp5520.c
527 F:      drivers/mfd/adp5520.c
528 F:      drivers/video/backlight/adp5520_bl.c
529
530 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
531 M:      Michael Hennerich <michael.hennerich@analog.com>
532 S:      Supported
533 W:      http://wiki.analog.com/ADP5588
534 W:      http://ez.analog.com/community/linux-device-drivers
535 F:      drivers/gpio/gpio-adp5588.c
536 F:      drivers/input/keyboard/adp5588-keys.c
537
538 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
539 M:      Michael Hennerich <michael.hennerich@analog.com>
540 S:      Supported
541 W:      http://wiki.analog.com/ADP8860
542 W:      http://ez.analog.com/community/linux-device-drivers
543 F:      drivers/video/backlight/adp8860_bl.c
544
545 ADT746X FAN DRIVER
546 M:      Colin Leroy <colin@colino.net>
547 S:      Maintained
548 F:      drivers/macintosh/therm_adt746x.c
549
550 ADT7475 HARDWARE MONITOR DRIVER
551 M:      Jean Delvare <jdelvare@suse.com>
552 L:      linux-hwmon@vger.kernel.org
553 S:      Maintained
554 F:      Documentation/hwmon/adt7475.rst
555 F:      drivers/hwmon/adt7475.c
556
557 ADVANSYS SCSI DRIVER
558 M:      Matthew Wilcox <willy@infradead.org>
559 M:      Hannes Reinecke <hare@suse.com>
560 L:      linux-scsi@vger.kernel.org
561 S:      Maintained
562 F:      Documentation/scsi/advansys.rst
563 F:      drivers/scsi/advansys.c
564
565 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
566 M:      Michael Hennerich <michael.hennerich@analog.com>
567 S:      Supported
568 W:      http://wiki.analog.com/ADXL345
569 W:      http://ez.analog.com/community/linux-device-drivers
570 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
571 F:      drivers/input/misc/adxl34x.c
572
573 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
574 M:      Michael Hennerich <michael.hennerich@analog.com>
575 S:      Supported
576 W:      http://ez.analog.com/community/linux-device-drivers
577 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
578 F:      drivers/iio/accel/adxl372.c
579 F:      drivers/iio/accel/adxl372_i2c.c
580 F:      drivers/iio/accel/adxl372_spi.c
581
582 AF9013 MEDIA DRIVER
583 M:      Antti Palosaari <crope@iki.fi>
584 L:      linux-media@vger.kernel.org
585 S:      Maintained
586 W:      https://linuxtv.org
587 W:      http://palosaari.fi/linux/
588 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
589 T:      git git://linuxtv.org/anttip/media_tree.git
590 F:      drivers/media/dvb-frontends/af9013*
591
592 AF9033 MEDIA DRIVER
593 M:      Antti Palosaari <crope@iki.fi>
594 L:      linux-media@vger.kernel.org
595 S:      Maintained
596 W:      https://linuxtv.org
597 W:      http://palosaari.fi/linux/
598 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
599 T:      git git://linuxtv.org/anttip/media_tree.git
600 F:      drivers/media/dvb-frontends/af9033*
601
602 AFFS FILE SYSTEM
603 M:      David Sterba <dsterba@suse.com>
604 L:      linux-fsdevel@vger.kernel.org
605 S:      Odd Fixes
606 F:      Documentation/filesystems/affs.rst
607 F:      fs/affs/
608
609 AFS FILESYSTEM
610 M:      David Howells <dhowells@redhat.com>
611 L:      linux-afs@lists.infradead.org
612 S:      Supported
613 W:      https://www.infradead.org/~dhowells/kafs/
614 F:      Documentation/filesystems/afs.rst
615 F:      fs/afs/
616 F:      include/trace/events/afs.h
617
618 AGPGART DRIVER
619 M:      David Airlie <airlied@linux.ie>
620 S:      Maintained
621 T:      git git://anongit.freedesktop.org/drm/drm
622 F:      drivers/char/agp/
623 F:      include/linux/agp*
624 F:      include/uapi/linux/agp*
625
626 AHA152X SCSI DRIVER
627 M:      "Juergen E. Fischer" <fischer@norbit.de>
628 L:      linux-scsi@vger.kernel.org
629 S:      Maintained
630 F:      drivers/scsi/aha152x*
631 F:      drivers/scsi/pcmcia/aha152x*
632
633 AIC7XXX / AIC79XX SCSI DRIVER
634 M:      Hannes Reinecke <hare@suse.com>
635 L:      linux-scsi@vger.kernel.org
636 S:      Maintained
637 F:      drivers/scsi/aic7xxx/
638
639 AIMSLAB FM RADIO RECEIVER DRIVER
640 M:      Hans Verkuil <hverkuil@xs4all.nl>
641 L:      linux-media@vger.kernel.org
642 S:      Maintained
643 W:      https://linuxtv.org
644 T:      git git://linuxtv.org/media_tree.git
645 F:      drivers/media/radio/radio-aimslab*
646
647 AIO
648 M:      Benjamin LaHaise <bcrl@kvack.org>
649 L:      linux-aio@kvack.org
650 S:      Supported
651 F:      fs/aio.c
652 F:      include/linux/*aio*.h
653
654 AIRSPY MEDIA DRIVER
655 M:      Antti Palosaari <crope@iki.fi>
656 L:      linux-media@vger.kernel.org
657 S:      Maintained
658 W:      https://linuxtv.org
659 W:      http://palosaari.fi/linux/
660 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
661 T:      git git://linuxtv.org/anttip/media_tree.git
662 F:      drivers/media/usb/airspy/
663
664 ALACRITECH GIGABIT ETHERNET DRIVER
665 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
666 S:      Maintained
667 F:      drivers/net/ethernet/alacritech/*
668
669 ALCATEL SPEEDTOUCH USB DRIVER
670 M:      Duncan Sands <duncan.sands@free.fr>
671 L:      linux-usb@vger.kernel.org
672 S:      Maintained
673 W:      http://www.linux-usb.org/SpeedTouch/
674 F:      drivers/usb/atm/speedtch.c
675 F:      drivers/usb/atm/usbatm.c
676
677 ALCHEMY AU1XX0 MMC DRIVER
678 M:      Manuel Lauss <manuel.lauss@gmail.com>
679 S:      Maintained
680 F:      drivers/mmc/host/au1xmmc.c
681
682 ALI1563 I2C DRIVER
683 M:      Rudolf Marek <r.marek@assembler.cz>
684 L:      linux-i2c@vger.kernel.org
685 S:      Maintained
686 F:      Documentation/i2c/busses/i2c-ali1563.rst
687 F:      drivers/i2c/busses/i2c-ali1563.c
688
689 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
690 M:      Tomislav Denis <tomislav.denis@avl.com>
691 L:      linux-iio@vger.kernel.org
692 S:      Maintained
693 W:      http://www.allsensors.com/
694 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
695 F:      drivers/iio/pressure/dlhl60d.c
696
697 ALLEGRO DVT VIDEO IP CORE DRIVER
698 M:      Michael Tretter <m.tretter@pengutronix.de>
699 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
700 L:      linux-media@vger.kernel.org
701 S:      Maintained
702 F:      drivers/staging/media/allegro-dvt/
703
704 ALLWINNER A10 CSI DRIVER
705 M:      Maxime Ripard <mripard@kernel.org>
706 L:      linux-media@vger.kernel.org
707 S:      Maintained
708 T:      git git://linuxtv.org/media_tree.git
709 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
710 F:      drivers/media/platform/sunxi/sun4i-csi/
711
712 ALLWINNER CPUFREQ DRIVER
713 M:      Yangtao Li <tiny.windzz@gmail.com>
714 L:      linux-pm@vger.kernel.org
715 S:      Maintained
716 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
717 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
718
719 ALLWINNER CRYPTO DRIVERS
720 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
721 L:      linux-crypto@vger.kernel.org
722 S:      Maintained
723 F:      drivers/crypto/allwinner/
724
725 ALLWINNER THERMAL DRIVER
726 M:      Vasily Khoruzhick <anarsoul@gmail.com>
727 M:      Yangtao Li <tiny.windzz@gmail.com>
728 L:      linux-pm@vger.kernel.org
729 S:      Maintained
730 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
731 F:      drivers/thermal/sun8i_thermal.c
732
733 ALLWINNER VPU DRIVER
734 M:      Maxime Ripard <mripard@kernel.org>
735 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
736 L:      linux-media@vger.kernel.org
737 S:      Maintained
738 F:      drivers/staging/media/sunxi/cedrus/
739
740 ALPHA PORT
741 M:      Richard Henderson <rth@twiddle.net>
742 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
743 M:      Matt Turner <mattst88@gmail.com>
744 L:      linux-alpha@vger.kernel.org
745 S:      Odd Fixes
746 F:      arch/alpha/
747
748 ALPS PS/2 TOUCHPAD DRIVER
749 R:      Pali Rohár <pali@kernel.org>
750 F:      drivers/input/mouse/alps.*
751
752 ALTERA I2C CONTROLLER DRIVER
753 M:      Thor Thayer <thor.thayer@linux.intel.com>
754 S:      Maintained
755 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
756 F:      drivers/i2c/busses/i2c-altera.c
757
758 ALTERA MAILBOX DRIVER
759 M:      Ley Foon Tan <ley.foon.tan@intel.com>
760 S:      Maintained
761 F:      drivers/mailbox/mailbox-altera.c
762
763 ALTERA PIO DRIVER
764 M:      Joyce Ooi <joyce.ooi@intel.com>
765 L:      linux-gpio@vger.kernel.org
766 S:      Maintained
767 F:      drivers/gpio/gpio-altera.c
768
769 ALTERA SYSTEM MANAGER DRIVER
770 M:      Thor Thayer <thor.thayer@linux.intel.com>
771 S:      Maintained
772 F:      drivers/mfd/altera-sysmgr.c
773 F:      include/linux/mfd/altera-sysmgr.h
774
775 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
776 M:      Thor Thayer <thor.thayer@linux.intel.com>
777 S:      Maintained
778 F:      drivers/gpio/gpio-altera-a10sr.c
779 F:      drivers/mfd/altera-a10sr.c
780 F:      drivers/reset/reset-a10sr.c
781 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
782 F:      include/linux/mfd/altera-a10sr.h
783
784 ALTERA TRIPLE SPEED ETHERNET DRIVER
785 M:      Joyce Ooi <joyce.ooi@intel.com>
786 L:      netdev@vger.kernel.org
787 S:      Maintained
788 F:      drivers/net/ethernet/altera/
789
790 ALTERA UART/JTAG UART SERIAL DRIVERS
791 M:      Tobias Klauser <tklauser@distanz.ch>
792 L:      linux-serial@vger.kernel.org
793 S:      Maintained
794 F:      drivers/tty/serial/altera_jtaguart.c
795 F:      drivers/tty/serial/altera_uart.c
796 F:      include/linux/altera_jtaguart.h
797 F:      include/linux/altera_uart.h
798
799 AMAZON ANNAPURNA LABS FIC DRIVER
800 M:      Talel Shenhar <talel@amazon.com>
801 S:      Maintained
802 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
803 F:      drivers/irqchip/irq-al-fic.c
804
805 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
806 M:      Talel Shenhar <talel@amazon.com>
807 M:      Talel Shenhar <talelshenhar@gmail.com>
808 S:      Maintained
809 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
810 F:      drivers/edac/al_mc_edac.c
811
812 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
813 M:      Talel Shenhar <talel@amazon.com>
814 S:      Maintained
815 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
816 F:      drivers/thermal/thermal_mmio.c
817
818 AMAZON ETHERNET DRIVERS
819 M:      Netanel Belgazal <netanel@amazon.com>
820 M:      Arthur Kiyanovski <akiyano@amazon.com>
821 R:      Guy Tzalik <gtzalik@amazon.com>
822 R:      Saeed Bishara <saeedb@amazon.com>
823 R:      Zorik Machulsky <zorik@amazon.com>
824 L:      netdev@vger.kernel.org
825 S:      Supported
826 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
827 F:      drivers/net/ethernet/amazon/
828
829 AMAZON RDMA EFA DRIVER
830 M:      Gal Pressman <galpress@amazon.com>
831 R:      Yossi Leybovich <sleybo@amazon.com>
832 L:      linux-rdma@vger.kernel.org
833 S:      Supported
834 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
835 F:      drivers/infiniband/hw/efa/
836 F:      include/uapi/rdma/efa-abi.h
837
838 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
839 M:      Tom Lendacky <thomas.lendacky@amd.com>
840 M:      John Allen <john.allen@amd.com>
841 L:      linux-crypto@vger.kernel.org
842 S:      Supported
843 F:      drivers/crypto/ccp/
844 F:      include/linux/ccp.h
845
846 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
847 M:      Brijesh Singh <brijesh.singh@amd.com>
848 M:      Tom Lendacky <thomas.lendacky@amd.com>
849 L:      linux-crypto@vger.kernel.org
850 S:      Supported
851 F:      drivers/crypto/ccp/sev*
852 F:      include/uapi/linux/psp-sev.h
853
854 AMD DISPLAY CORE
855 M:      Harry Wentland <harry.wentland@amd.com>
856 M:      Leo Li <sunpeng.li@amd.com>
857 L:      amd-gfx@lists.freedesktop.org
858 S:      Supported
859 T:      git git://people.freedesktop.org/~agd5f/linux
860 F:      drivers/gpu/drm/amd/display/
861
862 AMD ENERGY DRIVER
863 M:      Naveen Krishna Chatradhi <nchatrad@amd.com>
864 L:      linux-hwmon@vger.kernel.org
865 S:      Maintained
866 F:      Documentation/hwmon/amd_energy.rst
867 F:      drivers/hwmon/amd_energy.c
868
869 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
870 M:      Huang Rui <ray.huang@amd.com>
871 L:      linux-hwmon@vger.kernel.org
872 S:      Supported
873 F:      Documentation/hwmon/fam15h_power.rst
874 F:      drivers/hwmon/fam15h_power.c
875
876 AMD FCH GPIO DRIVER
877 M:      Enrico Weigelt, metux IT consult <info@metux.net>
878 L:      linux-gpio@vger.kernel.org
879 S:      Maintained
880 F:      drivers/gpio/gpio-amd-fch.c
881 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
882
883 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
884 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
885 S:      Orphan
886 F:      drivers/usb/gadget/udc/amd5536udc.*
887
888 AMD GEODE PROCESSOR/CHIPSET SUPPORT
889 M:      Andres Salomon <dilinger@queued.net>
890 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
891 S:      Supported
892 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
893 F:      arch/x86/include/asm/geode.h
894 F:      drivers/char/hw_random/geode-rng.c
895 F:      drivers/crypto/geode*
896 F:      drivers/video/fbdev/geode/
897
898 AMD IOMMU (AMD-VI)
899 M:      Joerg Roedel <joro@8bytes.org>
900 L:      iommu@lists.linux-foundation.org
901 S:      Maintained
902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
903 F:      drivers/iommu/amd/
904 F:      include/linux/amd-iommu.h
905
906 AMD KFD
907 M:      Felix Kuehling <Felix.Kuehling@amd.com>
908 L:      amd-gfx@lists.freedesktop.org
909 S:      Supported
910 T:      git git://people.freedesktop.org/~agd5f/linux
911 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
912 F:      drivers/gpu/drm/amd/amdkfd/
913 F:      drivers/gpu/drm/amd/include/cik_structs.h
914 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
915 F:      drivers/gpu/drm/amd/include/v9_structs.h
916 F:      drivers/gpu/drm/amd/include/vi_structs.h
917 F:      include/uapi/linux/kfd_ioctl.h
918
919 AMD SPI DRIVER
920 M:      Sanjay R Mehta <sanju.mehta@amd.com>
921 S:      Maintained
922 F:      drivers/spi/spi-amd.c
923
924 AMD MP2 I2C DRIVER
925 M:      Elie Morisse <syniurge@gmail.com>
926 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
927 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
928 L:      linux-i2c@vger.kernel.org
929 S:      Maintained
930 F:      drivers/i2c/busses/i2c-amd-mp2*
931
932 AMD PMC DRIVER
933 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
934 L:      platform-driver-x86@vger.kernel.org
935 S:      Maintained
936 F:      drivers/platform/x86/amd-pmc.*
937
938 AMD POWERPLAY
939 M:      Evan Quan <evan.quan@amd.com>
940 L:      amd-gfx@lists.freedesktop.org
941 S:      Supported
942 T:      git git://people.freedesktop.org/~agd5f/linux
943 F:      drivers/gpu/drm/amd/pm/powerplay/
944
945 AMD SEATTLE DEVICE TREE SUPPORT
946 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
947 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
948 M:      Tom Lendacky <thomas.lendacky@amd.com>
949 S:      Supported
950 F:      arch/arm64/boot/dts/amd/
951
952 AMD XGBE DRIVER
953 M:      Tom Lendacky <thomas.lendacky@amd.com>
954 L:      netdev@vger.kernel.org
955 S:      Supported
956 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
957 F:      drivers/net/ethernet/amd/xgbe/
958
959 AMS AS73211 DRIVER
960 M:      Christian Eggers <ceggers@arri.de>
961 L:      linux-iio@vger.kernel.org
962 S:      Maintained
963 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
964 F:      drivers/iio/light/as73211.c
965
966 ANALOG DEVICES INC AD7192 DRIVER
967 M:      Alexandru Tachici <alexandru.tachici@analog.com>
968 L:      linux-iio@vger.kernel.org
969 S:      Supported
970 W:      http://ez.analog.com/community/linux-device-drivers
971 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
972 F:      drivers/iio/adc/ad7192.c
973
974 ANALOG DEVICES INC AD7292 DRIVER
975 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
976 L:      linux-iio@vger.kernel.org
977 S:      Supported
978 W:      http://ez.analog.com/community/linux-device-drivers
979 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
980 F:      drivers/iio/adc/ad7292.c
981
982 ANALOG DEVICES INC AD7768-1 DRIVER
983 M:      Michael Hennerich <Michael.Hennerich@analog.com>
984 L:      linux-iio@vger.kernel.org
985 S:      Supported
986 W:      http://ez.analog.com/community/linux-device-drivers
987 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
988 F:      drivers/iio/adc/ad7768-1.c
989
990 ANALOG DEVICES INC AD7780 DRIVER
991 M:      Michael Hennerich <Michael.Hennerich@analog.com>
992 M:      Renato Lui Geh <renatogeh@gmail.com>
993 L:      linux-iio@vger.kernel.org
994 S:      Supported
995 W:      http://ez.analog.com/community/linux-device-drivers
996 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
997 F:      drivers/iio/adc/ad7780.c
998
999 ANALOG DEVICES INC AD9389B DRIVER
1000 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1001 L:      linux-media@vger.kernel.org
1002 S:      Maintained
1003 F:      drivers/media/i2c/ad9389b*
1004
1005 ANALOG DEVICES INC ADGS1408 DRIVER
1006 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1007 S:      Supported
1008 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1009 F:      drivers/mux/adgs1408.c
1010
1011 ANALOG DEVICES INC ADIN DRIVER
1012 M:      Alexandru Ardelean <alexaundru.ardelean@analog.com>
1013 L:      netdev@vger.kernel.org
1014 S:      Supported
1015 W:      http://ez.analog.com/community/linux-device-drivers
1016 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1017 F:      drivers/net/phy/adin.c
1018
1019 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1020 M:      Alexandru Ardelean <alexandru.ardelean@analog.com>
1021 L:      linux-iio@vger.kernel.org
1022 S:      Supported
1023 F:      drivers/iio/imu/adis.c
1024 F:      include/linux/iio/imu/adis.h
1025
1026 ANALOG DEVICES INC ADIS16460 DRIVER
1027 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1028 L:      linux-iio@vger.kernel.org
1029 S:      Supported
1030 W:      http://ez.analog.com/community/linux-device-drivers
1031 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1032 F:      drivers/iio/imu/adis16460.c
1033
1034 ANALOG DEVICES INC ADIS16475 DRIVER
1035 M:      Nuno Sa <nuno.sa@analog.com>
1036 L:      linux-iio@vger.kernel.org
1037 W:      http://ez.analog.com/community/linux-device-drivers
1038 S:      Supported
1039 F:      drivers/iio/imu/adis16475.c
1040 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1041
1042 ANALOG DEVICES INC ADM1177 DRIVER
1043 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1044 L:      linux-hwmon@vger.kernel.org
1045 S:      Supported
1046 W:      http://ez.analog.com/community/linux-device-drivers
1047 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1048 F:      drivers/hwmon/adm1177.c
1049
1050 ANALOG DEVICES INC ADP5061 DRIVER
1051 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1052 L:      linux-pm@vger.kernel.org
1053 S:      Supported
1054 W:      http://ez.analog.com/community/linux-device-drivers
1055 F:      drivers/power/supply/adp5061.c
1056
1057 ANALOG DEVICES INC ADV7180 DRIVER
1058 M:      Lars-Peter Clausen <lars@metafoo.de>
1059 L:      linux-media@vger.kernel.org
1060 S:      Supported
1061 W:      http://ez.analog.com/community/linux-device-drivers
1062 F:      drivers/media/i2c/adv7180.c
1063 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1064
1065 ANALOG DEVICES INC ADV748X DRIVER
1066 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1067 L:      linux-media@vger.kernel.org
1068 S:      Maintained
1069 F:      drivers/media/i2c/adv748x/*
1070
1071 ANALOG DEVICES INC ADV7511 DRIVER
1072 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1073 L:      linux-media@vger.kernel.org
1074 S:      Maintained
1075 F:      drivers/media/i2c/adv7511*
1076
1077 ANALOG DEVICES INC ADV7604 DRIVER
1078 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1079 L:      linux-media@vger.kernel.org
1080 S:      Maintained
1081 F:      drivers/media/i2c/adv7604*
1082 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1083
1084 ANALOG DEVICES INC ADV7842 DRIVER
1085 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1086 L:      linux-media@vger.kernel.org
1087 S:      Maintained
1088 F:      drivers/media/i2c/adv7842*
1089
1090 ANALOG DEVICES INC ADXRS290 DRIVER
1091 M:      Nishant Malpani <nish.malpani25@gmail.com>
1092 L:      linux-iio@vger.kernel.org
1093 S:      Supported
1094 F:      drivers/iio/gyro/adxrs290.c
1095 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1096
1097 ANALOG DEVICES INC ASOC CODEC DRIVERS
1098 M:      Lars-Peter Clausen <lars@metafoo.de>
1099 M:      Nuno Sá <nuno.sa@analog.com>
1100 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1101 S:      Supported
1102 W:      http://wiki.analog.com/
1103 W:      http://ez.analog.com/community/linux-device-drivers
1104 F:      sound/soc/codecs/ad1*
1105 F:      sound/soc/codecs/ad7*
1106 F:      sound/soc/codecs/adau*
1107 F:      sound/soc/codecs/adav*
1108 F:      sound/soc/codecs/sigmadsp.*
1109 F:      sound/soc/codecs/ssm*
1110
1111 ANALOG DEVICES INC DMA DRIVERS
1112 M:      Lars-Peter Clausen <lars@metafoo.de>
1113 S:      Supported
1114 W:      http://ez.analog.com/community/linux-device-drivers
1115 F:      drivers/dma/dma-axi-dmac.c
1116
1117 ANALOG DEVICES INC IIO DRIVERS
1118 M:      Lars-Peter Clausen <lars@metafoo.de>
1119 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1120 S:      Supported
1121 W:      http://wiki.analog.com/
1122 W:      http://ez.analog.com/community/linux-device-drivers
1123 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1124 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1125 F:      Documentation/devicetree/bindings/iio/*/adi,*
1126 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
1127 F:      drivers/iio/*/ad*
1128 F:      drivers/iio/adc/ltc249*
1129 F:      drivers/iio/amplifiers/hmc425a.c
1130 F:      drivers/staging/iio/*/ad*
1131 X:      drivers/iio/*/adjd*
1132
1133 ANALOGBITS PLL LIBRARIES
1134 M:      Paul Walmsley <paul.walmsley@sifive.com>
1135 S:      Supported
1136 F:      drivers/clk/analogbits/*
1137 F:      include/linux/clk/analogbits*
1138
1139 ANDES ARCHITECTURE
1140 M:      Nick Hu <nickhu@andestech.com>
1141 M:      Greentime Hu <green.hu@gmail.com>
1142 M:      Vincent Chen <deanbo422@gmail.com>
1143 S:      Supported
1144 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1145 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1146 F:      Documentation/devicetree/bindings/nds32/
1147 F:      arch/nds32/
1148 N:      nds32
1149 K:      nds32
1150
1151 ANDROID CONFIG FRAGMENTS
1152 M:      Rob Herring <robh@kernel.org>
1153 S:      Supported
1154 F:      kernel/configs/android*
1155
1156 ANDROID DRIVERS
1157 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1158 M:      Arve Hjønnevåg <arve@android.com>
1159 M:      Todd Kjos <tkjos@android.com>
1160 M:      Martijn Coenen <maco@android.com>
1161 M:      Joel Fernandes <joel@joelfernandes.org>
1162 M:      Christian Brauner <christian@brauner.io>
1163 M:      Hridya Valsaraju <hridya@google.com>
1164 M:      Suren Baghdasaryan <surenb@google.com>
1165 L:      devel@driverdev.osuosl.org
1166 S:      Supported
1167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1168 F:      drivers/android/
1169 F:      drivers/staging/android/
1170
1171 ANDROID GOLDFISH PIC DRIVER
1172 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1173 S:      Supported
1174 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1175 F:      drivers/irqchip/irq-goldfish-pic.c
1176
1177 ANDROID GOLDFISH RTC DRIVER
1178 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1179 S:      Supported
1180 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1181 F:      drivers/rtc/rtc-goldfish.c
1182
1183 AOA (Apple Onboard Audio) ALSA DRIVER
1184 M:      Johannes Berg <johannes@sipsolutions.net>
1185 L:      linuxppc-dev@lists.ozlabs.org
1186 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1187 S:      Maintained
1188 F:      sound/aoa/
1189
1190 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1191 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1192 L:      linux-iio@vger.kernel.org
1193 S:      Maintained
1194 F:      drivers/iio/adc/stx104.c
1195
1196 APM DRIVER
1197 M:      Jiri Kosina <jikos@kernel.org>
1198 S:      Odd fixes
1199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1200 F:      arch/x86/kernel/apm_32.c
1201 F:      drivers/char/apm-emulation.c
1202 F:      include/linux/apm_bios.h
1203 F:      include/uapi/linux/apm_bios.h
1204
1205 APPARMOR SECURITY MODULE
1206 M:      John Johansen <john.johansen@canonical.com>
1207 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1208 S:      Supported
1209 W:      wiki.apparmor.net
1210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1211 F:      Documentation/admin-guide/LSM/apparmor.rst
1212 F:      security/apparmor/
1213
1214 APPLE BCM5974 MULTITOUCH DRIVER
1215 M:      Henrik Rydberg <rydberg@bitmath.org>
1216 L:      linux-input@vger.kernel.org
1217 S:      Odd fixes
1218 F:      drivers/input/mouse/bcm5974.c
1219
1220 APPLE SMC DRIVER
1221 M:      Henrik Rydberg <rydberg@bitmath.org>
1222 L:      linux-hwmon@vger.kernel.org
1223 S:      Odd fixes
1224 F:      drivers/hwmon/applesmc.c
1225
1226 APPLETALK NETWORK LAYER
1227 L:      netdev@vger.kernel.org
1228 S:      Odd fixes
1229 F:      drivers/net/appletalk/
1230 F:      include/linux/atalk.h
1231 F:      include/uapi/linux/atalk.h
1232 F:      net/appletalk/
1233
1234 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1235 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1236 S:      Supported
1237 F:      arch/arm64/boot/dts/apm/
1238
1239 APPLIED MICRO (APM) X-GENE SOC EDAC
1240 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1241 S:      Supported
1242 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1243 F:      drivers/edac/xgene_edac.c
1244
1245 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1246 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1247 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1248 S:      Supported
1249 F:      drivers/net/ethernet/apm/xgene-v2/
1250
1251 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1252 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1253 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1254 M:      Quan Nguyen <quan@os.amperecomputing.com>
1255 S:      Supported
1256 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1257 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1258 F:      drivers/net/ethernet/apm/xgene/
1259 F:      drivers/net/mdio/mdio-xgene.c
1260
1261 APPLIED MICRO (APM) X-GENE SOC PMU
1262 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1263 S:      Supported
1264 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1265 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1266 F:      drivers/perf/xgene_pmu.c
1267
1268 APTINA CAMERA SENSOR PLL
1269 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1270 L:      linux-media@vger.kernel.org
1271 S:      Maintained
1272 F:      drivers/media/i2c/aptina-pll.*
1273
1274 AQUANTIA ETHERNET DRIVER (atlantic)
1275 M:      Igor Russkikh <irusskikh@marvell.com>
1276 L:      netdev@vger.kernel.org
1277 S:      Supported
1278 W:      https://www.marvell.com/
1279 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1280 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1281 F:      drivers/net/ethernet/aquantia/atlantic/
1282
1283 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1284 M:      Egor Pomozov <epomozov@marvell.com>
1285 L:      netdev@vger.kernel.org
1286 S:      Supported
1287 W:      http://www.aquantia.com
1288 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1289
1290 ARASAN NAND CONTROLLER DRIVER
1291 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1292 L:      linux-mtd@lists.infradead.org
1293 S:      Maintained
1294 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1295 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1296
1297 ARC FRAMEBUFFER DRIVER
1298 M:      Jaya Kumar <jayalk@intworks.biz>
1299 S:      Maintained
1300 F:      drivers/video/fbdev/arcfb.c
1301 F:      drivers/video/fbdev/core/fb_defio.c
1302
1303 ARC PGU DRM DRIVER
1304 M:      Alexey Brodkin <abrodkin@synopsys.com>
1305 S:      Supported
1306 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1307 F:      drivers/gpu/drm/arc/
1308
1309 ARCNET NETWORK LAYER
1310 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1311 L:      netdev@vger.kernel.org
1312 S:      Maintained
1313 F:      drivers/net/arcnet/
1314 F:      include/uapi/linux/if_arcnet.h
1315
1316 ARM ARCHITECTED TIMER DRIVER
1317 M:      Mark Rutland <mark.rutland@arm.com>
1318 M:      Marc Zyngier <maz@kernel.org>
1319 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1320 S:      Maintained
1321 F:      arch/arm/include/asm/arch_timer.h
1322 F:      arch/arm64/include/asm/arch_timer.h
1323 F:      drivers/clocksource/arm_arch_timer.c
1324
1325 ARM HDLCD DRM DRIVER
1326 M:      Liviu Dudau <liviu.dudau@arm.com>
1327 S:      Supported
1328 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1329 F:      drivers/gpu/drm/arm/hdlcd_*
1330
1331 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1332 M:      Linus Walleij <linus.walleij@linaro.org>
1333 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1334 S:      Maintained
1335 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1336 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1337 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1338 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1339 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1340 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1341 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1342 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1343 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1344 F:      arch/arm/boot/dts/arm-realview-*
1345 F:      arch/arm/boot/dts/integrator*
1346 F:      arch/arm/boot/dts/versatile*
1347 F:      arch/arm/mach-integrator/
1348 F:      arch/arm/mach-realview/
1349 F:      arch/arm/mach-versatile/
1350 F:      arch/arm/plat-versatile/
1351 F:      drivers/bus/arm-integrator-lm.c
1352 F:      drivers/clk/versatile/
1353 F:      drivers/i2c/busses/i2c-versatile.c
1354 F:      drivers/irqchip/irq-versatile-fpga.c
1355 F:      drivers/mtd/maps/physmap-versatile.*
1356 F:      drivers/power/reset/arm-versatile-reboot.c
1357 F:      drivers/soc/versatile/
1358
1359 ARM KOMEDA DRM-KMS DRIVER
1360 M:      James (Qian) Wang <james.qian.wang@arm.com>
1361 M:      Liviu Dudau <liviu.dudau@arm.com>
1362 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1363 L:      Mali DP Maintainers <malidp@foss.arm.com>
1364 S:      Supported
1365 T:      git git://anongit.freedesktop.org/drm/drm-misc
1366 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1367 F:      Documentation/gpu/komeda-kms.rst
1368 F:      drivers/gpu/drm/arm/display/include/
1369 F:      drivers/gpu/drm/arm/display/komeda/
1370
1371 ARM MALI PANFROST DRM DRIVER
1372 M:      Rob Herring <robh@kernel.org>
1373 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1374 R:      Steven Price <steven.price@arm.com>
1375 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1376 L:      dri-devel@lists.freedesktop.org
1377 S:      Supported
1378 T:      git git://anongit.freedesktop.org/drm/drm-misc
1379 F:      drivers/gpu/drm/panfrost/
1380 F:      include/uapi/drm/panfrost_drm.h
1381
1382 ARM MALI-DP DRM DRIVER
1383 M:      Liviu Dudau <liviu.dudau@arm.com>
1384 M:      Brian Starkey <brian.starkey@arm.com>
1385 L:      Mali DP Maintainers <malidp@foss.arm.com>
1386 S:      Supported
1387 T:      git git://anongit.freedesktop.org/drm/drm-misc
1388 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1389 F:      Documentation/gpu/afbc.rst
1390 F:      drivers/gpu/drm/arm/
1391
1392 ARM MFM AND FLOPPY DRIVERS
1393 M:      Ian Molton <spyro@f2s.com>
1394 S:      Maintained
1395 F:      arch/arm/include/asm/floppy.h
1396 F:      arch/arm/mach-rpc/floppydma.S
1397
1398 ARM PMU PROFILING AND DEBUGGING
1399 M:      Will Deacon <will@kernel.org>
1400 M:      Mark Rutland <mark.rutland@arm.com>
1401 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1402 S:      Maintained
1403 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1404 F:      Documentation/devicetree/bindings/perf/
1405 F:      arch/arm*/include/asm/hw_breakpoint.h
1406 F:      arch/arm*/include/asm/perf_event.h
1407 F:      arch/arm*/kernel/hw_breakpoint.c
1408 F:      arch/arm*/kernel/perf_*
1409 F:      arch/arm/oprofile/common.c
1410 F:      drivers/perf/
1411 F:      include/linux/perf/arm_pmu.h
1412
1413 ARM PORT
1414 M:      Russell King <linux@armlinux.org.uk>
1415 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1416 S:      Odd Fixes
1417 W:      http://www.armlinux.org.uk/
1418 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1419 F:      arch/arm/
1420 X:      arch/arm/boot/dts/
1421
1422 ARM PRIMECELL AACI PL041 DRIVER
1423 M:      Russell King <linux@armlinux.org.uk>
1424 S:      Odd Fixes
1425 F:      sound/arm/aaci.*
1426
1427 ARM PRIMECELL BUS SUPPORT
1428 M:      Russell King <linux@armlinux.org.uk>
1429 S:      Odd Fixes
1430 F:      drivers/amba/
1431 F:      include/linux/amba/bus.h
1432
1433 ARM PRIMECELL CLCD PL110 DRIVER
1434 M:      Russell King <linux@armlinux.org.uk>
1435 S:      Odd Fixes
1436 F:      drivers/video/fbdev/amba-clcd.*
1437
1438 ARM PRIMECELL KMI PL050 DRIVER
1439 M:      Russell King <linux@armlinux.org.uk>
1440 S:      Odd Fixes
1441 F:      drivers/input/serio/ambakmi.*
1442 F:      include/linux/amba/kmi.h
1443
1444 ARM PRIMECELL MMCI PL180/1 DRIVER
1445 M:      Russell King <linux@armlinux.org.uk>
1446 S:      Odd Fixes
1447 F:      drivers/mmc/host/mmci.*
1448 F:      include/linux/amba/mmci.h
1449
1450 ARM PRIMECELL SSP PL022 SPI DRIVER
1451 M:      Linus Walleij <linus.walleij@linaro.org>
1452 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1453 S:      Maintained
1454 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1455 F:      drivers/spi/spi-pl022.c
1456
1457 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1458 M:      Russell King <linux@armlinux.org.uk>
1459 S:      Odd Fixes
1460 F:      drivers/tty/serial/amba-pl01*.c
1461 F:      include/linux/amba/serial.h
1462
1463 ARM PRIMECELL VIC PL190/PL192 DRIVER
1464 M:      Linus Walleij <linus.walleij@linaro.org>
1465 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1466 S:      Maintained
1467 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1468 F:      drivers/irqchip/irq-vic.c
1469
1470 ARM SMC WATCHDOG DRIVER
1471 M:      Julius Werner <jwerner@chromium.org>
1472 R:      Evan Benn <evanbenn@chromium.org>
1473 S:      Maintained
1474 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1475 F:      drivers/watchdog/arm_smc_wdt.c
1476
1477 ARM SMMU DRIVERS
1478 M:      Will Deacon <will@kernel.org>
1479 R:      Robin Murphy <robin.murphy@arm.com>
1480 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1481 S:      Maintained
1482 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1483 F:      drivers/iommu/arm/
1484 F:      drivers/iommu/io-pgtable-arm*
1485
1486 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1487 M:      Arnd Bergmann <arnd@arndb.de>
1488 M:      Olof Johansson <olof@lixom.net>
1489 M:      soc@kernel.org
1490 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1491 S:      Maintained
1492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1493 F:      arch/arm/boot/dts/Makefile
1494 F:      arch/arm64/boot/dts/Makefile
1495
1496 ARM SUB-ARCHITECTURES
1497 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1498 S:      Maintained
1499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1500 F:      arch/arm/mach-*/
1501 F:      arch/arm/plat-*/
1502
1503 ARM/ACTIONS SEMI ARCHITECTURE
1504 M:      Andreas Färber <afaerber@suse.de>
1505 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1506 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1507 S:      Maintained
1508 F:      Documentation/devicetree/bindings/arm/actions.yaml
1509 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1510 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1511 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1512 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1513 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1514 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1515 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1516 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1517 F:      arch/arm/boot/dts/owl-*
1518 F:      arch/arm/mach-actions/
1519 F:      arch/arm64/boot/dts/actions/
1520 F:      drivers/clk/actions/
1521 F:      drivers/clocksource/timer-owl*
1522 F:      drivers/dma/owl-dma.c
1523 F:      drivers/i2c/busses/i2c-owl.c
1524 F:      drivers/irqchip/irq-owl-sirq.c
1525 F:      drivers/mmc/host/owl-mmc.c
1526 F:      drivers/pinctrl/actions/*
1527 F:      drivers/soc/actions/
1528 F:      include/dt-bindings/power/owl-*
1529 F:      include/dt-bindings/reset/actions,*
1530 F:      include/linux/soc/actions/
1531 N:      owl
1532
1533 ARM/ADS SPHERE MACHINE SUPPORT
1534 M:      Lennert Buytenhek <kernel@wantstofly.org>
1535 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1536 S:      Maintained
1537
1538 ARM/AFEB9260 MACHINE SUPPORT
1539 M:      Sergey Lapin <slapin@ossfans.org>
1540 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1541 S:      Maintained
1542
1543 ARM/AJECO 1ARM MACHINE SUPPORT
1544 M:      Lennert Buytenhek <kernel@wantstofly.org>
1545 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1546 S:      Maintained
1547
1548 ARM/Allwinner SoC Clock Support
1549 M:      Emilio López <emilio@elopez.com.ar>
1550 S:      Maintained
1551 F:      drivers/clk/sunxi/
1552
1553 ARM/Allwinner sunXi SoC support
1554 M:      Maxime Ripard <mripard@kernel.org>
1555 M:      Chen-Yu Tsai <wens@csie.org>
1556 R:      Jernej Skrabec <jernej.skrabec@siol.net>
1557 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1558 S:      Maintained
1559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1560 F:      arch/arm/mach-sunxi/
1561 F:      arch/arm64/boot/dts/allwinner/
1562 F:      drivers/clk/sunxi-ng/
1563 F:      drivers/pinctrl/sunxi/
1564 F:      drivers/soc/sunxi/
1565 N:      sun[x456789]i
1566 N:      sun50i
1567
1568 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1569 M:      Neil Armstrong <narmstrong@baylibre.com>
1570 M:      Jerome Brunet <jbrunet@baylibre.com>
1571 L:      linux-amlogic@lists.infradead.org
1572 S:      Maintained
1573 F:      Documentation/devicetree/bindings/clock/amlogic*
1574 F:      drivers/clk/meson/
1575 F:      include/dt-bindings/clock/gxbb*
1576 F:      include/dt-bindings/clock/meson*
1577
1578 ARM/Amlogic Meson SoC Crypto Drivers
1579 M:      Corentin Labbe <clabbe@baylibre.com>
1580 L:      linux-crypto@vger.kernel.org
1581 L:      linux-amlogic@lists.infradead.org
1582 S:      Maintained
1583 F:      Documentation/devicetree/bindings/crypto/amlogic*
1584 F:      drivers/crypto/amlogic/
1585
1586 ARM/Amlogic Meson SoC Sound Drivers
1587 M:      Jerome Brunet <jbrunet@baylibre.com>
1588 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1589 S:      Maintained
1590 F:      Documentation/devicetree/bindings/sound/amlogic*
1591 F:      sound/soc/meson/
1592
1593 ARM/Amlogic Meson SoC support
1594 M:      Kevin Hilman <khilman@baylibre.com>
1595 R:      Neil Armstrong <narmstrong@baylibre.com>
1596 R:      Jerome Brunet <jbrunet@baylibre.com>
1597 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1598 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1599 L:      linux-amlogic@lists.infradead.org
1600 S:      Maintained
1601 W:      http://linux-meson.com/
1602 F:      arch/arm/boot/dts/meson*
1603 F:      arch/arm/mach-meson/
1604 F:      arch/arm64/boot/dts/amlogic/
1605 F:      drivers/mmc/host/meson*
1606 F:      drivers/pinctrl/meson/
1607 F:      drivers/rtc/rtc-meson*
1608 F:      drivers/soc/amlogic/
1609 N:      meson
1610
1611 ARM/Annapurna Labs ALPINE ARCHITECTURE
1612 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1613 M:      Antoine Tenart <atenart@kernel.org>
1614 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1615 S:      Maintained
1616 F:      arch/arm/boot/dts/alpine*
1617 F:      arch/arm/mach-alpine/
1618 F:      arch/arm64/boot/dts/amazon/
1619 F:      drivers/*/*alpine*
1620
1621 ARM/ARTPEC MACHINE SUPPORT
1622 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1623 M:      Lars Persson <lars.persson@axis.com>
1624 L:      linux-arm-kernel@axis.com
1625 S:      Maintained
1626 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1627 F:      arch/arm/boot/dts/artpec6*
1628 F:      arch/arm/mach-artpec
1629 F:      drivers/clk/axis
1630 F:      drivers/crypto/axis
1631 F:      drivers/mmc/host/usdhi6rol0.c
1632 F:      drivers/pinctrl/pinctrl-artpec*
1633
1634 ARM/ASPEED I2C DRIVER
1635 M:      Brendan Higgins <brendanhiggins@google.com>
1636 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1637 R:      Joel Stanley <joel@jms.id.au>
1638 L:      linux-i2c@vger.kernel.org
1639 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1640 S:      Maintained
1641 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1642 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1643 F:      drivers/i2c/busses/i2c-aspeed.c
1644 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1645
1646 ARM/ASPEED MACHINE SUPPORT
1647 M:      Joel Stanley <joel@jms.id.au>
1648 R:      Andrew Jeffery <andrew@aj.id.au>
1649 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1650 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1651 S:      Supported
1652 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1654 F:      arch/arm/boot/dts/aspeed-*
1655 F:      arch/arm/mach-aspeed/
1656 N:      aspeed
1657
1658 ARM/BITMAIN ARCHITECTURE
1659 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1660 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1661 S:      Maintained
1662 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1663 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1664 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1665 F:      arch/arm64/boot/dts/bitmain/
1666 F:      drivers/clk/clk-bm1880.c
1667 F:      drivers/pinctrl/pinctrl-bm1880.c
1668
1669 ARM/CALXEDA HIGHBANK ARCHITECTURE
1670 M:      Andre Przywara <andre.przywara@arm.com>
1671 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1672 S:      Maintained
1673 F:      arch/arm/boot/dts/ecx-*.dts*
1674 F:      arch/arm/boot/dts/highbank.dts
1675 F:      arch/arm/mach-highbank/
1676
1677 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1678 M:      Krzysztof Halasa <khalasa@piap.pl>
1679 S:      Maintained
1680 F:      arch/arm/mach-cns3xxx/
1681
1682 ARM/CAVIUM THUNDER NETWORK DRIVER
1683 M:      Sunil Goutham <sgoutham@marvell.com>
1684 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1685 S:      Supported
1686 F:      drivers/net/ethernet/cavium/thunder/
1687
1688 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1689 M:      Lukasz Majewski <lukma@denx.de>
1690 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1691 S:      Maintained
1692 F:      arch/arm/mach-ep93xx/ts72xx.c
1693
1694 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1695 M:      Alexander Shiyan <shc_work@mail.ru>
1696 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1697 S:      Odd Fixes
1698 N:      clps711x
1699
1700 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1701 M:      Lennert Buytenhek <kernel@wantstofly.org>
1702 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1703 S:      Maintained
1704
1705 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1706 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1707 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1708 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1709 S:      Maintained
1710 F:      arch/arm/mach-ep93xx/
1711 F:      arch/arm/mach-ep93xx/include/mach/
1712
1713 ARM/CLKDEV SUPPORT
1714 M:      Russell King <linux@armlinux.org.uk>
1715 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1716 S:      Maintained
1717 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1718 F:      drivers/clk/clkdev.c
1719
1720 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1721 M:      Baruch Siach <baruch@tkos.co.il>
1722 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1723 S:      Maintained
1724 F:      arch/arm/boot/dts/cx92755*
1725 N:      digicolor
1726
1727 ARM/CONTEC MICRO9 MACHINE SUPPORT
1728 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1729 S:      Maintained
1730 F:      arch/arm/mach-ep93xx/micro9.c
1731
1732 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1733 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1734 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1735 R:      Mike Leach <mike.leach@linaro.org>
1736 R:      Leo Yan <leo.yan@linaro.org>
1737 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1738 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1739 S:      Maintained
1740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1741 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1742 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1743 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1744 F:      Documentation/devicetree/bindings/arm/coresight.txt
1745 F:      Documentation/trace/coresight/*
1746 F:      drivers/hwtracing/coresight/*
1747 F:      include/dt-bindings/arm/coresight-cti-dt.h
1748 F:      tools/perf/arch/arm/util/auxtrace.c
1749 F:      tools/perf/arch/arm/util/cs-etm.c
1750 F:      tools/perf/arch/arm/util/cs-etm.h
1751 F:      tools/perf/arch/arm/util/pmu.c
1752 F:      tools/perf/util/cs-etm-decoder/*
1753 F:      tools/perf/util/cs-etm.*
1754
1755 ARM/CORGI MACHINE SUPPORT
1756 M:      Richard Purdie <rpurdie@rpsys.net>
1757 S:      Maintained
1758
1759 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1760 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1761 M:      Linus Walleij <linus.walleij@linaro.org>
1762 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1763 S:      Maintained
1764 T:      git git://github.com/ulli-kroll/linux.git
1765 F:      Documentation/devicetree/bindings/arm/gemini.txt
1766 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1767 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1768 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1769 F:      arch/arm/mach-gemini/
1770 F:      drivers/net/ethernet/cortina/
1771 F:      drivers/pinctrl/pinctrl-gemini.c
1772 F:      drivers/rtc/rtc-ftrtc010.c
1773
1774 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1775 M:      Barry Song <baohua@kernel.org>
1776 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1777 S:      Maintained
1778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1779 F:      arch/arm/boot/dts/prima2*
1780 F:      arch/arm/mach-prima2/
1781 F:      drivers/clk/sirf/
1782 F:      drivers/clocksource/timer-atlas7.c
1783 F:      drivers/clocksource/timer-prima2.c
1784 X:      drivers/gnss
1785 N:      [^a-z]sirf
1786
1787 ARM/CZ.NIC TURRIS MOX SUPPORT
1788 M:      Marek Behun <marek.behun@nic.cz>
1789 S:      Maintained
1790 W:      http://mox.turris.cz
1791 F:      Documentation/ABI/testing/debugfs-moxtet
1792 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1793 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1794 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1795 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1796 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1797 F:      drivers/bus/moxtet.c
1798 F:      drivers/firmware/turris-mox-rwtm.c
1799 F:      drivers/gpio/gpio-moxtet.c
1800 F:      include/linux/moxtet.h
1801
1802 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1803 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1804 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1805 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1806 S:      Maintained
1807 N:      efm32
1808
1809 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1810 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1811 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1812 S:      Maintained
1813 F:      arch/arm/mach-pxa/ezx.c
1814
1815 ARM/FARADAY FA526 PORT
1816 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1817 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1818 S:      Maintained
1819 T:      git git://git.berlios.de/gemini-board
1820 F:      arch/arm/mm/*-fa*
1821
1822 ARM/FOOTBRIDGE ARCHITECTURE
1823 M:      Russell King <linux@armlinux.org.uk>
1824 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1825 S:      Maintained
1826 W:      http://www.armlinux.org.uk/
1827 F:      arch/arm/include/asm/hardware/dec21285.h
1828 F:      arch/arm/mach-footbridge/
1829
1830 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1831 M:      Shawn Guo <shawnguo@kernel.org>
1832 M:      Sascha Hauer <s.hauer@pengutronix.de>
1833 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1834 R:      Fabio Estevam <festevam@gmail.com>
1835 R:      NXP Linux Team <linux-imx@nxp.com>
1836 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1837 S:      Maintained
1838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1839 X:      drivers/media/i2c/
1840 N:      imx
1841 N:      mxs
1842
1843 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1844 M:      Shawn Guo <shawnguo@kernel.org>
1845 M:      Li Yang <leoyang.li@nxp.com>
1846 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1847 S:      Maintained
1848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1849 F:      arch/arm/boot/dts/ls1021a*
1850 F:      arch/arm64/boot/dts/freescale/fsl-*
1851 F:      arch/arm64/boot/dts/freescale/qoriq-*
1852
1853 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1854 M:      Shawn Guo <shawnguo@kernel.org>
1855 M:      Sascha Hauer <s.hauer@pengutronix.de>
1856 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1857 R:      Stefan Agner <stefan@agner.ch>
1858 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1859 S:      Maintained
1860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1861 F:      arch/arm/boot/dts/vf*
1862 F:      arch/arm/mach-imx/*vf610*
1863
1864 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1865 M:      Lennert Buytenhek <kernel@wantstofly.org>
1866 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1867 S:      Maintained
1868
1869 ARM/GUMSTIX MACHINE SUPPORT
1870 M:      Steve Sakoman <sakoman@gmail.com>
1871 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1872 S:      Maintained
1873
1874 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1875 M:      Philipp Zabel <philipp.zabel@gmail.com>
1876 M:      Paul Parsons <lost.distance@yahoo.com>
1877 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1878 S:      Maintained
1879 F:      arch/arm/mach-pxa/hx4700.c
1880 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1881 F:      sound/soc/pxa/hx4700.c
1882
1883 ARM/HISILICON SOC SUPPORT
1884 M:      Wei Xu <xuwei5@hisilicon.com>
1885 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1886 S:      Supported
1887 W:      http://www.hisilicon.com
1888 T:      git git://github.com/hisilicon/linux-hisi.git
1889 F:      arch/arm/boot/dts/hi3*
1890 F:      arch/arm/boot/dts/hip*
1891 F:      arch/arm/boot/dts/hisi*
1892 F:      arch/arm/mach-hisi/
1893 F:      arch/arm64/boot/dts/hisilicon/
1894
1895 ARM/HP JORNADA 7XX MACHINE SUPPORT
1896 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1897 S:      Maintained
1898 W:      www.jlime.com
1899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1900 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1901 F:      arch/arm/mach-sa1100/jornada720.c
1902
1903 ARM/IGEP MACHINE SUPPORT
1904 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1905 M:      Javier Martinez Canillas <javier@dowhile0.org>
1906 L:      linux-omap@vger.kernel.org
1907 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1908 S:      Maintained
1909 F:      arch/arm/boot/dts/omap3-igep*
1910
1911 ARM/INCOME PXA270 SUPPORT
1912 M:      Marek Vasut <marek.vasut@gmail.com>
1913 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1914 S:      Maintained
1915 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1916
1917 ARM/INTEL IOP32X ARM ARCHITECTURE
1918 M:      Lennert Buytenhek <kernel@wantstofly.org>
1919 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1920 S:      Maintained
1921
1922 ARM/INTEL IQ81342EX MACHINE SUPPORT
1923 M:      Lennert Buytenhek <kernel@wantstofly.org>
1924 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1925 S:      Maintained
1926
1927 ARM/INTEL IXDP2850 MACHINE SUPPORT
1928 M:      Lennert Buytenhek <kernel@wantstofly.org>
1929 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1930 S:      Maintained
1931
1932 ARM/INTEL IXP4XX ARM ARCHITECTURE
1933 M:      Linus Walleij <linusw@kernel.org>
1934 M:      Imre Kaloz <kaloz@openwrt.org>
1935 M:      Krzysztof Halasa <khalasa@piap.pl>
1936 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1937 S:      Maintained
1938 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1939 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1940 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1941 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1942 F:      arch/arm/mach-ixp4xx/
1943 F:      drivers/clocksource/timer-ixp4xx.c
1944 F:      drivers/gpio/gpio-ixp4xx.c
1945 F:      drivers/irqchip/irq-ixp4xx.c
1946 F:      include/linux/irqchip/irq-ixp4xx.h
1947 F:      include/linux/platform_data/timer-ixp4xx.h
1948
1949 ARM/INTEL KEEMBAY ARCHITECTURE
1950 M:      Paul J. Murphy <paul.j.murphy@intel.com>
1951 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
1952 S:      Maintained
1953 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
1954 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
1955 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
1956
1957 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1958 M:      Jonathan Cameron <jic23@cam.ac.uk>
1959 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1960 S:      Maintained
1961 F:      arch/arm/mach-pxa/stargate2.c
1962 F:      drivers/pcmcia/pxa2xx_stargate2.c
1963
1964 ARM/INTEL XSC3 (MANZANO) ARM CORE
1965 M:      Lennert Buytenhek <kernel@wantstofly.org>
1966 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1967 S:      Maintained
1968
1969 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1970 M:      Lennert Buytenhek <kernel@wantstofly.org>
1971 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1972 S:      Maintained
1973
1974 ARM/LG1K ARCHITECTURE
1975 M:      Chanho Min <chanho.min@lge.com>
1976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1977 S:      Maintained
1978 F:      arch/arm64/boot/dts/lg/
1979
1980 ARM/LOGICPD PXA270 MACHINE SUPPORT
1981 M:      Lennert Buytenhek <kernel@wantstofly.org>
1982 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1983 S:      Maintained
1984
1985 ARM/LPC18XX ARCHITECTURE
1986 M:      Vladimir Zapolskiy <vz@mleia.com>
1987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1988 S:      Maintained
1989 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1990 F:      arch/arm/boot/dts/lpc43*
1991 F:      drivers/i2c/busses/i2c-lpc2k.c
1992 F:      drivers/memory/pl172.c
1993 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
1994 F:      drivers/rtc/rtc-lpc24xx.c
1995 N:      lpc18xx
1996
1997 ARM/LPC32XX SOC SUPPORT
1998 M:      Vladimir Zapolskiy <vz@mleia.com>
1999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2000 S:      Maintained
2001 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2002 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2003 F:      arch/arm/boot/dts/lpc32*
2004 F:      arch/arm/mach-lpc32xx/
2005 F:      drivers/i2c/busses/i2c-pnx.c
2006 F:      drivers/net/ethernet/nxp/lpc_eth.c
2007 F:      drivers/usb/host/ohci-nxp.c
2008 F:      drivers/watchdog/pnx4008_wdt.c
2009 N:      lpc32xx
2010
2011 ARM/MAGICIAN MACHINE SUPPORT
2012 M:      Philipp Zabel <philipp.zabel@gmail.com>
2013 S:      Maintained
2014
2015 ARM/Marvell Dove/MV78xx0/Orion SOC support
2016 M:      Andrew Lunn <andrew@lunn.ch>
2017 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2018 M:      Gregory Clement <gregory.clement@bootlin.com>
2019 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2020 S:      Maintained
2021 T:      git git://git.infradead.org/linux-mvebu.git
2022 F:      Documentation/devicetree/bindings/soc/dove/
2023 F:      arch/arm/boot/dts/dove*
2024 F:      arch/arm/boot/dts/orion5x*
2025 F:      arch/arm/mach-dove/
2026 F:      arch/arm/mach-mv78xx0/
2027 F:      arch/arm/mach-orion5x/
2028 F:      arch/arm/plat-orion/
2029 F:      drivers/soc/dove/
2030
2031 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2032 M:      Andrew Lunn <andrew@lunn.ch>
2033 M:      Gregory Clement <gregory.clement@bootlin.com>
2034 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2035 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2036 S:      Maintained
2037 T:      git git://git.infradead.org/linux-mvebu.git
2038 F:      arch/arm/boot/dts/armada*
2039 F:      arch/arm/boot/dts/kirkwood*
2040 F:      arch/arm/configs/mvebu_*_defconfig
2041 F:      arch/arm/mach-mvebu/
2042 F:      arch/arm64/boot/dts/marvell/armada*
2043 F:      arch/arm64/boot/dts/marvell/cn913*
2044 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2045 F:      drivers/cpufreq/armada-8k-cpufreq.c
2046 F:      drivers/cpufreq/mvebu-cpufreq.c
2047 F:      drivers/irqchip/irq-armada-370-xp.c
2048 F:      drivers/irqchip/irq-mvebu-*
2049 F:      drivers/pinctrl/mvebu/
2050 F:      drivers/rtc/rtc-armada38x.c
2051
2052 ARM/Mediatek RTC DRIVER
2053 M:      Eddie Huang <eddie.huang@mediatek.com>
2054 M:      Sean Wang <sean.wang@mediatek.com>
2055 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2056 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2057 S:      Maintained
2058 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2059 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2060 F:      drivers/rtc/rtc-mt2712.c
2061 F:      drivers/rtc/rtc-mt6397.c
2062 F:      drivers/rtc/rtc-mt7622.c
2063
2064 ARM/Mediatek SoC support
2065 M:      Matthias Brugger <matthias.bgg@gmail.com>
2066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2067 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2068 S:      Maintained
2069 W:      https://mtk.bcnfs.org/
2070 C:      irc://chat.freenode.net/linux-mediatek
2071 F:      arch/arm/boot/dts/mt6*
2072 F:      arch/arm/boot/dts/mt7*
2073 F:      arch/arm/boot/dts/mt8*
2074 F:      arch/arm/mach-mediatek/
2075 F:      arch/arm64/boot/dts/mediatek/
2076 F:      drivers/soc/mediatek/
2077 N:      mtk
2078 N:      mt[678]
2079 K:      mediatek
2080
2081 ARM/Mediatek USB3 PHY DRIVER
2082 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2083 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2084 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2085 S:      Maintained
2086 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2087 F:      drivers/phy/mediatek/
2088
2089 ARM/Microchip (AT91) SoC support
2090 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2091 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2092 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2093 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2094 S:      Supported
2095 W:      http://www.linux4sam.org
2096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2097 F:      arch/arm/boot/dts/at91*.dts
2098 F:      arch/arm/boot/dts/at91*.dtsi
2099 F:      arch/arm/boot/dts/sama*.dts
2100 F:      arch/arm/boot/dts/sama*.dtsi
2101 F:      arch/arm/include/debug/at91.S
2102 F:      arch/arm/mach-at91/
2103 F:      drivers/memory/atmel*
2104 F:      drivers/watchdog/sama5d4_wdt.c
2105 F:      include/soc/at91/
2106 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2107 X:      drivers/net/wireless/atmel/
2108 N:      at91
2109 N:      atmel
2110
2111 ARM/Microchip Sparx5 SoC support
2112 M:      Lars Povlsen <lars.povlsen@microchip.com>
2113 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2114 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
2115 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2116 S:      Supported
2117 T:      git git://github.com/microchip-ung/linux-upstream.git
2118 F:      arch/arm64/boot/dts/microchip/
2119 N:      sparx5
2120
2121 Microchip Timer Counter Block (TCB) Capture Driver
2122 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2123 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2124 L:      linux-iio@vger.kernel.org
2125 S:      Maintained
2126 F:      drivers/counter/microchip-tcb-capture.c
2127
2128 ARM/MIOA701 MACHINE SUPPORT
2129 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2130 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2131 S:      Maintained
2132 F:      arch/arm/mach-pxa/mioa701.c
2133
2134 ARM/MStar/Sigmastar Armv7 SoC support
2135 M:      Daniel Palmer <daniel@thingy.jp>
2136 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2137 S:      Maintained
2138 W:      http://linux-chenxing.org/
2139 F:      Documentation/devicetree/bindings/arm/mstar/*
2140 F:      arch/arm/boot/dts/mstar-*
2141 F:      arch/arm/mach-mstar/
2142
2143 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2144 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2145 S:      Maintained
2146
2147 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2148 M:      Linus Walleij <linus.walleij@linaro.org>
2149 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2150 S:      Maintained
2151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2152 F:      Documentation/devicetree/bindings/arm/ste-*
2153 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2154 F:      Documentation/devicetree/bindings/arm/ux500/
2155 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2156 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2157 F:      arch/arm/boot/dts/ste-*
2158 F:      arch/arm/mach-nomadik/
2159 F:      arch/arm/mach-u300/
2160 F:      arch/arm/mach-ux500/
2161 F:      drivers/clk/clk-nomadik.c
2162 F:      drivers/clk/clk-u300.c
2163 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2164 F:      drivers/clocksource/timer-u300.c
2165 F:      drivers/dma/coh901318*
2166 F:      drivers/dma/ste_dma40*
2167 F:      drivers/hwspinlock/u8500_hsem.c
2168 F:      drivers/i2c/busses/i2c-nomadik.c
2169 F:      drivers/i2c/busses/i2c-stu300.c
2170 F:      drivers/iio/adc/ab8500-gpadc.c
2171 F:      drivers/mfd/ab3100*
2172 F:      drivers/mfd/ab8500*
2173 F:      drivers/mfd/abx500*
2174 F:      drivers/mfd/db8500*
2175 F:      drivers/mfd/dbx500*
2176 F:      drivers/pinctrl/nomadik/
2177 F:      drivers/pinctrl/pinctrl-coh901*
2178 F:      drivers/pinctrl/pinctrl-u300.c
2179 F:      drivers/rtc/rtc-ab3100.c
2180 F:      drivers/rtc/rtc-ab8500.c
2181 F:      drivers/rtc/rtc-coh901331.c
2182 F:      drivers/rtc/rtc-pl031.c
2183 F:      drivers/soc/ux500/
2184 F:      drivers/watchdog/coh901327_wdt.c
2185
2186 ARM/NUVOTON NPCM ARCHITECTURE
2187 M:      Avi Fishman <avifishman70@gmail.com>
2188 M:      Tomer Maimon <tmaimon77@gmail.com>
2189 M:      Tali Perry <tali.perry1@gmail.com>
2190 R:      Patrick Venture <venture@google.com>
2191 R:      Nancy Yuen <yuenn@google.com>
2192 R:      Benjamin Fair <benjaminfair@google.com>
2193 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2194 S:      Supported
2195 F:      Documentation/devicetree/bindings/*/*/*npcm*
2196 F:      Documentation/devicetree/bindings/*/*npcm*
2197 F:      arch/arm/boot/dts/nuvoton-npcm*
2198 F:      arch/arm/mach-npcm/
2199 F:      drivers/*/*npcm*
2200 F:      drivers/*/*/*npcm*
2201 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2202
2203 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2204 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2205 S:      Orphan
2206 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2207 F:      arch/arm/mach-s3c/gta02.h
2208 F:      arch/arm/mach-s3c/mach-gta02.c
2209
2210 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2211 M:      Alexander Clouter <alex@digriz.org.uk>
2212 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2213 S:      Maintained
2214 W:      http://www.digriz.org.uk/ts78xx/kernel
2215 F:      arch/arm/mach-orion5x/ts78xx-*
2216
2217 ARM/OXNAS platform support
2218 M:      Neil Armstrong <narmstrong@baylibre.com>
2219 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2220 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2221 S:      Maintained
2222 F:      arch/arm/boot/dts/ox8*.dts*
2223 F:      arch/arm/mach-oxnas/
2224 F:      drivers/power/reset/oxnas-restart.c
2225 N:      oxnas
2226
2227 ARM/PALM TREO SUPPORT
2228 M:      Tomas Cech <sleep_walker@suse.com>
2229 L:      linux-arm-kernel@lists.infradead.org
2230 S:      Maintained
2231 W:      http://hackndev.com
2232 F:      arch/arm/mach-pxa/palmtreo.*
2233
2234 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2235 M:      Marek Vasut <marek.vasut@gmail.com>
2236 L:      linux-arm-kernel@lists.infradead.org
2237 S:      Maintained
2238 W:      http://hackndev.com
2239 F:      arch/arm/mach-pxa/include/mach/palmld.h
2240 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2241 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2242 F:      arch/arm/mach-pxa/palmld.c
2243 F:      arch/arm/mach-pxa/palmt5.*
2244 F:      arch/arm/mach-pxa/palmtc.c
2245 F:      arch/arm/mach-pxa/palmte2.*
2246 F:      arch/arm/mach-pxa/palmtx.c
2247
2248 ARM/PALMZ72 SUPPORT
2249 M:      Sergey Lapin <slapin@ossfans.org>
2250 L:      linux-arm-kernel@lists.infradead.org
2251 S:      Maintained
2252 W:      http://hackndev.com
2253 F:      arch/arm/mach-pxa/palmz72.*
2254
2255 ARM/PLEB SUPPORT
2256 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2257 S:      Maintained
2258 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2259
2260 ARM/PT DIGITAL BOARD PORT
2261 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2262 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2263 S:      Maintained
2264 W:      http://www.armlinux.org.uk/
2265
2266 ARM/QUALCOMM SUPPORT
2267 M:      Andy Gross <agross@kernel.org>
2268 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2269 L:      linux-arm-msm@vger.kernel.org
2270 S:      Maintained
2271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2272 F:      Documentation/devicetree/bindings/*/qcom*
2273 F:      Documentation/devicetree/bindings/soc/qcom/
2274 F:      arch/arm/boot/dts/qcom-*.dts
2275 F:      arch/arm/boot/dts/qcom-*.dtsi
2276 F:      arch/arm/mach-qcom/
2277 F:      arch/arm64/boot/dts/qcom/
2278 F:      drivers/*/*/qcom*
2279 F:      drivers/*/*/qcom/
2280 F:      drivers/*/pm8???-*
2281 F:      drivers/*/qcom*
2282 F:      drivers/*/qcom/
2283 F:      drivers/bluetooth/btqcomsmd.c
2284 F:      drivers/clocksource/timer-qcom.c
2285 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2286 F:      drivers/extcon/extcon-qcom*
2287 F:      drivers/i2c/busses/i2c-qcom-geni.c
2288 F:      drivers/i2c/busses/i2c-qup.c
2289 F:      drivers/iommu/msm*
2290 F:      drivers/mfd/ssbi.c
2291 F:      drivers/mmc/host/mmci_qcom*
2292 F:      drivers/mmc/host/sdhci-msm.c
2293 F:      drivers/pci/controller/dwc/pcie-qcom.c
2294 F:      drivers/phy/qualcomm/
2295 F:      drivers/power/*/msm*
2296 F:      drivers/reset/reset-qcom-*
2297 F:      drivers/scsi/ufs/ufs-qcom*
2298 F:      drivers/spi/spi-geni-qcom.c
2299 F:      drivers/spi/spi-qcom-qspi.c
2300 F:      drivers/spi/spi-qup.c
2301 F:      drivers/tty/serial/msm_serial.c
2302 F:      drivers/usb/dwc3/dwc3-qcom.c
2303 F:      include/dt-bindings/*/qcom*
2304 F:      include/linux/*/qcom*
2305
2306 ARM/RADISYS ENP2611 MACHINE SUPPORT
2307 M:      Lennert Buytenhek <kernel@wantstofly.org>
2308 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2309 S:      Maintained
2310
2311 ARM/RDA MICRO ARCHITECTURE
2312 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2313 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2314 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2315 S:      Maintained
2316 F:      Documentation/devicetree/bindings/arm/rda.yaml
2317 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2318 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2319 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2320 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2321 F:      arch/arm/boot/dts/rda8810pl-*
2322 F:      drivers/clocksource/timer-rda.c
2323 F:      drivers/gpio/gpio-rda.c
2324 F:      drivers/irqchip/irq-rda-intc.c
2325 F:      drivers/tty/serial/rda-uart.c
2326
2327 ARM/REALTEK ARCHITECTURE
2328 M:      Andreas Färber <afaerber@suse.de>
2329 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2330 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2331 S:      Maintained
2332 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2333 F:      arch/arm/boot/dts/rtd*
2334 F:      arch/arm/mach-realtek/
2335 F:      arch/arm64/boot/dts/realtek/
2336
2337 ARM/RENESAS ARM64 ARCHITECTURE
2338 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2339 M:      Magnus Damm <magnus.damm@gmail.com>
2340 L:      linux-renesas-soc@vger.kernel.org
2341 S:      Supported
2342 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2344 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2345 F:      arch/arm64/boot/dts/renesas/
2346 F:      drivers/soc/renesas/
2347 F:      include/linux/soc/renesas/
2348
2349 ARM/RISCPC ARCHITECTURE
2350 M:      Russell King <linux@armlinux.org.uk>
2351 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2352 S:      Maintained
2353 W:      http://www.armlinux.org.uk/
2354 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2355 F:      arch/arm/include/asm/hardware/ioc.h
2356 F:      arch/arm/include/asm/hardware/iomd.h
2357 F:      arch/arm/include/asm/hardware/memc.h
2358 F:      arch/arm/mach-rpc/
2359 F:      drivers/net/ethernet/8390/etherh.c
2360 F:      drivers/net/ethernet/i825xx/ether1*
2361 F:      drivers/net/ethernet/seeq/ether3*
2362 F:      drivers/scsi/arm/
2363
2364 ARM/Rockchip SoC support
2365 M:      Heiko Stuebner <heiko@sntech.de>
2366 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2367 L:      linux-rockchip@lists.infradead.org
2368 S:      Maintained
2369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2370 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2371 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2372 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2373 F:      arch/arm/boot/dts/rk3*
2374 F:      arch/arm/boot/dts/rv1108*
2375 F:      arch/arm/mach-rockchip/
2376 F:      drivers/*/*/*rockchip*
2377 F:      drivers/*/*rockchip*
2378 F:      drivers/clk/rockchip/
2379 F:      drivers/i2c/busses/i2c-rk3x.c
2380 F:      sound/soc/rockchip/
2381 N:      rockchip
2382
2383 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2384 M:      Krzysztof Kozlowski <krzk@kernel.org>
2385 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2386 L:      linux-samsung-soc@vger.kernel.org
2387 S:      Maintained
2388 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2389 F:      Documentation/arm/samsung/
2390 F:      Documentation/devicetree/bindings/arm/samsung/
2391 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2392 F:      arch/arm/boot/dts/exynos*
2393 F:      arch/arm/boot/dts/s3c*
2394 F:      arch/arm/boot/dts/s5p*
2395 F:      arch/arm/mach-exynos*/
2396 F:      arch/arm/mach-s3c/
2397 F:      arch/arm/mach-s5p*/
2398 F:      arch/arm64/boot/dts/exynos/
2399 F:      drivers/*/*/*s3c24*
2400 F:      drivers/*/*s3c24*
2401 F:      drivers/*/*s3c64xx*
2402 F:      drivers/*/*s5pv210*
2403 F:      drivers/memory/samsung/
2404 F:      drivers/soc/samsung/
2405 F:      drivers/tty/serial/samsung*
2406 F:      include/linux/soc/samsung/
2407 N:      exynos
2408 N:      s3c2410
2409 N:      s3c64xx
2410 N:      s5pv210
2411
2412 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2413 M:      Andrzej Hajda <a.hajda@samsung.com>
2414 L:      linux-arm-kernel@lists.infradead.org
2415 L:      linux-media@vger.kernel.org
2416 S:      Maintained
2417 F:      drivers/media/platform/s5p-g2d/
2418
2419 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2420 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2421 L:      linux-samsung-soc@vger.kernel.org
2422 L:      linux-media@vger.kernel.org
2423 S:      Maintained
2424 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2425 F:      drivers/media/cec/platform/s5p/
2426
2427 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2428 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2429 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2430 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2431 L:      linux-arm-kernel@lists.infradead.org
2432 L:      linux-media@vger.kernel.org
2433 S:      Maintained
2434 F:      drivers/media/platform/s5p-jpeg/
2435
2436 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2437 M:      Andrzej Hajda <a.hajda@samsung.com>
2438 L:      linux-arm-kernel@lists.infradead.org
2439 L:      linux-media@vger.kernel.org
2440 S:      Maintained
2441 F:      drivers/media/platform/s5p-mfc/
2442
2443 ARM/SHMOBILE ARM ARCHITECTURE
2444 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2445 M:      Magnus Damm <magnus.damm@gmail.com>
2446 L:      linux-renesas-soc@vger.kernel.org
2447 S:      Supported
2448 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2450 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2451 F:      arch/arm/boot/dts/emev2*
2452 F:      arch/arm/boot/dts/gr-peach*
2453 F:      arch/arm/boot/dts/iwg20d-q7*
2454 F:      arch/arm/boot/dts/r7s*
2455 F:      arch/arm/boot/dts/r8a*
2456 F:      arch/arm/boot/dts/r9a*
2457 F:      arch/arm/boot/dts/sh*
2458 F:      arch/arm/configs/shmobile_defconfig
2459 F:      arch/arm/include/debug/renesas-scif.S
2460 F:      arch/arm/mach-shmobile/
2461 F:      drivers/soc/renesas/
2462 F:      include/linux/soc/renesas/
2463
2464 ARM/SOCFPGA ARCHITECTURE
2465 M:      Dinh Nguyen <dinguyen@kernel.org>
2466 S:      Maintained
2467 W:      http://www.rocketboards.org
2468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2469 F:      arch/arm/boot/dts/socfpga*
2470 F:      arch/arm/configs/socfpga_defconfig
2471 F:      arch/arm/mach-socfpga/
2472 F:      arch/arm64/boot/dts/altera/
2473 F:      arch/arm64/boot/dts/intel/
2474
2475 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2476 M:      Dinh Nguyen <dinguyen@kernel.org>
2477 S:      Maintained
2478 F:      drivers/clk/socfpga/
2479
2480 ARM/SOCFPGA EDAC SUPPORT
2481 M:      Dinh Nguyen <dinguyen@kernel.org>
2482 S:      Maintained
2483 F:      drivers/edac/altera_edac.[ch]
2484
2485 ARM/SPREADTRUM SoC SUPPORT
2486 M:      Orson Zhai <orsonzhai@gmail.com>
2487 M:      Baolin Wang <baolin.wang7@gmail.com>
2488 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2489 S:      Maintained
2490 F:      arch/arm64/boot/dts/sprd
2491 N:      sprd
2492 N:      sc27xx
2493 N:      sc2731
2494
2495 ARM/STI ARCHITECTURE
2496 M:      Patrice Chotard <patrice.chotard@st.com>
2497 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2498 S:      Maintained
2499 W:      http://www.stlinux.com
2500 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2501 F:      arch/arm/boot/dts/sti*
2502 F:      arch/arm/mach-sti/
2503 F:      drivers/ata/ahci_st.c
2504 F:      drivers/char/hw_random/st-rng.c
2505 F:      drivers/clocksource/arm_global_timer.c
2506 F:      drivers/clocksource/clksrc_st_lpc.c
2507 F:      drivers/cpufreq/sti-cpufreq.c
2508 F:      drivers/dma/st_fdma*
2509 F:      drivers/i2c/busses/i2c-st.c
2510 F:      drivers/media/platform/sti/c8sectpfe/
2511 F:      drivers/media/rc/st_rc.c
2512 F:      drivers/mmc/host/sdhci-st.c
2513 F:      drivers/phy/st/phy-miphy28lp.c
2514 F:      drivers/phy/st/phy-stih407-usb.c
2515 F:      drivers/pinctrl/pinctrl-st.c
2516 F:      drivers/remoteproc/st_remoteproc.c
2517 F:      drivers/remoteproc/st_slim_rproc.c
2518 F:      drivers/reset/sti/
2519 F:      drivers/rtc/rtc-st-lpc.c
2520 F:      drivers/tty/serial/st-asc.c
2521 F:      drivers/usb/dwc3/dwc3-st.c
2522 F:      drivers/usb/host/ehci-st.c
2523 F:      drivers/usb/host/ohci-st.c
2524 F:      drivers/watchdog/st_lpc_wdt.c
2525 F:      include/linux/remoteproc/st_slim_rproc.h
2526
2527 ARM/STM32 ARCHITECTURE
2528 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2529 M:      Alexandre Torgue <alexandre.torgue@st.com>
2530 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2531 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2532 S:      Maintained
2533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2534 F:      arch/arm/boot/dts/stm32*
2535 F:      arch/arm/mach-stm32/
2536 F:      drivers/clocksource/armv7m_systick.c
2537 N:      stm32
2538 N:      stm
2539
2540 ARM/Synaptics SoC support
2541 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2542 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2543 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2544 S:      Maintained
2545 F:      arch/arm/boot/dts/berlin*
2546 F:      arch/arm/mach-berlin/
2547 F:      arch/arm64/boot/dts/synaptics/
2548
2549 ARM/TANGO ARCHITECTURE
2550 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2551 M:      Mans Rullgard <mans@mansr.com>
2552 L:      linux-arm-kernel@lists.infradead.org
2553 S:      Odd Fixes
2554 N:      tango
2555
2556 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2557 M:      Lennert Buytenhek <kernel@wantstofly.org>
2558 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2559 S:      Maintained
2560
2561 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2562 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2563 L:      linux-tegra@vger.kernel.org
2564 L:      linux-media@vger.kernel.org
2565 S:      Maintained
2566 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2567 F:      drivers/media/cec/platform/tegra/
2568
2569 ARM/TETON BGA MACHINE SUPPORT
2570 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2571 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2572 S:      Maintained
2573
2574 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2575 M:      Santosh Shilimkar <ssantosh@kernel.org>
2576 L:      linux-kernel@vger.kernel.org
2577 S:      Maintained
2578 F:      drivers/memory/*emif*
2579
2580 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2581 M:      Santosh Shilimkar <ssantosh@kernel.org>
2582 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2583 S:      Maintained
2584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2585 F:      arch/arm/boot/dts/keystone-*
2586 F:      arch/arm/mach-keystone/
2587
2588 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2589 M:      Santosh Shilimkar <ssantosh@kernel.org>
2590 L:      linux-kernel@vger.kernel.org
2591 S:      Maintained
2592 F:      drivers/clk/keystone/
2593
2594 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2595 M:      Santosh Shilimkar <ssantosh@kernel.org>
2596 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2597 L:      linux-kernel@vger.kernel.org
2598 S:      Maintained
2599 F:      drivers/clocksource/timer-keystone.c
2600
2601 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2602 M:      Santosh Shilimkar <ssantosh@kernel.org>
2603 L:      linux-kernel@vger.kernel.org
2604 S:      Maintained
2605 F:      drivers/power/reset/keystone-reset.c
2606
2607 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2608 M:      Tero Kristo <t-kristo@ti.com>
2609 M:      Nishanth Menon <nm@ti.com>
2610 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2611 S:      Supported
2612 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2613 F:      arch/arm64/boot/dts/ti/Makefile
2614 F:      arch/arm64/boot/dts/ti/k3-*
2615 F:      include/dt-bindings/pinctrl/k3.h
2616
2617 ARM/THECUS N2100 MACHINE SUPPORT
2618 M:      Lennert Buytenhek <kernel@wantstofly.org>
2619 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2620 S:      Maintained
2621
2622 ARM/TOSA MACHINE SUPPORT
2623 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2624 M:      Dirk Opfer <dirk@opfer-online.de>
2625 S:      Maintained
2626
2627 ARM/TOSHIBA VISCONTI ARCHITECTURE
2628 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2629 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2630 S:      Supported
2631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2632 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2633 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2634 F:      arch/arm64/boot/dts/toshiba/
2635 F:      drivers/pinctrl/visconti/
2636 N:      visconti
2637
2638 ARM/UNIPHIER ARCHITECTURE
2639 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2640 S:      Orphan
2641 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2642 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2643 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2644 F:      arch/arm/boot/dts/uniphier*
2645 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2646 F:      arch/arm/mach-uniphier/
2647 F:      arch/arm/mm/cache-uniphier.c
2648 F:      arch/arm64/boot/dts/socionext/uniphier*
2649 F:      drivers/bus/uniphier-system-bus.c
2650 F:      drivers/clk/uniphier/
2651 F:      drivers/dma/uniphier-mdmac.c
2652 F:      drivers/gpio/gpio-uniphier.c
2653 F:      drivers/i2c/busses/i2c-uniphier*
2654 F:      drivers/irqchip/irq-uniphier-aidet.c
2655 F:      drivers/mmc/host/uniphier-sd.c
2656 F:      drivers/pinctrl/uniphier/
2657 F:      drivers/reset/reset-uniphier.c
2658 F:      drivers/tty/serial/8250/8250_uniphier.c
2659 N:      uniphier
2660
2661 ARM/VERSATILE EXPRESS PLATFORM
2662 M:      Liviu Dudau <liviu.dudau@arm.com>
2663 M:      Sudeep Holla <sudeep.holla@arm.com>
2664 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2665 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2666 S:      Maintained
2667 F:      */*/*/vexpress*
2668 F:      */*/vexpress*
2669 F:      arch/arm/boot/dts/vexpress*
2670 F:      arch/arm/mach-vexpress/
2671 F:      arch/arm64/boot/dts/arm/
2672 F:      drivers/clk/versatile/clk-vexpress-osc.c
2673 F:      drivers/clocksource/timer-versatile.c
2674 N:      mps2
2675
2676 ARM/VFP SUPPORT
2677 M:      Russell King <linux@armlinux.org.uk>
2678 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2679 S:      Maintained
2680 W:      http://www.armlinux.org.uk/
2681 F:      arch/arm/vfp/
2682
2683 ARM/VOIPAC PXA270 SUPPORT
2684 M:      Marek Vasut <marek.vasut@gmail.com>
2685 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2686 S:      Maintained
2687 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2688 F:      arch/arm/mach-pxa/vpac270.c
2689
2690 ARM/VT8500 ARM ARCHITECTURE
2691 M:      Tony Prisk <linux@prisktech.co.nz>
2692 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2693 S:      Maintained
2694 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2695 F:      arch/arm/mach-vt8500/
2696 F:      drivers/clocksource/timer-vt8500.c
2697 F:      drivers/i2c/busses/i2c-wmt.c
2698 F:      drivers/mmc/host/wmt-sdmmc.c
2699 F:      drivers/pwm/pwm-vt8500.c
2700 F:      drivers/rtc/rtc-vt8500.c
2701 F:      drivers/tty/serial/vt8500_serial.c
2702 F:      drivers/usb/host/ehci-platform.c
2703 F:      drivers/usb/host/uhci-platform.c
2704 F:      drivers/video/fbdev/vt8500lcdfb.*
2705 F:      drivers/video/fbdev/wm8505fb*
2706 F:      drivers/video/fbdev/wmt_ge_rops.*
2707
2708 ARM/ZIPIT Z2 SUPPORT
2709 M:      Marek Vasut <marek.vasut@gmail.com>
2710 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2711 S:      Maintained
2712 F:      arch/arm/mach-pxa/include/mach/z2.h
2713 F:      arch/arm/mach-pxa/z2.c
2714
2715 ARM/ZTE ARCHITECTURE
2716 M:      Jun Nie <jun.nie@linaro.org>
2717 M:      Shawn Guo <shawnguo@kernel.org>
2718 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2719 S:      Maintained
2720 F:      Documentation/devicetree/bindings/arm/zte.yaml
2721 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2722 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2723 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2724 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2725 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2726 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2727 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2728 F:      Documentation/devicetree/bindings/soc/zte/
2729 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2730 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2731 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2732 F:      arch/arm/boot/dts/zx2967*
2733 F:      arch/arm/mach-zx/
2734 F:      arch/arm64/boot/dts/zte/
2735 F:      drivers/clk/zte/
2736 F:      drivers/dma/zx_dma.c
2737 F:      drivers/gpio/gpio-zx.c
2738 F:      drivers/i2c/busses/i2c-zx2967.c
2739 F:      drivers/mmc/host/dw_mmc-zx.*
2740 F:      drivers/pinctrl/zte/
2741 F:      drivers/soc/zte/
2742 F:      drivers/thermal/zx2967_thermal.c
2743 F:      drivers/watchdog/zx2967_wdt.c
2744 F:      include/dt-bindings/clock/zx2967*.h
2745 F:      include/dt-bindings/soc/zte,*.h
2746 F:      sound/soc/codecs/zx_aud96p22.c
2747 F:      sound/soc/zte/
2748
2749 ARM/ZYNQ ARCHITECTURE
2750 M:      Michal Simek <michal.simek@xilinx.com>
2751 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2752 S:      Supported
2753 W:      http://wiki.xilinx.com
2754 T:      git https://github.com/Xilinx/linux-xlnx.git
2755 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2756 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2757 F:      arch/arm/mach-zynq/
2758 F:      drivers/block/xsysace.c
2759 F:      drivers/clocksource/timer-cadence-ttc.c
2760 F:      drivers/cpuidle/cpuidle-zynq.c
2761 F:      drivers/edac/synopsys_edac.c
2762 F:      drivers/i2c/busses/i2c-cadence.c
2763 F:      drivers/i2c/busses/i2c-xiic.c
2764 F:      drivers/mmc/host/sdhci-of-arasan.c
2765 N:      zynq
2766 N:      xilinx
2767
2768 ARM64 PORT (AARCH64 ARCHITECTURE)
2769 M:      Catalin Marinas <catalin.marinas@arm.com>
2770 M:      Will Deacon <will@kernel.org>
2771 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2772 S:      Maintained
2773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2774 F:      Documentation/arm64/
2775 F:      arch/arm64/
2776 F:      tools/testing/selftests/arm64/
2777 X:      arch/arm64/boot/dts/
2778
2779 AS3645A LED FLASH CONTROLLER DRIVER
2780 M:      Sakari Ailus <sakari.ailus@iki.fi>
2781 L:      linux-leds@vger.kernel.org
2782 S:      Maintained
2783 F:      drivers/leds/leds-as3645a.c
2784
2785 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2786 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2787 L:      linux-media@vger.kernel.org
2788 S:      Maintained
2789 T:      git git://linuxtv.org/media_tree.git
2790 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2791 F:      drivers/media/i2c/ak7375.c
2792
2793 ASAHI KASEI AK8974 DRIVER
2794 M:      Linus Walleij <linus.walleij@linaro.org>
2795 L:      linux-iio@vger.kernel.org
2796 S:      Supported
2797 W:      http://www.akm.com/
2798 F:      drivers/iio/magnetometer/ak8974.c
2799
2800 ASC7621 HARDWARE MONITOR DRIVER
2801 M:      George Joseph <george.joseph@fairview5.com>
2802 L:      linux-hwmon@vger.kernel.org
2803 S:      Maintained
2804 F:      Documentation/hwmon/asc7621.rst
2805 F:      drivers/hwmon/asc7621.c
2806
2807 ASPEED PINCTRL DRIVERS
2808 M:      Andrew Jeffery <andrew@aj.id.au>
2809 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2810 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2811 L:      linux-gpio@vger.kernel.org
2812 S:      Maintained
2813 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2814 F:      drivers/pinctrl/aspeed/
2815
2816 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2817 M:      Eddie James <eajames@linux.ibm.com>
2818 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2819 S:      Maintained
2820 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2821 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2822 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2823
2824 ASPEED VIDEO ENGINE DRIVER
2825 M:      Eddie James <eajames@linux.ibm.com>
2826 L:      linux-media@vger.kernel.org
2827 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2828 S:      Maintained
2829 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2830 F:      drivers/media/platform/aspeed-video.c
2831
2832 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2833 M:      Corentin Chary <corentin.chary@gmail.com>
2834 L:      acpi4asus-user@lists.sourceforge.net
2835 L:      platform-driver-x86@vger.kernel.org
2836 S:      Maintained
2837 W:      http://acpi4asus.sf.net
2838 F:      drivers/platform/x86/asus*.c
2839 F:      drivers/platform/x86/eeepc*.c
2840
2841 ASUS WIRELESS RADIO CONTROL DRIVER
2842 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2843 L:      platform-driver-x86@vger.kernel.org
2844 S:      Maintained
2845 F:      drivers/platform/x86/asus-wireless.c
2846
2847 ASYMMETRIC KEYS
2848 M:      David Howells <dhowells@redhat.com>
2849 L:      keyrings@vger.kernel.org
2850 S:      Maintained
2851 F:      Documentation/crypto/asymmetric-keys.rst
2852 F:      crypto/asymmetric_keys/
2853 F:      include/crypto/pkcs7.h
2854 F:      include/crypto/public_key.h
2855 F:      include/linux/verification.h
2856
2857 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2858 R:      Dan Williams <dan.j.williams@intel.com>
2859 S:      Odd fixes
2860 W:      http://sourceforge.net/projects/xscaleiop
2861 F:      Documentation/crypto/async-tx-api.rst
2862 F:      crypto/async_tx/
2863 F:      drivers/dma/
2864 F:      include/linux/async_tx.h
2865 F:      include/linux/dmaengine.h
2866
2867 AT24 EEPROM DRIVER
2868 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2869 L:      linux-i2c@vger.kernel.org
2870 S:      Maintained
2871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2872 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2873 F:      drivers/misc/eeprom/at24.c
2874
2875 ATA OVER ETHERNET (AOE) DRIVER
2876 M:      "Justin Sanders" <justin@coraid.com>
2877 S:      Supported
2878 W:      http://www.openaoe.org/
2879 F:      Documentation/admin-guide/aoe/
2880 F:      drivers/block/aoe/
2881
2882 ATHEROS 71XX/9XXX GPIO DRIVER
2883 M:      Alban Bedel <albeu@free.fr>
2884 S:      Maintained
2885 W:      https://github.com/AlbanBedel/linux
2886 T:      git git://github.com/AlbanBedel/linux
2887 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2888 F:      drivers/gpio/gpio-ath79.c
2889
2890 ATHEROS 71XX/9XXX USB PHY DRIVER
2891 M:      Alban Bedel <albeu@free.fr>
2892 S:      Maintained
2893 W:      https://github.com/AlbanBedel/linux
2894 T:      git git://github.com/AlbanBedel/linux
2895 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2896 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2897
2898 ATHEROS ATH GENERIC UTILITIES
2899 M:      Kalle Valo <kvalo@codeaurora.org>
2900 L:      linux-wireless@vger.kernel.org
2901 S:      Supported
2902 F:      drivers/net/wireless/ath/*
2903
2904 ATHEROS ATH5K WIRELESS DRIVER
2905 M:      Jiri Slaby <jirislaby@kernel.org>
2906 M:      Nick Kossifidis <mickflemm@gmail.com>
2907 M:      Luis Chamberlain <mcgrof@kernel.org>
2908 L:      linux-wireless@vger.kernel.org
2909 S:      Maintained
2910 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2911 F:      drivers/net/wireless/ath/ath5k/
2912
2913 ATHEROS ATH6KL WIRELESS DRIVER
2914 M:      Kalle Valo <kvalo@codeaurora.org>
2915 L:      linux-wireless@vger.kernel.org
2916 S:      Supported
2917 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2919 F:      drivers/net/wireless/ath/ath6kl/
2920
2921 ATI_REMOTE2 DRIVER
2922 M:      Ville Syrjala <syrjala@sci.fi>
2923 S:      Maintained
2924 F:      drivers/input/misc/ati_remote2.c
2925
2926 ATK0110 HWMON DRIVER
2927 M:      Luca Tettamanti <kronos.it@gmail.com>
2928 L:      linux-hwmon@vger.kernel.org
2929 S:      Maintained
2930 F:      drivers/hwmon/asus_atk0110.c
2931
2932 ATLX ETHERNET DRIVERS
2933 M:      Jay Cliburn <jcliburn@gmail.com>
2934 M:      Chris Snook <chris.snook@gmail.com>
2935 L:      netdev@vger.kernel.org
2936 S:      Maintained
2937 W:      http://sourceforge.net/projects/atl1
2938 W:      http://atl1.sourceforge.net
2939 F:      drivers/net/ethernet/atheros/
2940
2941 ATM
2942 M:      Chas Williams <3chas3@gmail.com>
2943 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2944 L:      netdev@vger.kernel.org
2945 S:      Maintained
2946 W:      http://linux-atm.sourceforge.net
2947 F:      drivers/atm/
2948 F:      include/linux/atm*
2949 F:      include/uapi/linux/atm*
2950
2951 ATMEL MACB ETHERNET DRIVER
2952 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2953 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2954 S:      Supported
2955 F:      drivers/net/ethernet/cadence/
2956
2957 ATMEL MAXTOUCH DRIVER
2958 M:      Nick Dyer <nick@shmanahar.org>
2959 S:      Maintained
2960 T:      git git://github.com/ndyer/linux.git
2961 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
2962 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2963
2964 ATMEL WIRELESS DRIVER
2965 M:      Simon Kelley <simon@thekelleys.org.uk>
2966 L:      linux-wireless@vger.kernel.org
2967 S:      Maintained
2968 W:      http://www.thekelleys.org.uk/atmel
2969 W:      http://atmelwlandriver.sourceforge.net/
2970 F:      drivers/net/wireless/atmel/atmel*
2971
2972 ATOMIC INFRASTRUCTURE
2973 M:      Will Deacon <will@kernel.org>
2974 M:      Peter Zijlstra <peterz@infradead.org>
2975 R:      Boqun Feng <boqun.feng@gmail.com>
2976 L:      linux-kernel@vger.kernel.org
2977 S:      Maintained
2978 F:      arch/*/include/asm/atomic*.h
2979 F:      include/*/atomic*.h
2980 F:      include/linux/refcount.h
2981 F:      Documentation/atomic_*.txt
2982 F:      scripts/atomic/
2983
2984 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2985 M:      Bradley Grove <linuxdrivers@attotech.com>
2986 L:      linux-scsi@vger.kernel.org
2987 S:      Supported
2988 W:      http://www.attotech.com
2989 F:      drivers/scsi/esas2r
2990
2991 ATUSB IEEE 802.15.4 RADIO DRIVER
2992 M:      Stefan Schmidt <stefan@datenfreihafen.org>
2993 L:      linux-wpan@vger.kernel.org
2994 S:      Maintained
2995 F:      drivers/net/ieee802154/at86rf230.h
2996 F:      drivers/net/ieee802154/atusb.c
2997 F:      drivers/net/ieee802154/atusb.h
2998
2999 AUDIT SUBSYSTEM
3000 M:      Paul Moore <paul@paul-moore.com>
3001 M:      Eric Paris <eparis@redhat.com>
3002 L:      linux-audit@redhat.com (moderated for non-subscribers)
3003 S:      Supported
3004 W:      https://github.com/linux-audit
3005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3006 F:      include/linux/audit.h
3007 F:      include/uapi/linux/audit.h
3008 F:      kernel/audit*
3009
3010 AUXILIARY DISPLAY DRIVERS
3011 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3012 S:      Maintained
3013 F:      drivers/auxdisplay/
3014 F:      include/linux/cfag12864b.h
3015
3016 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3017 M:      Andreas Klinger <ak@it-klinger.de>
3018 L:      linux-iio@vger.kernel.org
3019 S:      Maintained
3020 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3021 F:      drivers/iio/adc/hx711.c
3022
3023 AX.25 NETWORK LAYER
3024 M:      Ralf Baechle <ralf@linux-mips.org>
3025 L:      linux-hams@vger.kernel.org
3026 S:      Maintained
3027 W:      http://www.linux-ax25.org/
3028 F:      include/net/ax25.h
3029 F:      include/uapi/linux/ax25.h
3030 F:      net/ax25/
3031
3032 AXENTIA ARM DEVICES
3033 M:      Peter Rosin <peda@axentia.se>
3034 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3035 S:      Maintained
3036 F:      arch/arm/boot/dts/at91-linea.dtsi
3037 F:      arch/arm/boot/dts/at91-natte.dtsi
3038 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3039 F:      arch/arm/boot/dts/at91-tse850-3.dts
3040
3041 AXENTIA ASOC DRIVERS
3042 M:      Peter Rosin <peda@axentia.se>
3043 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3044 S:      Maintained
3045 F:      Documentation/devicetree/bindings/sound/axentia,*
3046 F:      sound/soc/atmel/tse850-pcm5142.c
3047
3048 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3049 M:      Nuno Sá <nuno.sa@analog.com>
3050 L:      linux-hwmon@vger.kernel.org
3051 S:      Supported
3052 W:      http://ez.analog.com/community/linux-device-drivers
3053 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3054 F:      drivers/hwmon/axi-fan-control.c
3055
3056 AXXIA I2C CONTROLLER
3057 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3058 L:      linux-i2c@vger.kernel.org
3059 S:      Maintained
3060 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3061 F:      drivers/i2c/busses/i2c-axxia.c
3062
3063 AZ6007 DVB DRIVER
3064 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3065 L:      linux-media@vger.kernel.org
3066 S:      Maintained
3067 W:      https://linuxtv.org
3068 T:      git git://linuxtv.org/media_tree.git
3069 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3070
3071 AZTECH FM RADIO RECEIVER DRIVER
3072 M:      Hans Verkuil <hverkuil@xs4all.nl>
3073 L:      linux-media@vger.kernel.org
3074 S:      Maintained
3075 W:      https://linuxtv.org
3076 T:      git git://linuxtv.org/media_tree.git
3077 F:      drivers/media/radio/radio-aztech*
3078
3079 B43 WIRELESS DRIVER
3080 L:      linux-wireless@vger.kernel.org
3081 L:      b43-dev@lists.infradead.org
3082 S:      Odd Fixes
3083 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3084 F:      drivers/net/wireless/broadcom/b43/
3085
3086 B43LEGACY WIRELESS DRIVER
3087 M:      Larry Finger <Larry.Finger@lwfinger.net>
3088 L:      linux-wireless@vger.kernel.org
3089 L:      b43-dev@lists.infradead.org
3090 S:      Maintained
3091 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3092 F:      drivers/net/wireless/broadcom/b43legacy/
3093
3094 BACKLIGHT CLASS/SUBSYSTEM
3095 M:      Lee Jones <lee.jones@linaro.org>
3096 M:      Daniel Thompson <daniel.thompson@linaro.org>
3097 M:      Jingoo Han <jingoohan1@gmail.com>
3098 L:      dri-devel@lists.freedesktop.org
3099 S:      Maintained
3100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3101 F:      Documentation/ABI/stable/sysfs-class-backlight
3102 F:      Documentation/ABI/testing/sysfs-class-backlight
3103 F:      Documentation/devicetree/bindings/leds/backlight
3104 F:      drivers/video/backlight/
3105 F:      include/linux/backlight.h
3106 F:      include/linux/pwm_backlight.h
3107
3108 BATMAN ADVANCED
3109 M:      Marek Lindner <mareklindner@neomailbox.ch>
3110 M:      Simon Wunderlich <sw@simonwunderlich.de>
3111 M:      Antonio Quartulli <a@unstable.cc>
3112 M:      Sven Eckelmann <sven@narfation.org>
3113 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3114 S:      Maintained
3115 W:      https://www.open-mesh.org/
3116 Q:      https://patchwork.open-mesh.org/project/batman/list/
3117 B:      https://www.open-mesh.org/projects/batman-adv/issues
3118 C:      irc://chat.freenode.net/batman
3119 T:      git https://git.open-mesh.org/linux-merge.git
3120 F:      Documentation/networking/batman-adv.rst
3121 F:      include/uapi/linux/batadv_packet.h
3122 F:      include/uapi/linux/batman_adv.h
3123 F:      net/batman-adv/
3124
3125 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3126 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3127 L:      linux-hams@vger.kernel.org
3128 S:      Maintained
3129 W:      http://www.baycom.org/~tom/ham/ham.html
3130 F:      drivers/net/hamradio/baycom*
3131
3132 BCACHE (BLOCK LAYER CACHE)
3133 M:      Coly Li <colyli@suse.de>
3134 M:      Kent Overstreet <kent.overstreet@gmail.com>
3135 L:      linux-bcache@vger.kernel.org
3136 S:      Maintained
3137 W:      http://bcache.evilpiepirate.org
3138 C:      irc://irc.oftc.net/bcache
3139 F:      drivers/md/bcache/
3140
3141 BDISP ST MEDIA DRIVER
3142 M:      Fabien Dessenne <fabien.dessenne@st.com>
3143 L:      linux-media@vger.kernel.org
3144 S:      Supported
3145 W:      https://linuxtv.org
3146 T:      git git://linuxtv.org/media_tree.git
3147 F:      drivers/media/platform/sti/bdisp
3148
3149 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3150 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3151 L:      netdev@vger.kernel.org
3152 S:      Maintained
3153 F:      drivers/net/ethernet/ec_bhf.c
3154
3155 BEFS FILE SYSTEM
3156 M:      Luis de Bethencourt <luisbg@kernel.org>
3157 M:      Salah Triki <salah.triki@gmail.com>
3158 S:      Maintained
3159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3160 F:      Documentation/filesystems/befs.rst
3161 F:      fs/befs/
3162
3163 BFQ I/O SCHEDULER
3164 M:      Paolo Valente <paolo.valente@linaro.org>
3165 M:      Jens Axboe <axboe@kernel.dk>
3166 L:      linux-block@vger.kernel.org
3167 S:      Maintained
3168 F:      Documentation/block/bfq-iosched.rst
3169 F:      block/bfq-*
3170
3171 BFS FILE SYSTEM
3172 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3173 S:      Maintained
3174 F:      Documentation/filesystems/bfs.rst
3175 F:      fs/bfs/
3176 F:      include/uapi/linux/bfs_fs.h
3177
3178 BLINKM RGB LED DRIVER
3179 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3180 S:      Maintained
3181 F:      drivers/leds/leds-blinkm.c
3182
3183 BLOCK LAYER
3184 M:      Jens Axboe <axboe@kernel.dk>
3185 L:      linux-block@vger.kernel.org
3186 S:      Maintained
3187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3188 F:      block/
3189 F:      drivers/block/
3190 F:      include/linux/blk*
3191 F:      kernel/trace/blktrace.c
3192 F:      lib/sbitmap.c
3193
3194 BLOCK2MTD DRIVER
3195 M:      Joern Engel <joern@lazybastard.org>
3196 L:      linux-mtd@lists.infradead.org
3197 S:      Maintained
3198 F:      drivers/mtd/devices/block2mtd.c
3199
3200 BLUETOOTH DRIVERS
3201 M:      Marcel Holtmann <marcel@holtmann.org>
3202 M:      Johan Hedberg <johan.hedberg@gmail.com>
3203 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3204 L:      linux-bluetooth@vger.kernel.org
3205 S:      Supported
3206 W:      http://www.bluez.org/
3207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3209 F:      drivers/bluetooth/
3210
3211 BLUETOOTH SUBSYSTEM
3212 M:      Marcel Holtmann <marcel@holtmann.org>
3213 M:      Johan Hedberg <johan.hedberg@gmail.com>
3214 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3215 L:      linux-bluetooth@vger.kernel.org
3216 S:      Supported
3217 W:      http://www.bluez.org/
3218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3220 F:      include/net/bluetooth/
3221 F:      net/bluetooth/
3222
3223 BONDING DRIVER
3224 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3225 M:      Veaceslav Falico <vfalico@gmail.com>
3226 M:      Andy Gospodarek <andy@greyhouse.net>
3227 L:      netdev@vger.kernel.org
3228 S:      Supported
3229 W:      http://sourceforge.net/projects/bonding/
3230 F:      drivers/net/bonding/
3231 F:      include/uapi/linux/if_bonding.h
3232
3233 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3234 M:      Dan Robertson <dan@dlrobertson.com>
3235 L:      linux-iio@vger.kernel.org
3236 S:      Maintained
3237 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3238 F:      drivers/iio/accel/bma400*
3239
3240 BPF (Safe dynamic programs and tools)
3241 M:      Alexei Starovoitov <ast@kernel.org>
3242 M:      Daniel Borkmann <daniel@iogearbox.net>
3243 M:      Andrii Nakryiko <andrii@kernel.org>
3244 R:      Martin KaFai Lau <kafai@fb.com>
3245 R:      Song Liu <songliubraving@fb.com>
3246 R:      Yonghong Song <yhs@fb.com>
3247 R:      John Fastabend <john.fastabend@gmail.com>
3248 R:      KP Singh <kpsingh@kernel.org>
3249 L:      netdev@vger.kernel.org
3250 L:      bpf@vger.kernel.org
3251 S:      Supported
3252 W:      https://bpf.io/
3253 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3254 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3256 F:      Documentation/bpf/
3257 F:      Documentation/networking/filter.rst
3258 F:      arch/*/net/*
3259 F:      include/linux/bpf*
3260 F:      include/linux/filter.h
3261 F:      include/trace/events/xdp.h
3262 F:      include/uapi/linux/bpf*
3263 F:      include/uapi/linux/filter.h
3264 F:      kernel/bpf/
3265 F:      kernel/trace/bpf_trace.c
3266 F:      lib/test_bpf.c
3267 F:      net/bpf/
3268 F:      net/core/filter.c
3269 F:      net/sched/act_bpf.c
3270 F:      net/sched/cls_bpf.c
3271 F:      samples/bpf/
3272 F:      tools/bpf/
3273 F:      tools/lib/bpf/
3274 F:      tools/testing/selftests/bpf/
3275 N:      bpf
3276 K:      bpf
3277
3278 BPF JIT for ARM
3279 M:      Shubham Bansal <illusionist.neo@gmail.com>
3280 L:      netdev@vger.kernel.org
3281 L:      bpf@vger.kernel.org
3282 S:      Maintained
3283 F:      arch/arm/net/
3284
3285 BPF JIT for ARM64
3286 M:      Daniel Borkmann <daniel@iogearbox.net>
3287 M:      Alexei Starovoitov <ast@kernel.org>
3288 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3289 L:      netdev@vger.kernel.org
3290 L:      bpf@vger.kernel.org
3291 S:      Supported
3292 F:      arch/arm64/net/
3293
3294 BPF JIT for MIPS (32-BIT AND 64-BIT)
3295 M:      Paul Burton <paulburton@kernel.org>
3296 L:      netdev@vger.kernel.org
3297 L:      bpf@vger.kernel.org
3298 S:      Maintained
3299 F:      arch/mips/net/
3300
3301 BPF JIT for NFP NICs
3302 M:      Jakub Kicinski <kuba@kernel.org>
3303 L:      netdev@vger.kernel.org
3304 L:      bpf@vger.kernel.org
3305 S:      Supported
3306 F:      drivers/net/ethernet/netronome/nfp/bpf/
3307
3308 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3309 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3310 M:      Sandipan Das <sandipan@linux.ibm.com>
3311 L:      netdev@vger.kernel.org
3312 L:      bpf@vger.kernel.org
3313 S:      Maintained
3314 F:      arch/powerpc/net/
3315
3316 BPF JIT for RISC-V (32-bit)
3317 M:      Luke Nelson <luke.r.nels@gmail.com>
3318 M:      Xi Wang <xi.wang@gmail.com>
3319 L:      netdev@vger.kernel.org
3320 L:      bpf@vger.kernel.org
3321 S:      Maintained
3322 F:      arch/riscv/net/
3323 X:      arch/riscv/net/bpf_jit_comp64.c
3324
3325 BPF JIT for RISC-V (64-bit)
3326 M:      Björn Töpel <bjorn.topel@gmail.com>
3327 L:      netdev@vger.kernel.org
3328 L:      bpf@vger.kernel.org
3329 S:      Maintained
3330 F:      arch/riscv/net/
3331 X:      arch/riscv/net/bpf_jit_comp32.c
3332
3333 BPF JIT for S390
3334 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3335 M:      Heiko Carstens <hca@linux.ibm.com>
3336 M:      Vasily Gorbik <gor@linux.ibm.com>
3337 L:      netdev@vger.kernel.org
3338 L:      bpf@vger.kernel.org
3339 S:      Maintained
3340 F:      arch/s390/net/
3341 X:      arch/s390/net/pnet.c
3342
3343 BPF JIT for SPARC (32-BIT AND 64-BIT)
3344 M:      David S. Miller <davem@davemloft.net>
3345 L:      netdev@vger.kernel.org
3346 L:      bpf@vger.kernel.org
3347 S:      Maintained
3348 F:      arch/sparc/net/
3349
3350 BPF JIT for X86 32-BIT
3351 M:      Wang YanQing <udknight@gmail.com>
3352 L:      netdev@vger.kernel.org
3353 L:      bpf@vger.kernel.org
3354 S:      Maintained
3355 F:      arch/x86/net/bpf_jit_comp32.c
3356
3357 BPF JIT for X86 64-BIT
3358 M:      Alexei Starovoitov <ast@kernel.org>
3359 M:      Daniel Borkmann <daniel@iogearbox.net>
3360 L:      netdev@vger.kernel.org
3361 L:      bpf@vger.kernel.org
3362 S:      Supported
3363 F:      arch/x86/net/
3364 X:      arch/x86/net/bpf_jit_comp32.c
3365
3366 BPF LSM (Security Audit and Enforcement using BPF)
3367 M:      KP Singh <kpsingh@kernel.org>
3368 R:      Florent Revest <revest@chromium.org>
3369 R:      Brendan Jackman <jackmanb@chromium.org>
3370 L:      bpf@vger.kernel.org
3371 S:      Maintained
3372 F:      Documentation/bpf/bpf_lsm.rst
3373 F:      include/linux/bpf_lsm.h
3374 F:      kernel/bpf/bpf_lsm.c
3375 F:      security/bpf/
3376
3377 BROADCOM B44 10/100 ETHERNET DRIVER
3378 M:      Michael Chan <michael.chan@broadcom.com>
3379 L:      netdev@vger.kernel.org
3380 S:      Supported
3381 F:      drivers/net/ethernet/broadcom/b44.*
3382
3383 BROADCOM B53 ETHERNET SWITCH DRIVER
3384 M:      Florian Fainelli <f.fainelli@gmail.com>
3385 L:      netdev@vger.kernel.org
3386 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3387 S:      Supported
3388 F:      Documentation/devicetree/bindings/net/dsa/b53.txt
3389 F:      drivers/net/dsa/b53/*
3390 F:      include/linux/platform_data/b53.h
3391
3392 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3393 M:      Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
3394 L:      bcm-kernel-feedback-list@broadcom.com
3395 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3396 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3397 S:      Maintained
3398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3399 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3400 F:      drivers/pci/controller/pcie-brcmstb.c
3401 F:      drivers/staging/vc04_services
3402 N:      bcm2711
3403 N:      bcm2835
3404
3405 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3406 M:      Florian Fainelli <f.fainelli@gmail.com>
3407 M:      Ray Jui <rjui@broadcom.com>
3408 M:      Scott Branden <sbranden@broadcom.com>
3409 M:      bcm-kernel-feedback-list@broadcom.com
3410 S:      Maintained
3411 T:      git git://github.com/broadcom/mach-bcm
3412 F:      arch/arm/mach-bcm/
3413 N:      bcm281*
3414 N:      bcm113*
3415 N:      bcm216*
3416 N:      kona
3417
3418 BROADCOM BCM47XX MIPS ARCHITECTURE
3419 M:      Hauke Mehrtens <hauke@hauke-m.de>
3420 M:      Rafał Miłecki <zajec5@gmail.com>
3421 L:      linux-mips@vger.kernel.org
3422 S:      Maintained
3423 F:      Documentation/devicetree/bindings/mips/brcm/
3424 F:      arch/mips/bcm47xx/*
3425 F:      arch/mips/include/asm/mach-bcm47xx/*
3426
3427 BROADCOM BCM5301X ARM ARCHITECTURE
3428 M:      Hauke Mehrtens <hauke@hauke-m.de>
3429 M:      Rafał Miłecki <zajec5@gmail.com>
3430 M:      bcm-kernel-feedback-list@broadcom.com
3431 L:      linux-arm-kernel@lists.infradead.org
3432 S:      Maintained
3433 F:      arch/arm/boot/dts/bcm470*
3434 F:      arch/arm/boot/dts/bcm5301*
3435 F:      arch/arm/boot/dts/bcm953012*
3436 F:      arch/arm/mach-bcm/bcm_5301x.c
3437
3438 BROADCOM BCM53573 ARM ARCHITECTURE
3439 M:      Rafał Miłecki <rafal@milecki.pl>
3440 L:      bcm-kernel-feedback-list@broadcom.com
3441 L:      linux-arm-kernel@lists.infradead.org
3442 S:      Maintained
3443 F:      arch/arm/boot/dts/bcm47189*
3444 F:      arch/arm/boot/dts/bcm53573*
3445
3446 BROADCOM BCM63XX ARM ARCHITECTURE
3447 M:      Florian Fainelli <f.fainelli@gmail.com>
3448 M:      bcm-kernel-feedback-list@broadcom.com
3449 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3450 S:      Maintained
3451 T:      git git://github.com/broadcom/stblinux.git
3452 N:      bcm63xx
3453
3454 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3455 M:      Kevin Cernekee <cernekee@gmail.com>
3456 L:      linux-usb@vger.kernel.org
3457 S:      Maintained
3458 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3459
3460 BROADCOM BCM7XXX ARM ARCHITECTURE
3461 M:      Florian Fainelli <f.fainelli@gmail.com>
3462 M:      bcm-kernel-feedback-list@broadcom.com
3463 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3464 S:      Maintained
3465 T:      git git://github.com/broadcom/stblinux.git
3466 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3467 F:      arch/arm/boot/dts/bcm7*.dts*
3468 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3469 F:      arch/arm/mach-bcm/*brcmstb*
3470 F:      arch/arm/mm/cache-b15-rac.c
3471 F:      drivers/bus/brcmstb_gisb.c
3472 F:      drivers/pci/controller/pcie-brcmstb.c
3473 N:      brcmstb
3474
3475 BROADCOM BDC DRIVER
3476 M:      Al Cooper <alcooperx@gmail.com>
3477 L:      linux-usb@vger.kernel.org
3478 L:      bcm-kernel-feedback-list@broadcom.com
3479 S:      Maintained
3480 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3481 F:      drivers/usb/gadget/udc/bdc/
3482
3483 BROADCOM BMIPS CPUFREQ DRIVER
3484 M:      Markus Mayer <mmayer@broadcom.com>
3485 M:      bcm-kernel-feedback-list@broadcom.com
3486 L:      linux-pm@vger.kernel.org
3487 S:      Maintained
3488 F:      drivers/cpufreq/bmips-cpufreq.c
3489
3490 BROADCOM BMIPS MIPS ARCHITECTURE
3491 M:      Florian Fainelli <f.fainelli@gmail.com>
3492 L:      bcm-kernel-feedback-list@broadcom.com
3493 L:      linux-mips@vger.kernel.org
3494 S:      Maintained
3495 T:      git git://github.com/broadcom/stblinux.git
3496 F:      arch/mips/bmips/*
3497 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3498 F:      arch/mips/include/asm/mach-bmips/*
3499 F:      arch/mips/kernel/*bmips*
3500 F:      drivers/soc/bcm/bcm63xx
3501 F:      drivers/irqchip/irq-bcm63*
3502 F:      drivers/irqchip/irq-bcm7*
3503 F:      drivers/irqchip/irq-brcmstb*
3504 F:      include/linux/bcm963xx_nvram.h
3505 F:      include/linux/bcm963xx_tag.h
3506
3507 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3508 M:      Rasesh Mody <rmody@marvell.com>
3509 M:      GR-Linux-NIC-Dev@marvell.com
3510 L:      netdev@vger.kernel.org
3511 S:      Supported
3512 F:      drivers/net/ethernet/broadcom/bnx2.*
3513 F:      drivers/net/ethernet/broadcom/bnx2_*
3514
3515 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3516 M:      Saurav Kashyap <skashyap@marvell.com>
3517 M:      Javed Hasan <jhasan@marvell.com>
3518 M:      GR-QLogic-Storage-Upstream@marvell.com
3519 L:      linux-scsi@vger.kernel.org
3520 S:      Supported
3521 F:      drivers/scsi/bnx2fc/
3522
3523 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3524 M:      Nilesh Javali <njavali@marvell.com>
3525 M:      Manish Rangankar <mrangankar@marvell.com>
3526 M:      GR-QLogic-Storage-Upstream@marvell.com
3527 L:      linux-scsi@vger.kernel.org
3528 S:      Supported
3529 F:      drivers/scsi/bnx2i/
3530
3531 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3532 M:      Ariel Elior <aelior@marvell.com>
3533 M:      Sudarsana Kalluru <skalluru@marvell.com>
3534 M:      GR-everest-linux-l2@marvell.com
3535 L:      netdev@vger.kernel.org
3536 S:      Supported
3537 F:      drivers/net/ethernet/broadcom/bnx2x/
3538
3539 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3540 M:      Michael Chan <michael.chan@broadcom.com>
3541 L:      netdev@vger.kernel.org
3542 S:      Supported
3543 F:      drivers/net/ethernet/broadcom/bnxt/
3544
3545 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3546 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
3547 M:      Franky Lin <franky.lin@broadcom.com>
3548 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3549 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3550 M:      Wright Feng <wright.feng@infineon.com>
3551 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3552 L:      linux-wireless@vger.kernel.org
3553 L:      brcm80211-dev-list.pdl@broadcom.com
3554 L:      SHA-cyfmac-dev-list@infineon.com
3555 S:      Supported
3556 F:      drivers/net/wireless/broadcom/brcm80211/
3557
3558 BROADCOM BRCMSTB GPIO DRIVER
3559 M:      Gregory Fong <gregory.0xf0@gmail.com>
3560 L:      bcm-kernel-feedback-list@broadcom.com
3561 S:      Supported
3562 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3563 F:      drivers/gpio/gpio-brcmstb.c
3564
3565 BROADCOM BRCMSTB I2C DRIVER
3566 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3567 L:      linux-i2c@vger.kernel.org
3568 L:      bcm-kernel-feedback-list@broadcom.com
3569 S:      Supported
3570 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3571 F:      drivers/i2c/busses/i2c-brcmstb.c
3572
3573 BROADCOM BRCMSTB USB EHCI DRIVER
3574 M:      Al Cooper <alcooperx@gmail.com>
3575 L:      linux-usb@vger.kernel.org
3576 L:      bcm-kernel-feedback-list@broadcom.com
3577 S:      Maintained
3578 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3579 F:      drivers/usb/host/ehci-brcm.*
3580
3581 BROADCOM BRCMSTB USB PIN MAP DRIVER
3582 M:      Al Cooper <alcooperx@gmail.com>
3583 L:      linux-usb@vger.kernel.org
3584 L:      bcm-kernel-feedback-list@broadcom.com
3585 S:      Maintained
3586 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3587 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3588
3589 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3590 M:      Al Cooper <alcooperx@gmail.com>
3591 L:      linux-kernel@vger.kernel.org
3592 L:      bcm-kernel-feedback-list@broadcom.com
3593 S:      Maintained
3594 F:      drivers/phy/broadcom/phy-brcm-usb*
3595
3596 BROADCOM ETHERNET PHY DRIVERS
3597 M:      Florian Fainelli <f.fainelli@gmail.com>
3598 L:      bcm-kernel-feedback-list@broadcom.com
3599 L:      netdev@vger.kernel.org
3600 S:      Supported
3601 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3602 F:      drivers/net/phy/bcm*.[ch]
3603 F:      drivers/net/phy/broadcom.c
3604 F:      include/linux/brcmphy.h
3605
3606 BROADCOM GENET ETHERNET DRIVER
3607 M:      Doug Berger <opendmb@gmail.com>
3608 M:      Florian Fainelli <f.fainelli@gmail.com>
3609 L:      bcm-kernel-feedback-list@broadcom.com
3610 L:      netdev@vger.kernel.org
3611 S:      Supported
3612 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3613 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3614 F:      drivers/net/ethernet/broadcom/genet/
3615 F:      drivers/net/mdio/mdio-bcm-unimac.c
3616 F:      include/linux/platform_data/bcmgenet.h
3617 F:      include/linux/platform_data/mdio-bcm-unimac.h
3618
3619 BROADCOM IPROC ARM ARCHITECTURE
3620 M:      Ray Jui <rjui@broadcom.com>
3621 M:      Scott Branden <sbranden@broadcom.com>
3622 M:      bcm-kernel-feedback-list@broadcom.com
3623 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3624 S:      Maintained
3625 T:      git git://github.com/broadcom/cygnus-linux.git
3626 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3627 F:      arch/arm64/boot/dts/broadcom/stingray/*
3628 F:      drivers/clk/bcm/clk-ns*
3629 F:      drivers/clk/bcm/clk-sr*
3630 F:      drivers/pinctrl/bcm/pinctrl-ns*
3631 F:      include/dt-bindings/clock/bcm-sr*
3632 N:      iproc
3633 N:      cygnus
3634 N:      bcm[-_]nsp
3635 N:      bcm9113*
3636 N:      bcm9583*
3637 N:      bcm9585*
3638 N:      bcm9586*
3639 N:      bcm988312
3640 N:      bcm113*
3641 N:      bcm583*
3642 N:      bcm585*
3643 N:      bcm586*
3644 N:      bcm88312
3645 N:      hr2
3646 N:      stingray
3647
3648 BROADCOM KONA GPIO DRIVER
3649 M:      Ray Jui <rjui@broadcom.com>
3650 L:      bcm-kernel-feedback-list@broadcom.com
3651 S:      Supported
3652 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3653 F:      drivers/gpio/gpio-bcm-kona.c
3654
3655 BROADCOM NETXTREME-E ROCE DRIVER
3656 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3657 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3658 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3659 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3660 M:      Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
3661 L:      linux-rdma@vger.kernel.org
3662 S:      Supported
3663 W:      http://www.broadcom.com
3664 F:      drivers/infiniband/hw/bnxt_re/
3665 F:      include/uapi/rdma/bnxt_re-abi.h
3666
3667 BROADCOM NVRAM DRIVER
3668 M:      Rafał Miłecki <zajec5@gmail.com>
3669 L:      linux-mips@vger.kernel.org
3670 S:      Maintained
3671 F:      drivers/firmware/broadcom/*
3672
3673 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3674 M:      Rafał Miłecki <zajec5@gmail.com>
3675 L:      linux-wireless@vger.kernel.org
3676 S:      Maintained
3677 F:      drivers/bcma/
3678 F:      include/linux/bcma/
3679
3680 BROADCOM SPI DRIVER
3681 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3682 M:      bcm-kernel-feedback-list@broadcom.com
3683 S:      Maintained
3684 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3685 F:      drivers/spi/spi-bcm-qspi.*
3686 F:      drivers/spi/spi-brcmstb-qspi.c
3687 F:      drivers/spi/spi-iproc-qspi.c
3688
3689 BROADCOM STB AVS CPUFREQ DRIVER
3690 M:      Markus Mayer <mmayer@broadcom.com>
3691 M:      bcm-kernel-feedback-list@broadcom.com
3692 L:      linux-pm@vger.kernel.org
3693 S:      Maintained
3694 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3695 F:      drivers/cpufreq/brcmstb*
3696
3697 BROADCOM STB AVS TMON DRIVER
3698 M:      Markus Mayer <mmayer@broadcom.com>
3699 M:      bcm-kernel-feedback-list@broadcom.com
3700 L:      linux-pm@vger.kernel.org
3701 S:      Maintained
3702 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3703 F:      drivers/thermal/broadcom/brcmstb*
3704
3705 BROADCOM STB DPFE DRIVER
3706 M:      Markus Mayer <mmayer@broadcom.com>
3707 M:      bcm-kernel-feedback-list@broadcom.com
3708 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3709 S:      Maintained
3710 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3711 F:      drivers/memory/brcmstb_dpfe.c
3712
3713 BROADCOM STB NAND FLASH DRIVER
3714 M:      Brian Norris <computersforpeace@gmail.com>
3715 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3716 L:      linux-mtd@lists.infradead.org
3717 L:      bcm-kernel-feedback-list@broadcom.com
3718 S:      Maintained
3719 F:      drivers/mtd/nand/raw/brcmnand/
3720
3721 BROADCOM SYSTEMPORT ETHERNET DRIVER
3722 M:      Florian Fainelli <f.fainelli@gmail.com>
3723 L:      bcm-kernel-feedback-list@broadcom.com
3724 L:      netdev@vger.kernel.org
3725 S:      Supported
3726 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3727
3728 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3729 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3730 M:      Prashant Sreedharan <prashant@broadcom.com>
3731 M:      Michael Chan <mchan@broadcom.com>
3732 L:      netdev@vger.kernel.org
3733 S:      Supported
3734 F:      drivers/net/ethernet/broadcom/tg3.*
3735
3736 BROCADE BFA FC SCSI DRIVER
3737 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3738 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3739 L:      linux-scsi@vger.kernel.org
3740 S:      Supported
3741 F:      drivers/scsi/bfa/
3742
3743 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3744 M:      Rasesh Mody <rmody@marvell.com>
3745 M:      Sudarsana Kalluru <skalluru@marvell.com>
3746 M:      GR-Linux-NIC-Dev@marvell.com
3747 L:      netdev@vger.kernel.org
3748 S:      Supported
3749 F:      drivers/net/ethernet/brocade/bna/
3750
3751 BSG (block layer generic sg v4 driver)
3752 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3753 L:      linux-scsi@vger.kernel.org
3754 S:      Supported
3755 F:      block/bsg.c
3756 F:      include/linux/bsg.h
3757 F:      include/uapi/linux/bsg.h
3758
3759 BT87X AUDIO DRIVER
3760 M:      Clemens Ladisch <clemens@ladisch.de>
3761 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3762 S:      Maintained
3763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3764 F:      Documentation/sound/cards/bt87x.rst
3765 F:      sound/pci/bt87x.c
3766
3767 BT8XXGPIO DRIVER
3768 M:      Michael Buesch <m@bues.ch>
3769 S:      Maintained
3770 W:      http://bu3sch.de/btgpio.php
3771 F:      drivers/gpio/gpio-bt8xx.c
3772
3773 BTRFS FILE SYSTEM
3774 M:      Chris Mason <clm@fb.com>
3775 M:      Josef Bacik <josef@toxicpanda.com>
3776 M:      David Sterba <dsterba@suse.com>
3777 L:      linux-btrfs@vger.kernel.org
3778 S:      Maintained
3779 W:      http://btrfs.wiki.kernel.org/
3780 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3782 F:      Documentation/filesystems/btrfs.rst
3783 F:      fs/btrfs/
3784 F:      include/linux/btrfs*
3785 F:      include/uapi/linux/btrfs*
3786
3787 BTTV VIDEO4LINUX DRIVER
3788 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3789 L:      linux-media@vger.kernel.org
3790 S:      Odd fixes
3791 W:      https://linuxtv.org
3792 T:      git git://linuxtv.org/media_tree.git
3793 F:      Documentation/driver-api/media/drivers/bttv*
3794 F:      drivers/media/pci/bt8xx/bttv*
3795
3796 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3797 M:      Chanwoo Choi <cw00.choi@samsung.com>
3798 L:      linux-pm@vger.kernel.org
3799 L:      linux-samsung-soc@vger.kernel.org
3800 S:      Maintained
3801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3802 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3803 F:      drivers/devfreq/exynos-bus.c
3804
3805 BUSLOGIC SCSI DRIVER
3806 M:      Khalid Aziz <khalid@gonehiking.org>
3807 L:      linux-scsi@vger.kernel.org
3808 S:      Maintained
3809 F:      drivers/scsi/BusLogic.*
3810 F:      drivers/scsi/FlashPoint.*
3811
3812 C-MEDIA CMI8788 DRIVER
3813 M:      Clemens Ladisch <clemens@ladisch.de>
3814 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3815 S:      Maintained
3816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3817 F:      sound/pci/oxygen/
3818
3819 C-SKY ARCHITECTURE
3820 M:      Guo Ren <guoren@kernel.org>
3821 L:      linux-csky@vger.kernel.org
3822 S:      Supported
3823 T:      git https://github.com/c-sky/csky-linux.git
3824 F:      Documentation/devicetree/bindings/csky/
3825 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3826 F:      Documentation/devicetree/bindings/timer/csky,*
3827 F:      arch/csky/
3828 F:      drivers/clocksource/timer-gx6605s.c
3829 F:      drivers/clocksource/timer-mp-csky.c
3830 F:      drivers/irqchip/irq-csky-*
3831 N:      csky
3832 K:      csky
3833
3834 C6X ARCHITECTURE
3835 M:      Mark Salter <msalter@redhat.com>
3836 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3837 L:      linux-c6x-dev@linux-c6x.org
3838 S:      Maintained
3839 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3840 F:      arch/c6x/
3841
3842 CA8210 IEEE-802.15.4 RADIO DRIVER
3843 M:      Harry Morris <h.morris@cascoda.com>
3844 L:      linux-wpan@vger.kernel.org
3845 S:      Maintained
3846 W:      https://github.com/Cascoda/ca8210-linux.git
3847 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3848 F:      drivers/net/ieee802154/ca8210.c
3849
3850 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3851 M:      David Howells <dhowells@redhat.com>
3852 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3853 S:      Supported
3854 F:      Documentation/filesystems/caching/cachefiles.rst
3855 F:      fs/cachefiles/
3856
3857 CADENCE MIPI-CSI2 BRIDGES
3858 M:      Maxime Ripard <mripard@kernel.org>
3859 L:      linux-media@vger.kernel.org
3860 S:      Maintained
3861 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3862 F:      drivers/media/platform/cadence/cdns-csi2*
3863
3864 CADENCE NAND DRIVER
3865 L:      linux-mtd@lists.infradead.org
3866 S:      Orphan
3867 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3868 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3869
3870 CADENCE USB3 DRD IP DRIVER
3871 M:      Peter Chen <peter.chen@nxp.com>
3872 M:      Pawel Laszczak <pawell@cadence.com>
3873 M:      Roger Quadros <rogerq@ti.com>
3874 R:      Aswath Govindraju <a-govindraju@ti.com>
3875 L:      linux-usb@vger.kernel.org
3876 S:      Maintained
3877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3878 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
3879 F:      drivers/usb/cdns3/
3880
3881 CADET FM/AM RADIO RECEIVER DRIVER
3882 M:      Hans Verkuil <hverkuil@xs4all.nl>
3883 L:      linux-media@vger.kernel.org
3884 S:      Maintained
3885 W:      https://linuxtv.org
3886 T:      git git://linuxtv.org/media_tree.git
3887 F:      drivers/media/radio/radio-cadet*
3888
3889 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3890 L:      linux-media@vger.kernel.org
3891 S:      Orphan
3892 T:      git git://linuxtv.org/media_tree.git
3893 F:      Documentation/admin-guide/media/cafe_ccic*
3894 F:      drivers/media/platform/marvell-ccic/
3895
3896 CAIF NETWORK LAYER
3897 L:      netdev@vger.kernel.org
3898 S:      Orphan
3899 F:      Documentation/networking/caif/
3900 F:      drivers/net/caif/
3901 F:      include/net/caif/
3902 F:      include/uapi/linux/caif/
3903 F:      net/caif/
3904
3905 CAKE QDISC
3906 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3907 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3908 S:      Maintained
3909 F:      net/sched/sch_cake.c
3910
3911 CAN NETWORK DRIVERS
3912 M:      Wolfgang Grandegger <wg@grandegger.com>
3913 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3914 L:      linux-can@vger.kernel.org
3915 S:      Maintained
3916 W:      https://github.com/linux-can
3917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3919 F:      Documentation/devicetree/bindings/net/can/
3920 F:      drivers/net/can/
3921 F:      include/linux/can/dev.h
3922 F:      include/linux/can/led.h
3923 F:      include/linux/can/platform/
3924 F:      include/linux/can/rx-offload.h
3925 F:      include/uapi/linux/can/error.h
3926 F:      include/uapi/linux/can/netlink.h
3927 F:      include/uapi/linux/can/vxcan.h
3928
3929 CAN NETWORK LAYER
3930 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3931 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3932 L:      linux-can@vger.kernel.org
3933 S:      Maintained
3934 W:      https://github.com/linux-can
3935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3937 F:      Documentation/networking/can.rst
3938 F:      include/linux/can/core.h
3939 F:      include/linux/can/skb.h
3940 F:      include/net/netns/can.h
3941 F:      include/uapi/linux/can.h
3942 F:      include/uapi/linux/can/bcm.h
3943 F:      include/uapi/linux/can/gw.h
3944 F:      include/uapi/linux/can/isotp.h
3945 F:      include/uapi/linux/can/raw.h
3946 F:      net/can/
3947
3948 CAN-J1939 NETWORK LAYER
3949 M:      Robin van der Gracht <robin@protonic.nl>
3950 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3951 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
3952 L:      linux-can@vger.kernel.org
3953 S:      Maintained
3954 F:      Documentation/networking/j1939.rst
3955 F:      include/uapi/linux/can/j1939.h
3956 F:      net/can/j1939/
3957
3958 CAPABILITIES
3959 M:      Serge Hallyn <serge@hallyn.com>
3960 L:      linux-security-module@vger.kernel.org
3961 S:      Supported
3962 F:      include/linux/capability.h
3963 F:      include/uapi/linux/capability.h
3964 F:      kernel/capability.c
3965 F:      security/commoncap.c
3966
3967 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3968 M:      Kevin Tsai <ktsai@capellamicro.com>
3969 S:      Maintained
3970 F:      drivers/iio/light/cm*
3971
3972 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3973 M:      Christian Lamparter <chunkeey@googlemail.com>
3974 L:      linux-wireless@vger.kernel.org
3975 S:      Maintained
3976 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
3977 F:      drivers/net/wireless/ath/carl9170/
3978
3979 CAVIUM I2C DRIVER
3980 M:      Robert Richter <rric@kernel.org>
3981 S:      Odd Fixes
3982 W:      http://www.marvell.com
3983 F:      drivers/i2c/busses/i2c-octeon*
3984 F:      drivers/i2c/busses/i2c-thunderx*
3985
3986 CAVIUM LIQUIDIO NETWORK DRIVER
3987 M:      Derek Chickles <dchickles@marvell.com>
3988 M:      Satanand Burla <sburla@marvell.com>
3989 M:      Felix Manlunas <fmanlunas@marvell.com>
3990 L:      netdev@vger.kernel.org
3991 S:      Supported
3992 W:      http://www.marvell.com
3993 F:      drivers/net/ethernet/cavium/liquidio/
3994
3995 CAVIUM MMC DRIVER
3996 M:      Robert Richter <rric@kernel.org>
3997 S:      Odd Fixes
3998 W:      http://www.marvell.com
3999 F:      drivers/mmc/host/cavium*
4000
4001 CAVIUM OCTEON-TX CRYPTO DRIVER
4002 M:      George Cherian <gcherian@marvell.com>
4003 L:      linux-crypto@vger.kernel.org
4004 S:      Supported
4005 W:      http://www.marvell.com
4006 F:      drivers/crypto/cavium/cpt/
4007
4008 CAVIUM THUNDERX2 ARM64 SOC
4009 M:      Robert Richter <rric@kernel.org>
4010 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4011 S:      Odd Fixes
4012 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4013 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4014
4015 CC2520 IEEE-802.15.4 RADIO DRIVER
4016 M:      Varka Bhadram <varkabhadram@gmail.com>
4017 L:      linux-wpan@vger.kernel.org
4018 S:      Maintained
4019 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4020 F:      drivers/net/ieee802154/cc2520.c
4021 F:      include/linux/spi/cc2520.h
4022
4023 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4024 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4025 L:      linux-crypto@vger.kernel.org
4026 S:      Supported
4027 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4028 F:      drivers/crypto/ccree/
4029
4030 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4031 M:      Hadar Gat <hadar.gat@arm.com>
4032 L:      linux-crypto@vger.kernel.org
4033 S:      Supported
4034 F:      drivers/char/hw_random/cctrng.c
4035 F:      drivers/char/hw_random/cctrng.h
4036 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4037 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4038
4039 CEC FRAMEWORK
4040 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4041 L:      linux-media@vger.kernel.org
4042 S:      Supported
4043 W:      http://linuxtv.org
4044 T:      git git://linuxtv.org/media_tree.git
4045 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4046 F:      Documentation/devicetree/bindings/media/cec.txt
4047 F:      Documentation/driver-api/media/cec-core.rst
4048 F:      Documentation/userspace-api/media/cec
4049 F:      drivers/media/cec/
4050 F:      drivers/media/rc/keymaps/rc-cec.c
4051 F:      include/media/cec-notifier.h
4052 F:      include/media/cec.h
4053 F:      include/uapi/linux/cec-funcs.h
4054 F:      include/uapi/linux/cec.h
4055
4056 CEC GPIO DRIVER
4057 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4058 L:      linux-media@vger.kernel.org
4059 S:      Supported
4060 W:      http://linuxtv.org
4061 T:      git git://linuxtv.org/media_tree.git
4062 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4063 F:      drivers/media/cec/platform/cec-gpio/
4064
4065 CELL BROADBAND ENGINE ARCHITECTURE
4066 M:      Arnd Bergmann <arnd@arndb.de>
4067 L:      linuxppc-dev@lists.ozlabs.org
4068 S:      Supported
4069 W:      http://www.ibm.com/developerworks/power/cell/
4070 F:      arch/powerpc/include/asm/cell*.h
4071 F:      arch/powerpc/include/asm/spu*.h
4072 F:      arch/powerpc/include/uapi/asm/spu*.h
4073 F:      arch/powerpc/oprofile/*cell*
4074 F:      arch/powerpc/platforms/cell/
4075
4076 CELLWISE CW2015 BATTERY DRIVER
4077 M:      Tobias Schrammm <t.schramm@manjaro.org>
4078 S:      Maintained
4079 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4080 F:      drivers/power/supply/cw2015_battery.c
4081
4082 CEPH COMMON CODE (LIBCEPH)
4083 M:      Ilya Dryomov <idryomov@gmail.com>
4084 M:      Jeff Layton <jlayton@kernel.org>
4085 L:      ceph-devel@vger.kernel.org
4086 S:      Supported
4087 W:      http://ceph.com/
4088 T:      git git://github.com/ceph/ceph-client.git
4089 F:      include/linux/ceph/
4090 F:      include/linux/crush/
4091 F:      net/ceph/
4092
4093 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4094 M:      Jeff Layton <jlayton@kernel.org>
4095 M:      Ilya Dryomov <idryomov@gmail.com>
4096 L:      ceph-devel@vger.kernel.org
4097 S:      Supported
4098 W:      http://ceph.com/
4099 T:      git git://github.com/ceph/ceph-client.git
4100 F:      Documentation/filesystems/ceph.rst
4101 F:      fs/ceph/
4102
4103 CERTIFICATE HANDLING
4104 M:      David Howells <dhowells@redhat.com>
4105 M:      David Woodhouse <dwmw2@infradead.org>
4106 L:      keyrings@vger.kernel.org
4107 S:      Maintained
4108 F:      Documentation/admin-guide/module-signing.rst
4109 F:      certs/
4110 F:      scripts/extract-cert.c
4111 F:      scripts/sign-file.c
4112
4113 CFAG12864B LCD DRIVER
4114 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4115 S:      Maintained
4116 F:      drivers/auxdisplay/cfag12864b.c
4117 F:      include/linux/cfag12864b.h
4118
4119 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4120 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4121 S:      Maintained
4122 F:      drivers/auxdisplay/cfag12864bfb.c
4123 F:      include/linux/cfag12864b.h
4124
4125 CHAR and MISC DRIVERS
4126 M:      Arnd Bergmann <arnd@arndb.de>
4127 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4128 S:      Supported
4129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4130 F:      drivers/char/
4131 F:      drivers/misc/
4132 F:      include/linux/miscdevice.h
4133 X:      drivers/char/agp/
4134 X:      drivers/char/hw_random/
4135 X:      drivers/char/ipmi/
4136 X:      drivers/char/random.c
4137 X:      drivers/char/tpm/
4138
4139 CHECKPATCH
4140 M:      Andy Whitcroft <apw@canonical.com>
4141 M:      Joe Perches <joe@perches.com>
4142 S:      Maintained
4143 F:      scripts/checkpatch.pl
4144
4145 CHINESE DOCUMENTATION
4146 M:      Harry Wei <harryxiyou@gmail.com>
4147 M:      Alex Shi <alex.shi@linux.alibaba.com>
4148 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
4149 S:      Maintained
4150 F:      Documentation/translations/zh_CN/
4151
4152 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4153 M:      Peter Chen <Peter.Chen@nxp.com>
4154 L:      linux-usb@vger.kernel.org
4155 S:      Maintained
4156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4157 F:      drivers/usb/chipidea/
4158
4159 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4160 M:      Hans de Goede <hdegoede@redhat.com>
4161 L:      linux-input@vger.kernel.org
4162 S:      Maintained
4163 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4164 F:      drivers/input/touchscreen/chipone_icn8318.c
4165
4166 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4167 M:      Hans de Goede <hdegoede@redhat.com>
4168 L:      linux-input@vger.kernel.org
4169 S:      Maintained
4170 F:      drivers/input/touchscreen/chipone_icn8505.c
4171
4172 CHROME HARDWARE PLATFORM SUPPORT
4173 M:      Benson Leung <bleung@chromium.org>
4174 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4175 S:      Maintained
4176 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4177 F:      drivers/platform/chrome/
4178
4179 CHROMEOS EC CODEC DRIVER
4180 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4181 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4182 R:      Guenter Roeck <groeck@chromium.org>
4183 S:      Maintained
4184 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4185 F:      sound/soc/codecs/cros_ec_codec.*
4186
4187 CHROMEOS EC SUBDRIVERS
4188 M:      Benson Leung <bleung@chromium.org>
4189 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4190 R:      Guenter Roeck <groeck@chromium.org>
4191 S:      Maintained
4192 F:      drivers/power/supply/cros_usbpd-charger.c
4193 N:      cros_ec
4194 N:      cros-ec
4195
4196 CHRONTEL CH7322 CEC DRIVER
4197 M:      Jeff Chase <jnchase@google.com>
4198 L:      linux-media@vger.kernel.org
4199 S:      Maintained
4200 T:      git git://linuxtv.org/media_tree.git
4201 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4202 F:      drivers/media/cec/i2c/ch7322.c
4203
4204 CIRRUS LOGIC AUDIO CODEC DRIVERS
4205 M:      James Schulman <james.schulman@cirrus.com>
4206 M:      David Rhodes <david.rhodes@cirrus.com>
4207 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4208 L:      patches@opensource.cirrus.com
4209 S:      Maintained
4210 F:      sound/soc/codecs/cs*
4211
4212 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4213 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4214 L:      netdev@vger.kernel.org
4215 S:      Maintained
4216 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4217
4218 CIRRUS LOGIC LOCHNAGAR DRIVER
4219 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4220 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4221 L:      patches@opensource.cirrus.com
4222 S:      Supported
4223 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4224 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4225 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4226 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4227 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4228 F:      Documentation/hwmon/lochnagar.rst
4229 F:      drivers/clk/clk-lochnagar.c
4230 F:      drivers/hwmon/lochnagar-hwmon.c
4231 F:      drivers/mfd/lochnagar-i2c.c
4232 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4233 F:      drivers/regulator/lochnagar-regulator.c
4234 F:      include/dt-bindings/clk/lochnagar.h
4235 F:      include/dt-bindings/pinctrl/lochnagar.h
4236 F:      include/linux/mfd/lochnagar*
4237 F:      sound/soc/codecs/lochnagar-sc.c
4238
4239 CIRRUS LOGIC MADERA CODEC DRIVERS
4240 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4241 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4242 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4243 L:      patches@opensource.cirrus.com
4244 S:      Supported
4245 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4246 T:      git https://github.com/CirrusLogic/linux-drivers.git
4247 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4248 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4249 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4250 F:      drivers/gpio/gpio-madera*
4251 F:      drivers/irqchip/irq-madera*
4252 F:      drivers/mfd/cs47l*
4253 F:      drivers/mfd/madera*
4254 F:      drivers/pinctrl/cirrus/*
4255 F:      include/dt-bindings/sound/madera*
4256 F:      include/linux/irqchip/irq-madera*
4257 F:      include/linux/mfd/madera/*
4258 F:      include/sound/madera*
4259 F:      sound/soc/codecs/cs47l*
4260 F:      sound/soc/codecs/madera*
4261
4262 CISCO FCOE HBA DRIVER
4263 M:      Satish Kharat <satishkh@cisco.com>
4264 M:      Sesidhar Baddela <sebaddel@cisco.com>
4265 M:      Karan Tilak Kumar <kartilak@cisco.com>
4266 L:      linux-scsi@vger.kernel.org
4267 S:      Supported
4268 F:      drivers/scsi/fnic/
4269
4270 CISCO SCSI HBA DRIVER
4271 M:      Karan Tilak Kumar <kartilak@cisco.com>
4272 M:      Sesidhar Baddela <sebaddel@cisco.com>
4273 L:      linux-scsi@vger.kernel.org
4274 S:      Supported
4275 F:      drivers/scsi/snic/
4276
4277 CISCO VIC ETHERNET NIC DRIVER
4278 M:      Christian Benvenuti <benve@cisco.com>
4279 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4280 S:      Supported
4281 F:      drivers/net/ethernet/cisco/enic/
4282
4283 CISCO VIC LOW LATENCY NIC DRIVER
4284 M:      Christian Benvenuti <benve@cisco.com>
4285 M:      Nelson Escobar <neescoba@cisco.com>
4286 S:      Supported
4287 F:      drivers/infiniband/hw/usnic/
4288
4289 CLANG-FORMAT FILE
4290 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4291 S:      Maintained
4292 F:      .clang-format
4293
4294 CLANG/LLVM BUILD SUPPORT
4295 M:      Nathan Chancellor <natechancellor@gmail.com>
4296 M:      Nick Desaulniers <ndesaulniers@google.com>
4297 L:      clang-built-linux@googlegroups.com
4298 S:      Supported
4299 W:      https://clangbuiltlinux.github.io/
4300 B:      https://github.com/ClangBuiltLinux/linux/issues
4301 C:      irc://chat.freenode.net/clangbuiltlinux
4302 F:      Documentation/kbuild/llvm.rst
4303 F:      scripts/clang-tools/
4304 F:      scripts/lld-version.sh
4305 K:      \b(?i:clang|llvm)\b
4306
4307 CLEANCACHE API
4308 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4309 L:      linux-kernel@vger.kernel.org
4310 S:      Maintained
4311 F:      include/linux/cleancache.h
4312 F:      mm/cleancache.c
4313
4314 CLK API
4315 M:      Russell King <linux@armlinux.org.uk>
4316 L:      linux-clk@vger.kernel.org
4317 S:      Maintained
4318 F:      include/linux/clk.h
4319
4320 CLOCKSOURCE, CLOCKEVENT DRIVERS
4321 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4322 M:      Thomas Gleixner <tglx@linutronix.de>
4323 L:      linux-kernel@vger.kernel.org
4324 S:      Supported
4325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4326 F:      Documentation/devicetree/bindings/timer/
4327 F:      drivers/clocksource/
4328
4329 CMPC ACPI DRIVER
4330 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4331 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4332 L:      platform-driver-x86@vger.kernel.org
4333 S:      Supported
4334 F:      drivers/platform/x86/classmate-laptop.c
4335
4336 COBALT MEDIA DRIVER
4337 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4338 L:      linux-media@vger.kernel.org
4339 S:      Supported
4340 W:      https://linuxtv.org
4341 T:      git git://linuxtv.org/media_tree.git
4342 F:      drivers/media/pci/cobalt/
4343
4344 COCCINELLE/Semantic Patches (SmPL)
4345 M:      Julia Lawall <Julia.Lawall@lip6.fr>
4346 M:      Gilles Muller <Gilles.Muller@lip6.fr>
4347 M:      Nicolas Palix <nicolas.palix@imag.fr>
4348 M:      Michal Marek <michal.lkml@markovi.net>
4349 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4350 S:      Supported
4351 W:      http://coccinelle.lip6.fr/
4352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4353 F:      Documentation/dev-tools/coccinelle.rst
4354 F:      scripts/coccicheck
4355 F:      scripts/coccinelle/
4356
4357 CODA FILE SYSTEM
4358 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4359 M:      coda@cs.cmu.edu
4360 L:      codalist@coda.cs.cmu.edu
4361 S:      Maintained
4362 W:      http://www.coda.cs.cmu.edu/
4363 F:      Documentation/filesystems/coda.rst
4364 F:      fs/coda/
4365 F:      include/linux/coda*.h
4366 F:      include/uapi/linux/coda*.h
4367
4368 CODA V4L2 MEM2MEM DRIVER
4369 M:      Philipp Zabel <p.zabel@pengutronix.de>
4370 L:      linux-media@vger.kernel.org
4371 S:      Maintained
4372 F:      Documentation/devicetree/bindings/media/coda.yaml
4373 F:      drivers/media/platform/coda/
4374
4375 CODE OF CONDUCT
4376 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4377 S:      Supported
4378 F:      Documentation/process/code-of-conduct-interpretation.rst
4379 F:      Documentation/process/code-of-conduct.rst
4380
4381 COMMON CLK FRAMEWORK
4382 M:      Michael Turquette <mturquette@baylibre.com>
4383 M:      Stephen Boyd <sboyd@kernel.org>
4384 L:      linux-clk@vger.kernel.org
4385 S:      Maintained
4386 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4388 F:      Documentation/devicetree/bindings/clock/
4389 F:      drivers/clk/
4390 F:      include/linux/clk-pr*
4391 F:      include/linux/clk/
4392 F:      include/linux/of_clk.h
4393 X:      drivers/clk/clkdev.c
4394
4395 COMMON INTERNET FILE SYSTEM (CIFS)
4396 M:      Steve French <sfrench@samba.org>
4397 L:      linux-cifs@vger.kernel.org
4398 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4399 S:      Supported
4400 W:      http://linux-cifs.samba.org/
4401 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4402 F:      Documentation/admin-guide/cifs/
4403 F:      fs/cifs/
4404
4405 COMPACTPCI HOTPLUG CORE
4406 M:      Scott Murray <scott@spiteful.org>
4407 L:      linux-pci@vger.kernel.org
4408 S:      Maintained
4409 F:      drivers/pci/hotplug/cpci_hotplug*
4410
4411 COMPACTPCI HOTPLUG GENERIC DRIVER
4412 M:      Scott Murray <scott@spiteful.org>
4413 L:      linux-pci@vger.kernel.org
4414 S:      Maintained
4415 F:      drivers/pci/hotplug/cpcihp_generic.c
4416
4417 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4418 M:      Scott Murray <scott@spiteful.org>
4419 L:      linux-pci@vger.kernel.org
4420 S:      Maintained
4421 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4422
4423 COMPAL LAPTOP SUPPORT
4424 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4425 L:      platform-driver-x86@vger.kernel.org
4426 S:      Maintained
4427 F:      drivers/platform/x86/compal-laptop.c
4428
4429 COMPILER ATTRIBUTES
4430 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4431 S:      Maintained
4432 F:      include/linux/compiler_attributes.h
4433
4434 CONEXANT ACCESSRUNNER USB DRIVER
4435 L:      accessrunner-general@lists.sourceforge.net
4436 S:      Orphan
4437 W:      http://accessrunner.sourceforge.net/
4438 F:      drivers/usb/atm/cxacru.c
4439
4440 CONFIGFS
4441 M:      Joel Becker <jlbec@evilplan.org>
4442 M:      Christoph Hellwig <hch@lst.de>
4443 S:      Supported
4444 T:      git git://git.infradead.org/users/hch/configfs.git
4445 F:      fs/configfs/
4446 F:      include/linux/configfs.h
4447 F:      samples/configfs/
4448
4449 CONSOLE SUBSYSTEM
4450 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4451 S:      Supported
4452 F:      drivers/video/console/
4453 F:      include/linux/console*
4454
4455 CONTROL GROUP (CGROUP)
4456 M:      Tejun Heo <tj@kernel.org>
4457 M:      Li Zefan <lizefan@huawei.com>
4458 M:      Johannes Weiner <hannes@cmpxchg.org>
4459 L:      cgroups@vger.kernel.org
4460 S:      Maintained
4461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4462 F:      Documentation/admin-guide/cgroup-v1/
4463 F:      Documentation/admin-guide/cgroup-v2.rst
4464 F:      include/linux/cgroup*
4465 F:      kernel/cgroup/
4466
4467 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4468 M:      Tejun Heo <tj@kernel.org>
4469 M:      Jens Axboe <axboe@kernel.dk>
4470 L:      cgroups@vger.kernel.org
4471 L:      linux-block@vger.kernel.org
4472 T:      git git://git.kernel.dk/linux-block
4473 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4474 F:      block/bfq-cgroup.c
4475 F:      block/blk-cgroup.c
4476 F:      block/blk-iolatency.c
4477 F:      block/blk-throttle.c
4478 F:      include/linux/blk-cgroup.h
4479
4480 CONTROL GROUP - CPUSET
4481 M:      Li Zefan <lizefan@huawei.com>
4482 L:      cgroups@vger.kernel.org
4483 S:      Maintained
4484 W:      http://www.bullopensource.org/cpuset/
4485 W:      http://oss.sgi.com/projects/cpusets/
4486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4487 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4488 F:      include/linux/cpuset.h
4489 F:      kernel/cgroup/cpuset.c
4490
4491 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4492 M:      Johannes Weiner <hannes@cmpxchg.org>
4493 M:      Michal Hocko <mhocko@kernel.org>
4494 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4495 L:      cgroups@vger.kernel.org
4496 L:      linux-mm@kvack.org
4497 S:      Maintained
4498 F:      mm/memcontrol.c
4499 F:      mm/swap_cgroup.c
4500
4501 CORETEMP HARDWARE MONITORING DRIVER
4502 M:      Fenghua Yu <fenghua.yu@intel.com>
4503 L:      linux-hwmon@vger.kernel.org
4504 S:      Maintained
4505 F:      Documentation/hwmon/coretemp.rst
4506 F:      drivers/hwmon/coretemp.c
4507
4508 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4509 M:      Marius Zachmann <mail@mariuszachmann.de>
4510 L:      linux-hwmon@vger.kernel.org
4511 S:      Maintained
4512 F:      drivers/hwmon/corsair-cpro.c
4513
4514 CORSAIR-PSU HARDWARE MONITOR DRIVER
4515 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4516 L:      linux-hwmon@vger.kernel.org
4517 S:      Maintained
4518 F:      Documentation/hwmon/corsair-psu.rst
4519 F:      drivers/hwmon/corsair-psu.c
4520
4521 COSA/SRP SYNC SERIAL DRIVER
4522 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4523 S:      Maintained
4524 W:      http://www.fi.muni.cz/~kas/cosa/
4525 F:      drivers/net/wan/cosa*
4526
4527 COUNTER SUBSYSTEM
4528 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4529 L:      linux-iio@vger.kernel.org
4530 S:      Maintained
4531 F:      Documentation/ABI/testing/sysfs-bus-counter*
4532 F:      Documentation/driver-api/generic-counter.rst
4533 F:      drivers/counter/
4534 F:      include/linux/counter.h
4535 F:      include/linux/counter_enum.h
4536
4537 CPMAC ETHERNET DRIVER
4538 M:      Florian Fainelli <f.fainelli@gmail.com>
4539 L:      netdev@vger.kernel.org
4540 S:      Maintained
4541 F:      drivers/net/ethernet/ti/cpmac.c
4542
4543 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4544 M:      Viresh Kumar <viresh.kumar@linaro.org>
4545 M:      Sudeep Holla <sudeep.holla@arm.com>
4546 L:      linux-pm@vger.kernel.org
4547 S:      Maintained
4548 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4549 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4550
4551 CPU FREQUENCY SCALING FRAMEWORK
4552 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4553 M:      Viresh Kumar <viresh.kumar@linaro.org>
4554 L:      linux-pm@vger.kernel.org
4555 S:      Maintained
4556 B:      https://bugzilla.kernel.org
4557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4559 F:      Documentation/admin-guide/pm/cpufreq.rst
4560 F:      Documentation/admin-guide/pm/intel_pstate.rst
4561 F:      Documentation/cpu-freq/
4562 F:      Documentation/devicetree/bindings/cpufreq/
4563 F:      drivers/cpufreq/
4564 F:      include/linux/cpufreq.h
4565 F:      include/linux/sched/cpufreq.h
4566 F:      kernel/sched/cpufreq*.c
4567 F:      tools/testing/selftests/cpufreq/
4568
4569 CPU IDLE TIME MANAGEMENT FRAMEWORK
4570 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4571 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4572 L:      linux-pm@vger.kernel.org
4573 S:      Maintained
4574 B:      https://bugzilla.kernel.org
4575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4576 F:      Documentation/admin-guide/pm/cpuidle.rst
4577 F:      Documentation/driver-api/pm/cpuidle.rst
4578 F:      drivers/cpuidle/*
4579 F:      include/linux/cpuidle.h
4580
4581 CPU POWER MONITORING SUBSYSTEM
4582 M:      Thomas Renninger <trenn@suse.com>
4583 M:      Shuah Khan <shuah@kernel.org>
4584 M:      Shuah Khan <skhan@linuxfoundation.org>
4585 L:      linux-pm@vger.kernel.org
4586 S:      Maintained
4587 F:      tools/power/cpupower/
4588
4589 CPUID/MSR DRIVER
4590 M:      "H. Peter Anvin" <hpa@zytor.com>
4591 S:      Maintained
4592 F:      arch/x86/kernel/cpuid.c
4593 F:      arch/x86/kernel/msr.c
4594
4595 CPUIDLE DRIVER - ARM BIG LITTLE
4596 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4597 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4598 L:      linux-pm@vger.kernel.org
4599 L:      linux-arm-kernel@lists.infradead.org
4600 S:      Maintained
4601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4602 F:      drivers/cpuidle/cpuidle-big_little.c
4603
4604 CPUIDLE DRIVER - ARM EXYNOS
4605 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4606 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4607 M:      Kukjin Kim <kgene@kernel.org>
4608 L:      linux-pm@vger.kernel.org
4609 L:      linux-samsung-soc@vger.kernel.org
4610 S:      Supported
4611 F:      arch/arm/mach-exynos/pm.c
4612 F:      drivers/cpuidle/cpuidle-exynos.c
4613
4614 CPUIDLE DRIVER - ARM PSCI
4615 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4616 M:      Sudeep Holla <sudeep.holla@arm.com>
4617 L:      linux-pm@vger.kernel.org
4618 L:      linux-arm-kernel@lists.infradead.org
4619 S:      Supported
4620 F:      drivers/cpuidle/cpuidle-psci.c
4621
4622 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4623 M:      Ulf Hansson <ulf.hansson@linaro.org>
4624 L:      linux-pm@vger.kernel.org
4625 L:      linux-arm-kernel@lists.infradead.org
4626 S:      Supported
4627 F:      drivers/cpuidle/cpuidle-psci.h
4628 F:      drivers/cpuidle/cpuidle-psci-domain.c
4629
4630 CRAMFS FILESYSTEM
4631 M:      Nicolas Pitre <nico@fluxnic.net>
4632 S:      Maintained
4633 F:      Documentation/filesystems/cramfs.rst
4634 F:      fs/cramfs/
4635
4636 CREATIVE SB0540
4637 M:      Bastien Nocera <hadess@hadess.net>
4638 L:      linux-input@vger.kernel.org
4639 S:      Maintained
4640 F:      drivers/hid/hid-creative-sb0540.c
4641
4642 CRYPTO API
4643 M:      Herbert Xu <herbert@gondor.apana.org.au>
4644 M:      "David S. Miller" <davem@davemloft.net>
4645 L:      linux-crypto@vger.kernel.org
4646 S:      Maintained
4647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4649 F:      Documentation/crypto/
4650 F:      Documentation/devicetree/bindings/crypto/
4651 F:      arch/*/crypto/
4652 F:      crypto/
4653 F:      drivers/crypto/
4654 F:      include/crypto/
4655 F:      include/linux/crypto*
4656 F:      lib/crypto/
4657
4658 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4659 M:      Neil Horman <nhorman@tuxdriver.com>
4660 L:      linux-crypto@vger.kernel.org
4661 S:      Maintained
4662 F:      crypto/ansi_cprng.c
4663 F:      crypto/rng.c
4664
4665 CS3308 MEDIA DRIVER
4666 M:      Hans Verkuil <hverkuil@xs4all.nl>
4667 L:      linux-media@vger.kernel.org
4668 S:      Odd Fixes
4669 W:      http://linuxtv.org
4670 T:      git git://linuxtv.org/media_tree.git
4671 F:      drivers/media/i2c/cs3308.c
4672
4673 CS5535 Audio ALSA driver
4674 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4675 S:      Maintained
4676 F:      sound/pci/cs5535audio/
4677
4678 CSI DRIVERS FOR ALLWINNER V3s
4679 M:      Yong Deng <yong.deng@magewell.com>
4680 L:      linux-media@vger.kernel.org
4681 S:      Maintained
4682 T:      git git://linuxtv.org/media_tree.git
4683 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4684 F:      drivers/media/platform/sunxi/sun6i-csi/
4685
4686 CW1200 WLAN driver
4687 M:      Solomon Peachy <pizza@shaftnet.org>
4688 S:      Maintained
4689 F:      drivers/net/wireless/st/cw1200/
4690
4691 CX18 VIDEO4LINUX DRIVER
4692 M:      Andy Walls <awalls@md.metrocast.net>
4693 L:      linux-media@vger.kernel.org
4694 S:      Maintained
4695 W:      https://linuxtv.org
4696 T:      git git://linuxtv.org/media_tree.git
4697 F:      drivers/media/pci/cx18/
4698 F:      include/uapi/linux/ivtv*
4699
4700 CX2341X MPEG ENCODER HELPER MODULE
4701 M:      Hans Verkuil <hverkuil@xs4all.nl>
4702 L:      linux-media@vger.kernel.org
4703 S:      Maintained
4704 W:      https://linuxtv.org
4705 T:      git git://linuxtv.org/media_tree.git
4706 F:      drivers/media/common/cx2341x*
4707 F:      include/media/drv-intf/cx2341x.h
4708
4709 CX24120 MEDIA DRIVER
4710 M:      Jemma Denson <jdenson@gmail.com>
4711 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4712 L:      linux-media@vger.kernel.org
4713 S:      Maintained
4714 W:      https://linuxtv.org
4715 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4716 F:      drivers/media/dvb-frontends/cx24120*
4717
4718 CX88 VIDEO4LINUX DRIVER
4719 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4720 L:      linux-media@vger.kernel.org
4721 S:      Odd fixes
4722 W:      https://linuxtv.org
4723 T:      git git://linuxtv.org/media_tree.git
4724 F:      Documentation/driver-api/media/drivers/cx88*
4725 F:      drivers/media/pci/cx88/
4726
4727 CXD2820R MEDIA DRIVER
4728 M:      Antti Palosaari <crope@iki.fi>
4729 L:      linux-media@vger.kernel.org
4730 S:      Maintained
4731 W:      https://linuxtv.org
4732 W:      http://palosaari.fi/linux/
4733 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4734 T:      git git://linuxtv.org/anttip/media_tree.git
4735 F:      drivers/media/dvb-frontends/cxd2820r*
4736
4737 CXGB3 ETHERNET DRIVER (CXGB3)
4738 M:      Raju Rangoju <rajur@chelsio.com>
4739 L:      netdev@vger.kernel.org
4740 S:      Supported
4741 W:      http://www.chelsio.com
4742 F:      drivers/net/ethernet/chelsio/cxgb3/
4743
4744 CXGB3 ISCSI DRIVER (CXGB3I)
4745 M:      Karen Xie <kxie@chelsio.com>
4746 L:      linux-scsi@vger.kernel.org
4747 S:      Supported
4748 W:      http://www.chelsio.com
4749 F:      drivers/scsi/cxgbi/cxgb3i
4750
4751 CXGB4 CRYPTO DRIVER (chcr)
4752 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4753 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4754 M:      Rohit Maheshwari <rohitm@chelsio.com>
4755 L:      linux-crypto@vger.kernel.org
4756 S:      Supported
4757 W:      http://www.chelsio.com
4758 F:      drivers/crypto/chelsio
4759
4760 CXGB4 INLINE CRYPTO DRIVER
4761 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4762 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4763 M:      Rohit Maheshwari <rohitm@chelsio.com>
4764 L:      netdev@vger.kernel.org
4765 S:      Supported
4766 W:      http://www.chelsio.com
4767 F:      drivers/net/ethernet/chelsio/inline_crypto/
4768
4769 CXGB4 ETHERNET DRIVER (CXGB4)
4770 M:      Raju Rangoju <rajur@chelsio.com>
4771 L:      netdev@vger.kernel.org
4772 S:      Supported
4773 W:      http://www.chelsio.com
4774 F:      drivers/net/ethernet/chelsio/cxgb4/
4775
4776 CXGB4 ISCSI DRIVER (CXGB4I)
4777 M:      Karen Xie <kxie@chelsio.com>
4778 L:      linux-scsi@vger.kernel.org
4779 S:      Supported
4780 W:      http://www.chelsio.com
4781 F:      drivers/scsi/cxgbi/cxgb4i
4782
4783 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4784 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4785 L:      linux-rdma@vger.kernel.org
4786 S:      Supported
4787 W:      http://www.openfabrics.org
4788 F:      drivers/infiniband/hw/cxgb4/
4789 F:      include/uapi/rdma/cxgb4-abi.h
4790
4791 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4792 M:      Raju Rangoju <rajur@chelsio.com>
4793 L:      netdev@vger.kernel.org
4794 S:      Supported
4795 W:      http://www.chelsio.com
4796 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4797
4798 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4799 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4800 M:      Andrew Donnellan <ajd@linux.ibm.com>
4801 L:      linuxppc-dev@lists.ozlabs.org
4802 S:      Supported
4803 F:      Documentation/ABI/testing/sysfs-class-cxl
4804 F:      Documentation/powerpc/cxl.rst
4805 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4806 F:      drivers/misc/cxl/
4807 F:      include/misc/cxl*
4808 F:      include/uapi/misc/cxl.h
4809
4810 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4811 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4812 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4813 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4814 L:      linux-scsi@vger.kernel.org
4815 S:      Supported
4816 F:      Documentation/powerpc/cxlflash.rst
4817 F:      drivers/scsi/cxlflash/
4818 F:      include/uapi/scsi/cxlflash_ioctl.h
4819
4820 CYBERPRO FB DRIVER
4821 M:      Russell King <linux@armlinux.org.uk>
4822 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4823 S:      Maintained
4824 W:      http://www.armlinux.org.uk/
4825 F:      drivers/video/fbdev/cyber2000fb.*
4826
4827 CYCLADES ASYNC MUX DRIVER
4828 S:      Orphan
4829 W:      http://www.cyclades.com/
4830 F:      drivers/tty/cyclades.c
4831 F:      include/linux/cyclades.h
4832 F:      include/uapi/linux/cyclades.h
4833
4834 CYCLADES PC300 DRIVER
4835 S:      Orphan
4836 W:      http://www.cyclades.com/
4837 F:      drivers/net/wan/pc300*
4838
4839 CYPRESS_FIRMWARE MEDIA DRIVER
4840 M:      Antti Palosaari <crope@iki.fi>
4841 L:      linux-media@vger.kernel.org
4842 S:      Maintained
4843 W:      https://linuxtv.org
4844 W:      http://palosaari.fi/linux/
4845 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4846 T:      git git://linuxtv.org/anttip/media_tree.git
4847 F:      drivers/media/common/cypress_firmware*
4848
4849 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
4850 M:      Linus Walleij <linus.walleij@linaro.org>
4851 L:      linux-input@vger.kernel.org
4852 S:      Maintained
4853 F:      drivers/input/touchscreen/cy8ctma140.c
4854
4855 CYTTSP TOUCHSCREEN DRIVER
4856 M:      Ferruh Yigit <fery@cypress.com>
4857 L:      linux-input@vger.kernel.org
4858 S:      Supported
4859 F:      drivers/input/touchscreen/cyttsp*
4860 F:      include/linux/input/cyttsp.h
4861
4862 D-LINK DIR-685 TOUCHKEYS DRIVER
4863 M:      Linus Walleij <linus.walleij@linaro.org>
4864 L:      linux-input@vger.kernel.org
4865 S:      Supported
4866 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4867
4868 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4869 M:      Joshua Kinard <kumba@gentoo.org>
4870 S:      Maintained
4871 F:      drivers/rtc/rtc-ds1685.c
4872 F:      include/linux/rtc/ds1685.h
4873
4874 DAMA SLAVE for AX.25
4875 M:      Joerg Reuter <jreuter@yaina.de>
4876 L:      linux-hams@vger.kernel.org
4877 S:      Maintained
4878 W:      http://yaina.de/jreuter/
4879 W:      http://www.qsl.net/dl1bke/
4880 F:      net/ax25/af_ax25.c
4881 F:      net/ax25/ax25_dev.c
4882 F:      net/ax25/ax25_ds_*
4883 F:      net/ax25/ax25_in.c
4884 F:      net/ax25/ax25_out.c
4885 F:      net/ax25/ax25_timer.c
4886 F:      net/ax25/sysctl_net_ax25.c
4887
4888 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4889 L:      netdev@vger.kernel.org
4890 S:      Orphan
4891 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
4892 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4893
4894 DC390/AM53C974 SCSI driver
4895 M:      Hannes Reinecke <hare@suse.com>
4896 L:      linux-scsi@vger.kernel.org
4897 S:      Maintained
4898 F:      drivers/scsi/am53c974.c
4899
4900 DC395x SCSI driver
4901 M:      Oliver Neukum <oliver@neukum.org>
4902 M:      Ali Akcaagac <aliakc@web.de>
4903 M:      Jamie Lenehan <lenehan@twibble.org>
4904 L:      dc395x@twibble.org
4905 S:      Maintained
4906 W:      http://twibble.org/dist/dc395x/
4907 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4908 F:      Documentation/scsi/dc395x.rst
4909 F:      drivers/scsi/dc395x.*
4910
4911 DCCP PROTOCOL
4912 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4913 L:      dccp@vger.kernel.org
4914 S:      Maintained
4915 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4916 F:      include/linux/dccp.h
4917 F:      include/linux/tfrc.h
4918 F:      include/uapi/linux/dccp.h
4919 F:      net/dccp/
4920
4921 DECnet NETWORK LAYER
4922 L:      linux-decnet-user@lists.sourceforge.net
4923 S:      Orphan
4924 W:      http://linux-decnet.sourceforge.net
4925 F:      Documentation/networking/decnet.rst
4926 F:      net/decnet/
4927
4928 DECSTATION PLATFORM SUPPORT
4929 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4930 L:      linux-mips@vger.kernel.org
4931 S:      Maintained
4932 W:      http://www.linux-mips.org/wiki/DECstation
4933 F:      arch/mips/dec/
4934 F:      arch/mips/include/asm/dec/
4935 F:      arch/mips/include/asm/mach-dec/
4936
4937 DEFXX FDDI NETWORK DRIVER
4938 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4939 S:      Maintained
4940 F:      drivers/net/fddi/defxx.*
4941
4942 DEFZA FDDI NETWORK DRIVER
4943 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4944 S:      Maintained
4945 F:      drivers/net/fddi/defza.*
4946
4947 DEINTERLACE DRIVERS FOR ALLWINNER H3
4948 M:      Jernej Skrabec <jernej.skrabec@siol.net>
4949 L:      linux-media@vger.kernel.org
4950 S:      Maintained
4951 T:      git git://linuxtv.org/media_tree.git
4952 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4953 F:      drivers/media/platform/sunxi/sun8i-di/
4954
4955 DELL LAPTOP DRIVER
4956 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4957 M:      Pali Rohár <pali@kernel.org>
4958 L:      platform-driver-x86@vger.kernel.org
4959 S:      Maintained
4960 F:      drivers/platform/x86/dell-laptop.c
4961
4962 DELL LAPTOP FREEFALL DRIVER
4963 M:      Pali Rohár <pali@kernel.org>
4964 S:      Maintained
4965 F:      drivers/platform/x86/dell-smo8800.c
4966
4967 DELL LAPTOP RBTN DRIVER
4968 M:      Pali Rohár <pali@kernel.org>
4969 S:      Maintained
4970 F:      drivers/platform/x86/dell-rbtn.*
4971
4972 DELL LAPTOP SMM DRIVER
4973 M:      Pali Rohár <pali@kernel.org>
4974 S:      Maintained
4975 F:      drivers/hwmon/dell-smm-hwmon.c
4976 F:      include/uapi/linux/i8k.h
4977
4978 DELL REMOTE BIOS UPDATE DRIVER
4979 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4980 L:      platform-driver-x86@vger.kernel.org
4981 S:      Maintained
4982 F:      drivers/platform/x86/dell_rbu.c
4983
4984 DELL SMBIOS DRIVER
4985 M:      Pali Rohár <pali@kernel.org>
4986 M:      Mario Limonciello <mario.limonciello@dell.com>
4987 L:      platform-driver-x86@vger.kernel.org
4988 S:      Maintained
4989 F:      drivers/platform/x86/dell-smbios.*
4990
4991 DELL SMBIOS SMM DRIVER
4992 M:      Mario Limonciello <mario.limonciello@dell.com>
4993 L:      platform-driver-x86@vger.kernel.org
4994 S:      Maintained
4995 F:      drivers/platform/x86/dell-smbios-smm.c
4996
4997 DELL SMBIOS WMI DRIVER
4998 M:      Mario Limonciello <mario.limonciello@dell.com>
4999 L:      platform-driver-x86@vger.kernel.org
5000 S:      Maintained
5001 F:      drivers/platform/x86/dell-smbios-wmi.c
5002 F:      tools/wmi/dell-smbios-example.c
5003
5004 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5005 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5006 L:      platform-driver-x86@vger.kernel.org
5007 S:      Maintained
5008 F:      Documentation/driver-api/dcdbas.rst
5009 F:      drivers/platform/x86/dcdbas.*
5010
5011 DELL WMI DESCRIPTOR DRIVER
5012 M:      Mario Limonciello <mario.limonciello@dell.com>
5013 S:      Maintained
5014 F:      drivers/platform/x86/dell-wmi-descriptor.c
5015
5016 DELL WMI SYSMAN DRIVER
5017 M:      Divya Bharathi <divya.bharathi@dell.com>
5018 M:      Mario Limonciello <mario.limonciello@dell.com>
5019 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5020 L:      platform-driver-x86@vger.kernel.org
5021 S:      Maintained
5022 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5023 F:      drivers/platform/x86/dell-wmi-sysman/
5024
5025 DELL WMI NOTIFICATIONS DRIVER
5026 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5027 M:      Pali Rohár <pali@kernel.org>
5028 S:      Maintained
5029 F:      drivers/platform/x86/dell-wmi.c
5030
5031 DELTA ST MEDIA DRIVER
5032 M:      Hugues Fruchet <hugues.fruchet@st.com>
5033 L:      linux-media@vger.kernel.org
5034 S:      Supported
5035 W:      https://linuxtv.org
5036 T:      git git://linuxtv.org/media_tree.git
5037 F:      drivers/media/platform/sti/delta
5038
5039 DENALI NAND DRIVER
5040 L:      linux-mtd@lists.infradead.org
5041 S:      Orphan
5042 F:      drivers/mtd/nand/raw/denali*
5043
5044 DESIGNWARE EDMA CORE IP DRIVER
5045 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5046 L:      dmaengine@vger.kernel.org
5047 S:      Maintained
5048 F:      drivers/dma/dw-edma/
5049 F:      include/linux/dma/edma.h
5050
5051 DESIGNWARE USB2 DRD IP DRIVER
5052 M:      Minas Harutyunyan <hminas@synopsys.com>
5053 L:      linux-usb@vger.kernel.org
5054 S:      Maintained
5055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5056 F:      drivers/usb/dwc2/
5057
5058 DESIGNWARE USB3 DRD IP DRIVER
5059 M:      Felipe Balbi <balbi@kernel.org>
5060 L:      linux-usb@vger.kernel.org
5061 S:      Maintained
5062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5063 F:      drivers/usb/dwc3/
5064
5065 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5066 M:      Andreas Klinger <ak@it-klinger.de>
5067 L:      linux-iio@vger.kernel.org
5068 S:      Maintained
5069 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5070 F:      drivers/iio/proximity/srf*.c
5071
5072 DEVICE COREDUMP (DEV_COREDUMP)
5073 M:      Johannes Berg <johannes@sipsolutions.net>
5074 L:      linux-kernel@vger.kernel.org
5075 S:      Maintained
5076 F:      drivers/base/devcoredump.c
5077 F:      include/linux/devcoredump.h
5078
5079 DEVICE DEPENDENCY HELPER SCRIPT
5080 M:      Saravana Kannan <saravanak@google.com>
5081 L:      linux-kernel@vger.kernel.org
5082 S:      Maintained
5083 F:      scripts/dev-needs.sh
5084
5085 DEVICE DIRECT ACCESS (DAX)
5086 M:      Dan Williams <dan.j.williams@intel.com>
5087 M:      Vishal Verma <vishal.l.verma@intel.com>
5088 M:      Dave Jiang <dave.jiang@intel.com>
5089 L:      linux-nvdimm@lists.01.org
5090 S:      Supported
5091 F:      drivers/dax/
5092
5093 DEVICE FREQUENCY (DEVFREQ)
5094 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5095 M:      Kyungmin Park <kyungmin.park@samsung.com>
5096 M:      Chanwoo Choi <cw00.choi@samsung.com>
5097 L:      linux-pm@vger.kernel.org
5098 S:      Maintained
5099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5100 F:      Documentation/devicetree/bindings/devfreq/
5101 F:      drivers/devfreq/
5102 F:      include/linux/devfreq.h
5103 F:      include/trace/events/devfreq.h
5104
5105 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5106 M:      Chanwoo Choi <cw00.choi@samsung.com>
5107 L:      linux-pm@vger.kernel.org
5108 S:      Supported
5109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5110 F:      Documentation/devicetree/bindings/devfreq/event/
5111 F:      drivers/devfreq/devfreq-event.c
5112 F:      drivers/devfreq/event/
5113 F:      include/dt-bindings/pmu/exynos_ppmu.h
5114 F:      include/linux/devfreq-event.h
5115
5116 DEVICE NUMBER REGISTRY
5117 M:      Torben Mathiasen <device@lanana.org>
5118 S:      Maintained
5119 W:      http://lanana.org/docs/device-list/index.html
5120
5121 DEVICE-MAPPER  (LVM)
5122 M:      Alasdair Kergon <agk@redhat.com>
5123 M:      Mike Snitzer <snitzer@redhat.com>
5124 M:      dm-devel@redhat.com
5125 L:      dm-devel@redhat.com
5126 S:      Maintained
5127 W:      http://sources.redhat.com/dm
5128 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5130 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5131 F:      Documentation/admin-guide/device-mapper/
5132 F:      drivers/md/Kconfig
5133 F:      drivers/md/Makefile
5134 F:      drivers/md/dm*
5135 F:      drivers/md/persistent-data/
5136 F:      include/linux/device-mapper.h
5137 F:      include/linux/dm-*.h
5138 F:      include/uapi/linux/dm-*.h
5139
5140 DEVLINK
5141 M:      Jiri Pirko <jiri@nvidia.com>
5142 L:      netdev@vger.kernel.org
5143 S:      Supported
5144 F:      Documentation/networking/devlink
5145 F:      include/net/devlink.h
5146 F:      include/uapi/linux/devlink.h
5147 F:      net/core/devlink.c
5148
5149 DIALOG SEMICONDUCTOR DRIVERS
5150 M:      Support Opensource <support.opensource@diasemi.com>
5151 S:      Supported
5152 W:      http://www.dialog-semiconductor.com/products
5153 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5154 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5155 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5156 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5157 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5158 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5159 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5160 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5161 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5162 F:      Documentation/hwmon/da90??.rst
5163 F:      drivers/gpio/gpio-da90??.c
5164 F:      drivers/hwmon/da90??-hwmon.c
5165 F:      drivers/iio/adc/da91??-*.c
5166 F:      drivers/input/misc/da72??.[ch]
5167 F:      drivers/input/misc/da90??_onkey.c
5168 F:      drivers/input/touchscreen/da9052_tsi.c
5169 F:      drivers/leds/leds-da90??.c
5170 F:      drivers/mfd/da903x.c
5171 F:      drivers/mfd/da90??-*.c
5172 F:      drivers/mfd/da91??-*.c
5173 F:      drivers/pinctrl/pinctrl-da90??.c
5174 F:      drivers/power/supply/da9052-battery.c
5175 F:      drivers/power/supply/da91??-*.c
5176 F:      drivers/regulator/da9???-regulator.[ch]
5177 F:      drivers/regulator/slg51000-regulator.[ch]
5178 F:      drivers/rtc/rtc-da90??.c
5179 F:      drivers/thermal/da90??-thermal.c
5180 F:      drivers/video/backlight/da90??_bl.c
5181 F:      drivers/watchdog/da90??_wdt.c
5182 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5183 F:      include/linux/mfd/da903x.h
5184 F:      include/linux/mfd/da9052/
5185 F:      include/linux/mfd/da9055/
5186 F:      include/linux/mfd/da9062/
5187 F:      include/linux/mfd/da9063/
5188 F:      include/linux/mfd/da9150/
5189 F:      include/linux/regulator/da9211.h
5190 F:      include/sound/da[79]*.h
5191 F:      sound/soc/codecs/da[79]*.[ch]
5192
5193 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5194 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5195 L:      linux-gpio@vger.kernel.org
5196 S:      Maintained
5197 F:      drivers/gpio/gpio-gpio-mm.c
5198
5199 DIOLAN U2C-12 I2C DRIVER
5200 M:      Guenter Roeck <linux@roeck-us.net>
5201 L:      linux-i2c@vger.kernel.org
5202 S:      Maintained
5203 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5204
5205 DIRECTORY NOTIFICATION (DNOTIFY)
5206 M:      Jan Kara <jack@suse.cz>
5207 R:      Amir Goldstein <amir73il@gmail.com>
5208 L:      linux-fsdevel@vger.kernel.org
5209 S:      Maintained
5210 F:      Documentation/filesystems/dnotify.rst
5211 F:      fs/notify/dnotify/
5212 F:      include/linux/dnotify.h
5213
5214 DISK GEOMETRY AND PARTITION HANDLING
5215 M:      Andries Brouwer <aeb@cwi.nl>
5216 S:      Maintained
5217 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5218 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5219 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5220
5221 DISKQUOTA
5222 M:      Jan Kara <jack@suse.com>
5223 S:      Maintained
5224 F:      Documentation/filesystems/quota.rst
5225 F:      fs/quota/
5226 F:      include/linux/quota*.h
5227 F:      include/uapi/linux/quota*.h
5228
5229 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5230 M:      Bernie Thompson <bernie@plugable.com>
5231 L:      linux-fbdev@vger.kernel.org
5232 S:      Maintained
5233 W:      http://plugable.com/category/projects/udlfb/
5234 F:      Documentation/fb/udlfb.rst
5235 F:      drivers/video/fbdev/udlfb.c
5236 F:      include/video/udlfb.h
5237
5238 DISTRIBUTED LOCK MANAGER (DLM)
5239 M:      Christine Caulfield <ccaulfie@redhat.com>
5240 M:      David Teigland <teigland@redhat.com>
5241 L:      cluster-devel@redhat.com
5242 S:      Supported
5243 W:      http://sources.redhat.com/cluster/
5244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5245 F:      fs/dlm/
5246
5247 DMA BUFFER SHARING FRAMEWORK
5248 M:      Sumit Semwal <sumit.semwal@linaro.org>
5249 M:      Christian König <christian.koenig@amd.com>
5250 L:      linux-media@vger.kernel.org
5251 L:      dri-devel@lists.freedesktop.org
5252 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5253 S:      Maintained
5254 T:      git git://anongit.freedesktop.org/drm/drm-misc
5255 F:      Documentation/driver-api/dma-buf.rst
5256 F:      drivers/dma-buf/
5257 F:      include/linux/*fence.h
5258 F:      include/linux/dma-buf*
5259 F:      include/linux/dma-resv.h
5260 K:      \bdma_(?:buf|fence|resv)\b
5261
5262 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5263 M:      Vinod Koul <vkoul@kernel.org>
5264 L:      dmaengine@vger.kernel.org
5265 S:      Maintained
5266 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5268 F:      Documentation/devicetree/bindings/dma/
5269 F:      Documentation/driver-api/dmaengine/
5270 F:      drivers/dma/
5271 F:      include/linux/dmaengine.h
5272 F:      include/linux/of_dma.h
5273
5274 DMA MAPPING HELPERS
5275 M:      Christoph Hellwig <hch@lst.de>
5276 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5277 R:      Robin Murphy <robin.murphy@arm.com>
5278 L:      iommu@lists.linux-foundation.org
5279 S:      Supported
5280 W:      http://git.infradead.org/users/hch/dma-mapping.git
5281 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5282 F:      include/asm-generic/dma-mapping.h
5283 F:      include/linux/dma-direct.h
5284 F:      include/linux/dma-mapping.h
5285 F:      include/linux/dma-map-ops.h
5286 F:      kernel/dma/
5287
5288 DMA-BUF HEAPS FRAMEWORK
5289 M:      Sumit Semwal <sumit.semwal@linaro.org>
5290 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5291 R:      Liam Mark <lmark@codeaurora.org>
5292 R:      Laura Abbott <labbott@redhat.com>
5293 R:      Brian Starkey <Brian.Starkey@arm.com>
5294 R:      John Stultz <john.stultz@linaro.org>
5295 L:      linux-media@vger.kernel.org
5296 L:      dri-devel@lists.freedesktop.org
5297 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5298 S:      Maintained
5299 T:      git git://anongit.freedesktop.org/drm/drm-misc
5300 F:      drivers/dma-buf/dma-heap.c
5301 F:      drivers/dma-buf/heaps/*
5302 F:      include/linux/dma-heap.h
5303 F:      include/uapi/linux/dma-heap.h
5304
5305 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5306 M:      Lukasz Luba <lukasz.luba@arm.com>
5307 L:      linux-pm@vger.kernel.org
5308 L:      linux-samsung-soc@vger.kernel.org
5309 S:      Maintained
5310 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5311 F:      drivers/memory/samsung/exynos5422-dmc.c
5312
5313 DME1737 HARDWARE MONITOR DRIVER
5314 M:      Juerg Haefliger <juergh@gmail.com>
5315 L:      linux-hwmon@vger.kernel.org
5316 S:      Maintained
5317 F:      Documentation/hwmon/dme1737.rst
5318 F:      drivers/hwmon/dme1737.c
5319
5320 DMI/SMBIOS SUPPORT
5321 M:      Jean Delvare <jdelvare@suse.com>
5322 S:      Maintained
5323 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5324 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5325 F:      drivers/firmware/dmi-id.c
5326 F:      drivers/firmware/dmi_scan.c
5327 F:      include/linux/dmi.h
5328
5329 DOCUMENTATION
5330 M:      Jonathan Corbet <corbet@lwn.net>
5331 L:      linux-doc@vger.kernel.org
5332 S:      Maintained
5333 P:      Documentation/doc-guide/maintainer-profile.rst
5334 T:      git git://git.lwn.net/linux.git docs-next
5335 F:      Documentation/
5336 F:      scripts/documentation-file-ref-check
5337 F:      scripts/kernel-doc
5338 F:      scripts/sphinx-pre-install
5339 X:      Documentation/ABI/
5340 X:      Documentation/admin-guide/media/
5341 X:      Documentation/devicetree/
5342 X:      Documentation/driver-api/media/
5343 X:      Documentation/firmware-guide/acpi/
5344 X:      Documentation/i2c/
5345 X:      Documentation/power/
5346 X:      Documentation/spi/
5347 X:      Documentation/userspace-api/media/
5348
5349 DOCUMENTATION SCRIPTS
5350 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5351 L:      linux-doc@vger.kernel.org
5352 S:      Maintained
5353 F:      Documentation/sphinx/parse-headers.pl
5354 F:      scripts/documentation-file-ref-check
5355 F:      scripts/sphinx-pre-install
5356
5357 DOCUMENTATION/ITALIAN
5358 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5359 L:      linux-doc@vger.kernel.org
5360 S:      Maintained
5361 F:      Documentation/translations/it_IT
5362
5363 DONGWOON DW9714 LENS VOICE COIL DRIVER
5364 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5365 L:      linux-media@vger.kernel.org
5366 S:      Maintained
5367 T:      git git://linuxtv.org/media_tree.git
5368 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5369 F:      drivers/media/i2c/dw9714.c
5370
5371 DONGWOON DW9768 LENS VOICE COIL DRIVER
5372 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5373 L:      linux-media@vger.kernel.org
5374 S:      Maintained
5375 T:      git git://linuxtv.org/media_tree.git
5376 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5377 F:      drivers/media/i2c/dw9768.c
5378
5379 DONGWOON DW9807 LENS VOICE COIL DRIVER
5380 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5381 L:      linux-media@vger.kernel.org
5382 S:      Maintained
5383 T:      git git://linuxtv.org/media_tree.git
5384 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5385 F:      drivers/media/i2c/dw9807-vcm.c
5386
5387 DOUBLETALK DRIVER
5388 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5389 L:      blinux-list@redhat.com
5390 S:      Maintained
5391 F:      drivers/char/dtlk.c
5392 F:      include/linux/dtlk.h
5393
5394 DPAA2 DATAPATH I/O (DPIO) DRIVER
5395 M:      Roy Pledge <Roy.Pledge@nxp.com>
5396 L:      linux-kernel@vger.kernel.org
5397 S:      Maintained
5398 F:      drivers/soc/fsl/dpio
5399
5400 DPAA2 ETHERNET DRIVER
5401 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5402 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5403 L:      netdev@vger.kernel.org
5404 S:      Maintained
5405 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5406 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5407 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5408 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5409 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5410 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5411 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5412 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5413 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5414
5415 DPAA2 ETHERNET SWITCH DRIVER
5416 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5417 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5418 L:      linux-kernel@vger.kernel.org
5419 S:      Maintained
5420 F:      drivers/staging/fsl-dpaa2/ethsw
5421
5422 DPT_I2O SCSI RAID DRIVER
5423 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5424 L:      linux-scsi@vger.kernel.org
5425 S:      Maintained
5426 W:      http://www.adaptec.com/
5427 F:      drivers/scsi/dpt*
5428 F:      drivers/scsi/dpt/
5429
5430 DRBD DRIVER
5431 M:      Philipp Reisner <philipp.reisner@linbit.com>
5432 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5433 L:      drbd-dev@lists.linbit.com
5434 S:      Supported
5435 W:      http://www.drbd.org
5436 T:      git git://git.linbit.com/linux-drbd.git
5437 T:      git git://git.linbit.com/drbd-8.4.git
5438 F:      Documentation/admin-guide/blockdev/
5439 F:      drivers/block/drbd/
5440 F:      lib/lru_cache.c
5441
5442 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5443 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5444 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5445 S:      Supported
5446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5447 F:      Documentation/core-api/kobject.rst
5448 F:      drivers/base/
5449 F:      fs/debugfs/
5450 F:      fs/sysfs/
5451 F:      include/linux/debugfs.h
5452 F:      include/linux/kobj*
5453 F:      lib/kobj*
5454
5455 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5456 M:      Nishanth Menon <nm@ti.com>
5457 L:      linux-pm@vger.kernel.org
5458 S:      Maintained
5459 F:      drivers/soc/ti/smartreflex.c
5460 F:      include/linux/power/smartreflex.h
5461
5462 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5463 M:      Maxime Ripard <mripard@kernel.org>
5464 M:      Chen-Yu Tsai <wens@csie.org>
5465 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5466 L:      dri-devel@lists.freedesktop.org
5467 S:      Supported
5468 T:      git git://anongit.freedesktop.org/drm/drm-misc
5469 F:      drivers/gpu/drm/sun4i/sun8i*
5470
5471 DRM DRIVER FOR ARM PL111 CLCD
5472 M:      Eric Anholt <eric@anholt.net>
5473 S:      Supported
5474 T:      git git://anongit.freedesktop.org/drm/drm-misc
5475 F:      drivers/gpu/drm/pl111/
5476
5477 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5478 M:      Linus Walleij <linus.walleij@linaro.org>
5479 S:      Maintained
5480 T:      git git://anongit.freedesktop.org/drm/drm-misc
5481 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5482 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5483
5484 DRM DRIVER FOR ASPEED BMC GFX
5485 M:      Joel Stanley <joel@jms.id.au>
5486 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5487 S:      Supported
5488 T:      git git://anongit.freedesktop.org/drm/drm-misc
5489 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5490 F:      drivers/gpu/drm/aspeed/
5491
5492 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5493 M:      Dave Airlie <airlied@redhat.com>
5494 R:      Thomas Zimmermann <tzimmermann@suse.de>
5495 L:      dri-devel@lists.freedesktop.org
5496 S:      Supported
5497 T:      git git://anongit.freedesktop.org/drm/drm-misc
5498 F:      drivers/gpu/drm/ast/
5499
5500 DRM DRIVER FOR BOCHS VIRTUAL GPU
5501 M:      Gerd Hoffmann <kraxel@redhat.com>
5502 L:      virtualization@lists.linux-foundation.org
5503 S:      Maintained
5504 T:      git git://anongit.freedesktop.org/drm/drm-misc
5505 F:      drivers/gpu/drm/bochs/
5506
5507 DRM DRIVER FOR BOE HIMAX8279D PANELS
5508 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5509 S:      Maintained
5510 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5511 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5512
5513 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5514 M:      Linus Walleij <linus.walleij@linaro.org>
5515 S:      Maintained
5516 T:      git git://anongit.freedesktop.org/drm/drm-misc
5517 F:      drivers/gpu/drm/tve200/
5518
5519 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5520 M:      Icenowy Zheng <icenowy@aosc.io>
5521 S:      Maintained
5522 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5523 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5524
5525 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5526 M:      Jagan Teki <jagan@amarulasolutions.com>
5527 S:      Maintained
5528 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5529 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5530
5531 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5532 M:      Hans de Goede <hdegoede@redhat.com>
5533 S:      Maintained
5534 T:      git git://anongit.freedesktop.org/drm/drm-misc
5535 F:      drivers/gpu/drm/tiny/gm12u320.c
5536
5537 DRM DRIVER FOR HX8357D PANELS
5538 M:      Eric Anholt <eric@anholt.net>
5539 S:      Maintained
5540 T:      git git://anongit.freedesktop.org/drm/drm-misc
5541 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5542 F:      drivers/gpu/drm/tiny/hx8357d.c
5543
5544 DRM DRIVER FOR ILITEK ILI9225 PANELS
5545 M:      David Lechner <david@lechnology.com>
5546 S:      Maintained
5547 T:      git git://anongit.freedesktop.org/drm/drm-misc
5548 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5549 F:      drivers/gpu/drm/tiny/ili9225.c
5550
5551 DRM DRIVER FOR ILITEK ILI9486 PANELS
5552 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5553 S:      Maintained
5554 T:      git git://anongit.freedesktop.org/drm/drm-misc
5555 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5556 F:      drivers/gpu/drm/tiny/ili9486.c
5557
5558 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5559 S:      Orphan / Obsolete
5560 F:      drivers/gpu/drm/i810/
5561 F:      include/uapi/drm/i810_drm.h
5562
5563 DRM DRIVER FOR LVDS PANELS
5564 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5565 L:      dri-devel@lists.freedesktop.org
5566 T:      git git://anongit.freedesktop.org/drm/drm-misc
5567 S:      Maintained
5568 F:      drivers/gpu/drm/panel/panel-lvds.c
5569 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5570
5571 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5572 M:      Guido Günther <agx@sigxcpu.org>
5573 R:      Purism Kernel Team <kernel@puri.sm>
5574 S:      Maintained
5575 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5576 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5577
5578 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5579 S:      Orphan / Obsolete
5580 F:      drivers/gpu/drm/mga/
5581 F:      include/uapi/drm/mga_drm.h
5582
5583 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5584 M:      Dave Airlie <airlied@redhat.com>
5585 R:      Thomas Zimmermann <tzimmermann@suse.de>
5586 L:      dri-devel@lists.freedesktop.org
5587 S:      Supported
5588 T:      git git://anongit.freedesktop.org/drm/drm-misc
5589 F:      drivers/gpu/drm/mgag200/
5590
5591 DRM DRIVER FOR MI0283QT
5592 M:      Noralf Trønnes <noralf@tronnes.org>
5593 S:      Maintained
5594 T:      git git://anongit.freedesktop.org/drm/drm-misc
5595 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5596 F:      drivers/gpu/drm/tiny/mi0283qt.c
5597
5598 DRM DRIVER FOR MSM ADRENO GPU
5599 M:      Rob Clark <robdclark@gmail.com>
5600 M:      Sean Paul <sean@poorly.run>
5601 L:      linux-arm-msm@vger.kernel.org
5602 L:      dri-devel@lists.freedesktop.org
5603 L:      freedreno@lists.freedesktop.org
5604 S:      Maintained
5605 T:      git https://gitlab.freedesktop.org/drm/msm.git
5606 F:      Documentation/devicetree/bindings/display/msm/
5607 F:      drivers/gpu/drm/msm/
5608 F:      include/uapi/drm/msm_drm.h
5609
5610 DRM DRIVER FOR NOVATEK NT35510 PANELS
5611 M:      Linus Walleij <linus.walleij@linaro.org>
5612 S:      Maintained
5613 T:      git git://anongit.freedesktop.org/drm/drm-misc
5614 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5615 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5616
5617 DRM DRIVER FOR NOVATEK NT36672A PANELS
5618 M:      Sumit Semwal <sumit.semwal@linaro.org>
5619 S:      Maintained
5620 T:      git git://anongit.freedesktop.org/drm/drm-misc
5621 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
5622 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
5623
5624 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5625 M:      Ben Skeggs <bskeggs@redhat.com>
5626 L:      dri-devel@lists.freedesktop.org
5627 L:      nouveau@lists.freedesktop.org
5628 S:      Supported
5629 T:      git git://github.com/skeggsb/linux
5630 F:      drivers/gpu/drm/nouveau/
5631 F:      include/uapi/drm/nouveau_drm.h
5632
5633 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5634 M:      Stefan Mavrodiev <stefan@olimex.com>
5635 S:      Maintained
5636 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5637 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5638
5639 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5640 M:      Noralf Trønnes <noralf@tronnes.org>
5641 S:      Maintained
5642 T:      git git://anongit.freedesktop.org/drm/drm-misc
5643 F:      Documentation/devicetree/bindings/display/repaper.txt
5644 F:      drivers/gpu/drm/tiny/repaper.c
5645
5646 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5647 M:      Dave Airlie <airlied@redhat.com>
5648 M:      Gerd Hoffmann <kraxel@redhat.com>
5649 L:      virtualization@lists.linux-foundation.org
5650 S:      Obsolete
5651 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5652 T:      git git://anongit.freedesktop.org/drm/drm-misc
5653 F:      drivers/gpu/drm/tiny/cirrus.c
5654
5655 DRM DRIVER FOR QXL VIRTUAL GPU
5656 M:      Dave Airlie <airlied@redhat.com>
5657 M:      Gerd Hoffmann <kraxel@redhat.com>
5658 L:      virtualization@lists.linux-foundation.org
5659 L:      spice-devel@lists.freedesktop.org
5660 S:      Maintained
5661 T:      git git://anongit.freedesktop.org/drm/drm-misc
5662 F:      drivers/gpu/drm/qxl/
5663 F:      include/uapi/drm/qxl_drm.h
5664
5665 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5666 S:      Orphan / Obsolete
5667 F:      drivers/gpu/drm/r128/
5668 F:      include/uapi/drm/r128_drm.h
5669
5670 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5671 M:      Robert Chiras <robert.chiras@nxp.com>
5672 S:      Maintained
5673 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5674 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5675
5676 DRM DRIVER FOR SITRONIX ST7703 PANELS
5677 M:      Guido Günther <agx@sigxcpu.org>
5678 R:      Purism Kernel Team <kernel@puri.sm>
5679 R:      Ondrej Jirman <megous@megous.com>
5680 S:      Maintained
5681 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
5682 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
5683
5684 DRM DRIVER FOR SAVAGE VIDEO CARDS
5685 S:      Orphan / Obsolete
5686 F:      drivers/gpu/drm/savage/
5687 F:      include/uapi/drm/savage_drm.h
5688
5689 DRM DRIVER FOR SIS VIDEO CARDS
5690 S:      Orphan / Obsolete
5691 F:      drivers/gpu/drm/sis/
5692 F:      include/uapi/drm/sis_drm.h
5693
5694 DRM DRIVER FOR SITRONIX ST7586 PANELS
5695 M:      David Lechner <david@lechnology.com>
5696 S:      Maintained
5697 T:      git git://anongit.freedesktop.org/drm/drm-misc
5698 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5699 F:      drivers/gpu/drm/tiny/st7586.c
5700
5701 DRM DRIVER FOR SITRONIX ST7701 PANELS
5702 M:      Jagan Teki <jagan@amarulasolutions.com>
5703 S:      Maintained
5704 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5705 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5706
5707 DRM DRIVER FOR SITRONIX ST7735R PANELS
5708 M:      David Lechner <david@lechnology.com>
5709 S:      Maintained
5710 T:      git git://anongit.freedesktop.org/drm/drm-misc
5711 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5712 F:      drivers/gpu/drm/tiny/st7735r.c
5713
5714 DRM DRIVER FOR SONY ACX424AKP PANELS
5715 M:      Linus Walleij <linus.walleij@linaro.org>
5716 S:      Maintained
5717 T:      git git://anongit.freedesktop.org/drm/drm-misc
5718 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5719
5720 DRM DRIVER FOR ST-ERICSSON MCDE
5721 M:      Linus Walleij <linus.walleij@linaro.org>
5722 S:      Maintained
5723 T:      git git://anongit.freedesktop.org/drm/drm-misc
5724 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5725 F:      drivers/gpu/drm/mcde/
5726
5727 DRM DRIVER FOR TDFX VIDEO CARDS
5728 S:      Orphan / Obsolete
5729 F:      drivers/gpu/drm/tdfx/
5730
5731 DRM DRIVER FOR TPO TPG110 PANELS
5732 M:      Linus Walleij <linus.walleij@linaro.org>
5733 S:      Maintained
5734 T:      git git://anongit.freedesktop.org/drm/drm-misc
5735 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5736 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5737
5738 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5739 M:      Dave Airlie <airlied@redhat.com>
5740 R:      Sean Paul <sean@poorly.run>
5741 R:      Thomas Zimmermann <tzimmermann@suse.de>
5742 L:      dri-devel@lists.freedesktop.org
5743 S:      Supported
5744 T:      git git://anongit.freedesktop.org/drm/drm-misc
5745 F:      drivers/gpu/drm/udl/
5746
5747 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5748 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5749 M:      Melissa Wen <melissa.srw@gmail.com>
5750 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5751 R:      Daniel Vetter <daniel@ffwll.ch>
5752 L:      dri-devel@lists.freedesktop.org
5753 S:      Maintained
5754 T:      git git://anongit.freedesktop.org/drm/drm-misc
5755 F:      Documentation/gpu/vkms.rst
5756 F:      drivers/gpu/drm/vkms/
5757
5758 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5759 M:      Hans de Goede <hdegoede@redhat.com>
5760 L:      dri-devel@lists.freedesktop.org
5761 S:      Maintained
5762 T:      git git://anongit.freedesktop.org/drm/drm-misc
5763 F:      drivers/gpu/drm/vboxvideo/
5764
5765 DRM DRIVER FOR VMWARE VIRTUAL GPU
5766 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5767 M:      Roland Scheidegger <sroland@vmware.com>
5768 L:      dri-devel@lists.freedesktop.org
5769 S:      Supported
5770 T:      git git://people.freedesktop.org/~sroland/linux
5771 F:      drivers/gpu/drm/vmwgfx/
5772 F:      include/uapi/drm/vmwgfx_drm.h
5773
5774 DRM DRIVERS
5775 M:      David Airlie <airlied@linux.ie>
5776 M:      Daniel Vetter <daniel@ffwll.ch>
5777 L:      dri-devel@lists.freedesktop.org
5778 S:      Maintained
5779 B:      https://bugs.freedesktop.org/
5780 C:      irc://chat.freenode.net/dri-devel
5781 T:      git git://anongit.freedesktop.org/drm/drm
5782 F:      Documentation/devicetree/bindings/display/
5783 F:      Documentation/devicetree/bindings/gpu/
5784 F:      Documentation/gpu/
5785 F:      drivers/gpu/drm/
5786 F:      drivers/gpu/vga/
5787 F:      include/drm/
5788 F:      include/linux/vga*
5789 F:      include/uapi/drm/
5790
5791 DRM DRIVERS AND MISC GPU PATCHES
5792 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5793 M:      Maxime Ripard <mripard@kernel.org>
5794 M:      Thomas Zimmermann <tzimmermann@suse.de>
5795 S:      Maintained
5796 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5797 T:      git git://anongit.freedesktop.org/drm/drm-misc
5798 F:      Documentation/gpu/
5799 F:      drivers/gpu/drm/*
5800 F:      drivers/gpu/vga/
5801 F:      include/drm/drm*
5802 F:      include/linux/vga*
5803 F:      include/uapi/drm/drm*
5804
5805 DRM DRIVERS FOR ALLWINNER A10
5806 M:      Maxime Ripard <mripard@kernel.org>
5807 M:      Chen-Yu Tsai <wens@csie.org>
5808 L:      dri-devel@lists.freedesktop.org
5809 S:      Supported
5810 T:      git git://anongit.freedesktop.org/drm/drm-misc
5811 F:      Documentation/devicetree/bindings/display/allwinner*
5812 F:      drivers/gpu/drm/sun4i/
5813
5814 DRM DRIVERS FOR AMLOGIC SOCS
5815 M:      Neil Armstrong <narmstrong@baylibre.com>
5816 L:      dri-devel@lists.freedesktop.org
5817 L:      linux-amlogic@lists.infradead.org
5818 S:      Supported
5819 W:      http://linux-meson.com/
5820 T:      git git://anongit.freedesktop.org/drm/drm-misc
5821 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5822 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5823 F:      Documentation/gpu/meson.rst
5824 F:      drivers/gpu/drm/meson/
5825
5826 DRM DRIVERS FOR ATMEL HLCDC
5827 M:      Sam Ravnborg <sam@ravnborg.org>
5828 M:      Boris Brezillon <bbrezillon@kernel.org>
5829 L:      dri-devel@lists.freedesktop.org
5830 S:      Supported
5831 T:      git git://anongit.freedesktop.org/drm/drm-misc
5832 F:      Documentation/devicetree/bindings/display/atmel/
5833 F:      drivers/gpu/drm/atmel-hlcdc/
5834
5835 DRM DRIVERS FOR BRIDGE CHIPS
5836 M:      Andrzej Hajda <a.hajda@samsung.com>
5837 M:      Neil Armstrong <narmstrong@baylibre.com>
5838 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5839 R:      Jonas Karlman <jonas@kwiboo.se>
5840 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5841 S:      Maintained
5842 T:      git git://anongit.freedesktop.org/drm/drm-misc
5843 F:      drivers/gpu/drm/bridge/
5844
5845 DRM DRIVERS FOR EXYNOS
5846 M:      Inki Dae <inki.dae@samsung.com>
5847 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5848 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5849 M:      Kyungmin Park <kyungmin.park@samsung.com>
5850 L:      dri-devel@lists.freedesktop.org
5851 S:      Supported
5852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5853 F:      Documentation/devicetree/bindings/display/exynos/
5854 F:      drivers/gpu/drm/exynos/
5855 F:      include/uapi/drm/exynos_drm.h
5856
5857 DRM DRIVERS FOR FREESCALE DCU
5858 M:      Stefan Agner <stefan@agner.ch>
5859 M:      Alison Wang <alison.wang@nxp.com>
5860 L:      dri-devel@lists.freedesktop.org
5861 S:      Supported
5862 T:      git git://anongit.freedesktop.org/drm/drm-misc
5863 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5864 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5865 F:      drivers/gpu/drm/fsl-dcu/
5866
5867 DRM DRIVERS FOR FREESCALE IMX
5868 M:      Philipp Zabel <p.zabel@pengutronix.de>
5869 L:      dri-devel@lists.freedesktop.org
5870 S:      Maintained
5871 F:      Documentation/devicetree/bindings/display/imx/
5872 F:      drivers/gpu/drm/imx/
5873 F:      drivers/gpu/ipu-v3/
5874
5875 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5876 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5877 L:      dri-devel@lists.freedesktop.org
5878 S:      Maintained
5879 T:      git git://github.com/patjak/drm-gma500
5880 F:      drivers/gpu/drm/gma500/
5881
5882 DRM DRIVERS FOR HISILICON
5883 M:      Xinliang Liu <xinliang.liu@linaro.org>
5884 M:      Tian Tao  <tiantao6@hisilicon.com>
5885 R:      John Stultz <john.stultz@linaro.org>
5886 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5887 R:      Chen Feng <puck.chen@hisilicon.com>
5888 L:      dri-devel@lists.freedesktop.org
5889 S:      Maintained
5890 T:      git git://anongit.freedesktop.org/drm/drm-misc
5891 F:      Documentation/devicetree/bindings/display/hisilicon/
5892 F:      drivers/gpu/drm/hisilicon/
5893
5894 DRM DRIVERS FOR LIMA
5895 M:      Qiang Yu <yuq825@gmail.com>
5896 L:      dri-devel@lists.freedesktop.org
5897 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5898 S:      Maintained
5899 T:      git git://anongit.freedesktop.org/drm/drm-misc
5900 F:      drivers/gpu/drm/lima/
5901 F:      include/uapi/drm/lima_drm.h
5902
5903 DRM DRIVERS FOR MEDIATEK
5904 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
5905 M:      Philipp Zabel <p.zabel@pengutronix.de>
5906 L:      dri-devel@lists.freedesktop.org
5907 S:      Supported
5908 F:      Documentation/devicetree/bindings/display/mediatek/
5909 F:      drivers/gpu/drm/mediatek/
5910 F:      drivers/phy/mediatek/phy-mtk-hdmi*
5911 F:      drivers/phy/mediatek/phy-mtk-mipi*
5912
5913 DRM DRIVERS FOR NVIDIA TEGRA
5914 M:      Thierry Reding <thierry.reding@gmail.com>
5915 L:      dri-devel@lists.freedesktop.org
5916 L:      linux-tegra@vger.kernel.org
5917 S:      Supported
5918 T:      git git://anongit.freedesktop.org/tegra/linux.git
5919 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5920 F:      drivers/gpu/drm/tegra/
5921 F:      drivers/gpu/host1x/
5922 F:      include/linux/host1x.h
5923 F:      include/uapi/drm/tegra_drm.h
5924
5925 DRM DRIVERS FOR RENESAS
5926 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5927 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5928 L:      dri-devel@lists.freedesktop.org
5929 L:      linux-renesas-soc@vger.kernel.org
5930 S:      Supported
5931 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5932 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5933 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
5934 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5935 F:      drivers/gpu/drm/rcar-du/
5936 F:      drivers/gpu/drm/shmobile/
5937 F:      include/linux/platform_data/shmob_drm.h
5938
5939 DRM DRIVERS FOR ROCKCHIP
5940 M:      Sandy Huang <hjc@rock-chips.com>
5941 M:      Heiko Stübner <heiko@sntech.de>
5942 L:      dri-devel@lists.freedesktop.org
5943 S:      Maintained
5944 T:      git git://anongit.freedesktop.org/drm/drm-misc
5945 F:      Documentation/devicetree/bindings/display/rockchip/
5946 F:      drivers/gpu/drm/rockchip/
5947
5948 DRM DRIVERS FOR STI
5949 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5950 M:      Vincent Abriou <vincent.abriou@st.com>
5951 L:      dri-devel@lists.freedesktop.org
5952 S:      Maintained
5953 T:      git git://anongit.freedesktop.org/drm/drm-misc
5954 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5955 F:      drivers/gpu/drm/sti
5956
5957 DRM DRIVERS FOR STM
5958 M:      Yannick Fertre <yannick.fertre@st.com>
5959 M:      Philippe Cornu <philippe.cornu@st.com>
5960 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5961 M:      Vincent Abriou <vincent.abriou@st.com>
5962 L:      dri-devel@lists.freedesktop.org
5963 S:      Maintained
5964 T:      git git://anongit.freedesktop.org/drm/drm-misc
5965 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5966 F:      drivers/gpu/drm/stm
5967
5968 DRM DRIVERS FOR TI KEYSTONE
5969 M:      Jyri Sarha <jsarha@ti.com>
5970 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5971 L:      dri-devel@lists.freedesktop.org
5972 S:      Maintained
5973 T:      git git://anongit.freedesktop.org/drm/drm-misc
5974 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5975 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5976 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5977 F:      drivers/gpu/drm/tidss/
5978
5979 DRM DRIVERS FOR TI LCDC
5980 M:      Jyri Sarha <jsarha@ti.com>
5981 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5982 L:      dri-devel@lists.freedesktop.org
5983 S:      Maintained
5984 F:      Documentation/devicetree/bindings/display/tilcdc/
5985 F:      drivers/gpu/drm/tilcdc/
5986
5987 DRM DRIVERS FOR TI OMAP
5988 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5989 L:      dri-devel@lists.freedesktop.org
5990 S:      Maintained
5991 F:      Documentation/devicetree/bindings/display/ti/
5992 F:      drivers/gpu/drm/omapdrm/
5993
5994 DRM DRIVERS FOR V3D
5995 M:      Eric Anholt <eric@anholt.net>
5996 S:      Supported
5997 T:      git git://anongit.freedesktop.org/drm/drm-misc
5998 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5999 F:      drivers/gpu/drm/v3d/
6000 F:      include/uapi/drm/v3d_drm.h
6001
6002 DRM DRIVERS FOR VC4
6003 M:      Eric Anholt <eric@anholt.net>
6004 M:      Maxime Ripard <mripard@kernel.org>
6005 S:      Supported
6006 T:      git git://github.com/anholt/linux
6007 T:      git git://anongit.freedesktop.org/drm/drm-misc
6008 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6009 F:      drivers/gpu/drm/vc4/
6010 F:      include/uapi/drm/vc4_drm.h
6011
6012 DRM DRIVERS FOR VIVANTE GPU IP
6013 M:      Lucas Stach <l.stach@pengutronix.de>
6014 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6015 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6016 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6017 L:      dri-devel@lists.freedesktop.org
6018 S:      Maintained
6019 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6020 F:      drivers/gpu/drm/etnaviv/
6021 F:      include/uapi/drm/etnaviv_drm.h
6022
6023 DRM DRIVERS FOR XEN
6024 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6025 L:      dri-devel@lists.freedesktop.org
6026 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6027 S:      Supported
6028 T:      git git://anongit.freedesktop.org/drm/drm-misc
6029 F:      Documentation/gpu/xen-front.rst
6030 F:      drivers/gpu/drm/xen/
6031
6032 DRM DRIVERS FOR XILINX
6033 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6034 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6035 L:      dri-devel@lists.freedesktop.org
6036 S:      Maintained
6037 T:      git git://anongit.freedesktop.org/drm/drm-misc
6038 F:      Documentation/devicetree/bindings/display/xlnx/
6039 F:      drivers/gpu/drm/xlnx/
6040
6041 DRM DRIVERS FOR ZTE ZX
6042 M:      Shawn Guo <shawnguo@kernel.org>
6043 L:      dri-devel@lists.freedesktop.org
6044 S:      Maintained
6045 T:      git git://anongit.freedesktop.org/drm/drm-misc
6046 F:      Documentation/devicetree/bindings/display/zte,vou.txt
6047 F:      drivers/gpu/drm/zte/
6048
6049 DRM PANEL DRIVERS
6050 M:      Thierry Reding <thierry.reding@gmail.com>
6051 R:      Sam Ravnborg <sam@ravnborg.org>
6052 L:      dri-devel@lists.freedesktop.org
6053 S:      Maintained
6054 T:      git git://anongit.freedesktop.org/drm/drm-misc
6055 F:      Documentation/devicetree/bindings/display/panel/
6056 F:      drivers/gpu/drm/drm_panel.c
6057 F:      drivers/gpu/drm/panel/
6058 F:      include/drm/drm_panel.h
6059
6060 DRM TTM SUBSYSTEM
6061 M:      Christian Koenig <christian.koenig@amd.com>
6062 M:      Huang Rui <ray.huang@amd.com>
6063 L:      dri-devel@lists.freedesktop.org
6064 S:      Maintained
6065 T:      git git://people.freedesktop.org/~agd5f/linux
6066 F:      drivers/gpu/drm/ttm/
6067 F:      include/drm/ttm/
6068
6069 DSBR100 USB FM RADIO DRIVER
6070 M:      Alexey Klimov <klimov.linux@gmail.com>
6071 L:      linux-media@vger.kernel.org
6072 S:      Maintained
6073 T:      git git://linuxtv.org/media_tree.git
6074 F:      drivers/media/radio/dsbr100.c
6075
6076 DT3155 MEDIA DRIVER
6077 M:      Hans Verkuil <hverkuil@xs4all.nl>
6078 L:      linux-media@vger.kernel.org
6079 S:      Odd Fixes
6080 W:      https://linuxtv.org
6081 T:      git git://linuxtv.org/media_tree.git
6082 F:      drivers/media/pci/dt3155/
6083
6084 DVB_USB_AF9015 MEDIA DRIVER
6085 M:      Antti Palosaari <crope@iki.fi>
6086 L:      linux-media@vger.kernel.org
6087 S:      Maintained
6088 W:      https://linuxtv.org
6089 W:      http://palosaari.fi/linux/
6090 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6091 T:      git git://linuxtv.org/anttip/media_tree.git
6092 F:      drivers/media/usb/dvb-usb-v2/af9015*
6093
6094 DVB_USB_AF9035 MEDIA DRIVER
6095 M:      Antti Palosaari <crope@iki.fi>
6096 L:      linux-media@vger.kernel.org
6097 S:      Maintained
6098 W:      https://linuxtv.org
6099 W:      http://palosaari.fi/linux/
6100 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6101 T:      git git://linuxtv.org/anttip/media_tree.git
6102 F:      drivers/media/usb/dvb-usb-v2/af9035*
6103
6104 DVB_USB_ANYSEE MEDIA DRIVER
6105 M:      Antti Palosaari <crope@iki.fi>
6106 L:      linux-media@vger.kernel.org
6107 S:      Maintained
6108 W:      https://linuxtv.org
6109 W:      http://palosaari.fi/linux/
6110 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6111 T:      git git://linuxtv.org/anttip/media_tree.git
6112 F:      drivers/media/usb/dvb-usb-v2/anysee*
6113
6114 DVB_USB_AU6610 MEDIA DRIVER
6115 M:      Antti Palosaari <crope@iki.fi>
6116 L:      linux-media@vger.kernel.org
6117 S:      Maintained
6118 W:      https://linuxtv.org
6119 W:      http://palosaari.fi/linux/
6120 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6121 T:      git git://linuxtv.org/anttip/media_tree.git
6122 F:      drivers/media/usb/dvb-usb-v2/au6610*
6123
6124 DVB_USB_CE6230 MEDIA DRIVER
6125 M:      Antti Palosaari <crope@iki.fi>
6126 L:      linux-media@vger.kernel.org
6127 S:      Maintained
6128 W:      https://linuxtv.org
6129 W:      http://palosaari.fi/linux/
6130 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6131 T:      git git://linuxtv.org/anttip/media_tree.git
6132 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6133
6134 DVB_USB_CXUSB MEDIA DRIVER
6135 M:      Michael Krufky <mkrufky@linuxtv.org>
6136 L:      linux-media@vger.kernel.org
6137 S:      Maintained
6138 W:      https://linuxtv.org
6139 W:      http://github.com/mkrufky
6140 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6141 T:      git git://linuxtv.org/media_tree.git
6142 F:      drivers/media/usb/dvb-usb/cxusb*
6143
6144 DVB_USB_EC168 MEDIA DRIVER
6145 M:      Antti Palosaari <crope@iki.fi>
6146 L:      linux-media@vger.kernel.org
6147 S:      Maintained
6148 W:      https://linuxtv.org
6149 W:      http://palosaari.fi/linux/
6150 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6151 T:      git git://linuxtv.org/anttip/media_tree.git
6152 F:      drivers/media/usb/dvb-usb-v2/ec168*
6153
6154 DVB_USB_GL861 MEDIA DRIVER
6155 M:      Antti Palosaari <crope@iki.fi>
6156 L:      linux-media@vger.kernel.org
6157 S:      Maintained
6158 W:      https://linuxtv.org
6159 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6160 T:      git git://linuxtv.org/anttip/media_tree.git
6161 F:      drivers/media/usb/dvb-usb-v2/gl861*
6162
6163 DVB_USB_MXL111SF MEDIA DRIVER
6164 M:      Michael Krufky <mkrufky@linuxtv.org>
6165 L:      linux-media@vger.kernel.org
6166 S:      Maintained
6167 W:      https://linuxtv.org
6168 W:      http://github.com/mkrufky
6169 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6170 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6171 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6172
6173 DVB_USB_RTL28XXU MEDIA DRIVER
6174 M:      Antti Palosaari <crope@iki.fi>
6175 L:      linux-media@vger.kernel.org
6176 S:      Maintained
6177 W:      https://linuxtv.org
6178 W:      http://palosaari.fi/linux/
6179 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6180 T:      git git://linuxtv.org/anttip/media_tree.git
6181 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6182
6183 DVB_USB_V2 MEDIA DRIVER
6184 M:      Antti Palosaari <crope@iki.fi>
6185 L:      linux-media@vger.kernel.org
6186 S:      Maintained
6187 W:      https://linuxtv.org
6188 W:      http://palosaari.fi/linux/
6189 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6190 T:      git git://linuxtv.org/anttip/media_tree.git
6191 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6192 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6193
6194 DYNAMIC DEBUG
6195 M:      Jason Baron <jbaron@akamai.com>
6196 S:      Maintained
6197 F:      include/linux/dynamic_debug.h
6198 F:      lib/dynamic_debug.c
6199
6200 DYNAMIC INTERRUPT MODERATION
6201 M:      Tal Gilboa <talgi@nvidia.com>
6202 S:      Maintained
6203 F:      Documentation/networking/net_dim.rst
6204 F:      include/linux/dim.h
6205 F:      lib/dim/
6206
6207 DZ DECSTATION DZ11 SERIAL DRIVER
6208 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
6209 S:      Maintained
6210 F:      drivers/tty/serial/dz.*
6211
6212 E3X0 POWER BUTTON DRIVER
6213 M:      Moritz Fischer <moritz.fischer@ettus.com>
6214 L:      usrp-users@lists.ettus.com
6215 S:      Supported
6216 W:      http://www.ettus.com
6217 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6218 F:      drivers/input/misc/e3x0-button.c
6219
6220 E4000 MEDIA DRIVER
6221 M:      Antti Palosaari <crope@iki.fi>
6222 L:      linux-media@vger.kernel.org
6223 S:      Maintained
6224 W:      https://linuxtv.org
6225 W:      http://palosaari.fi/linux/
6226 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6227 T:      git git://linuxtv.org/anttip/media_tree.git
6228 F:      drivers/media/tuners/e4000*
6229
6230 EARTH_PT1 MEDIA DRIVER
6231 M:      Akihiro Tsukada <tskd08@gmail.com>
6232 L:      linux-media@vger.kernel.org
6233 S:      Odd Fixes
6234 F:      drivers/media/pci/pt1/
6235
6236 EARTH_PT3 MEDIA DRIVER
6237 M:      Akihiro Tsukada <tskd08@gmail.com>
6238 L:      linux-media@vger.kernel.org
6239 S:      Odd Fixes
6240 F:      drivers/media/pci/pt3/
6241
6242 EC100 MEDIA DRIVER
6243 M:      Antti Palosaari <crope@iki.fi>
6244 L:      linux-media@vger.kernel.org
6245 S:      Maintained
6246 W:      https://linuxtv.org
6247 W:      http://palosaari.fi/linux/
6248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6249 T:      git git://linuxtv.org/anttip/media_tree.git
6250 F:      drivers/media/dvb-frontends/ec100*
6251
6252 ECRYPT FILE SYSTEM
6253 M:      Tyler Hicks <code@tyhicks.com>
6254 L:      ecryptfs@vger.kernel.org
6255 S:      Odd Fixes
6256 W:      http://ecryptfs.org
6257 W:      https://launchpad.net/ecryptfs
6258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6259 F:      Documentation/filesystems/ecryptfs.rst
6260 F:      fs/ecryptfs/
6261
6262 EDAC-AMD64
6263 M:      Borislav Petkov <bp@alien8.de>
6264 L:      linux-edac@vger.kernel.org
6265 S:      Maintained
6266 F:      drivers/edac/amd64_edac*
6267
6268 EDAC-ARMADA
6269 M:      Jan Luebbe <jlu@pengutronix.de>
6270 L:      linux-edac@vger.kernel.org
6271 S:      Maintained
6272 F:      drivers/edac/armada_xp_*
6273
6274 EDAC-AST2500
6275 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6276 S:      Supported
6277 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6278 F:      drivers/edac/aspeed_edac.c
6279
6280 EDAC-BLUEFIELD
6281 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6282 S:      Supported
6283 F:      drivers/edac/bluefield_edac.c
6284
6285 EDAC-CALXEDA
6286 M:      Andre Przywara <andre.przywara@arm.com>
6287 L:      linux-edac@vger.kernel.org
6288 S:      Maintained
6289 F:      drivers/edac/highbank*
6290
6291 EDAC-CAVIUM OCTEON
6292 M:      Ralf Baechle <ralf@linux-mips.org>
6293 L:      linux-edac@vger.kernel.org
6294 L:      linux-mips@vger.kernel.org
6295 S:      Supported
6296 F:      drivers/edac/octeon_edac*
6297
6298 EDAC-CAVIUM THUNDERX
6299 M:      Robert Richter <rric@kernel.org>
6300 L:      linux-edac@vger.kernel.org
6301 S:      Odd Fixes
6302 F:      drivers/edac/thunderx_edac*
6303
6304 EDAC-CORE
6305 M:      Borislav Petkov <bp@alien8.de>
6306 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6307 M:      Tony Luck <tony.luck@intel.com>
6308 R:      James Morse <james.morse@arm.com>
6309 R:      Robert Richter <rric@kernel.org>
6310 L:      linux-edac@vger.kernel.org
6311 S:      Supported
6312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6313 F:      Documentation/admin-guide/ras.rst
6314 F:      Documentation/driver-api/edac.rst
6315 F:      drivers/edac/
6316 F:      include/linux/edac.h
6317
6318 EDAC-DMC520
6319 M:      Lei Wang <lewan@microsoft.com>
6320 L:      linux-edac@vger.kernel.org
6321 S:      Supported
6322 F:      drivers/edac/dmc520_edac.c
6323
6324 EDAC-E752X
6325 M:      Mark Gross <mark.gross@intel.com>
6326 L:      linux-edac@vger.kernel.org
6327 S:      Maintained
6328 F:      drivers/edac/e752x_edac.c
6329
6330 EDAC-E7XXX
6331 L:      linux-edac@vger.kernel.org
6332 S:      Maintained
6333 F:      drivers/edac/e7xxx_edac.c
6334
6335 EDAC-FSL_DDR
6336 M:      York Sun <york.sun@nxp.com>
6337 L:      linux-edac@vger.kernel.org
6338 S:      Maintained
6339 F:      drivers/edac/fsl_ddr_edac.*
6340
6341 EDAC-GHES
6342 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6343 L:      linux-edac@vger.kernel.org
6344 S:      Maintained
6345 F:      drivers/edac/ghes_edac.c
6346
6347 EDAC-I10NM
6348 M:      Tony Luck <tony.luck@intel.com>
6349 L:      linux-edac@vger.kernel.org
6350 S:      Maintained
6351 F:      drivers/edac/i10nm_base.c
6352
6353 EDAC-I3000
6354 L:      linux-edac@vger.kernel.org
6355 S:      Orphan
6356 F:      drivers/edac/i3000_edac.c
6357
6358 EDAC-I5000
6359 L:      linux-edac@vger.kernel.org
6360 S:      Maintained
6361 F:      drivers/edac/i5000_edac.c
6362
6363 EDAC-I5400
6364 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6365 L:      linux-edac@vger.kernel.org
6366 S:      Maintained
6367 F:      drivers/edac/i5400_edac.c
6368
6369 EDAC-I7300
6370 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6371 L:      linux-edac@vger.kernel.org
6372 S:      Maintained
6373 F:      drivers/edac/i7300_edac.c
6374
6375 EDAC-I7CORE
6376 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6377 L:      linux-edac@vger.kernel.org
6378 S:      Maintained
6379 F:      drivers/edac/i7core_edac.c
6380
6381 EDAC-I82443BXGX
6382 M:      Tim Small <tim@buttersideup.com>
6383 L:      linux-edac@vger.kernel.org
6384 S:      Maintained
6385 F:      drivers/edac/i82443bxgx_edac.c
6386
6387 EDAC-I82975X
6388 M:      "Arvind R." <arvino55@gmail.com>
6389 L:      linux-edac@vger.kernel.org
6390 S:      Maintained
6391 F:      drivers/edac/i82975x_edac.c
6392
6393 EDAC-IE31200
6394 M:      Jason Baron <jbaron@akamai.com>
6395 L:      linux-edac@vger.kernel.org
6396 S:      Maintained
6397 F:      drivers/edac/ie31200_edac.c
6398
6399 EDAC-IGEN6
6400 M:      Tony Luck <tony.luck@intel.com>
6401 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6402 L:      linux-edac@vger.kernel.org
6403 S:      Maintained
6404 F:      drivers/edac/igen6_edac.c
6405
6406 EDAC-MPC85XX
6407 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6408 L:      linux-edac@vger.kernel.org
6409 S:      Maintained
6410 F:      drivers/edac/mpc85xx_edac.[ch]
6411
6412 EDAC-PASEMI
6413 M:      Egor Martovetsky <egor@pasemi.com>
6414 L:      linux-edac@vger.kernel.org
6415 S:      Maintained
6416 F:      drivers/edac/pasemi_edac.c
6417
6418 EDAC-PND2
6419 M:      Tony Luck <tony.luck@intel.com>
6420 L:      linux-edac@vger.kernel.org
6421 S:      Maintained
6422 F:      drivers/edac/pnd2_edac.[ch]
6423
6424 EDAC-QCOM
6425 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6426 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6427 L:      linux-arm-msm@vger.kernel.org
6428 L:      linux-edac@vger.kernel.org
6429 S:      Maintained
6430 F:      drivers/edac/qcom_edac.c
6431
6432 EDAC-R82600
6433 M:      Tim Small <tim@buttersideup.com>
6434 L:      linux-edac@vger.kernel.org
6435 S:      Maintained
6436 F:      drivers/edac/r82600_edac.c
6437
6438 EDAC-SBRIDGE
6439 M:      Tony Luck <tony.luck@intel.com>
6440 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6441 L:      linux-edac@vger.kernel.org
6442 S:      Maintained
6443 F:      drivers/edac/sb_edac.c
6444
6445 EDAC-SIFIVE
6446 M:      Yash Shah <yash.shah@sifive.com>
6447 L:      linux-edac@vger.kernel.org
6448 S:      Supported
6449 F:      drivers/edac/sifive_edac.c
6450
6451 EDAC-SKYLAKE
6452 M:      Tony Luck <tony.luck@intel.com>
6453 L:      linux-edac@vger.kernel.org
6454 S:      Maintained
6455 F:      drivers/edac/skx_*.[ch]
6456
6457 EDAC-TI
6458 M:      Tero Kristo <t-kristo@ti.com>
6459 L:      linux-edac@vger.kernel.org
6460 S:      Maintained
6461 F:      drivers/edac/ti_edac.c
6462
6463 EDIROL UA-101/UA-1000 DRIVER
6464 M:      Clemens Ladisch <clemens@ladisch.de>
6465 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6466 S:      Maintained
6467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6468 F:      sound/usb/misc/ua101.c
6469
6470 EFI TEST DRIVER
6471 M:      Ivan Hu <ivan.hu@canonical.com>
6472 M:      Ard Biesheuvel <ardb@kernel.org>
6473 L:      linux-efi@vger.kernel.org
6474 S:      Maintained
6475 F:      drivers/firmware/efi/test/
6476
6477 EFI VARIABLE FILESYSTEM
6478 M:      Matthew Garrett <matthew.garrett@nebula.com>
6479 M:      Jeremy Kerr <jk@ozlabs.org>
6480 M:      Ard Biesheuvel <ardb@kernel.org>
6481 L:      linux-efi@vger.kernel.org
6482 S:      Maintained
6483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6484 F:      fs/efivarfs/
6485
6486 EFIFB FRAMEBUFFER DRIVER
6487 M:      Peter Jones <pjones@redhat.com>
6488 L:      linux-fbdev@vger.kernel.org
6489 S:      Maintained
6490 F:      drivers/video/fbdev/efifb.c
6491
6492 EFS FILESYSTEM
6493 S:      Orphan
6494 W:      http://aeschi.ch.eu.org/efs/
6495 F:      fs/efs/
6496
6497 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6498 M:      Douglas Miller <dougmill@linux.ibm.com>
6499 L:      netdev@vger.kernel.org
6500 S:      Maintained
6501 F:      drivers/net/ethernet/ibm/ehea/
6502
6503 EM28XX VIDEO4LINUX DRIVER
6504 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6505 L:      linux-media@vger.kernel.org
6506 S:      Maintained
6507 W:      https://linuxtv.org
6508 T:      git git://linuxtv.org/media_tree.git
6509 F:      Documentation/admin-guide/media/em28xx*
6510 F:      drivers/media/usb/em28xx/
6511
6512 EMBEDDED LINUX
6513 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6514 M:      Matt Mackall <mpm@selenic.com>
6515 M:      David Woodhouse <dwmw2@infradead.org>
6516 L:      linux-embedded@vger.kernel.org
6517 S:      Maintained
6518
6519 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6520 M:      Adrian Hunter <adrian.hunter@intel.com>
6521 M:      Ritesh Harjani <riteshh@codeaurora.org>
6522 M:      Asutosh Das <asutoshd@codeaurora.org>
6523 L:      linux-mmc@vger.kernel.org
6524 S:      Maintained
6525 F:      drivers/mmc/host/cqhci*
6526
6527 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6528 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6529 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6530 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6531 L:      linux-scsi@vger.kernel.org
6532 S:      Supported
6533 W:      http://www.broadcom.com
6534 F:      drivers/scsi/be2iscsi/
6535
6536 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6537 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6538 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6539 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6540 L:      netdev@vger.kernel.org
6541 S:      Supported
6542 W:      http://www.emulex.com
6543 F:      drivers/net/ethernet/emulex/benet/
6544
6545 EMULEX ONECONNECT ROCE DRIVER
6546 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6547 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6548 L:      linux-rdma@vger.kernel.org
6549 S:      Odd Fixes
6550 W:      http://www.broadcom.com
6551 F:      drivers/infiniband/hw/ocrdma/
6552 F:      include/uapi/rdma/ocrdma-abi.h
6553
6554 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6555 M:      James Smart <james.smart@broadcom.com>
6556 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6557 L:      linux-scsi@vger.kernel.org
6558 S:      Supported
6559 W:      http://www.broadcom.com
6560 F:      drivers/scsi/lpfc/
6561
6562 ENE CB710 FLASH CARD READER DRIVER
6563 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6564 S:      Maintained
6565 F:      drivers/misc/cb710/
6566 F:      drivers/mmc/host/cb710-mmc.*
6567 F:      include/linux/cb710.h
6568
6569 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6570 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6571 S:      Maintained
6572 F:      drivers/media/rc/ene_ir.*
6573
6574 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6575 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6576 L:      linuxppc-dev@lists.ozlabs.org
6577 S:      Maintained
6578 F:      drivers/tty/ehv_bytechan.c
6579
6580 EPSON S1D13XXX FRAMEBUFFER DRIVER
6581 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6582 S:      Maintained
6583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6584 F:      drivers/video/fbdev/s1d13xxxfb.c
6585 F:      include/video/s1d13xxxfb.h
6586
6587 EROFS FILE SYSTEM
6588 M:      Gao Xiang <xiang@kernel.org>
6589 M:      Chao Yu <yuchao0@huawei.com>
6590 L:      linux-erofs@lists.ozlabs.org
6591 S:      Maintained
6592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6593 F:      Documentation/filesystems/erofs.rst
6594 F:      fs/erofs/
6595 F:      include/trace/events/erofs.h
6596
6597 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6598 M:      Jeff Layton <jlayton@kernel.org>
6599 S:      Maintained
6600 F:      include/linux/errseq.h
6601 F:      lib/errseq.c
6602
6603 ET131X NETWORK DRIVER
6604 M:      Mark Einon <mark.einon@gmail.com>
6605 S:      Odd Fixes
6606 F:      drivers/net/ethernet/agere/
6607
6608 ETHERNET BRIDGE
6609 M:      Roopa Prabhu <roopa@nvidia.com>
6610 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
6611 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6612 L:      netdev@vger.kernel.org
6613 S:      Maintained
6614 W:      http://www.linuxfoundation.org/en/Net:Bridge
6615 F:      include/linux/netfilter_bridge/
6616 F:      net/bridge/
6617
6618 ETHERNET PHY LIBRARY
6619 M:      Andrew Lunn <andrew@lunn.ch>
6620 M:      Heiner Kallweit <hkallweit1@gmail.com>
6621 R:      Russell King <linux@armlinux.org.uk>
6622 L:      netdev@vger.kernel.org
6623 S:      Maintained
6624 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6625 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6626 F:      Documentation/devicetree/bindings/net/mdio*
6627 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6628 F:      Documentation/networking/phy.rst
6629 F:      drivers/net/mdio/
6630 F:      drivers/net/mdio/of_mdio.c
6631 F:      drivers/net/pcs/
6632 F:      drivers/net/phy/
6633 F:      drivers/of/of_net.c
6634 F:      include/dt-bindings/net/qca-ar803x.h
6635 F:      include/linux/*mdio*.h
6636 F:      include/linux/mdio/*.h
6637 F:      include/linux/of_net.h
6638 F:      include/linux/phy.h
6639 F:      include/linux/phy_fixed.h
6640 F:      include/linux/platform_data/mdio-bcm-unimac.h
6641 F:      include/linux/platform_data/mdio-gpio.h
6642 F:      include/trace/events/mdio.h
6643 F:      include/uapi/linux/mdio.h
6644 F:      include/uapi/linux/mii.h
6645
6646 EXFAT FILE SYSTEM
6647 M:      Namjae Jeon <namjae.jeon@samsung.com>
6648 M:      Sungjong Seo <sj1557.seo@samsung.com>
6649 L:      linux-fsdevel@vger.kernel.org
6650 S:      Maintained
6651 F:      fs/exfat/
6652
6653 EXT2 FILE SYSTEM
6654 M:      Jan Kara <jack@suse.com>
6655 L:      linux-ext4@vger.kernel.org
6656 S:      Maintained
6657 F:      Documentation/filesystems/ext2.rst
6658 F:      fs/ext2/
6659 F:      include/linux/ext2*
6660
6661 EXT4 FILE SYSTEM
6662 M:      "Theodore Ts'o" <tytso@mit.edu>
6663 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6664 L:      linux-ext4@vger.kernel.org
6665 S:      Maintained
6666 W:      http://ext4.wiki.kernel.org
6667 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6669 F:      Documentation/filesystems/ext4/
6670 F:      fs/ext4/
6671 F:      include/trace/events/ext4.h
6672
6673 Extended Verification Module (EVM)
6674 M:      Mimi Zohar <zohar@linux.ibm.com>
6675 L:      linux-integrity@vger.kernel.org
6676 S:      Supported
6677 F:      security/integrity/evm/
6678
6679 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6680 M:      Ard Biesheuvel <ardb@kernel.org>
6681 L:      linux-efi@vger.kernel.org
6682 S:      Maintained
6683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6684 F:      Documentation/admin-guide/efi-stub.rst
6685 F:      arch/*/include/asm/efi.h
6686 F:      arch/*/kernel/efi.c
6687 F:      arch/arm/boot/compressed/efi-header.S
6688 F:      arch/arm64/kernel/efi-entry.S
6689 F:      arch/x86/platform/efi/
6690 F:      drivers/firmware/efi/
6691 F:      include/linux/efi*.h
6692
6693 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6694 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6695 M:      Chanwoo Choi <cw00.choi@samsung.com>
6696 L:      linux-kernel@vger.kernel.org
6697 S:      Maintained
6698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6699 F:      Documentation/devicetree/bindings/extcon/
6700 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6701 F:      drivers/extcon/
6702 F:      include/linux/extcon.h
6703 F:      include/linux/extcon/
6704
6705 EXTRA BOOT CONFIG
6706 M:      Masami Hiramatsu <mhiramat@kernel.org>
6707 S:      Maintained
6708 F:      Documentation/admin-guide/bootconfig.rst
6709 F:      fs/proc/bootconfig.c
6710 F:      include/linux/bootconfig.h
6711 F:      lib/bootconfig.c
6712 F:      tools/bootconfig/*
6713 F:      tools/bootconfig/scripts/*
6714
6715 EXYNOS DP DRIVER
6716 M:      Jingoo Han <jingoohan1@gmail.com>
6717 L:      dri-devel@lists.freedesktop.org
6718 S:      Maintained
6719 F:      drivers/gpu/drm/exynos/exynos_dp*
6720
6721 EXYNOS SYSMMU (IOMMU) driver
6722 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6723 L:      iommu@lists.linux-foundation.org
6724 S:      Maintained
6725 F:      drivers/iommu/exynos-iommu.c
6726
6727 F2FS FILE SYSTEM
6728 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6729 M:      Chao Yu <yuchao0@huawei.com>
6730 L:      linux-f2fs-devel@lists.sourceforge.net
6731 S:      Maintained
6732 W:      https://f2fs.wiki.kernel.org/
6733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6734 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6735 F:      Documentation/filesystems/f2fs.rst
6736 F:      fs/f2fs/
6737 F:      include/linux/f2fs_fs.h
6738 F:      include/trace/events/f2fs.h
6739
6740 F71805F HARDWARE MONITORING DRIVER
6741 M:      Jean Delvare <jdelvare@suse.com>
6742 L:      linux-hwmon@vger.kernel.org
6743 S:      Maintained
6744 F:      Documentation/hwmon/f71805f.rst
6745 F:      drivers/hwmon/f71805f.c
6746
6747 FADDR2LINE
6748 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6749 S:      Maintained
6750 F:      scripts/faddr2line
6751
6752 FAILOVER MODULE
6753 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6754 L:      netdev@vger.kernel.org
6755 S:      Supported
6756 F:      Documentation/networking/failover.rst
6757 F:      include/net/failover.h
6758 F:      net/core/failover.c
6759
6760 FANOTIFY
6761 M:      Jan Kara <jack@suse.cz>
6762 R:      Amir Goldstein <amir73il@gmail.com>
6763 L:      linux-fsdevel@vger.kernel.org
6764 S:      Maintained
6765 F:      fs/notify/fanotify/
6766 F:      include/linux/fanotify.h
6767 F:      include/uapi/linux/fanotify.h
6768
6769 FARSYNC SYNCHRONOUS DRIVER
6770 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6771 S:      Supported
6772 W:      http://www.farsite.co.uk/
6773 F:      drivers/net/wan/farsync.*
6774
6775 FAULT INJECTION SUPPORT
6776 M:      Akinobu Mita <akinobu.mita@gmail.com>
6777 S:      Supported
6778 F:      Documentation/fault-injection/
6779 F:      lib/fault-inject.c
6780
6781 FBTFT Framebuffer drivers
6782 L:      dri-devel@lists.freedesktop.org
6783 L:      linux-fbdev@vger.kernel.org
6784 S:      Orphan
6785 F:      drivers/staging/fbtft/
6786
6787 FC0011 TUNER DRIVER
6788 M:      Michael Buesch <m@bues.ch>
6789 L:      linux-media@vger.kernel.org
6790 S:      Maintained
6791 F:      drivers/media/tuners/fc0011.c
6792 F:      drivers/media/tuners/fc0011.h
6793
6794 FC2580 MEDIA DRIVER
6795 M:      Antti Palosaari <crope@iki.fi>
6796 L:      linux-media@vger.kernel.org
6797 S:      Maintained
6798 W:      https://linuxtv.org
6799 W:      http://palosaari.fi/linux/
6800 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6801 T:      git git://linuxtv.org/anttip/media_tree.git
6802 F:      drivers/media/tuners/fc2580*
6803
6804 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6805 M:      Hannes Reinecke <hare@suse.de>
6806 L:      linux-scsi@vger.kernel.org
6807 S:      Supported
6808 W:      www.Open-FCoE.org
6809 F:      drivers/scsi/fcoe/
6810 F:      drivers/scsi/libfc/
6811 F:      include/scsi/fc/
6812 F:      include/scsi/libfc.h
6813 F:      include/scsi/libfcoe.h
6814 F:      include/uapi/scsi/fc/
6815
6816 FILE LOCKING (flock() and fcntl()/lockf())
6817 M:      Jeff Layton <jlayton@kernel.org>
6818 M:      "J. Bruce Fields" <bfields@fieldses.org>
6819 L:      linux-fsdevel@vger.kernel.org
6820 S:      Maintained
6821 F:      fs/fcntl.c
6822 F:      fs/locks.c
6823 F:      include/linux/fcntl.h
6824 F:      include/uapi/linux/fcntl.h
6825
6826 FILESYSTEM DIRECT ACCESS (DAX)
6827 M:      Dan Williams <dan.j.williams@intel.com>
6828 R:      Matthew Wilcox <willy@infradead.org>
6829 R:      Jan Kara <jack@suse.cz>
6830 L:      linux-fsdevel@vger.kernel.org
6831 L:      linux-nvdimm@lists.01.org
6832 S:      Supported
6833 F:      fs/dax.c
6834 F:      include/linux/dax.h
6835 F:      include/trace/events/fs_dax.h
6836
6837 FILESYSTEMS (VFS and infrastructure)
6838 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6839 L:      linux-fsdevel@vger.kernel.org
6840 S:      Maintained
6841 F:      fs/*
6842 F:      include/linux/fs.h
6843 F:      include/linux/fs_types.h
6844 F:      include/uapi/linux/fs.h
6845 F:      include/uapi/linux/openat2.h
6846
6847 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6848 M:      Riku Voipio <riku.voipio@iki.fi>
6849 L:      linux-hwmon@vger.kernel.org
6850 S:      Maintained
6851 F:      drivers/hwmon/f75375s.c
6852 F:      include/linux/f75375s.h
6853
6854 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6855 M:      Clemens Ladisch <clemens@ladisch.de>
6856 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
6857 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6858 S:      Maintained
6859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6860 F:      include/uapi/sound/firewire.h
6861 F:      sound/firewire/
6862
6863 FIREWIRE MEDIA DRIVERS (firedtv)
6864 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6865 L:      linux-media@vger.kernel.org
6866 L:      linux1394-devel@lists.sourceforge.net
6867 S:      Maintained
6868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6869 F:      drivers/media/firewire/
6870
6871 FIREWIRE SBP-2 TARGET
6872 M:      Chris Boot <bootc@bootc.net>
6873 L:      linux-scsi@vger.kernel.org
6874 L:      target-devel@vger.kernel.org
6875 L:      linux1394-devel@lists.sourceforge.net
6876 S:      Maintained
6877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6878 F:      drivers/target/sbp/
6879
6880 FIREWIRE SUBSYSTEM
6881 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6882 L:      linux1394-devel@lists.sourceforge.net
6883 S:      Maintained
6884 W:      http://ieee1394.wiki.kernel.org/
6885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6886 F:      drivers/firewire/
6887 F:      include/linux/firewire.h
6888 F:      include/uapi/linux/firewire*.h
6889 F:      tools/firewire/
6890
6891 FIRMWARE LOADER (request_firmware)
6892 M:      Luis Chamberlain <mcgrof@kernel.org>
6893 L:      linux-kernel@vger.kernel.org
6894 S:      Maintained
6895 F:      Documentation/firmware_class/
6896 F:      drivers/base/firmware_loader/
6897 F:      include/linux/firmware.h
6898
6899 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6900 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6901 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6902 S:      Maintained
6903 F:      drivers/block/rsxx/
6904
6905 FLEXTIMER FTM-QUADDEC DRIVER
6906 M:      Patrick Havelange <patrick.havelange@essensium.com>
6907 L:      linux-iio@vger.kernel.org
6908 S:      Maintained
6909 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6910 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6911 F:      drivers/counter/ftm-quaddec.c
6912
6913 FLOPPY DRIVER
6914 M:      Denis Efremov <efremov@linux.com>
6915 L:      linux-block@vger.kernel.org
6916 S:      Odd Fixes
6917 F:      drivers/block/floppy.c
6918
6919 FLYSKY FSIA6B RC RECEIVER
6920 M:      Markus Koch <markus@notsyncing.net>
6921 L:      linux-input@vger.kernel.org
6922 S:      Maintained
6923 F:      drivers/input/joystick/fsia6b.c
6924
6925 FORCEDETH GIGABIT ETHERNET DRIVER
6926 M:      Rain River <rain.1986.08.12@gmail.com>
6927 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
6928 L:      netdev@vger.kernel.org
6929 S:      Maintained
6930 F:      drivers/net/ethernet/nvidia/*
6931
6932 FPGA DFL DRIVERS
6933 M:      Wu Hao <hao.wu@intel.com>
6934 R:      Tom Rix <trix@redhat.com>
6935 L:      linux-fpga@vger.kernel.org
6936 S:      Maintained
6937 F:      Documentation/ABI/testing/sysfs-bus-dfl
6938 F:      Documentation/fpga/dfl.rst
6939 F:      drivers/fpga/dfl*
6940 F:      include/uapi/linux/fpga-dfl.h
6941
6942 FPGA MANAGER FRAMEWORK
6943 M:      Moritz Fischer <mdf@kernel.org>
6944 R:      Tom Rix <trix@redhat.com>
6945 L:      linux-fpga@vger.kernel.org
6946 S:      Maintained
6947 W:      http://www.rocketboards.org
6948 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6950 F:      Documentation/devicetree/bindings/fpga/
6951 F:      Documentation/driver-api/fpga/
6952 F:      Documentation/fpga/
6953 F:      drivers/fpga/
6954 F:      include/linux/fpga/
6955
6956 FPU EMULATOR
6957 M:      Bill Metzenthen <billm@melbpc.org.au>
6958 S:      Maintained
6959 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6960 F:      arch/x86/math-emu/
6961
6962 FRAMEBUFFER LAYER
6963 L:      dri-devel@lists.freedesktop.org
6964 L:      linux-fbdev@vger.kernel.org
6965 S:      Orphan
6966 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6967 T:      git git://anongit.freedesktop.org/drm/drm-misc
6968 F:      Documentation/fb/
6969 F:      drivers/video/
6970 F:      include/linux/fb.h
6971 F:      include/uapi/linux/fb.h
6972 F:      include/uapi/video/
6973 F:      include/video/
6974
6975 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6976 M:      Horia Geantă <horia.geanta@nxp.com>
6977 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6978 L:      linux-crypto@vger.kernel.org
6979 S:      Maintained
6980 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6981 F:      drivers/crypto/caam/
6982
6983 FREESCALE COLDFIRE M5441X MMC DRIVER
6984 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
6985 L:      linux-mmc@vger.kernel.org
6986 S:      Maintained
6987 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
6988 F:      include/linux/platform_data/mmc-esdhc-mcf.h
6989
6990 FREESCALE DIU FRAMEBUFFER DRIVER
6991 M:      Timur Tabi <timur@kernel.org>
6992 L:      linux-fbdev@vger.kernel.org
6993 S:      Maintained
6994 F:      drivers/video/fbdev/fsl-diu-fb.*
6995
6996 FREESCALE DMA DRIVER
6997 M:      Li Yang <leoyang.li@nxp.com>
6998 M:      Zhang Wei <zw@zh-kernel.org>
6999 L:      linuxppc-dev@lists.ozlabs.org
7000 S:      Maintained
7001 F:      drivers/dma/fsldma.*
7002
7003 FREESCALE DSPI DRIVER
7004 M:      Vladimir Oltean <olteanv@gmail.com>
7005 L:      linux-spi@vger.kernel.org
7006 S:      Maintained
7007 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7008 F:      drivers/spi/spi-fsl-dspi.c
7009 F:      include/linux/spi/spi-fsl-dspi.h
7010
7011 FREESCALE ENETC ETHERNET DRIVERS
7012 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7013 L:      netdev@vger.kernel.org
7014 S:      Maintained
7015 F:      drivers/net/ethernet/freescale/enetc/
7016
7017 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7018 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7019 L:      netdev@vger.kernel.org
7020 S:      Maintained
7021 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7022 F:      drivers/net/ethernet/freescale/gianfar*
7023
7024 FREESCALE GPMI NAND DRIVER
7025 M:      Han Xu <han.xu@nxp.com>
7026 L:      linux-mtd@lists.infradead.org
7027 S:      Maintained
7028 F:      drivers/mtd/nand/raw/gpmi-nand/*
7029
7030 FREESCALE I2C CPM DRIVER
7031 M:      Jochen Friedrich <jochen@scram.de>
7032 L:      linuxppc-dev@lists.ozlabs.org
7033 L:      linux-i2c@vger.kernel.org
7034 S:      Maintained
7035 F:      drivers/i2c/busses/i2c-cpm.c
7036
7037 FREESCALE IMX / MXC FEC DRIVER
7038 M:      Fugang Duan <fugang.duan@nxp.com>
7039 L:      netdev@vger.kernel.org
7040 S:      Maintained
7041 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
7042 F:      drivers/net/ethernet/freescale/fec.h
7043 F:      drivers/net/ethernet/freescale/fec_main.c
7044 F:      drivers/net/ethernet/freescale/fec_ptp.c
7045
7046 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7047 M:      Sascha Hauer <s.hauer@pengutronix.de>
7048 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7049 L:      linux-fbdev@vger.kernel.org
7050 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7051 S:      Maintained
7052 F:      drivers/video/fbdev/imxfb.c
7053 F:      include/linux/platform_data/video-imxfb.h
7054
7055 FREESCALE IMX DDR PMU DRIVER
7056 M:      Frank Li <Frank.li@nxp.com>
7057 L:      linux-arm-kernel@lists.infradead.org
7058 S:      Maintained
7059 F:      Documentation/admin-guide/perf/imx-ddr.rst
7060 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7061 F:      drivers/perf/fsl_imx8_ddr_perf.c
7062
7063 FREESCALE IMX I2C DRIVER
7064 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7065 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7066 L:      linux-i2c@vger.kernel.org
7067 S:      Maintained
7068 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7069 F:      drivers/i2c/busses/i2c-imx.c
7070
7071 FREESCALE IMX LPI2C DRIVER
7072 M:      Dong Aisheng <aisheng.dong@nxp.com>
7073 L:      linux-i2c@vger.kernel.org
7074 L:      linux-imx@nxp.com
7075 S:      Maintained
7076 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7077 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7078
7079 FREESCALE QORIQ DPAA ETHERNET DRIVER
7080 M:      Madalin Bucur <madalin.bucur@nxp.com>
7081 L:      netdev@vger.kernel.org
7082 S:      Maintained
7083 F:      drivers/net/ethernet/freescale/dpaa
7084
7085 FREESCALE QORIQ DPAA FMAN DRIVER
7086 M:      Madalin Bucur <madalin.bucur@nxp.com>
7087 L:      netdev@vger.kernel.org
7088 S:      Maintained
7089 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7090 F:      drivers/net/ethernet/freescale/fman
7091
7092 FREESCALE QORIQ PTP CLOCK DRIVER
7093 M:      Yangbo Lu <yangbo.lu@nxp.com>
7094 L:      netdev@vger.kernel.org
7095 S:      Maintained
7096 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7097 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7098 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7099 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7100 F:      drivers/ptp/ptp_qoriq.c
7101 F:      drivers/ptp/ptp_qoriq_debugfs.c
7102 F:      include/linux/fsl/ptp_qoriq.h
7103
7104 FREESCALE QUAD SPI DRIVER
7105 M:      Han Xu <han.xu@nxp.com>
7106 L:      linux-spi@vger.kernel.org
7107 S:      Maintained
7108 F:      drivers/spi/spi-fsl-qspi.c
7109
7110 FREESCALE QUICC ENGINE LIBRARY
7111 M:      Qiang Zhao <qiang.zhao@nxp.com>
7112 L:      linuxppc-dev@lists.ozlabs.org
7113 S:      Maintained
7114 F:      drivers/soc/fsl/qe/
7115 F:      include/soc/fsl/*qe*.h
7116 F:      include/soc/fsl/*ucc*.h
7117
7118 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7119 M:      Li Yang <leoyang.li@nxp.com>
7120 L:      netdev@vger.kernel.org
7121 L:      linuxppc-dev@lists.ozlabs.org
7122 S:      Maintained
7123 F:      drivers/net/ethernet/freescale/ucc_geth*
7124
7125 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7126 M:      Zhao Qiang <qiang.zhao@nxp.com>
7127 L:      netdev@vger.kernel.org
7128 L:      linuxppc-dev@lists.ozlabs.org
7129 S:      Maintained
7130 F:      drivers/net/wan/fsl_ucc_hdlc*
7131
7132 FREESCALE QUICC ENGINE UCC UART DRIVER
7133 M:      Timur Tabi <timur@kernel.org>
7134 L:      linuxppc-dev@lists.ozlabs.org
7135 S:      Maintained
7136 F:      drivers/tty/serial/ucc_uart.c
7137
7138 FREESCALE SOC DRIVERS
7139 M:      Li Yang <leoyang.li@nxp.com>
7140 L:      linuxppc-dev@lists.ozlabs.org
7141 L:      linux-arm-kernel@lists.infradead.org
7142 S:      Maintained
7143 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
7144 F:      Documentation/devicetree/bindings/soc/fsl/
7145 F:      drivers/soc/fsl/
7146 F:      include/linux/fsl/
7147
7148 FREESCALE SOC FS_ENET DRIVER
7149 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7150 L:      linuxppc-dev@lists.ozlabs.org
7151 L:      netdev@vger.kernel.org
7152 S:      Maintained
7153 F:      drivers/net/ethernet/freescale/fs_enet/
7154 F:      include/linux/fs_enet_pd.h
7155
7156 FREESCALE SOC SOUND DRIVERS
7157 M:      Timur Tabi <timur@kernel.org>
7158 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7159 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7160 R:      Fabio Estevam <festevam@gmail.com>
7161 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7162 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7163 L:      linuxppc-dev@lists.ozlabs.org
7164 S:      Maintained
7165 F:      sound/soc/fsl/fsl*
7166 F:      sound/soc/fsl/imx*
7167 F:      sound/soc/fsl/mpc8610_hpcd.c
7168
7169 FREESCALE USB PERIPHERAL DRIVERS
7170 M:      Li Yang <leoyang.li@nxp.com>
7171 L:      linux-usb@vger.kernel.org
7172 L:      linuxppc-dev@lists.ozlabs.org
7173 S:      Maintained
7174 F:      drivers/usb/gadget/udc/fsl*
7175
7176 FREESCALE USB PHY DRIVER
7177 M:      Ran Wang <ran.wang_1@nxp.com>
7178 L:      linux-usb@vger.kernel.org
7179 L:      linuxppc-dev@lists.ozlabs.org
7180 S:      Maintained
7181 F:      drivers/usb/phy/phy-fsl-usb*
7182
7183 FREEVXFS FILESYSTEM
7184 M:      Christoph Hellwig <hch@infradead.org>
7185 S:      Maintained
7186 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7187 F:      fs/freevxfs/
7188
7189 FREEZER
7190 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7191 M:      Pavel Machek <pavel@ucw.cz>
7192 L:      linux-pm@vger.kernel.org
7193 S:      Supported
7194 F:      Documentation/power/freezing-of-tasks.rst
7195 F:      include/linux/freezer.h
7196 F:      kernel/freezer.c
7197
7198 FRONTSWAP API
7199 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7200 L:      linux-kernel@vger.kernel.org
7201 S:      Maintained
7202 F:      include/linux/frontswap.h
7203 F:      mm/frontswap.c
7204
7205 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7206 M:      David Howells <dhowells@redhat.com>
7207 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7208 S:      Supported
7209 F:      Documentation/filesystems/caching/
7210 F:      fs/fscache/
7211 F:      include/linux/fscache*.h
7212
7213 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7214 M:      Theodore Y. Ts'o <tytso@mit.edu>
7215 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7216 M:      Eric Biggers <ebiggers@kernel.org>
7217 L:      linux-fscrypt@vger.kernel.org
7218 S:      Supported
7219 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7220 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7221 F:      Documentation/filesystems/fscrypt.rst
7222 F:      fs/crypto/
7223 F:      include/linux/fscrypt*.h
7224 F:      include/uapi/linux/fscrypt.h
7225
7226 FSI SUBSYSTEM
7227 M:      Jeremy Kerr <jk@ozlabs.org>
7228 M:      Joel Stanley <joel@jms.id.au>
7229 R:      Alistar Popple <alistair@popple.id.au>
7230 R:      Eddie James <eajames@linux.ibm.com>
7231 L:      linux-fsi@lists.ozlabs.org
7232 S:      Supported
7233 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7235 F:      drivers/fsi/
7236 F:      include/linux/fsi*.h
7237 F:      include/trace/events/fsi*.h
7238
7239 FSI-ATTACHED I2C DRIVER
7240 M:      Eddie James <eajames@linux.ibm.com>
7241 L:      linux-i2c@vger.kernel.org
7242 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7243 S:      Maintained
7244 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7245 F:      drivers/i2c/busses/i2c-fsi.c
7246
7247 FSI-ATTACHED SPI DRIVER
7248 M:      Eddie James <eajames@linux.ibm.com>
7249 L:      linux-spi@vger.kernel.org
7250 S:      Maintained
7251 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7252 F:      drivers/spi/spi-fsi.c
7253
7254 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7255 M:      Jan Kara <jack@suse.cz>
7256 R:      Amir Goldstein <amir73il@gmail.com>
7257 L:      linux-fsdevel@vger.kernel.org
7258 S:      Maintained
7259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7260 F:      fs/notify/
7261 F:      include/linux/fsnotify*.h
7262
7263 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7264 M:      Eric Biggers <ebiggers@kernel.org>
7265 M:      Theodore Y. Ts'o <tytso@mit.edu>
7266 L:      linux-fscrypt@vger.kernel.org
7267 S:      Supported
7268 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7269 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7270 F:      Documentation/filesystems/fsverity.rst
7271 F:      fs/verity/
7272 F:      include/linux/fsverity.h
7273 F:      include/uapi/linux/fsverity.h
7274
7275 FUJITSU LAPTOP EXTRAS
7276 M:      Jonathan Woithe <jwoithe@just42.net>
7277 L:      platform-driver-x86@vger.kernel.org
7278 S:      Maintained
7279 F:      drivers/platform/x86/fujitsu-laptop.c
7280
7281 FUJITSU M-5MO LS CAMERA ISP DRIVER
7282 M:      Kyungmin Park <kyungmin.park@samsung.com>
7283 M:      Heungjun Kim <riverful.kim@samsung.com>
7284 L:      linux-media@vger.kernel.org
7285 S:      Maintained
7286 F:      drivers/media/i2c/m5mols/
7287 F:      include/media/i2c/m5mols.h
7288
7289 FUJITSU TABLET EXTRAS
7290 M:      Robert Gerlach <khnz@gmx.de>
7291 L:      platform-driver-x86@vger.kernel.org
7292 S:      Maintained
7293 F:      drivers/platform/x86/fujitsu-tablet.c
7294
7295 FUSE: FILESYSTEM IN USERSPACE
7296 M:      Miklos Szeredi <miklos@szeredi.hu>
7297 L:      linux-fsdevel@vger.kernel.org
7298 S:      Maintained
7299 W:      https://github.com/libfuse/
7300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7301 F:      Documentation/filesystems/fuse.rst
7302 F:      fs/fuse/
7303 F:      include/uapi/linux/fuse.h
7304
7305 FUTEX SUBSYSTEM
7306 M:      Thomas Gleixner <tglx@linutronix.de>
7307 M:      Ingo Molnar <mingo@redhat.com>
7308 R:      Peter Zijlstra <peterz@infradead.org>
7309 R:      Darren Hart <dvhart@infradead.org>
7310 L:      linux-kernel@vger.kernel.org
7311 S:      Maintained
7312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7313 F:      Documentation/locking/*futex*
7314 F:      include/asm-generic/futex.h
7315 F:      include/linux/futex.h
7316 F:      include/uapi/linux/futex.h
7317 F:      kernel/futex.c
7318 F:      tools/perf/bench/futex*
7319 F:      tools/testing/selftests/futex/
7320
7321 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7322 M:      Tim Harvey <tharvey@gateworks.com>
7323 M:      Robert Jones <rjones@gateworks.com>
7324 S:      Maintained
7325 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7326 F:      drivers/mfd/gateworks-gsc.c
7327 F:      include/linux/mfd/gsc.h
7328 F:      Documentation/hwmon/gsc-hwmon.rst
7329 F:      drivers/hwmon/gsc-hwmon.c
7330 F:      include/linux/platform_data/gsc_hwmon.h
7331
7332 GASKET DRIVER FRAMEWORK
7333 M:      Rob Springer <rspringer@google.com>
7334 M:      Todd Poynor <toddpoynor@google.com>
7335 M:      Ben Chan <benchan@chromium.org>
7336 M:      Richard Yeh <rcy@google.com>
7337 S:      Maintained
7338 F:      drivers/staging/gasket/
7339
7340 GCC PLUGINS
7341 M:      Kees Cook <keescook@chromium.org>
7342 L:      linux-hardening@vger.kernel.org
7343 S:      Maintained
7344 F:      Documentation/kbuild/gcc-plugins.rst
7345 F:      scripts/Makefile.gcc-plugins
7346 F:      scripts/gcc-plugin.sh
7347 F:      scripts/gcc-plugins/
7348
7349 GCOV BASED KERNEL PROFILING
7350 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7351 S:      Maintained
7352 F:      Documentation/dev-tools/gcov.rst
7353 F:      kernel/gcov/
7354
7355 GDB KERNEL DEBUGGING HELPER SCRIPTS
7356 M:      Jan Kiszka <jan.kiszka@siemens.com>
7357 M:      Kieran Bingham <kbingham@kernel.org>
7358 S:      Supported
7359 F:      scripts/gdb/
7360
7361 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7362 M:      Achim Leubner <achim_leubner@adaptec.com>
7363 L:      linux-scsi@vger.kernel.org
7364 S:      Supported
7365 W:      http://www.icp-vortex.com/
7366 F:      drivers/scsi/gdt*
7367
7368 GEMTEK FM RADIO RECEIVER DRIVER
7369 M:      Hans Verkuil <hverkuil@xs4all.nl>
7370 L:      linux-media@vger.kernel.org
7371 S:      Maintained
7372 W:      https://linuxtv.org
7373 T:      git git://linuxtv.org/media_tree.git
7374 F:      drivers/media/radio/radio-gemtek*
7375
7376 GENERIC ARCHITECTURE TOPOLOGY
7377 M:      Sudeep Holla <sudeep.holla@arm.com>
7378 L:      linux-kernel@vger.kernel.org
7379 S:      Maintained
7380 F:      drivers/base/arch_topology.c
7381 F:      include/linux/arch_topology.h
7382
7383 GENERIC ENTRY CODE
7384 M:      Thomas Gleixner <tglx@linutronix.de>
7385 M:      Peter Zijlstra <peterz@infradead.org>
7386 M:      Andy Lutomirski <luto@kernel.org>
7387 L:      linux-kernel@vger.kernel.org
7388 S:      Maintained
7389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7390 F:      include/linux/entry-common.h
7391 F:      include/linux/entry-kvm.h
7392 F:      kernel/entry/
7393
7394 GENERIC GPIO I2C DRIVER
7395 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7396 S:      Supported
7397 F:      drivers/i2c/busses/i2c-gpio.c
7398 F:      include/linux/platform_data/i2c-gpio.h
7399
7400 GENERIC GPIO I2C MULTIPLEXER DRIVER
7401 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7402 L:      linux-i2c@vger.kernel.org
7403 S:      Supported
7404 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7405 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7406 F:      include/linux/platform_data/i2c-mux-gpio.h
7407
7408 GENERIC HDLC (WAN) DRIVERS
7409 M:      Krzysztof Halasa <khc@pm.waw.pl>
7410 S:      Maintained
7411 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7412 F:      drivers/net/wan/c101.c
7413 F:      drivers/net/wan/hd6457*
7414 F:      drivers/net/wan/hdlc*
7415 F:      drivers/net/wan/n2.c
7416 F:      drivers/net/wan/pc300too.c
7417 F:      drivers/net/wan/pci200syn.c
7418 F:      drivers/net/wan/wanxl*
7419
7420 GENERIC INCLUDE/ASM HEADER FILES
7421 M:      Arnd Bergmann <arnd@arndb.de>
7422 L:      linux-arch@vger.kernel.org
7423 S:      Maintained
7424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7425 F:      include/asm-generic/
7426 F:      include/uapi/asm-generic/
7427
7428 GENERIC PHY FRAMEWORK
7429 M:      Kishon Vijay Abraham I <kishon@ti.com>
7430 M:      Vinod Koul <vkoul@kernel.org>
7431 L:      linux-kernel@vger.kernel.org
7432 S:      Supported
7433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7434 F:      Documentation/devicetree/bindings/phy/
7435 F:      drivers/phy/
7436 F:      include/linux/phy/
7437
7438 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7439 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7440 S:      Supported
7441 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7442
7443 GENERIC PM DOMAINS
7444 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7445 M:      Kevin Hilman <khilman@kernel.org>
7446 M:      Ulf Hansson <ulf.hansson@linaro.org>
7447 L:      linux-pm@vger.kernel.org
7448 S:      Supported
7449 F:      Documentation/devicetree/bindings/power/power?domain*
7450 F:      drivers/base/power/domain*.c
7451 F:      include/linux/pm_domain.h
7452
7453 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7454 M:      Eugen Hristev <eugen.hristev@microchip.com>
7455 L:      linux-input@vger.kernel.org
7456 S:      Maintained
7457 F:      drivers/input/touchscreen/resistive-adc-touch.c
7458
7459 GENERIC UIO DRIVER FOR PCI DEVICES
7460 M:      "Michael S. Tsirkin" <mst@redhat.com>
7461 L:      kvm@vger.kernel.org
7462 S:      Supported
7463 F:      drivers/uio/uio_pci_generic.c
7464
7465 GENERIC VDSO LIBRARY
7466 M:      Andy Lutomirski <luto@kernel.org>
7467 M:      Thomas Gleixner <tglx@linutronix.de>
7468 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7469 L:      linux-kernel@vger.kernel.org
7470 S:      Maintained
7471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7472 F:      include/asm-generic/vdso/vsyscall.h
7473 F:      include/vdso/
7474 F:      kernel/time/vsyscall.c
7475 F:      lib/vdso/
7476
7477 GENWQE (IBM Generic Workqueue Card)
7478 M:      Frank Haverkamp <haver@linux.ibm.com>
7479 S:      Supported
7480 F:      drivers/misc/genwqe/
7481
7482 GET_MAINTAINER SCRIPT
7483 M:      Joe Perches <joe@perches.com>
7484 S:      Maintained
7485 F:      scripts/get_maintainer.pl
7486
7487 GFS2 FILE SYSTEM
7488 M:      Bob Peterson <rpeterso@redhat.com>
7489 M:      Andreas Gruenbacher <agruenba@redhat.com>
7490 L:      cluster-devel@redhat.com
7491 S:      Supported
7492 W:      http://sources.redhat.com/cluster/
7493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7494 F:      Documentation/filesystems/gfs2*
7495 F:      fs/gfs2/
7496 F:      include/uapi/linux/gfs2_ondisk.h
7497
7498 GNSS SUBSYSTEM
7499 M:      Johan Hovold <johan@kernel.org>
7500 S:      Maintained
7501 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7502 F:      Documentation/ABI/testing/sysfs-class-gnss
7503 F:      Documentation/devicetree/bindings/gnss/
7504 F:      drivers/gnss/
7505 F:      include/linux/gnss.h
7506
7507 GO7007 MPEG CODEC
7508 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7509 L:      linux-media@vger.kernel.org
7510 S:      Maintained
7511 F:      drivers/media/usb/go7007/
7512
7513 GOODIX TOUCHSCREEN
7514 M:      Bastien Nocera <hadess@hadess.net>
7515 L:      linux-input@vger.kernel.org
7516 S:      Maintained
7517 F:      drivers/input/touchscreen/goodix.c
7518
7519 GOOGLE ETHERNET DRIVERS
7520 M:      Catherine Sullivan <csully@google.com>
7521 R:      Sagi Shahar <sagis@google.com>
7522 R:      Jon Olson <jonolson@google.com>
7523 L:      netdev@vger.kernel.org
7524 S:      Supported
7525 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7526 F:      drivers/net/ethernet/google
7527
7528 GPD POCKET FAN DRIVER
7529 M:      Hans de Goede <hdegoede@redhat.com>
7530 L:      platform-driver-x86@vger.kernel.org
7531 S:      Maintained
7532 F:      drivers/platform/x86/gpd-pocket-fan.c
7533
7534 GPIO ACPI SUPPORT
7535 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7536 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7537 L:      linux-gpio@vger.kernel.org
7538 L:      linux-acpi@vger.kernel.org
7539 S:      Maintained
7540 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7541 F:      drivers/gpio/gpiolib-acpi.c
7542 F:      drivers/gpio/gpiolib-acpi.h
7543
7544 GPIO AGGREGATOR
7545 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7546 L:      linux-gpio@vger.kernel.org
7547 S:      Supported
7548 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7549 F:      drivers/gpio/gpio-aggregator.c
7550
7551 GPIO IR Transmitter
7552 M:      Sean Young <sean@mess.org>
7553 L:      linux-media@vger.kernel.org
7554 S:      Maintained
7555 F:      drivers/media/rc/gpio-ir-tx.c
7556
7557 GPIO MOCKUP DRIVER
7558 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7559 L:      linux-gpio@vger.kernel.org
7560 S:      Maintained
7561 F:      drivers/gpio/gpio-mockup.c
7562 F:      tools/testing/selftests/gpio/
7563
7564 GPIO REGMAP
7565 R:      Michael Walle <michael@walle.cc>
7566 S:      Maintained
7567 F:      drivers/gpio/gpio-regmap.c
7568 F:      include/linux/gpio/regmap.h
7569
7570 GPIO SUBSYSTEM
7571 M:      Linus Walleij <linus.walleij@linaro.org>
7572 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7573 L:      linux-gpio@vger.kernel.org
7574 S:      Maintained
7575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7576 F:      Documentation/ABI/obsolete/sysfs-gpio
7577 F:      Documentation/ABI/testing/gpio-cdev
7578 F:      Documentation/admin-guide/gpio/
7579 F:      Documentation/devicetree/bindings/gpio/
7580 F:      Documentation/driver-api/gpio/
7581 F:      drivers/gpio/
7582 F:      include/asm-generic/gpio.h
7583 F:      include/linux/gpio.h
7584 F:      include/linux/gpio/
7585 F:      include/linux/of_gpio.h
7586 F:      include/uapi/linux/gpio.h
7587 F:      tools/gpio/
7588
7589 GRE DEMULTIPLEXER DRIVER
7590 M:      Dmitry Kozlov <xeb@mail.ru>
7591 L:      netdev@vger.kernel.org
7592 S:      Maintained
7593 F:      include/net/gre.h
7594 F:      net/ipv4/gre_demux.c
7595 F:      net/ipv4/gre_offload.c
7596
7597 GRETH 10/100/1G Ethernet MAC device driver
7598 M:      Andreas Larsson <andreas@gaisler.com>
7599 L:      netdev@vger.kernel.org
7600 S:      Maintained
7601 F:      drivers/net/ethernet/aeroflex/
7602
7603 GREYBUS AUDIO PROTOCOLS DRIVERS
7604 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7605 M:      Mark Greer <mgreer@animalcreek.com>
7606 S:      Maintained
7607 F:      drivers/staging/greybus/audio_apbridgea.c
7608 F:      drivers/staging/greybus/audio_apbridgea.h
7609 F:      drivers/staging/greybus/audio_codec.c
7610 F:      drivers/staging/greybus/audio_codec.h
7611 F:      drivers/staging/greybus/audio_gb.c
7612 F:      drivers/staging/greybus/audio_manager.c
7613 F:      drivers/staging/greybus/audio_manager.h
7614 F:      drivers/staging/greybus/audio_manager_module.c
7615 F:      drivers/staging/greybus/audio_manager_private.h
7616 F:      drivers/staging/greybus/audio_manager_sysfs.c
7617 F:      drivers/staging/greybus/audio_module.c
7618 F:      drivers/staging/greybus/audio_topology.c
7619
7620 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7621 M:      Viresh Kumar <vireshk@kernel.org>
7622 S:      Maintained
7623 F:      drivers/staging/greybus/authentication.c
7624 F:      drivers/staging/greybus/bootrom.c
7625 F:      drivers/staging/greybus/firmware.h
7626 F:      drivers/staging/greybus/fw-core.c
7627 F:      drivers/staging/greybus/fw-download.c
7628 F:      drivers/staging/greybus/fw-management.c
7629 F:      drivers/staging/greybus/greybus_authentication.h
7630 F:      drivers/staging/greybus/greybus_firmware.h
7631 F:      drivers/staging/greybus/hid.c
7632 F:      drivers/staging/greybus/i2c.c
7633 F:      drivers/staging/greybus/spi.c
7634 F:      drivers/staging/greybus/spilib.c
7635 F:      drivers/staging/greybus/spilib.h
7636
7637 GREYBUS LOOPBACK DRIVER
7638 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7639 S:      Maintained
7640 F:      drivers/staging/greybus/loopback.c
7641
7642 GREYBUS PLATFORM DRIVERS
7643 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7644 S:      Maintained
7645 F:      drivers/staging/greybus/arche-apb-ctrl.c
7646 F:      drivers/staging/greybus/arche-platform.c
7647 F:      drivers/staging/greybus/arche_platform.h
7648
7649 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7650 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7651 S:      Maintained
7652 F:      drivers/staging/greybus/gpio.c
7653 F:      drivers/staging/greybus/light.c
7654 F:      drivers/staging/greybus/power_supply.c
7655 F:      drivers/staging/greybus/sdio.c
7656 F:      drivers/staging/greybus/spi.c
7657 F:      drivers/staging/greybus/spilib.c
7658
7659 GREYBUS SUBSYSTEM
7660 M:      Johan Hovold <johan@kernel.org>
7661 M:      Alex Elder <elder@kernel.org>
7662 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7663 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7664 S:      Maintained
7665 F:      drivers/greybus/
7666 F:      drivers/staging/greybus/
7667 F:      include/linux/greybus.h
7668 F:      include/linux/greybus/
7669
7670 GREYBUS UART PROTOCOLS DRIVERS
7671 M:      David Lin <dtwlin@gmail.com>
7672 S:      Maintained
7673 F:      drivers/staging/greybus/log.c
7674 F:      drivers/staging/greybus/uart.c
7675
7676 GS1662 VIDEO SERIALIZER
7677 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7678 L:      linux-media@vger.kernel.org
7679 S:      Maintained
7680 T:      git git://linuxtv.org/media_tree.git
7681 F:      drivers/media/spi/gs1662.c
7682
7683 GSPCA FINEPIX SUBDRIVER
7684 M:      Frank Zago <frank@zago.net>
7685 L:      linux-media@vger.kernel.org
7686 S:      Maintained
7687 T:      git git://linuxtv.org/media_tree.git
7688 F:      drivers/media/usb/gspca/finepix.c
7689
7690 GSPCA GL860 SUBDRIVER
7691 M:      Olivier Lorin <o.lorin@laposte.net>
7692 L:      linux-media@vger.kernel.org
7693 S:      Maintained
7694 T:      git git://linuxtv.org/media_tree.git
7695 F:      drivers/media/usb/gspca/gl860/
7696
7697 GSPCA M5602 SUBDRIVER
7698 M:      Erik Andren <erik.andren@gmail.com>
7699 L:      linux-media@vger.kernel.org
7700 S:      Maintained
7701 T:      git git://linuxtv.org/media_tree.git
7702 F:      drivers/media/usb/gspca/m5602/
7703
7704 GSPCA PAC207 SONIXB SUBDRIVER
7705 M:      Hans Verkuil <hverkuil@xs4all.nl>
7706 L:      linux-media@vger.kernel.org
7707 S:      Odd Fixes
7708 T:      git git://linuxtv.org/media_tree.git
7709 F:      drivers/media/usb/gspca/pac207.c
7710
7711 GSPCA SN9C20X SUBDRIVER
7712 M:      Brian Johnson <brijohn@gmail.com>
7713 L:      linux-media@vger.kernel.org
7714 S:      Maintained
7715 T:      git git://linuxtv.org/media_tree.git
7716 F:      drivers/media/usb/gspca/sn9c20x.c
7717
7718 GSPCA T613 SUBDRIVER
7719 M:      Leandro Costantino <lcostantino@gmail.com>
7720 L:      linux-media@vger.kernel.org
7721 S:      Maintained
7722 T:      git git://linuxtv.org/media_tree.git
7723 F:      drivers/media/usb/gspca/t613.c
7724
7725 GSPCA USB WEBCAM DRIVER
7726 M:      Hans Verkuil <hverkuil@xs4all.nl>
7727 L:      linux-media@vger.kernel.org
7728 S:      Odd Fixes
7729 T:      git git://linuxtv.org/media_tree.git
7730 F:      drivers/media/usb/gspca/
7731
7732 GTP (GPRS Tunneling Protocol)
7733 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7734 M:      Harald Welte <laforge@gnumonks.org>
7735 L:      osmocom-net-gprs@lists.osmocom.org
7736 S:      Maintained
7737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7738 F:      drivers/net/gtp.c
7739
7740 GUID PARTITION TABLE (GPT)
7741 M:      Davidlohr Bueso <dave@stgolabs.net>
7742 L:      linux-efi@vger.kernel.org
7743 S:      Maintained
7744 F:      block/partitions/efi.*
7745
7746 H8/300 ARCHITECTURE
7747 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7748 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7749 S:      Maintained
7750 W:      http://uclinux-h8.sourceforge.jp
7751 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7752 F:      arch/h8300/
7753 F:      drivers/clk/h8300/
7754 F:      drivers/clocksource/h8300_*.c
7755 F:      drivers/irqchip/irq-renesas-h8*.c
7756
7757 HABANALABS PCI DRIVER
7758 M:      Oded Gabbay <ogabbay@kernel.org>
7759 S:      Supported
7760 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
7761 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7762 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7763 F:      drivers/misc/habanalabs/
7764 F:      include/uapi/misc/habanalabs.h
7765
7766 HACKRF MEDIA DRIVER
7767 M:      Antti Palosaari <crope@iki.fi>
7768 L:      linux-media@vger.kernel.org
7769 S:      Maintained
7770 W:      https://linuxtv.org
7771 W:      http://palosaari.fi/linux/
7772 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7773 T:      git git://linuxtv.org/anttip/media_tree.git
7774 F:      drivers/media/usb/hackrf/
7775
7776 HANTRO VPU CODEC DRIVER
7777 M:      Ezequiel Garcia <ezequiel@collabora.com>
7778 M:      Philipp Zabel <p.zabel@pengutronix.de>
7779 L:      linux-media@vger.kernel.org
7780 L:      linux-rockchip@lists.infradead.org
7781 S:      Maintained
7782 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7783 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7784 F:      drivers/staging/media/hantro/
7785
7786 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7787 M:      Frank Seidel <frank@f-seidel.de>
7788 L:      platform-driver-x86@vger.kernel.org
7789 S:      Maintained
7790 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7791 F:      drivers/platform/x86/hdaps.c
7792
7793 HARDWARE MONITORING
7794 M:      Jean Delvare <jdelvare@suse.com>
7795 M:      Guenter Roeck <linux@roeck-us.net>
7796 L:      linux-hwmon@vger.kernel.org
7797 S:      Maintained
7798 W:      http://hwmon.wiki.kernel.org/
7799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7800 F:      Documentation/devicetree/bindings/hwmon/
7801 F:      Documentation/hwmon/
7802 F:      drivers/hwmon/
7803 F:      include/linux/hwmon*.h
7804 F:      include/trace/events/hwmon*.h
7805
7806 HARDWARE RANDOM NUMBER GENERATOR CORE
7807 M:      Matt Mackall <mpm@selenic.com>
7808 M:      Herbert Xu <herbert@gondor.apana.org.au>
7809 L:      linux-crypto@vger.kernel.org
7810 S:      Odd fixes
7811 F:      Documentation/admin-guide/hw_random.rst
7812 F:      Documentation/devicetree/bindings/rng/
7813 F:      drivers/char/hw_random/
7814 F:      include/linux/hw_random.h
7815
7816 HARDWARE SPINLOCK CORE
7817 M:      Ohad Ben-Cohen <ohad@wizery.com>
7818 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7819 R:      Baolin Wang <baolin.wang7@gmail.com>
7820 L:      linux-remoteproc@vger.kernel.org
7821 S:      Maintained
7822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7823 F:      Documentation/devicetree/bindings/hwlock/
7824 F:      Documentation/locking/hwspinlock.rst
7825 F:      drivers/hwspinlock/
7826 F:      include/linux/hwspinlock.h
7827
7828 HARDWARE TRACING FACILITIES
7829 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7830 S:      Maintained
7831 F:      drivers/hwtracing/
7832
7833 HARMONY SOUND DRIVER
7834 L:      linux-parisc@vger.kernel.org
7835 S:      Maintained
7836 F:      sound/parisc/harmony.*
7837
7838 HDPVR USB VIDEO ENCODER DRIVER
7839 M:      Hans Verkuil <hverkuil@xs4all.nl>
7840 L:      linux-media@vger.kernel.org
7841 S:      Odd Fixes
7842 W:      https://linuxtv.org
7843 T:      git git://linuxtv.org/media_tree.git
7844 F:      drivers/media/usb/hdpvr/
7845
7846 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7847 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
7848 S:      Supported
7849 F:      Documentation/watchdog/hpwdt.rst
7850 F:      drivers/watchdog/hpwdt.c
7851
7852 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7853 M:      Don Brace <don.brace@microchip.com>
7854 L:      storagedev@microchip.com
7855 L:      linux-scsi@vger.kernel.org
7856 S:      Supported
7857 F:      Documentation/scsi/hpsa.rst
7858 F:      drivers/scsi/hpsa*.[ch]
7859 F:      include/linux/cciss*.h
7860 F:      include/uapi/linux/cciss*.h
7861
7862 HFI1 DRIVER
7863 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
7864 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
7865 L:      linux-rdma@vger.kernel.org
7866 S:      Supported
7867 F:      drivers/infiniband/hw/hfi1
7868
7869 HFS FILESYSTEM
7870 L:      linux-fsdevel@vger.kernel.org
7871 S:      Orphan
7872 F:      Documentation/filesystems/hfs.rst
7873 F:      fs/hfs/
7874
7875 HFSPLUS FILESYSTEM
7876 L:      linux-fsdevel@vger.kernel.org
7877 S:      Orphan
7878 F:      Documentation/filesystems/hfsplus.rst
7879 F:      fs/hfsplus/
7880
7881 HGA FRAMEBUFFER DRIVER
7882 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7883 L:      linux-nvidia@lists.surfsouth.com
7884 S:      Maintained
7885 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7886 F:      drivers/video/fbdev/hgafb.c
7887
7888 HIBERNATION (aka Software Suspend, aka swsusp)
7889 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7890 M:      Pavel Machek <pavel@ucw.cz>
7891 L:      linux-pm@vger.kernel.org
7892 S:      Supported
7893 B:      https://bugzilla.kernel.org
7894 F:      arch/*/include/asm/suspend*.h
7895 F:      arch/x86/power/
7896 F:      drivers/base/power/
7897 F:      include/linux/freezer.h
7898 F:      include/linux/pm.h
7899 F:      include/linux/suspend.h
7900 F:      kernel/power/
7901
7902 HID CORE LAYER
7903 M:      Jiri Kosina <jikos@kernel.org>
7904 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7905 L:      linux-input@vger.kernel.org
7906 S:      Maintained
7907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7908 F:      drivers/hid/
7909 F:      include/linux/hid*
7910 F:      include/uapi/linux/hid*
7911
7912 HID SENSOR HUB DRIVERS
7913 M:      Jiri Kosina <jikos@kernel.org>
7914 M:      Jonathan Cameron <jic23@kernel.org>
7915 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7916 L:      linux-input@vger.kernel.org
7917 L:      linux-iio@vger.kernel.org
7918 S:      Maintained
7919 F:      Documentation/hid/hid-sensor*
7920 F:      drivers/hid/hid-sensor-*
7921 F:      drivers/iio/*/hid-*
7922 F:      include/linux/hid-sensor-*
7923
7924 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7925 M:      Thomas Gleixner <tglx@linutronix.de>
7926 L:      linux-kernel@vger.kernel.org
7927 S:      Maintained
7928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7929 F:      Documentation/timers/
7930 F:      include/linux/clockchips.h
7931 F:      include/linux/hrtimer.h
7932 F:      kernel/time/clockevents.c
7933 F:      kernel/time/hrtimer.c
7934 F:      kernel/time/timer_*.c
7935
7936 HIGH-SPEED SCC DRIVER FOR AX.25
7937 L:      linux-hams@vger.kernel.org
7938 S:      Orphan
7939 F:      drivers/net/hamradio/dmascc.c
7940 F:      drivers/net/hamradio/scc.c
7941
7942 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7943 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7944 S:      Supported
7945 W:      http://www.highpoint-tech.com
7946 F:      Documentation/scsi/hptiop.rst
7947 F:      drivers/scsi/hptiop.c
7948
7949 HIPPI
7950 M:      Jes Sorensen <jes@trained-monkey.org>
7951 L:      linux-hippi@sunsite.dk
7952 S:      Maintained
7953 F:      drivers/net/hippi/
7954 F:      include/linux/hippidevice.h
7955 F:      include/uapi/linux/if_hippi.h
7956 F:      net/802/hippi.c
7957
7958 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
7959 M:      Kurt Kanzenbach <kurt@linutronix.de>
7960 L:      netdev@vger.kernel.org
7961 S:      Maintained
7962 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
7963 F:      drivers/net/dsa/hirschmann/*
7964 F:      include/linux/platform_data/hirschmann-hellcreek.h
7965 F:      net/dsa/tag_hellcreek.c
7966
7967 HISILICON DMA DRIVER
7968 M:      Zhou Wang <wangzhou1@hisilicon.com>
7969 L:      dmaengine@vger.kernel.org
7970 S:      Maintained
7971 F:      drivers/dma/hisi_dma.c
7972
7973 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7974 M:      Zaibo Xu <xuzaibo@huawei.com>
7975 L:      linux-crypto@vger.kernel.org
7976 S:      Maintained
7977 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7978 F:      drivers/crypto/hisilicon/hpre/hpre.h
7979 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7980 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7981
7982 HISILICON LPC BUS DRIVER
7983 M:      john.garry@huawei.com
7984 S:      Maintained
7985 W:      http://www.hisilicon.com
7986 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
7987 F:      drivers/bus/hisi_lpc.c
7988
7989 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7990 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7991 M:      Salil Mehta <salil.mehta@huawei.com>
7992 L:      netdev@vger.kernel.org
7993 S:      Maintained
7994 W:      http://www.hisilicon.com
7995 F:      drivers/net/ethernet/hisilicon/hns3/
7996
7997 HISILICON NETWORK SUBSYSTEM DRIVER
7998 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7999 M:      Salil Mehta <salil.mehta@huawei.com>
8000 L:      netdev@vger.kernel.org
8001 S:      Maintained
8002 W:      http://www.hisilicon.com
8003 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8004 F:      drivers/net/ethernet/hisilicon/
8005
8006 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8007 M:      John Stultz <john.stultz@linaro.org>
8008 L:      linux-kernel@vger.kernel.org
8009 S:      Maintained
8010 F:      drivers/misc/hisi_hikey_usb.c
8011 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8012
8013 HISILICON PMU DRIVER
8014 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8015 S:      Supported
8016 W:      http://www.hisilicon.com
8017 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8018 F:      drivers/perf/hisilicon
8019
8020 HISILICON QM AND ZIP Controller DRIVER
8021 M:      Zhou Wang <wangzhou1@hisilicon.com>
8022 L:      linux-crypto@vger.kernel.org
8023 S:      Maintained
8024 F:      Documentation/ABI/testing/debugfs-hisi-zip
8025 F:      drivers/crypto/hisilicon/qm.c
8026 F:      drivers/crypto/hisilicon/qm.h
8027 F:      drivers/crypto/hisilicon/sgl.c
8028 F:      drivers/crypto/hisilicon/zip/
8029
8030 HISILICON ROCE DRIVER
8031 M:      Lijun Ou <oulijun@huawei.com>
8032 M:      Wei Hu(Xavier) <huwei87@hisilicon.com>
8033 M:      Weihang Li <liweihang@huawei.com>
8034 L:      linux-rdma@vger.kernel.org
8035 S:      Maintained
8036 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8037 F:      drivers/infiniband/hw/hns/
8038
8039 HISILICON SAS Controller
8040 M:      John Garry <john.garry@huawei.com>
8041 S:      Supported
8042 W:      http://www.hisilicon.com
8043 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8044 F:      drivers/scsi/hisi_sas/
8045
8046 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8047 M:      Zaibo Xu <xuzaibo@huawei.com>
8048 L:      linux-crypto@vger.kernel.org
8049 S:      Maintained
8050 F:      Documentation/ABI/testing/debugfs-hisi-sec
8051 F:      drivers/crypto/hisilicon/sec2/sec.h
8052 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8053 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8054 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8055
8056 HISILICON STAGING DRIVERS FOR HIKEY 960/970
8057 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8058 L:      devel@driverdev.osuosl.org
8059 S:      Maintained
8060 F:      drivers/staging/hikey9xx/
8061
8062 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8063 M:      Zaibo Xu <xuzaibo@huawei.com>
8064 S:      Maintained
8065 F:      drivers/crypto/hisilicon/trng/trng.c
8066
8067 HISILICON V3XX SPI NOR FLASH Controller Driver
8068 M:      John Garry <john.garry@huawei.com>
8069 S:      Maintained
8070 W:      http://www.hisilicon.com
8071 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8072
8073 HMM - Heterogeneous Memory Management
8074 M:      Jérôme Glisse <jglisse@redhat.com>
8075 L:      linux-mm@kvack.org
8076 S:      Maintained
8077 F:      Documentation/vm/hmm.rst
8078 F:      include/linux/hmm*
8079 F:      lib/test_hmm*
8080 F:      mm/hmm*
8081 F:      tools/testing/selftests/vm/*hmm*
8082
8083 HOST AP DRIVER
8084 M:      Jouni Malinen <j@w1.fi>
8085 L:      linux-wireless@vger.kernel.org
8086 S:      Obsolete
8087 W:      http://w1.fi/hostap-driver.html
8088 F:      drivers/net/wireless/intersil/hostap/
8089
8090 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8091 L:      platform-driver-x86@vger.kernel.org
8092 S:      Orphan
8093 F:      drivers/platform/x86/tc1100-wmi.c
8094
8095 HPET:   High Precision Event Timers driver
8096 M:      Clemens Ladisch <clemens@ladisch.de>
8097 S:      Maintained
8098 F:      Documentation/timers/hpet.rst
8099 F:      drivers/char/hpet.c
8100 F:      include/linux/hpet.h
8101 F:      include/uapi/linux/hpet.h
8102
8103 HPET:   x86
8104 S:      Orphan
8105 F:      arch/x86/include/asm/hpet.h
8106 F:      arch/x86/kernel/hpet.c
8107
8108 HPFS FILESYSTEM
8109 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8110 S:      Maintained
8111 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8112 F:      fs/hpfs/
8113
8114 HSI SUBSYSTEM
8115 M:      Sebastian Reichel <sre@kernel.org>
8116 S:      Maintained
8117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8118 F:      Documentation/ABI/testing/sysfs-bus-hsi
8119 F:      Documentation/driver-api/hsi.rst
8120 F:      drivers/hsi/
8121 F:      include/linux/hsi/
8122 F:      include/uapi/linux/hsi/
8123
8124 HSO 3G MODEM DRIVER
8125 L:      linux-usb@vger.kernel.org
8126 S:      Orphan
8127 F:      drivers/net/usb/hso.c
8128
8129 HSR NETWORK PROTOCOL
8130 L:      netdev@vger.kernel.org
8131 S:      Orphan
8132 F:      net/hsr/
8133
8134 HT16K33 LED CONTROLLER DRIVER
8135 M:      Robin van der Gracht <robin@protonic.nl>
8136 S:      Maintained
8137 F:      Documentation/devicetree/bindings/display/ht16k33.txt
8138 F:      drivers/auxdisplay/ht16k33.c
8139
8140 HTCPEN TOUCHSCREEN DRIVER
8141 M:      Pau Oliva Fora <pof@eslack.org>
8142 L:      linux-input@vger.kernel.org
8143 S:      Maintained
8144 F:      drivers/input/touchscreen/htcpen.c
8145
8146 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8147 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8148 L:      linux-iio@vger.kernel.org
8149 S:      Maintained
8150 W:      http://www.st.com/
8151 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
8152 F:      drivers/iio/humidity/hts221*
8153
8154 HUAWEI ETHERNET DRIVER
8155 M:      Bin Luo <luobin9@huawei.com>
8156 L:      netdev@vger.kernel.org
8157 S:      Supported
8158 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8159 F:      drivers/net/ethernet/huawei/hinic/
8160
8161 HUGETLB FILESYSTEM
8162 M:      Mike Kravetz <mike.kravetz@oracle.com>
8163 L:      linux-mm@kvack.org
8164 S:      Maintained
8165 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8166 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8167 F:      Documentation/vm/hugetlbfs_reserv.rst
8168 F:      fs/hugetlbfs/
8169 F:      include/linux/hugetlb.h
8170 F:      mm/hugetlb.c
8171
8172 HVA ST MEDIA DRIVER
8173 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
8174 L:      linux-media@vger.kernel.org
8175 S:      Supported
8176 W:      https://linuxtv.org
8177 T:      git git://linuxtv.org/media_tree.git
8178 F:      drivers/media/platform/sti/hva
8179
8180 HWPOISON MEMORY FAILURE HANDLING
8181 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8182 L:      linux-mm@kvack.org
8183 S:      Maintained
8184 F:      mm/hwpoison-inject.c
8185 F:      mm/memory-failure.c
8186
8187 HYGON PROCESSOR SUPPORT
8188 M:      Pu Wen <puwen@hygon.cn>
8189 L:      linux-kernel@vger.kernel.org
8190 S:      Maintained
8191 F:      arch/x86/kernel/cpu/hygon.c
8192
8193 HYNIX HI556 SENSOR DRIVER
8194 M:      Shawn Tu <shawnx.tu@intel.com>
8195 L:      linux-media@vger.kernel.org
8196 S:      Maintained
8197 T:      git git://linuxtv.org/media_tree.git
8198 F:      drivers/media/i2c/hi556.c
8199
8200 Hyper-V CORE AND DRIVERS
8201 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8202 M:      Haiyang Zhang <haiyangz@microsoft.com>
8203 M:      Stephen Hemminger <sthemmin@microsoft.com>
8204 M:      Wei Liu <wei.liu@kernel.org>
8205 L:      linux-hyperv@vger.kernel.org
8206 S:      Supported
8207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8208 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8209 F:      Documentation/ABI/testing/debugfs-hyperv
8210 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8211 F:      arch/x86/hyperv
8212 F:      arch/x86/include/asm/hyperv-tlfs.h
8213 F:      arch/x86/include/asm/mshyperv.h
8214 F:      arch/x86/include/asm/trace/hyperv.h
8215 F:      arch/x86/kernel/cpu/mshyperv.c
8216 F:      drivers/clocksource/hyperv_timer.c
8217 F:      drivers/hid/hid-hyperv.c
8218 F:      drivers/hv/
8219 F:      drivers/input/serio/hyperv-keyboard.c
8220 F:      drivers/iommu/hyperv-iommu.c
8221 F:      drivers/net/hyperv/
8222 F:      drivers/pci/controller/pci-hyperv-intf.c
8223 F:      drivers/pci/controller/pci-hyperv.c
8224 F:      drivers/scsi/storvsc_drv.c
8225 F:      drivers/uio/uio_hv_generic.c
8226 F:      drivers/video/fbdev/hyperv_fb.c
8227 F:      include/asm-generic/hyperv-tlfs.h
8228 F:      include/asm-generic/mshyperv.h
8229 F:      include/clocksource/hyperv_timer.h
8230 F:      include/linux/hyperv.h
8231 F:      include/uapi/linux/hyperv.h
8232 F:      net/vmw_vsock/hyperv_transport.c
8233 F:      tools/hv/
8234
8235 HYPERBUS SUPPORT
8236 M:      Vignesh Raghavendra <vigneshr@ti.com>
8237 L:      linux-mtd@lists.infradead.org
8238 S:      Supported
8239 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8240 C:      irc://irc.oftc.net/mtd
8241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8242 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8243 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8244 F:      drivers/mtd/hyperbus/
8245 F:      include/linux/mtd/hyperbus.h
8246
8247 HYPERVISOR VIRTUAL CONSOLE DRIVER
8248 L:      linuxppc-dev@lists.ozlabs.org
8249 S:      Odd Fixes
8250 F:      drivers/tty/hvc/
8251
8252 I2C ACPI SUPPORT
8253 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8254 L:      linux-i2c@vger.kernel.org
8255 L:      linux-acpi@vger.kernel.org
8256 S:      Maintained
8257 F:      drivers/i2c/i2c-core-acpi.c
8258
8259 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8260 M:      Ajay Gupta <ajayg@nvidia.com>
8261 L:      linux-i2c@vger.kernel.org
8262 S:      Maintained
8263 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8264 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8265
8266 I2C MUXES
8267 M:      Peter Rosin <peda@axentia.se>
8268 L:      linux-i2c@vger.kernel.org
8269 S:      Maintained
8270 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8271 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8272 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8273 F:      Documentation/i2c/i2c-topology.rst
8274 F:      Documentation/i2c/muxes/
8275 F:      drivers/i2c/i2c-mux.c
8276 F:      drivers/i2c/muxes/
8277 F:      include/linux/i2c-mux.h
8278
8279 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8280 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8281 L:      linux-i2c@vger.kernel.org
8282 S:      Maintained
8283 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8284 F:      drivers/i2c/busses/i2c-mv64xxx.c
8285
8286 I2C OVER PARALLEL PORT
8287 M:      Jean Delvare <jdelvare@suse.com>
8288 L:      linux-i2c@vger.kernel.org
8289 S:      Maintained
8290 F:      Documentation/i2c/busses/i2c-parport.rst
8291 F:      drivers/i2c/busses/i2c-parport.c
8292
8293 I2C SUBSYSTEM
8294 M:      Wolfram Sang <wsa@kernel.org>
8295 L:      linux-i2c@vger.kernel.org
8296 S:      Maintained
8297 W:      https://i2c.wiki.kernel.org/
8298 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8300 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8301 F:      Documentation/i2c/
8302 F:      drivers/i2c/*
8303 F:      include/linux/i2c-dev.h
8304 F:      include/linux/i2c-smbus.h
8305 F:      include/linux/i2c.h
8306 F:      include/uapi/linux/i2c-*.h
8307 F:      include/uapi/linux/i2c.h
8308
8309 I2C SUBSYSTEM HOST DRIVERS
8310 L:      linux-i2c@vger.kernel.org
8311 S:      Odd Fixes
8312 W:      https://i2c.wiki.kernel.org/
8313 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8315 F:      Documentation/devicetree/bindings/i2c/
8316 F:      drivers/i2c/algos/
8317 F:      drivers/i2c/busses/
8318
8319 I2C-TAOS-EVM DRIVER
8320 M:      Jean Delvare <jdelvare@suse.com>
8321 L:      linux-i2c@vger.kernel.org
8322 S:      Maintained
8323 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8324 F:      drivers/i2c/busses/i2c-taos-evm.c
8325
8326 I2C-TINY-USB DRIVER
8327 M:      Till Harbaum <till@harbaum.org>
8328 L:      linux-i2c@vger.kernel.org
8329 S:      Maintained
8330 W:      http://www.harbaum.org/till/i2c_tiny_usb
8331 F:      drivers/i2c/busses/i2c-tiny-usb.c
8332
8333 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8334 M:      Jean Delvare <jdelvare@suse.com>
8335 L:      linux-i2c@vger.kernel.org
8336 S:      Maintained
8337 F:      Documentation/i2c/busses/i2c-ali1535.rst
8338 F:      Documentation/i2c/busses/i2c-ali1563.rst
8339 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8340 F:      Documentation/i2c/busses/i2c-amd756.rst
8341 F:      Documentation/i2c/busses/i2c-amd8111.rst
8342 F:      Documentation/i2c/busses/i2c-i801.rst
8343 F:      Documentation/i2c/busses/i2c-nforce2.rst
8344 F:      Documentation/i2c/busses/i2c-piix4.rst
8345 F:      Documentation/i2c/busses/i2c-sis5595.rst
8346 F:      Documentation/i2c/busses/i2c-sis630.rst
8347 F:      Documentation/i2c/busses/i2c-sis96x.rst
8348 F:      Documentation/i2c/busses/i2c-via.rst
8349 F:      Documentation/i2c/busses/i2c-viapro.rst
8350 F:      drivers/i2c/busses/i2c-ali1535.c
8351 F:      drivers/i2c/busses/i2c-ali1563.c
8352 F:      drivers/i2c/busses/i2c-ali15x3.c
8353 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8354 F:      drivers/i2c/busses/i2c-amd756.c
8355 F:      drivers/i2c/busses/i2c-amd8111.c
8356 F:      drivers/i2c/busses/i2c-i801.c
8357 F:      drivers/i2c/busses/i2c-isch.c
8358 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8359 F:      drivers/i2c/busses/i2c-nforce2.c
8360 F:      drivers/i2c/busses/i2c-piix4.c
8361 F:      drivers/i2c/busses/i2c-sis5595.c
8362 F:      drivers/i2c/busses/i2c-sis630.c
8363 F:      drivers/i2c/busses/i2c-sis96x.c
8364 F:      drivers/i2c/busses/i2c-via.c
8365 F:      drivers/i2c/busses/i2c-viapro.c
8366
8367 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8368 M:      Hans de Goede <hdegoede@redhat.com>
8369 L:      linux-i2c@vger.kernel.org
8370 S:      Maintained
8371 F:      drivers/i2c/busses/i2c-cht-wc.c
8372
8373 I2C/SMBUS ISMT DRIVER
8374 M:      Seth Heasley <seth.heasley@intel.com>
8375 M:      Neil Horman <nhorman@tuxdriver.com>
8376 L:      linux-i2c@vger.kernel.org
8377 F:      Documentation/i2c/busses/i2c-ismt.rst
8378 F:      drivers/i2c/busses/i2c-ismt.c
8379
8380 I2C/SMBUS STUB DRIVER
8381 M:      Jean Delvare <jdelvare@suse.com>
8382 L:      linux-i2c@vger.kernel.org
8383 S:      Maintained
8384 F:      drivers/i2c/i2c-stub.c
8385
8386 I3C DRIVER FOR CADENCE I3C MASTER IP
8387 M:      Przemysław Gaj <pgaj@cadence.com>
8388 S:      Maintained
8389 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8390 F:      drivers/i3c/master/i3c-master-cdns.c
8391
8392 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8393 M:      Vitor Soares <vitor.soares@synopsys.com>
8394 S:      Maintained
8395 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8396 F:      drivers/i3c/master/dw*
8397
8398 I3C SUBSYSTEM
8399 M:      Boris Brezillon <bbrezillon@kernel.org>
8400 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8401 S:      Maintained
8402 C:      irc://chat.freenode.net/linux-i3c
8403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8404 F:      Documentation/ABI/testing/sysfs-bus-i3c
8405 F:      Documentation/devicetree/bindings/i3c/
8406 F:      Documentation/driver-api/i3c
8407 F:      drivers/i3c/
8408 F:      include/linux/i3c/
8409
8410 IA64 (Itanium) PLATFORM
8411 M:      Tony Luck <tony.luck@intel.com>
8412 M:      Fenghua Yu <fenghua.yu@intel.com>
8413 L:      linux-ia64@vger.kernel.org
8414 S:      Odd Fixes
8415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8416 F:      Documentation/ia64/
8417 F:      arch/ia64/
8418
8419 IBM Power 842 compression accelerator
8420 M:      Haren Myneni <haren@us.ibm.com>
8421 S:      Supported
8422 F:      crypto/842.c
8423 F:      drivers/crypto/nx/Kconfig
8424 F:      drivers/crypto/nx/Makefile
8425 F:      drivers/crypto/nx/nx-842*
8426 F:      include/linux/sw842.h
8427 F:      lib/842/
8428
8429 IBM Power in-Nest Crypto Acceleration
8430 M:      Breno Leitão <leitao@debian.org>
8431 M:      Nayna Jain <nayna@linux.ibm.com>
8432 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8433 L:      linux-crypto@vger.kernel.org
8434 S:      Supported
8435 F:      drivers/crypto/nx/Kconfig
8436 F:      drivers/crypto/nx/Makefile
8437 F:      drivers/crypto/nx/nx-aes*
8438 F:      drivers/crypto/nx/nx-sha*
8439 F:      drivers/crypto/nx/nx.*
8440 F:      drivers/crypto/nx/nx_csbcpb.h
8441 F:      drivers/crypto/nx/nx_debugfs.c
8442
8443 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8444 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8445 L:      linux-pci@vger.kernel.org
8446 L:      linuxppc-dev@lists.ozlabs.org
8447 S:      Supported
8448 F:      drivers/pci/hotplug/rpadlpar*
8449
8450 IBM Power Linux RAID adapter
8451 M:      Brian King <brking@us.ibm.com>
8452 S:      Supported
8453 F:      drivers/scsi/ipr.*
8454
8455 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8456 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8457 L:      linux-pci@vger.kernel.org
8458 L:      linuxppc-dev@lists.ozlabs.org
8459 S:      Supported
8460 F:      drivers/pci/hotplug/rpaphp*
8461
8462 IBM Power SRIOV Virtual NIC Device Driver
8463 M:      Dany Madden <drt@linux.ibm.com>
8464 M:      Lijun Pan <ljp@linux.ibm.com>
8465 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8466 L:      netdev@vger.kernel.org
8467 S:      Supported
8468 F:      drivers/net/ethernet/ibm/ibmvnic.*
8469
8470 IBM Power Virtual Accelerator Switchboard
8471 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8472 L:      linuxppc-dev@lists.ozlabs.org
8473 S:      Supported
8474 F:      arch/powerpc/include/asm/vas.h
8475 F:      arch/powerpc/platforms/powernv/copy-paste.h
8476 F:      arch/powerpc/platforms/powernv/vas*
8477
8478 IBM Power Virtual Ethernet Device Driver
8479 M:      Cristobal Forno <cforno12@linux.ibm.com>
8480 L:      netdev@vger.kernel.org
8481 S:      Supported
8482 F:      drivers/net/ethernet/ibm/ibmveth.*
8483
8484 IBM Power Virtual FC Device Drivers
8485 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8486 L:      linux-scsi@vger.kernel.org
8487 S:      Supported
8488 F:      drivers/scsi/ibmvscsi/ibmvfc*
8489
8490 IBM Power Virtual Management Channel Driver
8491 M:      Steven Royer <seroyer@linux.ibm.com>
8492 S:      Supported
8493 F:      drivers/misc/ibmvmc.*
8494
8495 IBM Power Virtual SCSI Device Drivers
8496 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8497 L:      linux-scsi@vger.kernel.org
8498 S:      Supported
8499 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8500 F:      include/scsi/viosrp.h
8501
8502 IBM Power Virtual SCSI Device Target Driver
8503 M:      Michael Cyr <mikecyr@linux.ibm.com>
8504 L:      linux-scsi@vger.kernel.org
8505 L:      target-devel@vger.kernel.org
8506 S:      Supported
8507 F:      drivers/scsi/ibmvscsi_tgt/
8508
8509 IBM Power VMX Cryptographic instructions
8510 M:      Breno Leitão <leitao@debian.org>
8511 M:      Nayna Jain <nayna@linux.ibm.com>
8512 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8513 L:      linux-crypto@vger.kernel.org
8514 S:      Supported
8515 F:      drivers/crypto/vmx/Kconfig
8516 F:      drivers/crypto/vmx/Makefile
8517 F:      drivers/crypto/vmx/aes*
8518 F:      drivers/crypto/vmx/ghash*
8519 F:      drivers/crypto/vmx/ppc-xlate.pl
8520 F:      drivers/crypto/vmx/vmx.c
8521
8522 IBM ServeRAID RAID DRIVER
8523 S:      Orphan
8524 F:      drivers/scsi/ips.*
8525
8526 ICH LPC AND GPIO DRIVER
8527 M:      Peter Tyser <ptyser@xes-inc.com>
8528 S:      Maintained
8529 F:      drivers/gpio/gpio-ich.c
8530 F:      drivers/mfd/lpc_ich.c
8531
8532 ICY I2C DRIVER
8533 M:      Max Staudt <max@enpas.org>
8534 L:      linux-i2c@vger.kernel.org
8535 S:      Maintained
8536 F:      drivers/i2c/busses/i2c-icy.c
8537
8538 IDE SUBSYSTEM
8539 M:      "David S. Miller" <davem@davemloft.net>
8540 L:      linux-ide@vger.kernel.org
8541 S:      Maintained
8542 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8544 F:      Documentation/ide/
8545 F:      drivers/ide/
8546 F:      include/linux/ide.h
8547
8548 IDE/ATAPI DRIVERS
8549 M:      Borislav Petkov <bp@alien8.de>
8550 L:      linux-ide@vger.kernel.org
8551 S:      Maintained
8552 F:      Documentation/cdrom/ide-cd.rst
8553 F:      drivers/ide/ide-cd*
8554
8555 IDEAPAD LAPTOP EXTRAS DRIVER
8556 M:      Ike Panhc <ike.pan@canonical.com>
8557 L:      platform-driver-x86@vger.kernel.org
8558 S:      Maintained
8559 W:      http://launchpad.net/ideapad-laptop
8560 F:      drivers/platform/x86/ideapad-laptop.c
8561
8562 IDEAPAD LAPTOP SLIDEBAR DRIVER
8563 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8564 L:      linux-input@vger.kernel.org
8565 S:      Maintained
8566 W:      https://github.com/o2genum/ideapad-slidebar
8567 F:      drivers/input/misc/ideapad_slidebar.c
8568
8569 IDT VersaClock 5 CLOCK DRIVER
8570 M:      Luca Ceresoli <luca@lucaceresoli.net>
8571 S:      Maintained
8572 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
8573 F:      drivers/clk/clk-versaclock5.c
8574
8575 IEEE 802.15.4 SUBSYSTEM
8576 M:      Alexander Aring <alex.aring@gmail.com>
8577 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8578 L:      linux-wpan@vger.kernel.org
8579 S:      Maintained
8580 W:      https://linux-wpan.org/
8581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8583 F:      Documentation/networking/ieee802154.rst
8584 F:      drivers/net/ieee802154/
8585 F:      include/linux/ieee802154.h
8586 F:      include/linux/nl802154.h
8587 F:      include/net/af_ieee802154.h
8588 F:      include/net/cfg802154.h
8589 F:      include/net/ieee802154_netdev.h
8590 F:      include/net/mac802154.h
8591 F:      include/net/nl802154.h
8592 F:      net/ieee802154/
8593 F:      net/mac802154/
8594
8595 IFE PROTOCOL
8596 M:      Yotam Gigi <yotam.gi@gmail.com>
8597 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8598 F:      include/net/ife.h
8599 F:      include/uapi/linux/ife.h
8600 F:      net/ife
8601
8602 IGORPLUG-USB IR RECEIVER
8603 M:      Sean Young <sean@mess.org>
8604 L:      linux-media@vger.kernel.org
8605 S:      Maintained
8606 F:      drivers/media/rc/igorplugusb.c
8607
8608 IGUANAWORKS USB IR TRANSCEIVER
8609 M:      Sean Young <sean@mess.org>
8610 L:      linux-media@vger.kernel.org
8611 S:      Maintained
8612 F:      drivers/media/rc/iguanair.c
8613
8614 IIO DIGITAL POTENTIOMETER DAC
8615 M:      Peter Rosin <peda@axentia.se>
8616 L:      linux-iio@vger.kernel.org
8617 S:      Maintained
8618 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8619 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8620 F:      drivers/iio/dac/dpot-dac.c
8621
8622 IIO ENVELOPE DETECTOR
8623 M:      Peter Rosin <peda@axentia.se>
8624 L:      linux-iio@vger.kernel.org
8625 S:      Maintained
8626 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8627 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8628 F:      drivers/iio/adc/envelope-detector.c
8629
8630 IIO MULTIPLEXER
8631 M:      Peter Rosin <peda@axentia.se>
8632 L:      linux-iio@vger.kernel.org
8633 S:      Maintained
8634 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8635 F:      drivers/iio/multiplexer/iio-mux.c
8636
8637 IIO SUBSYSTEM AND DRIVERS
8638 M:      Jonathan Cameron <jic23@kernel.org>
8639 R:      Lars-Peter Clausen <lars@metafoo.de>
8640 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
8641 L:      linux-iio@vger.kernel.org
8642 S:      Maintained
8643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8644 F:      Documentation/ABI/testing/configfs-iio*
8645 F:      Documentation/ABI/testing/sysfs-bus-iio*
8646 F:      Documentation/devicetree/bindings/iio/
8647 F:      drivers/iio/
8648 F:      drivers/staging/iio/
8649 F:      include/linux/iio/
8650 F:      tools/iio/
8651
8652 IIO UNIT CONVERTER
8653 M:      Peter Rosin <peda@axentia.se>
8654 L:      linux-iio@vger.kernel.org
8655 S:      Maintained
8656 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8657 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8658 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8659 F:      drivers/iio/afe/iio-rescale.c
8660
8661 IKANOS/ADI EAGLE ADSL USB DRIVER
8662 M:      Matthieu Castet <castet.matthieu@free.fr>
8663 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8664 S:      Maintained
8665 F:      drivers/usb/atm/ueagle-atm.c
8666
8667 IMGTEC ASCII LCD DRIVER
8668 M:      Paul Burton <paulburton@kernel.org>
8669 S:      Maintained
8670 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8671 F:      drivers/auxdisplay/img-ascii-lcd.c
8672
8673 IMGTEC IR DECODER DRIVER
8674 S:      Orphan
8675 F:      drivers/media/rc/img-ir/
8676
8677 IMON SOUNDGRAPH USB IR RECEIVER
8678 M:      Sean Young <sean@mess.org>
8679 L:      linux-media@vger.kernel.org
8680 S:      Maintained
8681 F:      drivers/media/rc/imon.c
8682 F:      drivers/media/rc/imon_raw.c
8683
8684 IMS TWINTURBO FRAMEBUFFER DRIVER
8685 L:      linux-fbdev@vger.kernel.org
8686 S:      Orphan
8687 F:      drivers/video/fbdev/imsttfb.c
8688
8689 INA209 HARDWARE MONITOR DRIVER
8690 M:      Guenter Roeck <linux@roeck-us.net>
8691 L:      linux-hwmon@vger.kernel.org
8692 S:      Maintained
8693 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
8694 F:      Documentation/hwmon/ina209.rst
8695 F:      drivers/hwmon/ina209.c
8696
8697 INA2XX HARDWARE MONITOR DRIVER
8698 M:      Guenter Roeck <linux@roeck-us.net>
8699 L:      linux-hwmon@vger.kernel.org
8700 S:      Maintained
8701 F:      Documentation/hwmon/ina2xx.rst
8702 F:      drivers/hwmon/ina2xx.c
8703 F:      include/linux/platform_data/ina2xx.h
8704
8705 INDUSTRY PACK SUBSYSTEM (IPACK)
8706 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8707 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8708 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8709 L:      industrypack-devel@lists.sourceforge.net
8710 S:      Maintained
8711 W:      http://industrypack.sourceforge.net
8712 F:      drivers/ipack/
8713
8714 INFINEON DPS310 Driver
8715 M:      Eddie James <eajames@linux.ibm.com>
8716 L:      linux-iio@vger.kernel.org
8717 S:      Maintained
8718 F:      drivers/iio/pressure/dps310.c
8719
8720 INFINIBAND SUBSYSTEM
8721 M:      Doug Ledford <dledford@redhat.com>
8722 M:      Jason Gunthorpe <jgg@nvidia.com>
8723 L:      linux-rdma@vger.kernel.org
8724 S:      Supported
8725 W:      https://github.com/linux-rdma/rdma-core
8726 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8728 F:      Documentation/devicetree/bindings/infiniband/
8729 F:      Documentation/infiniband/
8730 F:      drivers/infiniband/
8731 F:      include/rdma/
8732 F:      include/trace/events/ib_mad.h
8733 F:      include/trace/events/ib_umad.h
8734 F:      include/uapi/linux/if_infiniband.h
8735 F:      include/uapi/rdma/
8736 F:      samples/bpf/ibumad_kern.c
8737 F:      samples/bpf/ibumad_user.c
8738
8739 INGENIC JZ4780 DMA Driver
8740 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
8741 S:      Maintained
8742 F:      drivers/dma/dma-jz4780.c
8743
8744 INGENIC JZ4780 NAND DRIVER
8745 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8746 L:      linux-mtd@lists.infradead.org
8747 S:      Maintained
8748 F:      drivers/mtd/nand/raw/ingenic/
8749
8750 INGENIC JZ47xx SoCs
8751 M:      Paul Cercueil <paul@crapouillou.net>
8752 S:      Maintained
8753 F:      arch/mips/boot/dts/ingenic/
8754 F:      arch/mips/generic/board-ingenic.c
8755 F:      arch/mips/include/asm/mach-ingenic/
8756 F:      arch/mips/ingenic/Kconfig
8757 F:      drivers/clk/ingenic/
8758 F:      drivers/dma/dma-jz4780.c
8759 F:      drivers/gpu/drm/ingenic/
8760 F:      drivers/i2c/busses/i2c-jz4780.c
8761 F:      drivers/iio/adc/ingenic-adc.c
8762 F:      drivers/irqchip/irq-ingenic.c
8763 F:      drivers/memory/jz4780-nemc.c
8764 F:      drivers/mmc/host/jz4740_mmc.c
8765 F:      drivers/mtd/nand/raw/ingenic/
8766 F:      drivers/pinctrl/pinctrl-ingenic.c
8767 F:      drivers/power/supply/ingenic-battery.c
8768 F:      drivers/pwm/pwm-jz4740.c
8769 F:      drivers/remoteproc/ingenic_rproc.c
8770 F:      drivers/rtc/rtc-jz4740.c
8771 F:      drivers/tty/serial/8250/8250_ingenic.c
8772 F:      drivers/usb/musb/jz4740.c
8773 F:      drivers/watchdog/jz4740_wdt.c
8774 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8775 F:      include/linux/mfd/ingenic-tcu.h
8776 F:      sound/soc/codecs/jz47*
8777 F:      sound/soc/jz4740/
8778
8779 INOTIFY
8780 M:      Jan Kara <jack@suse.cz>
8781 R:      Amir Goldstein <amir73il@gmail.com>
8782 L:      linux-fsdevel@vger.kernel.org
8783 S:      Maintained
8784 F:      Documentation/filesystems/inotify.rst
8785 F:      fs/notify/inotify/
8786 F:      include/linux/inotify.h
8787 F:      include/uapi/linux/inotify.h
8788
8789 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8790 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8791 L:      linux-input@vger.kernel.org
8792 S:      Maintained
8793 Q:      http://patchwork.kernel.org/project/linux-input/list/
8794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8795 F:      Documentation/devicetree/bindings/input/
8796 F:      Documentation/devicetree/bindings/serio/
8797 F:      Documentation/input/
8798 F:      drivers/input/
8799 F:      include/linux/input.h
8800 F:      include/linux/input/
8801 F:      include/uapi/linux/input-event-codes.h
8802 F:      include/uapi/linux/input.h
8803
8804 INPUT MULTITOUCH (MT) PROTOCOL
8805 M:      Henrik Rydberg <rydberg@bitmath.org>
8806 L:      linux-input@vger.kernel.org
8807 S:      Odd fixes
8808 F:      Documentation/input/multi-touch-protocol.rst
8809 F:      drivers/input/input-mt.c
8810 K:      \b(ABS|SYN)_MT_
8811
8812 INSIDE SECURE CRYPTO DRIVER
8813 M:      Antoine Tenart <atenart@kernel.org>
8814 L:      linux-crypto@vger.kernel.org
8815 S:      Maintained
8816 F:      drivers/crypto/inside-secure/
8817
8818 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8819 M:      Mimi Zohar <zohar@linux.ibm.com>
8820 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8821 L:      linux-integrity@vger.kernel.org
8822 S:      Supported
8823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8824 F:      security/integrity/ima/
8825
8826 INTEL 810/815 FRAMEBUFFER DRIVER
8827 M:      Antonino Daplas <adaplas@gmail.com>
8828 L:      linux-fbdev@vger.kernel.org
8829 S:      Maintained
8830 F:      drivers/video/fbdev/i810/
8831
8832 INTEL ASoC DRIVERS
8833 M:      Cezary Rojewski <cezary.rojewski@intel.com>
8834 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8835 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
8836 M:      Jie Yang <yang.jie@linux.intel.com>
8837 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8838 S:      Supported
8839 F:      sound/soc/intel/
8840
8841 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8842 M:      Hans de Goede <hdegoede@redhat.com>
8843 L:      platform-driver-x86@vger.kernel.org
8844 S:      Maintained
8845 F:      drivers/platform/x86/intel_atomisp2_pm.c
8846
8847 INTEL ATOMISP2 LED DRIVER
8848 M:      Hans de Goede <hdegoede@redhat.com>
8849 L:      platform-driver-x86@vger.kernel.org
8850 S:      Maintained
8851 F:      drivers/platform/x86/intel_atomisp2_led.c
8852
8853 INTEL BROXTON PMC DRIVER
8854 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8855 M:      Zha Qipeng <qipeng.zha@intel.com>
8856 S:      Maintained
8857 F:      drivers/mfd/intel_pmc_bxt.c
8858 F:      include/linux/mfd/intel_pmc_bxt.h
8859
8860 INTEL C600 SERIES SAS CONTROLLER DRIVER
8861 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
8862 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8863 L:      linux-scsi@vger.kernel.org
8864 S:      Supported
8865 T:      git git://git.code.sf.net/p/intel-sas/isci
8866 F:      drivers/scsi/isci/
8867
8868 INTEL CPU family model numbers
8869 M:      Tony Luck <tony.luck@intel.com>
8870 M:      x86@kernel.org
8871 L:      linux-kernel@vger.kernel.org
8872 S:      Supported
8873 F:      arch/x86/include/asm/intel-family.h
8874
8875 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8876 M:      Jani Nikula <jani.nikula@linux.intel.com>
8877 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8878 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
8879 L:      intel-gfx@lists.freedesktop.org
8880 S:      Supported
8881 W:      https://01.org/linuxgraphics/
8882 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8883 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8884 C:      irc://chat.freenode.net/intel-gfx
8885 T:      git git://anongit.freedesktop.org/drm-intel
8886 F:      Documentation/gpu/i915.rst
8887 F:      drivers/gpu/drm/i915/
8888 F:      include/drm/i915*
8889 F:      include/uapi/drm/i915_drm.h
8890
8891 INTEL ETHERNET DRIVERS
8892 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
8893 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
8894 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8895 S:      Supported
8896 W:      http://www.intel.com/support/feedback.htm
8897 W:      http://e1000.sourceforge.net/
8898 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
8900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
8901 F:      Documentation/networking/device_drivers/ethernet/intel/
8902 F:      drivers/net/ethernet/intel/
8903 F:      drivers/net/ethernet/intel/*/
8904 F:      include/linux/avf/virtchnl.h
8905
8906 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8907 M:      Maik Broemme <mbroemme@libmpq.org>
8908 L:      linux-fbdev@vger.kernel.org
8909 S:      Maintained
8910 F:      Documentation/fb/intelfb.rst
8911 F:      drivers/video/fbdev/intelfb/
8912
8913 INTEL GPIO DRIVERS
8914 M:      Andy Shevchenko <andy@kernel.org>
8915 L:      linux-gpio@vger.kernel.org
8916 S:      Maintained
8917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8918 F:      drivers/gpio/gpio-ich.c
8919 F:      drivers/gpio/gpio-intel-mid.c
8920 F:      drivers/gpio/gpio-merrifield.c
8921 F:      drivers/gpio/gpio-ml-ioh.c
8922 F:      drivers/gpio/gpio-pch.c
8923 F:      drivers/gpio/gpio-sch.c
8924 F:      drivers/gpio/gpio-sodaville.c
8925
8926 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8927 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
8928 M:      Zhi Wang <zhi.a.wang@intel.com>
8929 L:      intel-gvt-dev@lists.freedesktop.org
8930 L:      intel-gfx@lists.freedesktop.org
8931 S:      Supported
8932 W:      https://01.org/igvt-g
8933 T:      git https://github.com/intel/gvt-linux.git
8934 F:      drivers/gpu/drm/i915/gvt/
8935
8936 INTEL HID EVENT DRIVER
8937 M:      Alex Hung <alex.hung@canonical.com>
8938 L:      platform-driver-x86@vger.kernel.org
8939 S:      Maintained
8940 F:      drivers/platform/x86/intel-hid.c
8941
8942 INTEL I/OAT DMA DRIVER
8943 M:      Dave Jiang <dave.jiang@intel.com>
8944 R:      Dan Williams <dan.j.williams@intel.com>
8945 L:      dmaengine@vger.kernel.org
8946 S:      Supported
8947 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8948 F:      drivers/dma/ioat*
8949
8950 INTEL IADX DRIVER
8951 M:      Dave Jiang <dave.jiang@intel.com>
8952 L:      dmaengine@vger.kernel.org
8953 S:      Supported
8954 F:      drivers/dma/idxd/*
8955 F:      include/uapi/linux/idxd.h
8956
8957 INTEL IDLE DRIVER
8958 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
8959 M:      Len Brown <lenb@kernel.org>
8960 L:      linux-pm@vger.kernel.org
8961 S:      Supported
8962 B:      https://bugzilla.kernel.org
8963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8964 F:      drivers/idle/intel_idle.c
8965
8966 INTEL INTEGRATED SENSOR HUB DRIVER
8967 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8968 M:      Jiri Kosina <jikos@kernel.org>
8969 L:      linux-input@vger.kernel.org
8970 S:      Maintained
8971 F:      drivers/hid/intel-ish-hid/
8972
8973 INTEL IOMMU (VT-d)
8974 M:      David Woodhouse <dwmw2@infradead.org>
8975 M:      Lu Baolu <baolu.lu@linux.intel.com>
8976 L:      iommu@lists.linux-foundation.org
8977 S:      Supported
8978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8979 F:      drivers/iommu/intel/
8980 F:      include/linux/intel-iommu.h
8981 F:      include/linux/intel-svm.h
8982
8983 INTEL IOP-ADMA DMA DRIVER
8984 R:      Dan Williams <dan.j.williams@intel.com>
8985 S:      Odd fixes
8986 F:      drivers/dma/iop-adma.c
8987
8988 INTEL IPU3 CSI-2 CIO2 DRIVER
8989 M:      Yong Zhi <yong.zhi@intel.com>
8990 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8991 M:      Bingbu Cao <bingbu.cao@intel.com>
8992 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
8993 L:      linux-media@vger.kernel.org
8994 S:      Maintained
8995 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
8996 F:      drivers/media/pci/intel/ipu3/
8997
8998 INTEL IPU3 CSI-2 IMGU DRIVER
8999 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9000 R:      Bingbu Cao <bingbu.cao@intel.com>
9001 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9002 L:      linux-media@vger.kernel.org
9003 S:      Maintained
9004 F:      Documentation/admin-guide/media/ipu3.rst
9005 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9006 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9007 F:      drivers/staging/media/ipu3/
9008
9009 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9010 M:      Krzysztof Halasa <khalasa@piap.pl>
9011 S:      Maintained
9012 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9013 F:      drivers/net/wan/ixp4xx_hss.c
9014 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9015 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9016 F:      include/linux/soc/ixp4xx/npe.h
9017 F:      include/linux/soc/ixp4xx/qmgr.h
9018
9019 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9020 M:      Deepak Saxena <dsaxena@plexity.net>
9021 S:      Maintained
9022 F:      drivers/char/hw_random/ixp4xx-rng.c
9023
9024 INTEL KEEM BAY DRM DRIVER
9025 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9026 M:      Edmund Dea <edmund.j.dea@intel.com>
9027 S:      Maintained
9028 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9029 F:      drivers/gpu/drm/kmb/
9030
9031 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9032 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9033 S:      Maintained
9034 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9035 F:      drivers/crypto/keembay/Kconfig
9036 F:      drivers/crypto/keembay/Makefile
9037 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9038 F:      drivers/crypto/keembay/ocs-aes.c
9039 F:      drivers/crypto/keembay/ocs-aes.h
9040
9041 INTEL MANAGEMENT ENGINE (mei)
9042 M:      Tomas Winkler <tomas.winkler@intel.com>
9043 L:      linux-kernel@vger.kernel.org
9044 S:      Supported
9045 F:      Documentation/driver-api/mei/*
9046 F:      drivers/misc/mei/
9047 F:      drivers/watchdog/mei_wdt.c
9048 F:      include/linux/mei_cl_bus.h
9049 F:      include/uapi/linux/mei.h
9050 F:      samples/mei/*
9051
9052 INTEL MENLOW THERMAL DRIVER
9053 M:      Sujith Thomas <sujith.thomas@intel.com>
9054 L:      platform-driver-x86@vger.kernel.org
9055 S:      Supported
9056 W:      https://01.org/linux-acpi
9057 F:      drivers/platform/x86/intel_menlow.c
9058
9059 INTEL P-Unit IPC DRIVER
9060 M:      Zha Qipeng <qipeng.zha@intel.com>
9061 L:      platform-driver-x86@vger.kernel.org
9062 S:      Maintained
9063 F:      arch/x86/include/asm/intel_punit_ipc.h
9064 F:      drivers/platform/x86/intel_punit_ipc.c
9065
9066 INTEL PMC CORE DRIVER
9067 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9068 M:      David E Box <david.e.box@intel.com>
9069 L:      platform-driver-x86@vger.kernel.org
9070 S:      Maintained
9071 F:      drivers/platform/x86/intel_pmc_core*
9072
9073 INTEL PMIC GPIO DRIVERS
9074 M:      Andy Shevchenko <andy@kernel.org>
9075 S:      Maintained
9076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9077 F:      drivers/gpio/gpio-*cove.c
9078 F:      drivers/gpio/gpio-msic.c
9079
9080 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9081 M:      Andy Shevchenko <andy@kernel.org>
9082 S:      Maintained
9083 F:      drivers/mfd/intel_msic.c
9084 F:      drivers/mfd/intel_soc_pmic*
9085 F:      include/linux/mfd/intel_msic.h
9086 F:      include/linux/mfd/intel_soc_pmic*
9087
9088 INTEL PMT DRIVER
9089 M:      "David E. Box" <david.e.box@linux.intel.com>
9090 S:      Maintained
9091 F:      drivers/mfd/intel_pmt.c
9092 F:      drivers/platform/x86/intel_pmt_*
9093
9094 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9095 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9096 L:      linux-wireless@vger.kernel.org
9097 S:      Maintained
9098 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9099 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9100 F:      drivers/net/wireless/intel/ipw2x00/
9101
9102 INTEL PSTATE DRIVER
9103 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9104 M:      Len Brown <lenb@kernel.org>
9105 L:      linux-pm@vger.kernel.org
9106 S:      Supported
9107 F:      drivers/cpufreq/intel_pstate.c
9108
9109 INTEL RDMA RNIC DRIVER
9110 M:      Faisal Latif <faisal.latif@intel.com>
9111 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9112 L:      linux-rdma@vger.kernel.org
9113 S:      Supported
9114 F:      drivers/infiniband/hw/i40iw/
9115 F:      include/uapi/rdma/i40iw-abi.h
9116
9117 INTEL SCU DRIVERS
9118 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9119 S:      Maintained
9120 F:      arch/x86/include/asm/intel_scu_ipc.h
9121 F:      drivers/platform/x86/intel_scu_*
9122
9123 INTEL SPEED SELECT TECHNOLOGY
9124 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9125 L:      platform-driver-x86@vger.kernel.org
9126 S:      Maintained
9127 F:      drivers/platform/x86/intel_speed_select_if/
9128 F:      include/uapi/linux/isst_if.h
9129 F:      tools/power/x86/intel-speed-select/
9130
9131 INTEL STRATIX10 FIRMWARE DRIVERS
9132 M:      Richard Gong <richard.gong@linux.intel.com>
9133 L:      linux-kernel@vger.kernel.org
9134 S:      Maintained
9135 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9136 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9137 F:      drivers/firmware/stratix10-rsu.c
9138 F:      drivers/firmware/stratix10-svc.c
9139 F:      include/linux/firmware/intel/stratix10-smc.h
9140 F:      include/linux/firmware/intel/stratix10-svc-client.h
9141
9142 INTEL TELEMETRY DRIVER
9143 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
9144 M:      "David E. Box" <david.e.box@linux.intel.com>
9145 L:      platform-driver-x86@vger.kernel.org
9146 S:      Maintained
9147 F:      arch/x86/include/asm/intel_telemetry.h
9148 F:      drivers/platform/x86/intel_telemetry*
9149
9150 INTEL UNCORE FREQUENCY CONTROL
9151 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9152 L:      platform-driver-x86@vger.kernel.org
9153 S:      Maintained
9154 F:      drivers/platform/x86/intel-uncore-frequency.c
9155
9156 INTEL VIRTUAL BUTTON DRIVER
9157 M:      AceLan Kao <acelan.kao@canonical.com>
9158 L:      platform-driver-x86@vger.kernel.org
9159 S:      Maintained
9160 F:      drivers/platform/x86/intel-vbtn.c
9161
9162 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9163 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9164 L:      linux-wireless@vger.kernel.org
9165 S:      Supported
9166 F:      drivers/net/wireless/intel/iwlegacy/
9167
9168 INTEL WIRELESS WIFI LINK (iwlwifi)
9169 M:      Luca Coelho <luciano.coelho@intel.com>
9170 L:      linux-wireless@vger.kernel.org
9171 S:      Supported
9172 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9174 F:      drivers/net/wireless/intel/iwlwifi/
9175
9176 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9177 M:      Jithu Joseph <jithu.joseph@intel.com>
9178 R:      Maurice Ma <maurice.ma@intel.com>
9179 S:      Maintained
9180 W:      https://slimbootloader.github.io/security/firmware-update.html
9181 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
9182
9183 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9184 M:      Mario Limonciello <mario.limonciello@dell.com>
9185 S:      Maintained
9186 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
9187
9188 INTEL(R) TRACE HUB
9189 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9190 S:      Supported
9191 F:      Documentation/trace/intel_th.rst
9192 F:      drivers/hwtracing/intel_th/
9193 F:      include/linux/intel_th.h
9194
9195 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9196 M:      Ning Sun <ning.sun@intel.com>
9197 L:      tboot-devel@lists.sourceforge.net
9198 S:      Supported
9199 W:      http://tboot.sourceforge.net
9200 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9201 F:      Documentation/x86/intel_txt.rst
9202 F:      arch/x86/kernel/tboot.c
9203 F:      include/linux/tboot.h
9204
9205 INTEL SGX
9206 M:      Jarkko Sakkinen <jarkko@kernel.org>
9207 L:      linux-sgx@vger.kernel.org
9208 S:      Supported
9209 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-sgx.git
9211 F:      Documentation/x86/sgx.rst
9212 F:      arch/x86/entry/vdso/vsgx.S
9213 F:      arch/x86/include/uapi/asm/sgx.h
9214 F:      arch/x86/kernel/cpu/sgx/*
9215 F:      tools/testing/selftests/sgx/*
9216 K:      \bSGX_
9217
9218 INTERCONNECT API
9219 M:      Georgi Djakov <georgi.djakov@linaro.org>
9220 L:      linux-pm@vger.kernel.org
9221 S:      Maintained
9222 F:      Documentation/devicetree/bindings/interconnect/
9223 F:      Documentation/driver-api/interconnect.rst
9224 F:      drivers/interconnect/
9225 F:      include/dt-bindings/interconnect/
9226 F:      include/linux/interconnect-provider.h
9227 F:      include/linux/interconnect.h
9228
9229 INVENSENSE ICM-426xx IMU DRIVER
9230 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9231 L:      linux-iio@vger.kernel.org
9232 S:      Maintained
9233 W:      https://invensense.tdk.com/
9234 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9235 F:      drivers/iio/imu/inv_icm42600/
9236
9237 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9238 M:      Linus Walleij <linus.walleij@linaro.org>
9239 L:      linux-iio@vger.kernel.org
9240 S:      Maintained
9241 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
9242 F:      drivers/iio/gyro/mpu3050*
9243
9244 IOC3 ETHERNET DRIVER
9245 M:      Ralf Baechle <ralf@linux-mips.org>
9246 L:      linux-mips@vger.kernel.org
9247 S:      Maintained
9248 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9249
9250 IOMAP FILESYSTEM LIBRARY
9251 M:      Christoph Hellwig <hch@infradead.org>
9252 M:      Darrick J. Wong <darrick.wong@oracle.com>
9253 M:      linux-xfs@vger.kernel.org
9254 M:      linux-fsdevel@vger.kernel.org
9255 L:      linux-xfs@vger.kernel.org
9256 L:      linux-fsdevel@vger.kernel.org
9257 S:      Supported
9258 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9259 F:      fs/iomap/
9260 F:      include/linux/iomap.h
9261
9262 IOMMU DRIVERS
9263 M:      Joerg Roedel <joro@8bytes.org>
9264 M:      Will Deacon <will@kernel.org>
9265 L:      iommu@lists.linux-foundation.org
9266 S:      Maintained
9267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9268 F:      Documentation/devicetree/bindings/iommu/
9269 F:      Documentation/userspace-api/iommu.rst
9270 F:      drivers/iommu/
9271 F:      include/linux/iommu.h
9272 F:      include/linux/iova.h
9273 F:      include/linux/of_iommu.h
9274 F:      include/uapi/linux/iommu.h
9275
9276 IO_URING
9277 M:      Jens Axboe <axboe@kernel.dk>
9278 L:      io-uring@vger.kernel.org
9279 S:      Maintained
9280 T:      git git://git.kernel.dk/linux-block
9281 T:      git git://git.kernel.dk/liburing
9282 F:      fs/io-wq.c
9283 F:      fs/io-wq.h
9284 F:      fs/io_uring.c
9285 F:      include/uapi/linux/io_uring.h
9286
9287 IPMI SUBSYSTEM
9288 M:      Corey Minyard <minyard@acm.org>
9289 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9290 S:      Supported
9291 W:      http://openipmi.sourceforge.net/
9292 F:      Documentation/driver-api/ipmi.rst
9293 F:      Documentation/devicetree/bindings/ipmi/
9294 F:      drivers/char/ipmi/
9295 F:      include/linux/ipmi*
9296 F:      include/uapi/linux/ipmi*
9297
9298 IPS SCSI RAID DRIVER
9299 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9300 L:      linux-scsi@vger.kernel.org
9301 S:      Maintained
9302 W:      http://www.adaptec.com/
9303 F:      drivers/scsi/ips*
9304
9305 IPVS
9306 M:      Wensong Zhang <wensong@linux-vs.org>
9307 M:      Simon Horman <horms@verge.net.au>
9308 M:      Julian Anastasov <ja@ssi.bg>
9309 L:      netdev@vger.kernel.org
9310 L:      lvs-devel@vger.kernel.org
9311 S:      Maintained
9312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9314 F:      Documentation/networking/ipvs-sysctl.rst
9315 F:      include/net/ip_vs.h
9316 F:      include/uapi/linux/ip_vs.h
9317 F:      net/netfilter/ipvs/
9318
9319 IPWIRELESS DRIVER
9320 M:      Jiri Kosina <jikos@kernel.org>
9321 M:      David Sterba <dsterba@suse.com>
9322 S:      Odd Fixes
9323 F:      drivers/tty/ipwireless/
9324
9325 IPX NETWORK LAYER
9326 L:      netdev@vger.kernel.org
9327 S:      Obsolete
9328 F:      include/uapi/linux/ipx.h
9329
9330 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9331 M:      Marc Zyngier <maz@kernel.org>
9332 S:      Maintained
9333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9334 F:      Documentation/core-api/irq/irq-domain.rst
9335 F:      include/linux/irqdomain.h
9336 F:      kernel/irq/irqdomain.c
9337 F:      kernel/irq/msi.c
9338
9339 IRQ SUBSYSTEM
9340 M:      Thomas Gleixner <tglx@linutronix.de>
9341 L:      linux-kernel@vger.kernel.org
9342 S:      Maintained
9343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9344 F:      kernel/irq/
9345
9346 IRQCHIP DRIVERS
9347 M:      Thomas Gleixner <tglx@linutronix.de>
9348 M:      Marc Zyngier <maz@kernel.org>
9349 L:      linux-kernel@vger.kernel.org
9350 S:      Maintained
9351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9352 F:      Documentation/devicetree/bindings/interrupt-controller/
9353 F:      drivers/irqchip/
9354
9355 ISA
9356 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9357 S:      Maintained
9358 F:      Documentation/driver-api/isa.rst
9359 F:      drivers/base/isa.c
9360 F:      include/linux/isa.h
9361
9362 ISA RADIO MODULE
9363 M:      Hans Verkuil <hverkuil@xs4all.nl>
9364 L:      linux-media@vger.kernel.org
9365 S:      Maintained
9366 W:      https://linuxtv.org
9367 T:      git git://linuxtv.org/media_tree.git
9368 F:      drivers/media/radio/radio-isa*
9369
9370 ISAPNP
9371 M:      Jaroslav Kysela <perex@perex.cz>
9372 S:      Maintained
9373 F:      Documentation/driver-api/isapnp.rst
9374 F:      drivers/pnp/isapnp/
9375 F:      include/linux/isapnp.h
9376
9377 ISCSI
9378 M:      Lee Duncan <lduncan@suse.com>
9379 M:      Chris Leech <cleech@redhat.com>
9380 L:      open-iscsi@googlegroups.com
9381 L:      linux-scsi@vger.kernel.org
9382 S:      Maintained
9383 W:      www.open-iscsi.com
9384 F:      drivers/scsi/*iscsi*
9385 F:      include/scsi/*iscsi*
9386
9387 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9388 M:      Peter Jones <pjones@redhat.com>
9389 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9390 S:      Maintained
9391 F:      drivers/firmware/iscsi_ibft*
9392
9393 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9394 M:      Sagi Grimberg <sagi@grimberg.me>
9395 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
9396 L:      linux-rdma@vger.kernel.org
9397 S:      Supported
9398 W:      http://www.openfabrics.org
9399 W:      www.open-iscsi.org
9400 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9401 F:      drivers/infiniband/ulp/iser/
9402
9403 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9404 M:      Sagi Grimberg <sagi@grimberg.me>
9405 L:      linux-rdma@vger.kernel.org
9406 L:      target-devel@vger.kernel.org
9407 S:      Supported
9408 W:      http://www.linux-iscsi.org
9409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9410 F:      drivers/infiniband/ulp/isert
9411
9412 ISDN/CMTP OVER BLUETOOTH
9413 M:      Karsten Keil <isdn@linux-pingi.de>
9414 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9415 L:      netdev@vger.kernel.org
9416 S:      Odd Fixes
9417 W:      http://www.isdn4linux.de
9418 F:      Documentation/isdn/
9419 F:      drivers/isdn/capi/
9420 F:      include/linux/isdn/
9421 F:      include/uapi/linux/isdn/
9422 F:      net/bluetooth/cmtp/
9423
9424 ISDN/mISDN SUBSYSTEM
9425 M:      Karsten Keil <isdn@linux-pingi.de>
9426 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9427 L:      netdev@vger.kernel.org
9428 S:      Maintained
9429 W:      http://www.isdn4linux.de
9430 F:      drivers/isdn/Kconfig
9431 F:      drivers/isdn/Makefile
9432 F:      drivers/isdn/hardware/
9433 F:      drivers/isdn/mISDN/
9434
9435 IT87 HARDWARE MONITORING DRIVER
9436 M:      Jean Delvare <jdelvare@suse.com>
9437 L:      linux-hwmon@vger.kernel.org
9438 S:      Maintained
9439 F:      Documentation/hwmon/it87.rst
9440 F:      drivers/hwmon/it87.c
9441
9442 IT913X MEDIA DRIVER
9443 M:      Antti Palosaari <crope@iki.fi>
9444 L:      linux-media@vger.kernel.org
9445 S:      Maintained
9446 W:      https://linuxtv.org
9447 W:      http://palosaari.fi/linux/
9448 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9449 T:      git git://linuxtv.org/anttip/media_tree.git
9450 F:      drivers/media/tuners/it913x*
9451
9452 IVTV VIDEO4LINUX DRIVER
9453 M:      Andy Walls <awalls@md.metrocast.net>
9454 L:      linux-media@vger.kernel.org
9455 S:      Maintained
9456 W:      https://linuxtv.org
9457 T:      git git://linuxtv.org/media_tree.git
9458 F:      Documentation/admin-guide/media/ivtv*
9459 F:      drivers/media/pci/ivtv/
9460 F:      include/uapi/linux/ivtv*
9461
9462 IX2505V MEDIA DRIVER
9463 M:      Malcolm Priestley <tvboxspy@gmail.com>
9464 L:      linux-media@vger.kernel.org
9465 S:      Maintained
9466 W:      https://linuxtv.org
9467 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9468 F:      drivers/media/dvb-frontends/ix2505v*
9469
9470 JAILHOUSE HYPERVISOR INTERFACE
9471 M:      Jan Kiszka <jan.kiszka@siemens.com>
9472 L:      jailhouse-dev@googlegroups.com
9473 S:      Maintained
9474 F:      arch/x86/include/asm/jailhouse_para.h
9475 F:      arch/x86/kernel/jailhouse.c
9476
9477 JC42.4 TEMPERATURE SENSOR DRIVER
9478 M:      Guenter Roeck <linux@roeck-us.net>
9479 L:      linux-hwmon@vger.kernel.org
9480 S:      Maintained
9481 F:      Documentation/hwmon/jc42.rst
9482 F:      drivers/hwmon/jc42.c
9483
9484 JFS FILESYSTEM
9485 M:      Dave Kleikamp <shaggy@kernel.org>
9486 L:      jfs-discussion@lists.sourceforge.net
9487 S:      Maintained
9488 W:      http://jfs.sourceforge.net/
9489 T:      git git://github.com/kleikamp/linux-shaggy.git
9490 F:      Documentation/admin-guide/jfs.rst
9491 F:      fs/jfs/
9492
9493 JME NETWORK DRIVER
9494 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9495 L:      netdev@vger.kernel.org
9496 S:      Maintained
9497 F:      drivers/net/ethernet/jme.*
9498
9499 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9500 M:      David Woodhouse <dwmw2@infradead.org>
9501 M:      Richard Weinberger <richard@nod.at>
9502 L:      linux-mtd@lists.infradead.org
9503 S:      Odd Fixes
9504 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9505 T:      git git://git.infradead.org/ubifs-2.6.git
9506 F:      fs/jffs2/
9507 F:      include/uapi/linux/jffs2.h
9508
9509 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9510 M:      "Theodore Ts'o" <tytso@mit.edu>
9511 M:      Jan Kara <jack@suse.com>
9512 L:      linux-ext4@vger.kernel.org
9513 S:      Maintained
9514 F:      fs/jbd2/
9515 F:      include/linux/jbd2.h
9516
9517 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9518 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9519 L:      linux-media@vger.kernel.org
9520 S:      Maintained
9521 F:      drivers/media/platform/rcar_jpu.c
9522
9523 JSM Neo PCI based serial card
9524 L:      linux-serial@vger.kernel.org
9525 S:      Orphan
9526 F:      drivers/tty/serial/jsm/
9527
9528 K10TEMP HARDWARE MONITORING DRIVER
9529 M:      Clemens Ladisch <clemens@ladisch.de>
9530 L:      linux-hwmon@vger.kernel.org
9531 S:      Maintained
9532 F:      Documentation/hwmon/k10temp.rst
9533 F:      drivers/hwmon/k10temp.c
9534
9535 K8TEMP HARDWARE MONITORING DRIVER
9536 M:      Rudolf Marek <r.marek@assembler.cz>
9537 L:      linux-hwmon@vger.kernel.org
9538 S:      Maintained
9539 F:      Documentation/hwmon/k8temp.rst
9540 F:      drivers/hwmon/k8temp.c
9541
9542 KASAN
9543 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
9544 R:      Alexander Potapenko <glider@google.com>
9545 R:      Dmitry Vyukov <dvyukov@google.com>
9546 L:      kasan-dev@googlegroups.com
9547 S:      Maintained
9548 F:      Documentation/dev-tools/kasan.rst
9549 F:      arch/*/include/asm/kasan.h
9550 F:      arch/*/mm/kasan_init*
9551 F:      include/linux/kasan*.h
9552 F:      lib/test_kasan.c
9553 F:      mm/kasan/
9554 F:      scripts/Makefile.kasan
9555
9556 KCONFIG
9557 M:      Masahiro Yamada <masahiroy@kernel.org>
9558 L:      linux-kbuild@vger.kernel.org
9559 S:      Maintained
9560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9561 F:      Documentation/kbuild/kconfig*
9562 F:      scripts/Kconfig.include
9563 F:      scripts/kconfig/
9564
9565 KCOV
9566 R:      Dmitry Vyukov <dvyukov@google.com>
9567 R:      Andrey Konovalov <andreyknvl@google.com>
9568 L:      kasan-dev@googlegroups.com
9569 S:      Maintained
9570 F:      Documentation/dev-tools/kcov.rst
9571 F:      include/linux/kcov.h
9572 F:      include/uapi/linux/kcov.h
9573 F:      kernel/kcov.c
9574 F:      scripts/Makefile.kcov
9575
9576 KCSAN
9577 M:      Marco Elver <elver@google.com>
9578 R:      Dmitry Vyukov <dvyukov@google.com>
9579 L:      kasan-dev@googlegroups.com
9580 S:      Maintained
9581 F:      Documentation/dev-tools/kcsan.rst
9582 F:      include/linux/kcsan*.h
9583 F:      kernel/kcsan/
9584 F:      lib/Kconfig.kcsan
9585 F:      scripts/Makefile.kcsan
9586
9587 KDUMP
9588 M:      Dave Young <dyoung@redhat.com>
9589 M:      Baoquan He <bhe@redhat.com>
9590 R:      Vivek Goyal <vgoyal@redhat.com>
9591 L:      kexec@lists.infradead.org
9592 S:      Maintained
9593 W:      http://lse.sourceforge.net/kdump/
9594 F:      Documentation/admin-guide/kdump/
9595 F:      fs/proc/vmcore.c
9596 F:      include/linux/crash_core.h
9597 F:      include/linux/crash_dump.h
9598 F:      include/uapi/linux/vmcore.h
9599 F:      kernel/crash_*.c
9600
9601 KEENE FM RADIO TRANSMITTER DRIVER
9602 M:      Hans Verkuil <hverkuil@xs4all.nl>
9603 L:      linux-media@vger.kernel.org
9604 S:      Maintained
9605 W:      https://linuxtv.org
9606 T:      git git://linuxtv.org/media_tree.git
9607 F:      drivers/media/radio/radio-keene*
9608
9609 KERNEL AUTOMOUNTER
9610 M:      Ian Kent <raven@themaw.net>
9611 L:      autofs@vger.kernel.org
9612 S:      Maintained
9613 F:      fs/autofs/
9614
9615 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9616 M:      Masahiro Yamada <masahiroy@kernel.org>
9617 M:      Michal Marek <michal.lkml@markovi.net>
9618 L:      linux-kbuild@vger.kernel.org
9619 S:      Maintained
9620 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9621 F:      Documentation/kbuild/
9622 F:      Makefile
9623 F:      scripts/*vmlinux*
9624 F:      scripts/Kbuild*
9625 F:      scripts/Makefile*
9626 F:      scripts/basic/
9627 F:      scripts/mk*
9628 F:      scripts/mod/
9629 F:      scripts/package/
9630
9631 KERNEL JANITORS
9632 L:      kernel-janitors@vger.kernel.org
9633 S:      Odd Fixes
9634 W:      http://kernelnewbies.org/KernelJanitors
9635
9636 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9637 M:      "J. Bruce Fields" <bfields@fieldses.org>
9638 M:      Chuck Lever <chuck.lever@oracle.com>
9639 L:      linux-nfs@vger.kernel.org
9640 S:      Supported
9641 W:      http://nfs.sourceforge.net/
9642 T:      git git://linux-nfs.org/~bfields/linux.git
9643 F:      fs/lockd/
9644 F:      fs/nfs_common/
9645 F:      fs/nfsd/
9646 F:      include/linux/lockd/
9647 F:      include/linux/sunrpc/
9648 F:      include/uapi/linux/nfsd/
9649 F:      include/uapi/linux/sunrpc/
9650 F:      net/sunrpc/
9651 F:      Documentation/filesystems/nfs/
9652
9653 KERNEL SELFTEST FRAMEWORK
9654 M:      Shuah Khan <shuah@kernel.org>
9655 M:      Shuah Khan <skhan@linuxfoundation.org>
9656 L:      linux-kselftest@vger.kernel.org
9657 S:      Maintained
9658 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9660 F:      Documentation/dev-tools/kselftest*
9661 F:      tools/testing/selftests/
9662
9663 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9664 M:      Brendan Higgins <brendanhiggins@google.com>
9665 L:      linux-kselftest@vger.kernel.org
9666 L:      kunit-dev@googlegroups.com
9667 S:      Maintained
9668 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9669 F:      Documentation/dev-tools/kunit/
9670 F:      include/kunit/
9671 F:      lib/kunit/
9672 F:      tools/testing/kunit/
9673
9674 KERNEL USERMODE HELPER
9675 M:      Luis Chamberlain <mcgrof@kernel.org>
9676 L:      linux-kernel@vger.kernel.org
9677 S:      Maintained
9678 F:      include/linux/umh.h
9679 F:      kernel/umh.c
9680
9681 KERNEL VIRTUAL MACHINE (KVM)
9682 M:      Paolo Bonzini <pbonzini@redhat.com>
9683 L:      kvm@vger.kernel.org
9684 S:      Supported
9685 W:      http://www.linux-kvm.org
9686 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9687 F:      Documentation/virt/kvm/
9688 F:      include/asm-generic/kvm*
9689 F:      include/kvm/iodev.h
9690 F:      include/linux/kvm*
9691 F:      include/trace/events/kvm.h
9692 F:      include/uapi/asm-generic/kvm*
9693 F:      include/uapi/linux/kvm*
9694 F:      tools/kvm/
9695 F:      tools/testing/selftests/kvm/
9696 F:      virt/kvm/*
9697
9698 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9699 M:      Marc Zyngier <maz@kernel.org>
9700 R:      James Morse <james.morse@arm.com>
9701 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
9702 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
9703 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9704 L:      kvmarm@lists.cs.columbia.edu
9705 S:      Maintained
9706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9707 F:      arch/arm64/include/asm/kvm*
9708 F:      arch/arm64/include/uapi/asm/kvm*
9709 F:      arch/arm64/kvm/
9710 F:      include/kvm/arm_*
9711
9712 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9713 M:      Huacai Chen <chenhc@lemote.com>
9714 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
9715 L:      linux-mips@vger.kernel.org
9716 L:      kvm@vger.kernel.org
9717 S:      Maintained
9718 F:      arch/mips/include/asm/kvm*
9719 F:      arch/mips/include/uapi/asm/kvm*
9720 F:      arch/mips/kvm/
9721
9722 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9723 M:      Paul Mackerras <paulus@ozlabs.org>
9724 L:      kvm-ppc@vger.kernel.org
9725 S:      Supported
9726 W:      http://www.linux-kvm.org/
9727 T:      git git://github.com/agraf/linux-2.6.git
9728 F:      arch/powerpc/include/asm/kvm*
9729 F:      arch/powerpc/include/uapi/asm/kvm*
9730 F:      arch/powerpc/kernel/kvm*
9731 F:      arch/powerpc/kvm/
9732
9733 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9734 M:      Christian Borntraeger <borntraeger@de.ibm.com>
9735 M:      Janosch Frank <frankja@linux.ibm.com>
9736 R:      David Hildenbrand <david@redhat.com>
9737 R:      Cornelia Huck <cohuck@redhat.com>
9738 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
9739 L:      kvm@vger.kernel.org
9740 S:      Supported
9741 W:      http://www.ibm.com/developerworks/linux/linux390/
9742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9743 F:      Documentation/virt/kvm/s390*
9744 F:      arch/s390/include/asm/gmap.h
9745 F:      arch/s390/include/asm/kvm*
9746 F:      arch/s390/include/uapi/asm/kvm*
9747 F:      arch/s390/kernel/uv.c
9748 F:      arch/s390/kvm/
9749 F:      arch/s390/mm/gmap.c
9750 F:      tools/testing/selftests/kvm/*/s390x/
9751 F:      tools/testing/selftests/kvm/s390x/
9752
9753 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9754 M:      Paolo Bonzini <pbonzini@redhat.com>
9755 R:      Sean Christopherson <sean.j.christopherson@intel.com>
9756 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
9757 R:      Wanpeng Li <wanpengli@tencent.com>
9758 R:      Jim Mattson <jmattson@google.com>
9759 R:      Joerg Roedel <joro@8bytes.org>
9760 L:      kvm@vger.kernel.org
9761 S:      Supported
9762 W:      http://www.linux-kvm.org
9763 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9764 F:      arch/x86/include/asm/kvm*
9765 F:      arch/x86/include/asm/pvclock-abi.h
9766 F:      arch/x86/include/asm/svm.h
9767 F:      arch/x86/include/asm/vmx*.h
9768 F:      arch/x86/include/uapi/asm/kvm*
9769 F:      arch/x86/include/uapi/asm/svm.h
9770 F:      arch/x86/include/uapi/asm/vmx.h
9771 F:      arch/x86/kernel/kvm.c
9772 F:      arch/x86/kernel/kvmclock.c
9773 F:      arch/x86/kvm/
9774 F:      arch/x86/kvm/*/
9775
9776 KERNFS
9777 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9778 M:      Tejun Heo <tj@kernel.org>
9779 S:      Supported
9780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9781 F:      fs/kernfs/
9782 F:      include/linux/kernfs.h
9783
9784 KEXEC
9785 M:      Eric Biederman <ebiederm@xmission.com>
9786 L:      kexec@lists.infradead.org
9787 S:      Maintained
9788 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9789 F:      include/linux/kexec.h
9790 F:      include/uapi/linux/kexec.h
9791 F:      kernel/kexec*
9792
9793 KEYS-ENCRYPTED
9794 M:      Mimi Zohar <zohar@linux.ibm.com>
9795 L:      linux-integrity@vger.kernel.org
9796 L:      keyrings@vger.kernel.org
9797 S:      Supported
9798 F:      Documentation/security/keys/trusted-encrypted.rst
9799 F:      include/keys/encrypted-type.h
9800 F:      security/keys/encrypted-keys/
9801
9802 KEYS-TRUSTED
9803 M:      James Bottomley <jejb@linux.ibm.com>
9804 M:      Jarkko Sakkinen <jarkko@kernel.org>
9805 M:      Mimi Zohar <zohar@linux.ibm.com>
9806 L:      linux-integrity@vger.kernel.org
9807 L:      keyrings@vger.kernel.org
9808 S:      Supported
9809 F:      Documentation/security/keys/trusted-encrypted.rst
9810 F:      include/keys/trusted-type.h
9811 F:      include/keys/trusted_tpm.h
9812 F:      security/keys/trusted-keys/
9813
9814 KEYS/KEYRINGS
9815 M:      David Howells <dhowells@redhat.com>
9816 M:      Jarkko Sakkinen <jarkko@kernel.org>
9817 L:      keyrings@vger.kernel.org
9818 S:      Maintained
9819 F:      Documentation/security/keys/core.rst
9820 F:      include/keys/
9821 F:      include/linux/key-type.h
9822 F:      include/linux/key.h
9823 F:      include/linux/keyctl.h
9824 F:      include/uapi/linux/keyctl.h
9825 F:      security/keys/
9826
9827 KFIFO
9828 M:      Stefani Seibold <stefani@seibold.net>
9829 S:      Maintained
9830 F:      include/linux/kfifo.h
9831 F:      lib/kfifo.c
9832 F:      samples/kfifo/
9833
9834 KGDB / KDB /debug_core
9835 M:      Jason Wessel <jason.wessel@windriver.com>
9836 M:      Daniel Thompson <daniel.thompson@linaro.org>
9837 R:      Douglas Anderson <dianders@chromium.org>
9838 L:      kgdb-bugreport@lists.sourceforge.net
9839 S:      Maintained
9840 W:      http://kgdb.wiki.kernel.org/
9841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9842 F:      Documentation/dev-tools/kgdb.rst
9843 F:      drivers/misc/kgdbts.c
9844 F:      drivers/tty/serial/kgdboc.c
9845 F:      include/linux/kdb.h
9846 F:      include/linux/kgdb.h
9847 F:      kernel/debug/
9848
9849 KHADAS MCU MFD DRIVER
9850 M:      Neil Armstrong <narmstrong@baylibre.com>
9851 L:      linux-amlogic@lists.infradead.org
9852 S:      Maintained
9853 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
9854 F:      drivers/mfd/khadas-mcu.c
9855 F:      include/linux/mfd/khadas-mcu.h
9856 F:      drivers/thermal/khadas_mcu_fan.c
9857
9858 KMEMLEAK
9859 M:      Catalin Marinas <catalin.marinas@arm.com>
9860 S:      Maintained
9861 F:      Documentation/dev-tools/kmemleak.rst
9862 F:      include/linux/kmemleak.h
9863 F:      mm/kmemleak.c
9864 F:      samples/kmemleak/kmemleak-test.c
9865
9866 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9867 M:      Luis Chamberlain <mcgrof@kernel.org>
9868 L:      linux-kernel@vger.kernel.org
9869 S:      Maintained
9870 F:      include/linux/kmod.h
9871 F:      kernel/kmod.c
9872 F:      lib/test_kmod.c
9873 F:      tools/testing/selftests/kmod/
9874
9875 KPROBES
9876 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9877 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9878 M:      "David S. Miller" <davem@davemloft.net>
9879 M:      Masami Hiramatsu <mhiramat@kernel.org>
9880 S:      Maintained
9881 F:      Documentation/trace/kprobes.rst
9882 F:      include/asm-generic/kprobes.h
9883 F:      include/linux/kprobes.h
9884 F:      kernel/kprobes.c
9885
9886 KS0108 LCD CONTROLLER DRIVER
9887 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9888 S:      Maintained
9889 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9890 F:      drivers/auxdisplay/ks0108.c
9891 F:      include/linux/ks0108.h
9892
9893 KTD253 BACKLIGHT DRIVER
9894 M:      Linus Walleij <linus.walleij@linaro.org>
9895 S:      Maintained
9896 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
9897 F:      drivers/video/backlight/ktd253-backlight.c
9898
9899 L3MDEV
9900 M:      David Ahern <dsahern@kernel.org>
9901 L:      netdev@vger.kernel.org
9902 S:      Maintained
9903 F:      include/net/l3mdev.h
9904 F:      net/l3mdev
9905
9906 L7 BPF FRAMEWORK
9907 M:      John Fastabend <john.fastabend@gmail.com>
9908 M:      Daniel Borkmann <daniel@iogearbox.net>
9909 M:      Jakub Sitnicki <jakub@cloudflare.com>
9910 M:      Lorenz Bauer <lmb@cloudflare.com>
9911 L:      netdev@vger.kernel.org
9912 L:      bpf@vger.kernel.org
9913 S:      Maintained
9914 F:      include/linux/skmsg.h
9915 F:      net/core/skmsg.c
9916 F:      net/core/sock_map.c
9917 F:      net/ipv4/tcp_bpf.c
9918 F:      net/ipv4/udp_bpf.c
9919
9920 LANTIQ / INTEL Ethernet drivers
9921 M:      Hauke Mehrtens <hauke@hauke-m.de>
9922 L:      netdev@vger.kernel.org
9923 S:      Maintained
9924 F:      drivers/net/dsa/lantiq_gswip.c
9925 F:      drivers/net/dsa/lantiq_pce.h
9926 F:      drivers/net/ethernet/lantiq_xrx200.c
9927 F:      net/dsa/tag_gswip.c
9928
9929 LANTIQ MIPS ARCHITECTURE
9930 M:      John Crispin <john@phrozen.org>
9931 L:      linux-mips@vger.kernel.org
9932 S:      Maintained
9933 F:      arch/mips/lantiq
9934 F:      drivers/soc/lantiq
9935
9936 LASI 53c700 driver for PARISC
9937 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9938 L:      linux-scsi@vger.kernel.org
9939 S:      Maintained
9940 F:      Documentation/scsi/53c700.rst
9941 F:      drivers/scsi/53c700*
9942
9943 LEAKING_ADDRESSES
9944 M:      Tobin C. Harding <me@tobin.cc>
9945 M:      Tycho Andersen <tycho@tycho.pizza>
9946 L:      linux-hardening@vger.kernel.org
9947 S:      Maintained
9948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9949 F:      scripts/leaking_addresses.pl
9950
9951 LED SUBSYSTEM
9952 M:      Pavel Machek <pavel@ucw.cz>
9953 R:      Dan Murphy <dmurphy@ti.com>
9954 L:      linux-leds@vger.kernel.org
9955 S:      Maintained
9956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9957 F:      Documentation/devicetree/bindings/leds/
9958 F:      drivers/leds/
9959 F:      include/linux/leds.h
9960
9961 LEGACY EEPROM DRIVER
9962 M:      Jean Delvare <jdelvare@suse.com>
9963 S:      Maintained
9964 F:      Documentation/misc-devices/eeprom.rst
9965 F:      drivers/misc/eeprom/eeprom.c
9966
9967 LEGO MINDSTORMS EV3
9968 R:      David Lechner <david@lechnology.com>
9969 S:      Maintained
9970 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9971 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9972 F:      drivers/power/supply/lego_ev3_battery.c
9973
9974 LEGO USB Tower driver
9975 M:      Juergen Stuber <starblue@users.sourceforge.net>
9976 L:      legousb-devel@lists.sourceforge.net
9977 S:      Maintained
9978 W:      http://legousb.sourceforge.net/
9979 F:      drivers/usb/misc/legousbtower.c
9980
9981 LG LAPTOP EXTRAS
9982 M:      Matan Ziv-Av <matan@svgalib.org>
9983 L:      platform-driver-x86@vger.kernel.org
9984 S:      Maintained
9985 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9986 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9987 F:      drivers/platform/x86/lg-laptop.c
9988
9989 LG2160 MEDIA DRIVER
9990 M:      Michael Krufky <mkrufky@linuxtv.org>
9991 L:      linux-media@vger.kernel.org
9992 S:      Maintained
9993 W:      https://linuxtv.org
9994 W:      http://github.com/mkrufky
9995 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9996 T:      git git://linuxtv.org/mkrufky/tuners.git
9997 F:      drivers/media/dvb-frontends/lg2160.*
9998
9999 LGDT3305 MEDIA DRIVER
10000 M:      Michael Krufky <mkrufky@linuxtv.org>
10001 L:      linux-media@vger.kernel.org
10002 S:      Maintained
10003 W:      https://linuxtv.org
10004 W:      http://github.com/mkrufky
10005 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10006 T:      git git://linuxtv.org/mkrufky/tuners.git
10007 F:      drivers/media/dvb-frontends/lgdt3305.*
10008
10009 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10010 M:      Viresh Kumar <vireshk@kernel.org>
10011 L:      linux-ide@vger.kernel.org
10012 S:      Maintained
10013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10014 F:      drivers/ata/pata_arasan_cf.c
10015 F:      include/linux/pata_arasan_cf_data.h
10016
10017 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10018 M:      Linus Walleij <linus.walleij@linaro.org>
10019 L:      linux-ide@vger.kernel.org
10020 S:      Maintained
10021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10022 F:      drivers/ata/pata_ftide010.c
10023 F:      drivers/ata/sata_gemini.c
10024 F:      drivers/ata/sata_gemini.h
10025
10026 LIBATA SATA AHCI PLATFORM devices support
10027 M:      Hans de Goede <hdegoede@redhat.com>
10028 M:      Jens Axboe <axboe@kernel.dk>
10029 L:      linux-ide@vger.kernel.org
10030 S:      Maintained
10031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10032 F:      drivers/ata/ahci_platform.c
10033 F:      drivers/ata/libahci_platform.c
10034 F:      include/linux/ahci_platform.h
10035
10036 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10037 M:      Mikael Pettersson <mikpelinux@gmail.com>
10038 L:      linux-ide@vger.kernel.org
10039 S:      Maintained
10040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10041 F:      drivers/ata/sata_promise.*
10042
10043 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10044 M:      Jens Axboe <axboe@kernel.dk>
10045 L:      linux-ide@vger.kernel.org
10046 S:      Maintained
10047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10048 F:      Documentation/devicetree/bindings/ata/
10049 F:      drivers/ata/
10050 F:      include/linux/ata.h
10051 F:      include/linux/libata.h
10052
10053 LIBLOCKDEP
10054 M:      Sasha Levin <alexander.levin@microsoft.com>
10055 S:      Maintained
10056 F:      tools/lib/lockdep/
10057
10058 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10059 M:      Dan Williams <dan.j.williams@intel.com>
10060 M:      Vishal Verma <vishal.l.verma@intel.com>
10061 M:      Dave Jiang <dave.jiang@intel.com>
10062 L:      linux-nvdimm@lists.01.org
10063 S:      Supported
10064 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10065 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10066 F:      drivers/nvdimm/blk.c
10067 F:      drivers/nvdimm/region_devs.c
10068
10069 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10070 M:      Vishal Verma <vishal.l.verma@intel.com>
10071 M:      Dan Williams <dan.j.williams@intel.com>
10072 M:      Dave Jiang <dave.jiang@intel.com>
10073 L:      linux-nvdimm@lists.01.org
10074 S:      Supported
10075 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10076 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10077 F:      drivers/nvdimm/btt*
10078
10079 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10080 M:      Dan Williams <dan.j.williams@intel.com>
10081 M:      Vishal Verma <vishal.l.verma@intel.com>
10082 M:      Dave Jiang <dave.jiang@intel.com>
10083 L:      linux-nvdimm@lists.01.org
10084 S:      Supported
10085 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10086 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10087 F:      drivers/nvdimm/pmem*
10088
10089 LIBNVDIMM: DEVICETREE BINDINGS
10090 M:      Oliver O'Halloran <oohall@gmail.com>
10091 L:      linux-nvdimm@lists.01.org
10092 S:      Supported
10093 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10094 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10095 F:      drivers/nvdimm/of_pmem.c
10096
10097 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10098 M:      Dan Williams <dan.j.williams@intel.com>
10099 M:      Vishal Verma <vishal.l.verma@intel.com>
10100 M:      Dave Jiang <dave.jiang@intel.com>
10101 M:      Ira Weiny <ira.weiny@intel.com>
10102 L:      linux-nvdimm@lists.01.org
10103 S:      Supported
10104 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10105 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10107 F:      drivers/acpi/nfit/*
10108 F:      drivers/nvdimm/*
10109 F:      include/linux/libnvdimm.h
10110 F:      include/linux/nd.h
10111 F:      include/uapi/linux/ndctl.h
10112 F:      tools/testing/nvdimm/
10113
10114 LICENSES and SPDX stuff
10115 M:      Thomas Gleixner <tglx@linutronix.de>
10116 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10117 L:      linux-spdx@vger.kernel.org
10118 S:      Maintained
10119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10120 F:      COPYING
10121 F:      Documentation/process/license-rules.rst
10122 F:      LICENSES/
10123 F:      scripts/spdxcheck-test.sh
10124 F:      scripts/spdxcheck.py
10125
10126 LIGHTNVM PLATFORM SUPPORT
10127 M:      Matias Bjorling <mb@lightnvm.io>
10128 L:      linux-block@vger.kernel.org
10129 S:      Maintained
10130 W:      http://github/OpenChannelSSD
10131 F:      drivers/lightnvm/
10132 F:      include/linux/lightnvm.h
10133 F:      include/uapi/linux/lightnvm.h
10134
10135 LINEAR RANGES HELPERS
10136 M:      Mark Brown <broonie@kernel.org>
10137 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10138 F:      lib/linear_ranges.c
10139 F:      lib/test_linear_ranges.c
10140 F:      include/linux/linear_range.h
10141
10142 LINUX FOR POWER MACINTOSH
10143 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10144 L:      linuxppc-dev@lists.ozlabs.org
10145 S:      Odd Fixes
10146 F:      arch/powerpc/platforms/powermac/
10147 F:      drivers/macintosh/
10148
10149 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10150 M:      Michael Ellerman <mpe@ellerman.id.au>
10151 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10152 R:      Paul Mackerras <paulus@samba.org>
10153 L:      linuxppc-dev@lists.ozlabs.org
10154 S:      Supported
10155 W:      https://github.com/linuxppc/wiki/wiki
10156 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10158 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10159 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10160 F:      Documentation/devicetree/bindings/powerpc/
10161 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10162 F:      Documentation/powerpc/
10163 F:      arch/powerpc/
10164 F:      drivers/*/*/*pasemi*
10165 F:      drivers/*/*pasemi*
10166 F:      drivers/char/tpm/tpm_ibmvtpm*
10167 F:      drivers/crypto/nx/
10168 F:      drivers/crypto/vmx/
10169 F:      drivers/i2c/busses/i2c-opal.c
10170 F:      drivers/net/ethernet/ibm/ibmveth.*
10171 F:      drivers/net/ethernet/ibm/ibmvnic.*
10172 F:      drivers/pci/hotplug/pnv_php.c
10173 F:      drivers/pci/hotplug/rpa*
10174 F:      drivers/rtc/rtc-opal.c
10175 F:      drivers/scsi/ibmvscsi/
10176 F:      drivers/tty/hvc/hvc_opal.c
10177 F:      drivers/watchdog/wdrtas.c
10178 F:      tools/testing/selftests/powerpc
10179 N:      /pmac
10180 N:      powermac
10181 N:      powernv
10182 N:      [^a-z0-9]ps3
10183 N:      pseries
10184
10185 LINUX FOR POWERPC EMBEDDED MPC5XXX
10186 M:      Anatolij Gustschin <agust@denx.de>
10187 L:      linuxppc-dev@lists.ozlabs.org
10188 S:      Odd Fixes
10189 F:      arch/powerpc/platforms/512x/
10190 F:      arch/powerpc/platforms/52xx/
10191
10192 LINUX FOR POWERPC EMBEDDED PPC4XX
10193 L:      linuxppc-dev@lists.ozlabs.org
10194 S:      Orphan
10195 F:      arch/powerpc/platforms/40x/
10196 F:      arch/powerpc/platforms/44x/
10197
10198 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10199 M:      Scott Wood <oss@buserror.net>
10200 L:      linuxppc-dev@lists.ozlabs.org
10201 S:      Odd fixes
10202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10203 F:      Documentation/devicetree/bindings/powerpc/fsl/
10204 F:      arch/powerpc/platforms/83xx/
10205 F:      arch/powerpc/platforms/85xx/
10206
10207 LINUX FOR POWERPC EMBEDDED PPC8XX
10208 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10209 L:      linuxppc-dev@lists.ozlabs.org
10210 S:      Maintained
10211 F:      arch/powerpc/platforms/8xx/
10212
10213 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10214 M:      Kees Cook <keescook@chromium.org>
10215 S:      Maintained
10216 F:      drivers/misc/lkdtm/*
10217 F:      tools/testing/selftests/lkdtm/*
10218
10219 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10220 M:      Alan Stern <stern@rowland.harvard.edu>
10221 M:      Andrea Parri <parri.andrea@gmail.com>
10222 M:      Will Deacon <will@kernel.org>
10223 M:      Peter Zijlstra <peterz@infradead.org>
10224 M:      Boqun Feng <boqun.feng@gmail.com>
10225 M:      Nicholas Piggin <npiggin@gmail.com>
10226 M:      David Howells <dhowells@redhat.com>
10227 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10228 M:      Luc Maranget <luc.maranget@inria.fr>
10229 M:      "Paul E. McKenney" <paulmck@kernel.org>
10230 R:      Akira Yokosawa <akiyks@gmail.com>
10231 R:      Daniel Lustig <dlustig@nvidia.com>
10232 R:      Joel Fernandes <joel@joelfernandes.org>
10233 L:      linux-kernel@vger.kernel.org
10234 L:      linux-arch@vger.kernel.org
10235 S:      Supported
10236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10237 F:      Documentation/atomic_bitops.txt
10238 F:      Documentation/atomic_t.txt
10239 F:      Documentation/core-api/atomic_ops.rst
10240 F:      Documentation/core-api/refcount-vs-atomic.rst
10241 F:      Documentation/litmus-tests/
10242 F:      Documentation/memory-barriers.txt
10243 F:      tools/memory-model/
10244
10245 LIS3LV02D ACCELEROMETER DRIVER
10246 M:      Eric Piel <eric.piel@tremplin-utc.net>
10247 S:      Maintained
10248 F:      Documentation/misc-devices/lis3lv02d.rst
10249 F:      drivers/misc/lis3lv02d/
10250 F:      drivers/platform/x86/hp_accel.c
10251
10252 LIST KUNIT TEST
10253 M:      David Gow <davidgow@google.com>
10254 L:      linux-kselftest@vger.kernel.org
10255 L:      kunit-dev@googlegroups.com
10256 S:      Maintained
10257 F:      lib/list-test.c
10258
10259 LIVE PATCHING
10260 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10261 M:      Jiri Kosina <jikos@kernel.org>
10262 M:      Miroslav Benes <mbenes@suse.cz>
10263 M:      Petr Mladek <pmladek@suse.com>
10264 R:      Joe Lawrence <joe.lawrence@redhat.com>
10265 L:      live-patching@vger.kernel.org
10266 S:      Maintained
10267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10268 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10269 F:      Documentation/livepatch/
10270 F:      arch/powerpc/include/asm/livepatch.h
10271 F:      arch/s390/include/asm/livepatch.h
10272 F:      arch/x86/include/asm/livepatch.h
10273 F:      include/linux/livepatch.h
10274 F:      kernel/livepatch/
10275 F:      lib/livepatch/
10276 F:      samples/livepatch/
10277 F:      tools/testing/selftests/livepatch/
10278
10279 LLC (802.2)
10280 L:      netdev@vger.kernel.org
10281 S:      Odd fixes
10282 F:      include/linux/llc.h
10283 F:      include/net/llc*
10284 F:      include/uapi/linux/llc.h
10285 F:      net/llc/
10286
10287 LM73 HARDWARE MONITOR DRIVER
10288 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10289 L:      linux-hwmon@vger.kernel.org
10290 S:      Maintained
10291 F:      drivers/hwmon/lm73.c
10292
10293 LM78 HARDWARE MONITOR DRIVER
10294 M:      Jean Delvare <jdelvare@suse.com>
10295 L:      linux-hwmon@vger.kernel.org
10296 S:      Maintained
10297 F:      Documentation/hwmon/lm78.rst
10298 F:      drivers/hwmon/lm78.c
10299
10300 LM83 HARDWARE MONITOR DRIVER
10301 M:      Jean Delvare <jdelvare@suse.com>
10302 L:      linux-hwmon@vger.kernel.org
10303 S:      Maintained
10304 F:      Documentation/hwmon/lm83.rst
10305 F:      drivers/hwmon/lm83.c
10306
10307 LM90 HARDWARE MONITOR DRIVER
10308 M:      Jean Delvare <jdelvare@suse.com>
10309 L:      linux-hwmon@vger.kernel.org
10310 S:      Maintained
10311 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10312 F:      Documentation/hwmon/lm90.rst
10313 F:      drivers/hwmon/lm90.c
10314 F:      include/dt-bindings/thermal/lm90.h
10315
10316 LM95234 HARDWARE MONITOR DRIVER
10317 M:      Guenter Roeck <linux@roeck-us.net>
10318 L:      linux-hwmon@vger.kernel.org
10319 S:      Maintained
10320 F:      Documentation/hwmon/lm95234.rst
10321 F:      drivers/hwmon/lm95234.c
10322
10323 LME2510 MEDIA DRIVER
10324 M:      Malcolm Priestley <tvboxspy@gmail.com>
10325 L:      linux-media@vger.kernel.org
10326 S:      Maintained
10327 W:      https://linuxtv.org
10328 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10329 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10330
10331 LOADPIN SECURITY MODULE
10332 M:      Kees Cook <keescook@chromium.org>
10333 S:      Supported
10334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10335 F:      Documentation/admin-guide/LSM/LoadPin.rst
10336 F:      security/loadpin/
10337
10338 LOCKING PRIMITIVES
10339 M:      Peter Zijlstra <peterz@infradead.org>
10340 M:      Ingo Molnar <mingo@redhat.com>
10341 M:      Will Deacon <will@kernel.org>
10342 L:      linux-kernel@vger.kernel.org
10343 S:      Maintained
10344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10345 F:      Documentation/locking/
10346 F:      arch/*/include/asm/spinlock*.h
10347 F:      include/linux/lockdep.h
10348 F:      include/linux/mutex*.h
10349 F:      include/linux/rwlock*.h
10350 F:      include/linux/rwsem*.h
10351 F:      include/linux/seqlock.h
10352 F:      include/linux/spinlock*.h
10353 F:      kernel/locking/
10354 F:      lib/locking*.[ch]
10355 X:      kernel/locking/locktorture.c
10356
10357 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10358 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
10359 L:      linux-ntfs-dev@lists.sourceforge.net
10360 S:      Maintained
10361 W:      http://www.linux-ntfs.org/content/view/19/37/
10362 F:      Documentation/admin-guide/ldm.rst
10363 F:      block/partitions/ldm.*
10364
10365 LOGITECH HID GAMING KEYBOARDS
10366 M:      Hans de Goede <hdegoede@redhat.com>
10367 L:      linux-input@vger.kernel.org
10368 S:      Maintained
10369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10370 F:      drivers/hid/hid-lg-g15.c
10371
10372 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10373 M:      Sathya Prakash <sathya.prakash@broadcom.com>
10374 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10375 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10376 L:      MPT-FusionLinux.pdl@broadcom.com
10377 L:      linux-scsi@vger.kernel.org
10378 S:      Supported
10379 W:      http://www.avagotech.com/support/
10380 F:      drivers/message/fusion/
10381 F:      drivers/scsi/mpt3sas/
10382
10383 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10384 M:      Matthew Wilcox <willy@infradead.org>
10385 L:      linux-scsi@vger.kernel.org
10386 S:      Maintained
10387 F:      drivers/scsi/sym53c8xx_2/
10388
10389 LTC1660 DAC DRIVER
10390 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10391 L:      linux-iio@vger.kernel.org
10392 S:      Maintained
10393 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10394 F:      drivers/iio/dac/ltc1660.c
10395
10396 LTC2947 HARDWARE MONITOR DRIVER
10397 M:      Nuno Sá <nuno.sa@analog.com>
10398 L:      linux-hwmon@vger.kernel.org
10399 S:      Supported
10400 W:      http://ez.analog.com/community/linux-device-drivers
10401 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10402 F:      drivers/hwmon/ltc2947-core.c
10403 F:      drivers/hwmon/ltc2947-i2c.c
10404 F:      drivers/hwmon/ltc2947-spi.c
10405 F:      drivers/hwmon/ltc2947.h
10406
10407 LTC2983 IIO TEMPERATURE DRIVER
10408 M:      Nuno Sá <nuno.sa@analog.com>
10409 L:      linux-iio@vger.kernel.org
10410 S:      Supported
10411 W:      http://ez.analog.com/community/linux-device-drivers
10412 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10413 F:      drivers/iio/temperature/ltc2983.c
10414
10415 LTC4261 HARDWARE MONITOR DRIVER
10416 M:      Guenter Roeck <linux@roeck-us.net>
10417 L:      linux-hwmon@vger.kernel.org
10418 S:      Maintained
10419 F:      Documentation/hwmon/ltc4261.rst
10420 F:      drivers/hwmon/ltc4261.c
10421
10422 LTC4306 I2C MULTIPLEXER DRIVER
10423 M:      Michael Hennerich <michael.hennerich@analog.com>
10424 L:      linux-i2c@vger.kernel.org
10425 S:      Supported
10426 W:      http://ez.analog.com/community/linux-device-drivers
10427 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10428 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10429
10430 LTP (Linux Test Project)
10431 M:      Mike Frysinger <vapier@gentoo.org>
10432 M:      Cyril Hrubis <chrubis@suse.cz>
10433 M:      Wanlong Gao <wanlong.gao@gmail.com>
10434 M:      Jan Stancek <jstancek@redhat.com>
10435 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10436 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
10437 L:      ltp@lists.linux.it (subscribers-only)
10438 S:      Maintained
10439 W:      http://linux-test-project.github.io/
10440 T:      git git://github.com/linux-test-project/ltp.git
10441
10442 LYNX PCS MODULE
10443 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
10444 L:      netdev@vger.kernel.org
10445 S:      Supported
10446 F:      drivers/net/pcs/pcs-lynx.c
10447 F:      include/linux/pcs-lynx.h
10448
10449 M68K ARCHITECTURE
10450 M:      Geert Uytterhoeven <geert@linux-m68k.org>
10451 L:      linux-m68k@lists.linux-m68k.org
10452 S:      Maintained
10453 W:      http://www.linux-m68k.org/
10454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10455 F:      arch/m68k/
10456 F:      drivers/zorro/
10457
10458 M68K ON APPLE MACINTOSH
10459 M:      Joshua Thompson <funaho@jurai.org>
10460 L:      linux-m68k@lists.linux-m68k.org
10461 S:      Maintained
10462 W:      http://www.mac.linux-m68k.org/
10463 F:      arch/m68k/mac/
10464 F:      drivers/macintosh/adb-iop.c
10465 F:      drivers/macintosh/via-macii.c
10466
10467 M68K ON HP9000/300
10468 M:      Philip Blundell <philb@gnu.org>
10469 S:      Maintained
10470 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10471 F:      arch/m68k/hp300/
10472
10473 M88DS3103 MEDIA DRIVER
10474 M:      Antti Palosaari <crope@iki.fi>
10475 L:      linux-media@vger.kernel.org
10476 S:      Maintained
10477 W:      https://linuxtv.org
10478 W:      http://palosaari.fi/linux/
10479 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10480 T:      git git://linuxtv.org/anttip/media_tree.git
10481 F:      drivers/media/dvb-frontends/m88ds3103*
10482
10483 M88RS2000 MEDIA DRIVER
10484 M:      Malcolm Priestley <tvboxspy@gmail.com>
10485 L:      linux-media@vger.kernel.org
10486 S:      Maintained
10487 W:      https://linuxtv.org
10488 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10489 F:      drivers/media/dvb-frontends/m88rs2000*
10490
10491 MA901 MASTERKIT USB FM RADIO DRIVER
10492 M:      Alexey Klimov <klimov.linux@gmail.com>
10493 L:      linux-media@vger.kernel.org
10494 S:      Maintained
10495 T:      git git://linuxtv.org/media_tree.git
10496 F:      drivers/media/radio/radio-ma901.c
10497
10498 MAC80211
10499 M:      Johannes Berg <johannes@sipsolutions.net>
10500 L:      linux-wireless@vger.kernel.org
10501 S:      Maintained
10502 W:      https://wireless.wiki.kernel.org/
10503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10505 F:      Documentation/networking/mac80211-injection.rst
10506 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10507 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10508 F:      include/net/mac80211.h
10509 F:      net/mac80211/
10510
10511 MAILBOX API
10512 M:      Jassi Brar <jassisinghbrar@gmail.com>
10513 L:      linux-kernel@vger.kernel.org
10514 S:      Maintained
10515 F:      drivers/mailbox/
10516 F:      include/linux/mailbox_client.h
10517 F:      include/linux/mailbox_controller.h
10518
10519 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10520 M:      Michael Kerrisk <mtk.manpages@gmail.com>
10521 L:      linux-man@vger.kernel.org
10522 S:      Maintained
10523 W:      http://www.kernel.org/doc/man-pages
10524
10525 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10526 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
10527 L:      linux-mips@vger.kernel.org
10528 S:      Maintained
10529 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10530
10531 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10532 M:      Andrew Lunn <andrew@lunn.ch>
10533 M:      Vivien Didelot <vivien.didelot@gmail.com>
10534 L:      netdev@vger.kernel.org
10535 S:      Maintained
10536 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10537 F:      Documentation/networking/devlink/mv88e6xxx.rst
10538 F:      drivers/net/dsa/mv88e6xxx/
10539 F:      include/linux/platform_data/mv88e6xxx.h
10540
10541 MARVELL ARMADA 3700 PHY DRIVERS
10542 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10543 S:      Maintained
10544 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10545 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10546 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10547 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10548
10549 MARVELL ARMADA DRM SUPPORT
10550 M:      Russell King <linux@armlinux.org.uk>
10551 S:      Maintained
10552 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10553 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10554 F:      Documentation/devicetree/bindings/display/armada/
10555 F:      drivers/gpu/drm/armada/
10556 F:      include/uapi/drm/armada_drm.h
10557
10558 MARVELL CRYPTO DRIVER
10559 M:      Boris Brezillon <bbrezillon@kernel.org>
10560 M:      Arnaud Ebalard <arno@natisbad.org>
10561 M:      Srujana Challa <schalla@marvell.com>
10562 L:      linux-crypto@vger.kernel.org
10563 S:      Maintained
10564 F:      drivers/crypto/marvell/
10565 F:      include/linux/soc/marvell/octeontx2/
10566
10567 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10568 M:      Mirko Lindner <mlindner@marvell.com>
10569 M:      Stephen Hemminger <stephen@networkplumber.org>
10570 L:      netdev@vger.kernel.org
10571 S:      Maintained
10572 F:      drivers/net/ethernet/marvell/sk*
10573
10574 MARVELL LIBERTAS WIRELESS DRIVER
10575 L:      libertas-dev@lists.infradead.org
10576 S:      Orphan
10577 F:      drivers/net/wireless/marvell/libertas/
10578
10579 MARVELL MACCHIATOBIN SUPPORT
10580 M:      Russell King <linux@armlinux.org.uk>
10581 L:      linux-arm-kernel@lists.infradead.org
10582 S:      Maintained
10583 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10584
10585 MARVELL MV643XX ETHERNET DRIVER
10586 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
10587 L:      netdev@vger.kernel.org
10588 S:      Maintained
10589 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10590 F:      include/linux/mv643xx.h
10591
10592 MARVELL MV88X3310 PHY DRIVER
10593 M:      Russell King <linux@armlinux.org.uk>
10594 L:      netdev@vger.kernel.org
10595 S:      Maintained
10596 F:      drivers/net/phy/marvell10g.c
10597
10598 MARVELL MVEBU THERMAL DRIVER
10599 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10600 S:      Maintained
10601 F:      drivers/thermal/armada_thermal.c
10602
10603 MARVELL MVNETA ETHERNET DRIVER
10604 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10605 L:      netdev@vger.kernel.org
10606 S:      Maintained
10607 F:      drivers/net/ethernet/marvell/mvneta.*
10608
10609 MARVELL MVPP2 ETHERNET DRIVER
10610 M:      Marcin Wojtas <mw@semihalf.com>
10611 M:      Russell King <linux@armlinux.org.uk>
10612 L:      netdev@vger.kernel.org
10613 S:      Maintained
10614 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
10615 F:      drivers/net/ethernet/marvell/mvpp2/
10616
10617 MARVELL MWIFIEX WIRELESS DRIVER
10618 M:      Amitkumar Karwar <amitkarwar@gmail.com>
10619 M:      Ganapathi Bhat <ganapathi.bhat@nxp.com>
10620 M:      Xinming Hu <huxinming820@gmail.com>
10621 L:      linux-wireless@vger.kernel.org
10622 S:      Maintained
10623 F:      drivers/net/wireless/marvell/mwifiex/
10624
10625 MARVELL MWL8K WIRELESS DRIVER
10626 M:      Lennert Buytenhek <buytenh@wantstofly.org>
10627 L:      linux-wireless@vger.kernel.org
10628 S:      Odd Fixes
10629 F:      drivers/net/wireless/marvell/mwl8k.c
10630
10631 MARVELL NAND CONTROLLER DRIVER
10632 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10633 L:      linux-mtd@lists.infradead.org
10634 S:      Maintained
10635 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10636 F:      drivers/mtd/nand/raw/marvell_nand.c
10637
10638 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10639 M:      Sunil Goutham <sgoutham@marvell.com>
10640 M:      Geetha sowjanya <gakula@marvell.com>
10641 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10642 M:      hariprasad <hkelam@marvell.com>
10643 L:      netdev@vger.kernel.org
10644 S:      Supported
10645 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10646 F:      include/linux/soc/marvell/octeontx2/
10647
10648 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10649 M:      Sunil Goutham <sgoutham@marvell.com>
10650 M:      Linu Cherian <lcherian@marvell.com>
10651 M:      Geetha sowjanya <gakula@marvell.com>
10652 M:      Jerin Jacob <jerinj@marvell.com>
10653 L:      netdev@vger.kernel.org
10654 S:      Supported
10655 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
10656 F:      drivers/net/ethernet/marvell/octeontx2/af/
10657
10658 MARVELL PRESTERA ETHERNET SWITCH DRIVER
10659 M:      Vadym Kochan <vkochan@marvell.com>
10660 M:      Taras Chornyi <tchornyi@marvell.com>
10661 S:      Supported
10662 W:      https://github.com/Marvell-switching/switchdev-prestera
10663 F:      drivers/net/ethernet/marvell/prestera/
10664
10665 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10666 M:      Nicolas Pitre <nico@fluxnic.net>
10667 S:      Odd Fixes
10668 F:      drivers/mmc/host/mvsdio.*
10669
10670 MARVELL USB MDIO CONTROLLER DRIVER
10671 M:      Tobias Waldekranz <tobias@waldekranz.com>
10672 L:      netdev@vger.kernel.org
10673 S:      Maintained
10674 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10675 F:      drivers/net/mdio/mdio-mvusb.c
10676
10677 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10678 M:      Hu Ziji <huziji@marvell.com>
10679 L:      linux-mmc@vger.kernel.org
10680 S:      Supported
10681 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10682 F:      drivers/mmc/host/sdhci-xenon*
10683
10684 MATROX FRAMEBUFFER DRIVER
10685 L:      linux-fbdev@vger.kernel.org
10686 S:      Orphan
10687 F:      drivers/video/fbdev/matrox/matroxfb_*
10688 F:      include/uapi/linux/matroxfb.h
10689
10690 MAX16065 HARDWARE MONITOR DRIVER
10691 M:      Guenter Roeck <linux@roeck-us.net>
10692 L:      linux-hwmon@vger.kernel.org
10693 S:      Maintained
10694 F:      Documentation/hwmon/max16065.rst
10695 F:      drivers/hwmon/max16065.c
10696
10697 MAX2175 SDR TUNER DRIVER
10698 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10699 L:      linux-media@vger.kernel.org
10700 S:      Maintained
10701 T:      git git://linuxtv.org/media_tree.git
10702 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10703 F:      Documentation/userspace-api/media/drivers/max2175.rst
10704 F:      drivers/media/i2c/max2175*
10705 F:      include/uapi/linux/max2175.h
10706
10707 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10708 L:      linux-hwmon@vger.kernel.org
10709 S:      Orphan
10710 F:      Documentation/hwmon/max6650.rst
10711 F:      drivers/hwmon/max6650.c
10712
10713 MAX6697 HARDWARE MONITOR DRIVER
10714 M:      Guenter Roeck <linux@roeck-us.net>
10715 L:      linux-hwmon@vger.kernel.org
10716 S:      Maintained
10717 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10718 F:      Documentation/hwmon/max6697.rst
10719 F:      drivers/hwmon/max6697.c
10720 F:      include/linux/platform_data/max6697.h
10721
10722 MAX9286 QUAD GMSL DESERIALIZER DRIVER
10723 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
10724 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10725 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
10726 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
10727 L:      linux-media@vger.kernel.org
10728 S:      Maintained
10729 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
10730 F:      drivers/media/i2c/max9286.c
10731
10732 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10733 M:      Peter Rosin <peda@axentia.se>
10734 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10735 S:      Maintained
10736 F:      Documentation/devicetree/bindings/sound/max9860.txt
10737 F:      sound/soc/codecs/max9860.*
10738
10739 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10740 M:      Andreas Klinger <ak@it-klinger.de>
10741 L:      linux-iio@vger.kernel.org
10742 S:      Maintained
10743 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10744 F:      drivers/iio/proximity/mb1232.c
10745
10746 MAXIM MAX77650 PMIC MFD DRIVER
10747 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
10748 L:      linux-kernel@vger.kernel.org
10749 S:      Maintained
10750 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10751 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10752 F:      drivers/gpio/gpio-max77650.c
10753 F:      drivers/input/misc/max77650-onkey.c
10754 F:      drivers/leds/leds-max77650.c
10755 F:      drivers/mfd/max77650.c
10756 F:      drivers/power/supply/max77650-charger.c
10757 F:      drivers/regulator/max77650-regulator.c
10758 F:      include/linux/mfd/max77650.h
10759
10760 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10761 M:      Javier Martinez Canillas <javier@dowhile0.org>
10762 L:      linux-kernel@vger.kernel.org
10763 S:      Supported
10764 F:      Documentation/devicetree/bindings/*/*max77802.txt
10765 F:      drivers/regulator/max77802-regulator.c
10766 F:      include/dt-bindings/*/*max77802.h
10767
10768 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10769 M:      Krzysztof Kozlowski <krzk@kernel.org>
10770 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10771 L:      linux-pm@vger.kernel.org
10772 S:      Supported
10773 F:      drivers/power/supply/max14577_charger.c
10774 F:      drivers/power/supply/max77693_charger.c
10775
10776 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10777 M:      Chanwoo Choi <cw00.choi@samsung.com>
10778 M:      Krzysztof Kozlowski <krzk@kernel.org>
10779 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10780 L:      linux-kernel@vger.kernel.org
10781 S:      Supported
10782 F:      Documentation/devicetree/bindings/*/max77686.txt
10783 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10784 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10785 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10786 F:      drivers/*/max14577*.c
10787 F:      drivers/*/max77686*.c
10788 F:      drivers/*/max77693*.c
10789 F:      drivers/clk/clk-max77686.c
10790 F:      drivers/extcon/extcon-max14577.c
10791 F:      drivers/extcon/extcon-max77693.c
10792 F:      drivers/rtc/rtc-max77686.c
10793 F:      include/linux/mfd/max14577*.h
10794 F:      include/linux/mfd/max77686*.h
10795 F:      include/linux/mfd/max77693*.h
10796
10797 MAXIRADIO FM RADIO RECEIVER DRIVER
10798 M:      Hans Verkuil <hverkuil@xs4all.nl>
10799 L:      linux-media@vger.kernel.org
10800 S:      Maintained
10801 W:      https://linuxtv.org
10802 T:      git git://linuxtv.org/media_tree.git
10803 F:      drivers/media/radio/radio-maxiradio*
10804
10805 MCAN MMIO DEVICE DRIVER
10806 M:      Dan Murphy <dmurphy@ti.com>
10807 M:      Sriram Dash <sriram.dash@samsung.com>
10808 L:      linux-can@vger.kernel.org
10809 S:      Maintained
10810 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10811 F:      drivers/net/can/m_can/m_can.c
10812 F:      drivers/net/can/m_can/m_can.h
10813 F:      drivers/net/can/m_can/m_can_platform.c
10814
10815 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10816 M:      Rishi Gupta <gupt21@gmail.com>
10817 L:      linux-i2c@vger.kernel.org
10818 L:      linux-input@vger.kernel.org
10819 S:      Maintained
10820 F:      drivers/hid/hid-mcp2221.c
10821
10822 MCP251XFD SPI-CAN NETWORK DRIVER
10823 M:      Marc Kleine-Budde <mkl@pengutronix.de>
10824 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
10825 R:      Thomas Kopp <thomas.kopp@microchip.com>
10826 L:      linux-can@vger.kernel.org
10827 S:      Maintained
10828 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
10829 F:      drivers/net/can/spi/mcp251xfd/
10830
10831 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10832 M:      Peter Rosin <peda@axentia.se>
10833 L:      linux-iio@vger.kernel.org
10834 S:      Maintained
10835 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10836 F:      drivers/iio/potentiometer/mcp4018.c
10837 F:      drivers/iio/potentiometer/mcp4531.c
10838
10839 MCR20A IEEE-802.15.4 RADIO DRIVER
10840 M:      Xue Liu <liuxuenetmail@gmail.com>
10841 L:      linux-wpan@vger.kernel.org
10842 S:      Maintained
10843 W:      https://github.com/xueliu/mcr20a-linux
10844 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10845 F:      drivers/net/ieee802154/mcr20a.c
10846 F:      drivers/net/ieee802154/mcr20a.h
10847
10848 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10849 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10850 L:      linux-iio@vger.kernel.org
10851 S:      Maintained
10852 F:      drivers/iio/dac/cio-dac.c
10853
10854 MEDIA CONTROLLER FRAMEWORK
10855 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10856 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10857 L:      linux-media@vger.kernel.org
10858 S:      Supported
10859 W:      https://www.linuxtv.org
10860 T:      git git://linuxtv.org/media_tree.git
10861 F:      drivers/media/mc/
10862 F:      include/media/media-*.h
10863 F:      include/uapi/linux/media.h
10864
10865 MEDIA DRIVER FOR FREESCALE IMX PXP
10866 M:      Philipp Zabel <p.zabel@pengutronix.de>
10867 L:      linux-media@vger.kernel.org
10868 S:      Maintained
10869 T:      git git://linuxtv.org/media_tree.git
10870 F:      drivers/media/platform/imx-pxp.[ch]
10871
10872 MEDIA DRIVERS FOR ASCOT2E
10873 M:      Sergey Kozlov <serjk@netup.ru>
10874 M:      Abylay Ospan <aospan@netup.ru>
10875 L:      linux-media@vger.kernel.org
10876 S:      Supported
10877 W:      https://linuxtv.org
10878 W:      http://netup.tv/
10879 T:      git git://linuxtv.org/media_tree.git
10880 F:      drivers/media/dvb-frontends/ascot2e*
10881
10882 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10883 M:      Jasmin Jessich <jasmin@anw.at>
10884 L:      linux-media@vger.kernel.org
10885 S:      Maintained
10886 W:      https://linuxtv.org
10887 T:      git git://linuxtv.org/media_tree.git
10888 F:      drivers/media/dvb-frontends/cxd2099*
10889
10890 MEDIA DRIVERS FOR CXD2841ER
10891 M:      Sergey Kozlov <serjk@netup.ru>
10892 M:      Abylay Ospan <aospan@netup.ru>
10893 L:      linux-media@vger.kernel.org
10894 S:      Supported
10895 W:      https://linuxtv.org
10896 W:      http://netup.tv/
10897 T:      git git://linuxtv.org/media_tree.git
10898 F:      drivers/media/dvb-frontends/cxd2841er*
10899
10900 MEDIA DRIVERS FOR CXD2880
10901 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10902 L:      linux-media@vger.kernel.org
10903 S:      Supported
10904 W:      http://linuxtv.org/
10905 T:      git git://linuxtv.org/media_tree.git
10906 F:      drivers/media/dvb-frontends/cxd2880/*
10907 F:      drivers/media/spi/cxd2880*
10908
10909 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10910 L:      linux-media@vger.kernel.org
10911 S:      Orphan
10912 W:      https://linuxtv.org
10913 T:      git git://linuxtv.org/media_tree.git
10914 F:      drivers/media/pci/ddbridge/*
10915
10916 MEDIA DRIVERS FOR FREESCALE IMX
10917 M:      Steve Longerbeam <slongerbeam@gmail.com>
10918 M:      Philipp Zabel <p.zabel@pengutronix.de>
10919 L:      linux-media@vger.kernel.org
10920 S:      Maintained
10921 T:      git git://linuxtv.org/media_tree.git
10922 F:      Documentation/admin-guide/media/imx.rst
10923 F:      Documentation/devicetree/bindings/media/imx.txt
10924 F:      drivers/staging/media/imx/
10925 F:      include/linux/imx-media.h
10926 F:      include/media/imx.h
10927
10928 MEDIA DRIVERS FOR FREESCALE IMX7
10929 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10930 L:      linux-media@vger.kernel.org
10931 S:      Maintained
10932 T:      git git://linuxtv.org/media_tree.git
10933 F:      Documentation/admin-guide/media/imx7.rst
10934 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
10935 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
10936 F:      drivers/staging/media/imx/imx7-media-csi.c
10937 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10938
10939 MEDIA DRIVERS FOR HELENE
10940 M:      Abylay Ospan <aospan@netup.ru>
10941 L:      linux-media@vger.kernel.org
10942 S:      Supported
10943 W:      https://linuxtv.org
10944 W:      http://netup.tv/
10945 T:      git git://linuxtv.org/media_tree.git
10946 F:      drivers/media/dvb-frontends/helene*
10947
10948 MEDIA DRIVERS FOR HORUS3A
10949 M:      Sergey Kozlov <serjk@netup.ru>
10950 M:      Abylay Ospan <aospan@netup.ru>
10951 L:      linux-media@vger.kernel.org
10952 S:      Supported
10953 W:      https://linuxtv.org
10954 W:      http://netup.tv/
10955 T:      git git://linuxtv.org/media_tree.git
10956 F:      drivers/media/dvb-frontends/horus3a*
10957
10958 MEDIA DRIVERS FOR LNBH25
10959 M:      Sergey Kozlov <serjk@netup.ru>
10960 M:      Abylay Ospan <aospan@netup.ru>
10961 L:      linux-media@vger.kernel.org
10962 S:      Supported
10963 W:      https://linuxtv.org
10964 W:      http://netup.tv/
10965 T:      git git://linuxtv.org/media_tree.git
10966 F:      drivers/media/dvb-frontends/lnbh25*
10967
10968 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10969 L:      linux-media@vger.kernel.org
10970 S:      Orphan
10971 W:      https://linuxtv.org
10972 T:      git git://linuxtv.org/media_tree.git
10973 F:      drivers/media/dvb-frontends/mxl5xx*
10974
10975 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10976 M:      Sergey Kozlov <serjk@netup.ru>
10977 M:      Abylay Ospan <aospan@netup.ru>
10978 L:      linux-media@vger.kernel.org
10979 S:      Supported
10980 W:      https://linuxtv.org
10981 W:      http://netup.tv/
10982 T:      git git://linuxtv.org/media_tree.git
10983 F:      drivers/media/pci/netup_unidvb/*
10984
10985 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10986 M:      Dmitry Osipenko <digetx@gmail.com>
10987 L:      linux-media@vger.kernel.org
10988 L:      linux-tegra@vger.kernel.org
10989 S:      Maintained
10990 T:      git git://linuxtv.org/media_tree.git
10991 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10992 F:      drivers/staging/media/tegra-vde/
10993
10994 MEDIA DRIVERS FOR RENESAS - CEU
10995 M:      Jacopo Mondi <jacopo@jmondi.org>
10996 L:      linux-media@vger.kernel.org
10997 L:      linux-renesas-soc@vger.kernel.org
10998 S:      Supported
10999 T:      git git://linuxtv.org/media_tree.git
11000 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11001 F:      drivers/media/platform/renesas-ceu.c
11002 F:      include/media/drv-intf/renesas-ceu.h
11003
11004 MEDIA DRIVERS FOR RENESAS - DRIF
11005 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11006 L:      linux-media@vger.kernel.org
11007 L:      linux-renesas-soc@vger.kernel.org
11008 S:      Supported
11009 T:      git git://linuxtv.org/media_tree.git
11010 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
11011 F:      drivers/media/platform/rcar_drif.c
11012
11013 MEDIA DRIVERS FOR RENESAS - FCP
11014 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11015 L:      linux-media@vger.kernel.org
11016 L:      linux-renesas-soc@vger.kernel.org
11017 S:      Supported
11018 T:      git git://linuxtv.org/media_tree.git
11019 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11020 F:      drivers/media/platform/rcar-fcp.c
11021 F:      include/media/rcar-fcp.h
11022
11023 MEDIA DRIVERS FOR RENESAS - FDP1
11024 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11025 L:      linux-media@vger.kernel.org
11026 L:      linux-renesas-soc@vger.kernel.org
11027 S:      Supported
11028 T:      git git://linuxtv.org/media_tree.git
11029 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11030 F:      drivers/media/platform/rcar_fdp1.c
11031
11032 MEDIA DRIVERS FOR RENESAS - VIN
11033 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11034 L:      linux-media@vger.kernel.org
11035 L:      linux-renesas-soc@vger.kernel.org
11036 S:      Supported
11037 T:      git git://linuxtv.org/media_tree.git
11038 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11039 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11040 F:      drivers/media/platform/rcar-vin/
11041
11042 MEDIA DRIVERS FOR RENESAS - VSP1
11043 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11044 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11045 L:      linux-media@vger.kernel.org
11046 L:      linux-renesas-soc@vger.kernel.org
11047 S:      Supported
11048 T:      git git://linuxtv.org/media_tree.git
11049 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11050 F:      drivers/media/platform/vsp1/
11051
11052 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11053 L:      linux-media@vger.kernel.org
11054 S:      Orphan
11055 W:      https://linuxtv.org
11056 T:      git git://linuxtv.org/media_tree.git
11057 F:      drivers/media/dvb-frontends/stv0910*
11058
11059 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11060 L:      linux-media@vger.kernel.org
11061 S:      Orphan
11062 W:      https://linuxtv.org
11063 T:      git git://linuxtv.org/media_tree.git
11064 F:      drivers/media/dvb-frontends/stv6111*
11065
11066 MEDIA DRIVERS FOR STM32 - DCMI
11067 M:      Hugues Fruchet <hugues.fruchet@st.com>
11068 L:      linux-media@vger.kernel.org
11069 S:      Supported
11070 T:      git git://linuxtv.org/media_tree.git
11071 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11072 F:      drivers/media/platform/stm32/stm32-dcmi.c
11073
11074 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11075 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11076 L:      linux-media@vger.kernel.org
11077 S:      Maintained
11078 W:      https://linuxtv.org
11079 Q:      http://patchwork.kernel.org/project/linux-media/list/
11080 T:      git git://linuxtv.org/media_tree.git
11081 F:      Documentation/admin-guide/media/
11082 F:      Documentation/devicetree/bindings/media/
11083 F:      Documentation/driver-api/media/
11084 F:      Documentation/userspace-api/media/
11085 F:      drivers/media/
11086 F:      drivers/staging/media/
11087 F:      include/linux/platform_data/media/
11088 F:      include/media/
11089 F:      include/uapi/linux/dvb/
11090 F:      include/uapi/linux/ivtv*
11091 F:      include/uapi/linux/media.h
11092 F:      include/uapi/linux/meye.h
11093 F:      include/uapi/linux/uvcvideo.h
11094 F:      include/uapi/linux/v4l2-*
11095 F:      include/uapi/linux/videodev2.h
11096
11097 MEDIATEK BLUETOOTH DRIVER
11098 M:      Sean Wang <sean.wang@mediatek.com>
11099 L:      linux-bluetooth@vger.kernel.org
11100 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11101 S:      Maintained
11102 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11103 F:      drivers/bluetooth/btmtkuart.c
11104
11105 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11106 M:      Sean Wang <sean.wang@mediatek.com>
11107 L:      linux-pm@vger.kernel.org
11108 S:      Maintained
11109 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11110 F:      drivers/power/reset/mt6323-poweroff.c
11111
11112 MEDIATEK CIR DRIVER
11113 M:      Sean Wang <sean.wang@mediatek.com>
11114 S:      Maintained
11115 F:      drivers/media/rc/mtk-cir.c
11116
11117 MEDIATEK DMA DRIVER
11118 M:      Sean Wang <sean.wang@mediatek.com>
11119 L:      dmaengine@vger.kernel.org
11120 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11121 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11122 S:      Maintained
11123 F:      Documentation/devicetree/bindings/dma/mtk-*
11124 F:      drivers/dma/mediatek/
11125
11126 MEDIATEK ETHERNET DRIVER
11127 M:      Felix Fietkau <nbd@nbd.name>
11128 M:      John Crispin <john@phrozen.org>
11129 M:      Sean Wang <sean.wang@mediatek.com>
11130 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11131 L:      netdev@vger.kernel.org
11132 S:      Maintained
11133 F:      drivers/net/ethernet/mediatek/
11134
11135 MEDIATEK I2C CONTROLLER DRIVER
11136 M:      Qii Wang <qii.wang@mediatek.com>
11137 L:      linux-i2c@vger.kernel.org
11138 S:      Maintained
11139 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11140 F:      drivers/i2c/busses/i2c-mt65xx.c
11141
11142 MEDIATEK JPEG DRIVER
11143 M:      Rick Chang <rick.chang@mediatek.com>
11144 M:      Bin Liu <bin.liu@mediatek.com>
11145 S:      Supported
11146 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11147 F:      drivers/media/platform/mtk-jpeg/
11148
11149 MEDIATEK MDP DRIVER
11150 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11151 M:      Houlong Wei <houlong.wei@mediatek.com>
11152 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11153 S:      Supported
11154 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11155 F:      drivers/media/platform/mtk-mdp/
11156 F:      drivers/media/platform/mtk-vpu/
11157
11158 MEDIATEK MEDIA DRIVER
11159 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11160 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11161 S:      Supported
11162 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11163 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11164 F:      drivers/media/platform/mtk-vcodec/
11165 F:      drivers/media/platform/mtk-vpu/
11166
11167 MEDIATEK MMC/SD/SDIO DRIVER
11168 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11169 S:      Maintained
11170 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
11171 F:      drivers/mmc/host/mtk-sd.c
11172
11173 MEDIATEK MT76 WIRELESS LAN DRIVER
11174 M:      Felix Fietkau <nbd@nbd.name>
11175 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11176 R:      Ryder Lee <ryder.lee@mediatek.com>
11177 L:      linux-wireless@vger.kernel.org
11178 S:      Maintained
11179 F:      drivers/net/wireless/mediatek/mt76/
11180
11181 MEDIATEK MT7601U WIRELESS LAN DRIVER
11182 M:      Jakub Kicinski <kubakici@wp.pl>
11183 L:      linux-wireless@vger.kernel.org
11184 S:      Maintained
11185 F:      drivers/net/wireless/mediatek/mt7601u/
11186
11187 MEDIATEK MT7621/28/88 I2C DRIVER
11188 M:      Stefan Roese <sr@denx.de>
11189 L:      linux-i2c@vger.kernel.org
11190 S:      Maintained
11191 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11192 F:      drivers/i2c/busses/i2c-mt7621.c
11193
11194 MEDIATEK MT7621 PHY PCI DRIVER
11195 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11196 S:      Maintained
11197 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11198 F:      drivers/phy/ralink/phy-mt7621-pci.c
11199
11200 MEDIATEK NAND CONTROLLER DRIVER
11201 L:      linux-mtd@lists.infradead.org
11202 S:      Orphan
11203 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11204 F:      drivers/mtd/nand/raw/mtk_*
11205
11206 MEDIATEK PMIC LED DRIVER
11207 M:      Sean Wang <sean.wang@mediatek.com>
11208 S:      Maintained
11209 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11210 F:      drivers/leds/leds-mt6323.c
11211
11212 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11213 M:      Sean Wang <sean.wang@mediatek.com>
11214 S:      Maintained
11215 F:      drivers/char/hw_random/mtk-rng.c
11216
11217 MEDIATEK SWITCH DRIVER
11218 M:      Sean Wang <sean.wang@mediatek.com>
11219 M:      Landen Chao <Landen.Chao@mediatek.com>
11220 L:      netdev@vger.kernel.org
11221 S:      Maintained
11222 F:      drivers/net/dsa/mt7530.*
11223 F:      net/dsa/tag_mtk.c
11224
11225 MEDIATEK USB3 DRD IP DRIVER
11226 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
11227 L:      linux-usb@vger.kernel.org
11228 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11229 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11230 S:      Maintained
11231 F:      drivers/usb/mtu3/
11232
11233 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11234 M:      Peter Senna Tschudin <peter.senna@gmail.com>
11235 M:      Martin Donnelly <martin.donnelly@ge.com>
11236 M:      Martyn Welch <martyn.welch@collabora.co.uk>
11237 S:      Maintained
11238 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11239 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11240
11241 MEGARAID SCSI/SAS DRIVERS
11242 M:      Kashyap Desai <kashyap.desai@broadcom.com>
11243 M:      Sumit Saxena <sumit.saxena@broadcom.com>
11244 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11245 L:      megaraidlinux.pdl@broadcom.com
11246 L:      linux-scsi@vger.kernel.org
11247 S:      Maintained
11248 W:      http://www.avagotech.com/support/
11249 F:      Documentation/scsi/megaraid.rst
11250 F:      drivers/scsi/megaraid.*
11251 F:      drivers/scsi/megaraid/
11252
11253 MELEXIS MLX90614 DRIVER
11254 M:      Crt Mori <cmo@melexis.com>
11255 L:      linux-iio@vger.kernel.org
11256 S:      Supported
11257 W:      http://www.melexis.com
11258 F:      drivers/iio/temperature/mlx90614.c
11259
11260 MELEXIS MLX90632 DRIVER
11261 M:      Crt Mori <cmo@melexis.com>
11262 L:      linux-iio@vger.kernel.org
11263 S:      Supported
11264 W:      http://www.melexis.com
11265 F:      drivers/iio/temperature/mlx90632.c
11266
11267 MELFAS MIP4 TOUCHSCREEN DRIVER
11268 M:      Sangwon Jee <jeesw@melfas.com>
11269 S:      Supported
11270 W:      http://www.melfas.com
11271 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11272 F:      drivers/input/touchscreen/melfas_mip4.c
11273
11274 MELLANOX BLUEFIELD I2C DRIVER
11275 M:      Khalil Blaiech <kblaiech@nvidia.com>
11276 L:      linux-i2c@vger.kernel.org
11277 S:      Supported
11278 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
11279 F:      drivers/i2c/busses/i2c-mlxbf.c
11280
11281 MELLANOX ETHERNET DRIVER (mlx4_en)
11282 M:      Tariq Toukan <tariqt@nvidia.com>
11283 L:      netdev@vger.kernel.org
11284 S:      Supported
11285 W:      http://www.mellanox.com
11286 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11287 F:      drivers/net/ethernet/mellanox/mlx4/en_*
11288
11289 MELLANOX ETHERNET DRIVER (mlx5e)
11290 M:      Saeed Mahameed <saeedm@nvidia.com>
11291 L:      netdev@vger.kernel.org
11292 S:      Supported
11293 W:      http://www.mellanox.com
11294 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11295 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
11296
11297 MELLANOX ETHERNET INNOVA DRIVERS
11298 R:      Boris Pismenny <borisp@nvidia.com>
11299 L:      netdev@vger.kernel.org
11300 S:      Supported
11301 W:      http://www.mellanox.com
11302 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11303 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
11304 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11305 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11306 F:      include/linux/mlx5/mlx5_ifc_fpga.h
11307
11308 MELLANOX ETHERNET SWITCH DRIVERS
11309 M:      Jiri Pirko <jiri@nvidia.com>
11310 M:      Ido Schimmel <idosch@nvidia.com>
11311 L:      netdev@vger.kernel.org
11312 S:      Supported
11313 W:      http://www.mellanox.com
11314 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11315 F:      drivers/net/ethernet/mellanox/mlxsw/
11316 F:      tools/testing/selftests/drivers/net/mlxsw/
11317
11318 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11319 M:      mlxsw@nvidia.com
11320 L:      netdev@vger.kernel.org
11321 S:      Supported
11322 W:      http://www.mellanox.com
11323 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11324 F:      drivers/net/ethernet/mellanox/mlxfw/
11325
11326 MELLANOX HARDWARE PLATFORM SUPPORT
11327 M:      Andy Shevchenko <andy@infradead.org>
11328 M:      Darren Hart <dvhart@infradead.org>
11329 M:      Vadim Pasternak <vadimp@nvidia.com>
11330 L:      platform-driver-x86@vger.kernel.org
11331 S:      Supported
11332 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11333 F:      drivers/platform/mellanox/
11334 F:      include/linux/platform_data/mlxreg.h
11335
11336 MELLANOX MLX4 core VPI driver
11337 M:      Tariq Toukan <tariqt@nvidia.com>
11338 L:      netdev@vger.kernel.org
11339 L:      linux-rdma@vger.kernel.org
11340 S:      Supported
11341 W:      http://www.mellanox.com
11342 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11343 F:      drivers/net/ethernet/mellanox/mlx4/
11344 F:      include/linux/mlx4/
11345
11346 MELLANOX MLX4 IB driver
11347 M:      Yishai Hadas <yishaih@nvidia.com>
11348 L:      linux-rdma@vger.kernel.org
11349 S:      Supported
11350 W:      http://www.mellanox.com
11351 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11352 F:      drivers/infiniband/hw/mlx4/
11353 F:      include/linux/mlx4/
11354 F:      include/uapi/rdma/mlx4-abi.h
11355
11356 MELLANOX MLX5 core VPI driver
11357 M:      Saeed Mahameed <saeedm@nvidia.com>
11358 M:      Leon Romanovsky <leonro@nvidia.com>
11359 L:      netdev@vger.kernel.org
11360 L:      linux-rdma@vger.kernel.org
11361 S:      Supported
11362 W:      http://www.mellanox.com
11363 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11364 F:      Documentation/networking/device_drivers/ethernet/mellanox/
11365 F:      drivers/net/ethernet/mellanox/mlx5/core/
11366 F:      include/linux/mlx5/
11367
11368 MELLANOX MLX5 IB driver
11369 M:      Leon Romanovsky <leonro@nvidia.com>
11370 L:      linux-rdma@vger.kernel.org
11371 S:      Supported
11372 W:      http://www.mellanox.com
11373 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11374 F:      drivers/infiniband/hw/mlx5/
11375 F:      include/linux/mlx5/
11376 F:      include/uapi/rdma/mlx5-abi.h
11377
11378 MELLANOX MLXCPLD I2C AND MUX DRIVER
11379 M:      Vadim Pasternak <vadimp@nvidia.com>
11380 M:      Michael Shych <michaelsh@nvidia.com>
11381 L:      linux-i2c@vger.kernel.org
11382 S:      Supported
11383 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11384 F:      drivers/i2c/busses/i2c-mlxcpld.c
11385 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11386
11387 MELLANOX MLXCPLD LED DRIVER
11388 M:      Vadim Pasternak <vadimp@nvidia.com>
11389 L:      linux-leds@vger.kernel.org
11390 S:      Supported
11391 F:      Documentation/leds/leds-mlxcpld.rst
11392 F:      drivers/leds/leds-mlxcpld.c
11393 F:      drivers/leds/leds-mlxreg.c
11394
11395 MELLANOX PLATFORM DRIVER
11396 M:      Vadim Pasternak <vadimp@nvidia.com>
11397 L:      platform-driver-x86@vger.kernel.org
11398 S:      Supported
11399 F:      drivers/platform/x86/mlx-platform.c
11400
11401 MEMBARRIER SUPPORT
11402 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11403 M:      "Paul E. McKenney" <paulmck@kernel.org>
11404 L:      linux-kernel@vger.kernel.org
11405 S:      Supported
11406 F:      arch/powerpc/include/asm/membarrier.h
11407 F:      include/uapi/linux/membarrier.h
11408 F:      kernel/sched/membarrier.c
11409
11410 MEMBLOCK
11411 M:      Mike Rapoport <rppt@linux.ibm.com>
11412 L:      linux-mm@kvack.org
11413 S:      Maintained
11414 F:      Documentation/core-api/boot-time-mm.rst
11415 F:      include/linux/memblock.h
11416 F:      mm/memblock.c
11417
11418 MEMORY CONTROLLER DRIVERS
11419 M:      Krzysztof Kozlowski <krzk@kernel.org>
11420 L:      linux-kernel@vger.kernel.org
11421 S:      Maintained
11422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
11423 F:      Documentation/devicetree/bindings/memory-controllers/
11424 F:      drivers/memory/
11425
11426 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
11427 M:      Dmitry Osipenko <digetx@gmail.com>
11428 L:      linux-pm@vger.kernel.org
11429 L:      linux-tegra@vger.kernel.org
11430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
11431 S:      Maintained
11432 F:      drivers/devfreq/tegra30-devfreq.c
11433
11434 MEMORY MANAGEMENT
11435 M:      Andrew Morton <akpm@linux-foundation.org>
11436 L:      linux-mm@kvack.org
11437 S:      Maintained
11438 W:      http://www.linux-mm.org
11439 T:      quilt https://ozlabs.org/~akpm/mmotm/
11440 T:      quilt https://ozlabs.org/~akpm/mmots/
11441 T:      git git://github.com/hnaz/linux-mm.git
11442 F:      include/linux/gfp.h
11443 F:      include/linux/memory_hotplug.h
11444 F:      include/linux/mm.h
11445 F:      include/linux/mmzone.h
11446 F:      include/linux/vmalloc.h
11447 F:      mm/
11448
11449 MEMORY TECHNOLOGY DEVICES (MTD)
11450 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11451 M:      Richard Weinberger <richard@nod.at>
11452 M:      Vignesh Raghavendra <vigneshr@ti.com>
11453 L:      linux-mtd@lists.infradead.org
11454 S:      Maintained
11455 W:      http://www.linux-mtd.infradead.org/
11456 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11457 C:      irc://irc.oftc.net/mtd
11458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11460 F:      Documentation/devicetree/bindings/mtd/
11461 F:      drivers/mtd/
11462 F:      include/linux/mtd/
11463 F:      include/uapi/mtd/
11464
11465 MEN A21 WATCHDOG DRIVER
11466 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11467 L:      linux-watchdog@vger.kernel.org
11468 S:      Maintained
11469 F:      drivers/watchdog/mena21_wdt.c
11470
11471 MEN CHAMELEON BUS (mcb)
11472 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11473 S:      Maintained
11474 F:      Documentation/driver-api/men-chameleon-bus.rst
11475 F:      drivers/mcb/
11476 F:      include/linux/mcb.h
11477
11478 MEN F21BMC (Board Management Controller)
11479 M:      Andreas Werner <andreas.werner@men.de>
11480 S:      Supported
11481 F:      Documentation/hwmon/menf21bmc.rst
11482 F:      drivers/hwmon/menf21bmc_hwmon.c
11483 F:      drivers/leds/leds-menf21bmc.c
11484 F:      drivers/mfd/menf21bmc.c
11485 F:      drivers/watchdog/menf21bmc_wdt.c
11486
11487 MEN Z069 WATCHDOG DRIVER
11488 M:      Johannes Thumshirn <jth@kernel.org>
11489 L:      linux-watchdog@vger.kernel.org
11490 S:      Maintained
11491 F:      drivers/watchdog/menz69_wdt.c
11492
11493 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11494 M:      Neil Armstrong <narmstrong@baylibre.com>
11495 L:      linux-media@vger.kernel.org
11496 L:      linux-amlogic@lists.infradead.org
11497 S:      Supported
11498 W:      http://linux-meson.com/
11499 T:      git git://linuxtv.org/media_tree.git
11500 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11501 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
11502 F:      drivers/media/cec/platform/meson/ao-cec.c
11503
11504 MESON GE2D DRIVER FOR AMLOGIC SOCS
11505 M:      Neil Armstrong <narmstrong@baylibre.com>
11506 L:      linux-media@vger.kernel.org
11507 L:      linux-amlogic@lists.infradead.org
11508 S:      Supported
11509 T:      git git://linuxtv.org/media_tree.git
11510 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
11511 F:      drivers/media/meson/ge2d/
11512
11513 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11514 M:      Liang Yang <liang.yang@amlogic.com>
11515 L:      linux-mtd@lists.infradead.org
11516 S:      Maintained
11517 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11518 F:      drivers/mtd/nand/raw/meson_*
11519
11520 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11521 M:      Neil Armstrong <narmstrong@baylibre.com>
11522 L:      linux-media@vger.kernel.org
11523 L:      linux-amlogic@lists.infradead.org
11524 S:      Supported
11525 T:      git git://linuxtv.org/media_tree.git
11526 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11527 F:      drivers/staging/media/meson/vdec/
11528
11529 METHODE UDPU SUPPORT
11530 M:      Vladimir Vid <vladimir.vid@sartura.hr>
11531 S:      Maintained
11532 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11533
11534 MHI BUS
11535 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11536 M:      Hemant Kumar <hemantk@codeaurora.org>
11537 L:      linux-arm-msm@vger.kernel.org
11538 S:      Maintained
11539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11540 F:      Documentation/ABI/stable/sysfs-bus-mhi
11541 F:      Documentation/mhi/
11542 F:      drivers/bus/mhi/
11543 F:      include/linux/mhi.h
11544
11545 MICROBLAZE ARCHITECTURE
11546 M:      Michal Simek <monstr@monstr.eu>
11547 S:      Supported
11548 W:      http://www.monstr.eu/fdt/
11549 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11550 F:      arch/microblaze/
11551
11552 MICROCHIP AT91 DMA DRIVERS
11553 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11554 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11555 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11556 L:      dmaengine@vger.kernel.org
11557 S:      Supported
11558 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11559 F:      drivers/dma/at_hdmac.c
11560 F:      drivers/dma/at_hdmac_regs.h
11561 F:      drivers/dma/at_xdmac.c
11562 F:      include/dt-bindings/dma/at91.h
11563 F:      include/linux/platform_data/dma-atmel.h
11564
11565 MICROCHIP AT91 SERIAL DRIVER
11566 M:      Richard Genoud <richard.genoud@gmail.com>
11567 S:      Maintained
11568 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11569 F:      drivers/tty/serial/atmel_serial.c
11570 F:      drivers/tty/serial/atmel_serial.h
11571
11572 MICROCHIP AT91 USART MFD DRIVER
11573 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11574 L:      linux-kernel@vger.kernel.org
11575 S:      Supported
11576 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11577 F:      drivers/mfd/at91-usart.c
11578 F:      include/dt-bindings/mfd/at91-usart.h
11579
11580 MICROCHIP AT91 USART SPI DRIVER
11581 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11582 L:      linux-spi@vger.kernel.org
11583 S:      Supported
11584 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11585 F:      drivers/spi/spi-at91-usart.c
11586
11587 MICROCHIP AUDIO ASOC DRIVERS
11588 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11589 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11590 S:      Supported
11591 F:      sound/soc/atmel
11592
11593 MICROCHIP ECC DRIVER
11594 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11595 L:      linux-crypto@vger.kernel.org
11596 S:      Maintained
11597 F:      drivers/crypto/atmel-ecc.*
11598
11599 MICROCHIP I2C DRIVER
11600 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11601 L:      linux-i2c@vger.kernel.org
11602 S:      Supported
11603 F:      drivers/i2c/busses/i2c-at91-*.c
11604 F:      drivers/i2c/busses/i2c-at91.h
11605
11606 MICROCHIP ISC DRIVER
11607 M:      Eugen Hristev <eugen.hristev@microchip.com>
11608 L:      linux-media@vger.kernel.org
11609 S:      Supported
11610 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11611 F:      drivers/media/platform/atmel/atmel-isc-base.c
11612 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11613 F:      drivers/media/platform/atmel/atmel-isc.h
11614 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11615 F:      include/linux/atmel-isc-media.h
11616
11617 MICROCHIP ISI DRIVER
11618 M:      Eugen Hristev <eugen.hristev@microchip.com>
11619 L:      linux-media@vger.kernel.org
11620 S:      Supported
11621 F:      drivers/media/platform/atmel/atmel-isi.c
11622 F:      drivers/media/platform/atmel/atmel-isi.h
11623
11624 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11625 M:      Woojung Huh <woojung.huh@microchip.com>
11626 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11627 L:      netdev@vger.kernel.org
11628 S:      Maintained
11629 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
11630 F:      drivers/net/dsa/microchip/*
11631 F:      include/linux/platform_data/microchip-ksz.h
11632 F:      net/dsa/tag_ksz.c
11633
11634 MICROCHIP LAN743X ETHERNET DRIVER
11635 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
11636 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11637 L:      netdev@vger.kernel.org
11638 S:      Maintained
11639 F:      drivers/net/ethernet/microchip/lan743x_*
11640
11641 MICROCHIP LCDFB DRIVER
11642 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11643 L:      linux-fbdev@vger.kernel.org
11644 S:      Maintained
11645 F:      drivers/video/fbdev/atmel_lcdfb.c
11646 F:      include/video/atmel_lcdc.h
11647
11648 MICROCHIP MCP16502 PMIC DRIVER
11649 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
11650 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11651 S:      Maintained
11652 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11653 F:      drivers/regulator/mcp16502.c
11654
11655 MICROCHIP MCP3911 ADC DRIVER
11656 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11657 M:      Kent Gustavsson <kent@minoris.se>
11658 L:      linux-iio@vger.kernel.org
11659 S:      Supported
11660 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11661 F:      drivers/iio/adc/mcp3911.c
11662
11663 MICROCHIP MMC/SD/SDIO MCI DRIVER
11664 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11665 S:      Maintained
11666 F:      drivers/mmc/host/atmel-mci.c
11667
11668 MICROCHIP NAND DRIVER
11669 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11670 L:      linux-mtd@lists.infradead.org
11671 S:      Supported
11672 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11673 F:      drivers/mtd/nand/raw/atmel/*
11674
11675 MICROCHIP PWM DRIVER
11676 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11677 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11678 L:      linux-pwm@vger.kernel.org
11679 S:      Supported
11680 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11681 F:      drivers/pwm/pwm-atmel.c
11682
11683 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11684 M:      Eugen Hristev <eugen.hristev@microchip.com>
11685 L:      linux-iio@vger.kernel.org
11686 S:      Supported
11687 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11688 F:      drivers/iio/adc/at91-sama5d2_adc.c
11689 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11690
11691 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11692 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11693 S:      Supported
11694 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11695
11696 MICROCHIP SPI DRIVER
11697 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11698 S:      Supported
11699 F:      drivers/spi/spi-atmel.*
11700
11701 MICROCHIP SSC DRIVER
11702 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11703 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11704 S:      Supported
11705 F:      drivers/misc/atmel-ssc.c
11706 F:      include/linux/atmel-ssc.h
11707
11708 MICROCHIP USB251XB DRIVER
11709 M:      Richard Leitner <richard.leitner@skidata.com>
11710 L:      linux-usb@vger.kernel.org
11711 S:      Maintained
11712 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11713 F:      drivers/usb/misc/usb251xb.c
11714
11715 MICROCHIP USBA UDC DRIVER
11716 M:      Cristian Birsan <cristian.birsan@microchip.com>
11717 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11718 S:      Supported
11719 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11720
11721 MICROCHIP WILC1000 WIFI DRIVER
11722 M:      Ajay Singh <ajay.kathat@microchip.com>
11723 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11724 L:      linux-wireless@vger.kernel.org
11725 S:      Supported
11726 F:      drivers/net/wireless/microchip/wilc1000/
11727
11728 MICROSEMI MIPS SOCS
11729 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11730 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11731 L:      linux-mips@vger.kernel.org
11732 S:      Supported
11733 F:      Documentation/devicetree/bindings/mips/mscc.txt
11734 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
11735 F:      arch/mips/boot/dts/mscc/
11736 F:      arch/mips/configs/generic/board-ocelot.config
11737 F:      arch/mips/generic/board-ocelot.c
11738
11739 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11740 M:      Don Brace <don.brace@microchip.com>
11741 L:      storagedev@microchip.com
11742 L:      linux-scsi@vger.kernel.org
11743 S:      Supported
11744 F:      Documentation/scsi/smartpqi.rst
11745 F:      drivers/scsi/smartpqi/Kconfig
11746 F:      drivers/scsi/smartpqi/Makefile
11747 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11748 F:      include/linux/cciss*.h
11749 F:      include/uapi/linux/cciss*.h
11750
11751 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
11752 M:      Maximilian Luz <luzmaximilian@gmail.com>
11753 L:      platform-driver-x86@vger.kernel.org
11754 S:      Maintained
11755 F:      drivers/platform/surface/surface_gpe.c
11756
11757 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
11758 M:      Hans de Goede <hdegoede@redhat.com>
11759 M:      Mark Gross <mgross@linux.intel.com>
11760 M:      Maximilian Luz <luzmaximilian@gmail.com>
11761 L:      platform-driver-x86@vger.kernel.org
11762 S:      Maintained
11763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
11764 F:      drivers/platform/surface/
11765
11766 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11767 M:      Chen Yu <yu.c.chen@intel.com>
11768 L:      platform-driver-x86@vger.kernel.org
11769 S:      Supported
11770 F:      drivers/platform/surface/surfacepro3_button.c
11771
11772 MICROTEK X6 SCANNER
11773 M:      Oliver Neukum <oliver@neukum.org>
11774 S:      Maintained
11775 F:      drivers/usb/image/microtek.*
11776
11777 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
11778 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11779 L:      linux-media@vger.kernel.org
11780 S:      Maintained
11781 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
11782 F:      Documentation/driver-api/media/drivers/ccs/
11783 F:      drivers/media/i2c/ccs-pll.c
11784 F:      drivers/media/i2c/ccs-pll.h
11785 F:      drivers/media/i2c/ccs/
11786 F:      include/uapi/linux/smiapp.h
11787
11788 MIPS
11789 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11790 L:      linux-mips@vger.kernel.org
11791 S:      Maintained
11792 W:      http://www.linux-mips.org/
11793 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11795 F:      Documentation/devicetree/bindings/mips/
11796 F:      Documentation/mips/
11797 F:      arch/mips/
11798 F:      drivers/platform/mips/
11799
11800 MIPS BOSTON DEVELOPMENT BOARD
11801 M:      Paul Burton <paulburton@kernel.org>
11802 L:      linux-mips@vger.kernel.org
11803 S:      Maintained
11804 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11805 F:      arch/mips/boot/dts/img/boston.dts
11806 F:      arch/mips/configs/generic/board-boston.config
11807 F:      drivers/clk/imgtec/clk-boston.c
11808 F:      include/dt-bindings/clock/boston-clock.h
11809
11810 MIPS CORE DRIVERS
11811 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11812 M:      Serge Semin <fancer.lancer@gmail.com>
11813 L:      linux-mips@vger.kernel.org
11814 S:      Supported
11815 F:      drivers/bus/mips_cdmm.c
11816 F:      drivers/clocksource/mips-gic-timer.c
11817 F:      drivers/cpuidle/cpuidle-cps.c
11818 F:      drivers/irqchip/irq-mips-cpu.c
11819 F:      drivers/irqchip/irq-mips-gic.c
11820
11821 MIPS GENERIC PLATFORM
11822 M:      Paul Burton <paulburton@kernel.org>
11823 L:      linux-mips@vger.kernel.org
11824 S:      Supported
11825 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
11826 F:      arch/mips/generic/
11827 F:      arch/mips/tools/generic-board-config.sh
11828
11829 MIPS RINT INSTRUCTION EMULATION
11830 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
11831 L:      linux-mips@vger.kernel.org
11832 S:      Supported
11833 F:      arch/mips/math-emu/dp_rint.c
11834 F:      arch/mips/math-emu/sp_rint.c
11835
11836 MIPS/LOONGSON1 ARCHITECTURE
11837 M:      Keguang Zhang <keguang.zhang@gmail.com>
11838 L:      linux-mips@vger.kernel.org
11839 S:      Maintained
11840 F:      arch/mips/include/asm/mach-loongson32/
11841 F:      arch/mips/loongson32/
11842 F:      drivers/*/*/*loongson1*
11843 F:      drivers/*/*loongson1*
11844
11845 MIPS/LOONGSON2EF ARCHITECTURE
11846 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11847 L:      linux-mips@vger.kernel.org
11848 S:      Maintained
11849 F:      arch/mips/include/asm/mach-loongson2ef/
11850 F:      arch/mips/loongson2ef/
11851 F:      drivers/*/*/*loongson2*
11852 F:      drivers/*/*loongson2*
11853
11854 MIPS/LOONGSON64 ARCHITECTURE
11855 M:      Huacai Chen <chenhc@lemote.com>
11856 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11857 L:      linux-mips@vger.kernel.org
11858 S:      Maintained
11859 F:      arch/mips/include/asm/mach-loongson64/
11860 F:      arch/mips/loongson64/
11861 F:      drivers/*/*/*loongson3*
11862 F:      drivers/*/*loongson3*
11863 F:      drivers/irqchip/irq-loongson*
11864 F:      drivers/platform/mips/cpu_hwmon.c
11865
11866 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11867 M:      Hans Verkuil <hverkuil@xs4all.nl>
11868 L:      linux-media@vger.kernel.org
11869 S:      Odd Fixes
11870 W:      https://linuxtv.org
11871 T:      git git://linuxtv.org/media_tree.git
11872 F:      drivers/media/radio/radio-miropcm20*
11873
11874 MMP SUPPORT
11875 R:      Lubomir Rintel <lkundrak@v3.sk>
11876 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11877 S:      Odd Fixes
11878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11879 F:      arch/arm/boot/dts/mmp*
11880 F:      arch/arm/mach-mmp/
11881 F:      include/linux/soc/mmp/
11882
11883 MMP USB PHY DRIVERS
11884 R:      Lubomir Rintel <lkundrak@v3.sk>
11885 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11886 S:      Maintained
11887 F:      drivers/phy/marvell/phy-mmp3-usb.c
11888 F:      drivers/phy/marvell/phy-pxa-usb.c
11889
11890 MMU GATHER AND TLB INVALIDATION
11891 M:      Will Deacon <will@kernel.org>
11892 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
11893 M:      Andrew Morton <akpm@linux-foundation.org>
11894 M:      Nick Piggin <npiggin@gmail.com>
11895 M:      Peter Zijlstra <peterz@infradead.org>
11896 L:      linux-arch@vger.kernel.org
11897 L:      linux-mm@kvack.org
11898 S:      Maintained
11899 F:      arch/*/include/asm/tlb.h
11900 F:      include/asm-generic/tlb.h
11901 F:      mm/mmu_gather.c
11902
11903 MN88472 MEDIA DRIVER
11904 M:      Antti Palosaari <crope@iki.fi>
11905 L:      linux-media@vger.kernel.org
11906 S:      Maintained
11907 W:      https://linuxtv.org
11908 W:      http://palosaari.fi/linux/
11909 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11910 F:      drivers/media/dvb-frontends/mn88472*
11911
11912 MN88473 MEDIA DRIVER
11913 M:      Antti Palosaari <crope@iki.fi>
11914 L:      linux-media@vger.kernel.org
11915 S:      Maintained
11916 W:      https://linuxtv.org
11917 W:      http://palosaari.fi/linux/
11918 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11919 F:      drivers/media/dvb-frontends/mn88473*
11920
11921 MODULE SUPPORT
11922 M:      Jessica Yu <jeyu@kernel.org>
11923 S:      Maintained
11924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11925 F:      include/linux/module.h
11926 F:      kernel/module.c
11927
11928 MONOLITHIC POWER SYSTEM PMIC DRIVER
11929 M:      Saravanan Sekar <sravanhome@gmail.com>
11930 S:      Maintained
11931 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
11932 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11933 F:      drivers/iio/adc/mp2629_adc.c
11934 F:      drivers/mfd/mp2629.c
11935 F:      drivers/power/supply/mp2629_charger.c
11936 F:      drivers/regulator/mp5416.c
11937 F:      drivers/regulator/mpq7920.c
11938 F:      drivers/regulator/mpq7920.h
11939 F:      include/linux/mfd/mp2629.h
11940
11941 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11942 S:      Orphan
11943 W:      http://popies.net/meye/
11944 F:      Documentation/userspace-api/media/drivers/meye*
11945 F:      drivers/media/pci/meye/
11946 F:      include/uapi/linux/meye.h
11947
11948 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11949 M:      Jiri Slaby <jirislaby@kernel.org>
11950 S:      Maintained
11951 F:      Documentation/driver-api/serial/moxa-smartio.rst
11952 F:      drivers/tty/mxser.*
11953
11954 MR800 AVERMEDIA USB FM RADIO DRIVER
11955 M:      Alexey Klimov <klimov.linux@gmail.com>
11956 L:      linux-media@vger.kernel.org
11957 S:      Maintained
11958 T:      git git://linuxtv.org/media_tree.git
11959 F:      drivers/media/radio/radio-mr800.c
11960
11961 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11962 M:      Alan Ott <alan@signal11.us>
11963 L:      linux-wpan@vger.kernel.org
11964 S:      Maintained
11965 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11966 F:      drivers/net/ieee802154/mrf24j40.c
11967
11968 MSI LAPTOP SUPPORT
11969 M:      "Lee, Chun-Yi" <jlee@suse.com>
11970 L:      platform-driver-x86@vger.kernel.org
11971 S:      Maintained
11972 F:      drivers/platform/x86/msi-laptop.c
11973
11974 MSI WMI SUPPORT
11975 L:      platform-driver-x86@vger.kernel.org
11976 S:      Orphan
11977 F:      drivers/platform/x86/msi-wmi.c
11978
11979 MSI001 MEDIA DRIVER
11980 M:      Antti Palosaari <crope@iki.fi>
11981 L:      linux-media@vger.kernel.org
11982 S:      Maintained
11983 W:      https://linuxtv.org
11984 W:      http://palosaari.fi/linux/
11985 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11986 T:      git git://linuxtv.org/anttip/media_tree.git
11987 F:      drivers/media/tuners/msi001*
11988
11989 MSI2500 MEDIA DRIVER
11990 M:      Antti Palosaari <crope@iki.fi>
11991 L:      linux-media@vger.kernel.org
11992 S:      Maintained
11993 W:      https://linuxtv.org
11994 W:      http://palosaari.fi/linux/
11995 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11996 T:      git git://linuxtv.org/anttip/media_tree.git
11997 F:      drivers/media/usb/msi2500/
11998
11999 MSTAR INTERRUPT CONTROLLER DRIVER
12000 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12001 M:      Daniel Palmer <daniel@thingy.jp>
12002 S:      Maintained
12003 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12004 F:      drivers/irqchip/irq-mst-intc.c
12005
12006 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12007 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12008 L:      linux-mtd@lists.infradead.org
12009 S:      Maintained
12010 F:      drivers/mtd/devices/docg3*
12011
12012 MT9M032 APTINA SENSOR DRIVER
12013 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12014 L:      linux-media@vger.kernel.org
12015 S:      Maintained
12016 T:      git git://linuxtv.org/media_tree.git
12017 F:      drivers/media/i2c/mt9m032.c
12018 F:      include/media/i2c/mt9m032.h
12019
12020 MT9P031 APTINA CAMERA SENSOR
12021 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12022 L:      linux-media@vger.kernel.org
12023 S:      Maintained
12024 T:      git git://linuxtv.org/media_tree.git
12025 F:      drivers/media/i2c/mt9p031.c
12026 F:      include/media/i2c/mt9p031.h
12027
12028 MT9T001 APTINA CAMERA SENSOR
12029 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12030 L:      linux-media@vger.kernel.org
12031 S:      Maintained
12032 T:      git git://linuxtv.org/media_tree.git
12033 F:      drivers/media/i2c/mt9t001.c
12034 F:      include/media/i2c/mt9t001.h
12035
12036 MT9T112 APTINA CAMERA SENSOR
12037 M:      Jacopo Mondi <jacopo@jmondi.org>
12038 L:      linux-media@vger.kernel.org
12039 S:      Odd Fixes
12040 T:      git git://linuxtv.org/media_tree.git
12041 F:      drivers/media/i2c/mt9t112.c
12042 F:      include/media/i2c/mt9t112.h
12043
12044 MT9V032 APTINA CAMERA SENSOR
12045 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12046 L:      linux-media@vger.kernel.org
12047 S:      Maintained
12048 T:      git git://linuxtv.org/media_tree.git
12049 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12050 F:      drivers/media/i2c/mt9v032.c
12051 F:      include/media/i2c/mt9v032.h
12052
12053 MT9V111 APTINA CAMERA SENSOR
12054 M:      Jacopo Mondi <jacopo@jmondi.org>
12055 L:      linux-media@vger.kernel.org
12056 S:      Maintained
12057 T:      git git://linuxtv.org/media_tree.git
12058 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12059 F:      drivers/media/i2c/mt9v111.c
12060
12061 MULTIFUNCTION DEVICES (MFD)
12062 M:      Lee Jones <lee.jones@linaro.org>
12063 S:      Supported
12064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12065 F:      Documentation/devicetree/bindings/mfd/
12066 F:      drivers/mfd/
12067 F:      include/dt-bindings/mfd/
12068 F:      include/linux/mfd/
12069
12070 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12071 S:      Orphan
12072 F:      drivers/mmc/host/mmc_spi.c
12073 F:      include/linux/spi/mmc_spi.h
12074
12075 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12076 M:      Ulf Hansson <ulf.hansson@linaro.org>
12077 L:      linux-mmc@vger.kernel.org
12078 S:      Maintained
12079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12080 F:      Documentation/devicetree/bindings/mmc/
12081 F:      drivers/mmc/
12082 F:      include/linux/mmc/
12083 F:      include/uapi/linux/mmc/
12084
12085 MULTIPLEXER SUBSYSTEM
12086 M:      Peter Rosin <peda@axentia.se>
12087 S:      Maintained
12088 F:      Documentation/ABI/testing/sysfs-class-mux*
12089 F:      Documentation/devicetree/bindings/mux/
12090 F:      drivers/mux/
12091 F:      include/dt-bindings/mux/
12092 F:      include/linux/mux/
12093
12094 MULTITECH MULTIPORT CARD (ISICOM)
12095 S:      Orphan
12096 F:      drivers/tty/isicom.c
12097 F:      include/linux/isicom.h
12098
12099 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12100 M:      Bin Liu <b-liu@ti.com>
12101 L:      linux-usb@vger.kernel.org
12102 S:      Maintained
12103 F:      drivers/usb/musb/
12104
12105 MXL301RF MEDIA DRIVER
12106 M:      Akihiro Tsukada <tskd08@gmail.com>
12107 L:      linux-media@vger.kernel.org
12108 S:      Odd Fixes
12109 F:      drivers/media/tuners/mxl301rf*
12110
12111 MXL5007T MEDIA DRIVER
12112 M:      Michael Krufky <mkrufky@linuxtv.org>
12113 L:      linux-media@vger.kernel.org
12114 S:      Maintained
12115 W:      https://linuxtv.org
12116 W:      http://github.com/mkrufky
12117 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12118 T:      git git://linuxtv.org/mkrufky/tuners.git
12119 F:      drivers/media/tuners/mxl5007t.*
12120
12121 MXSFB DRM DRIVER
12122 M:      Marek Vasut <marex@denx.de>
12123 M:      Stefan Agner <stefan@agner.ch>
12124 L:      dri-devel@lists.freedesktop.org
12125 S:      Supported
12126 T:      git git://anongit.freedesktop.org/drm/drm-misc
12127 F:      Documentation/devicetree/bindings/display/mxsfb.txt
12128 F:      drivers/gpu/drm/mxsfb/
12129
12130 MYLEX DAC960 PCI RAID Controller
12131 M:      Hannes Reinecke <hare@kernel.org>
12132 L:      linux-scsi@vger.kernel.org
12133 S:      Supported
12134 F:      drivers/scsi/myrb.*
12135 F:      drivers/scsi/myrs.*
12136
12137 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12138 M:      Chris Lee <christopher.lee@cspi.com>
12139 L:      netdev@vger.kernel.org
12140 S:      Supported
12141 W:      https://www.cspi.com/ethernet-products/support/downloads/
12142 F:      drivers/net/ethernet/myricom/myri10ge/
12143
12144 NAND FLASH SUBSYSTEM
12145 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12146 R:      Richard Weinberger <richard@nod.at>
12147 L:      linux-mtd@lists.infradead.org
12148 S:      Maintained
12149 W:      http://www.linux-mtd.infradead.org/
12150 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12151 C:      irc://irc.oftc.net/mtd
12152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12153 F:      drivers/mtd/nand/
12154 F:      include/linux/mtd/*nand*.h
12155
12156 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12157 M:      Daniel Mack <zonque@gmail.com>
12158 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12159 S:      Maintained
12160 W:      http://www.native-instruments.com
12161 F:      sound/usb/caiaq/
12162
12163 NATSEMI ETHERNET DRIVER (DP8381x)
12164 S:      Orphan
12165 F:      drivers/net/ethernet/natsemi/natsemi.c
12166
12167 NCR 5380 SCSI DRIVERS
12168 M:      Finn Thain <fthain@telegraphics.com.au>
12169 M:      Michael Schmitz <schmitzmic@gmail.com>
12170 L:      linux-scsi@vger.kernel.org
12171 S:      Maintained
12172 F:      Documentation/scsi/g_NCR5380.rst
12173 F:      drivers/scsi/NCR5380.*
12174 F:      drivers/scsi/arm/cumana_1.c
12175 F:      drivers/scsi/arm/oak.c
12176 F:      drivers/scsi/atari_scsi.*
12177 F:      drivers/scsi/dmx3191d.c
12178 F:      drivers/scsi/g_NCR5380.*
12179 F:      drivers/scsi/mac_scsi.*
12180 F:      drivers/scsi/sun3_scsi.*
12181 F:      drivers/scsi/sun3_scsi_vme.c
12182
12183 NCSI LIBRARY
12184 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
12185 S:      Maintained
12186 F:      net/ncsi/
12187
12188 NCT6775 HARDWARE MONITOR DRIVER
12189 M:      Guenter Roeck <linux@roeck-us.net>
12190 L:      linux-hwmon@vger.kernel.org
12191 S:      Maintained
12192 F:      Documentation/hwmon/nct6775.rst
12193 F:      drivers/hwmon/nct6775.c
12194
12195 NETDEVSIM
12196 M:      Jakub Kicinski <kuba@kernel.org>
12197 S:      Maintained
12198 F:      drivers/net/netdevsim/*
12199
12200 NETEM NETWORK EMULATOR
12201 M:      Stephen Hemminger <stephen@networkplumber.org>
12202 L:      netdev@vger.kernel.org
12203 S:      Maintained
12204 F:      net/sched/sch_netem.c
12205
12206 NETERION 10GbE DRIVERS (s2io/vxge)
12207 M:      Jon Mason <jdmason@kudzu.us>
12208 L:      netdev@vger.kernel.org
12209 S:      Supported
12210 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12211 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12212 F:      drivers/net/ethernet/neterion/
12213
12214 NETFILTER
12215 M:      Pablo Neira Ayuso <pablo@netfilter.org>
12216 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
12217 M:      Florian Westphal <fw@strlen.de>
12218 L:      netfilter-devel@vger.kernel.org
12219 L:      coreteam@netfilter.org
12220 S:      Maintained
12221 W:      http://www.netfilter.org/
12222 W:      http://www.iptables.org/
12223 W:      http://www.nftables.org/
12224 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
12225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12227 F:      include/linux/netfilter*
12228 F:      include/linux/netfilter/
12229 F:      include/net/netfilter/
12230 F:      include/uapi/linux/netfilter*
12231 F:      include/uapi/linux/netfilter/
12232 F:      net/*/netfilter.c
12233 F:      net/*/netfilter/
12234 F:      net/bridge/br_netfilter*.c
12235 F:      net/netfilter/
12236
12237 NETROM NETWORK LAYER
12238 M:      Ralf Baechle <ralf@linux-mips.org>
12239 L:      linux-hams@vger.kernel.org
12240 S:      Maintained
12241 W:      http://www.linux-ax25.org/
12242 F:      include/net/netrom.h
12243 F:      include/uapi/linux/netrom.h
12244 F:      net/netrom/
12245
12246 NETRONOME ETHERNET DRIVERS
12247 M:      Simon Horman <simon.horman@netronome.com>
12248 R:      Jakub Kicinski <kuba@kernel.org>
12249 L:      oss-drivers@netronome.com
12250 S:      Maintained
12251 F:      drivers/net/ethernet/netronome/
12252
12253 NETWORK BLOCK DEVICE (NBD)
12254 M:      Josef Bacik <josef@toxicpanda.com>
12255 L:      linux-block@vger.kernel.org
12256 L:      nbd@other.debian.org
12257 S:      Maintained
12258 F:      Documentation/admin-guide/blockdev/nbd.rst
12259 F:      drivers/block/nbd.c
12260 F:      include/trace/events/nbd.h
12261 F:      include/uapi/linux/nbd.h
12262
12263 NETWORK DROP MONITOR
12264 M:      Neil Horman <nhorman@tuxdriver.com>
12265 L:      netdev@vger.kernel.org
12266 S:      Maintained
12267 W:      https://fedorahosted.org/dropwatch/
12268 F:      include/uapi/linux/net_dropmon.h
12269 F:      net/core/drop_monitor.c
12270
12271 NETWORKING DRIVERS
12272 M:      "David S. Miller" <davem@davemloft.net>
12273 M:      Jakub Kicinski <kuba@kernel.org>
12274 L:      netdev@vger.kernel.org
12275 S:      Maintained
12276 W:      http://www.linuxfoundation.org/en/Net
12277 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12280 F:      Documentation/devicetree/bindings/net/
12281 F:      drivers/connector/
12282 F:      drivers/net/
12283 F:      include/linux/etherdevice.h
12284 F:      include/linux/fcdevice.h
12285 F:      include/linux/fddidevice.h
12286 F:      include/linux/hippidevice.h
12287 F:      include/linux/if_*
12288 F:      include/linux/inetdevice.h
12289 F:      include/linux/netdevice.h
12290 F:      include/uapi/linux/if_*
12291 F:      include/uapi/linux/netdevice.h
12292
12293 NETWORKING DRIVERS (WIRELESS)
12294 M:      Kalle Valo <kvalo@codeaurora.org>
12295 L:      linux-wireless@vger.kernel.org
12296 S:      Maintained
12297 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
12299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
12300 F:      Documentation/devicetree/bindings/net/wireless/
12301 F:      drivers/net/wireless/
12302
12303 NETWORKING [DSA]
12304 M:      Andrew Lunn <andrew@lunn.ch>
12305 M:      Vivien Didelot <vivien.didelot@gmail.com>
12306 M:      Florian Fainelli <f.fainelli@gmail.com>
12307 M:      Vladimir Oltean <olteanv@gmail.com>
12308 S:      Maintained
12309 F:      Documentation/devicetree/bindings/net/dsa/
12310 F:      drivers/net/dsa/
12311 F:      include/linux/dsa/
12312 F:      include/linux/platform_data/dsa.h
12313 F:      include/net/dsa.h
12314 F:      net/dsa/
12315
12316 NETWORKING [GENERAL]
12317 M:      "David S. Miller" <davem@davemloft.net>
12318 M:      Jakub Kicinski <kuba@kernel.org>
12319 L:      netdev@vger.kernel.org
12320 S:      Maintained
12321 W:      http://www.linuxfoundation.org/en/Net
12322 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12323 B:      mailto:netdev@vger.kernel.org
12324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12326 F:      Documentation/networking/
12327 F:      include/linux/in.h
12328 F:      include/linux/net.h
12329 F:      include/linux/netdevice.h
12330 F:      include/net/
12331 F:      include/uapi/linux/in.h
12332 F:      include/uapi/linux/net.h
12333 F:      include/uapi/linux/net_namespace.h
12334 F:      include/uapi/linux/netdevice.h
12335 F:      lib/net_utils.c
12336 F:      lib/random32.c
12337 F:      net/
12338 F:      tools/testing/selftests/net/
12339
12340 NETWORKING [IPSEC]
12341 M:      Steffen Klassert <steffen.klassert@secunet.com>
12342 M:      Herbert Xu <herbert@gondor.apana.org.au>
12343 M:      "David S. Miller" <davem@davemloft.net>
12344 L:      netdev@vger.kernel.org
12345 S:      Maintained
12346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
12347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
12348 F:      include/net/xfrm.h
12349 F:      include/uapi/linux/xfrm.h
12350 F:      net/ipv4/ah4.c
12351 F:      net/ipv4/esp4*
12352 F:      net/ipv4/ip_vti.c
12353 F:      net/ipv4/ipcomp.c
12354 F:      net/ipv4/xfrm*
12355 F:      net/ipv6/ah6.c
12356 F:      net/ipv6/esp6*
12357 F:      net/ipv6/ip6_vti.c
12358 F:      net/ipv6/ipcomp6.c
12359 F:      net/ipv6/xfrm*
12360 F:      net/key/
12361 F:      net/xfrm/
12362 F:      tools/testing/selftests/net/ipsec.c
12363
12364 NETWORKING [IPv4/IPv6]
12365 M:      "David S. Miller" <davem@davemloft.net>
12366 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
12367 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
12368 L:      netdev@vger.kernel.org
12369 S:      Maintained
12370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12371 F:      arch/x86/net/*
12372 F:      include/net/ip*
12373 F:      net/ipv4/
12374 F:      net/ipv6/
12375
12376 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
12377 M:      Paul Moore <paul@paul-moore.com>
12378 L:      netdev@vger.kernel.org
12379 L:      linux-security-module@vger.kernel.org
12380 S:      Maintained
12381 W:      https://github.com/netlabel
12382 F:      Documentation/netlabel/
12383 F:      include/net/calipso.h
12384 F:      include/net/cipso_ipv4.h
12385 F:      include/net/netlabel.h
12386 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
12387 F:      include/uapi/linux/netfilter/xt_SECMARK.h
12388 F:      net/ipv4/cipso_ipv4.c
12389 F:      net/ipv6/calipso.c
12390 F:      net/netfilter/xt_CONNSECMARK.c
12391 F:      net/netfilter/xt_SECMARK.c
12392 F:      net/netlabel/
12393
12394 NETWORKING [MPTCP]
12395 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
12396 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
12397 L:      netdev@vger.kernel.org
12398 L:      mptcp@lists.01.org
12399 S:      Maintained
12400 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
12401 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
12402 F:      Documentation/networking/mptcp-sysctl.rst
12403 F:      include/net/mptcp.h
12404 F:      include/uapi/linux/mptcp.h
12405 F:      net/mptcp/
12406 F:      tools/testing/selftests/net/mptcp/
12407
12408 NETWORKING [TCP]
12409 M:      Eric Dumazet <edumazet@google.com>
12410 L:      netdev@vger.kernel.org
12411 S:      Maintained
12412 F:      include/linux/tcp.h
12413 F:      include/net/tcp.h
12414 F:      include/trace/events/tcp.h
12415 F:      include/uapi/linux/tcp.h
12416 F:      net/ipv4/syncookies.c
12417 F:      net/ipv4/tcp*.c
12418 F:      net/ipv6/syncookies.c
12419 F:      net/ipv6/tcp*.c
12420
12421 NETWORKING [TLS]
12422 M:      Boris Pismenny <borisp@nvidia.com>
12423 M:      Aviad Yehezkel <aviadye@nvidia.com>
12424 M:      John Fastabend <john.fastabend@gmail.com>
12425 M:      Daniel Borkmann <daniel@iogearbox.net>
12426 M:      Jakub Kicinski <kuba@kernel.org>
12427 L:      netdev@vger.kernel.org
12428 S:      Maintained
12429 F:      include/net/tls.h
12430 F:      include/uapi/linux/tls.h
12431 F:      net/tls/*
12432
12433 NETWORKING [WIRELESS]
12434 L:      linux-wireless@vger.kernel.org
12435 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12436
12437 NETXEN (1/10) GbE SUPPORT
12438 M:      Manish Chopra <manishc@marvell.com>
12439 M:      Rahul Verma <rahulv@marvell.com>
12440 M:      GR-Linux-NIC-Dev@marvell.com
12441 L:      netdev@vger.kernel.org
12442 S:      Supported
12443 F:      drivers/net/ethernet/qlogic/netxen/
12444
12445 NET_FAILOVER MODULE
12446 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
12447 L:      netdev@vger.kernel.org
12448 S:      Supported
12449 F:      Documentation/networking/net_failover.rst
12450 F:      drivers/net/net_failover.c
12451 F:      include/net/net_failover.h
12452
12453 NEXTHOP
12454 M:      David Ahern <dsahern@kernel.org>
12455 L:      netdev@vger.kernel.org
12456 S:      Maintained
12457 F:      include/net/netns/nexthop.h
12458 F:      include/net/nexthop.h
12459 F:      include/uapi/linux/nexthop.h
12460 F:      net/ipv4/nexthop.c
12461
12462 NFC SUBSYSTEM
12463 L:      netdev@vger.kernel.org
12464 S:      Orphan
12465 F:      Documentation/devicetree/bindings/net/nfc/
12466 F:      drivers/nfc/
12467 F:      include/linux/platform_data/nfcmrvl.h
12468 F:      include/net/nfc/
12469 F:      include/uapi/linux/nfc.h
12470 F:      net/nfc/
12471
12472 NFS, SUNRPC, AND LOCKD CLIENTS
12473 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
12474 M:      Anna Schumaker <anna.schumaker@netapp.com>
12475 L:      linux-nfs@vger.kernel.org
12476 S:      Maintained
12477 W:      http://client.linux-nfs.org
12478 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12479 F:      fs/lockd/
12480 F:      fs/nfs/
12481 F:      fs/nfs_common/
12482 F:      include/linux/lockd/
12483 F:      include/linux/nfs*
12484 F:      include/linux/sunrpc/
12485 F:      include/uapi/linux/nfs*
12486 F:      include/uapi/linux/sunrpc/
12487 F:      net/sunrpc/
12488 F:      Documentation/filesystems/nfs/
12489
12490 NILFS2 FILESYSTEM
12491 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
12492 L:      linux-nilfs@vger.kernel.org
12493 S:      Supported
12494 W:      https://nilfs.sourceforge.io/
12495 W:      https://nilfs.osdn.jp/
12496 T:      git git://github.com/konis/nilfs2.git
12497 F:      Documentation/filesystems/nilfs2.rst
12498 F:      fs/nilfs2/
12499 F:      include/trace/events/nilfs2.h
12500 F:      include/uapi/linux/nilfs2_api.h
12501 F:      include/uapi/linux/nilfs2_ondisk.h
12502
12503 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
12504 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12505 S:      Maintained
12506 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12507 F:      Documentation/scsi/NinjaSCSI.rst
12508 F:      drivers/scsi/pcmcia/nsp_*
12509
12510 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12511 M:      GOTO Masanori <gotom@debian.or.jp>
12512 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12513 S:      Maintained
12514 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12515 F:      Documentation/scsi/NinjaSCSI.rst
12516 F:      drivers/scsi/nsp32*
12517
12518 NIOS2 ARCHITECTURE
12519 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12520 S:      Maintained
12521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12522 F:      arch/nios2/
12523
12524 NITRO ENCLAVES (NE)
12525 M:      Andra Paraschiv <andraprs@amazon.com>
12526 M:      Alexandru Vasile <lexnv@amazon.com>
12527 M:      Alexandru Ciobotaru <alcioa@amazon.com>
12528 L:      linux-kernel@vger.kernel.org
12529 S:      Supported
12530 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
12531 F:      Documentation/virt/ne_overview.rst
12532 F:      drivers/virt/nitro_enclaves/
12533 F:      include/linux/nitro_enclaves.h
12534 F:      include/uapi/linux/nitro_enclaves.h
12535 F:      samples/nitro_enclaves/
12536
12537 NOHZ, DYNTICKS SUPPORT
12538 M:      Frederic Weisbecker <fweisbec@gmail.com>
12539 M:      Thomas Gleixner <tglx@linutronix.de>
12540 M:      Ingo Molnar <mingo@kernel.org>
12541 L:      linux-kernel@vger.kernel.org
12542 S:      Maintained
12543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12544 F:      include/linux/sched/nohz.h
12545 F:      include/linux/tick.h
12546 F:      kernel/time/tick*.*
12547
12548 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12549 M:      Pavel Machek <pavel@ucw.cz>
12550 M:      Sakari Ailus <sakari.ailus@iki.fi>
12551 L:      linux-media@vger.kernel.org
12552 S:      Maintained
12553 F:      drivers/media/i2c/ad5820.c
12554 F:      drivers/media/i2c/et8ek8
12555
12556 NOKIA N900 POWER SUPPLY DRIVERS
12557 R:      Pali Rohár <pali@kernel.org>
12558 F:      drivers/power/supply/bq2415x_charger.c
12559 F:      drivers/power/supply/bq27xxx_battery.c
12560 F:      drivers/power/supply/bq27xxx_battery_i2c.c
12561 F:      drivers/power/supply/isp1704_charger.c
12562 F:      drivers/power/supply/rx51_battery.c
12563 F:      include/linux/power/bq2415x_charger.h
12564 F:      include/linux/power/bq27xxx_battery.h
12565
12566 NOLIBC HEADER FILE
12567 M:      Willy Tarreau <w@1wt.eu>
12568 S:      Maintained
12569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12570 F:      tools/include/nolibc/
12571
12572 NSDEPS
12573 M:      Matthias Maennich <maennich@google.com>
12574 S:      Maintained
12575 F:      Documentation/core-api/symbol-namespaces.rst
12576 F:      scripts/nsdeps
12577
12578 NTB AMD DRIVER
12579 M:      Sanjay R Mehta <sanju.mehta@amd.com>
12580 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
12581 L:      linux-ntb@googlegroups.com
12582 S:      Supported
12583 F:      drivers/ntb/hw/amd/
12584
12585 NTB DRIVER CORE
12586 M:      Jon Mason <jdmason@kudzu.us>
12587 M:      Dave Jiang <dave.jiang@intel.com>
12588 M:      Allen Hubbe <allenbh@gmail.com>
12589 L:      linux-ntb@googlegroups.com
12590 S:      Supported
12591 W:      https://github.com/jonmason/ntb/wiki
12592 T:      git git://github.com/jonmason/ntb.git
12593 F:      drivers/net/ntb_netdev.c
12594 F:      drivers/ntb/
12595 F:      include/linux/ntb.h
12596 F:      include/linux/ntb_transport.h
12597 F:      tools/testing/selftests/ntb/
12598
12599 NTB IDT DRIVER
12600 M:      Serge Semin <fancer.lancer@gmail.com>
12601 L:      linux-ntb@googlegroups.com
12602 S:      Supported
12603 F:      drivers/ntb/hw/idt/
12604
12605 NTB INTEL DRIVER
12606 M:      Dave Jiang <dave.jiang@intel.com>
12607 L:      linux-ntb@googlegroups.com
12608 S:      Supported
12609 W:      https://github.com/davejiang/linux/wiki
12610 T:      git https://github.com/davejiang/linux.git
12611 F:      drivers/ntb/hw/intel/
12612
12613 NTFS FILESYSTEM
12614 M:      Anton Altaparmakov <anton@tuxera.com>
12615 L:      linux-ntfs-dev@lists.sourceforge.net
12616 S:      Supported
12617 W:      http://www.tuxera.com/
12618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12619 F:      Documentation/filesystems/ntfs.rst
12620 F:      fs/ntfs/
12621
12622 NUBUS SUBSYSTEM
12623 M:      Finn Thain <fthain@telegraphics.com.au>
12624 L:      linux-m68k@lists.linux-m68k.org
12625 S:      Maintained
12626 F:      arch/*/include/asm/nubus.h
12627 F:      drivers/nubus/
12628 F:      include/linux/nubus.h
12629 F:      include/uapi/linux/nubus.h
12630
12631 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12632 M:      Antonino Daplas <adaplas@gmail.com>
12633 L:      linux-fbdev@vger.kernel.org
12634 S:      Maintained
12635 F:      drivers/video/fbdev/nvidia/
12636 F:      drivers/video/fbdev/riva/
12637
12638 NVM EXPRESS DRIVER
12639 M:      Keith Busch <kbusch@kernel.org>
12640 M:      Jens Axboe <axboe@fb.com>
12641 M:      Christoph Hellwig <hch@lst.de>
12642 M:      Sagi Grimberg <sagi@grimberg.me>
12643 L:      linux-nvme@lists.infradead.org
12644 S:      Supported
12645 W:      http://git.infradead.org/nvme.git
12646 T:      git://git.infradead.org/nvme.git
12647 F:      drivers/nvme/host/
12648 F:      include/linux/nvme.h
12649 F:      include/uapi/linux/nvme_ioctl.h
12650
12651 NVM EXPRESS FC TRANSPORT DRIVERS
12652 M:      James Smart <james.smart@broadcom.com>
12653 L:      linux-nvme@lists.infradead.org
12654 S:      Supported
12655 F:      drivers/nvme/host/fc.c
12656 F:      drivers/nvme/target/fc.c
12657 F:      drivers/nvme/target/fcloop.c
12658 F:      include/linux/nvme-fc-driver.h
12659 F:      include/linux/nvme-fc.h
12660
12661 NVM EXPRESS TARGET DRIVER
12662 M:      Christoph Hellwig <hch@lst.de>
12663 M:      Sagi Grimberg <sagi@grimberg.me>
12664 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
12665 L:      linux-nvme@lists.infradead.org
12666 S:      Supported
12667 W:      http://git.infradead.org/nvme.git
12668 T:      git://git.infradead.org/nvme.git
12669 F:      drivers/nvme/target/
12670
12671 NVMEM FRAMEWORK
12672 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12673 S:      Maintained
12674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
12675 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12676 F:      Documentation/devicetree/bindings/nvmem/
12677 F:      drivers/nvmem/
12678 F:      include/linux/nvmem-consumer.h
12679 F:      include/linux/nvmem-provider.h
12680
12681 NXP FSPI DRIVER
12682 M:      Ashish Kumar <ashish.kumar@nxp.com>
12683 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
12684 L:      linux-spi@vger.kernel.org
12685 S:      Maintained
12686 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12687 F:      drivers/spi/spi-nxp-fspi.c
12688
12689 NXP FXAS21002C DRIVER
12690 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12691 L:      linux-iio@vger.kernel.org
12692 S:      Maintained
12693 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
12694 F:      drivers/iio/gyro/fxas21002c.h
12695 F:      drivers/iio/gyro/fxas21002c_core.c
12696 F:      drivers/iio/gyro/fxas21002c_i2c.c
12697 F:      drivers/iio/gyro/fxas21002c_spi.c
12698
12699 NXP i.MX 8MQ DCSS DRIVER
12700 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
12701 R:      Lucas Stach <l.stach@pengutronix.de>
12702 L:      dri-devel@lists.freedesktop.org
12703 S:      Maintained
12704 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
12705 F:      drivers/gpu/drm/imx/dcss/
12706
12707 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
12708 M:      Jagan Teki <jagan@amarulasolutions.com>
12709 S:      Maintained
12710 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
12711 F:      drivers/regulator/pf8x00-regulator.c
12712
12713 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
12714 M:      Krzysztof Kozlowski <krzk@kernel.org>
12715 L:      linux-kernel@vger.kernel.org
12716 S:      Maintained
12717 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
12718 F:      drivers/extcon/extcon-ptn5150.c
12719
12720 NXP SGTL5000 DRIVER
12721 M:      Fabio Estevam <festevam@gmail.com>
12722 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12723 S:      Maintained
12724 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
12725 F:      sound/soc/codecs/sgtl5000*
12726
12727 NXP SJA1105 ETHERNET SWITCH DRIVER
12728 M:      Vladimir Oltean <olteanv@gmail.com>
12729 L:      linux-kernel@vger.kernel.org
12730 S:      Maintained
12731 F:      drivers/net/dsa/sja1105
12732
12733 NXP TDA998X DRM DRIVER
12734 M:      Russell King <linux@armlinux.org.uk>
12735 S:      Maintained
12736 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12737 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12738 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12739 F:      include/drm/i2c/tda998x.h
12740 F:      include/dt-bindings/display/tda998x.h
12741 K:      "nxp,tda998x"
12742
12743 NXP TFA9879 DRIVER
12744 M:      Peter Rosin <peda@axentia.se>
12745 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12746 S:      Maintained
12747 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12748 F:      sound/soc/codecs/tfa9879*
12749
12750 NXP-NCI NFC DRIVER
12751 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
12752 R:      Charles Gorand <charles.gorand@effinnov.com>
12753 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12754 S:      Supported
12755 F:      drivers/nfc/nxp-nci
12756
12757 OBJAGG
12758 M:      Jiri Pirko <jiri@nvidia.com>
12759 L:      netdev@vger.kernel.org
12760 S:      Supported
12761 F:      include/linux/objagg.h
12762 F:      lib/objagg.c
12763 F:      lib/test_objagg.c
12764
12765 OBJTOOL
12766 M:      Josh Poimboeuf <jpoimboe@redhat.com>
12767 M:      Peter Zijlstra <peterz@infradead.org>
12768 S:      Supported
12769 F:      tools/objtool/
12770 F:      include/linux/objtool.h
12771
12772 OCELOT ETHERNET SWITCH DRIVER
12773 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
12774 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
12775 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
12776 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12777 L:      netdev@vger.kernel.org
12778 S:      Supported
12779 F:      drivers/net/dsa/ocelot/*
12780 F:      drivers/net/ethernet/mscc/
12781 F:      include/soc/mscc/ocelot*
12782 F:      net/dsa/tag_ocelot.c
12783 F:      tools/testing/selftests/drivers/net/ocelot/*
12784
12785 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12786 M:      Frederic Barrat <fbarrat@linux.ibm.com>
12787 M:      Andrew Donnellan <ajd@linux.ibm.com>
12788 L:      linuxppc-dev@lists.ozlabs.org
12789 S:      Supported
12790 F:      Documentation/userspace-api/accelerators/ocxl.rst
12791 F:      arch/powerpc/include/asm/pnv-ocxl.h
12792 F:      arch/powerpc/platforms/powernv/ocxl.c
12793 F:      drivers/misc/ocxl/
12794 F:      include/misc/ocxl*
12795 F:      include/uapi/misc/ocxl.h
12796
12797 OMAP AUDIO SUPPORT
12798 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
12799 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
12800 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12801 L:      linux-omap@vger.kernel.org
12802 S:      Maintained
12803 F:      sound/soc/ti/n810.c
12804 F:      sound/soc/ti/omap*
12805 F:      sound/soc/ti/rx51.c
12806 F:      sound/soc/ti/sdma-pcm.*
12807
12808 OMAP CLOCK FRAMEWORK SUPPORT
12809 M:      Paul Walmsley <paul@pwsan.com>
12810 L:      linux-omap@vger.kernel.org
12811 S:      Maintained
12812 F:      arch/arm/*omap*/*clock*
12813
12814 OMAP DEVICE TREE SUPPORT
12815 M:      Benoît Cousson <bcousson@baylibre.com>
12816 M:      Tony Lindgren <tony@atomide.com>
12817 L:      linux-omap@vger.kernel.org
12818 L:      devicetree@vger.kernel.org
12819 S:      Maintained
12820 F:      arch/arm/boot/dts/*am3*
12821 F:      arch/arm/boot/dts/*am4*
12822 F:      arch/arm/boot/dts/*am5*
12823 F:      arch/arm/boot/dts/*dra7*
12824 F:      arch/arm/boot/dts/*omap*
12825 F:      arch/arm/boot/dts/logicpd-som-lv*
12826 F:      arch/arm/boot/dts/logicpd-torpedo*
12827
12828 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12829 L:      linux-omap@vger.kernel.org
12830 L:      linux-fbdev@vger.kernel.org
12831 S:      Orphan
12832 F:      Documentation/arm/omap/dss.rst
12833 F:      drivers/video/fbdev/omap2/
12834
12835 OMAP FRAMEBUFFER SUPPORT
12836 L:      linux-fbdev@vger.kernel.org
12837 L:      linux-omap@vger.kernel.org
12838 S:      Orphan
12839 F:      drivers/video/fbdev/omap/
12840
12841 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12842 M:      Roger Quadros <rogerq@ti.com>
12843 M:      Tony Lindgren <tony@atomide.com>
12844 L:      linux-omap@vger.kernel.org
12845 S:      Maintained
12846 F:      arch/arm/mach-omap2/*gpmc*
12847 F:      drivers/memory/omap-gpmc.c
12848
12849 OMAP GPIO DRIVER
12850 M:      Grygorii Strashko <grygorii.strashko@ti.com>
12851 M:      Santosh Shilimkar <ssantosh@kernel.org>
12852 M:      Kevin Hilman <khilman@kernel.org>
12853 L:      linux-omap@vger.kernel.org
12854 S:      Maintained
12855 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12856 F:      drivers/gpio/gpio-omap.c
12857
12858 OMAP HARDWARE SPINLOCK SUPPORT
12859 M:      Ohad Ben-Cohen <ohad@wizery.com>
12860 L:      linux-omap@vger.kernel.org
12861 S:      Maintained
12862 F:      drivers/hwspinlock/omap_hwspinlock.c
12863
12864 OMAP HS MMC SUPPORT
12865 L:      linux-mmc@vger.kernel.org
12866 L:      linux-omap@vger.kernel.org
12867 S:      Orphan
12868 F:      drivers/mmc/host/omap_hsmmc.c
12869
12870 OMAP HWMOD DATA
12871 M:      Paul Walmsley <paul@pwsan.com>
12872 L:      linux-omap@vger.kernel.org
12873 S:      Maintained
12874 F:      arch/arm/mach-omap2/omap_hwmod*data*
12875
12876 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12877 M:      Benoît Cousson <bcousson@baylibre.com>
12878 L:      linux-omap@vger.kernel.org
12879 S:      Maintained
12880 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12881
12882 OMAP HWMOD SUPPORT
12883 M:      Benoît Cousson <bcousson@baylibre.com>
12884 M:      Paul Walmsley <paul@pwsan.com>
12885 L:      linux-omap@vger.kernel.org
12886 S:      Maintained
12887 F:      arch/arm/mach-omap2/omap_hwmod.*
12888
12889 OMAP I2C DRIVER
12890 M:      Vignesh R <vigneshr@ti.com>
12891 L:      linux-omap@vger.kernel.org
12892 L:      linux-i2c@vger.kernel.org
12893 S:      Maintained
12894 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12895 F:      drivers/i2c/busses/i2c-omap.c
12896
12897 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12898 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12899 L:      linux-media@vger.kernel.org
12900 S:      Maintained
12901 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12902 F:      drivers/media/platform/omap3isp/
12903 F:      drivers/staging/media/omap4iss/
12904
12905 OMAP MMC SUPPORT
12906 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12907 L:      linux-omap@vger.kernel.org
12908 S:      Odd Fixes
12909 F:      drivers/mmc/host/omap.c
12910
12911 OMAP POWER MANAGEMENT SUPPORT
12912 M:      Kevin Hilman <khilman@kernel.org>
12913 L:      linux-omap@vger.kernel.org
12914 S:      Maintained
12915 F:      arch/arm/*omap*/*pm*
12916 F:      drivers/cpufreq/omap-cpufreq.c
12917
12918 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12919 M:      Rajendra Nayak <rnayak@codeaurora.org>
12920 M:      Paul Walmsley <paul@pwsan.com>
12921 L:      linux-omap@vger.kernel.org
12922 S:      Maintained
12923 F:      arch/arm/mach-omap2/prm*
12924
12925 OMAP RANDOM NUMBER GENERATOR SUPPORT
12926 M:      Deepak Saxena <dsaxena@plexity.net>
12927 S:      Maintained
12928 F:      drivers/char/hw_random/omap-rng.c
12929
12930 OMAP USB SUPPORT
12931 L:      linux-usb@vger.kernel.org
12932 L:      linux-omap@vger.kernel.org
12933 S:      Orphan
12934 F:      arch/arm/*omap*/usb*
12935 F:      drivers/usb/*/*omap*
12936
12937 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12938 M:      Mark Jackson <mpfj@newflow.co.uk>
12939 L:      linux-omap@vger.kernel.org
12940 S:      Maintained
12941 F:      arch/arm/boot/dts/am335x-nano.dts
12942
12943 OMAP1 SUPPORT
12944 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12945 M:      Tony Lindgren <tony@atomide.com>
12946 L:      linux-omap@vger.kernel.org
12947 S:      Maintained
12948 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12950 F:      arch/arm/configs/omap1_defconfig
12951 F:      arch/arm/mach-omap1/
12952 F:      arch/arm/plat-omap/
12953 F:      drivers/i2c/busses/i2c-omap.c
12954 F:      include/linux/platform_data/ams-delta-fiq.h
12955 F:      include/linux/platform_data/i2c-omap.h
12956
12957 OMAP2+ SUPPORT
12958 M:      Tony Lindgren <tony@atomide.com>
12959 L:      linux-omap@vger.kernel.org
12960 S:      Maintained
12961 W:      http://www.muru.com/linux/omap/
12962 W:      http://linux.omap.com/
12963 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12965 F:      arch/arm/configs/omap2plus_defconfig
12966 F:      arch/arm/mach-omap2/
12967 F:      arch/arm/plat-omap/
12968 F:      drivers/bus/ti-sysc.c
12969 F:      drivers/i2c/busses/i2c-omap.c
12970 F:      drivers/irqchip/irq-omap-intc.c
12971 F:      drivers/mfd/*omap*.c
12972 F:      drivers/mfd/menelaus.c
12973 F:      drivers/mfd/palmas.c
12974 F:      drivers/mfd/tps65217.c
12975 F:      drivers/mfd/tps65218.c
12976 F:      drivers/mfd/tps65910.c
12977 F:      drivers/mfd/twl-core.[ch]
12978 F:      drivers/mfd/twl4030*.c
12979 F:      drivers/mfd/twl6030*.c
12980 F:      drivers/mfd/twl6040*.c
12981 F:      drivers/regulator/palmas-regulator*.c
12982 F:      drivers/regulator/pbias-regulator.c
12983 F:      drivers/regulator/tps65217-regulator.c
12984 F:      drivers/regulator/tps65218-regulator.c
12985 F:      drivers/regulator/tps65910-regulator.c
12986 F:      drivers/regulator/twl-regulator.c
12987 F:      drivers/regulator/twl6030-regulator.c
12988 F:      include/linux/platform_data/i2c-omap.h
12989 F:      include/linux/platform_data/ti-sysc.h
12990
12991 OMFS FILESYSTEM
12992 M:      Bob Copeland <me@bobcopeland.com>
12993 L:      linux-karma-devel@lists.sourceforge.net
12994 S:      Maintained
12995 F:      Documentation/filesystems/omfs.rst
12996 F:      fs/omfs/
12997
12998 OMNIKEY CARDMAN 4000 DRIVER
12999 M:      Harald Welte <laforge@gnumonks.org>
13000 S:      Maintained
13001 F:      drivers/char/pcmcia/cm4000_cs.c
13002 F:      include/linux/cm4000_cs.h
13003 F:      include/uapi/linux/cm4000_cs.h
13004
13005 OMNIKEY CARDMAN 4040 DRIVER
13006 M:      Harald Welte <laforge@gnumonks.org>
13007 S:      Maintained
13008 F:      drivers/char/pcmcia/cm4040_cs.*
13009
13010 OMNIVISION OV02A10 SENSOR DRIVER
13011 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13012 L:      linux-media@vger.kernel.org
13013 S:      Maintained
13014 T:      git git://linuxtv.org/media_tree.git
13015 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13016 F:      drivers/media/i2c/ov02a10.c
13017
13018 OMNIVISION OV13858 SENSOR DRIVER
13019 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13020 L:      linux-media@vger.kernel.org
13021 S:      Maintained
13022 T:      git git://linuxtv.org/media_tree.git
13023 F:      drivers/media/i2c/ov13858.c
13024
13025 OMNIVISION OV2680 SENSOR DRIVER
13026 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13027 L:      linux-media@vger.kernel.org
13028 S:      Maintained
13029 T:      git git://linuxtv.org/media_tree.git
13030 F:      Documentation/devicetree/bindings/media/i2c/ov2680.yaml
13031 F:      drivers/media/i2c/ov2680.c
13032
13033 OMNIVISION OV2685 SENSOR DRIVER
13034 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13035 L:      linux-media@vger.kernel.org
13036 S:      Maintained
13037 T:      git git://linuxtv.org/media_tree.git
13038 F:      drivers/media/i2c/ov2685.c
13039
13040 OMNIVISION OV2740 SENSOR DRIVER
13041 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13042 R:      Shawn Tu <shawnx.tu@intel.com>
13043 R:      Bingbu Cao <bingbu.cao@intel.com>
13044 L:      linux-media@vger.kernel.org
13045 S:      Maintained
13046 T:      git git://linuxtv.org/media_tree.git
13047 F:      drivers/media/i2c/ov2740.c
13048
13049 OMNIVISION OV5640 SENSOR DRIVER
13050 M:      Steve Longerbeam <slongerbeam@gmail.com>
13051 L:      linux-media@vger.kernel.org
13052 S:      Maintained
13053 T:      git git://linuxtv.org/media_tree.git
13054 F:      drivers/media/i2c/ov5640.c
13055
13056 OMNIVISION OV5647 SENSOR DRIVER
13057 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
13058 M:      Jacopo Mondi <jacopo@jmondi.org>
13059 L:      linux-media@vger.kernel.org
13060 S:      Maintained
13061 T:      git git://linuxtv.org/media_tree.git
13062 F:      Documentation/devicetree/bindings/media/i2c/ov5647.yaml
13063 F:      drivers/media/i2c/ov5647.c
13064
13065 OMNIVISION OV5670 SENSOR DRIVER
13066 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13067 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
13068 L:      linux-media@vger.kernel.org
13069 S:      Maintained
13070 T:      git git://linuxtv.org/media_tree.git
13071 F:      drivers/media/i2c/ov5670.c
13072
13073 OMNIVISION OV5675 SENSOR DRIVER
13074 M:      Shawn Tu <shawnx.tu@intel.com>
13075 L:      linux-media@vger.kernel.org
13076 S:      Maintained
13077 T:      git git://linuxtv.org/media_tree.git
13078 F:      drivers/media/i2c/ov5675.c
13079
13080 OMNIVISION OV5695 SENSOR DRIVER
13081 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13082 L:      linux-media@vger.kernel.org
13083 S:      Maintained
13084 T:      git git://linuxtv.org/media_tree.git
13085 F:      drivers/media/i2c/ov5695.c
13086
13087 OMNIVISION OV7670 SENSOR DRIVER
13088 L:      linux-media@vger.kernel.org
13089 S:      Orphan
13090 T:      git git://linuxtv.org/media_tree.git
13091 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
13092 F:      drivers/media/i2c/ov7670.c
13093
13094 OMNIVISION OV772x SENSOR DRIVER
13095 M:      Jacopo Mondi <jacopo@jmondi.org>
13096 L:      linux-media@vger.kernel.org
13097 S:      Odd fixes
13098 T:      git git://linuxtv.org/media_tree.git
13099 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13100 F:      drivers/media/i2c/ov772x.c
13101 F:      include/media/i2c/ov772x.h
13102
13103 OMNIVISION OV7740 SENSOR DRIVER
13104 M:      Wenyou Yang <wenyou.yang@microchip.com>
13105 L:      linux-media@vger.kernel.org
13106 S:      Maintained
13107 T:      git git://linuxtv.org/media_tree.git
13108 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
13109 F:      drivers/media/i2c/ov7740.c
13110
13111 OMNIVISION OV8856 SENSOR DRIVER
13112 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13113 L:      linux-media@vger.kernel.org
13114 S:      Maintained
13115 T:      git git://linuxtv.org/media_tree.git
13116 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13117 F:      drivers/media/i2c/ov8856.c
13118
13119 OMNIVISION OV9640 SENSOR DRIVER
13120 M:      Petr Cvek <petrcvekcz@gmail.com>
13121 L:      linux-media@vger.kernel.org
13122 S:      Maintained
13123 F:      drivers/media/i2c/ov9640.*
13124
13125 OMNIVISION OV9650 SENSOR DRIVER
13126 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13127 R:      Akinobu Mita <akinobu.mita@gmail.com>
13128 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13129 L:      linux-media@vger.kernel.org
13130 S:      Maintained
13131 T:      git git://linuxtv.org/media_tree.git
13132 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
13133 F:      drivers/media/i2c/ov9650.c
13134
13135 OMNIVISION OV9734 SENSOR DRIVER
13136 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13137 R:      Bingbu Cao <bingbu.cao@intel.com>
13138 L:      linux-media@vger.kernel.org
13139 S:      Maintained
13140 T:      git git://linuxtv.org/media_tree.git
13141 F:      drivers/media/i2c/ov9734.c
13142
13143 ONENAND FLASH DRIVER
13144 M:      Kyungmin Park <kyungmin.park@samsung.com>
13145 L:      linux-mtd@lists.infradead.org
13146 S:      Maintained
13147 F:      drivers/mtd/nand/onenand/
13148 F:      include/linux/mtd/onenand*.h
13149
13150 ONION OMEGA2+ BOARD
13151 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
13152 L:      linux-mips@vger.kernel.org
13153 S:      Maintained
13154 F:      arch/mips/boot/dts/ralink/omega2p.dts
13155
13156 OP-TEE DRIVER
13157 M:      Jens Wiklander <jens.wiklander@linaro.org>
13158 L:      op-tee@lists.trustedfirmware.org
13159 S:      Maintained
13160 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
13161 F:      drivers/tee/optee/
13162
13163 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
13164 M:      Sumit Garg <sumit.garg@linaro.org>
13165 L:      op-tee@lists.trustedfirmware.org
13166 S:      Maintained
13167 F:      drivers/char/hw_random/optee-rng.c
13168
13169 OPA-VNIC DRIVER
13170 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
13171 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
13172 L:      linux-rdma@vger.kernel.org
13173 S:      Supported
13174 F:      drivers/infiniband/ulp/opa_vnic
13175
13176 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
13177 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
13178 M:      Frank Rowand <frowand.list@gmail.com>
13179 L:      devicetree@vger.kernel.org
13180 S:      Maintained
13181 F:      Documentation/devicetree/dynamic-resolution-notes.rst
13182 F:      Documentation/devicetree/overlay-notes.rst
13183 F:      drivers/of/overlay.c
13184 F:      drivers/of/resolver.c
13185 K:      of_overlay_notifier_
13186
13187 OPEN FIRMWARE AND FLATTENED DEVICE TREE
13188 M:      Rob Herring <robh+dt@kernel.org>
13189 M:      Frank Rowand <frowand.list@gmail.com>
13190 L:      devicetree@vger.kernel.org
13191 S:      Maintained
13192 W:      http://www.devicetree.org/
13193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13194 F:      Documentation/ABI/testing/sysfs-firmware-ofw
13195 F:      drivers/of/
13196 F:      include/linux/of*.h
13197 F:      scripts/dtc/
13198
13199 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
13200 M:      Rob Herring <robh+dt@kernel.org>
13201 L:      devicetree@vger.kernel.org
13202 S:      Maintained
13203 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
13204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13205 F:      Documentation/devicetree/
13206 F:      arch/*/boot/dts/
13207 F:      include/dt-bindings/
13208
13209 OPENCORES I2C BUS DRIVER
13210 M:      Peter Korsgaard <peter@korsgaard.com>
13211 M:      Andrew Lunn <andrew@lunn.ch>
13212 L:      linux-i2c@vger.kernel.org
13213 S:      Maintained
13214 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
13215 F:      Documentation/i2c/busses/i2c-ocores.rst
13216 F:      drivers/i2c/busses/i2c-ocores.c
13217 F:      include/linux/platform_data/i2c-ocores.h
13218
13219 OPENRISC ARCHITECTURE
13220 M:      Jonas Bonn <jonas@southpole.se>
13221 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
13222 M:      Stafford Horne <shorne@gmail.com>
13223 L:      openrisc@lists.librecores.org
13224 S:      Maintained
13225 W:      http://openrisc.io
13226 T:      git git://github.com/openrisc/linux.git
13227 F:      Documentation/devicetree/bindings/openrisc/
13228 F:      Documentation/openrisc/
13229 F:      arch/openrisc/
13230 F:      drivers/irqchip/irq-ompic.c
13231 F:      drivers/irqchip/irq-or1k-*
13232
13233 OPENVSWITCH
13234 M:      Pravin B Shelar <pshelar@ovn.org>
13235 L:      netdev@vger.kernel.org
13236 L:      dev@openvswitch.org
13237 S:      Maintained
13238 W:      http://openvswitch.org
13239 F:      include/uapi/linux/openvswitch.h
13240 F:      net/openvswitch/
13241
13242 OPERATING PERFORMANCE POINTS (OPP)
13243 M:      Viresh Kumar <vireshk@kernel.org>
13244 M:      Nishanth Menon <nm@ti.com>
13245 M:      Stephen Boyd <sboyd@kernel.org>
13246 L:      linux-pm@vger.kernel.org
13247 S:      Maintained
13248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
13249 F:      Documentation/devicetree/bindings/opp/
13250 F:      Documentation/power/opp.rst
13251 F:      drivers/opp/
13252 F:      include/linux/pm_opp.h
13253
13254 OPL4 DRIVER
13255 M:      Clemens Ladisch <clemens@ladisch.de>
13256 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13257 S:      Maintained
13258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13259 F:      sound/drivers/opl4/
13260
13261 OPROFILE
13262 M:      Robert Richter <rric@kernel.org>
13263 L:      oprofile-list@lists.sf.net
13264 S:      Maintained
13265 F:      arch/*/include/asm/oprofile*.h
13266 F:      arch/*/oprofile/
13267 F:      drivers/oprofile/
13268 F:      include/linux/oprofile.h
13269
13270 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
13271 M:      Mark Fasheh <mark@fasheh.com>
13272 M:      Joel Becker <jlbec@evilplan.org>
13273 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
13274 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
13275 S:      Supported
13276 W:      http://ocfs2.wiki.kernel.org
13277 F:      Documentation/filesystems/dlmfs.rst
13278 F:      Documentation/filesystems/ocfs2.rst
13279 F:      fs/ocfs2/
13280
13281 ORANGEFS FILESYSTEM
13282 M:      Mike Marshall <hubcap@omnibond.com>
13283 R:      Martin Brandenburg <martin@omnibond.com>
13284 L:      devel@lists.orangefs.org
13285 S:      Supported
13286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
13287 F:      Documentation/filesystems/orangefs.rst
13288 F:      fs/orangefs/
13289
13290 ORINOCO DRIVER
13291 L:      linux-wireless@vger.kernel.org
13292 S:      Orphan
13293 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
13294 W:      http://www.nongnu.org/orinoco/
13295 F:      drivers/net/wireless/intersil/orinoco/
13296
13297 OV2659 OMNIVISION SENSOR DRIVER
13298 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13299 L:      linux-media@vger.kernel.org
13300 S:      Maintained
13301 W:      https://linuxtv.org
13302 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13303 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13304 F:      drivers/media/i2c/ov2659.c
13305 F:      include/media/i2c/ov2659.h
13306
13307 OVERLAY FILESYSTEM
13308 M:      Miklos Szeredi <miklos@szeredi.hu>
13309 L:      linux-unionfs@vger.kernel.org
13310 S:      Supported
13311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
13312 F:      Documentation/filesystems/overlayfs.rst
13313 F:      fs/overlayfs/
13314
13315 P54 WIRELESS DRIVER
13316 M:      Christian Lamparter <chunkeey@googlemail.com>
13317 L:      linux-wireless@vger.kernel.org
13318 S:      Maintained
13319 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13320 F:      drivers/net/wireless/intersil/p54/
13321
13322 PACKING
13323 M:      Vladimir Oltean <olteanv@gmail.com>
13324 L:      netdev@vger.kernel.org
13325 S:      Supported
13326 F:      Documentation/core-api/packing.rst
13327 F:      include/linux/packing.h
13328 F:      lib/packing.c
13329
13330 PADATA PARALLEL EXECUTION MECHANISM
13331 M:      Steffen Klassert <steffen.klassert@secunet.com>
13332 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
13333 L:      linux-crypto@vger.kernel.org
13334 L:      linux-kernel@vger.kernel.org
13335 S:      Maintained
13336 F:      Documentation/core-api/padata.rst
13337 F:      include/linux/padata.h
13338 F:      kernel/padata.c
13339
13340 PAGE POOL
13341 M:      Jesper Dangaard Brouer <hawk@kernel.org>
13342 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
13343 L:      netdev@vger.kernel.org
13344 S:      Supported
13345 F:      Documentation/networking/page_pool.rst
13346 F:      include/net/page_pool.h
13347 F:      include/trace/events/page_pool.h
13348 F:      net/core/page_pool.c
13349
13350 PANASONIC LAPTOP ACPI EXTRAS DRIVER
13351 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
13352 L:      platform-driver-x86@vger.kernel.org
13353 S:      Maintained
13354 F:      drivers/platform/x86/panasonic-laptop.c
13355
13356 PARALLAX PING IIO SENSOR DRIVER
13357 M:      Andreas Klinger <ak@it-klinger.de>
13358 L:      linux-iio@vger.kernel.org
13359 S:      Maintained
13360 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
13361 F:      drivers/iio/proximity/ping.c
13362
13363 PARALLEL LCD/KEYPAD PANEL DRIVER
13364 M:      Willy Tarreau <willy@haproxy.com>
13365 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
13366 S:      Odd Fixes
13367 F:      Documentation/admin-guide/lcd-panel-cgram.rst
13368 F:      drivers/auxdisplay/panel.c
13369
13370 PARALLEL PORT SUBSYSTEM
13371 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
13372 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
13373 L:      linux-parport@lists.infradead.org (subscribers-only)
13374 S:      Maintained
13375 F:      Documentation/driver-api/parport*.rst
13376 F:      drivers/char/ppdev.c
13377 F:      drivers/parport/
13378 F:      include/linux/parport*.h
13379 F:      include/uapi/linux/ppdev.h
13380
13381 PARAVIRT_OPS INTERFACE
13382 M:      Juergen Gross <jgross@suse.com>
13383 M:      Deep Shah <sdeep@vmware.com>
13384 M:      "VMware, Inc." <pv-drivers@vmware.com>
13385 L:      virtualization@lists.linux-foundation.org
13386 S:      Supported
13387 F:      Documentation/virt/paravirt_ops.rst
13388 F:      arch/*/include/asm/paravirt*.h
13389 F:      arch/*/kernel/paravirt*
13390 F:      include/linux/hypervisor.h
13391
13392 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
13393 M:      Tim Waugh <tim@cyberelk.net>
13394 L:      linux-parport@lists.infradead.org (subscribers-only)
13395 S:      Maintained
13396 F:      Documentation/admin-guide/blockdev/paride.rst
13397 F:      drivers/block/paride/
13398
13399 PARISC ARCHITECTURE
13400 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
13401 M:      Helge Deller <deller@gmx.de>
13402 L:      linux-parisc@vger.kernel.org
13403 S:      Maintained
13404 W:      https://parisc.wiki.kernel.org
13405 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
13406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
13407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
13408 F:      Documentation/parisc/
13409 F:      arch/parisc/
13410 F:      drivers/char/agp/parisc-agp.c
13411 F:      drivers/input/misc/hp_sdc_rtc.c
13412 F:      drivers/input/serio/gscps2.c
13413 F:      drivers/input/serio/hp_sdc*
13414 F:      drivers/parisc/
13415 F:      drivers/parport/parport_gsc.*
13416 F:      drivers/tty/serial/8250/8250_gsc.c
13417 F:      drivers/video/console/sti*
13418 F:      drivers/video/fbdev/sti*
13419 F:      drivers/video/logo/logo_parisc*
13420 F:      include/linux/hp_sdc.h
13421
13422 PARMAN
13423 M:      Jiri Pirko <jiri@nvidia.com>
13424 L:      netdev@vger.kernel.org
13425 S:      Supported
13426 F:      include/linux/parman.h
13427 F:      lib/parman.c
13428 F:      lib/test_parman.c
13429
13430 PC ENGINES APU BOARD DRIVER
13431 M:      Enrico Weigelt, metux IT consult <info@metux.net>
13432 S:      Maintained
13433 F:      drivers/platform/x86/pcengines-apuv2.c
13434
13435 PC87360 HARDWARE MONITORING DRIVER
13436 M:      Jim Cromie <jim.cromie@gmail.com>
13437 L:      linux-hwmon@vger.kernel.org
13438 S:      Maintained
13439 F:      Documentation/hwmon/pc87360.rst
13440 F:      drivers/hwmon/pc87360.c
13441
13442 PC8736x GPIO DRIVER
13443 M:      Jim Cromie <jim.cromie@gmail.com>
13444 S:      Maintained
13445 F:      drivers/char/pc8736x_gpio.c
13446
13447 PC87427 HARDWARE MONITORING DRIVER
13448 M:      Jean Delvare <jdelvare@suse.com>
13449 L:      linux-hwmon@vger.kernel.org
13450 S:      Maintained
13451 F:      Documentation/hwmon/pc87427.rst
13452 F:      drivers/hwmon/pc87427.c
13453
13454 PCA9532 LED DRIVER
13455 M:      Riku Voipio <riku.voipio@iki.fi>
13456 S:      Maintained
13457 F:      drivers/leds/leds-pca9532.c
13458 F:      include/linux/leds-pca9532.h
13459
13460 PCA9541 I2C BUS MASTER SELECTOR DRIVER
13461 M:      Guenter Roeck <linux@roeck-us.net>
13462 L:      linux-i2c@vger.kernel.org
13463 S:      Maintained
13464 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
13465
13466 PCDP - PRIMARY CONSOLE AND DEBUG PORT
13467 M:      Khalid Aziz <khalid@gonehiking.org>
13468 S:      Maintained
13469 F:      drivers/firmware/pcdp.*
13470
13471 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
13472 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13473 M:      Pali Rohár <pali@kernel.org>
13474 L:      linux-pci@vger.kernel.org
13475 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13476 S:      Maintained
13477 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
13478 F:      drivers/pci/controller/pci-aardvark.c
13479
13480 PCI DRIVER FOR ALTERA PCIE IP
13481 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13482 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13483 L:      linux-pci@vger.kernel.org
13484 S:      Supported
13485 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
13486 F:      drivers/pci/controller/pcie-altera.c
13487
13488 PCI DRIVER FOR APPLIEDMICRO XGENE
13489 M:      Toan Le <toan@os.amperecomputing.com>
13490 L:      linux-pci@vger.kernel.org
13491 L:      linux-arm-kernel@lists.infradead.org
13492 S:      Maintained
13493 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
13494 F:      drivers/pci/controller/pci-xgene.c
13495
13496 PCI DRIVER FOR ARM VERSATILE PLATFORM
13497 M:      Rob Herring <robh@kernel.org>
13498 L:      linux-pci@vger.kernel.org
13499 L:      linux-arm-kernel@lists.infradead.org
13500 S:      Maintained
13501 F:      Documentation/devicetree/bindings/pci/versatile.yaml
13502 F:      drivers/pci/controller/pci-versatile.c
13503
13504 PCI DRIVER FOR ARMADA 8K
13505 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13506 L:      linux-pci@vger.kernel.org
13507 L:      linux-arm-kernel@lists.infradead.org
13508 S:      Maintained
13509 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
13510 F:      drivers/pci/controller/dwc/pcie-armada8k.c
13511
13512 PCI DRIVER FOR CADENCE PCIE IP
13513 M:      Tom Joseph <tjoseph@cadence.com>
13514 L:      linux-pci@vger.kernel.org
13515 S:      Maintained
13516 F:      Documentation/devicetree/bindings/pci/cdns,*
13517 F:      drivers/pci/controller/cadence/
13518
13519 PCI DRIVER FOR FREESCALE LAYERSCAPE
13520 M:      Minghuan Lian <minghuan.Lian@nxp.com>
13521 M:      Mingkai Hu <mingkai.hu@nxp.com>
13522 M:      Roy Zang <roy.zang@nxp.com>
13523 L:      linuxppc-dev@lists.ozlabs.org
13524 L:      linux-pci@vger.kernel.org
13525 L:      linux-arm-kernel@lists.infradead.org
13526 S:      Maintained
13527 F:      drivers/pci/controller/dwc/*layerscape*
13528
13529 PCI DRIVER FOR GENERIC OF HOSTS
13530 M:      Will Deacon <will@kernel.org>
13531 L:      linux-pci@vger.kernel.org
13532 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13533 S:      Maintained
13534 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13535 F:      drivers/pci/controller/pci-host-common.c
13536 F:      drivers/pci/controller/pci-host-generic.c
13537
13538 PCI DRIVER FOR IMX6
13539 M:      Richard Zhu <hongxing.zhu@nxp.com>
13540 M:      Lucas Stach <l.stach@pengutronix.de>
13541 L:      linux-pci@vger.kernel.org
13542 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13543 S:      Maintained
13544 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
13545 F:      drivers/pci/controller/dwc/*imx6*
13546
13547 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13548 M:      Jonathan Derrick <jonathan.derrick@intel.com>
13549 L:      linux-pci@vger.kernel.org
13550 S:      Supported
13551 F:      drivers/pci/controller/vmd.c
13552
13553 PCI DRIVER FOR MICROSEMI SWITCHTEC
13554 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
13555 M:      Logan Gunthorpe <logang@deltatee.com>
13556 L:      linux-pci@vger.kernel.org
13557 S:      Maintained
13558 F:      Documentation/ABI/testing/sysfs-class-switchtec
13559 F:      Documentation/driver-api/switchtec.rst
13560 F:      drivers/ntb/hw/mscc/
13561 F:      drivers/pci/switch/switchtec*
13562 F:      include/linux/switchtec.h
13563 F:      include/uapi/linux/switchtec_ioctl.h
13564
13565 PCI DRIVER FOR MOBIVEIL PCIE IP
13566 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
13567 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13568 L:      linux-pci@vger.kernel.org
13569 S:      Supported
13570 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
13571 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
13572
13573 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
13574 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13575 L:      linux-pci@vger.kernel.org
13576 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13577 S:      Maintained
13578 F:      drivers/pci/controller/*mvebu*
13579
13580 PCI DRIVER FOR NVIDIA TEGRA
13581 M:      Thierry Reding <thierry.reding@gmail.com>
13582 L:      linux-tegra@vger.kernel.org
13583 L:      linux-pci@vger.kernel.org
13584 S:      Supported
13585 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
13586 F:      drivers/pci/controller/pci-tegra.c
13587
13588 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13589 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13590 L:      linux-pci@vger.kernel.org
13591 L:      linux-arm-kernel@lists.infradead.org
13592 S:      Maintained
13593 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13594 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
13595
13596 PCI DRIVER FOR RENESAS R-CAR
13597 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
13598 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13599 L:      linux-pci@vger.kernel.org
13600 L:      linux-renesas-soc@vger.kernel.org
13601 S:      Maintained
13602 F:      Documentation/devicetree/bindings/pci/*rcar*
13603 F:      drivers/pci/controller/*rcar*
13604
13605 PCI DRIVER FOR SAMSUNG EXYNOS
13606 M:      Jingoo Han <jingoohan1@gmail.com>
13607 L:      linux-pci@vger.kernel.org
13608 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13609 L:      linux-samsung-soc@vger.kernel.org
13610 S:      Maintained
13611 F:      drivers/pci/controller/dwc/pci-exynos.c
13612
13613 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13614 M:      Jingoo Han <jingoohan1@gmail.com>
13615 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
13616 L:      linux-pci@vger.kernel.org
13617 S:      Maintained
13618 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
13619 F:      drivers/pci/controller/dwc/*designware*
13620
13621 PCI DRIVER FOR TI DRA7XX/J721E
13622 M:      Kishon Vijay Abraham I <kishon@ti.com>
13623 L:      linux-omap@vger.kernel.org
13624 L:      linux-pci@vger.kernel.org
13625 L:      linux-arm-kernel@lists.infradead.org
13626 S:      Supported
13627 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
13628 F:      drivers/pci/controller/cadence/pci-j721e.c
13629 F:      drivers/pci/controller/dwc/pci-dra7xx.c
13630
13631 PCI DRIVER FOR TI KEYSTONE
13632 M:      Murali Karicheri <m-karicheri2@ti.com>
13633 L:      linux-pci@vger.kernel.org
13634 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13635 S:      Maintained
13636 F:      drivers/pci/controller/dwc/pci-keystone.c
13637
13638 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13639 M:      Linus Walleij <linus.walleij@linaro.org>
13640 L:      linux-pci@vger.kernel.org
13641 S:      Maintained
13642 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13643 F:      drivers/pci/controller/pci-v3-semi.c
13644
13645 PCI ENDPOINT SUBSYSTEM
13646 M:      Kishon Vijay Abraham I <kishon@ti.com>
13647 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13648 L:      linux-pci@vger.kernel.org
13649 S:      Supported
13650 F:      Documentation/PCI/endpoint/*
13651 F:      Documentation/misc-devices/pci-endpoint-test.rst
13652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13653 F:      drivers/misc/pci_endpoint_test.c
13654 F:      drivers/pci/endpoint/
13655 F:      tools/pci/
13656
13657 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13658 M:      Russell Currey <ruscur@russell.cc>
13659 M:      Oliver O'Halloran <oohall@gmail.com>
13660 L:      linuxppc-dev@lists.ozlabs.org
13661 S:      Supported
13662 F:      Documentation/PCI/pci-error-recovery.rst
13663 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
13664 F:      arch/powerpc/include/*/eeh*.h
13665 F:      arch/powerpc/kernel/eeh*.c
13666 F:      arch/powerpc/platforms/*/eeh*.c
13667 F:      drivers/pci/pcie/aer.c
13668 F:      drivers/pci/pcie/dpc.c
13669 F:      drivers/pci/pcie/err.c
13670
13671 PCI ERROR RECOVERY
13672 M:      Linas Vepstas <linasvepstas@gmail.com>
13673 L:      linux-pci@vger.kernel.org
13674 S:      Supported
13675 F:      Documentation/PCI/pci-error-recovery.rst
13676
13677 PCI MSI DRIVER FOR ALTERA MSI IP
13678 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13679 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13680 L:      linux-pci@vger.kernel.org
13681 S:      Supported
13682 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13683 F:      drivers/pci/controller/pcie-altera-msi.c
13684
13685 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13686 M:      Toan Le <toan@os.amperecomputing.com>
13687 L:      linux-pci@vger.kernel.org
13688 L:      linux-arm-kernel@lists.infradead.org
13689 S:      Maintained
13690 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13691 F:      drivers/pci/controller/pci-xgene-msi.c
13692
13693 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13694 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13695 R:      Rob Herring <robh@kernel.org>
13696 L:      linux-pci@vger.kernel.org
13697 S:      Supported
13698 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13700 F:      drivers/pci/controller/
13701
13702 PCI SUBSYSTEM
13703 M:      Bjorn Helgaas <bhelgaas@google.com>
13704 L:      linux-pci@vger.kernel.org
13705 S:      Supported
13706 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13708 F:      Documentation/PCI/
13709 F:      Documentation/devicetree/bindings/pci/
13710 F:      arch/x86/kernel/early-quirks.c
13711 F:      arch/x86/kernel/quirks.c
13712 F:      arch/x86/pci/
13713 F:      drivers/acpi/pci*
13714 F:      drivers/pci/
13715 F:      include/asm-generic/pci*
13716 F:      include/linux/of_pci.h
13717 F:      include/linux/pci*
13718 F:      include/uapi/linux/pci*
13719 F:      lib/pci*
13720
13721 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13722 M:      Jonathan Chocron <jonnyc@amazon.com>
13723 L:      linux-pci@vger.kernel.org
13724 S:      Maintained
13725 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13726 F:      drivers/pci/controller/dwc/pcie-al.c
13727
13728 PCIE DRIVER FOR AMLOGIC MESON
13729 M:      Yue Wang <yue.wang@Amlogic.com>
13730 L:      linux-pci@vger.kernel.org
13731 L:      linux-amlogic@lists.infradead.org
13732 S:      Maintained
13733 F:      drivers/pci/controller/dwc/pci-meson.c
13734
13735 PCIE DRIVER FOR AXIS ARTPEC
13736 M:      Jesper Nilsson <jesper.nilsson@axis.com>
13737 L:      linux-arm-kernel@axis.com
13738 L:      linux-pci@vger.kernel.org
13739 S:      Maintained
13740 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13741 F:      drivers/pci/controller/dwc/*artpec*
13742
13743 PCIE DRIVER FOR CAVIUM THUNDERX
13744 M:      Robert Richter <rric@kernel.org>
13745 L:      linux-pci@vger.kernel.org
13746 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13747 S:      Odd Fixes
13748 F:      drivers/pci/controller/pci-thunder-*
13749
13750 PCIE DRIVER FOR HISILICON
13751 M:      Zhou Wang <wangzhou1@hisilicon.com>
13752 L:      linux-pci@vger.kernel.org
13753 S:      Maintained
13754 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13755 F:      drivers/pci/controller/dwc/pcie-hisi.c
13756
13757 PCIE DRIVER FOR HISILICON KIRIN
13758 M:      Xiaowei Song <songxiaowei@hisilicon.com>
13759 M:      Binghui Wang <wangbinghui@hisilicon.com>
13760 L:      linux-pci@vger.kernel.org
13761 S:      Maintained
13762 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13763 F:      drivers/pci/controller/dwc/pcie-kirin.c
13764
13765 PCIE DRIVER FOR HISILICON STB
13766 M:      Shawn Guo <shawn.guo@linaro.org>
13767 L:      linux-pci@vger.kernel.org
13768 S:      Maintained
13769 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13770 F:      drivers/pci/controller/dwc/pcie-histb.c
13771
13772 PCIE DRIVER FOR MEDIATEK
13773 M:      Ryder Lee <ryder.lee@mediatek.com>
13774 L:      linux-pci@vger.kernel.org
13775 L:      linux-mediatek@lists.infradead.org
13776 S:      Supported
13777 F:      Documentation/devicetree/bindings/pci/mediatek*
13778 F:      drivers/pci/controller/*mediatek*
13779
13780 PCIE DRIVER FOR QUALCOMM MSM
13781 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
13782 L:      linux-pci@vger.kernel.org
13783 L:      linux-arm-msm@vger.kernel.org
13784 S:      Maintained
13785 F:      drivers/pci/controller/dwc/*qcom*
13786
13787 PCIE DRIVER FOR ROCKCHIP
13788 M:      Shawn Lin <shawn.lin@rock-chips.com>
13789 L:      linux-pci@vger.kernel.org
13790 L:      linux-rockchip@lists.infradead.org
13791 S:      Maintained
13792 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13793 F:      drivers/pci/controller/pcie-rockchip*
13794
13795 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13796 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
13797 L:      linux-pci@vger.kernel.org
13798 S:      Maintained
13799 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
13800 F:      drivers/pci/controller/dwc/pcie-uniphier*
13801
13802 PCIE DRIVER FOR ST SPEAR13XX
13803 M:      Pratyush Anand <pratyush.anand@gmail.com>
13804 L:      linux-pci@vger.kernel.org
13805 S:      Maintained
13806 F:      drivers/pci/controller/dwc/*spear*
13807
13808 PCMCIA SUBSYSTEM
13809 M:      Dominik Brodowski <linux@dominikbrodowski.net>
13810 S:      Odd Fixes
13811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13812 F:      Documentation/pcmcia/
13813 F:      drivers/pcmcia/
13814 F:      include/pcmcia/
13815 F:      tools/pcmcia/
13816
13817 PCNET32 NETWORK DRIVER
13818 M:      Don Fry <pcnet32@frontier.com>
13819 L:      netdev@vger.kernel.org
13820 S:      Maintained
13821 F:      drivers/net/ethernet/amd/pcnet32.c
13822
13823 PCRYPT PARALLEL CRYPTO ENGINE
13824 M:      Steffen Klassert <steffen.klassert@secunet.com>
13825 L:      linux-crypto@vger.kernel.org
13826 S:      Maintained
13827 F:      crypto/pcrypt.c
13828 F:      include/crypto/pcrypt.h
13829
13830 PEAQ WMI HOTKEYS DRIVER
13831 M:      Hans de Goede <hdegoede@redhat.com>
13832 L:      platform-driver-x86@vger.kernel.org
13833 S:      Maintained
13834 F:      drivers/platform/x86/peaq-wmi.c
13835
13836 PENSANDO ETHERNET DRIVERS
13837 M:      Shannon Nelson <snelson@pensando.io>
13838 M:      Pensando Drivers <drivers@pensando.io>
13839 L:      netdev@vger.kernel.org
13840 S:      Supported
13841 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
13842 F:      drivers/net/ethernet/pensando/
13843
13844 PER-CPU MEMORY ALLOCATOR
13845 M:      Dennis Zhou <dennis@kernel.org>
13846 M:      Tejun Heo <tj@kernel.org>
13847 M:      Christoph Lameter <cl@linux.com>
13848 S:      Maintained
13849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13850 F:      arch/*/include/asm/percpu.h
13851 F:      include/linux/percpu*.h
13852 F:      mm/percpu*.c
13853
13854 PER-TASK DELAY ACCOUNTING
13855 M:      Balbir Singh <bsingharora@gmail.com>
13856 S:      Maintained
13857 F:      include/linux/delayacct.h
13858 F:      kernel/delayacct.c
13859
13860 PERFORMANCE EVENTS SUBSYSTEM
13861 M:      Peter Zijlstra <peterz@infradead.org>
13862 M:      Ingo Molnar <mingo@redhat.com>
13863 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
13864 R:      Mark Rutland <mark.rutland@arm.com>
13865 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
13866 R:      Jiri Olsa <jolsa@redhat.com>
13867 R:      Namhyung Kim <namhyung@kernel.org>
13868 L:      linux-kernel@vger.kernel.org
13869 S:      Supported
13870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13871 F:      arch/*/events/*
13872 F:      arch/*/events/*/*
13873 F:      arch/*/include/asm/perf_event.h
13874 F:      arch/*/kernel/*/*/perf_event*.c
13875 F:      arch/*/kernel/*/perf_event*.c
13876 F:      arch/*/kernel/perf_callchain.c
13877 F:      arch/*/kernel/perf_event*.c
13878 F:      include/linux/perf_event.h
13879 F:      include/uapi/linux/perf_event.h
13880 F:      kernel/events/*
13881 F:      tools/lib/perf/
13882 F:      tools/perf/
13883
13884 PERFORMANCE EVENTS TOOLING ARM64
13885 R:      John Garry <john.garry@huawei.com>
13886 R:      Will Deacon <will@kernel.org>
13887 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
13888 R:      Leo Yan <leo.yan@linaro.org>
13889 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13890 S:      Supported
13891 F:      tools/build/feature/test-libopencsd.c
13892 F:      tools/perf/arch/arm*/
13893 F:      tools/perf/pmu-events/arch/arm64/
13894 F:      tools/perf/util/arm-spe*
13895 F:      tools/perf/util/cs-etm*
13896
13897 PERSONALITY HANDLING
13898 M:      Christoph Hellwig <hch@infradead.org>
13899 L:      linux-abi-devel@lists.sourceforge.net
13900 S:      Maintained
13901 F:      include/linux/personality.h
13902 F:      include/uapi/linux/personality.h
13903
13904 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13905 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13906 L:      linux-input@vger.kernel.org
13907 S:      Maintained
13908 F:      Documentation/input/devices/pxrc.rst
13909 F:      drivers/input/joystick/pxrc.c
13910
13911 PHONET PROTOCOL
13912 M:      Remi Denis-Courmont <courmisch@gmail.com>
13913 S:      Supported
13914 F:      Documentation/networking/phonet.rst
13915 F:      include/linux/phonet.h
13916 F:      include/net/phonet/
13917 F:      include/uapi/linux/phonet.h
13918 F:      net/phonet/
13919
13920 PHRAM MTD DRIVER
13921 M:      Joern Engel <joern@lazybastard.org>
13922 L:      linux-mtd@lists.infradead.org
13923 S:      Maintained
13924 F:      drivers/mtd/devices/phram.c
13925
13926 PICOLCD HID DRIVER
13927 M:      Bruno Prémont <bonbons@linux-vserver.org>
13928 L:      linux-input@vger.kernel.org
13929 S:      Maintained
13930 F:      drivers/hid/hid-picolcd*
13931
13932 PICOXCELL SUPPORT
13933 M:      Jamie Iles <jamie@jamieiles.com>
13934 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13935 S:      Supported
13936 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13937 F:      arch/arm/boot/dts/picoxcell*
13938 F:      arch/arm/mach-picoxcell/
13939 F:      drivers/crypto/picoxcell*
13940
13941 PIDFD API
13942 M:      Christian Brauner <christian@brauner.io>
13943 L:      linux-kernel@vger.kernel.org
13944 S:      Maintained
13945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13946 F:      samples/pidfd/
13947 F:      tools/testing/selftests/clone3/
13948 F:      tools/testing/selftests/pid_namespace/
13949 F:      tools/testing/selftests/pidfd/
13950 K:      (?i)pidfd
13951 K:      (?i)clone3
13952 K:      \b(clone_args|kernel_clone_args)\b
13953
13954 PIN CONTROL SUBSYSTEM
13955 M:      Linus Walleij <linus.walleij@linaro.org>
13956 L:      linux-gpio@vger.kernel.org
13957 S:      Maintained
13958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13959 F:      Documentation/devicetree/bindings/pinctrl/
13960 F:      Documentation/driver-api/pinctl.rst
13961 F:      drivers/pinctrl/
13962 F:      include/linux/pinctrl/
13963
13964 PIN CONTROLLER - FREESCALE
13965 M:      Dong Aisheng <aisheng.dong@nxp.com>
13966 M:      Fabio Estevam <festevam@gmail.com>
13967 M:      Shawn Guo <shawnguo@kernel.org>
13968 M:      Stefan Agner <stefan@agner.ch>
13969 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
13970 L:      linux-gpio@vger.kernel.org
13971 S:      Maintained
13972 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13973 F:      drivers/pinctrl/freescale/
13974
13975 PIN CONTROLLER - INTEL
13976 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13977 M:      Andy Shevchenko <andy@kernel.org>
13978 S:      Maintained
13979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13980 F:      drivers/pinctrl/intel/
13981
13982 PIN CONTROLLER - MEDIATEK
13983 M:      Sean Wang <sean.wang@kernel.org>
13984 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13985 S:      Maintained
13986 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13987 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13988 F:      drivers/pinctrl/mediatek/
13989
13990 PIN CONTROLLER - MICROCHIP AT91
13991 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13992 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13993 L:      linux-gpio@vger.kernel.org
13994 S:      Supported
13995 F:      drivers/gpio/gpio-sama5d2-piobu.c
13996 F:      drivers/pinctrl/pinctrl-at91*
13997
13998 PIN CONTROLLER - QUALCOMM
13999 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14000 L:      linux-arm-msm@vger.kernel.org
14001 S:      Maintained
14002 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14003 F:      drivers/pinctrl/qcom/
14004
14005 PIN CONTROLLER - RENESAS
14006 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14007 L:      linux-renesas-soc@vger.kernel.org
14008 S:      Supported
14009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14010 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
14011 F:      drivers/pinctrl/renesas/
14012
14013 PIN CONTROLLER - SAMSUNG
14014 M:      Tomasz Figa <tomasz.figa@gmail.com>
14015 M:      Krzysztof Kozlowski <krzk@kernel.org>
14016 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14018 L:      linux-samsung-soc@vger.kernel.org
14019 S:      Maintained
14020 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
14021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14022 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14023 F:      drivers/pinctrl/samsung/
14024 F:      include/dt-bindings/pinctrl/samsung.h
14025
14026 PIN CONTROLLER - SINGLE
14027 M:      Tony Lindgren <tony@atomide.com>
14028 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
14029 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14030 L:      linux-omap@vger.kernel.org
14031 S:      Maintained
14032 F:      drivers/pinctrl/pinctrl-single.c
14033
14034 PIN CONTROLLER - ST SPEAR
14035 M:      Viresh Kumar <vireshk@kernel.org>
14036 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14037 S:      Maintained
14038 W:      http://www.st.com/spear
14039 F:      drivers/pinctrl/spear/
14040
14041 PISTACHIO SOC SUPPORT
14042 M:      James Hartley <james.hartley@sondrel.com>
14043 L:      linux-mips@vger.kernel.org
14044 S:      Odd Fixes
14045 F:      arch/mips/boot/dts/img/pistachio*
14046 F:      arch/mips/configs/pistachio*_defconfig
14047 F:      arch/mips/include/asm/mach-pistachio/
14048 F:      arch/mips/pistachio/
14049
14050 PKTCDVD DRIVER
14051 M:      linux-block@vger.kernel.org
14052 S:      Orphan
14053 F:      drivers/block/pktcdvd.c
14054 F:      include/linux/pktcdvd.h
14055 F:      include/uapi/linux/pktcdvd.h
14056
14057 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14058 M:      Tomasz Duszynski <tduszyns@gmail.com>
14059 S:      Maintained
14060 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14061 F:      drivers/iio/chemical/pms7003.c
14062
14063 PLDMFW LIBRARY
14064 M:      Jacob Keller <jacob.e.keller@intel.com>
14065 S:      Maintained
14066 F:      Documentation/driver-api/pldmfw/
14067 F:      include/linux/pldmfw.h
14068 F:      lib/pldmfw/
14069
14070 PLX DMA DRIVER
14071 M:      Logan Gunthorpe <logang@deltatee.com>
14072 S:      Maintained
14073 F:      drivers/dma/plx_dma.c
14074
14075 PM6764TR DRIVER
14076 M:      Charles Hsu     <hsu.yungteng@gmail.com>
14077 L:      linux-hwmon@vger.kernel.org
14078 S:      Maintained
14079 F:      Documentation/hwmon/pm6764tr.rst
14080 F:      drivers/hwmon/pmbus/pm6764tr.c
14081
14082 PM-GRAPH UTILITY
14083 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14084 L:      linux-pm@vger.kernel.org
14085 S:      Supported
14086 W:      https://01.org/pm-graph
14087 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14088 T:      git git://github.com/intel/pm-graph
14089 F:      tools/power/pm-graph
14090
14091 PMBUS HARDWARE MONITORING DRIVERS
14092 M:      Guenter Roeck <linux@roeck-us.net>
14093 L:      linux-hwmon@vger.kernel.org
14094 S:      Maintained
14095 W:      http://hwmon.wiki.kernel.org/
14096 W:      http://www.roeck-us.net/linux/drivers/
14097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14098 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14099 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
14100 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
14101 F:      Documentation/hwmon/adm1275.rst
14102 F:      Documentation/hwmon/ibm-cffps.rst
14103 F:      Documentation/hwmon/ir35221.rst
14104 F:      Documentation/hwmon/lm25066.rst
14105 F:      Documentation/hwmon/ltc2978.rst
14106 F:      Documentation/hwmon/ltc3815.rst
14107 F:      Documentation/hwmon/max16064.rst
14108 F:      Documentation/hwmon/max20751.rst
14109 F:      Documentation/hwmon/max31785.rst
14110 F:      Documentation/hwmon/max34440.rst
14111 F:      Documentation/hwmon/max8688.rst
14112 F:      Documentation/hwmon/pmbus-core.rst
14113 F:      Documentation/hwmon/pmbus.rst
14114 F:      Documentation/hwmon/tps40422.rst
14115 F:      Documentation/hwmon/ucd9000.rst
14116 F:      Documentation/hwmon/ucd9200.rst
14117 F:      Documentation/hwmon/zl6100.rst
14118 F:      drivers/hwmon/pmbus/
14119 F:      include/linux/pmbus.h
14120
14121 PMC SIERRA MaxRAID DRIVER
14122 L:      linux-scsi@vger.kernel.org
14123 S:      Orphan
14124 W:      http://www.pmc-sierra.com/
14125 F:      drivers/scsi/pmcraid.*
14126
14127 PMC SIERRA PM8001 DRIVER
14128 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14129 L:      linux-scsi@vger.kernel.org
14130 S:      Supported
14131 F:      drivers/scsi/pm8001/
14132
14133 PNI RM3100 IIO DRIVER
14134 M:      Song Qiang <songqiang1304521@gmail.com>
14135 L:      linux-iio@vger.kernel.org
14136 S:      Maintained
14137 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
14138 F:      drivers/iio/magnetometer/rm3100*
14139
14140 PNP SUPPORT
14141 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
14142 L:      linux-acpi@vger.kernel.org
14143 S:      Maintained
14144 F:      drivers/pnp/
14145 F:      include/linux/pnp.h
14146
14147 POSIX CLOCKS and TIMERS
14148 M:      Thomas Gleixner <tglx@linutronix.de>
14149 L:      linux-kernel@vger.kernel.org
14150 S:      Maintained
14151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
14152 F:      fs/timerfd.c
14153 F:      include/linux/time_namespace.h
14154 F:      include/linux/timer*
14155 F:      kernel/time/*timer*
14156 F:      kernel/time/namespace.c
14157
14158 POWER MANAGEMENT CORE
14159 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
14160 L:      linux-pm@vger.kernel.org
14161 S:      Supported
14162 B:      https://bugzilla.kernel.org
14163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14164 F:      drivers/base/power/
14165 F:      drivers/powercap/
14166 F:      include/linux/intel_rapl.h
14167 F:      include/linux/pm.h
14168 F:      include/linux/pm_*
14169 F:      include/linux/powercap.h
14170 F:      kernel/configs/nopm.config
14171
14172 POWER STATE COORDINATION INTERFACE (PSCI)
14173 M:      Mark Rutland <mark.rutland@arm.com>
14174 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14175 L:      linux-arm-kernel@lists.infradead.org
14176 S:      Maintained
14177 F:      drivers/firmware/psci/
14178 F:      include/linux/psci.h
14179 F:      include/uapi/linux/psci.h
14180
14181 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
14182 M:      Sebastian Reichel <sre@kernel.org>
14183 L:      linux-pm@vger.kernel.org
14184 S:      Maintained
14185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
14186 F:      Documentation/ABI/testing/sysfs-class-power
14187 F:      Documentation/devicetree/bindings/power/supply/
14188 F:      drivers/power/supply/
14189 F:      include/linux/power_supply.h
14190
14191 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
14192 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
14193 L:      linuxppc-dev@lists.ozlabs.org
14194 S:      Maintained
14195 F:      drivers/char/powernv-op-panel.c
14196
14197 PPP OVER ATM (RFC 2364)
14198 M:      Mitchell Blank Jr <mitch@sfgoth.com>
14199 S:      Maintained
14200 F:      include/uapi/linux/atmppp.h
14201 F:      net/atm/pppoatm.c
14202
14203 PPP OVER ETHERNET
14204 M:      Michal Ostrowski <mostrows@earthlink.net>
14205 S:      Maintained
14206 F:      drivers/net/ppp/pppoe.c
14207 F:      drivers/net/ppp/pppox.c
14208
14209 PPP OVER L2TP
14210 M:      James Chapman <jchapman@katalix.com>
14211 S:      Maintained
14212 F:      include/linux/if_pppol2tp.h
14213 F:      include/uapi/linux/if_pppol2tp.h
14214 F:      net/l2tp/l2tp_ppp.c
14215
14216 PPP PROTOCOL DRIVERS AND COMPRESSORS
14217 M:      Paul Mackerras <paulus@samba.org>
14218 L:      linux-ppp@vger.kernel.org
14219 S:      Maintained
14220 F:      drivers/net/ppp/ppp_*
14221
14222 PPS SUPPORT
14223 M:      Rodolfo Giometti <giometti@enneenne.com>
14224 L:      linuxpps@ml.enneenne.com (subscribers-only)
14225 S:      Maintained
14226 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
14227 F:      Documentation/ABI/testing/sysfs-pps
14228 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
14229 F:      Documentation/driver-api/pps.rst
14230 F:      drivers/pps/
14231 F:      include/linux/pps*.h
14232 F:      include/uapi/linux/pps.h
14233
14234 PPTP DRIVER
14235 M:      Dmitry Kozlov <xeb@mail.ru>
14236 L:      netdev@vger.kernel.org
14237 S:      Maintained
14238 W:      http://sourceforge.net/projects/accel-pptp
14239 F:      drivers/net/ppp/pptp.c
14240
14241 PRESSURE STALL INFORMATION (PSI)
14242 M:      Johannes Weiner <hannes@cmpxchg.org>
14243 S:      Maintained
14244 F:      include/linux/psi*
14245 F:      kernel/sched/psi.c
14246
14247 PRINTK
14248 M:      Petr Mladek <pmladek@suse.com>
14249 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
14250 R:      Steven Rostedt <rostedt@goodmis.org>
14251 R:      John Ogness <john.ogness@linutronix.de>
14252 S:      Maintained
14253 F:      include/linux/printk.h
14254 F:      kernel/printk/
14255
14256 PRISM54 WIRELESS DRIVER
14257 M:      Luis Chamberlain <mcgrof@kernel.org>
14258 L:      linux-wireless@vger.kernel.org
14259 S:      Obsolete
14260 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14261 F:      drivers/net/wireless/intersil/prism54/
14262
14263 PROC FILESYSTEM
14264 R:      Alexey Dobriyan <adobriyan@gmail.com>
14265 L:      linux-kernel@vger.kernel.org
14266 L:      linux-fsdevel@vger.kernel.org
14267 S:      Maintained
14268 F:      Documentation/filesystems/proc.rst
14269 F:      fs/proc/
14270 F:      include/linux/proc_fs.h
14271 F:      tools/testing/selftests/proc/
14272
14273 PROC SYSCTL
14274 M:      Luis Chamberlain <mcgrof@kernel.org>
14275 M:      Kees Cook <keescook@chromium.org>
14276 M:      Iurii Zaikin <yzaikin@google.com>
14277 L:      linux-kernel@vger.kernel.org
14278 L:      linux-fsdevel@vger.kernel.org
14279 S:      Maintained
14280 F:      fs/proc/proc_sysctl.c
14281 F:      include/linux/sysctl.h
14282 F:      kernel/sysctl-test.c
14283 F:      kernel/sysctl.c
14284 F:      tools/testing/selftests/sysctl/
14285
14286 PS3 NETWORK SUPPORT
14287 M:      Geoff Levand <geoff@infradead.org>
14288 L:      netdev@vger.kernel.org
14289 L:      linuxppc-dev@lists.ozlabs.org
14290 S:      Maintained
14291 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
14292
14293 PS3 PLATFORM SUPPORT
14294 M:      Geoff Levand <geoff@infradead.org>
14295 L:      linuxppc-dev@lists.ozlabs.org
14296 S:      Maintained
14297 F:      arch/powerpc/boot/ps3*
14298 F:      arch/powerpc/include/asm/lv1call.h
14299 F:      arch/powerpc/include/asm/ps3*.h
14300 F:      arch/powerpc/platforms/ps3/
14301 F:      drivers/*/ps3*
14302 F:      drivers/ps3/
14303 F:      drivers/rtc/rtc-ps3.c
14304 F:      drivers/usb/host/*ps3.c
14305 F:      sound/ppc/snd_ps3*
14306
14307 PS3VRAM DRIVER
14308 M:      Jim Paris <jim@jtan.com>
14309 M:      Geoff Levand <geoff@infradead.org>
14310 L:      linuxppc-dev@lists.ozlabs.org
14311 S:      Maintained
14312 F:      drivers/block/ps3vram.c
14313
14314 PSAMPLE PACKET SAMPLING SUPPORT
14315 M:      Yotam Gigi <yotam.gi@gmail.com>
14316 S:      Maintained
14317 F:      include/net/psample.h
14318 F:      include/uapi/linux/psample.h
14319 F:      net/psample
14320
14321 PSTORE FILESYSTEM
14322 M:      Kees Cook <keescook@chromium.org>
14323 M:      Anton Vorontsov <anton@enomsg.org>
14324 M:      Colin Cross <ccross@android.com>
14325 M:      Tony Luck <tony.luck@intel.com>
14326 S:      Maintained
14327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
14328 F:      Documentation/admin-guide/ramoops.rst
14329 F:      Documentation/admin-guide/pstore-blk.rst
14330 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
14331 F:      drivers/acpi/apei/erst.c
14332 F:      drivers/firmware/efi/efi-pstore.c
14333 F:      fs/pstore/
14334 F:      include/linux/pstore*
14335 K:      \b(pstore|ramoops)
14336
14337 PTP HARDWARE CLOCK SUPPORT
14338 M:      Richard Cochran <richardcochran@gmail.com>
14339 L:      netdev@vger.kernel.org
14340 S:      Maintained
14341 W:      http://linuxptp.sourceforge.net/
14342 F:      Documentation/ABI/testing/sysfs-ptp
14343 F:      Documentation/driver-api/ptp.rst
14344 F:      drivers/net/phy/dp83640*
14345 F:      drivers/ptp/*
14346 F:      include/linux/ptp_cl*
14347
14348 PTRACE SUPPORT
14349 M:      Oleg Nesterov <oleg@redhat.com>
14350 S:      Maintained
14351 F:      arch/*/*/ptrace*.c
14352 F:      arch/*/include/asm/ptrace*.h
14353 F:      arch/*/ptrace*.c
14354 F:      include/asm-generic/syscall.h
14355 F:      include/linux/ptrace.h
14356 F:      include/linux/regset.h
14357 F:      include/linux/tracehook.h
14358 F:      include/uapi/linux/ptrace.h
14359 F:      include/uapi/linux/ptrace.h
14360 F:      kernel/ptrace.c
14361
14362 PULSE8-CEC DRIVER
14363 M:      Hans Verkuil <hverkuil@xs4all.nl>
14364 L:      linux-media@vger.kernel.org
14365 S:      Maintained
14366 T:      git git://linuxtv.org/media_tree.git
14367 F:      Documentation/admin-guide/media/pulse8-cec.rst
14368 F:      drivers/media/cec/usb/pulse8/
14369
14370 PVRUSB2 VIDEO4LINUX DRIVER
14371 M:      Mike Isely <isely@pobox.com>
14372 L:      pvrusb2@isely.net       (subscribers-only)
14373 L:      linux-media@vger.kernel.org
14374 S:      Maintained
14375 W:      http://www.isely.net/pvrusb2/
14376 T:      git git://linuxtv.org/media_tree.git
14377 F:      Documentation/driver-api/media/drivers/pvrusb2*
14378 F:      drivers/media/usb/pvrusb2/
14379
14380 PWC WEBCAM DRIVER
14381 M:      Hans Verkuil <hverkuil@xs4all.nl>
14382 L:      linux-media@vger.kernel.org
14383 S:      Odd Fixes
14384 T:      git git://linuxtv.org/media_tree.git
14385 F:      drivers/media/usb/pwc/*
14386 F:      include/trace/events/pwc.h
14387
14388 PWM FAN DRIVER
14389 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14390 L:      linux-hwmon@vger.kernel.org
14391 S:      Supported
14392 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
14393 F:      Documentation/hwmon/pwm-fan.rst
14394 F:      drivers/hwmon/pwm-fan.c
14395
14396 PWM IR Transmitter
14397 M:      Sean Young <sean@mess.org>
14398 L:      linux-media@vger.kernel.org
14399 S:      Maintained
14400 F:      drivers/media/rc/pwm-ir-tx.c
14401
14402 PWM SUBSYSTEM
14403 M:      Thierry Reding <thierry.reding@gmail.com>
14404 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
14405 M:      Lee Jones <lee.jones@linaro.org>
14406 L:      linux-pwm@vger.kernel.org
14407 S:      Maintained
14408 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
14409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
14410 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
14411 F:      Documentation/devicetree/bindings/pwm/
14412 F:      Documentation/driver-api/pwm.rst
14413 F:      drivers/gpio/gpio-mvebu.c
14414 F:      drivers/pwm/
14415 F:      drivers/video/backlight/pwm_bl.c
14416 F:      include/linux/pwm.h
14417 F:      include/linux/pwm_backlight.h
14418 K:      pwm_(config|apply_state|ops)
14419
14420 PXA GPIO DRIVER
14421 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14422 L:      linux-gpio@vger.kernel.org
14423 S:      Maintained
14424 F:      drivers/gpio/gpio-pxa.c
14425
14426 PXA MMCI DRIVER
14427 S:      Orphan
14428
14429 PXA RTC DRIVER
14430 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14431 L:      linux-rtc@vger.kernel.org
14432 S:      Maintained
14433
14434 PXA2xx/PXA3xx SUPPORT
14435 M:      Daniel Mack <daniel@zonque.org>
14436 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
14437 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14438 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14439 S:      Maintained
14440 T:      git git://github.com/hzhuang1/linux.git
14441 T:      git git://github.com/rjarzmik/linux.git
14442 F:      arch/arm/boot/dts/pxa*
14443 F:      arch/arm/mach-pxa/
14444 F:      drivers/dma/pxa*
14445 F:      drivers/pcmcia/pxa2xx*
14446 F:      drivers/pinctrl/pxa/
14447 F:      drivers/spi/spi-pxa2xx*
14448 F:      drivers/usb/gadget/udc/pxa2*
14449 F:      include/sound/pxa2xx-lib.h
14450 F:      sound/arm/pxa*
14451 F:      sound/soc/pxa/
14452
14453 QAT DRIVER
14454 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
14455 L:      qat-linux@intel.com
14456 S:      Supported
14457 F:      drivers/crypto/qat/
14458
14459 QCOM AUDIO (ASoC) DRIVERS
14460 M:      Patrick Lai <plai@codeaurora.org>
14461 M:      Banajit Goswami <bgoswami@codeaurora.org>
14462 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14463 S:      Supported
14464 F:      sound/soc/qcom/
14465
14466 QCOM IPA DRIVER
14467 M:      Alex Elder <elder@kernel.org>
14468 L:      netdev@vger.kernel.org
14469 S:      Supported
14470 F:      drivers/net/ipa/
14471
14472 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
14473 M:      Gabriel Somlo <somlo@cmu.edu>
14474 M:      "Michael S. Tsirkin" <mst@redhat.com>
14475 L:      qemu-devel@nongnu.org
14476 S:      Maintained
14477 F:      drivers/firmware/qemu_fw_cfg.c
14478 F:      include/uapi/linux/qemu_fw_cfg.h
14479
14480 QIB DRIVER
14481 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14482 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14483 L:      linux-rdma@vger.kernel.org
14484 S:      Supported
14485 F:      drivers/infiniband/hw/qib/
14486
14487 QLOGIC QL41xxx FCOE DRIVER
14488 M:      Saurav Kashyap <skashyap@marvell.com>
14489 M:      Javed Hasan <jhasan@marvell.com>
14490 M:      GR-QLogic-Storage-Upstream@marvell.com
14491 L:      linux-scsi@vger.kernel.org
14492 S:      Supported
14493 F:      drivers/scsi/qedf/
14494
14495 QLOGIC QL41xxx ISCSI DRIVER
14496 M:      Nilesh Javali <njavali@marvell.com>
14497 M:      Manish Rangankar <mrangankar@marvell.com>
14498 M:      GR-QLogic-Storage-Upstream@marvell.com
14499 L:      linux-scsi@vger.kernel.org
14500 S:      Supported
14501 F:      drivers/scsi/qedi/
14502
14503 QLOGIC QL4xxx ETHERNET DRIVER
14504 M:      Ariel Elior <aelior@marvell.com>
14505 M:      GR-everest-linux-l2@marvell.com
14506 L:      netdev@vger.kernel.org
14507 S:      Supported
14508 F:      drivers/net/ethernet/qlogic/qed/
14509 F:      drivers/net/ethernet/qlogic/qede/
14510 F:      include/linux/qed/
14511
14512 QLOGIC QL4xxx RDMA DRIVER
14513 M:      Michal Kalderon <mkalderon@marvell.com>
14514 M:      Ariel Elior <aelior@marvell.com>
14515 L:      linux-rdma@vger.kernel.org
14516 S:      Supported
14517 F:      drivers/infiniband/hw/qedr/
14518 F:      include/uapi/rdma/qedr-abi.h
14519
14520 QLOGIC QLA1280 SCSI DRIVER
14521 M:      Michael Reed <mdr@sgi.com>
14522 L:      linux-scsi@vger.kernel.org
14523 S:      Maintained
14524 F:      drivers/scsi/qla1280.[ch]
14525
14526 QLOGIC QLA2XXX FC-SCSI DRIVER
14527 M:      Nilesh Javali <njavali@marvell.com>
14528 M:      GR-QLogic-Storage-Upstream@marvell.com
14529 L:      linux-scsi@vger.kernel.org
14530 S:      Supported
14531 F:      drivers/scsi/qla2xxx/
14532
14533 QLOGIC QLA3XXX NETWORK DRIVER
14534 M:      GR-Linux-NIC-Dev@marvell.com
14535 L:      netdev@vger.kernel.org
14536 S:      Supported
14537 F:      drivers/net/ethernet/qlogic/qla3xxx.*
14538
14539 QLOGIC QLA4XXX iSCSI DRIVER
14540 M:      Nilesh Javali <njavali@marvell.com>
14541 M:      Manish Rangankar <mrangankar@marvell.com>
14542 M:      GR-QLogic-Storage-Upstream@marvell.com
14543 L:      linux-scsi@vger.kernel.org
14544 S:      Supported
14545 F:      drivers/scsi/qla4xxx/
14546
14547 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14548 M:      Shahed Shaikh <shshaikh@marvell.com>
14549 M:      Manish Chopra <manishc@marvell.com>
14550 M:      GR-Linux-NIC-Dev@marvell.com
14551 L:      netdev@vger.kernel.org
14552 S:      Supported
14553 F:      drivers/net/ethernet/qlogic/qlcnic/
14554
14555 QLOGIC QLGE 10Gb ETHERNET DRIVER
14556 M:      Manish Chopra <manishc@marvell.com>
14557 M:      GR-Linux-NIC-Dev@marvell.com
14558 L:      netdev@vger.kernel.org
14559 S:      Supported
14560 F:      drivers/staging/qlge/
14561
14562 QM1D1B0004 MEDIA DRIVER
14563 M:      Akihiro Tsukada <tskd08@gmail.com>
14564 L:      linux-media@vger.kernel.org
14565 S:      Odd Fixes
14566 F:      drivers/media/tuners/qm1d1b0004*
14567
14568 QM1D1C0042 MEDIA DRIVER
14569 M:      Akihiro Tsukada <tskd08@gmail.com>
14570 L:      linux-media@vger.kernel.org
14571 S:      Odd Fixes
14572 F:      drivers/media/tuners/qm1d1c0042*
14573
14574 QNX4 FILESYSTEM
14575 M:      Anders Larsen <al@alarsen.net>
14576 S:      Maintained
14577 W:      http://www.alarsen.net/linux/qnx4fs/
14578 F:      fs/qnx4/
14579 F:      include/uapi/linux/qnx4_fs.h
14580 F:      include/uapi/linux/qnxtypes.h
14581
14582 QORIQ DPAA2 FSL-MC BUS DRIVER
14583 M:      Stuart Yoder <stuyoder@gmail.com>
14584 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
14585 L:      linux-kernel@vger.kernel.org
14586 S:      Maintained
14587 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
14588 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
14589 F:      drivers/bus/fsl-mc/
14590
14591 QT1010 MEDIA DRIVER
14592 M:      Antti Palosaari <crope@iki.fi>
14593 L:      linux-media@vger.kernel.org
14594 S:      Maintained
14595 W:      https://linuxtv.org
14596 W:      http://palosaari.fi/linux/
14597 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14598 T:      git git://linuxtv.org/anttip/media_tree.git
14599 F:      drivers/media/tuners/qt1010*
14600
14601 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
14602 M:      Kalle Valo <kvalo@codeaurora.org>
14603 L:      ath10k@lists.infradead.org
14604 S:      Supported
14605 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
14606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14607 F:      drivers/net/wireless/ath/ath10k/
14608
14609 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
14610 M:      Kalle Valo <kvalo@codeaurora.org>
14611 L:      ath11k@lists.infradead.org
14612 S:      Supported
14613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14614 F:      drivers/net/wireless/ath/ath11k/
14615
14616 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
14617 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
14618 L:      linux-wireless@vger.kernel.org
14619 S:      Supported
14620 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
14621 F:      drivers/net/wireless/ath/ath9k/
14622
14623 QUALCOMM CAMERA SUBSYSTEM DRIVER
14624 M:      Robert Foss <robert.foss@linaro.org>
14625 M:      Todor Tomov <todor.too@gmail.com>
14626 L:      linux-media@vger.kernel.org
14627 S:      Maintained
14628 F:      Documentation/admin-guide/media/qcom_camss.rst
14629 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
14630 F:      drivers/media/platform/qcom/camss/
14631
14632 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
14633 M:      Niklas Cassel <nks@flawful.org>
14634 L:      linux-pm@vger.kernel.org
14635 L:      linux-arm-msm@vger.kernel.org
14636 S:      Maintained
14637 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
14638 F:      drivers/soc/qcom/cpr.c
14639
14640 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
14641 M:      Ilia Lin <ilia.lin@kernel.org>
14642 L:      linux-pm@vger.kernel.org
14643 S:      Maintained
14644 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
14645 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
14646
14647 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
14648 M:      Timur Tabi <timur@kernel.org>
14649 L:      netdev@vger.kernel.org
14650 S:      Maintained
14651 F:      drivers/net/ethernet/qualcomm/emac/
14652
14653 QUALCOMM ETHQOS ETHERNET DRIVER
14654 M:      Vinod Koul <vkoul@kernel.org>
14655 L:      netdev@vger.kernel.org
14656 S:      Maintained
14657 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
14658 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
14659
14660 QUALCOMM GENERIC INTERFACE I2C DRIVER
14661 M:      Akash Asthana <akashast@codeaurora.org>
14662 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
14663 L:      linux-i2c@vger.kernel.org
14664 L:      linux-arm-msm@vger.kernel.org
14665 S:      Supported
14666 F:      drivers/i2c/busses/i2c-qcom-geni.c
14667
14668 QUALCOMM HEXAGON ARCHITECTURE
14669 M:      Brian Cain <bcain@codeaurora.org>
14670 L:      linux-hexagon@vger.kernel.org
14671 S:      Supported
14672 F:      arch/hexagon/
14673
14674 QUALCOMM HIDMA DRIVER
14675 M:      Sinan Kaya <okaya@kernel.org>
14676 L:      linux-arm-kernel@lists.infradead.org
14677 L:      linux-arm-msm@vger.kernel.org
14678 L:      dmaengine@vger.kernel.org
14679 S:      Supported
14680 F:      drivers/dma/qcom/hidma*
14681
14682 QUALCOMM I2C CCI DRIVER
14683 M:      Loic Poulain <loic.poulain@linaro.org>
14684 M:      Robert Foss <robert.foss@linaro.org>
14685 L:      linux-i2c@vger.kernel.org
14686 L:      linux-arm-msm@vger.kernel.org
14687 S:      Maintained
14688 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
14689 F:      drivers/i2c/busses/i2c-qcom-cci.c
14690
14691 QUALCOMM IOMMU
14692 M:      Rob Clark <robdclark@gmail.com>
14693 L:      iommu@lists.linux-foundation.org
14694 L:      linux-arm-msm@vger.kernel.org
14695 S:      Maintained
14696 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
14697
14698 QUALCOMM IPCC MAILBOX DRIVER
14699 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
14700 L:      linux-arm-msm@vger.kernel.org
14701 S:      Supported
14702 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
14703 F:      drivers/mailbox/qcom-ipcc.c
14704 F:      include/dt-bindings/mailbox/qcom-ipcc.h
14705
14706 QUALCOMM IPQ4019 USB PHY DRIVER
14707 M:      Robert Marko <robert.marko@sartura.hr>
14708 M:      Luka Perkov <luka.perkov@sartura.hr>
14709 L:      linux-arm-msm@vger.kernel.org
14710 S:      Maintained
14711 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
14712 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
14713
14714 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
14715 M:      Robert Marko <robert.marko@sartura.hr>
14716 M:      Luka Perkov <luka.perkov@sartura.hr>
14717 L:      linux-arm-msm@vger.kernel.org
14718 S:      Maintained
14719 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
14720 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
14721
14722 QUALCOMM RMNET DRIVER
14723 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
14724 M:      Sean Tranchetti <stranche@codeaurora.org>
14725 L:      netdev@vger.kernel.org
14726 S:      Maintained
14727 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
14728 F:      drivers/net/ethernet/qualcomm/rmnet/
14729 F:      include/linux/if_rmnet.h
14730
14731 QUALCOMM TSENS THERMAL DRIVER
14732 M:      Amit Kucheria <amitk@kernel.org>
14733 L:      linux-pm@vger.kernel.org
14734 L:      linux-arm-msm@vger.kernel.org
14735 S:      Maintained
14736 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14737 F:      drivers/thermal/qcom/
14738
14739 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14740 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
14741 L:      linux-media@vger.kernel.org
14742 L:      linux-arm-msm@vger.kernel.org
14743 S:      Maintained
14744 T:      git git://linuxtv.org/media_tree.git
14745 F:      Documentation/devicetree/bindings/media/*venus*
14746 F:      drivers/media/platform/qcom/venus/
14747
14748 QUALCOMM WCN36XX WIRELESS DRIVER
14749 M:      Kalle Valo <kvalo@codeaurora.org>
14750 L:      wcn36xx@lists.infradead.org
14751 S:      Supported
14752 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
14753 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14754 F:      drivers/net/wireless/ath/wcn36xx/
14755
14756 QUANTENNA QTNFMAC WIRELESS DRIVER
14757 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
14758 R:      Sergey Matyukevich <geomatsi@gmail.com>
14759 L:      linux-wireless@vger.kernel.org
14760 S:      Maintained
14761 F:      drivers/net/wireless/quantenna
14762
14763 RADEON and AMDGPU DRM DRIVERS
14764 M:      Alex Deucher <alexander.deucher@amd.com>
14765 M:      Christian König <christian.koenig@amd.com>
14766 L:      amd-gfx@lists.freedesktop.org
14767 S:      Supported
14768 T:      git git://people.freedesktop.org/~agd5f/linux
14769 F:      drivers/gpu/drm/amd/
14770 F:      drivers/gpu/drm/radeon/
14771 F:      include/uapi/drm/amdgpu_drm.h
14772 F:      include/uapi/drm/radeon_drm.h
14773
14774 RADEON FRAMEBUFFER DISPLAY DRIVER
14775 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
14776 L:      linux-fbdev@vger.kernel.org
14777 S:      Maintained
14778 F:      drivers/video/fbdev/aty/radeon*
14779 F:      include/uapi/linux/radeonfb.h
14780
14781 RADIOSHARK RADIO DRIVER
14782 M:      Hans Verkuil <hverkuil@xs4all.nl>
14783 L:      linux-media@vger.kernel.org
14784 S:      Maintained
14785 T:      git git://linuxtv.org/media_tree.git
14786 F:      drivers/media/radio/radio-shark.c
14787
14788 RADIOSHARK2 RADIO DRIVER
14789 M:      Hans Verkuil <hverkuil@xs4all.nl>
14790 L:      linux-media@vger.kernel.org
14791 S:      Maintained
14792 T:      git git://linuxtv.org/media_tree.git
14793 F:      drivers/media/radio/radio-shark2.c
14794 F:      drivers/media/radio/radio-tea5777.c
14795
14796 RADOS BLOCK DEVICE (RBD)
14797 M:      Ilya Dryomov <idryomov@gmail.com>
14798 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
14799 L:      ceph-devel@vger.kernel.org
14800 S:      Supported
14801 W:      http://ceph.com/
14802 T:      git git://github.com/ceph/ceph-client.git
14803 F:      Documentation/ABI/testing/sysfs-bus-rbd
14804 F:      drivers/block/rbd.c
14805 F:      drivers/block/rbd_types.h
14806
14807 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14808 M:      Paul Mackerras <paulus@samba.org>
14809 L:      linux-fbdev@vger.kernel.org
14810 S:      Maintained
14811 F:      drivers/video/fbdev/aty/aty128fb.c
14812
14813 RAINSHADOW-CEC DRIVER
14814 M:      Hans Verkuil <hverkuil@xs4all.nl>
14815 L:      linux-media@vger.kernel.org
14816 S:      Maintained
14817 T:      git git://linuxtv.org/media_tree.git
14818 F:      drivers/media/cec/usb/rainshadow/
14819
14820 RALINK MIPS ARCHITECTURE
14821 M:      John Crispin <john@phrozen.org>
14822 L:      linux-mips@vger.kernel.org
14823 S:      Maintained
14824 F:      arch/mips/ralink
14825
14826 RALINK RT2X00 WIRELESS LAN DRIVER
14827 M:      Stanislaw Gruszka <stf_xl@wp.pl>
14828 M:      Helmut Schaa <helmut.schaa@googlemail.com>
14829 L:      linux-wireless@vger.kernel.org
14830 S:      Maintained
14831 F:      drivers/net/wireless/ralink/rt2x00/
14832
14833 RAMDISK RAM BLOCK DEVICE DRIVER
14834 M:      Jens Axboe <axboe@kernel.dk>
14835 S:      Maintained
14836 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14837 F:      drivers/block/brd.c
14838
14839 RANCHU VIRTUAL BOARD FOR MIPS
14840 M:      Miodrag Dinic <miodrag.dinic@mips.com>
14841 L:      linux-mips@vger.kernel.org
14842 S:      Supported
14843 F:      arch/mips/configs/generic/board-ranchu.config
14844 F:      arch/mips/generic/board-ranchu.c
14845
14846 RANDOM NUMBER DRIVER
14847 M:      "Theodore Ts'o" <tytso@mit.edu>
14848 S:      Maintained
14849 F:      drivers/char/random.c
14850
14851 RAPIDIO SUBSYSTEM
14852 M:      Matt Porter <mporter@kernel.crashing.org>
14853 M:      Alexandre Bounine <alex.bou9@gmail.com>
14854 S:      Maintained
14855 F:      drivers/rapidio/
14856
14857 RAS INFRASTRUCTURE
14858 M:      Tony Luck <tony.luck@intel.com>
14859 M:      Borislav Petkov <bp@alien8.de>
14860 L:      linux-edac@vger.kernel.org
14861 S:      Maintained
14862 F:      Documentation/admin-guide/ras.rst
14863 F:      drivers/ras/
14864 F:      include/linux/ras.h
14865 F:      include/ras/ras_event.h
14866
14867 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14868 L:      linux-wireless@vger.kernel.org
14869 S:      Orphan
14870 F:      drivers/net/wireless/ray*
14871
14872 RC-CORE / LIRC FRAMEWORK
14873 M:      Sean Young <sean@mess.org>
14874 L:      linux-media@vger.kernel.org
14875 S:      Maintained
14876 W:      http://linuxtv.org
14877 T:      git git://linuxtv.org/media_tree.git
14878 F:      Documentation/driver-api/media/rc-core.rst
14879 F:      Documentation/userspace-api/media/rc/
14880 F:      drivers/media/rc/
14881 F:      include/media/rc-map.h
14882 F:      include/media/rc-core.h
14883 F:      include/uapi/linux/lirc.h
14884
14885 RCMM REMOTE CONTROLS DECODER
14886 M:      Patrick Lerda <patrick9876@free.fr>
14887 S:      Maintained
14888 F:      drivers/media/rc/ir-rcmm-decoder.c
14889
14890 RCUTORTURE TEST FRAMEWORK
14891 M:      "Paul E. McKenney" <paulmck@kernel.org>
14892 M:      Josh Triplett <josh@joshtriplett.org>
14893 R:      Steven Rostedt <rostedt@goodmis.org>
14894 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14895 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14896 L:      rcu@vger.kernel.org
14897 S:      Supported
14898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14899 F:      tools/testing/selftests/rcutorture
14900
14901 RDACM20 Camera Sensor
14902 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
14903 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
14904 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
14905 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
14906 L:      linux-media@vger.kernel.org
14907 S:      Maintained
14908 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
14909 F:      drivers/media/i2c/max9271.c
14910 F:      drivers/media/i2c/max9271.h
14911 F:      drivers/media/i2c/rdacm20.c
14912
14913 RDC R-321X SoC
14914 M:      Florian Fainelli <florian@openwrt.org>
14915 S:      Maintained
14916
14917 RDC R6040 FAST ETHERNET DRIVER
14918 M:      Florian Fainelli <f.fainelli@gmail.com>
14919 L:      netdev@vger.kernel.org
14920 S:      Maintained
14921 F:      drivers/net/ethernet/rdc/r6040.c
14922
14923 RDMAVT - RDMA verbs software
14924 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14925 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14926 L:      linux-rdma@vger.kernel.org
14927 S:      Supported
14928 F:      drivers/infiniband/sw/rdmavt
14929
14930 RDS - RELIABLE DATAGRAM SOCKETS
14931 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
14932 L:      netdev@vger.kernel.org
14933 L:      linux-rdma@vger.kernel.org
14934 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
14935 S:      Supported
14936 W:      https://oss.oracle.com/projects/rds/
14937 F:      Documentation/networking/rds.rst
14938 F:      net/rds/
14939
14940 RDT - RESOURCE ALLOCATION
14941 M:      Fenghua Yu <fenghua.yu@intel.com>
14942 M:      Reinette Chatre <reinette.chatre@intel.com>
14943 L:      linux-kernel@vger.kernel.org
14944 S:      Supported
14945 F:      Documentation/x86/resctrl*
14946 F:      arch/x86/include/asm/resctrl.h
14947 F:      arch/x86/kernel/cpu/resctrl/
14948 F:      tools/testing/selftests/resctrl/
14949
14950 READ-COPY UPDATE (RCU)
14951 M:      "Paul E. McKenney" <paulmck@kernel.org>
14952 M:      Josh Triplett <josh@joshtriplett.org>
14953 R:      Steven Rostedt <rostedt@goodmis.org>
14954 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14955 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14956 R:      Joel Fernandes <joel@joelfernandes.org>
14957 L:      rcu@vger.kernel.org
14958 S:      Supported
14959 W:      http://www.rdrop.com/users/paulmck/RCU/
14960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14961 F:      Documentation/RCU/
14962 F:      include/linux/rcu*
14963 F:      kernel/rcu/
14964 X:      Documentation/RCU/torture.rst
14965 X:      include/linux/srcu*.h
14966 X:      kernel/rcu/srcu*.c
14967
14968 REAL TIME CLOCK (RTC) SUBSYSTEM
14969 M:      Alessandro Zummo <a.zummo@towertech.it>
14970 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14971 L:      linux-rtc@vger.kernel.org
14972 S:      Maintained
14973 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14975 F:      Documentation/admin-guide/rtc.rst
14976 F:      Documentation/devicetree/bindings/rtc/
14977 F:      drivers/rtc/
14978 F:      include/linux/platform_data/rtc-*
14979 F:      include/linux/rtc.h
14980 F:      include/linux/rtc/
14981 F:      include/uapi/linux/rtc.h
14982 F:      tools/testing/selftests/rtc/
14983
14984 REALTEK AUDIO CODECS
14985 M:      Oder Chiou <oder_chiou@realtek.com>
14986 S:      Maintained
14987 F:      include/sound/rt*.h
14988 F:      sound/soc/codecs/rt*
14989
14990 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14991 M:      Linus Walleij <linus.walleij@linaro.org>
14992 S:      Maintained
14993 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14994 F:      drivers/net/dsa/realtek-smi*
14995 F:      drivers/net/dsa/rtl83*
14996
14997 REALTEK WIRELESS DRIVER (rtlwifi family)
14998 M:      Ping-Ke Shih <pkshih@realtek.com>
14999 L:      linux-wireless@vger.kernel.org
15000 S:      Maintained
15001 W:      https://wireless.wiki.kernel.org/
15002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15003 F:      drivers/net/wireless/realtek/rtlwifi/
15004
15005 REALTEK WIRELESS DRIVER (rtw88)
15006 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
15007 L:      linux-wireless@vger.kernel.org
15008 S:      Maintained
15009 F:      drivers/net/wireless/realtek/rtw88/
15010
15011 REDPINE WIRELESS DRIVER
15012 M:      Amitkumar Karwar <amitkarwar@gmail.com>
15013 M:      Siva Rebbagondla <siva8118@gmail.com>
15014 L:      linux-wireless@vger.kernel.org
15015 S:      Maintained
15016 F:      drivers/net/wireless/rsi/
15017
15018 REGISTER MAP ABSTRACTION
15019 M:      Mark Brown <broonie@kernel.org>
15020 L:      linux-kernel@vger.kernel.org
15021 S:      Supported
15022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15023 F:      Documentation/devicetree/bindings/regmap/
15024 F:      drivers/base/regmap/
15025 F:      include/linux/regmap.h
15026
15027 REISERFS FILE SYSTEM
15028 L:      reiserfs-devel@vger.kernel.org
15029 S:      Supported
15030 F:      fs/reiserfs/
15031
15032 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15033 M:      Ohad Ben-Cohen <ohad@wizery.com>
15034 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15035 L:      linux-remoteproc@vger.kernel.org
15036 S:      Maintained
15037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15038 F:      Documentation/ABI/testing/sysfs-class-remoteproc
15039 F:      Documentation/devicetree/bindings/remoteproc/
15040 F:      Documentation/staging/remoteproc.rst
15041 F:      drivers/remoteproc/
15042 F:      include/linux/remoteproc.h
15043 F:      include/linux/remoteproc/
15044
15045 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15046 M:      Ohad Ben-Cohen <ohad@wizery.com>
15047 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15048 L:      linux-remoteproc@vger.kernel.org
15049 S:      Maintained
15050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15051 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
15052 F:      Documentation/staging/rpmsg.rst
15053 F:      drivers/rpmsg/
15054 F:      include/linux/rpmsg.h
15055 F:      include/linux/rpmsg/
15056 F:      include/uapi/linux/rpmsg.h
15057 F:      samples/rpmsg/
15058
15059 RENESAS CLOCK DRIVERS
15060 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15061 L:      linux-renesas-soc@vger.kernel.org
15062 S:      Supported
15063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
15064 F:      Documentation/devicetree/bindings/clock/renesas,*
15065 F:      drivers/clk/renesas/
15066
15067 RENESAS EMEV2 I2C DRIVER
15068 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15069 S:      Supported
15070 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
15071 F:      drivers/i2c/busses/i2c-emev2.c
15072
15073 RENESAS ETHERNET DRIVERS
15074 R:      Sergei Shtylyov <sergei.shtylyov@gmail.com>
15075 L:      netdev@vger.kernel.org
15076 L:      linux-renesas-soc@vger.kernel.org
15077 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
15078 F:      drivers/net/ethernet/renesas/
15079 F:      include/linux/sh_eth.h
15080
15081 RENESAS R-CAR GYROADC DRIVER
15082 M:      Marek Vasut <marek.vasut@gmail.com>
15083 L:      linux-iio@vger.kernel.org
15084 S:      Supported
15085 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
15086 F:      drivers/iio/adc/rcar-gyroadc.c
15087
15088 RENESAS R-CAR I2C DRIVERS
15089 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15090 S:      Supported
15091 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
15092 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
15093 F:      drivers/i2c/busses/i2c-rcar.c
15094 F:      drivers/i2c/busses/i2c-sh_mobile.c
15095
15096 RENESAS R-CAR THERMAL DRIVERS
15097 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
15098 L:      linux-renesas-soc@vger.kernel.org
15099 S:      Supported
15100 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
15101 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
15102 F:      drivers/thermal/rcar_gen3_thermal.c
15103 F:      drivers/thermal/rcar_thermal.c
15104
15105 RENESAS RIIC DRIVER
15106 M:      Chris Brandt <chris.brandt@renesas.com>
15107 S:      Supported
15108 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
15109 F:      drivers/i2c/busses/i2c-riic.c
15110
15111 RENESAS USB PHY DRIVER
15112 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15113 L:      linux-renesas-soc@vger.kernel.org
15114 S:      Maintained
15115 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
15116
15117 RESET CONTROLLER FRAMEWORK
15118 M:      Philipp Zabel <p.zabel@pengutronix.de>
15119 S:      Maintained
15120 T:      git git://git.pengutronix.de/git/pza/linux
15121 F:      Documentation/devicetree/bindings/reset/
15122 F:      Documentation/driver-api/reset.rst
15123 F:      drivers/reset/
15124 F:      include/dt-bindings/reset/
15125 F:      include/linux/reset-controller.h
15126 F:      include/linux/reset.h
15127 F:      include/linux/reset/
15128 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
15129
15130 RESTARTABLE SEQUENCES SUPPORT
15131 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15132 M:      Peter Zijlstra <peterz@infradead.org>
15133 M:      "Paul E. McKenney" <paulmck@kernel.org>
15134 M:      Boqun Feng <boqun.feng@gmail.com>
15135 L:      linux-kernel@vger.kernel.org
15136 S:      Supported
15137 F:      include/trace/events/rseq.h
15138 F:      include/uapi/linux/rseq.h
15139 F:      kernel/rseq.c
15140 F:      tools/testing/selftests/rseq/
15141
15142 RFKILL
15143 M:      Johannes Berg <johannes@sipsolutions.net>
15144 L:      linux-wireless@vger.kernel.org
15145 S:      Maintained
15146 W:      https://wireless.wiki.kernel.org/
15147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
15148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
15149 F:      Documentation/ABI/stable/sysfs-class-rfkill
15150 F:      Documentation/driver-api/rfkill.rst
15151 F:      include/linux/rfkill.h
15152 F:      include/uapi/linux/rfkill.h
15153 F:      net/rfkill/
15154
15155 RHASHTABLE
15156 M:      Thomas Graf <tgraf@suug.ch>
15157 M:      Herbert Xu <herbert@gondor.apana.org.au>
15158 L:      netdev@vger.kernel.org
15159 S:      Maintained
15160 F:      include/linux/rhashtable-types.h
15161 F:      include/linux/rhashtable.h
15162 F:      lib/rhashtable.c
15163 F:      lib/test_rhashtable.c
15164
15165 RICOH R5C592 MEMORYSTICK DRIVER
15166 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15167 S:      Maintained
15168 F:      drivers/memstick/host/r592.*
15169
15170 RICOH SMARTMEDIA/XD DRIVER
15171 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15172 S:      Maintained
15173 F:      drivers/mtd/nand/raw/r852.c
15174 F:      drivers/mtd/nand/raw/r852.h
15175
15176 RISC-V ARCHITECTURE
15177 M:      Paul Walmsley <paul.walmsley@sifive.com>
15178 M:      Palmer Dabbelt <palmer@dabbelt.com>
15179 M:      Albert Ou <aou@eecs.berkeley.edu>
15180 L:      linux-riscv@lists.infradead.org
15181 S:      Supported
15182 P:      Documentation/riscv/patch-acceptance.rst
15183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
15184 F:      arch/riscv/
15185 N:      riscv
15186 K:      riscv
15187
15188 RNBD BLOCK DRIVERS
15189 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
15190 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15191 L:      linux-block@vger.kernel.org
15192 S:      Maintained
15193 F:      drivers/block/rnbd/
15194
15195 ROCCAT DRIVERS
15196 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
15197 S:      Maintained
15198 W:      http://sourceforge.net/projects/roccat/
15199 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
15200 F:      drivers/hid/hid-roccat*
15201 F:      include/linux/hid-roccat*
15202
15203 ROCKCHIP ISP V1 DRIVER
15204 M:      Helen Koike <helen.koike@collabora.com>
15205 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
15206 L:      linux-media@vger.kernel.org
15207 L:      linux-rockchip@lists.infradead.org
15208 S:      Maintained
15209 F:      Documentation/admin-guide/media/rkisp1.rst
15210 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
15211 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
15212 F:      drivers/media/platform/rockchip/rkisp1
15213 F:      include/uapi/linux/rkisp1-config.h
15214
15215 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
15216 M:      Jacob Chen <jacob-chen@iotwrt.com>
15217 M:      Ezequiel Garcia <ezequiel@collabora.com>
15218 L:      linux-media@vger.kernel.org
15219 L:      linux-rockchip@lists.infradead.org
15220 S:      Maintained
15221 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
15222 F:      drivers/media/platform/rockchip/rga/
15223
15224 ROCKCHIP VIDEO DECODER DRIVER
15225 M:      Ezequiel Garcia <ezequiel@collabora.com>
15226 L:      linux-media@vger.kernel.org
15227 L:      linux-rockchip@lists.infradead.org
15228 S:      Maintained
15229 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
15230 F:      drivers/staging/media/rkvdec/
15231
15232 ROCKER DRIVER
15233 M:      Jiri Pirko <jiri@resnulli.us>
15234 L:      netdev@vger.kernel.org
15235 S:      Supported
15236 F:      drivers/net/ethernet/rocker/
15237
15238 ROCKETPORT DRIVER
15239 S:      Maintained
15240 W:      http://www.comtrol.com
15241 F:      Documentation/driver-api/serial/rocket.rst
15242 F:      drivers/tty/rocket*
15243
15244 ROCKETPORT EXPRESS/INFINITY DRIVER
15245 M:      Kevin Cernekee <cernekee@gmail.com>
15246 L:      linux-serial@vger.kernel.org
15247 S:      Odd Fixes
15248 F:      drivers/tty/serial/rp2.*
15249
15250 ROHM BD99954 CHARGER IC
15251 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15252 L:      linux-power@fi.rohmeurope.com
15253 S:      Supported
15254 F:      drivers/power/supply/bd99954-charger.c
15255 F:      drivers/power/supply/bd99954-charger.h
15256
15257 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
15258 M:      Tomasz Duszynski <tduszyns@gmail.com>
15259 S:      Maintained
15260 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
15261 F:      drivers/iio/light/bh1750.c
15262
15263 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
15264 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15265 L:      linux-kernel@vger.kernel.org
15266 L:      linux-renesas-soc@vger.kernel.org
15267 S:      Supported
15268 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
15269 F:      drivers/gpio/gpio-bd9571mwv.c
15270 F:      drivers/mfd/bd9571mwv.c
15271 F:      drivers/regulator/bd9571mwv-regulator.c
15272 F:      include/linux/mfd/bd9571mwv.h
15273
15274 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
15275 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15276 L:      linux-power@fi.rohmeurope.com
15277 S:      Supported
15278 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
15279 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
15280 F:      drivers/clk/clk-bd718x7.c
15281 F:      drivers/gpio/gpio-bd70528.c
15282 F:      drivers/gpio/gpio-bd71828.c
15283 F:      drivers/mfd/rohm-bd70528.c
15284 F:      drivers/mfd/rohm-bd71828.c
15285 F:      drivers/mfd/rohm-bd718x7.c
15286 F:      drivers/power/supply/bd70528-charger.c
15287 F:      drivers/regulator/bd70528-regulator.c
15288 F:      drivers/regulator/bd71828-regulator.c
15289 F:      drivers/regulator/bd718x7-regulator.c
15290 F:      drivers/regulator/rohm-regulator.c
15291 F:      drivers/rtc/rtc-bd70528.c
15292 F:      drivers/watchdog/bd70528_wdt.c
15293 F:      include/linux/mfd/rohm-bd70528.h
15294 F:      include/linux/mfd/rohm-bd71828.h
15295 F:      include/linux/mfd/rohm-bd718x7.h
15296 F:      include/linux/mfd/rohm-generic.h
15297 F:      include/linux/mfd/rohm-shared.h
15298
15299 ROSE NETWORK LAYER
15300 M:      Ralf Baechle <ralf@linux-mips.org>
15301 L:      linux-hams@vger.kernel.org
15302 S:      Maintained
15303 W:      http://www.linux-ax25.org/
15304 F:      include/net/rose.h
15305 F:      include/uapi/linux/rose.h
15306 F:      net/rose/
15307
15308 ROTATION DRIVER FOR ALLWINNER A83T
15309 M:      Jernej Skrabec <jernej.skrabec@siol.net>
15310 L:      linux-media@vger.kernel.org
15311 S:      Maintained
15312 T:      git git://linuxtv.org/media_tree.git
15313 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
15314 F:      drivers/media/platform/sunxi/sun8i-rotate/
15315
15316 RTL2830 MEDIA DRIVER
15317 M:      Antti Palosaari <crope@iki.fi>
15318 L:      linux-media@vger.kernel.org
15319 S:      Maintained
15320 W:      https://linuxtv.org
15321 W:      http://palosaari.fi/linux/
15322 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15323 T:      git git://linuxtv.org/anttip/media_tree.git
15324 F:      drivers/media/dvb-frontends/rtl2830*
15325
15326 RTL2832 MEDIA DRIVER
15327 M:      Antti Palosaari <crope@iki.fi>
15328 L:      linux-media@vger.kernel.org
15329 S:      Maintained
15330 W:      https://linuxtv.org
15331 W:      http://palosaari.fi/linux/
15332 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15333 T:      git git://linuxtv.org/anttip/media_tree.git
15334 F:      drivers/media/dvb-frontends/rtl2832*
15335
15336 RTL2832_SDR MEDIA DRIVER
15337 M:      Antti Palosaari <crope@iki.fi>
15338 L:      linux-media@vger.kernel.org
15339 S:      Maintained
15340 W:      https://linuxtv.org
15341 W:      http://palosaari.fi/linux/
15342 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15343 T:      git git://linuxtv.org/anttip/media_tree.git
15344 F:      drivers/media/dvb-frontends/rtl2832_sdr*
15345
15346 RTL8180 WIRELESS DRIVER
15347 L:      linux-wireless@vger.kernel.org
15348 S:      Orphan
15349 W:      https://wireless.wiki.kernel.org/
15350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15351 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
15352
15353 RTL8187 WIRELESS DRIVER
15354 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
15355 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
15356 M:      Larry Finger <Larry.Finger@lwfinger.net>
15357 L:      linux-wireless@vger.kernel.org
15358 S:      Maintained
15359 W:      https://wireless.wiki.kernel.org/
15360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15361 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
15362
15363 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
15364 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
15365 L:      linux-wireless@vger.kernel.org
15366 S:      Maintained
15367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
15368 F:      drivers/net/wireless/realtek/rtl8xxxu/
15369
15370 RTRS TRANSPORT DRIVERS
15371 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
15372 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15373 L:      linux-rdma@vger.kernel.org
15374 S:      Maintained
15375 F:      drivers/infiniband/ulp/rtrs/
15376
15377 RXRPC SOCKETS (AF_RXRPC)
15378 M:      David Howells <dhowells@redhat.com>
15379 L:      linux-afs@lists.infradead.org
15380 S:      Supported
15381 W:      https://www.infradead.org/~dhowells/kafs/
15382 F:      Documentation/networking/rxrpc.rst
15383 F:      include/keys/rxrpc-type.h
15384 F:      include/net/af_rxrpc.h
15385 F:      include/trace/events/rxrpc.h
15386 F:      include/uapi/linux/rxrpc.h
15387 F:      net/rxrpc/
15388
15389 S3 SAVAGE FRAMEBUFFER DRIVER
15390 M:      Antonino Daplas <adaplas@gmail.com>
15391 L:      linux-fbdev@vger.kernel.org
15392 S:      Maintained
15393 F:      drivers/video/fbdev/savage/
15394
15395 S390
15396 M:      Heiko Carstens <hca@linux.ibm.com>
15397 M:      Vasily Gorbik <gor@linux.ibm.com>
15398 M:      Christian Borntraeger <borntraeger@de.ibm.com>
15399 L:      linux-s390@vger.kernel.org
15400 S:      Supported
15401 W:      http://www.ibm.com/developerworks/linux/linux390/
15402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
15403 F:      Documentation/driver-api/s390-drivers.rst
15404 F:      Documentation/s390/
15405 F:      arch/s390/
15406 F:      drivers/s390/
15407
15408 S390 COMMON I/O LAYER
15409 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
15410 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
15411 L:      linux-s390@vger.kernel.org
15412 S:      Supported
15413 W:      http://www.ibm.com/developerworks/linux/linux390/
15414 F:      drivers/s390/cio/
15415
15416 S390 DASD DRIVER
15417 M:      Stefan Haberland <sth@linux.ibm.com>
15418 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
15419 L:      linux-s390@vger.kernel.org
15420 S:      Supported
15421 W:      http://www.ibm.com/developerworks/linux/linux390/
15422 F:      block/partitions/ibm.c
15423 F:      drivers/s390/block/dasd*
15424 F:      include/linux/dasd_mod.h
15425
15426 S390 IOMMU (PCI)
15427 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15428 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15429 L:      linux-s390@vger.kernel.org
15430 S:      Supported
15431 W:      http://www.ibm.com/developerworks/linux/linux390/
15432 F:      drivers/iommu/s390-iommu.c
15433
15434 S390 IUCV NETWORK LAYER
15435 M:      Julian Wiedmann <jwi@linux.ibm.com>
15436 M:      Karsten Graul <kgraul@linux.ibm.com>
15437 L:      linux-s390@vger.kernel.org
15438 S:      Supported
15439 W:      http://www.ibm.com/developerworks/linux/linux390/
15440 F:      drivers/s390/net/*iucv*
15441 F:      include/net/iucv/
15442 F:      net/iucv/
15443
15444 S390 NETWORK DRIVERS
15445 M:      Julian Wiedmann <jwi@linux.ibm.com>
15446 M:      Karsten Graul <kgraul@linux.ibm.com>
15447 L:      linux-s390@vger.kernel.org
15448 S:      Supported
15449 W:      http://www.ibm.com/developerworks/linux/linux390/
15450 F:      drivers/s390/net/
15451
15452 S390 PCI SUBSYSTEM
15453 M:      Niklas Schnelle <schnelle@linux.ibm.com>
15454 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15455 L:      linux-s390@vger.kernel.org
15456 S:      Supported
15457 W:      http://www.ibm.com/developerworks/linux/linux390/
15458 F:      arch/s390/pci/
15459 F:      drivers/pci/hotplug/s390_pci_hpc.c
15460 F:      Documentation/s390/pci.rst
15461
15462 S390 VFIO AP DRIVER
15463 M:      Tony Krowiak <akrowiak@linux.ibm.com>
15464 M:      Pierre Morel <pmorel@linux.ibm.com>
15465 M:      Halil Pasic <pasic@linux.ibm.com>
15466 L:      linux-s390@vger.kernel.org
15467 S:      Supported
15468 W:      http://www.ibm.com/developerworks/linux/linux390/
15469 F:      Documentation/s390/vfio-ap.rst
15470 F:      drivers/s390/crypto/vfio_ap_drv.c
15471 F:      drivers/s390/crypto/vfio_ap_ops.c
15472 F:      drivers/s390/crypto/vfio_ap_private.h
15473
15474 S390 VFIO-CCW DRIVER
15475 M:      Cornelia Huck <cohuck@redhat.com>
15476 M:      Eric Farman <farman@linux.ibm.com>
15477 R:      Halil Pasic <pasic@linux.ibm.com>
15478 L:      linux-s390@vger.kernel.org
15479 L:      kvm@vger.kernel.org
15480 S:      Supported
15481 F:      Documentation/s390/vfio-ccw.rst
15482 F:      drivers/s390/cio/vfio_ccw*
15483 F:      include/uapi/linux/vfio_ccw.h
15484
15485 S390 VFIO-PCI DRIVER
15486 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15487 L:      linux-s390@vger.kernel.org
15488 L:      kvm@vger.kernel.org
15489 S:      Supported
15490 F:      drivers/vfio/pci/vfio_pci_zdev.c
15491 F:      include/uapi/linux/vfio_zdev.h
15492
15493 S390 ZCRYPT DRIVER
15494 M:      Harald Freudenberger <freude@linux.ibm.com>
15495 L:      linux-s390@vger.kernel.org
15496 S:      Supported
15497 W:      http://www.ibm.com/developerworks/linux/linux390/
15498 F:      drivers/s390/crypto/
15499
15500 S390 ZFCP DRIVER
15501 M:      Steffen Maier <maier@linux.ibm.com>
15502 M:      Benjamin Block <bblock@linux.ibm.com>
15503 L:      linux-s390@vger.kernel.org
15504 S:      Supported
15505 W:      http://www.ibm.com/developerworks/linux/linux390/
15506 F:      drivers/s390/scsi/zfcp_*
15507
15508 S3C24XX SD/MMC Driver
15509 M:      Ben Dooks <ben-linux@fluff.org>
15510 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15511 S:      Supported
15512 F:      drivers/mmc/host/s3cmci.*
15513
15514 SAA6588 RDS RECEIVER DRIVER
15515 M:      Hans Verkuil <hverkuil@xs4all.nl>
15516 L:      linux-media@vger.kernel.org
15517 S:      Odd Fixes
15518 W:      https://linuxtv.org
15519 T:      git git://linuxtv.org/media_tree.git
15520 F:      drivers/media/i2c/saa6588*
15521
15522 SAA7134 VIDEO4LINUX DRIVER
15523 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15524 L:      linux-media@vger.kernel.org
15525 S:      Odd fixes
15526 W:      https://linuxtv.org
15527 T:      git git://linuxtv.org/media_tree.git
15528 F:      Documentation/driver-api/media/drivers/saa7134*
15529 F:      drivers/media/pci/saa7134/
15530
15531 SAA7146 VIDEO4LINUX-2 DRIVER
15532 M:      Hans Verkuil <hverkuil@xs4all.nl>
15533 L:      linux-media@vger.kernel.org
15534 S:      Maintained
15535 T:      git git://linuxtv.org/media_tree.git
15536 F:      drivers/media/common/saa7146/
15537 F:      drivers/media/pci/saa7146/
15538 F:      include/media/drv-intf/saa7146*
15539
15540 SAFESETID SECURITY MODULE
15541 M:      Micah Morton <mortonm@chromium.org>
15542 S:      Supported
15543 F:      Documentation/admin-guide/LSM/SafeSetID.rst
15544 F:      security/safesetid/
15545
15546 SAMSUNG AUDIO (ASoC) DRIVERS
15547 M:      Krzysztof Kozlowski <krzk@kernel.org>
15548 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15549 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15550 S:      Supported
15551 F:      Documentation/devicetree/bindings/sound/samsung*
15552 F:      sound/soc/samsung/
15553
15554 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
15555 M:      Krzysztof Kozlowski <krzk@kernel.org>
15556 L:      linux-crypto@vger.kernel.org
15557 L:      linux-samsung-soc@vger.kernel.org
15558 S:      Maintained
15559 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
15560 F:      drivers/crypto/exynos-rng.c
15561
15562 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
15563 M:      Łukasz Stelmach <l.stelmach@samsung.com>
15564 L:      linux-samsung-soc@vger.kernel.org
15565 S:      Maintained
15566 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
15567 F:      drivers/char/hw_random/exynos-trng.c
15568
15569 SAMSUNG FRAMEBUFFER DRIVER
15570 M:      Jingoo Han <jingoohan1@gmail.com>
15571 L:      linux-fbdev@vger.kernel.org
15572 S:      Maintained
15573 F:      drivers/video/fbdev/s3c-fb.c
15574
15575 SAMSUNG INTERCONNECT DRIVERS
15576 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15577 M:      Artur Świgoń <a.swigon@samsung.com>
15578 L:      linux-pm@vger.kernel.org
15579 L:      linux-samsung-soc@vger.kernel.org
15580 S:      Supported
15581 F:      drivers/interconnect/samsung/
15582
15583 SAMSUNG LAPTOP DRIVER
15584 M:      Corentin Chary <corentin.chary@gmail.com>
15585 L:      platform-driver-x86@vger.kernel.org
15586 S:      Maintained
15587 F:      drivers/platform/x86/samsung-laptop.c
15588
15589 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
15590 M:      Krzysztof Kozlowski <krzk@kernel.org>
15591 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15592 L:      linux-kernel@vger.kernel.org
15593 L:      linux-samsung-soc@vger.kernel.org
15594 S:      Supported
15595 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
15596 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
15597 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
15598 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
15599 F:      drivers/clk/clk-s2mps11.c
15600 F:      drivers/mfd/sec*.c
15601 F:      drivers/regulator/s2m*.c
15602 F:      drivers/regulator/s5m*.c
15603 F:      drivers/rtc/rtc-s5m.c
15604 F:      include/linux/mfd/samsung/
15605
15606 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
15607 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
15608 L:      linux-media@vger.kernel.org
15609 L:      linux-samsung-soc@vger.kernel.org
15610 S:      Maintained
15611 F:      drivers/media/platform/s3c-camif/
15612 F:      include/media/drv-intf/s3c_camif.h
15613
15614 SAMSUNG S3FWRN5 NFC DRIVER
15615 M:      Krzysztof Kozlowski <krzk@kernel.org>
15616 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
15617 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
15618 S:      Maintained
15619 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
15620 F:      drivers/nfc/s3fwrn5
15621
15622 SAMSUNG S5C73M3 CAMERA DRIVER
15623 M:      Andrzej Hajda <a.hajda@samsung.com>
15624 L:      linux-media@vger.kernel.org
15625 S:      Supported
15626 F:      drivers/media/i2c/s5c73m3/*
15627
15628 SAMSUNG S5K5BAF CAMERA DRIVER
15629 M:      Andrzej Hajda <a.hajda@samsung.com>
15630 L:      linux-media@vger.kernel.org
15631 S:      Supported
15632 F:      drivers/media/i2c/s5k5baf.c
15633
15634 SAMSUNG S5P Security SubSystem (SSS) DRIVER
15635 M:      Krzysztof Kozlowski <krzk@kernel.org>
15636 M:      Vladimir Zapolskiy <vz@mleia.com>
15637 M:      Kamil Konieczny <k.konieczny@samsung.com>
15638 L:      linux-crypto@vger.kernel.org
15639 L:      linux-samsung-soc@vger.kernel.org
15640 S:      Maintained
15641 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
15642 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
15643 F:      drivers/crypto/s5p-sss.c
15644
15645 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
15646 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15647 L:      linux-media@vger.kernel.org
15648 S:      Supported
15649 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15650 F:      drivers/media/platform/exynos4-is/
15651
15652 SAMSUNG SOC CLOCK DRIVERS
15653 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15654 M:      Tomasz Figa <tomasz.figa@gmail.com>
15655 M:      Chanwoo Choi <cw00.choi@samsung.com>
15656 L:      linux-samsung-soc@vger.kernel.org
15657 S:      Supported
15658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
15659 F:      Documentation/devicetree/bindings/clock/exynos*.txt
15660 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
15661 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
15662 F:      drivers/clk/samsung/
15663 F:      include/dt-bindings/clock/exynos*.h
15664 F:      include/linux/clk/samsung.h
15665 F:      include/linux/platform_data/clk-s3c2410.h
15666
15667 SAMSUNG SPI DRIVERS
15668 M:      Krzysztof Kozlowski <krzk@kernel.org>
15669 M:      Andi Shyti <andi@etezian.org>
15670 L:      linux-spi@vger.kernel.org
15671 L:      linux-samsung-soc@vger.kernel.org
15672 S:      Maintained
15673 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
15674 F:      drivers/spi/spi-s3c*
15675 F:      include/linux/platform_data/spi-s3c64xx.h
15676 F:      include/linux/spi/s3c24xx-fiq.h
15677
15678 SAMSUNG SXGBE DRIVERS
15679 M:      Byungho An <bh74.an@samsung.com>
15680 L:      netdev@vger.kernel.org
15681 S:      Supported
15682 F:      drivers/net/ethernet/samsung/sxgbe/
15683
15684 SAMSUNG THERMAL DRIVER
15685 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15686 L:      linux-pm@vger.kernel.org
15687 L:      linux-samsung-soc@vger.kernel.org
15688 S:      Supported
15689 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
15690 F:      drivers/thermal/samsung/
15691
15692 SAMSUNG USB2 PHY DRIVER
15693 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15694 L:      linux-kernel@vger.kernel.org
15695 S:      Supported
15696 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
15697 F:      Documentation/driver-api/phy/samsung-usb2.rst
15698 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
15699 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
15700 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
15701 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
15702 F:      drivers/phy/samsung/phy-samsung-usb2.c
15703 F:      drivers/phy/samsung/phy-samsung-usb2.h
15704
15705 SC1200 WDT DRIVER
15706 M:      Zwane Mwaikambo <zwanem@gmail.com>
15707 S:      Maintained
15708 F:      drivers/watchdog/sc1200wdt.c
15709
15710 SCHEDULER
15711 M:      Ingo Molnar <mingo@redhat.com>
15712 M:      Peter Zijlstra <peterz@infradead.org>
15713 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
15714 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
15715 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
15716 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
15717 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
15718 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
15719 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
15720 L:      linux-kernel@vger.kernel.org
15721 S:      Maintained
15722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
15723 F:      include/linux/preempt.h
15724 F:      include/linux/sched.h
15725 F:      include/linux/wait.h
15726 F:      include/uapi/linux/sched.h
15727 F:      kernel/sched/
15728
15729 SCR24X CHIP CARD INTERFACE DRIVER
15730 M:      Lubomir Rintel <lkundrak@v3.sk>
15731 S:      Supported
15732 F:      drivers/char/pcmcia/scr24x_cs.c
15733
15734 SCSI CDROM DRIVER
15735 M:      Jens Axboe <axboe@kernel.dk>
15736 L:      linux-scsi@vger.kernel.org
15737 S:      Maintained
15738 W:      http://www.kernel.dk
15739 F:      drivers/scsi/sr*
15740
15741 SCSI RDMA PROTOCOL (SRP) INITIATOR
15742 M:      Bart Van Assche <bvanassche@acm.org>
15743 L:      linux-rdma@vger.kernel.org
15744 S:      Supported
15745 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15746 F:      drivers/infiniband/ulp/srp/
15747 F:      include/scsi/srp.h
15748
15749 SCSI RDMA PROTOCOL (SRP) TARGET
15750 M:      Bart Van Assche <bvanassche@acm.org>
15751 L:      linux-rdma@vger.kernel.org
15752 L:      target-devel@vger.kernel.org
15753 S:      Supported
15754 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15755 F:      drivers/infiniband/ulp/srpt/
15756
15757 SCSI SG DRIVER
15758 M:      Doug Gilbert <dgilbert@interlog.com>
15759 L:      linux-scsi@vger.kernel.org
15760 S:      Maintained
15761 W:      http://sg.danny.cz/sg
15762 F:      Documentation/scsi/scsi-generic.rst
15763 F:      drivers/scsi/sg.c
15764 F:      include/scsi/sg.h
15765
15766 SCSI SUBSYSTEM
15767 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
15768 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15769 L:      linux-scsi@vger.kernel.org
15770 S:      Maintained
15771 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
15772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
15773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15774 F:      Documentation/devicetree/bindings/scsi/
15775 F:      drivers/scsi/
15776 F:      include/scsi/
15777
15778 SCSI TAPE DRIVER
15779 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
15780 L:      linux-scsi@vger.kernel.org
15781 S:      Maintained
15782 F:      Documentation/scsi/st.rst
15783 F:      drivers/scsi/st.*
15784 F:      drivers/scsi/st_*.h
15785
15786 SCSI TARGET SUBSYSTEM
15787 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15788 L:      linux-scsi@vger.kernel.org
15789 L:      target-devel@vger.kernel.org
15790 S:      Supported
15791 W:      http://www.linux-iscsi.org
15792 Q:      https://patchwork.kernel.org/project/target-devel/list/
15793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15794 F:      Documentation/target/
15795 F:      drivers/target/
15796 F:      include/target/
15797
15798 SCTP PROTOCOL
15799 M:      Vlad Yasevich <vyasevich@gmail.com>
15800 M:      Neil Horman <nhorman@tuxdriver.com>
15801 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
15802 L:      linux-sctp@vger.kernel.org
15803 S:      Maintained
15804 W:      http://lksctp.sourceforge.net
15805 F:      Documentation/networking/sctp.rst
15806 F:      include/linux/sctp.h
15807 F:      include/net/sctp/
15808 F:      include/uapi/linux/sctp.h
15809 F:      net/sctp/
15810
15811 SCx200 CPU SUPPORT
15812 M:      Jim Cromie <jim.cromie@gmail.com>
15813 S:      Odd Fixes
15814 F:      Documentation/i2c/busses/scx200_acb.rst
15815 F:      arch/x86/platform/scx200/
15816 F:      drivers/i2c/busses/scx200*
15817 F:      drivers/mtd/maps/scx200_docflash.c
15818 F:      drivers/watchdog/scx200_wdt.c
15819 F:      include/linux/scx200.h
15820
15821 SCx200 GPIO DRIVER
15822 M:      Jim Cromie <jim.cromie@gmail.com>
15823 S:      Maintained
15824 F:      drivers/char/scx200_gpio.c
15825 F:      include/linux/scx200_gpio.h
15826
15827 SCx200 HRT CLOCKSOURCE DRIVER
15828 M:      Jim Cromie <jim.cromie@gmail.com>
15829 S:      Maintained
15830 F:      drivers/clocksource/scx200_hrt.c
15831
15832 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15833 M:      Sascha Sommer <saschasommer@freenet.de>
15834 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
15835 S:      Maintained
15836 F:      drivers/mmc/host/sdricoh_cs.c
15837
15838 SECO BOARDS CEC DRIVER
15839 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
15840 S:      Maintained
15841 F:      drivers/media/cec/platform/seco/seco-cec.c
15842 F:      drivers/media/cec/platform/seco/seco-cec.h
15843
15844 SECURE COMPUTING
15845 M:      Kees Cook <keescook@chromium.org>
15846 R:      Andy Lutomirski <luto@amacapital.net>
15847 R:      Will Drewry <wad@chromium.org>
15848 S:      Supported
15849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15850 F:      Documentation/userspace-api/seccomp_filter.rst
15851 F:      include/linux/seccomp.h
15852 F:      include/uapi/linux/seccomp.h
15853 F:      kernel/seccomp.c
15854 F:      tools/testing/selftests/kselftest_harness.h
15855 F:      tools/testing/selftests/seccomp/*
15856 K:      \bsecure_computing
15857 K:      \bTIF_SECCOMP\b
15858
15859 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15860 M:      Al Cooper <alcooperx@gmail.com>
15861 L:      linux-mmc@vger.kernel.org
15862 L:      bcm-kernel-feedback-list@broadcom.com
15863 S:      Maintained
15864 F:      drivers/mmc/host/sdhci-brcmstb*
15865
15866 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15867 M:      Adrian Hunter <adrian.hunter@intel.com>
15868 L:      linux-mmc@vger.kernel.org
15869 S:      Maintained
15870 F:      drivers/mmc/host/sdhci*
15871 F:      include/linux/mmc/sdhci*
15872
15873 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15874 M:      Eugen Hristev <eugen.hristev@microchip.com>
15875 L:      linux-mmc@vger.kernel.org
15876 S:      Supported
15877 F:      drivers/mmc/host/sdhci-of-at91.c
15878
15879 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15880 M:      Ben Dooks <ben-linux@fluff.org>
15881 M:      Jaehoon Chung <jh80.chung@samsung.com>
15882 L:      linux-mmc@vger.kernel.org
15883 S:      Maintained
15884 F:      drivers/mmc/host/sdhci-s3c*
15885
15886 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15887 M:      Viresh Kumar <vireshk@kernel.org>
15888 L:      linux-mmc@vger.kernel.org
15889 S:      Maintained
15890 F:      drivers/mmc/host/sdhci-spear.c
15891
15892 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15893 M:      Kishon Vijay Abraham I <kishon@ti.com>
15894 L:      linux-mmc@vger.kernel.org
15895 S:      Maintained
15896 F:      drivers/mmc/host/sdhci-omap.c
15897
15898 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15899 M:      Jonathan Derrick <jonathan.derrick@intel.com>
15900 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
15901 L:      linux-block@vger.kernel.org
15902 S:      Supported
15903 F:      block/opal_proto.h
15904 F:      block/sed*
15905 F:      include/linux/sed*
15906 F:      include/uapi/linux/sed*
15907
15908 SECURITY CONTACT
15909 M:      Security Officers <security@kernel.org>
15910 S:      Supported
15911 F:      Documentation/admin-guide/security-bugs.rst
15912
15913 SECURITY SUBSYSTEM
15914 M:      James Morris <jmorris@namei.org>
15915 M:      "Serge E. Hallyn" <serge@hallyn.com>
15916 L:      linux-security-module@vger.kernel.org (suggested Cc:)
15917 S:      Supported
15918 W:      http://kernsec.org/
15919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15920 F:      security/
15921 X:      security/selinux/
15922
15923 SELINUX SECURITY MODULE
15924 M:      Paul Moore <paul@paul-moore.com>
15925 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
15926 M:      Eric Paris <eparis@parisplace.org>
15927 L:      selinux@vger.kernel.org
15928 S:      Supported
15929 W:      https://selinuxproject.org
15930 W:      https://github.com/SELinuxProject
15931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15932 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15933 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15934 F:      Documentation/admin-guide/LSM/SELinux.rst
15935 F:      include/trace/events/avc.h
15936 F:      include/uapi/linux/selinux_netlink.h
15937 F:      scripts/selinux/
15938 F:      security/selinux/
15939
15940 SENSABLE PHANTOM
15941 M:      Jiri Slaby <jirislaby@kernel.org>
15942 S:      Maintained
15943 F:      drivers/misc/phantom.c
15944 F:      include/uapi/linux/phantom.h
15945
15946 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
15947 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
15948 S:      Maintained
15949 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
15950 F:      drivers/iio/chemical/scd30.h
15951 F:      drivers/iio/chemical/scd30_core.c
15952 F:      drivers/iio/chemical/scd30_i2c.c
15953 F:      drivers/iio/chemical/scd30_serial.c
15954
15955 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15956 M:      Tomasz Duszynski <tduszyns@gmail.com>
15957 S:      Maintained
15958 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15959 F:      drivers/iio/chemical/sps30.c
15960
15961 SERIAL DEVICE BUS
15962 M:      Rob Herring <robh@kernel.org>
15963 L:      linux-serial@vger.kernel.org
15964 S:      Maintained
15965 F:      Documentation/devicetree/bindings/serial/serial.yaml
15966 F:      drivers/tty/serdev/
15967 F:      include/linux/serdev.h
15968
15969 SERIAL DRIVERS
15970 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15971 L:      linux-serial@vger.kernel.org
15972 S:      Maintained
15973 F:      Documentation/devicetree/bindings/serial/
15974 F:      drivers/tty/serial/
15975
15976 SERIAL IR RECEIVER
15977 M:      Sean Young <sean@mess.org>
15978 L:      linux-media@vger.kernel.org
15979 S:      Maintained
15980 F:      drivers/media/rc/serial_ir.c
15981
15982 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15983 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15984 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15985 S:      Maintained
15986 F:      Documentation/devicetree/bindings/slimbus/
15987 F:      drivers/slimbus/
15988 F:      include/linux/slimbus.h
15989
15990 SFC NETWORK DRIVER
15991 M:      Edward Cree <ecree.xilinx@gmail.com>
15992 M:      Martin Habets <habetsm.xilinx@gmail.com>
15993 L:      netdev@vger.kernel.org
15994 S:      Supported
15995 F:      drivers/net/ethernet/sfc/
15996
15997 SFF/SFP/SFP+ MODULE SUPPORT
15998 M:      Russell King <linux@armlinux.org.uk>
15999 L:      netdev@vger.kernel.org
16000 S:      Maintained
16001 F:      drivers/net/phy/phylink.c
16002 F:      drivers/net/phy/sfp*
16003 F:      include/linux/mdio/mdio-i2c.h
16004 F:      include/linux/phylink.h
16005 F:      include/linux/sfp.h
16006 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)
16007
16008 SGI GRU DRIVER
16009 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
16010 S:      Maintained
16011 F:      drivers/misc/sgi-gru/
16012
16013 SGI XP/XPC/XPNET DRIVER
16014 M:      Robin Holt <robinmholt@gmail.com>
16015 M:      Steve Wahl <steve.wahl@hpe.com>
16016 R:      Mike Travis <mike.travis@hpe.com>
16017 S:      Maintained
16018 F:      drivers/misc/sgi-xp/
16019
16020 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
16021 M:      Karsten Graul <kgraul@linux.ibm.com>
16022 L:      linux-s390@vger.kernel.org
16023 S:      Supported
16024 W:      http://www.ibm.com/developerworks/linux/linux390/
16025 F:      net/smc/
16026
16027 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
16028 M:      Linus Walleij <linus.walleij@linaro.org>
16029 L:      linux-iio@vger.kernel.org
16030 S:      Maintained
16031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
16032 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
16033 F:      drivers/iio/light/gp2ap002.c
16034
16035 SHARP RJ54N1CB0C SENSOR DRIVER
16036 M:      Jacopo Mondi <jacopo@jmondi.org>
16037 L:      linux-media@vger.kernel.org
16038 S:      Odd fixes
16039 T:      git git://linuxtv.org/media_tree.git
16040 F:      drivers/media/i2c/rj54n1cb0c.c
16041 F:      include/media/i2c/rj54n1cb0c.h
16042
16043 SH_VOU V4L2 OUTPUT DRIVER
16044 L:      linux-media@vger.kernel.org
16045 S:      Orphan
16046 F:      drivers/media/platform/sh_vou.c
16047 F:      include/media/drv-intf/sh_vou.h
16048
16049 SI2157 MEDIA DRIVER
16050 M:      Antti Palosaari <crope@iki.fi>
16051 L:      linux-media@vger.kernel.org
16052 S:      Maintained
16053 W:      https://linuxtv.org
16054 W:      http://palosaari.fi/linux/
16055 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16056 T:      git git://linuxtv.org/anttip/media_tree.git
16057 F:      drivers/media/tuners/si2157*
16058
16059 SI2165 MEDIA DRIVER
16060 M:      Matthias Schwarzott <zzam@gentoo.org>
16061 L:      linux-media@vger.kernel.org
16062 S:      Maintained
16063 W:      https://linuxtv.org
16064 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16065 F:      drivers/media/dvb-frontends/si2165*
16066
16067 SI2168 MEDIA DRIVER
16068 M:      Antti Palosaari <crope@iki.fi>
16069 L:      linux-media@vger.kernel.org
16070 S:      Maintained
16071 W:      https://linuxtv.org
16072 W:      http://palosaari.fi/linux/
16073 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16074 T:      git git://linuxtv.org/anttip/media_tree.git
16075 F:      drivers/media/dvb-frontends/si2168*
16076
16077 SI470X FM RADIO RECEIVER I2C DRIVER
16078 M:      Hans Verkuil <hverkuil@xs4all.nl>
16079 L:      linux-media@vger.kernel.org
16080 S:      Odd Fixes
16081 W:      https://linuxtv.org
16082 T:      git git://linuxtv.org/media_tree.git
16083 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
16084
16085 SI470X FM RADIO RECEIVER USB DRIVER
16086 M:      Hans Verkuil <hverkuil@xs4all.nl>
16087 L:      linux-media@vger.kernel.org
16088 S:      Maintained
16089 W:      https://linuxtv.org
16090 T:      git git://linuxtv.org/media_tree.git
16091 F:      drivers/media/radio/si470x/radio-si470x-common.c
16092 F:      drivers/media/radio/si470x/radio-si470x-usb.c
16093 F:      drivers/media/radio/si470x/radio-si470x.h
16094
16095 SI4713 FM RADIO TRANSMITTER I2C DRIVER
16096 M:      Eduardo Valentin <edubezval@gmail.com>
16097 L:      linux-media@vger.kernel.org
16098 S:      Odd Fixes
16099 W:      https://linuxtv.org
16100 T:      git git://linuxtv.org/media_tree.git
16101 F:      drivers/media/radio/si4713/si4713.?
16102
16103 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
16104 M:      Eduardo Valentin <edubezval@gmail.com>
16105 L:      linux-media@vger.kernel.org
16106 S:      Odd Fixes
16107 W:      https://linuxtv.org
16108 T:      git git://linuxtv.org/media_tree.git
16109 F:      drivers/media/radio/si4713/radio-platform-si4713.c
16110
16111 SI4713 FM RADIO TRANSMITTER USB DRIVER
16112 M:      Hans Verkuil <hverkuil@xs4all.nl>
16113 L:      linux-media@vger.kernel.org
16114 S:      Maintained
16115 W:      https://linuxtv.org
16116 T:      git git://linuxtv.org/media_tree.git
16117 F:      drivers/media/radio/si4713/radio-usb-si4713.c
16118
16119 SIANO DVB DRIVER
16120 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16121 L:      linux-media@vger.kernel.org
16122 S:      Odd fixes
16123 W:      https://linuxtv.org
16124 T:      git git://linuxtv.org/media_tree.git
16125 F:      drivers/media/common/siano/
16126 F:      drivers/media/mmc/siano/
16127 F:      drivers/media/usb/siano/
16128 F:      drivers/media/usb/siano/
16129
16130 SIFIVE DRIVERS
16131 M:      Palmer Dabbelt <palmer@dabbelt.com>
16132 M:      Paul Walmsley <paul.walmsley@sifive.com>
16133 L:      linux-riscv@lists.infradead.org
16134 S:      Supported
16135 T:      git git://github.com/sifive/riscv-linux.git
16136 N:      sifive
16137 K:      [^@]sifive
16138
16139 SIFIVE FU540 SYSTEM-ON-CHIP
16140 M:      Paul Walmsley <paul.walmsley@sifive.com>
16141 M:      Palmer Dabbelt <palmer@dabbelt.com>
16142 L:      linux-riscv@lists.infradead.org
16143 S:      Supported
16144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
16145 N:      fu540
16146 K:      fu540
16147
16148 SIFIVE PDMA DRIVER
16149 M:      Green Wan <green.wan@sifive.com>
16150 S:      Maintained
16151 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
16152 F:      drivers/dma/sf-pdma/
16153
16154 SILEAD TOUCHSCREEN DRIVER
16155 M:      Hans de Goede <hdegoede@redhat.com>
16156 L:      linux-input@vger.kernel.org
16157 L:      platform-driver-x86@vger.kernel.org
16158 S:      Maintained
16159 F:      drivers/input/touchscreen/silead.c
16160 F:      drivers/platform/x86/touchscreen_dmi.c
16161
16162 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
16163 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
16164 S:      Supported
16165 F:      drivers/staging/wfx/
16166
16167 SILICON MOTION SM712 FRAME BUFFER DRIVER
16168 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16169 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16170 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16171 L:      linux-fbdev@vger.kernel.org
16172 S:      Maintained
16173 F:      Documentation/fb/sm712fb.rst
16174 F:      drivers/video/fbdev/sm712*
16175
16176 SIMPLE FIRMWARE INTERFACE (SFI)
16177 S:      Obsolete
16178 W:      http://simplefirmware.org/
16179 F:      arch/x86/platform/sfi/
16180 F:      drivers/sfi/
16181 F:      include/linux/sfi*.h
16182
16183 SIMPLEFB FB DRIVER
16184 M:      Hans de Goede <hdegoede@redhat.com>
16185 L:      linux-fbdev@vger.kernel.org
16186 S:      Maintained
16187 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
16188 F:      drivers/video/fbdev/simplefb.c
16189 F:      include/linux/platform_data/simplefb.h
16190
16191 SIMTEC EB110ATX (Chalice CATS)
16192 M:      Simtec Linux Team <linux@simtec.co.uk>
16193 S:      Supported
16194 W:      http://www.simtec.co.uk/products/EB110ATX/
16195
16196 SIMTEC EB2410ITX (BAST)
16197 M:      Simtec Linux Team <linux@simtec.co.uk>
16198 S:      Supported
16199 W:      http://www.simtec.co.uk/products/EB2410ITX/
16200 F:      arch/arm/mach-s3c/bast-ide.c
16201 F:      arch/arm/mach-s3c/bast-irq.c
16202 F:      arch/arm/mach-s3c/mach-bast.c
16203
16204 SIOX
16205 M:      Thorsten Scherer <t.scherer@eckelmann.de>
16206 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16207 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16208 S:      Supported
16209 F:      drivers/gpio/gpio-siox.c
16210 F:      drivers/siox/*
16211 F:      include/trace/events/siox.h
16212
16213 SIPHASH PRF ROUTINES
16214 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16215 S:      Maintained
16216 F:      include/linux/siphash.h
16217 F:      lib/siphash.c
16218 F:      lib/test_siphash.c
16219
16220 SIS 190 ETHERNET DRIVER
16221 M:      Francois Romieu <romieu@fr.zoreil.com>
16222 L:      netdev@vger.kernel.org
16223 S:      Maintained
16224 F:      drivers/net/ethernet/sis/sis190.c
16225
16226 SIS 900/7016 FAST ETHERNET DRIVER
16227 M:      Daniele Venzano <venza@brownhat.org>
16228 L:      netdev@vger.kernel.org
16229 S:      Maintained
16230 W:      http://www.brownhat.org/sis900.html
16231 F:      drivers/net/ethernet/sis/sis900.*
16232
16233 SIS FRAMEBUFFER DRIVER
16234 M:      Thomas Winischhofer <thomas@winischhofer.net>
16235 S:      Maintained
16236 W:      http://www.winischhofer.net/linuxsisvga.shtml
16237 F:      Documentation/fb/sisfb.rst
16238 F:      drivers/video/fbdev/sis/
16239 F:      include/video/sisfb.h
16240
16241 SIS I2C TOUCHSCREEN DRIVER
16242 M:      Mika Penttilä <mika.penttila@nextfour.com>
16243 L:      linux-input@vger.kernel.org
16244 S:      Maintained
16245 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
16246 F:      drivers/input/touchscreen/sis_i2c.c
16247
16248 SIS USB2VGA DRIVER
16249 M:      Thomas Winischhofer <thomas@winischhofer.net>
16250 S:      Maintained
16251 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
16252 F:      drivers/usb/misc/sisusbvga/
16253
16254 SLAB ALLOCATOR
16255 M:      Christoph Lameter <cl@linux.com>
16256 M:      Pekka Enberg <penberg@kernel.org>
16257 M:      David Rientjes <rientjes@google.com>
16258 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
16259 M:      Andrew Morton <akpm@linux-foundation.org>
16260 L:      linux-mm@kvack.org
16261 S:      Maintained
16262 F:      include/linux/sl?b*.h
16263 F:      mm/sl?b*
16264
16265 SLEEPABLE READ-COPY UPDATE (SRCU)
16266 M:      Lai Jiangshan <jiangshanlai@gmail.com>
16267 M:      "Paul E. McKenney" <paulmck@kernel.org>
16268 M:      Josh Triplett <josh@joshtriplett.org>
16269 R:      Steven Rostedt <rostedt@goodmis.org>
16270 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16271 L:      rcu@vger.kernel.org
16272 S:      Supported
16273 W:      http://www.rdrop.com/users/paulmck/RCU/
16274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16275 F:      include/linux/srcu*.h
16276 F:      kernel/rcu/srcu*.c
16277
16278 SMACK SECURITY MODULE
16279 M:      Casey Schaufler <casey@schaufler-ca.com>
16280 L:      linux-security-module@vger.kernel.org
16281 S:      Maintained
16282 W:      http://schaufler-ca.com
16283 T:      git git://github.com/cschaufler/smack-next
16284 F:      Documentation/admin-guide/LSM/Smack.rst
16285 F:      security/smack/
16286
16287 SMC91x ETHERNET DRIVER
16288 M:      Nicolas Pitre <nico@fluxnic.net>
16289 S:      Odd Fixes
16290 F:      drivers/net/ethernet/smsc/smc91x.*
16291
16292 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
16293 M:      Mark Rutland <mark.rutland@arm.com>
16294 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
16295 M:      Sudeep Holla <sudeep.holla@arm.com>
16296 L:      linux-arm-kernel@lists.infradead.org
16297 S:      Maintained
16298 F:      drivers/firmware/smccc/
16299 F:      include/linux/arm-smccc.h
16300
16301 SMM665 HARDWARE MONITOR DRIVER
16302 M:      Guenter Roeck <linux@roeck-us.net>
16303 L:      linux-hwmon@vger.kernel.org
16304 S:      Maintained
16305 F:      Documentation/hwmon/smm665.rst
16306 F:      drivers/hwmon/smm665.c
16307
16308 SMSC EMC2103 HARDWARE MONITOR DRIVER
16309 M:      Steve Glendinning <steve.glendinning@shawell.net>
16310 L:      linux-hwmon@vger.kernel.org
16311 S:      Maintained
16312 F:      Documentation/hwmon/emc2103.rst
16313 F:      drivers/hwmon/emc2103.c
16314
16315 SMSC SCH5627 HARDWARE MONITOR DRIVER
16316 M:      Hans de Goede <hdegoede@redhat.com>
16317 L:      linux-hwmon@vger.kernel.org
16318 S:      Supported
16319 F:      Documentation/hwmon/sch5627.rst
16320 F:      drivers/hwmon/sch5627.c
16321
16322 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
16323 M:      Steve Glendinning <steve.glendinning@shawell.net>
16324 L:      linux-fbdev@vger.kernel.org
16325 S:      Maintained
16326 F:      drivers/video/fbdev/smscufx.c
16327
16328 SMSC47B397 HARDWARE MONITOR DRIVER
16329 M:      Jean Delvare <jdelvare@suse.com>
16330 L:      linux-hwmon@vger.kernel.org
16331 S:      Maintained
16332 F:      Documentation/hwmon/smsc47b397.rst
16333 F:      drivers/hwmon/smsc47b397.c
16334
16335 SMSC911x ETHERNET DRIVER
16336 M:      Steve Glendinning <steve.glendinning@shawell.net>
16337 L:      netdev@vger.kernel.org
16338 S:      Maintained
16339 F:      drivers/net/ethernet/smsc/smsc911x.*
16340 F:      include/linux/smsc911x.h
16341
16342 SMSC9420 PCI ETHERNET DRIVER
16343 M:      Steve Glendinning <steve.glendinning@shawell.net>
16344 L:      netdev@vger.kernel.org
16345 S:      Maintained
16346 F:      drivers/net/ethernet/smsc/smsc9420.*
16347
16348 SOCIONEXT (SNI) AVE NETWORK DRIVER
16349 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
16350 L:      netdev@vger.kernel.org
16351 S:      Maintained
16352 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
16353 F:      drivers/net/ethernet/socionext/sni_ave.c
16354
16355 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
16356 M:      Jassi Brar <jaswinder.singh@linaro.org>
16357 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
16358 L:      netdev@vger.kernel.org
16359 S:      Maintained
16360 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
16361 F:      drivers/net/ethernet/socionext/netsec.c
16362
16363 SOCIONEXT (SNI) Synquacer SPI DRIVER
16364 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
16365 M:      Jassi Brar <jaswinder.singh@linaro.org>
16366 L:      linux-spi@vger.kernel.org
16367 S:      Maintained
16368 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
16369 F:      drivers/spi/spi-synquacer.c
16370
16371 SOCIONEXT SYNQUACER I2C DRIVER
16372 M:      Ard Biesheuvel <ardb@kernel.org>
16373 L:      linux-i2c@vger.kernel.org
16374 S:      Maintained
16375 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
16376 F:      drivers/i2c/busses/i2c-synquacer.c
16377
16378 SOCIONEXT UNIPHIER SOUND DRIVER
16379 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16380 S:      Orphan
16381 F:      sound/soc/uniphier/
16382
16383 SOEKRIS NET48XX LED SUPPORT
16384 M:      Chris Boot <bootc@bootc.net>
16385 S:      Maintained
16386 F:      drivers/leds/leds-net48xx.c
16387
16388 SOFT-IWARP DRIVER (siw)
16389 M:      Bernard Metzler <bmt@zurich.ibm.com>
16390 L:      linux-rdma@vger.kernel.org
16391 S:      Supported
16392 F:      drivers/infiniband/sw/siw/
16393 F:      include/uapi/rdma/siw-abi.h
16394
16395 SOFT-ROCE DRIVER (rxe)
16396 M:      Zhu Yanjun <yanjunz@nvidia.com>
16397 L:      linux-rdma@vger.kernel.org
16398 S:      Supported
16399 F:      drivers/infiniband/sw/rxe/
16400 F:      include/uapi/rdma/rdma_user_rxe.h
16401
16402 SOFTLOGIC 6x10 MPEG CODEC
16403 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
16404 M:      Anton Sviridenko <anton@corp.bluecherry.net>
16405 M:      Andrey Utkin <andrey_utkin@fastmail.com>
16406 M:      Ismael Luceno <ismael@iodev.co.uk>
16407 L:      linux-media@vger.kernel.org
16408 S:      Supported
16409 F:      drivers/media/pci/solo6x10/
16410
16411 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
16412 M:      James Morse <james.morse@arm.com>
16413 L:      linux-arm-kernel@lists.infradead.org
16414 S:      Maintained
16415 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
16416 F:      drivers/firmware/arm_sdei.c
16417 F:      include/linux/arm_sdei.h
16418 F:      include/uapi/linux/arm_sdei.h
16419
16420 SOFTWARE RAID (Multiple Disks) SUPPORT
16421 M:      Song Liu <song@kernel.org>
16422 L:      linux-raid@vger.kernel.org
16423 S:      Supported
16424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
16425 F:      drivers/md/Kconfig
16426 F:      drivers/md/Makefile
16427 F:      drivers/md/md*
16428 F:      drivers/md/raid*
16429 F:      include/linux/raid/
16430 F:      include/uapi/linux/raid/
16431
16432 SOLIDRUN CLEARFOG SUPPORT
16433 M:      Russell King <linux@armlinux.org.uk>
16434 S:      Maintained
16435 F:      arch/arm/boot/dts/armada-388-clearfog*
16436 F:      arch/arm/boot/dts/armada-38x-solidrun-*
16437
16438 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
16439 M:      Russell King <linux@armlinux.org.uk>
16440 S:      Maintained
16441 F:      arch/arm/boot/dts/imx6*-cubox-i*
16442 F:      arch/arm/boot/dts/imx6*-hummingboard*
16443 F:      arch/arm/boot/dts/imx6*-sr-*
16444
16445 SONIC NETWORK DRIVER
16446 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
16447 L:      netdev@vger.kernel.org
16448 S:      Maintained
16449 F:      drivers/net/ethernet/natsemi/sonic.*
16450
16451 SONICS SILICON BACKPLANE DRIVER (SSB)
16452 M:      Michael Buesch <m@bues.ch>
16453 L:      linux-wireless@vger.kernel.org
16454 S:      Maintained
16455 F:      drivers/ssb/
16456 F:      include/linux/ssb/
16457
16458 SONY IMX214 SENSOR DRIVER
16459 M:      Ricardo Ribalda <ribalda@kernel.org>
16460 L:      linux-media@vger.kernel.org
16461 S:      Maintained
16462 T:      git git://linuxtv.org/media_tree.git
16463 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
16464 F:      drivers/media/i2c/imx214.c
16465
16466 SONY IMX219 SENSOR DRIVER
16467 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
16468 L:      linux-media@vger.kernel.org
16469 S:      Maintained
16470 T:      git git://linuxtv.org/media_tree.git
16471 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
16472 F:      drivers/media/i2c/imx219.c
16473
16474 SONY IMX258 SENSOR DRIVER
16475 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
16476 L:      linux-media@vger.kernel.org
16477 S:      Maintained
16478 T:      git git://linuxtv.org/media_tree.git
16479 F:      drivers/media/i2c/imx258.c
16480
16481 SONY IMX274 SENSOR DRIVER
16482 M:      Leon Luo <leonl@leopardimaging.com>
16483 L:      linux-media@vger.kernel.org
16484 S:      Maintained
16485 T:      git git://linuxtv.org/media_tree.git
16486 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
16487 F:      drivers/media/i2c/imx274.c
16488
16489 SONY IMX290 SENSOR DRIVER
16490 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16491 L:      linux-media@vger.kernel.org
16492 S:      Maintained
16493 T:      git git://linuxtv.org/media_tree.git
16494 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
16495 F:      drivers/media/i2c/imx290.c
16496
16497 SONY IMX319 SENSOR DRIVER
16498 M:      Bingbu Cao <bingbu.cao@intel.com>
16499 L:      linux-media@vger.kernel.org
16500 S:      Maintained
16501 T:      git git://linuxtv.org/media_tree.git
16502 F:      drivers/media/i2c/imx319.c
16503
16504 SONY IMX355 SENSOR DRIVER
16505 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
16506 L:      linux-media@vger.kernel.org
16507 S:      Maintained
16508 T:      git git://linuxtv.org/media_tree.git
16509 F:      drivers/media/i2c/imx355.c
16510
16511 SONY MEMORYSTICK SUBSYSTEM
16512 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16513 M:      Alex Dubov <oakad@yahoo.com>
16514 M:      Ulf Hansson <ulf.hansson@linaro.org>
16515 L:      linux-mmc@vger.kernel.org
16516 S:      Maintained
16517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
16518 F:      drivers/memstick/
16519 F:      include/linux/memstick.h
16520
16521 SONY VAIO CONTROL DEVICE DRIVER
16522 M:      Mattia Dongili <malattia@linux.it>
16523 L:      platform-driver-x86@vger.kernel.org
16524 S:      Maintained
16525 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
16526 F:      Documentation/admin-guide/laptops/sony-laptop.rst
16527 F:      drivers/char/sonypi.c
16528 F:      drivers/platform/x86/sony-laptop.c
16529 F:      include/linux/sony-laptop.h
16530
16531 SOUND
16532 M:      Jaroslav Kysela <perex@perex.cz>
16533 M:      Takashi Iwai <tiwai@suse.com>
16534 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16535 S:      Maintained
16536 W:      http://www.alsa-project.org/
16537 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
16538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16539 F:      Documentation/sound/
16540 F:      include/sound/
16541 F:      include/uapi/sound/
16542 F:      sound/
16543
16544 SOUND - COMPRESSED AUDIO
16545 M:      Vinod Koul <vkoul@kernel.org>
16546 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16547 S:      Supported
16548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16549 F:      Documentation/sound/designs/compress-offload.rst
16550 F:      include/sound/compress_driver.h
16551 F:      include/uapi/sound/compress_*
16552 F:      sound/core/compress_offload.c
16553 F:      sound/soc/soc-compress.c
16554
16555 SOUND - DMAENGINE HELPERS
16556 M:      Lars-Peter Clausen <lars@metafoo.de>
16557 S:      Supported
16558 F:      include/sound/dmaengine_pcm.h
16559 F:      sound/core/pcm_dmaengine.c
16560 F:      sound/soc/soc-generic-dmaengine-pcm.c
16561
16562 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
16563 M:      Liam Girdwood <lgirdwood@gmail.com>
16564 M:      Mark Brown <broonie@kernel.org>
16565 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16566 S:      Supported
16567 W:      http://alsa-project.org/main/index.php/ASoC
16568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
16569 F:      Documentation/devicetree/bindings/sound/
16570 F:      Documentation/sound/soc/
16571 F:      include/dt-bindings/sound/
16572 F:      include/sound/soc*
16573 F:      sound/soc/
16574
16575 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
16576 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16577 M:      Liam Girdwood <lgirdwood@gmail.com>
16578 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
16579 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
16580 M:      Daniel Baluta <daniel.baluta@nxp.com>
16581 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
16582 S:      Supported
16583 W:      https://github.com/thesofproject/linux/
16584 F:      sound/soc/sof/
16585
16586 SOUNDWIRE SUBSYSTEM
16587 M:      Vinod Koul <vkoul@kernel.org>
16588 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
16589 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16590 R:      Sanyog Kale <sanyog.r.kale@intel.com>
16591 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16592 S:      Supported
16593 F:      Documentation/driver-api/soundwire/
16594 F:      drivers/soundwire/
16595 F:      include/linux/soundwire/
16596
16597 SP2 MEDIA DRIVER
16598 M:      Olli Salonen <olli.salonen@iki.fi>
16599 L:      linux-media@vger.kernel.org
16600 S:      Maintained
16601 W:      https://linuxtv.org
16602 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16603 F:      drivers/media/dvb-frontends/sp2*
16604
16605 SPARC + UltraSPARC (sparc/sparc64)
16606 M:      "David S. Miller" <davem@davemloft.net>
16607 L:      sparclinux@vger.kernel.org
16608 S:      Maintained
16609 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
16610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16612 F:      arch/sparc/
16613 F:      drivers/sbus/
16614
16615 SPARC SERIAL DRIVERS
16616 M:      "David S. Miller" <davem@davemloft.net>
16617 L:      sparclinux@vger.kernel.org
16618 S:      Maintained
16619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16620 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16621 F:      drivers/tty/serial/suncore.c
16622 F:      drivers/tty/serial/sunhv.c
16623 F:      drivers/tty/serial/sunsab.c
16624 F:      drivers/tty/serial/sunsab.h
16625 F:      drivers/tty/serial/sunsu.c
16626 F:      drivers/tty/serial/sunzilog.c
16627 F:      drivers/tty/serial/sunzilog.h
16628 F:      drivers/tty/vcc.c
16629 F:      include/linux/sunserialcore.h
16630
16631 SPARSE CHECKER
16632 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
16633 L:      linux-sparse@vger.kernel.org
16634 S:      Maintained
16635 W:      https://sparse.docs.kernel.org/
16636 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
16637 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
16638 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
16639 F:      include/linux/compiler.h
16640
16641 SPEAKUP CONSOLE SPEECH DRIVER
16642 M:      William Hubbs <w.d.hubbs@gmail.com>
16643 M:      Chris Brannon <chris@the-brannons.com>
16644 M:      Kirk Reiser <kirk@reisers.ca>
16645 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
16646 L:      speakup@linux-speakup.org
16647 S:      Odd Fixes
16648 W:      http://www.linux-speakup.org/
16649 F:      drivers/accessibility/speakup/
16650
16651 SPEAR CLOCK FRAMEWORK SUPPORT
16652 M:      Viresh Kumar <vireshk@kernel.org>
16653 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16654 S:      Maintained
16655 W:      http://www.st.com/spear
16656 F:      drivers/clk/spear/
16657
16658 SPEAR PLATFORM SUPPORT
16659 M:      Viresh Kumar <vireshk@kernel.org>
16660 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
16661 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16662 S:      Maintained
16663 W:      http://www.st.com/spear
16664 F:      arch/arm/boot/dts/spear*
16665 F:      arch/arm/mach-spear/
16666
16667 SPI NOR SUBSYSTEM
16668 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
16669 L:      linux-mtd@lists.infradead.org
16670 S:      Maintained
16671 W:      http://www.linux-mtd.infradead.org/
16672 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
16673 C:      irc://irc.oftc.net/mtd
16674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
16675 F:      drivers/mtd/spi-nor/
16676 F:      include/linux/mtd/spi-nor.h
16677
16678 SPI SUBSYSTEM
16679 M:      Mark Brown <broonie@kernel.org>
16680 L:      linux-spi@vger.kernel.org
16681 S:      Maintained
16682 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
16683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
16684 F:      Documentation/devicetree/bindings/spi/
16685 F:      Documentation/spi/
16686 F:      drivers/spi/
16687 F:      include/linux/spi/
16688 F:      include/uapi/linux/spi/
16689 F:      tools/spi/
16690
16691 SPIDERNET NETWORK DRIVER for CELL
16692 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
16693 L:      netdev@vger.kernel.org
16694 S:      Supported
16695 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
16696 F:      drivers/net/ethernet/toshiba/spider_net*
16697
16698 SPMI SUBSYSTEM
16699 M:      Stephen Boyd <sboyd@kernel.org>
16700 L:      linux-kernel@vger.kernel.org
16701 S:      Maintained
16702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
16703 F:      Documentation/devicetree/bindings/spmi/
16704 F:      drivers/spmi/
16705 F:      include/dt-bindings/spmi/spmi.h
16706 F:      include/linux/spmi.h
16707 F:      include/trace/events/spmi.h
16708
16709 SPU FILE SYSTEM
16710 M:      Jeremy Kerr <jk@ozlabs.org>
16711 L:      linuxppc-dev@lists.ozlabs.org
16712 S:      Supported
16713 W:      http://www.ibm.com/developerworks/power/cell/
16714 F:      Documentation/filesystems/spufs/spufs.rst
16715 F:      arch/powerpc/platforms/cell/spufs/
16716
16717 SQUASHFS FILE SYSTEM
16718 M:      Phillip Lougher <phillip@squashfs.org.uk>
16719 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
16720 S:      Maintained
16721 W:      http://squashfs.org.uk
16722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
16723 F:      Documentation/filesystems/squashfs.rst
16724 F:      fs/squashfs/
16725
16726 SRM (Alpha) environment access
16727 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
16728 S:      Maintained
16729 F:      arch/alpha/kernel/srm_env.c
16730
16731 ST LSM6DSx IMU IIO DRIVER
16732 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
16733 L:      linux-iio@vger.kernel.org
16734 S:      Maintained
16735 W:      http://www.st.com/
16736 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
16737 F:      drivers/iio/imu/st_lsm6dsx/
16738
16739 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
16740 M:      Mickael Guene <mickael.guene@st.com>
16741 L:      linux-media@vger.kernel.org
16742 S:      Maintained
16743 T:      git git://linuxtv.org/media_tree.git
16744 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
16745 F:      drivers/media/i2c/st-mipid02.c
16746
16747 ST STM32 I2C/SMBUS DRIVER
16748 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
16749 L:      linux-i2c@vger.kernel.org
16750 S:      Maintained
16751 F:      drivers/i2c/busses/i2c-stm32*
16752
16753 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
16754 M:      Song Qiang <songqiang1304521@gmail.com>
16755 L:      linux-iio@vger.kernel.org
16756 S:      Maintained
16757 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
16758 F:      drivers/iio/proximity/vl53l0x-i2c.c
16759
16760 STABLE BRANCH
16761 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16762 M:      Sasha Levin <sashal@kernel.org>
16763 L:      stable@vger.kernel.org
16764 S:      Supported
16765 F:      Documentation/process/stable-kernel-rules.rst
16766
16767 STAGING - ATOMISP DRIVER
16768 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16769 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
16770 L:      linux-media@vger.kernel.org
16771 S:      Maintained
16772 F:      drivers/staging/media/atomisp/
16773
16774 STAGING - COMEDI
16775 M:      Ian Abbott <abbotti@mev.co.uk>
16776 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
16777 S:      Odd Fixes
16778 F:      drivers/staging/comedi/
16779
16780 STAGING - FIELDBUS SUBSYSTEM
16781 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16782 S:      Maintained
16783 F:      drivers/staging/fieldbus/*
16784 F:      drivers/staging/fieldbus/Documentation/
16785
16786 STAGING - HMS ANYBUS-S BUS
16787 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16788 S:      Maintained
16789 F:      drivers/staging/fieldbus/anybuss/
16790
16791 STAGING - INDUSTRIAL IO
16792 M:      Jonathan Cameron <jic23@kernel.org>
16793 L:      linux-iio@vger.kernel.org
16794 S:      Odd Fixes
16795 F:      Documentation/devicetree/bindings/staging/iio/
16796 F:      drivers/staging/iio/
16797
16798 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
16799 M:      Marc Dietrich <marvin24@gmx.de>
16800 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
16801 L:      linux-tegra@vger.kernel.org
16802 S:      Maintained
16803 F:      drivers/staging/nvec/
16804
16805 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
16806 M:      Jens Frederich <jfrederich@gmail.com>
16807 M:      Daniel Drake <dsd@laptop.org>
16808 M:      Jon Nettleton <jon.nettleton@gmail.com>
16809 S:      Maintained
16810 W:      http://wiki.laptop.org/go/DCON
16811 F:      drivers/staging/olpc_dcon/
16812
16813 STAGING - REALTEK RTL8188EU DRIVERS
16814 M:      Larry Finger <Larry.Finger@lwfinger.net>
16815 S:      Odd Fixes
16816 F:      drivers/staging/rtl8188eu/
16817
16818 STAGING - REALTEK RTL8712U DRIVERS
16819 M:      Larry Finger <Larry.Finger@lwfinger.net>
16820 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
16821 S:      Odd Fixes
16822 F:      drivers/staging/rtl8712/
16823
16824 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16825 M:      Michael Hennerich <michael.hennerich@analog.com>
16826 L:      linux-fbdev@vger.kernel.org
16827 S:      Supported
16828 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16829 F:      drivers/staging/fbtft/fb_seps525.c
16830
16831 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16832 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16833 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16834 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16835 L:      linux-fbdev@vger.kernel.org
16836 S:      Maintained
16837 F:      drivers/staging/sm750fb/
16838
16839 STAGING - VIA VT665X DRIVERS
16840 M:      Forest Bond <forest@alittletooquiet.net>
16841 S:      Odd Fixes
16842 F:      drivers/staging/vt665?/
16843
16844 STAGING SUBSYSTEM
16845 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16846 L:      devel@driverdev.osuosl.org
16847 S:      Supported
16848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16849 F:      drivers/staging/
16850
16851 STARFIRE/DURALAN NETWORK DRIVER
16852 M:      Ion Badulescu <ionut@badula.org>
16853 S:      Odd Fixes
16854 F:      drivers/net/ethernet/adaptec/starfire*
16855
16856 STEC S1220 SKD DRIVER
16857 M:      Damien Le Moal <Damien.LeMoal@wdc.com>
16858 L:      linux-block@vger.kernel.org
16859 S:      Maintained
16860 F:      drivers/block/skd*[ch]
16861
16862 STI AUDIO (ASoC) DRIVERS
16863 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16864 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16865 S:      Maintained
16866 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16867 F:      sound/soc/sti/
16868
16869 STI CEC DRIVER
16870 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
16871 S:      Maintained
16872 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16873 F:      drivers/media/cec/platform/sti/
16874
16875 STK1160 USB VIDEO CAPTURE DRIVER
16876 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16877 L:      linux-media@vger.kernel.org
16878 S:      Maintained
16879 T:      git git://linuxtv.org/media_tree.git
16880 F:      drivers/media/usb/stk1160/
16881
16882 STM32 AUDIO (ASoC) DRIVERS
16883 M:      Olivier Moysan <olivier.moysan@st.com>
16884 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16885 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16886 S:      Maintained
16887 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
16888 F:      sound/soc/stm/
16889
16890 STM32 TIMER/LPTIMER DRIVERS
16891 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
16892 S:      Maintained
16893 F:      Documentation/ABI/testing/*timer-stm32
16894 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16895 F:      drivers/*/stm32-*timer*
16896 F:      drivers/pwm/pwm-stm32*
16897 F:      include/linux/*/stm32-*tim*
16898
16899 STMMAC ETHERNET DRIVER
16900 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
16901 M:      Alexandre Torgue <alexandre.torgue@st.com>
16902 M:      Jose Abreu <joabreu@synopsys.com>
16903 L:      netdev@vger.kernel.org
16904 S:      Supported
16905 W:      http://www.stlinux.com
16906 F:      Documentation/networking/device_drivers/ethernet/stmicro/
16907 F:      drivers/net/ethernet/stmicro/stmmac/
16908
16909 SUN3/3X
16910 M:      Sam Creasey <sammy@sammy.net>
16911 S:      Maintained
16912 W:      http://sammy.net/sun3/
16913 F:      arch/m68k/include/asm/sun3*
16914 F:      arch/m68k/kernel/*sun3*
16915 F:      arch/m68k/sun3*/
16916 F:      drivers/net/ethernet/i825xx/sun3*
16917
16918 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16919 M:      Hans de Goede <hdegoede@redhat.com>
16920 L:      linux-input@vger.kernel.org
16921 S:      Maintained
16922 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16923 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16924
16925 SUNDANCE NETWORK DRIVER
16926 M:      Denis Kirjanov <kda@linux-powerpc.org>
16927 L:      netdev@vger.kernel.org
16928 S:      Maintained
16929 F:      drivers/net/ethernet/dlink/sundance.c
16930
16931 SUPERH
16932 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
16933 M:      Rich Felker <dalias@libc.org>
16934 L:      linux-sh@vger.kernel.org
16935 S:      Maintained
16936 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16937 F:      Documentation/sh/
16938 F:      arch/sh/
16939 F:      drivers/sh/
16940
16941 SUSPEND TO RAM
16942 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
16943 M:      Len Brown <len.brown@intel.com>
16944 M:      Pavel Machek <pavel@ucw.cz>
16945 L:      linux-pm@vger.kernel.org
16946 S:      Supported
16947 B:      https://bugzilla.kernel.org
16948 F:      Documentation/power/
16949 F:      arch/x86/kernel/acpi/
16950 F:      drivers/base/power/
16951 F:      include/linux/freezer.h
16952 F:      include/linux/pm.h
16953 F:      include/linux/suspend.h
16954 F:      kernel/power/
16955
16956 SVGA HANDLING
16957 M:      Martin Mares <mj@ucw.cz>
16958 L:      linux-video@atrey.karlin.mff.cuni.cz
16959 S:      Maintained
16960 F:      Documentation/admin-guide/svga.rst
16961 F:      arch/x86/boot/video*
16962
16963 SWIOTLB SUBSYSTEM
16964 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
16965 L:      iommu@lists.linux-foundation.org
16966 S:      Supported
16967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16968 F:      arch/*/kernel/pci-swiotlb.c
16969 F:      include/linux/swiotlb.h
16970 F:      kernel/dma/swiotlb.c
16971
16972 SWITCHDEV
16973 M:      Jiri Pirko <jiri@resnulli.us>
16974 M:      Ivan Vecera <ivecera@redhat.com>
16975 L:      netdev@vger.kernel.org
16976 S:      Supported
16977 F:      include/net/switchdev.h
16978 F:      net/switchdev/
16979
16980 SY8106A REGULATOR DRIVER
16981 M:      Icenowy Zheng <icenowy@aosc.io>
16982 S:      Maintained
16983 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16984 F:      drivers/regulator/sy8106a-regulator.c
16985
16986 SYNC FILE FRAMEWORK
16987 M:      Sumit Semwal <sumit.semwal@linaro.org>
16988 R:      Gustavo Padovan <gustavo@padovan.org>
16989 L:      linux-media@vger.kernel.org
16990 L:      dri-devel@lists.freedesktop.org
16991 S:      Maintained
16992 T:      git git://anongit.freedesktop.org/drm/drm-misc
16993 F:      Documentation/driver-api/sync_file.rst
16994 F:      drivers/dma-buf/dma-fence*
16995 F:      drivers/dma-buf/sw_sync.c
16996 F:      drivers/dma-buf/sync_*
16997 F:      include/linux/sync_file.h
16998 F:      include/uapi/linux/sync_file.h
16999
17000 SYNOPSYS ARC ARCHITECTURE
17001 M:      Vineet Gupta <vgupta@synopsys.com>
17002 L:      linux-snps-arc@lists.infradead.org
17003 S:      Supported
17004 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
17005 F:      Documentation/devicetree/bindings/arc/*
17006 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
17007 F:      arch/arc/
17008 F:      drivers/clocksource/arc_timer.c
17009 F:      drivers/tty/serial/arc_uart.c
17010
17011 SYNOPSYS ARC HSDK SDP pll clock driver
17012 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17013 S:      Supported
17014 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
17015 F:      drivers/clk/clk-hsdk-pll.c
17016
17017 SYNOPSYS ARC SDP clock driver
17018 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17019 S:      Supported
17020 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
17021 F:      drivers/clk/axs10x/*
17022
17023 SYNOPSYS ARC SDP platform support
17024 M:      Alexey Brodkin <abrodkin@synopsys.com>
17025 S:      Supported
17026 F:      Documentation/devicetree/bindings/arc/axs10*
17027 F:      arch/arc/boot/dts/ax*
17028 F:      arch/arc/plat-axs10x
17029
17030 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
17031 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17032 S:      Supported
17033 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
17034 F:      drivers/reset/reset-axs10x.c
17035
17036 SYNOPSYS CREG GPIO DRIVER
17037 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17038 S:      Maintained
17039 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
17040 F:      drivers/gpio/gpio-creg-snps.c
17041
17042 SYNOPSYS DESIGNWARE 8250 UART DRIVER
17043 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17044 S:      Maintained
17045 F:      drivers/tty/serial/8250/8250_dw.c
17046 F:      drivers/tty/serial/8250/8250_dwlib.*
17047 F:      drivers/tty/serial/8250/8250_lpss.c
17048
17049 SYNOPSYS DESIGNWARE APB GPIO DRIVER
17050 M:      Hoan Tran <hoan@os.amperecomputing.com>
17051 M:      Serge Semin <fancer.lancer@gmail.com>
17052 L:      linux-gpio@vger.kernel.org
17053 S:      Maintained
17054 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
17055 F:      drivers/gpio/gpio-dwapb.c
17056
17057 SYNOPSYS DESIGNWARE APB SSI DRIVER
17058 M:      Serge Semin <fancer.lancer@gmail.com>
17059 L:      linux-spi@vger.kernel.org
17060 S:      Supported
17061 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
17062 F:      drivers/spi/spi-dw*
17063
17064 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
17065 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17066 S:      Maintained
17067 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
17068 F:      drivers/dma/dw-axi-dmac/
17069
17070 SYNOPSYS DESIGNWARE DMAC DRIVER
17071 M:      Viresh Kumar <vireshk@kernel.org>
17072 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17073 S:      Maintained
17074 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
17075 F:      drivers/dma/dw/
17076 F:      include/dt-bindings/dma/dw-dmac.h
17077 F:      include/linux/dma/dw.h
17078 F:      include/linux/platform_data/dma-dw.h
17079
17080 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
17081 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17082 L:      netdev@vger.kernel.org
17083 S:      Supported
17084 F:      drivers/net/ethernet/synopsys/
17085
17086 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
17087 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17088 L:      netdev@vger.kernel.org
17089 S:      Supported
17090 F:      drivers/net/pcs/pcs-xpcs.c
17091 F:      include/linux/pcs/pcs-xpcs.h
17092
17093 SYNOPSYS DESIGNWARE I2C DRIVER
17094 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
17095 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17096 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
17097 L:      linux-i2c@vger.kernel.org
17098 S:      Maintained
17099 F:      drivers/i2c/busses/i2c-designware-*
17100 F:      include/linux/platform_data/i2c-designware.h
17101
17102 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
17103 M:      Jaehoon Chung <jh80.chung@samsung.com>
17104 L:      linux-mmc@vger.kernel.org
17105 S:      Maintained
17106 F:      drivers/mmc/host/dw_mmc*
17107
17108 SYNOPSYS HSDK RESET CONTROLLER DRIVER
17109 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17110 S:      Supported
17111 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
17112 F:      drivers/reset/reset-hsdk.c
17113 F:      include/dt-bindings/reset/snps,hsdk-reset.h
17114
17115 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
17116 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
17117 M:      Manjunath M B <manjumb@synopsys.com>
17118 L:      linux-mmc@vger.kernel.org
17119 S:      Maintained
17120 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
17121
17122 SYSTEM CONFIGURATION (SYSCON)
17123 M:      Lee Jones <lee.jones@linaro.org>
17124 M:      Arnd Bergmann <arnd@arndb.de>
17125 S:      Supported
17126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
17127 F:      drivers/mfd/syscon.c
17128
17129 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
17130 M:      Sudeep Holla <sudeep.holla@arm.com>
17131 L:      linux-arm-kernel@lists.infradead.org
17132 S:      Maintained
17133 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
17134 F:      drivers/clk/clk-sc[mp]i.c
17135 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
17136 F:      drivers/firmware/arm_scmi/
17137 F:      drivers/firmware/arm_scpi.c
17138 F:      drivers/reset/reset-scmi.c
17139 F:      include/linux/sc[mp]i_protocol.h
17140 F:      include/trace/events/scmi.h
17141
17142 SYSTEM RESET/SHUTDOWN DRIVERS
17143 M:      Sebastian Reichel <sre@kernel.org>
17144 L:      linux-pm@vger.kernel.org
17145 S:      Maintained
17146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
17147 F:      Documentation/devicetree/bindings/power/reset/
17148 F:      drivers/power/reset/
17149
17150 SYSTEM TRACE MODULE CLASS
17151 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
17152 S:      Maintained
17153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
17154 F:      Documentation/trace/stm.rst
17155 F:      drivers/hwtracing/stm/
17156 F:      include/linux/stm.h
17157 F:      include/uapi/linux/stm.h
17158
17159 SYSTEM76 ACPI DRIVER
17160 M:      Jeremy Soller <jeremy@system76.com>
17161 M:      System76 Product Development <productdev@system76.com>
17162 L:      platform-driver-x86@vger.kernel.org
17163 S:      Maintained
17164 F:      drivers/platform/x86/system76_acpi.c
17165
17166 SYSV FILESYSTEM
17167 M:      Christoph Hellwig <hch@infradead.org>
17168 S:      Maintained
17169 F:      Documentation/filesystems/sysv-fs.rst
17170 F:      fs/sysv/
17171 F:      include/linux/sysv_fs.h
17172
17173 TASKSTATS STATISTICS INTERFACE
17174 M:      Balbir Singh <bsingharora@gmail.com>
17175 S:      Maintained
17176 F:      Documentation/accounting/taskstats*
17177 F:      include/linux/taskstats*
17178 F:      kernel/taskstats.c
17179
17180 TC subsystem
17181 M:      Jamal Hadi Salim <jhs@mojatatu.com>
17182 M:      Cong Wang <xiyou.wangcong@gmail.com>
17183 M:      Jiri Pirko <jiri@resnulli.us>
17184 L:      netdev@vger.kernel.org
17185 S:      Maintained
17186 F:      include/net/pkt_cls.h
17187 F:      include/net/pkt_sched.h
17188 F:      include/net/tc_act/
17189 F:      include/uapi/linux/pkt_cls.h
17190 F:      include/uapi/linux/pkt_sched.h
17191 F:      include/uapi/linux/tc_act/
17192 F:      include/uapi/linux/tc_ematch/
17193 F:      net/sched/
17194
17195 TC90522 MEDIA DRIVER
17196 M:      Akihiro Tsukada <tskd08@gmail.com>
17197 L:      linux-media@vger.kernel.org
17198 S:      Odd Fixes
17199 F:      drivers/media/dvb-frontends/tc90522*
17200
17201 TCP LOW PRIORITY MODULE
17202 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
17203 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
17204 S:      Maintained
17205 W:      http://tcp-lp-mod.sourceforge.net/
17206 F:      net/ipv4/tcp_lp.c
17207
17208 TDA10071 MEDIA DRIVER
17209 M:      Antti Palosaari <crope@iki.fi>
17210 L:      linux-media@vger.kernel.org
17211 S:      Maintained
17212 W:      https://linuxtv.org
17213 W:      http://palosaari.fi/linux/
17214 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17215 T:      git git://linuxtv.org/anttip/media_tree.git
17216 F:      drivers/media/dvb-frontends/tda10071*
17217
17218 TDA18212 MEDIA DRIVER
17219 M:      Antti Palosaari <crope@iki.fi>
17220 L:      linux-media@vger.kernel.org
17221 S:      Maintained
17222 W:      https://linuxtv.org
17223 W:      http://palosaari.fi/linux/
17224 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17225 T:      git git://linuxtv.org/anttip/media_tree.git
17226 F:      drivers/media/tuners/tda18212*
17227
17228 TDA18218 MEDIA DRIVER
17229 M:      Antti Palosaari <crope@iki.fi>
17230 L:      linux-media@vger.kernel.org
17231 S:      Maintained
17232 W:      https://linuxtv.org
17233 W:      http://palosaari.fi/linux/
17234 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17235 T:      git git://linuxtv.org/anttip/media_tree.git
17236 F:      drivers/media/tuners/tda18218*
17237
17238 TDA18250 MEDIA DRIVER
17239 M:      Olli Salonen <olli.salonen@iki.fi>
17240 L:      linux-media@vger.kernel.org
17241 S:      Maintained
17242 W:      https://linuxtv.org
17243 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17244 T:      git git://linuxtv.org/media_tree.git
17245 F:      drivers/media/tuners/tda18250*
17246
17247 TDA18271 MEDIA DRIVER
17248 M:      Michael Krufky <mkrufky@linuxtv.org>
17249 L:      linux-media@vger.kernel.org
17250 S:      Maintained
17251 W:      https://linuxtv.org
17252 W:      http://github.com/mkrufky
17253 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17254 T:      git git://linuxtv.org/mkrufky/tuners.git
17255 F:      drivers/media/tuners/tda18271*
17256
17257 TDA1997x MEDIA DRIVER
17258 M:      Tim Harvey <tharvey@gateworks.com>
17259 L:      linux-media@vger.kernel.org
17260 S:      Maintained
17261 W:      https://linuxtv.org
17262 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17263 F:      drivers/media/i2c/tda1997x.*
17264
17265 TDA827x MEDIA DRIVER
17266 M:      Michael Krufky <mkrufky@linuxtv.org>
17267 L:      linux-media@vger.kernel.org
17268 S:      Maintained
17269 W:      https://linuxtv.org
17270 W:      http://github.com/mkrufky
17271 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17272 T:      git git://linuxtv.org/mkrufky/tuners.git
17273 F:      drivers/media/tuners/tda8290.*
17274
17275 TDA8290 MEDIA DRIVER
17276 M:      Michael Krufky <mkrufky@linuxtv.org>
17277 L:      linux-media@vger.kernel.org
17278 S:      Maintained
17279 W:      https://linuxtv.org
17280 W:      http://github.com/mkrufky
17281 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17282 T:      git git://linuxtv.org/mkrufky/tuners.git
17283 F:      drivers/media/tuners/tda8290.*
17284
17285 TDA9840 MEDIA DRIVER
17286 M:      Hans Verkuil <hverkuil@xs4all.nl>
17287 L:      linux-media@vger.kernel.org
17288 S:      Maintained
17289 W:      https://linuxtv.org
17290 T:      git git://linuxtv.org/media_tree.git
17291 F:      drivers/media/i2c/tda9840*
17292
17293 TEA5761 TUNER DRIVER
17294 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17295 L:      linux-media@vger.kernel.org
17296 S:      Odd fixes
17297 W:      https://linuxtv.org
17298 T:      git git://linuxtv.org/media_tree.git
17299 F:      drivers/media/tuners/tea5761.*
17300
17301 TEA5767 TUNER DRIVER
17302 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17303 L:      linux-media@vger.kernel.org
17304 S:      Maintained
17305 W:      https://linuxtv.org
17306 T:      git git://linuxtv.org/media_tree.git
17307 F:      drivers/media/tuners/tea5767.*
17308
17309 TEA6415C MEDIA DRIVER
17310 M:      Hans Verkuil <hverkuil@xs4all.nl>
17311 L:      linux-media@vger.kernel.org
17312 S:      Maintained
17313 W:      https://linuxtv.org
17314 T:      git git://linuxtv.org/media_tree.git
17315 F:      drivers/media/i2c/tea6415c*
17316
17317 TEA6420 MEDIA DRIVER
17318 M:      Hans Verkuil <hverkuil@xs4all.nl>
17319 L:      linux-media@vger.kernel.org
17320 S:      Maintained
17321 W:      https://linuxtv.org
17322 T:      git git://linuxtv.org/media_tree.git
17323 F:      drivers/media/i2c/tea6420*
17324
17325 TEAM DRIVER
17326 M:      Jiri Pirko <jiri@resnulli.us>
17327 L:      netdev@vger.kernel.org
17328 S:      Supported
17329 F:      drivers/net/team/
17330 F:      include/linux/if_team.h
17331 F:      include/uapi/linux/if_team.h
17332
17333 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
17334 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
17335 S:      Maintained
17336 F:      arch/x86/platform/ts5500/
17337
17338 TECHNOTREND USB IR RECEIVER
17339 M:      Sean Young <sean@mess.org>
17340 L:      linux-media@vger.kernel.org
17341 S:      Maintained
17342 F:      drivers/media/rc/ttusbir.c
17343
17344 TECHWELL TW9910 VIDEO DECODER
17345 L:      linux-media@vger.kernel.org
17346 S:      Orphan
17347 F:      drivers/media/i2c/tw9910.c
17348 F:      include/media/i2c/tw9910.h
17349
17350 TEE SUBSYSTEM
17351 M:      Jens Wiklander <jens.wiklander@linaro.org>
17352 L:      op-tee@lists.trustedfirmware.org
17353 S:      Maintained
17354 F:      Documentation/staging/tee.rst
17355 F:      drivers/tee/
17356 F:      include/linux/tee_drv.h
17357 F:      include/uapi/linux/tee.h
17358
17359 TEGRA ARCHITECTURE SUPPORT
17360 M:      Thierry Reding <thierry.reding@gmail.com>
17361 M:      Jonathan Hunter <jonathanh@nvidia.com>
17362 L:      linux-tegra@vger.kernel.org
17363 S:      Supported
17364 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
17365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
17366 N:      [^a-z]tegra
17367
17368 TEGRA CLOCK DRIVER
17369 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
17370 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
17371 S:      Supported
17372 F:      drivers/clk/tegra/
17373
17374 TEGRA DMA DRIVERS
17375 M:      Laxman Dewangan <ldewangan@nvidia.com>
17376 M:      Jon Hunter <jonathanh@nvidia.com>
17377 S:      Supported
17378 F:      drivers/dma/tegra*
17379
17380 TEGRA I2C DRIVER
17381 M:      Laxman Dewangan <ldewangan@nvidia.com>
17382 R:      Dmitry Osipenko <digetx@gmail.com>
17383 S:      Supported
17384 F:      drivers/i2c/busses/i2c-tegra.c
17385
17386 TEGRA IOMMU DRIVERS
17387 M:      Thierry Reding <thierry.reding@gmail.com>
17388 R:      Krishna Reddy <vdumpa@nvidia.com>
17389 L:      linux-tegra@vger.kernel.org
17390 S:      Supported
17391 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
17392 F:      drivers/iommu/tegra*
17393
17394 TEGRA KBC DRIVER
17395 M:      Laxman Dewangan <ldewangan@nvidia.com>
17396 S:      Supported
17397 F:      drivers/input/keyboard/tegra-kbc.c
17398
17399 TEGRA NAND DRIVER
17400 M:      Stefan Agner <stefan@agner.ch>
17401 M:      Lucas Stach <dev@lynxeye.de>
17402 S:      Maintained
17403 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
17404 F:      drivers/mtd/nand/raw/tegra_nand.c
17405
17406 TEGRA PWM DRIVER
17407 M:      Thierry Reding <thierry.reding@gmail.com>
17408 S:      Supported
17409 F:      drivers/pwm/pwm-tegra.c
17410
17411 TEGRA SERIAL DRIVER
17412 M:      Laxman Dewangan <ldewangan@nvidia.com>
17413 S:      Supported
17414 F:      drivers/tty/serial/serial-tegra.c
17415
17416 TEGRA SPI DRIVER
17417 M:      Laxman Dewangan <ldewangan@nvidia.com>
17418 S:      Supported
17419 F:      drivers/spi/spi-tegra*
17420
17421 TEGRA VIDEO DRIVER
17422 M:      Thierry Reding <thierry.reding@gmail.com>
17423 M:      Jonathan Hunter <jonathanh@nvidia.com>
17424 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
17425 L:      linux-media@vger.kernel.org
17426 L:      linux-tegra@vger.kernel.org
17427 S:      Maintained
17428 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
17429 F:      drivers/staging/media/tegra-video/
17430
17431 TEGRA XUSB PADCTL DRIVER
17432 M:      JC Kuo <jckuo@nvidia.com>
17433 S:      Supported
17434 F:      drivers/phy/tegra/xusb*
17435
17436 TEHUTI ETHERNET DRIVER
17437 M:      Andy Gospodarek <andy@greyhouse.net>
17438 L:      netdev@vger.kernel.org
17439 S:      Supported
17440 F:      drivers/net/ethernet/tehuti/*
17441
17442 TELECOM CLOCK DRIVER FOR MCPL0010
17443 M:      Mark Gross <mark.gross@intel.com>
17444 S:      Supported
17445 F:      drivers/char/tlclk.c
17446
17447 TEMPO SEMICONDUCTOR DRIVERS
17448 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
17449 S:      Maintained
17450 F:      Documentation/devicetree/bindings/sound/tscs*.txt
17451 F:      sound/soc/codecs/tscs*.c
17452 F:      sound/soc/codecs/tscs*.h
17453
17454 TENSILICA XTENSA PORT (xtensa)
17455 M:      Chris Zankel <chris@zankel.net>
17456 M:      Max Filippov <jcmvbkbc@gmail.com>
17457 L:      linux-xtensa@linux-xtensa.org
17458 S:      Maintained
17459 T:      git git://github.com/czankel/xtensa-linux.git
17460 F:      arch/xtensa/
17461 F:      drivers/irqchip/irq-xtensa-*
17462
17463 TEXAS INSTRUMENTS ASoC DRIVERS
17464 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
17465 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17466 S:      Maintained
17467 F:      sound/soc/ti/
17468
17469 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
17470 M:      Ricardo Ribalda <ribalda@kernel.org>
17471 L:      linux-iio@vger.kernel.org
17472 S:      Supported
17473 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
17474 F:      drivers/iio/dac/ti-dac7612.c
17475
17476 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
17477 M:      Nishanth Menon <nm@ti.com>
17478 M:      Tero Kristo <t-kristo@ti.com>
17479 M:      Santosh Shilimkar <ssantosh@kernel.org>
17480 L:      linux-arm-kernel@lists.infradead.org
17481 S:      Maintained
17482 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
17483 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
17484 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
17485 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
17486 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
17487 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
17488 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
17489 F:      drivers/clk/keystone/sci-clk.c
17490 F:      drivers/firmware/ti_sci*
17491 F:      drivers/irqchip/irq-ti-sci-inta.c
17492 F:      drivers/irqchip/irq-ti-sci-intr.c
17493 F:      drivers/reset/reset-ti-sci.c
17494 F:      drivers/soc/ti/ti_sci_inta_msi.c
17495 F:      drivers/soc/ti/ti_sci_pm_domains.c
17496 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
17497 F:      include/linux/soc/ti/ti_sci_inta_msi.h
17498 F:      include/linux/soc/ti/ti_sci_protocol.h
17499
17500 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
17501 M:      Hans Verkuil <hverkuil@xs4all.nl>
17502 L:      linux-media@vger.kernel.org
17503 S:      Maintained
17504 W:      https://linuxtv.org
17505 T:      git git://linuxtv.org/media_tree.git
17506 F:      drivers/media/radio/radio-raremono.c
17507
17508 THERMAL
17509 M:      Zhang Rui <rui.zhang@intel.com>
17510 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
17511 R:      Amit Kucheria <amitk@kernel.org>
17512 L:      linux-pm@vger.kernel.org
17513 S:      Supported
17514 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
17516 F:      Documentation/devicetree/bindings/thermal/
17517 F:      drivers/thermal/
17518 F:      include/linux/cpu_cooling.h
17519 F:      include/linux/thermal.h
17520 F:      include/uapi/linux/thermal.h
17521
17522 THERMAL DRIVER FOR AMLOGIC SOCS
17523 M:      Guillaume La Roque <glaroque@baylibre.com>
17524 L:      linux-pm@vger.kernel.org
17525 L:      linux-amlogic@lists.infradead.org
17526 S:      Supported
17527 W:      http://linux-meson.com/
17528 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
17529 F:      drivers/thermal/amlogic_thermal.c
17530
17531 THERMAL/CPU_COOLING
17532 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
17533 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
17534 M:      Viresh Kumar <viresh.kumar@linaro.org>
17535 M:      Javi Merino <javi.merino@kernel.org>
17536 L:      linux-pm@vger.kernel.org
17537 S:      Supported
17538 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
17539 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
17540 F:      drivers/thermal/cpufreq_cooling.c
17541 F:      drivers/thermal/cpuidle_cooling.c
17542 F:      include/linux/cpu_cooling.h
17543
17544 THERMAL/POWER_ALLOCATOR
17545 M:      Lukasz Luba <lukasz.luba@arm.com>
17546 L:      linux-pm@vger.kernel.org
17547 S:      Maintained
17548 F:      Documentation/driver-api/thermal/power_allocator.rst
17549 F:      drivers/thermal/gov_power_allocator.c
17550 F:      include/trace/events/thermal_power_allocator.h
17551
17552 THINKPAD ACPI EXTRAS DRIVER
17553 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
17554 L:      ibm-acpi-devel@lists.sourceforge.net
17555 L:      platform-driver-x86@vger.kernel.org
17556 S:      Maintained
17557 W:      http://ibm-acpi.sourceforge.net
17558 W:      http://thinkwiki.org/wiki/Ibm-acpi
17559 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
17560 F:      drivers/platform/x86/thinkpad_acpi.c
17561
17562 THUNDERBOLT DMA TRAFFIC TEST DRIVER
17563 M:      Isaac Hazan <isaac.hazan@intel.com>
17564 L:      linux-usb@vger.kernel.org
17565 S:      Maintained
17566 F:      drivers/thunderbolt/dma_test.c
17567
17568 THUNDERBOLT DRIVER
17569 M:      Andreas Noever <andreas.noever@gmail.com>
17570 M:      Michael Jamet <michael.jamet@intel.com>
17571 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
17572 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
17573 L:      linux-usb@vger.kernel.org
17574 S:      Maintained
17575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
17576 F:      Documentation/admin-guide/thunderbolt.rst
17577 F:      drivers/thunderbolt/
17578 F:      include/linux/thunderbolt.h
17579
17580 THUNDERBOLT NETWORK DRIVER
17581 M:      Michael Jamet <michael.jamet@intel.com>
17582 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
17583 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
17584 L:      netdev@vger.kernel.org
17585 S:      Maintained
17586 F:      drivers/net/thunderbolt.c
17587
17588 THUNDERX GPIO DRIVER
17589 M:      Robert Richter <rric@kernel.org>
17590 S:      Odd Fixes
17591 F:      drivers/gpio/gpio-thunderx.c
17592
17593 TI AM437X VPFE DRIVER
17594 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17595 L:      linux-media@vger.kernel.org
17596 S:      Maintained
17597 W:      https://linuxtv.org
17598 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17599 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17600 F:      drivers/media/platform/am437x/
17601
17602 TI BANDGAP AND THERMAL DRIVER
17603 M:      Eduardo Valentin <edubezval@gmail.com>
17604 M:      Keerthy <j-keerthy@ti.com>
17605 L:      linux-pm@vger.kernel.org
17606 L:      linux-omap@vger.kernel.org
17607 S:      Maintained
17608 F:      drivers/thermal/ti-soc-thermal/
17609
17610 TI BQ27XXX POWER SUPPLY DRIVER
17611 R:      Dan Murphy <dmurphy@ti.com>
17612 F:      drivers/power/supply/bq27xxx_battery.c
17613 F:      drivers/power/supply/bq27xxx_battery_i2c.c
17614 F:      include/linux/power/bq27xxx_battery.h
17615
17616 TI CDCE706 CLOCK DRIVER
17617 M:      Max Filippov <jcmvbkbc@gmail.com>
17618 S:      Maintained
17619 F:      drivers/clk/clk-cdce706.c
17620
17621 TI CLOCK DRIVER
17622 M:      Tero Kristo <t-kristo@ti.com>
17623 L:      linux-omap@vger.kernel.org
17624 S:      Maintained
17625 F:      drivers/clk/ti/
17626 F:      include/linux/clk/ti.h
17627
17628 TI DAVINCI MACHINE SUPPORT
17629 M:      Sekhar Nori <nsekhar@ti.com>
17630 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
17631 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17632 S:      Supported
17633 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
17634 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
17635 F:      arch/arm/boot/dts/da850*
17636 F:      arch/arm/mach-davinci/
17637 F:      drivers/i2c/busses/i2c-davinci.c
17638
17639 TI DAVINCI SERIES CLOCK DRIVER
17640 M:      David Lechner <david@lechnology.com>
17641 R:      Sekhar Nori <nsekhar@ti.com>
17642 S:      Maintained
17643 F:      Documentation/devicetree/bindings/clock/ti/davinci/
17644 F:      drivers/clk/davinci/
17645
17646 TI DAVINCI SERIES GPIO DRIVER
17647 M:      Keerthy <j-keerthy@ti.com>
17648 L:      linux-gpio@vger.kernel.org
17649 S:      Maintained
17650 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
17651 F:      drivers/gpio/gpio-davinci.c
17652
17653 TI DAVINCI SERIES MEDIA DRIVER
17654 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17655 L:      linux-media@vger.kernel.org
17656 S:      Maintained
17657 W:      https://linuxtv.org
17658 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17659 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17660 F:      drivers/media/platform/davinci/
17661 F:      include/media/davinci/
17662
17663 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
17664 R:      David Lechner <david@lechnology.com>
17665 L:      linux-iio@vger.kernel.org
17666 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
17667 F:      drivers/counter/ti-eqep.c
17668
17669 TI ETHERNET SWITCH DRIVER (CPSW)
17670 R:      Grygorii Strashko <grygorii.strashko@ti.com>
17671 L:      linux-omap@vger.kernel.org
17672 L:      netdev@vger.kernel.org
17673 S:      Maintained
17674 F:      drivers/net/ethernet/ti/cpsw*
17675 F:      drivers/net/ethernet/ti/davinci*
17676
17677 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
17678 M:      Alex Dubov <oakad@yahoo.com>
17679 S:      Maintained
17680 W:      http://tifmxx.berlios.de/
17681 F:      drivers/memstick/host/tifm_ms.c
17682 F:      drivers/misc/tifm*
17683 F:      drivers/mmc/host/tifm_sd.c
17684 F:      include/linux/tifm.h
17685
17686 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
17687 M:      Santosh Shilimkar <ssantosh@kernel.org>
17688 L:      linux-kernel@vger.kernel.org
17689 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17690 S:      Maintained
17691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
17692 F:      drivers/soc/ti/*
17693
17694 TI LM49xxx FAMILY ASoC CODEC DRIVERS
17695 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
17696 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
17697 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17698 S:      Maintained
17699 F:      sound/soc/codecs/isabelle*
17700 F:      sound/soc/codecs/lm49453*
17701
17702 TI LP855x BACKLIGHT DRIVER
17703 M:      Milo Kim <milo.kim@ti.com>
17704 S:      Maintained
17705 F:      Documentation/driver-api/backlight/lp855x-driver.rst
17706 F:      drivers/video/backlight/lp855x_bl.c
17707 F:      include/linux/platform_data/lp855x.h
17708
17709 TI LP8727 CHARGER DRIVER
17710 M:      Milo Kim <milo.kim@ti.com>
17711 S:      Maintained
17712 F:      drivers/power/supply/lp8727_charger.c
17713 F:      include/linux/platform_data/lp8727.h
17714
17715 TI LP8788 MFD DRIVER
17716 M:      Milo Kim <milo.kim@ti.com>
17717 S:      Maintained
17718 F:      drivers/iio/adc/lp8788_adc.c
17719 F:      drivers/leds/leds-lp8788.c
17720 F:      drivers/mfd/lp8788*.c
17721 F:      drivers/power/supply/lp8788-charger.c
17722 F:      drivers/regulator/lp8788-*.c
17723 F:      include/linux/mfd/lp8788*.h
17724
17725 TI NETCP ETHERNET DRIVER
17726 M:      Wingman Kwok <w-kwok2@ti.com>
17727 M:      Murali Karicheri <m-karicheri2@ti.com>
17728 L:      netdev@vger.kernel.org
17729 S:      Maintained
17730 F:      drivers/net/ethernet/ti/netcp*
17731
17732 TI PCM3060 ASoC CODEC DRIVER
17733 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
17734 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17735 S:      Maintained
17736 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
17737 F:      sound/soc/codecs/pcm3060*
17738
17739 TI TAS571X FAMILY ASoC CODEC DRIVER
17740 M:      Kevin Cernekee <cernekee@chromium.org>
17741 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17742 S:      Odd Fixes
17743 F:      sound/soc/codecs/tas571x*
17744
17745 TI TCAN4X5X DEVICE DRIVER
17746 M:      Dan Murphy <dmurphy@ti.com>
17747 L:      linux-can@vger.kernel.org
17748 S:      Maintained
17749 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
17750 F:      drivers/net/can/m_can/tcan4x5x.c
17751
17752 TI TRF7970A NFC DRIVER
17753 M:      Mark Greer <mgreer@animalcreek.com>
17754 L:      linux-wireless@vger.kernel.org
17755 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
17756 S:      Supported
17757 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
17758 F:      drivers/nfc/trf7970a.c
17759
17760 TI TWL4030 SERIES SOC CODEC DRIVER
17761 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
17762 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17763 S:      Maintained
17764 F:      sound/soc/codecs/twl4030*
17765
17766 TI VPE/CAL DRIVERS
17767 M:      Benoit Parrot <bparrot@ti.com>
17768 L:      linux-media@vger.kernel.org
17769 S:      Maintained
17770 W:      http://linuxtv.org/
17771 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17772 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
17773 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
17774 F:      drivers/media/platform/ti-vpe/
17775
17776 TI WILINK WIRELESS DRIVERS
17777 L:      linux-wireless@vger.kernel.org
17778 S:      Orphan
17779 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
17780 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
17781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
17782 F:      drivers/net/wireless/ti/
17783 F:      include/linux/wl12xx.h
17784
17785 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
17786 M:      John Stultz <john.stultz@linaro.org>
17787 M:      Thomas Gleixner <tglx@linutronix.de>
17788 R:      Stephen Boyd <sboyd@kernel.org>
17789 L:      linux-kernel@vger.kernel.org
17790 S:      Supported
17791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
17792 F:      include/linux/clocksource.h
17793 F:      include/linux/time.h
17794 F:      include/linux/timex.h
17795 F:      include/uapi/linux/time.h
17796 F:      include/uapi/linux/timex.h
17797 F:      kernel/time/alarmtimer.c
17798 F:      kernel/time/clocksource.c
17799 F:      kernel/time/ntp.c
17800 F:      kernel/time/time*.c
17801 F:      tools/testing/selftests/timers/
17802
17803 TIPC NETWORK LAYER
17804 M:      Jon Maloy <jmaloy@redhat.com>
17805 M:      Ying Xue <ying.xue@windriver.com>
17806 L:      netdev@vger.kernel.org (core kernel code)
17807 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
17808 S:      Maintained
17809 W:      http://tipc.sourceforge.net/
17810 F:      include/uapi/linux/tipc*.h
17811 F:      net/tipc/
17812
17813 TLAN NETWORK DRIVER
17814 M:      Samuel Chessman <chessman@tux.org>
17815 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
17816 S:      Maintained
17817 W:      http://sourceforge.net/projects/tlan/
17818 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
17819 F:      drivers/net/ethernet/ti/tlan.*
17820
17821 TM6000 VIDEO4LINUX DRIVER
17822 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17823 L:      linux-media@vger.kernel.org
17824 S:      Odd fixes
17825 W:      https://linuxtv.org
17826 T:      git git://linuxtv.org/media_tree.git
17827 F:      Documentation/admin-guide/media/tm6000*
17828 F:      drivers/media/usb/tm6000/
17829
17830 TMIO/SDHI MMC DRIVER
17831 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17832 L:      linux-mmc@vger.kernel.org
17833 S:      Supported
17834 F:      drivers/mmc/host/renesas_sdhi*
17835 F:      drivers/mmc/host/tmio_mmc*
17836 F:      include/linux/mfd/tmio.h
17837
17838 TMP401 HARDWARE MONITOR DRIVER
17839 M:      Guenter Roeck <linux@roeck-us.net>
17840 L:      linux-hwmon@vger.kernel.org
17841 S:      Maintained
17842 F:      Documentation/hwmon/tmp401.rst
17843 F:      drivers/hwmon/tmp401.c
17844
17845 TMP513 HARDWARE MONITOR DRIVER
17846 M:      Eric Tremblay <etremblay@distech-controls.com>
17847 L:      linux-hwmon@vger.kernel.org
17848 S:      Maintained
17849 F:      Documentation/hwmon/tmp513.rst
17850 F:      drivers/hwmon/tmp513.c
17851
17852 TMPFS (SHMEM FILESYSTEM)
17853 M:      Hugh Dickins <hughd@google.com>
17854 L:      linux-mm@kvack.org
17855 S:      Maintained
17856 F:      include/linux/shmem_fs.h
17857 F:      mm/shmem.c
17858
17859 TOMOYO SECURITY MODULE
17860 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
17861 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
17862 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
17863 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
17864 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
17865 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
17866 S:      Maintained
17867 W:      https://tomoyo.osdn.jp/
17868 F:      security/tomoyo/
17869
17870 TOPSTAR LAPTOP EXTRAS DRIVER
17871 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17872 L:      platform-driver-x86@vger.kernel.org
17873 S:      Maintained
17874 F:      drivers/platform/x86/topstar-laptop.c
17875
17876 TORTURE-TEST MODULES
17877 M:      Davidlohr Bueso <dave@stgolabs.net>
17878 M:      "Paul E. McKenney" <paulmck@kernel.org>
17879 M:      Josh Triplett <josh@joshtriplett.org>
17880 L:      linux-kernel@vger.kernel.org
17881 S:      Supported
17882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17883 F:      Documentation/RCU/torture.rst
17884 F:      kernel/locking/locktorture.c
17885 F:      kernel/rcu/rcuscale.c
17886 F:      kernel/rcu/rcutorture.c
17887 F:      kernel/rcu/refscale.c
17888 F:      kernel/torture.c
17889
17890 TOSHIBA ACPI EXTRAS DRIVER
17891 M:      Azael Avalos <coproscefalo@gmail.com>
17892 L:      platform-driver-x86@vger.kernel.org
17893 S:      Maintained
17894 F:      drivers/platform/x86/toshiba_acpi.c
17895
17896 TOSHIBA BLUETOOTH DRIVER
17897 M:      Azael Avalos <coproscefalo@gmail.com>
17898 L:      platform-driver-x86@vger.kernel.org
17899 S:      Maintained
17900 F:      drivers/platform/x86/toshiba_bluetooth.c
17901
17902 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17903 M:      Azael Avalos <coproscefalo@gmail.com>
17904 L:      platform-driver-x86@vger.kernel.org
17905 S:      Maintained
17906 F:      drivers/platform/x86/toshiba_haps.c
17907
17908 TOSHIBA SMM DRIVER
17909 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
17910 S:      Maintained
17911 W:      http://www.buzzard.org.uk/toshiba/
17912 F:      drivers/char/toshiba.c
17913 F:      include/linux/toshiba.h
17914 F:      include/uapi/linux/toshiba.h
17915
17916 TOSHIBA TC358743 DRIVER
17917 M:      Mats Randgaard <matrandg@cisco.com>
17918 L:      linux-media@vger.kernel.org
17919 S:      Maintained
17920 F:      drivers/media/i2c/tc358743*
17921 F:      include/media/i2c/tc358743.h
17922
17923 TOSHIBA WMI HOTKEYS DRIVER
17924 M:      Azael Avalos <coproscefalo@gmail.com>
17925 L:      platform-driver-x86@vger.kernel.org
17926 S:      Maintained
17927 F:      drivers/platform/x86/toshiba-wmi.c
17928
17929 TPM DEVICE DRIVER
17930 M:      Peter Huewe <peterhuewe@gmx.de>
17931 M:      Jarkko Sakkinen <jarkko@kernel.org>
17932 R:      Jason Gunthorpe <jgg@ziepe.ca>
17933 L:      linux-integrity@vger.kernel.org
17934 S:      Maintained
17935 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17936 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
17937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
17938 F:      drivers/char/tpm/
17939
17940 TRACING
17941 M:      Steven Rostedt <rostedt@goodmis.org>
17942 M:      Ingo Molnar <mingo@redhat.com>
17943 S:      Maintained
17944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17945 F:      Documentation/trace/ftrace.rst
17946 F:      arch/*/*/*/ftrace.h
17947 F:      arch/*/kernel/ftrace.c
17948 F:      include/*/ftrace.h
17949 F:      include/linux/trace*.h
17950 F:      include/trace/
17951 F:      kernel/trace/
17952 F:      tools/testing/selftests/ftrace/
17953
17954 TRACING MMIO ACCESSES (MMIOTRACE)
17955 M:      Steven Rostedt <rostedt@goodmis.org>
17956 M:      Ingo Molnar <mingo@kernel.org>
17957 R:      Karol Herbst <karolherbst@gmail.com>
17958 R:      Pekka Paalanen <ppaalanen@gmail.com>
17959 L:      linux-kernel@vger.kernel.org
17960 L:      nouveau@lists.freedesktop.org
17961 S:      Maintained
17962 F:      arch/x86/mm/kmmio.c
17963 F:      arch/x86/mm/mmio-mod.c
17964 F:      arch/x86/mm/testmmiotrace.c
17965 F:      include/linux/mmiotrace.h
17966 F:      kernel/trace/trace_mmiotrace.c
17967
17968 TRIVIAL PATCHES
17969 M:      Jiri Kosina <trivial@kernel.org>
17970 S:      Maintained
17971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17972 K:      ^Subject:.*(?i)trivial
17973
17974 TTY LAYER
17975 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17976 M:      Jiri Slaby <jirislaby@kernel.org>
17977 S:      Supported
17978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17979 F:      Documentation/driver-api/serial/
17980 F:      drivers/tty/
17981 F:      drivers/tty/serial/serial_core.c
17982 F:      include/linux/serial.h
17983 F:      include/linux/serial_core.h
17984 F:      include/linux/tty.h
17985 F:      include/uapi/linux/serial.h
17986 F:      include/uapi/linux/serial_core.h
17987 F:      include/uapi/linux/tty.h
17988
17989 TUA9001 MEDIA DRIVER
17990 M:      Antti Palosaari <crope@iki.fi>
17991 L:      linux-media@vger.kernel.org
17992 S:      Maintained
17993 W:      https://linuxtv.org
17994 W:      http://palosaari.fi/linux/
17995 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17996 T:      git git://linuxtv.org/anttip/media_tree.git
17997 F:      drivers/media/tuners/tua9001*
17998
17999 TULIP NETWORK DRIVERS
18000 L:      netdev@vger.kernel.org
18001 L:      linux-parisc@vger.kernel.org
18002 S:      Orphan
18003 F:      drivers/net/ethernet/dec/tulip/
18004
18005 TUN/TAP driver
18006 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
18007 S:      Maintained
18008 W:      http://vtun.sourceforge.net/tun
18009 F:      Documentation/networking/tuntap.rst
18010 F:      arch/um/os-Linux/drivers/
18011
18012 TURBOCHANNEL SUBSYSTEM
18013 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
18014 M:      Ralf Baechle <ralf@linux-mips.org>
18015 L:      linux-mips@vger.kernel.org
18016 S:      Maintained
18017 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
18018 F:      drivers/tc/
18019 F:      include/linux/tc.h
18020
18021 TURBOSTAT UTILITY
18022 M:      "Len Brown" <lenb@kernel.org>
18023 L:      linux-pm@vger.kernel.org
18024 S:      Supported
18025 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18026 B:      https://bugzilla.kernel.org
18027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
18028 F:      tools/power/x86/turbostat/
18029
18030 TW5864 VIDEO4LINUX DRIVER
18031 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18032 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18033 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
18034 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18035 L:      linux-media@vger.kernel.org
18036 S:      Supported
18037 F:      drivers/media/pci/tw5864/
18038
18039 TW68 VIDEO4LINUX DRIVER
18040 M:      Hans Verkuil <hverkuil@xs4all.nl>
18041 L:      linux-media@vger.kernel.org
18042 S:      Odd Fixes
18043 W:      https://linuxtv.org
18044 T:      git git://linuxtv.org/media_tree.git
18045 F:      drivers/media/pci/tw68/
18046
18047 TW686X VIDEO4LINUX DRIVER
18048 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18049 L:      linux-media@vger.kernel.org
18050 S:      Maintained
18051 W:      http://linuxtv.org
18052 T:      git git://linuxtv.org/media_tree.git
18053 F:      drivers/media/pci/tw686x/
18054
18055 UACCE ACCELERATOR FRAMEWORK
18056 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
18057 M:      Zhou Wang <wangzhou1@hisilicon.com>
18058 L:      linux-accelerators@lists.ozlabs.org
18059 L:      linux-kernel@vger.kernel.org
18060 S:      Maintained
18061 F:      Documentation/ABI/testing/sysfs-driver-uacce
18062 F:      Documentation/misc-devices/uacce.rst
18063 F:      drivers/misc/uacce/
18064 F:      include/linux/uacce.h
18065 F:      include/uapi/misc/uacce/
18066
18067 UBI FILE SYSTEM (UBIFS)
18068 M:      Richard Weinberger <richard@nod.at>
18069 L:      linux-mtd@lists.infradead.org
18070 S:      Supported
18071 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
18072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18074 F:      Documentation/filesystems/ubifs-authentication.rst
18075 F:      Documentation/filesystems/ubifs.rst
18076 F:      fs/ubifs/
18077
18078 UCLINUX (M68KNOMMU AND COLDFIRE)
18079 M:      Greg Ungerer <gerg@linux-m68k.org>
18080 L:      linux-m68k@lists.linux-m68k.org
18081 L:      uclinux-dev@uclinux.org  (subscribers-only)
18082 S:      Maintained
18083 W:      http://www.linux-m68k.org/
18084 W:      http://www.uclinux.org/
18085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
18086 F:      arch/m68k/*/*_no.*
18087 F:      arch/m68k/68*/
18088 F:      arch/m68k/coldfire/
18089 F:      arch/m68k/include/asm/*_no.*
18090
18091 UDF FILESYSTEM
18092 M:      Jan Kara <jack@suse.com>
18093 S:      Maintained
18094 F:      Documentation/filesystems/udf.rst
18095 F:      fs/udf/
18096
18097 UDRAW TABLET
18098 M:      Bastien Nocera <hadess@hadess.net>
18099 L:      linux-input@vger.kernel.org
18100 S:      Maintained
18101 F:      drivers/hid/hid-udraw-ps3.c
18102
18103 UFS FILESYSTEM
18104 M:      Evgeniy Dushistov <dushistov@mail.ru>
18105 S:      Maintained
18106 F:      Documentation/admin-guide/ufs.rst
18107 F:      fs/ufs/
18108
18109 UHID USERSPACE HID IO DRIVER
18110 M:      David Rheinsberg <david.rheinsberg@gmail.com>
18111 L:      linux-input@vger.kernel.org
18112 S:      Maintained
18113 F:      drivers/hid/uhid.c
18114 F:      include/uapi/linux/uhid.h
18115
18116 ULPI BUS
18117 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18118 L:      linux-usb@vger.kernel.org
18119 S:      Maintained
18120 F:      drivers/usb/common/ulpi.c
18121 F:      include/linux/ulpi/
18122
18123 UNICODE SUBSYSTEM
18124 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
18125 L:      linux-fsdevel@vger.kernel.org
18126 S:      Supported
18127 F:      fs/unicode/
18128
18129 UNIFDEF
18130 M:      Tony Finch <dot@dotat.at>
18131 S:      Maintained
18132 W:      http://dotat.at/prog/unifdef
18133 F:      scripts/unifdef.c
18134
18135 UNIFORM CDROM DRIVER
18136 M:      Jens Axboe <axboe@kernel.dk>
18137 S:      Maintained
18138 W:      http://www.kernel.dk
18139 F:      Documentation/cdrom/
18140 F:      drivers/cdrom/cdrom.c
18141 F:      include/linux/cdrom.h
18142 F:      include/uapi/linux/cdrom.h
18143
18144 UNISYS S-PAR DRIVERS
18145 M:      David Kershner <david.kershner@unisys.com>
18146 L:      sparmaintainer@unisys.com (Unisys internal)
18147 S:      Supported
18148 F:      drivers/staging/unisys/
18149 F:      drivers/visorbus/
18150 F:      include/linux/visorbus.h
18151
18152 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
18153 R:      Alim Akhtar <alim.akhtar@samsung.com>
18154 R:      Avri Altman <avri.altman@wdc.com>
18155 L:      linux-scsi@vger.kernel.org
18156 S:      Supported
18157 F:      Documentation/scsi/ufs.rst
18158 F:      drivers/scsi/ufs/
18159
18160 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
18161 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
18162 L:      linux-scsi@vger.kernel.org
18163 S:      Supported
18164 F:      drivers/scsi/ufs/*dwc*
18165
18166 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
18167 M:      Stanley Chu <stanley.chu@mediatek.com>
18168 L:      linux-scsi@vger.kernel.org
18169 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
18170 S:      Maintained
18171 F:      drivers/scsi/ufs/ufs-mediatek*
18172
18173 UNSORTED BLOCK IMAGES (UBI)
18174 M:      Richard Weinberger <richard@nod.at>
18175 L:      linux-mtd@lists.infradead.org
18176 S:      Supported
18177 W:      http://www.linux-mtd.infradead.org/
18178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18180 F:      drivers/mtd/ubi/
18181 F:      include/linux/mtd/ubi.h
18182 F:      include/uapi/mtd/ubi-user.h
18183
18184 USB "USBNET" DRIVER FRAMEWORK
18185 M:      Oliver Neukum <oneukum@suse.com>
18186 L:      netdev@vger.kernel.org
18187 S:      Maintained
18188 W:      http://www.linux-usb.org/usbnet
18189 F:      drivers/net/usb/usbnet.c
18190 F:      include/linux/usb/usbnet.h
18191
18192 USB ACM DRIVER
18193 M:      Oliver Neukum <oneukum@suse.com>
18194 L:      linux-usb@vger.kernel.org
18195 S:      Maintained
18196 F:      Documentation/usb/acm.rst
18197 F:      drivers/usb/class/cdc-acm.*
18198
18199 USB APPLE MFI FASTCHARGE DRIVER
18200 M:      Bastien Nocera <hadess@hadess.net>
18201 L:      linux-usb@vger.kernel.org
18202 S:      Maintained
18203 F:      drivers/usb/misc/apple-mfi-fastcharge.c
18204
18205 USB AR5523 WIRELESS DRIVER
18206 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
18207 L:      linux-wireless@vger.kernel.org
18208 S:      Maintained
18209 F:      drivers/net/wireless/ath/ar5523/
18210
18211 USB ATTACHED SCSI
18212 M:      Oliver Neukum <oneukum@suse.com>
18213 L:      linux-usb@vger.kernel.org
18214 L:      linux-scsi@vger.kernel.org
18215 S:      Maintained
18216 F:      drivers/usb/storage/uas.c
18217
18218 USB CDC ETHERNET DRIVER
18219 M:      Oliver Neukum <oliver@neukum.org>
18220 L:      linux-usb@vger.kernel.org
18221 S:      Maintained
18222 F:      drivers/net/usb/cdc_*.c
18223 F:      include/uapi/linux/usb/cdc.h
18224
18225 USB CHAOSKEY DRIVER
18226 M:      Keith Packard <keithp@keithp.com>
18227 L:      linux-usb@vger.kernel.org
18228 S:      Maintained
18229 F:      drivers/usb/misc/chaoskey.c
18230
18231 USB CYPRESS C67X00 DRIVER
18232 M:      Peter Korsgaard <jacmet@sunsite.dk>
18233 L:      linux-usb@vger.kernel.org
18234 S:      Maintained
18235 F:      drivers/usb/c67x00/
18236
18237 USB DAVICOM DM9601 DRIVER
18238 M:      Peter Korsgaard <jacmet@sunsite.dk>
18239 L:      netdev@vger.kernel.org
18240 S:      Maintained
18241 W:      http://www.linux-usb.org/usbnet
18242 F:      drivers/net/usb/dm9601.c
18243
18244 USB EHCI DRIVER
18245 M:      Alan Stern <stern@rowland.harvard.edu>
18246 L:      linux-usb@vger.kernel.org
18247 S:      Maintained
18248 F:      Documentation/usb/ehci.rst
18249 F:      drivers/usb/host/ehci*
18250
18251 USB GADGET/PERIPHERAL SUBSYSTEM
18252 M:      Felipe Balbi <balbi@kernel.org>
18253 L:      linux-usb@vger.kernel.org
18254 S:      Maintained
18255 W:      http://www.linux-usb.org/gadget
18256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18257 F:      drivers/usb/gadget/
18258 F:      include/linux/usb/gadget*
18259
18260 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
18261 M:      Jiri Kosina <jikos@kernel.org>
18262 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
18263 L:      linux-usb@vger.kernel.org
18264 S:      Maintained
18265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
18266 F:      Documentation/hid/hiddev.rst
18267 F:      drivers/hid/usbhid/
18268
18269 USB INTEL XHCI ROLE MUX DRIVER
18270 M:      Hans de Goede <hdegoede@redhat.com>
18271 L:      linux-usb@vger.kernel.org
18272 S:      Maintained
18273 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
18274
18275 USB IP DRIVER FOR HISILICON KIRIN
18276 M:      Yu Chen <chenyu56@huawei.com>
18277 M:      Binghui Wang <wangbinghui@hisilicon.com>
18278 L:      linux-usb@vger.kernel.org
18279 S:      Maintained
18280 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
18281 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
18282
18283 USB ISP116X DRIVER
18284 M:      Olav Kongas <ok@artecdesign.ee>
18285 L:      linux-usb@vger.kernel.org
18286 S:      Maintained
18287 F:      drivers/usb/host/isp116x*
18288 F:      include/linux/usb/isp116x.h
18289
18290 USB LAN78XX ETHERNET DRIVER
18291 M:      Woojung Huh <woojung.huh@microchip.com>
18292 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
18293 L:      netdev@vger.kernel.org
18294 S:      Maintained
18295 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
18296 F:      drivers/net/usb/lan78xx.*
18297 F:      include/dt-bindings/net/microchip-lan78xx.h
18298
18299 USB MASS STORAGE DRIVER
18300 M:      Alan Stern <stern@rowland.harvard.edu>
18301 L:      linux-usb@vger.kernel.org
18302 L:      usb-storage@lists.one-eyed-alien.net
18303 S:      Maintained
18304 F:      drivers/usb/storage/
18305
18306 USB MIDI DRIVER
18307 M:      Clemens Ladisch <clemens@ladisch.de>
18308 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18309 S:      Maintained
18310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18311 F:      sound/usb/midi.*
18312
18313 USB NETWORKING DRIVERS
18314 L:      linux-usb@vger.kernel.org
18315 S:      Odd Fixes
18316 F:      drivers/net/usb/
18317
18318 USB OHCI DRIVER
18319 M:      Alan Stern <stern@rowland.harvard.edu>
18320 L:      linux-usb@vger.kernel.org
18321 S:      Maintained
18322 F:      Documentation/usb/ohci.rst
18323 F:      drivers/usb/host/ohci*
18324
18325 USB OTG FSM (Finite State Machine)
18326 M:      Peter Chen <Peter.Chen@nxp.com>
18327 L:      linux-usb@vger.kernel.org
18328 S:      Maintained
18329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
18330 F:      drivers/usb/common/usb-otg-fsm.c
18331
18332 USB OVER IP DRIVER
18333 M:      Valentina Manea <valentina.manea.m@gmail.com>
18334 M:      Shuah Khan <shuah@kernel.org>
18335 M:      Shuah Khan <skhan@linuxfoundation.org>
18336 L:      linux-usb@vger.kernel.org
18337 S:      Maintained
18338 F:      Documentation/usb/usbip_protocol.rst
18339 F:      drivers/usb/usbip/
18340 F:      tools/testing/selftests/drivers/usb/usbip/
18341 F:      tools/usb/usbip/
18342
18343 USB PEGASUS DRIVER
18344 M:      Petko Manolov <petkan@nucleusys.com>
18345 L:      linux-usb@vger.kernel.org
18346 L:      netdev@vger.kernel.org
18347 S:      Maintained
18348 W:      https://github.com/petkan/pegasus
18349 T:      git git://github.com/petkan/pegasus.git
18350 F:      drivers/net/usb/pegasus.*
18351
18352 USB PHY LAYER
18353 M:      Felipe Balbi <balbi@kernel.org>
18354 L:      linux-usb@vger.kernel.org
18355 S:      Maintained
18356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18357 F:      drivers/usb/phy/
18358
18359 USB PRINTER DRIVER (usblp)
18360 M:      Pete Zaitcev <zaitcev@redhat.com>
18361 L:      linux-usb@vger.kernel.org
18362 S:      Supported
18363 F:      drivers/usb/class/usblp.c
18364
18365 USB RAW GADGET DRIVER
18366 R:      Andrey Konovalov <andreyknvl@gmail.com>
18367 L:      linux-usb@vger.kernel.org
18368 S:      Maintained
18369 F:      Documentation/usb/raw-gadget.rst
18370 F:      drivers/usb/gadget/legacy/raw_gadget.c
18371 F:      include/uapi/linux/usb/raw_gadget.h
18372
18373 USB QMI WWAN NETWORK DRIVER
18374 M:      Bjørn Mork <bjorn@mork.no>
18375 L:      netdev@vger.kernel.org
18376 S:      Maintained
18377 F:      Documentation/ABI/testing/sysfs-class-net-qmi
18378 F:      drivers/net/usb/qmi_wwan.c
18379
18380 USB RTL8150 DRIVER
18381 M:      Petko Manolov <petkan@nucleusys.com>
18382 L:      linux-usb@vger.kernel.org
18383 L:      netdev@vger.kernel.org
18384 S:      Maintained
18385 W:      https://github.com/petkan/rtl8150
18386 T:      git git://github.com/petkan/rtl8150.git
18387 F:      drivers/net/usb/rtl8150.c
18388
18389 USB SERIAL SUBSYSTEM
18390 M:      Johan Hovold <johan@kernel.org>
18391 L:      linux-usb@vger.kernel.org
18392 S:      Maintained
18393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
18394 F:      Documentation/usb/usb-serial.rst
18395 F:      drivers/usb/serial/
18396 F:      include/linux/usb/serial.h
18397
18398 USB SMSC75XX ETHERNET DRIVER
18399 M:      Steve Glendinning <steve.glendinning@shawell.net>
18400 L:      netdev@vger.kernel.org
18401 S:      Maintained
18402 F:      drivers/net/usb/smsc75xx.*
18403
18404 USB SMSC95XX ETHERNET DRIVER
18405 M:      Steve Glendinning <steve.glendinning@shawell.net>
18406 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
18407 L:      netdev@vger.kernel.org
18408 S:      Maintained
18409 F:      drivers/net/usb/smsc95xx.*
18410
18411 USB SUBSYSTEM
18412 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18413 L:      linux-usb@vger.kernel.org
18414 S:      Supported
18415 W:      http://www.linux-usb.org
18416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
18417 F:      Documentation/devicetree/bindings/usb/
18418 F:      Documentation/usb/
18419 F:      drivers/usb/
18420 F:      include/linux/usb.h
18421 F:      include/linux/usb/
18422
18423 USB TYPEC BUS FOR ALTERNATE MODES
18424 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18425 L:      linux-usb@vger.kernel.org
18426 S:      Maintained
18427 F:      Documentation/ABI/testing/sysfs-bus-typec
18428 F:      Documentation/driver-api/usb/typec_bus.rst
18429 F:      drivers/usb/typec/altmodes/
18430 F:      include/linux/usb/typec_altmode.h
18431
18432 USB TYPEC CLASS
18433 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18434 L:      linux-usb@vger.kernel.org
18435 S:      Maintained
18436 F:      Documentation/ABI/testing/sysfs-class-typec
18437 F:      Documentation/driver-api/usb/typec.rst
18438 F:      drivers/usb/typec/
18439 F:      include/linux/usb/typec.h
18440
18441 USB TYPEC INTEL PMC MUX DRIVER
18442 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18443 L:      linux-usb@vger.kernel.org
18444 S:      Maintained
18445 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
18446 F:      drivers/usb/typec/mux/intel_pmc_mux.c
18447
18448 USB TYPEC PI3USB30532 MUX DRIVER
18449 M:      Hans de Goede <hdegoede@redhat.com>
18450 L:      linux-usb@vger.kernel.org
18451 S:      Maintained
18452 F:      drivers/usb/typec/mux/pi3usb30532.c
18453
18454 USB TYPEC PORT CONTROLLER DRIVERS
18455 M:      Guenter Roeck <linux@roeck-us.net>
18456 L:      linux-usb@vger.kernel.org
18457 S:      Maintained
18458 F:      drivers/usb/typec/tcpm/
18459
18460 USB UHCI DRIVER
18461 M:      Alan Stern <stern@rowland.harvard.edu>
18462 L:      linux-usb@vger.kernel.org
18463 S:      Maintained
18464 F:      drivers/usb/host/uhci*
18465
18466 USB VIDEO CLASS
18467 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18468 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
18469 L:      linux-media@vger.kernel.org
18470 S:      Maintained
18471 W:      http://www.ideasonboard.org/uvc/
18472 T:      git git://linuxtv.org/media_tree.git
18473 F:      drivers/media/usb/uvc/
18474 F:      include/uapi/linux/uvcvideo.h
18475
18476 USB WEBCAM GADGET
18477 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18478 L:      linux-usb@vger.kernel.org
18479 S:      Maintained
18480 F:      drivers/usb/gadget/function/*uvc*
18481 F:      drivers/usb/gadget/legacy/webcam.c
18482 F:      include/uapi/linux/usb/g_uvc.h
18483
18484 USB WIRELESS RNDIS DRIVER (rndis_wlan)
18485 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
18486 L:      linux-wireless@vger.kernel.org
18487 S:      Maintained
18488 F:      drivers/net/wireless/rndis_wlan.c
18489
18490 USB XHCI DRIVER
18491 M:      Mathias Nyman <mathias.nyman@intel.com>
18492 L:      linux-usb@vger.kernel.org
18493 S:      Supported
18494 F:      drivers/usb/host/pci-quirks*
18495 F:      drivers/usb/host/xhci*
18496
18497 USB ZD1201 DRIVER
18498 L:      linux-wireless@vger.kernel.org
18499 S:      Orphan
18500 W:      http://linux-lc100020.sourceforge.net
18501 F:      drivers/net/wireless/zydas/zd1201.*
18502
18503 USB ZR364XX DRIVER
18504 M:      Antoine Jacquet <royale@zerezo.com>
18505 L:      linux-usb@vger.kernel.org
18506 L:      linux-media@vger.kernel.org
18507 S:      Maintained
18508 W:      http://royale.zerezo.com/zr364xx/
18509 T:      git git://linuxtv.org/media_tree.git
18510 F:      Documentation/admin-guide/media/zr364xx*
18511 F:      drivers/media/usb/zr364xx/
18512
18513 USER-MODE LINUX (UML)
18514 M:      Jeff Dike <jdike@addtoit.com>
18515 M:      Richard Weinberger <richard@nod.at>
18516 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
18517 L:      linux-um@lists.infradead.org
18518 S:      Maintained
18519 W:      http://user-mode-linux.sourceforge.net
18520 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
18521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
18522 F:      Documentation/virt/uml/
18523 F:      arch/um/
18524 F:      arch/x86/um/
18525 F:      fs/hostfs/
18526
18527 USERSPACE COPYIN/COPYOUT (UIOVEC)
18528 M:      Alexander Viro <viro@zeniv.linux.org.uk>
18529 S:      Maintained
18530 F:      include/linux/uio.h
18531 F:      lib/iov_iter.c
18532
18533 USERSPACE DMA BUFFER DRIVER
18534 M:      Gerd Hoffmann <kraxel@redhat.com>
18535 L:      dri-devel@lists.freedesktop.org
18536 S:      Maintained
18537 T:      git git://anongit.freedesktop.org/drm/drm-misc
18538 F:      drivers/dma-buf/udmabuf.c
18539 F:      include/uapi/linux/udmabuf.h
18540
18541 USERSPACE I/O (UIO)
18542 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18543 S:      Maintained
18544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18545 F:      Documentation/driver-api/uio-howto.rst
18546 F:      drivers/uio/
18547 F:      include/linux/uio_driver.h
18548
18549 UTIL-LINUX PACKAGE
18550 M:      Karel Zak <kzak@redhat.com>
18551 L:      util-linux@vger.kernel.org
18552 S:      Maintained
18553 W:      http://en.wikipedia.org/wiki/Util-linux
18554 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
18555
18556 UUID HELPERS
18557 M:      Christoph Hellwig <hch@lst.de>
18558 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18559 L:      linux-kernel@vger.kernel.org
18560 S:      Maintained
18561 T:      git git://git.infradead.org/users/hch/uuid.git
18562 F:      include/linux/uuid.h
18563 F:      include/uapi/linux/uuid.h
18564 F:      lib/test_uuid.c
18565 F:      lib/uuid.c
18566
18567 UV SYSFS DRIVER
18568 M:      Justin Ernst <justin.ernst@hpe.com>
18569 L:      platform-driver-x86@vger.kernel.org
18570 S:      Maintained
18571 F:      drivers/platform/x86/uv_sysfs.c
18572
18573 UVESAFB DRIVER
18574 M:      Michal Januszewski <spock@gentoo.org>
18575 L:      linux-fbdev@vger.kernel.org
18576 S:      Maintained
18577 W:      https://github.com/mjanusz/v86d
18578 F:      Documentation/fb/uvesafb.rst
18579 F:      drivers/video/fbdev/uvesafb.*
18580
18581 Ux500 CLOCK DRIVERS
18582 M:      Ulf Hansson <ulf.hansson@linaro.org>
18583 L:      linux-clk@vger.kernel.org
18584 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18585 S:      Maintained
18586 F:      drivers/clk/ux500/
18587
18588 VF610 NAND DRIVER
18589 M:      Stefan Agner <stefan@agner.ch>
18590 L:      linux-mtd@lists.infradead.org
18591 S:      Supported
18592 F:      drivers/mtd/nand/raw/vf610_nfc.c
18593
18594 VFAT/FAT/MSDOS FILESYSTEM
18595 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
18596 S:      Maintained
18597 F:      Documentation/filesystems/vfat.rst
18598 F:      fs/fat/
18599
18600 VFIO DRIVER
18601 M:      Alex Williamson <alex.williamson@redhat.com>
18602 R:      Cornelia Huck <cohuck@redhat.com>
18603 L:      kvm@vger.kernel.org
18604 S:      Maintained
18605 T:      git git://github.com/awilliam/linux-vfio.git
18606 F:      Documentation/driver-api/vfio.rst
18607 F:      drivers/vfio/
18608 F:      include/linux/vfio.h
18609 F:      include/uapi/linux/vfio.h
18610
18611 VFIO FSL-MC DRIVER
18612 M:      Diana Craciun <diana.craciun@oss.nxp.com>
18613 L:      kvm@vger.kernel.org
18614 S:      Maintained
18615 F:      drivers/vfio/fsl-mc/
18616
18617 VFIO MEDIATED DEVICE DRIVERS
18618 M:      Kirti Wankhede <kwankhede@nvidia.com>
18619 L:      kvm@vger.kernel.org
18620 S:      Maintained
18621 F:      Documentation/driver-api/vfio-mediated-device.rst
18622 F:      drivers/vfio/mdev/
18623 F:      include/linux/mdev.h
18624 F:      samples/vfio-mdev/
18625
18626 VFIO PLATFORM DRIVER
18627 M:      Eric Auger <eric.auger@redhat.com>
18628 L:      kvm@vger.kernel.org
18629 S:      Maintained
18630 F:      drivers/vfio/platform/
18631
18632 VGA_SWITCHEROO
18633 R:      Lukas Wunner <lukas@wunner.de>
18634 S:      Maintained
18635 T:      git git://anongit.freedesktop.org/drm/drm-misc
18636 F:      Documentation/gpu/vga-switcheroo.rst
18637 F:      drivers/gpu/vga/vga_switcheroo.c
18638 F:      include/linux/vga_switcheroo.h
18639
18640 VIA RHINE NETWORK DRIVER
18641 S:      Maintained
18642 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
18643 F:      drivers/net/ethernet/via/via-rhine.c
18644
18645 VIA SD/MMC CARD CONTROLLER DRIVER
18646 M:      Bruce Chang <brucechang@via.com.tw>
18647 M:      Harald Welte <HaraldWelte@viatech.com>
18648 S:      Maintained
18649 F:      drivers/mmc/host/via-sdmmc.c
18650
18651 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
18652 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
18653 L:      linux-fbdev@vger.kernel.org
18654 S:      Maintained
18655 F:      drivers/video/fbdev/via/
18656 F:      include/linux/via-core.h
18657 F:      include/linux/via-gpio.h
18658 F:      include/linux/via_i2c.h
18659
18660 VIA VELOCITY NETWORK DRIVER
18661 M:      Francois Romieu <romieu@fr.zoreil.com>
18662 L:      netdev@vger.kernel.org
18663 S:      Maintained
18664 F:      drivers/net/ethernet/via/via-velocity.*
18665
18666 VICODEC VIRTUAL CODEC DRIVER
18667 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
18668 L:      linux-media@vger.kernel.org
18669 S:      Maintained
18670 W:      https://linuxtv.org
18671 T:      git git://linuxtv.org/media_tree.git
18672 F:      drivers/media/test-drivers/vicodec/*
18673
18674 VIDEO I2C POLLING DRIVER
18675 M:      Matt Ranostay <matt.ranostay@konsulko.com>
18676 L:      linux-media@vger.kernel.org
18677 S:      Maintained
18678 F:      drivers/media/i2c/video-i2c.c
18679
18680 VIDEO MULTIPLEXER DRIVER
18681 M:      Philipp Zabel <p.zabel@pengutronix.de>
18682 L:      linux-media@vger.kernel.org
18683 S:      Maintained
18684 F:      drivers/media/platform/video-mux.c
18685
18686 VIDEOBUF2 FRAMEWORK
18687 M:      Tomasz Figa <tfiga@chromium.org>
18688 M:      Marek Szyprowski <m.szyprowski@samsung.com>
18689 L:      linux-media@vger.kernel.org
18690 S:      Maintained
18691 F:      drivers/media/common/videobuf2/*
18692 F:      include/media/videobuf2-*
18693
18694 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
18695 M:      Helen Koike <helen.koike@collabora.com>
18696 R:      Shuah Khan <skhan@linuxfoundation.org>
18697 L:      linux-media@vger.kernel.org
18698 S:      Maintained
18699 W:      https://linuxtv.org
18700 T:      git git://linuxtv.org/media_tree.git
18701 F:      drivers/media/test-drivers/vimc/*
18702
18703 VIRT LIB
18704 M:      Alex Williamson <alex.williamson@redhat.com>
18705 M:      Paolo Bonzini <pbonzini@redhat.com>
18706 L:      kvm@vger.kernel.org
18707 S:      Supported
18708 F:      virt/lib/
18709
18710 VIRTIO AND VHOST VSOCK DRIVER
18711 M:      Stefan Hajnoczi <stefanha@redhat.com>
18712 M:      Stefano Garzarella <sgarzare@redhat.com>
18713 L:      kvm@vger.kernel.org
18714 L:      virtualization@lists.linux-foundation.org
18715 L:      netdev@vger.kernel.org
18716 S:      Maintained
18717 F:      drivers/net/vsockmon.c
18718 F:      drivers/vhost/vsock.c
18719 F:      include/linux/virtio_vsock.h
18720 F:      include/uapi/linux/virtio_vsock.h
18721 F:      include/uapi/linux/vm_sockets_diag.h
18722 F:      include/uapi/linux/vsockmon.h
18723 F:      net/vmw_vsock/af_vsock_tap.c
18724 F:      net/vmw_vsock/diag.c
18725 F:      net/vmw_vsock/virtio_transport.c
18726 F:      net/vmw_vsock/virtio_transport_common.c
18727 F:      net/vmw_vsock/vsock_loopback.c
18728 F:      tools/testing/vsock/
18729
18730 VIRTIO BLOCK AND SCSI DRIVERS
18731 M:      "Michael S. Tsirkin" <mst@redhat.com>
18732 M:      Jason Wang <jasowang@redhat.com>
18733 R:      Paolo Bonzini <pbonzini@redhat.com>
18734 R:      Stefan Hajnoczi <stefanha@redhat.com>
18735 L:      virtualization@lists.linux-foundation.org
18736 S:      Maintained
18737 F:      drivers/block/virtio_blk.c
18738 F:      drivers/scsi/virtio_scsi.c
18739 F:      drivers/vhost/scsi.c
18740 F:      include/uapi/linux/virtio_blk.h
18741 F:      include/uapi/linux/virtio_scsi.h
18742
18743 VIRTIO CONSOLE DRIVER
18744 M:      Amit Shah <amit@kernel.org>
18745 L:      virtualization@lists.linux-foundation.org
18746 S:      Maintained
18747 F:      drivers/char/virtio_console.c
18748 F:      include/linux/virtio_console.h
18749 F:      include/uapi/linux/virtio_console.h
18750
18751 VIRTIO CORE AND NET DRIVERS
18752 M:      "Michael S. Tsirkin" <mst@redhat.com>
18753 M:      Jason Wang <jasowang@redhat.com>
18754 L:      virtualization@lists.linux-foundation.org
18755 S:      Maintained
18756 F:      Documentation/devicetree/bindings/virtio/
18757 F:      drivers/block/virtio_blk.c
18758 F:      drivers/crypto/virtio/
18759 F:      drivers/net/virtio_net.c
18760 F:      drivers/vdpa/
18761 F:      drivers/virtio/
18762 F:      include/linux/vdpa.h
18763 F:      include/linux/virtio*.h
18764 F:      include/uapi/linux/virtio_*.h
18765 F:      tools/virtio/
18766
18767 VIRTIO BALLOON
18768 M:      "Michael S. Tsirkin" <mst@redhat.com>
18769 M:      David Hildenbrand <david@redhat.com>
18770 L:      virtualization@lists.linux-foundation.org
18771 S:      Maintained
18772 F:      drivers/virtio/virtio_balloon.c
18773 F:      include/uapi/linux/virtio_balloon.h
18774 F:      include/linux/balloon_compaction.h
18775 F:      mm/balloon_compaction.c
18776
18777 VIRTIO CRYPTO DRIVER
18778 M:      Gonglei <arei.gonglei@huawei.com>
18779 L:      virtualization@lists.linux-foundation.org
18780 L:      linux-crypto@vger.kernel.org
18781 S:      Maintained
18782 F:      drivers/crypto/virtio/
18783 F:      include/uapi/linux/virtio_crypto.h
18784
18785 VIRTIO DRIVERS FOR S390
18786 M:      Cornelia Huck <cohuck@redhat.com>
18787 M:      Halil Pasic <pasic@linux.ibm.com>
18788 L:      linux-s390@vger.kernel.org
18789 L:      virtualization@lists.linux-foundation.org
18790 L:      kvm@vger.kernel.org
18791 S:      Supported
18792 F:      arch/s390/include/uapi/asm/virtio-ccw.h
18793 F:      drivers/s390/virtio/
18794
18795 VIRTIO FILE SYSTEM
18796 M:      Vivek Goyal <vgoyal@redhat.com>
18797 M:      Stefan Hajnoczi <stefanha@redhat.com>
18798 M:      Miklos Szeredi <miklos@szeredi.hu>
18799 L:      virtualization@lists.linux-foundation.org
18800 L:      linux-fsdevel@vger.kernel.org
18801 S:      Supported
18802 W:      https://virtio-fs.gitlab.io/
18803 F:      Documentation/filesystems/virtiofs.rst
18804 F:      fs/fuse/virtio_fs.c
18805 F:      include/uapi/linux/virtio_fs.h
18806
18807 VIRTIO GPU DRIVER
18808 M:      David Airlie <airlied@linux.ie>
18809 M:      Gerd Hoffmann <kraxel@redhat.com>
18810 L:      dri-devel@lists.freedesktop.org
18811 L:      virtualization@lists.linux-foundation.org
18812 S:      Maintained
18813 T:      git git://anongit.freedesktop.org/drm/drm-misc
18814 F:      drivers/gpu/drm/virtio/
18815 F:      include/uapi/linux/virtio_gpu.h
18816
18817 VIRTIO HOST (VHOST)
18818 M:      "Michael S. Tsirkin" <mst@redhat.com>
18819 M:      Jason Wang <jasowang@redhat.com>
18820 L:      kvm@vger.kernel.org
18821 L:      virtualization@lists.linux-foundation.org
18822 L:      netdev@vger.kernel.org
18823 S:      Maintained
18824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
18825 F:      drivers/vhost/
18826 F:      include/linux/vhost_iotlb.h
18827 F:      include/uapi/linux/vhost.h
18828
18829 VIRTIO INPUT DRIVER
18830 M:      Gerd Hoffmann <kraxel@redhat.com>
18831 S:      Maintained
18832 F:      drivers/virtio/virtio_input.c
18833 F:      include/uapi/linux/virtio_input.h
18834
18835 VIRTIO IOMMU DRIVER
18836 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
18837 L:      virtualization@lists.linux-foundation.org
18838 S:      Maintained
18839 F:      drivers/iommu/virtio-iommu.c
18840 F:      include/uapi/linux/virtio_iommu.h
18841
18842 VIRTIO MEM DRIVER
18843 M:      David Hildenbrand <david@redhat.com>
18844 L:      virtualization@lists.linux-foundation.org
18845 S:      Maintained
18846 W:      https://virtio-mem.gitlab.io/
18847 F:      drivers/virtio/virtio_mem.c
18848 F:      include/uapi/linux/virtio_mem.h
18849
18850 VIRTUAL BOX GUEST DEVICE DRIVER
18851 M:      Hans de Goede <hdegoede@redhat.com>
18852 M:      Arnd Bergmann <arnd@arndb.de>
18853 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18854 S:      Maintained
18855 F:      drivers/virt/vboxguest/
18856 F:      include/linux/vbox_utils.h
18857 F:      include/uapi/linux/vbox*.h
18858
18859 VIRTUAL BOX SHARED FOLDER VFS DRIVER
18860 M:      Hans de Goede <hdegoede@redhat.com>
18861 L:      linux-fsdevel@vger.kernel.org
18862 S:      Maintained
18863 F:      fs/vboxsf/*
18864
18865 VIRTUAL SERIO DEVICE DRIVER
18866 M:      Stephen Chandler Paul <thatslyude@gmail.com>
18867 S:      Maintained
18868 F:      drivers/input/serio/userio.c
18869 F:      include/uapi/linux/userio.h
18870
18871 VIVID VIRTUAL VIDEO DRIVER
18872 M:      Hans Verkuil <hverkuil@xs4all.nl>
18873 L:      linux-media@vger.kernel.org
18874 S:      Maintained
18875 W:      https://linuxtv.org
18876 T:      git git://linuxtv.org/media_tree.git
18877 F:      drivers/media/test-drivers/vivid/*
18878
18879 VIDTV VIRTUAL DIGITAL TV DRIVER
18880 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
18881 L:      linux-media@vger.kernel.org
18882 S:      Maintained
18883 W:      https://linuxtv.org
18884 T:      git git://linuxtv.org/media_tree.git
18885 F:      drivers/media/test-drivers/vidtv/*
18886
18887 VLYNQ BUS
18888 M:      Florian Fainelli <f.fainelli@gmail.com>
18889 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
18890 S:      Maintained
18891 F:      drivers/vlynq/vlynq.c
18892 F:      include/linux/vlynq.h
18893
18894 VME SUBSYSTEM
18895 M:      Martyn Welch <martyn@welchs.me.uk>
18896 M:      Manohar Vanga <manohar.vanga@gmail.com>
18897 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18898 L:      devel@driverdev.osuosl.org
18899 S:      Maintained
18900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18901 F:      Documentation/driver-api/vme.rst
18902 F:      drivers/staging/vme/
18903 F:      drivers/vme/
18904 F:      include/linux/vme*
18905
18906 VMWARE BALLOON DRIVER
18907 M:      Nadav Amit <namit@vmware.com>
18908 M:      "VMware, Inc." <pv-drivers@vmware.com>
18909 L:      linux-kernel@vger.kernel.org
18910 S:      Maintained
18911 F:      drivers/misc/vmw_balloon.c
18912
18913 VMWARE HYPERVISOR INTERFACE
18914 M:      Deep Shah <sdeep@vmware.com>
18915 M:      "VMware, Inc." <pv-drivers@vmware.com>
18916 L:      virtualization@lists.linux-foundation.org
18917 S:      Supported
18918 F:      arch/x86/include/asm/vmware.h
18919 F:      arch/x86/kernel/cpu/vmware.c
18920
18921 VMWARE PVRDMA DRIVER
18922 M:      Adit Ranadive <aditr@vmware.com>
18923 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18924 L:      linux-rdma@vger.kernel.org
18925 S:      Maintained
18926 F:      drivers/infiniband/hw/vmw_pvrdma/
18927
18928 VMware PVSCSI driver
18929 M:      Jim Gill <jgill@vmware.com>
18930 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18931 L:      linux-scsi@vger.kernel.org
18932 S:      Maintained
18933 F:      drivers/scsi/vmw_pvscsi.c
18934 F:      drivers/scsi/vmw_pvscsi.h
18935
18936 VMWARE VIRTUAL PTP CLOCK DRIVER
18937 M:      Vivek Thampi <vithampi@vmware.com>
18938 M:      "VMware, Inc." <pv-drivers@vmware.com>
18939 L:      netdev@vger.kernel.org
18940 S:      Supported
18941 F:      drivers/ptp/ptp_vmw.c
18942
18943 VMWARE VMMOUSE SUBDRIVER
18944 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
18945 M:      "VMware, Inc." <pv-drivers@vmware.com>
18946 L:      linux-input@vger.kernel.org
18947 S:      Maintained
18948 F:      drivers/input/mouse/vmmouse.c
18949 F:      drivers/input/mouse/vmmouse.h
18950
18951 VMWARE VMXNET3 ETHERNET DRIVER
18952 M:      Ronak Doshi <doshir@vmware.com>
18953 M:      "VMware, Inc." <pv-drivers@vmware.com>
18954 L:      netdev@vger.kernel.org
18955 S:      Maintained
18956 F:      drivers/net/vmxnet3/
18957
18958 VOCORE VOCORE2 BOARD
18959 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
18960 L:      linux-mips@vger.kernel.org
18961 S:      Maintained
18962 F:      arch/mips/boot/dts/ralink/vocore2.dts
18963
18964 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18965 M:      Liam Girdwood <lgirdwood@gmail.com>
18966 M:      Mark Brown <broonie@kernel.org>
18967 L:      linux-kernel@vger.kernel.org
18968 S:      Supported
18969 W:      http://www.slimlogic.co.uk/?p=48
18970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18971 F:      Documentation/devicetree/bindings/regulator/
18972 F:      Documentation/power/regulator/
18973 F:      drivers/regulator/
18974 F:      include/dt-bindings/regulator/
18975 F:      include/linux/regulator/
18976 K:      regulator_get_optional
18977
18978 VRF
18979 M:      David Ahern <dsahern@kernel.org>
18980 M:      Shrijeet Mukherjee <shrijeet@gmail.com>
18981 L:      netdev@vger.kernel.org
18982 S:      Maintained
18983 F:      Documentation/networking/vrf.rst
18984 F:      drivers/net/vrf.c
18985
18986 VSPRINTF
18987 M:      Petr Mladek <pmladek@suse.com>
18988 M:      Steven Rostedt <rostedt@goodmis.org>
18989 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
18990 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18991 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
18992 S:      Maintained
18993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
18994 F:      Documentation/core-api/printk-formats.rst
18995 F:      lib/test_printf.c
18996 F:      lib/vsprintf.c
18997
18998 VT1211 HARDWARE MONITOR DRIVER
18999 M:      Juerg Haefliger <juergh@gmail.com>
19000 L:      linux-hwmon@vger.kernel.org
19001 S:      Maintained
19002 F:      Documentation/hwmon/vt1211.rst
19003 F:      drivers/hwmon/vt1211.c
19004
19005 VT8231 HARDWARE MONITOR DRIVER
19006 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
19007 L:      linux-hwmon@vger.kernel.org
19008 S:      Maintained
19009 F:      drivers/hwmon/vt8231.c
19010
19011 VUB300 USB to SDIO/SD/MMC bridge chip
19012 L:      linux-mmc@vger.kernel.org
19013 S:      Orphan
19014 F:      drivers/mmc/host/vub300.c
19015
19016 W1 DALLAS'S 1-WIRE BUS
19017 M:      Evgeniy Polyakov <zbr@ioremap.net>
19018 S:      Maintained
19019 F:      Documentation/devicetree/bindings/w1/
19020 F:      Documentation/w1/
19021 F:      drivers/w1/
19022 F:      include/linux/w1.h
19023
19024 W83791D HARDWARE MONITORING DRIVER
19025 M:      Marc Hulsman <m.hulsman@tudelft.nl>
19026 L:      linux-hwmon@vger.kernel.org
19027 S:      Maintained
19028 F:      Documentation/hwmon/w83791d.rst
19029 F:      drivers/hwmon/w83791d.c
19030
19031 W83793 HARDWARE MONITORING DRIVER
19032 M:      Rudolf Marek <r.marek@assembler.cz>
19033 L:      linux-hwmon@vger.kernel.org
19034 S:      Maintained
19035 F:      Documentation/hwmon/w83793.rst
19036 F:      drivers/hwmon/w83793.c
19037
19038 W83795 HARDWARE MONITORING DRIVER
19039 M:      Jean Delvare <jdelvare@suse.com>
19040 L:      linux-hwmon@vger.kernel.org
19041 S:      Maintained
19042 F:      drivers/hwmon/w83795.c
19043
19044 W83L51xD SD/MMC CARD INTERFACE DRIVER
19045 M:      Pierre Ossman <pierre@ossman.eu>
19046 S:      Maintained
19047 F:      drivers/mmc/host/wbsd.*
19048
19049 WACOM PROTOCOL 4 SERIAL TABLETS
19050 M:      Julian Squires <julian@cipht.net>
19051 M:      Hans de Goede <hdegoede@redhat.com>
19052 L:      linux-input@vger.kernel.org
19053 S:      Maintained
19054 F:      drivers/input/tablet/wacom_serial4.c
19055
19056 WATCHDOG DEVICE DRIVERS
19057 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
19058 M:      Guenter Roeck <linux@roeck-us.net>
19059 L:      linux-watchdog@vger.kernel.org
19060 S:      Maintained
19061 W:      http://www.linux-watchdog.org/
19062 T:      git git://www.linux-watchdog.org/linux-watchdog.git
19063 F:      Documentation/devicetree/bindings/watchdog/
19064 F:      Documentation/watchdog/
19065 F:      drivers/watchdog/
19066 F:      include/linux/watchdog.h
19067 F:      include/uapi/linux/watchdog.h
19068
19069 WHISKEYCOVE PMIC GPIO DRIVER
19070 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
19071 L:      linux-gpio@vger.kernel.org
19072 S:      Maintained
19073 F:      drivers/gpio/gpio-wcove.c
19074
19075 WHWAVE RTC DRIVER
19076 M:      Dianlong Li <long17.cool@163.com>
19077 L:      linux-rtc@vger.kernel.org
19078 S:      Maintained
19079 F:      drivers/rtc/rtc-sd3078.c
19080
19081 WIIMOTE HID DRIVER
19082 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19083 L:      linux-input@vger.kernel.org
19084 S:      Maintained
19085 F:      drivers/hid/hid-wiimote*
19086
19087 WILOCITY WIL6210 WIRELESS DRIVER
19088 M:      Maya Erez <merez@codeaurora.org>
19089 L:      linux-wireless@vger.kernel.org
19090 L:      wil6210@qti.qualcomm.com
19091 S:      Supported
19092 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
19093 F:      drivers/net/wireless/ath/wil6210/
19094
19095 WINBOND CIR DRIVER
19096 M:      David Härdeman <david@hardeman.nu>
19097 S:      Maintained
19098 F:      drivers/media/rc/winbond-cir.c
19099
19100 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
19101 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
19102 L:      linux-watchdog@vger.kernel.org
19103 S:      Maintained
19104 F:      drivers/watchdog/ebc-c384_wdt.c
19105
19106 WINSYSTEMS WS16C48 GPIO DRIVER
19107 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
19108 L:      linux-gpio@vger.kernel.org
19109 S:      Maintained
19110 F:      drivers/gpio/gpio-ws16c48.c
19111
19112 WIREGUARD SECURE NETWORK TUNNEL
19113 M:      Jason A. Donenfeld <Jason@zx2c4.com>
19114 L:      wireguard@lists.zx2c4.com
19115 L:      netdev@vger.kernel.org
19116 S:      Maintained
19117 F:      drivers/net/wireguard/
19118 F:      tools/testing/selftests/wireguard/
19119
19120 WISTRON LAPTOP BUTTON DRIVER
19121 M:      Miloslav Trmac <mitr@volny.cz>
19122 S:      Maintained
19123 F:      drivers/input/misc/wistron_btns.c
19124
19125 WL3501 WIRELESS PCMCIA CARD DRIVER
19126 L:      linux-wireless@vger.kernel.org
19127 S:      Odd fixes
19128 F:      drivers/net/wireless/wl3501*
19129
19130 WOLFSON MICROELECTRONICS DRIVERS
19131 L:      patches@opensource.cirrus.com
19132 S:      Supported
19133 W:      https://github.com/CirrusLogic/linux-drivers/wiki
19134 T:      git https://github.com/CirrusLogic/linux-drivers.git
19135 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
19136 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
19137 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
19138 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
19139 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
19140 F:      Documentation/hwmon/wm83??.rst
19141 F:      arch/arm/mach-s3c/mach-crag6410*
19142 F:      drivers/clk/clk-wm83*.c
19143 F:      drivers/extcon/extcon-arizona.c
19144 F:      drivers/gpio/gpio-*wm*.c
19145 F:      drivers/gpio/gpio-arizona.c
19146 F:      drivers/hwmon/wm83??-hwmon.c
19147 F:      drivers/input/misc/wm831x-on.c
19148 F:      drivers/input/touchscreen/wm831x-ts.c
19149 F:      drivers/input/touchscreen/wm97*.c
19150 F:      drivers/leds/leds-wm83*.c
19151 F:      drivers/mfd/arizona*
19152 F:      drivers/mfd/cs47l24*
19153 F:      drivers/mfd/wm*.c
19154 F:      drivers/power/supply/wm83*.c
19155 F:      drivers/regulator/arizona*
19156 F:      drivers/regulator/wm8*.c
19157 F:      drivers/rtc/rtc-wm83*.c
19158 F:      drivers/video/backlight/wm83*_bl.c
19159 F:      drivers/watchdog/wm83*_wdt.c
19160 F:      include/linux/mfd/arizona/
19161 F:      include/linux/mfd/wm831x/
19162 F:      include/linux/mfd/wm8350/
19163 F:      include/linux/mfd/wm8400*
19164 F:      include/linux/regulator/arizona*
19165 F:      include/linux/wm97xx.h
19166 F:      include/sound/wm????.h
19167 F:      sound/soc/codecs/arizona.?
19168 F:      sound/soc/codecs/cs47l24*
19169 F:      sound/soc/codecs/wm*
19170
19171 WORKQUEUE
19172 M:      Tejun Heo <tj@kernel.org>
19173 R:      Lai Jiangshan <jiangshanlai@gmail.com>
19174 S:      Maintained
19175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
19176 F:      Documentation/core-api/workqueue.rst
19177 F:      include/linux/workqueue.h
19178 F:      kernel/workqueue.c
19179
19180 X-POWERS AXP288 PMIC DRIVERS
19181 M:      Hans de Goede <hdegoede@redhat.com>
19182 S:      Maintained
19183 F:      drivers/acpi/pmic/intel_pmic_xpower.c
19184 N:      axp288
19185
19186 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
19187 M:      Chen-Yu Tsai <wens@csie.org>
19188 L:      linux-kernel@vger.kernel.org
19189 S:      Maintained
19190 N:      axp[128]
19191
19192 X.25 STACK
19193 M:      Martin Schiller <ms@dev.tdt.de>
19194 L:      linux-x25@vger.kernel.org
19195 S:      Maintained
19196 F:      Documentation/networking/lapb-module.rst
19197 F:      Documentation/networking/x25*
19198 F:      drivers/net/wan/hdlc_x25.c
19199 F:      drivers/net/wan/lapbether.c
19200 F:      include/*/lapb.h
19201 F:      include/net/x25*
19202 F:      include/uapi/linux/x25.h
19203 F:      net/lapb/
19204 F:      net/x25/
19205
19206 X86 ARCHITECTURE (32-BIT AND 64-BIT)
19207 M:      Thomas Gleixner <tglx@linutronix.de>
19208 M:      Ingo Molnar <mingo@redhat.com>
19209 M:      Borislav Petkov <bp@alien8.de>
19210 M:      x86@kernel.org
19211 R:      "H. Peter Anvin" <hpa@zytor.com>
19212 L:      linux-kernel@vger.kernel.org
19213 S:      Maintained
19214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19215 F:      Documentation/devicetree/bindings/x86/
19216 F:      Documentation/x86/
19217 F:      arch/x86/
19218
19219 X86 ENTRY CODE
19220 M:      Andy Lutomirski <luto@kernel.org>
19221 L:      linux-kernel@vger.kernel.org
19222 S:      Maintained
19223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
19224 F:      arch/x86/entry/
19225
19226 X86 MCE INFRASTRUCTURE
19227 M:      Tony Luck <tony.luck@intel.com>
19228 M:      Borislav Petkov <bp@alien8.de>
19229 L:      linux-edac@vger.kernel.org
19230 S:      Maintained
19231 F:      arch/x86/kernel/cpu/mce/*
19232
19233 X86 MICROCODE UPDATE SUPPORT
19234 M:      Borislav Petkov <bp@alien8.de>
19235 S:      Maintained
19236 F:      arch/x86/kernel/cpu/microcode/*
19237
19238 X86 MM
19239 M:      Dave Hansen <dave.hansen@linux.intel.com>
19240 M:      Andy Lutomirski <luto@kernel.org>
19241 M:      Peter Zijlstra <peterz@infradead.org>
19242 L:      linux-kernel@vger.kernel.org
19243 S:      Maintained
19244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
19245 F:      arch/x86/mm/
19246
19247 X86 PLATFORM DRIVERS
19248 M:      Hans de Goede <hdegoede@redhat.com>
19249 M:      Mark Gross <mgross@linux.intel.com>
19250 L:      platform-driver-x86@vger.kernel.org
19251 S:      Maintained
19252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
19253 F:      drivers/platform/olpc/
19254 F:      drivers/platform/x86/
19255
19256 X86 PLATFORM DRIVERS - ARCH
19257 R:      Darren Hart <dvhart@infradead.org>
19258 R:      Andy Shevchenko <andy@infradead.org>
19259 L:      platform-driver-x86@vger.kernel.org
19260 L:      x86@kernel.org
19261 S:      Maintained
19262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19263 F:      arch/x86/platform
19264
19265 X86 PLATFORM UV HPE SUPERDOME FLEX
19266 M:      Steve Wahl <steve.wahl@hpe.com>
19267 R:      Mike Travis <mike.travis@hpe.com>
19268 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
19269 R:      Russ Anderson <russ.anderson@hpe.com>
19270 S:      Supported
19271 F:      arch/x86/include/asm/uv/
19272 F:      arch/x86/kernel/apic/x2apic_uv_x.c
19273 F:      arch/x86/platform/uv/
19274
19275 X86 VDSO
19276 M:      Andy Lutomirski <luto@kernel.org>
19277 L:      linux-kernel@vger.kernel.org
19278 S:      Maintained
19279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
19280 F:      arch/x86/entry/vdso/
19281
19282 XARRAY
19283 M:      Matthew Wilcox <willy@infradead.org>
19284 L:      linux-fsdevel@vger.kernel.org
19285 S:      Supported
19286 F:      Documentation/core-api/xarray.rst
19287 F:      include/linux/idr.h
19288 F:      include/linux/xarray.h
19289 F:      lib/idr.c
19290 F:      lib/xarray.c
19291 F:      tools/testing/radix-tree
19292
19293 XBOX DVD IR REMOTE
19294 M:      Benjamin Valentin <benpicco@googlemail.com>
19295 S:      Maintained
19296 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
19297 F:      drivers/media/rc/xbox_remote.c
19298
19299 XC2028/3028 TUNER DRIVER
19300 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19301 L:      linux-media@vger.kernel.org
19302 S:      Maintained
19303 W:      https://linuxtv.org
19304 T:      git git://linuxtv.org/media_tree.git
19305 F:      drivers/media/tuners/tuner-xc2028.*
19306
19307 XDP (eXpress Data Path)
19308 M:      Alexei Starovoitov <ast@kernel.org>
19309 M:      Daniel Borkmann <daniel@iogearbox.net>
19310 M:      David S. Miller <davem@davemloft.net>
19311 M:      Jakub Kicinski <kuba@kernel.org>
19312 M:      Jesper Dangaard Brouer <hawk@kernel.org>
19313 M:      John Fastabend <john.fastabend@gmail.com>
19314 L:      netdev@vger.kernel.org
19315 L:      bpf@vger.kernel.org
19316 S:      Supported
19317 F:      include/net/xdp.h
19318 F:      include/net/xdp_priv.h
19319 F:      include/trace/events/xdp.h
19320 F:      kernel/bpf/cpumap.c
19321 F:      kernel/bpf/devmap.c
19322 F:      net/core/xdp.c
19323 F:      samples/bpf/xdp*
19324 F:      tools/testing/selftests/bpf/*xdp*
19325 F:      tools/testing/selftests/bpf/*/*xdp*
19326 F:      drivers/net/ethernet/*/*/*/*/*xdp*
19327 F:      drivers/net/ethernet/*/*/*xdp*
19328 K:      (?:\b|_)xdp(?:\b|_)
19329
19330 XDP SOCKETS (AF_XDP)
19331 M:      Björn Töpel <bjorn.topel@intel.com>
19332 M:      Magnus Karlsson <magnus.karlsson@intel.com>
19333 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
19334 L:      netdev@vger.kernel.org
19335 L:      bpf@vger.kernel.org
19336 S:      Maintained
19337 F:      Documentation/networking/af_xdp.rst
19338 F:      include/net/xdp_sock*
19339 F:      include/net/xsk_buff_pool.h
19340 F:      include/uapi/linux/if_xdp.h
19341 F:      include/uapi/linux/xdp_diag.h
19342 F:      include/net/netns/xdp.h
19343 F:      net/xdp/
19344 F:      samples/bpf/xdpsock*
19345 F:      tools/lib/bpf/xsk*
19346
19347 XEN BLOCK SUBSYSTEM
19348 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19349 M:      Roger Pau Monné <roger.pau@citrix.com>
19350 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19351 S:      Supported
19352 F:      drivers/block/xen*
19353 F:      drivers/block/xen-blkback/*
19354
19355 XEN HYPERVISOR ARM
19356 M:      Stefano Stabellini <sstabellini@kernel.org>
19357 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19358 S:      Maintained
19359 F:      arch/arm/include/asm/xen/
19360 F:      arch/arm/xen/
19361
19362 XEN HYPERVISOR ARM64
19363 M:      Stefano Stabellini <sstabellini@kernel.org>
19364 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19365 S:      Maintained
19366 F:      arch/arm64/include/asm/xen/
19367 F:      arch/arm64/xen/
19368
19369 XEN HYPERVISOR INTERFACE
19370 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
19371 M:      Juergen Gross <jgross@suse.com>
19372 R:      Stefano Stabellini <sstabellini@kernel.org>
19373 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19374 S:      Supported
19375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
19376 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
19377 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
19378 F:      arch/x86/include/asm/pvclock-abi.h
19379 F:      arch/x86/include/asm/xen/
19380 F:      arch/x86/platform/pvh/
19381 F:      arch/x86/xen/
19382 F:      drivers/*/xen-*front.c
19383 F:      drivers/xen/
19384 F:      include/uapi/xen/
19385 F:      include/xen/
19386
19387 XEN NETWORK BACKEND DRIVER
19388 M:      Wei Liu <wei.liu@kernel.org>
19389 M:      Paul Durrant <paul@xen.org>
19390 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19391 L:      netdev@vger.kernel.org
19392 S:      Supported
19393 F:      drivers/net/xen-netback/*
19394
19395 XEN PCI SUBSYSTEM
19396 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19397 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19398 S:      Supported
19399 F:      arch/x86/pci/*xen*
19400 F:      drivers/pci/*xen*
19401
19402 XEN PVSCSI DRIVERS
19403 M:      Juergen Gross <jgross@suse.com>
19404 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19405 L:      linux-scsi@vger.kernel.org
19406 S:      Supported
19407 F:      drivers/scsi/xen-scsifront.c
19408 F:      drivers/xen/xen-scsiback.c
19409 F:      include/xen/interface/io/vscsiif.h
19410
19411 XEN SOUND FRONTEND DRIVER
19412 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
19413 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19414 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19415 S:      Supported
19416 F:      sound/xen/*
19417
19418 XEN SWIOTLB SUBSYSTEM
19419 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19420 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19421 L:      iommu@lists.linux-foundation.org
19422 S:      Supported
19423 F:      arch/x86/xen/*swiotlb*
19424 F:      drivers/xen/*swiotlb*
19425
19426 XFS FILESYSTEM
19427 M:      Darrick J. Wong <darrick.wong@oracle.com>
19428 M:      linux-xfs@vger.kernel.org
19429 L:      linux-xfs@vger.kernel.org
19430 S:      Supported
19431 W:      http://xfs.org/
19432 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
19433 F:      Documentation/ABI/testing/sysfs-fs-xfs
19434 F:      Documentation/admin-guide/xfs.rst
19435 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
19436 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
19437 F:      fs/xfs/
19438 F:      include/uapi/linux/dqblk_xfs.h
19439 F:      include/uapi/linux/fsmap.h
19440
19441 XILINX AXI ETHERNET DRIVER
19442 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
19443 S:      Maintained
19444 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
19445
19446 XILINX CAN DRIVER
19447 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
19448 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
19449 L:      linux-can@vger.kernel.org
19450 S:      Maintained
19451 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
19452 F:      drivers/net/can/xilinx_can.c
19453
19454 XILINX SD-FEC IP CORES
19455 M:      Derek Kiernan <derek.kiernan@xilinx.com>
19456 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
19457 S:      Maintained
19458 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
19459 F:      Documentation/misc-devices/xilinx_sdfec.rst
19460 F:      drivers/misc/Kconfig
19461 F:      drivers/misc/Makefile
19462 F:      drivers/misc/xilinx_sdfec.c
19463 F:      include/uapi/misc/xilinx_sdfec.h
19464
19465 XILINX UARTLITE SERIAL DRIVER
19466 M:      Peter Korsgaard <jacmet@sunsite.dk>
19467 L:      linux-serial@vger.kernel.org
19468 S:      Maintained
19469 F:      drivers/tty/serial/uartlite.c
19470
19471 XILINX VIDEO IP CORES
19472 M:      Hyun Kwon <hyun.kwon@xilinx.com>
19473 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19474 L:      linux-media@vger.kernel.org
19475 S:      Supported
19476 T:      git git://linuxtv.org/media_tree.git
19477 F:      Documentation/devicetree/bindings/media/xilinx/
19478 F:      drivers/media/platform/xilinx/
19479 F:      include/uapi/linux/xilinx-v4l2-controls.h
19480
19481 XILINX ZYNQMP DPDMA DRIVER
19482 M:      Hyun Kwon <hyun.kwon@xilinx.com>
19483 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19484 L:      dmaengine@vger.kernel.org
19485 S:      Supported
19486 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
19487 F:      drivers/dma/xilinx/xilinx_dpdma.c
19488 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
19489
19490 XILINX ZYNQMP PSGTR PHY DRIVER
19491 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
19492 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19493 L:      linux-kernel@vger.kernel.org
19494 S:      Supported
19495 T:      git https://github.com/Xilinx/linux-xlnx.git
19496 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
19497 F:      drivers/phy/xilinx/phy-zynqmp.c
19498
19499 XILLYBUS DRIVER
19500 M:      Eli Billauer <eli.billauer@gmail.com>
19501 L:      linux-kernel@vger.kernel.org
19502 S:      Supported
19503 F:      drivers/char/xillybus/
19504
19505 XLP9XX I2C DRIVER
19506 M:      George Cherian <gcherian@marvell.com>
19507 L:      linux-i2c@vger.kernel.org
19508 S:      Supported
19509 W:      http://www.marvell.com
19510 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
19511 F:      drivers/i2c/busses/i2c-xlp9xx.c
19512
19513 XRA1403 GPIO EXPANDER
19514 M:      Nandor Han <nandor.han@ge.com>
19515 M:      Semi Malinen <semi.malinen@ge.com>
19516 L:      linux-gpio@vger.kernel.org
19517 S:      Maintained
19518 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
19519 F:      drivers/gpio/gpio-xra1403.c
19520
19521 XTENSA XTFPGA PLATFORM SUPPORT
19522 M:      Max Filippov <jcmvbkbc@gmail.com>
19523 L:      linux-xtensa@linux-xtensa.org
19524 S:      Maintained
19525 F:      drivers/spi/spi-xtensa-xtfpga.c
19526 F:      sound/soc/xtensa/xtfpga-i2s.c
19527
19528 YAM DRIVER FOR AX.25
19529 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
19530 L:      linux-hams@vger.kernel.org
19531 S:      Maintained
19532 F:      drivers/net/hamradio/yam*
19533 F:      include/linux/yam.h
19534
19535 YAMA SECURITY MODULE
19536 M:      Kees Cook <keescook@chromium.org>
19537 S:      Supported
19538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
19539 F:      Documentation/admin-guide/LSM/Yama.rst
19540 F:      security/yama/
19541
19542 YEALINK PHONE DRIVER
19543 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
19544 L:      usbb2k-api-dev@nongnu.org
19545 S:      Maintained
19546 F:      Documentation/input/devices/yealink.rst
19547 F:      drivers/input/misc/yealink.*
19548
19549 Z8530 DRIVER FOR AX.25
19550 M:      Joerg Reuter <jreuter@yaina.de>
19551 L:      linux-hams@vger.kernel.org
19552 S:      Maintained
19553 W:      http://yaina.de/jreuter/
19554 W:      http://www.qsl.net/dl1bke/
19555 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
19556 F:      drivers/net/hamradio/*scc.c
19557 F:      drivers/net/hamradio/z8530.h
19558
19559 ZBUD COMPRESSED PAGE ALLOCATOR
19560 M:      Seth Jennings <sjenning@redhat.com>
19561 M:      Dan Streetman <ddstreet@ieee.org>
19562 L:      linux-mm@kvack.org
19563 S:      Maintained
19564 F:      include/linux/zbud.h
19565 F:      mm/zbud.c
19566
19567 ZD1211RW WIRELESS DRIVER
19568 M:      Daniel Drake <dsd@gentoo.org>
19569 M:      Ulrich Kunitz <kune@deine-taler.de>
19570 L:      linux-wireless@vger.kernel.org
19571 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
19572 S:      Maintained
19573 W:      http://zd1211.ath.cx/wiki/DriverRewrite
19574 F:      drivers/net/wireless/zydas/zd1211rw/
19575
19576 ZD1301 MEDIA DRIVER
19577 M:      Antti Palosaari <crope@iki.fi>
19578 L:      linux-media@vger.kernel.org
19579 S:      Maintained
19580 W:      https://linuxtv.org/
19581 W:      http://palosaari.fi/linux/
19582 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19583 F:      drivers/media/usb/dvb-usb-v2/zd1301*
19584
19585 ZD1301_DEMOD MEDIA DRIVER
19586 M:      Antti Palosaari <crope@iki.fi>
19587 L:      linux-media@vger.kernel.org
19588 S:      Maintained
19589 W:      https://linuxtv.org/
19590 W:      http://palosaari.fi/linux/
19591 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19592 F:      drivers/media/dvb-frontends/zd1301_demod*
19593
19594 ZHAOXIN PROCESSOR SUPPORT
19595 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
19596 L:      linux-kernel@vger.kernel.org
19597 S:      Maintained
19598 F:      arch/x86/kernel/cpu/zhaoxin.c
19599
19600 ZONEFS FILESYSTEM
19601 M:      Damien Le Moal <damien.lemoal@wdc.com>
19602 M:      Naohiro Aota <naohiro.aota@wdc.com>
19603 R:      Johannes Thumshirn <jth@kernel.org>
19604 L:      linux-fsdevel@vger.kernel.org
19605 S:      Maintained
19606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
19607 F:      Documentation/filesystems/zonefs.rst
19608 F:      fs/zonefs/
19609
19610 ZPOOL COMPRESSED PAGE STORAGE API
19611 M:      Dan Streetman <ddstreet@ieee.org>
19612 L:      linux-mm@kvack.org
19613 S:      Maintained
19614 F:      include/linux/zpool.h
19615 F:      mm/zpool.c
19616
19617 ZR36067 VIDEO FOR LINUX DRIVER
19618 M:      Corentin Labbe <clabbe@baylibre.com>
19619 L:      mjpeg-users@lists.sourceforge.net
19620 L:      linux-media@vger.kernel.org
19621 S:      Maintained
19622 W:      http://mjpeg.sourceforge.net/driver-zoran/
19623 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19624 F:      Documentation/driver-api/media/drivers/zoran.rst
19625 F:      drivers/staging/media/zoran/
19626
19627 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
19628 M:      Minchan Kim <minchan@kernel.org>
19629 M:      Nitin Gupta <ngupta@vflare.org>
19630 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19631 L:      linux-kernel@vger.kernel.org
19632 S:      Maintained
19633 F:      Documentation/admin-guide/blockdev/zram.rst
19634 F:      drivers/block/zram/
19635
19636 ZS DECSTATION Z85C30 SERIAL DRIVER
19637 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
19638 S:      Maintained
19639 F:      drivers/tty/serial/zs.*
19640
19641 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
19642 M:      Minchan Kim <minchan@kernel.org>
19643 M:      Nitin Gupta <ngupta@vflare.org>
19644 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19645 L:      linux-mm@kvack.org
19646 S:      Maintained
19647 F:      Documentation/vm/zsmalloc.rst
19648 F:      include/linux/zsmalloc.h
19649 F:      mm/zsmalloc.c
19650
19651 ZSWAP COMPRESSED SWAP CACHING
19652 M:      Seth Jennings <sjenning@redhat.com>
19653 M:      Dan Streetman <ddstreet@ieee.org>
19654 M:      Vitaly Wool <vitaly.wool@konsulko.com>
19655 L:      linux-mm@kvack.org
19656 S:      Maintained
19657 F:      mm/zswap.c
19658
19659 THE REST
19660 M:      Linus Torvalds <torvalds@linux-foundation.org>
19661 L:      linux-kernel@vger.kernel.org
19662 S:      Buried alive in reporters
19663 Q:      http://patchwork.kernel.org/project/LKML/list/
19664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
19665 F:      *
19666 F:      */