Merge tag 'platform-drivers-x86-v5.11-1' 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/EBSA110 MACHINE SUPPORT
1803 M:      Russell King <linux@armlinux.org.uk>
1804 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1805 S:      Maintained
1806 W:      http://www.armlinux.org.uk/
1807 F:      arch/arm/mach-ebsa110/
1808 F:      drivers/net/ethernet/amd/am79c961a.*
1809
1810 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1811 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1812 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1813 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1814 S:      Maintained
1815 N:      efm32
1816
1817 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1818 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1819 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1820 S:      Maintained
1821 F:      arch/arm/mach-pxa/ezx.c
1822
1823 ARM/FARADAY FA526 PORT
1824 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1825 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1826 S:      Maintained
1827 T:      git git://git.berlios.de/gemini-board
1828 F:      arch/arm/mm/*-fa*
1829
1830 ARM/FOOTBRIDGE ARCHITECTURE
1831 M:      Russell King <linux@armlinux.org.uk>
1832 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1833 S:      Maintained
1834 W:      http://www.armlinux.org.uk/
1835 F:      arch/arm/include/asm/hardware/dec21285.h
1836 F:      arch/arm/mach-footbridge/
1837
1838 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1839 M:      Shawn Guo <shawnguo@kernel.org>
1840 M:      Sascha Hauer <s.hauer@pengutronix.de>
1841 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1842 R:      Fabio Estevam <festevam@gmail.com>
1843 R:      NXP Linux Team <linux-imx@nxp.com>
1844 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1845 S:      Maintained
1846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1847 X:      drivers/media/i2c/
1848 N:      imx
1849 N:      mxs
1850
1851 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1852 M:      Shawn Guo <shawnguo@kernel.org>
1853 M:      Li Yang <leoyang.li@nxp.com>
1854 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1855 S:      Maintained
1856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1857 F:      arch/arm/boot/dts/ls1021a*
1858 F:      arch/arm64/boot/dts/freescale/fsl-*
1859 F:      arch/arm64/boot/dts/freescale/qoriq-*
1860
1861 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1862 M:      Shawn Guo <shawnguo@kernel.org>
1863 M:      Sascha Hauer <s.hauer@pengutronix.de>
1864 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1865 R:      Stefan Agner <stefan@agner.ch>
1866 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1867 S:      Maintained
1868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1869 F:      arch/arm/boot/dts/vf*
1870 F:      arch/arm/mach-imx/*vf610*
1871
1872 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1873 M:      Lennert Buytenhek <kernel@wantstofly.org>
1874 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1875 S:      Maintained
1876
1877 ARM/GUMSTIX MACHINE SUPPORT
1878 M:      Steve Sakoman <sakoman@gmail.com>
1879 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1880 S:      Maintained
1881
1882 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1883 M:      Philipp Zabel <philipp.zabel@gmail.com>
1884 M:      Paul Parsons <lost.distance@yahoo.com>
1885 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1886 S:      Maintained
1887 F:      arch/arm/mach-pxa/hx4700.c
1888 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1889 F:      sound/soc/pxa/hx4700.c
1890
1891 ARM/HISILICON SOC SUPPORT
1892 M:      Wei Xu <xuwei5@hisilicon.com>
1893 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1894 S:      Supported
1895 W:      http://www.hisilicon.com
1896 T:      git git://github.com/hisilicon/linux-hisi.git
1897 F:      arch/arm/boot/dts/hi3*
1898 F:      arch/arm/boot/dts/hip*
1899 F:      arch/arm/boot/dts/hisi*
1900 F:      arch/arm/mach-hisi/
1901 F:      arch/arm64/boot/dts/hisilicon/
1902
1903 ARM/HP JORNADA 7XX MACHINE SUPPORT
1904 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1905 S:      Maintained
1906 W:      www.jlime.com
1907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1908 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1909 F:      arch/arm/mach-sa1100/jornada720.c
1910
1911 ARM/IGEP MACHINE SUPPORT
1912 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1913 M:      Javier Martinez Canillas <javier@dowhile0.org>
1914 L:      linux-omap@vger.kernel.org
1915 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1916 S:      Maintained
1917 F:      arch/arm/boot/dts/omap3-igep*
1918
1919 ARM/INCOME PXA270 SUPPORT
1920 M:      Marek Vasut <marek.vasut@gmail.com>
1921 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1922 S:      Maintained
1923 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1924
1925 ARM/INTEL IOP32X ARM ARCHITECTURE
1926 M:      Lennert Buytenhek <kernel@wantstofly.org>
1927 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1928 S:      Maintained
1929
1930 ARM/INTEL IQ81342EX MACHINE SUPPORT
1931 M:      Lennert Buytenhek <kernel@wantstofly.org>
1932 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1933 S:      Maintained
1934
1935 ARM/INTEL IXDP2850 MACHINE SUPPORT
1936 M:      Lennert Buytenhek <kernel@wantstofly.org>
1937 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1938 S:      Maintained
1939
1940 ARM/INTEL IXP4XX ARM ARCHITECTURE
1941 M:      Linus Walleij <linusw@kernel.org>
1942 M:      Imre Kaloz <kaloz@openwrt.org>
1943 M:      Krzysztof Halasa <khalasa@piap.pl>
1944 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1945 S:      Maintained
1946 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1947 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1948 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1949 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1950 F:      arch/arm/mach-ixp4xx/
1951 F:      drivers/clocksource/timer-ixp4xx.c
1952 F:      drivers/gpio/gpio-ixp4xx.c
1953 F:      drivers/irqchip/irq-ixp4xx.c
1954 F:      include/linux/irqchip/irq-ixp4xx.h
1955 F:      include/linux/platform_data/timer-ixp4xx.h
1956
1957 ARM/INTEL KEEMBAY ARCHITECTURE
1958 M:      Paul J. Murphy <paul.j.murphy@intel.com>
1959 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
1960 S:      Maintained
1961 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
1962 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
1963 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
1964
1965 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1966 M:      Jonathan Cameron <jic23@cam.ac.uk>
1967 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1968 S:      Maintained
1969 F:      arch/arm/mach-pxa/stargate2.c
1970 F:      drivers/pcmcia/pxa2xx_stargate2.c
1971
1972 ARM/INTEL XSC3 (MANZANO) ARM CORE
1973 M:      Lennert Buytenhek <kernel@wantstofly.org>
1974 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1975 S:      Maintained
1976
1977 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1978 M:      Lennert Buytenhek <kernel@wantstofly.org>
1979 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1980 S:      Maintained
1981
1982 ARM/LG1K ARCHITECTURE
1983 M:      Chanho Min <chanho.min@lge.com>
1984 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1985 S:      Maintained
1986 F:      arch/arm64/boot/dts/lg/
1987
1988 ARM/LOGICPD PXA270 MACHINE SUPPORT
1989 M:      Lennert Buytenhek <kernel@wantstofly.org>
1990 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1991 S:      Maintained
1992
1993 ARM/LPC18XX ARCHITECTURE
1994 M:      Vladimir Zapolskiy <vz@mleia.com>
1995 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1996 S:      Maintained
1997 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1998 F:      arch/arm/boot/dts/lpc43*
1999 F:      drivers/i2c/busses/i2c-lpc2k.c
2000 F:      drivers/memory/pl172.c
2001 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2002 F:      drivers/rtc/rtc-lpc24xx.c
2003 N:      lpc18xx
2004
2005 ARM/LPC32XX SOC SUPPORT
2006 M:      Vladimir Zapolskiy <vz@mleia.com>
2007 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2008 S:      Maintained
2009 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2010 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2011 F:      arch/arm/boot/dts/lpc32*
2012 F:      arch/arm/mach-lpc32xx/
2013 F:      drivers/i2c/busses/i2c-pnx.c
2014 F:      drivers/net/ethernet/nxp/lpc_eth.c
2015 F:      drivers/usb/host/ohci-nxp.c
2016 F:      drivers/watchdog/pnx4008_wdt.c
2017 N:      lpc32xx
2018
2019 ARM/MAGICIAN MACHINE SUPPORT
2020 M:      Philipp Zabel <philipp.zabel@gmail.com>
2021 S:      Maintained
2022
2023 ARM/Marvell Dove/MV78xx0/Orion SOC support
2024 M:      Andrew Lunn <andrew@lunn.ch>
2025 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2026 M:      Gregory Clement <gregory.clement@bootlin.com>
2027 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2028 S:      Maintained
2029 T:      git git://git.infradead.org/linux-mvebu.git
2030 F:      Documentation/devicetree/bindings/soc/dove/
2031 F:      arch/arm/boot/dts/dove*
2032 F:      arch/arm/boot/dts/orion5x*
2033 F:      arch/arm/mach-dove/
2034 F:      arch/arm/mach-mv78xx0/
2035 F:      arch/arm/mach-orion5x/
2036 F:      arch/arm/plat-orion/
2037 F:      drivers/soc/dove/
2038
2039 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2040 M:      Andrew Lunn <andrew@lunn.ch>
2041 M:      Gregory Clement <gregory.clement@bootlin.com>
2042 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2043 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2044 S:      Maintained
2045 T:      git git://git.infradead.org/linux-mvebu.git
2046 F:      arch/arm/boot/dts/armada*
2047 F:      arch/arm/boot/dts/kirkwood*
2048 F:      arch/arm/configs/mvebu_*_defconfig
2049 F:      arch/arm/mach-mvebu/
2050 F:      arch/arm64/boot/dts/marvell/armada*
2051 F:      arch/arm64/boot/dts/marvell/cn913*
2052 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2053 F:      drivers/cpufreq/armada-8k-cpufreq.c
2054 F:      drivers/cpufreq/mvebu-cpufreq.c
2055 F:      drivers/irqchip/irq-armada-370-xp.c
2056 F:      drivers/irqchip/irq-mvebu-*
2057 F:      drivers/pinctrl/mvebu/
2058 F:      drivers/rtc/rtc-armada38x.c
2059
2060 ARM/Mediatek RTC DRIVER
2061 M:      Eddie Huang <eddie.huang@mediatek.com>
2062 M:      Sean Wang <sean.wang@mediatek.com>
2063 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2064 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2065 S:      Maintained
2066 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2067 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2068 F:      drivers/rtc/rtc-mt2712.c
2069 F:      drivers/rtc/rtc-mt6397.c
2070 F:      drivers/rtc/rtc-mt7622.c
2071
2072 ARM/Mediatek SoC support
2073 M:      Matthias Brugger <matthias.bgg@gmail.com>
2074 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2075 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2076 S:      Maintained
2077 W:      https://mtk.bcnfs.org/
2078 C:      irc://chat.freenode.net/linux-mediatek
2079 F:      arch/arm/boot/dts/mt6*
2080 F:      arch/arm/boot/dts/mt7*
2081 F:      arch/arm/boot/dts/mt8*
2082 F:      arch/arm/mach-mediatek/
2083 F:      arch/arm64/boot/dts/mediatek/
2084 F:      drivers/soc/mediatek/
2085 N:      mtk
2086 N:      mt[678]
2087 K:      mediatek
2088
2089 ARM/Mediatek USB3 PHY DRIVER
2090 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2091 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2092 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2093 S:      Maintained
2094 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2095 F:      drivers/phy/mediatek/
2096
2097 ARM/Microchip (AT91) SoC support
2098 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2099 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2100 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2101 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2102 S:      Supported
2103 W:      http://www.linux4sam.org
2104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2105 F:      arch/arm/boot/dts/at91*.dts
2106 F:      arch/arm/boot/dts/at91*.dtsi
2107 F:      arch/arm/boot/dts/sama*.dts
2108 F:      arch/arm/boot/dts/sama*.dtsi
2109 F:      arch/arm/include/debug/at91.S
2110 F:      arch/arm/mach-at91/
2111 F:      drivers/memory/atmel*
2112 F:      drivers/watchdog/sama5d4_wdt.c
2113 F:      include/soc/at91/
2114 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2115 X:      drivers/net/wireless/atmel/
2116 N:      at91
2117 N:      atmel
2118
2119 ARM/Microchip Sparx5 SoC support
2120 M:      Lars Povlsen <lars.povlsen@microchip.com>
2121 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2122 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
2123 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2124 S:      Supported
2125 T:      git git://github.com/microchip-ung/linux-upstream.git
2126 F:      arch/arm64/boot/dts/microchip/
2127 N:      sparx5
2128
2129 Microchip Timer Counter Block (TCB) Capture Driver
2130 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2131 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2132 L:      linux-iio@vger.kernel.org
2133 S:      Maintained
2134 F:      drivers/counter/microchip-tcb-capture.c
2135
2136 ARM/MIOA701 MACHINE SUPPORT
2137 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2138 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2139 S:      Maintained
2140 F:      arch/arm/mach-pxa/mioa701.c
2141
2142 ARM/MStar/Sigmastar Armv7 SoC support
2143 M:      Daniel Palmer <daniel@thingy.jp>
2144 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2145 S:      Maintained
2146 W:      http://linux-chenxing.org/
2147 F:      Documentation/devicetree/bindings/arm/mstar/*
2148 F:      arch/arm/boot/dts/mstar-*
2149 F:      arch/arm/mach-mstar/
2150
2151 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2152 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2153 S:      Maintained
2154
2155 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2156 M:      Linus Walleij <linus.walleij@linaro.org>
2157 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2158 S:      Maintained
2159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2160 F:      Documentation/devicetree/bindings/arm/ste-*
2161 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2162 F:      Documentation/devicetree/bindings/arm/ux500/
2163 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2164 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2165 F:      arch/arm/boot/dts/ste-*
2166 F:      arch/arm/mach-nomadik/
2167 F:      arch/arm/mach-u300/
2168 F:      arch/arm/mach-ux500/
2169 F:      drivers/clk/clk-nomadik.c
2170 F:      drivers/clk/clk-u300.c
2171 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2172 F:      drivers/clocksource/timer-u300.c
2173 F:      drivers/dma/coh901318*
2174 F:      drivers/dma/ste_dma40*
2175 F:      drivers/hwspinlock/u8500_hsem.c
2176 F:      drivers/i2c/busses/i2c-nomadik.c
2177 F:      drivers/i2c/busses/i2c-stu300.c
2178 F:      drivers/iio/adc/ab8500-gpadc.c
2179 F:      drivers/mfd/ab3100*
2180 F:      drivers/mfd/ab8500*
2181 F:      drivers/mfd/abx500*
2182 F:      drivers/mfd/db8500*
2183 F:      drivers/mfd/dbx500*
2184 F:      drivers/pinctrl/nomadik/
2185 F:      drivers/pinctrl/pinctrl-coh901*
2186 F:      drivers/pinctrl/pinctrl-u300.c
2187 F:      drivers/rtc/rtc-ab3100.c
2188 F:      drivers/rtc/rtc-ab8500.c
2189 F:      drivers/rtc/rtc-coh901331.c
2190 F:      drivers/rtc/rtc-pl031.c
2191 F:      drivers/soc/ux500/
2192 F:      drivers/watchdog/coh901327_wdt.c
2193
2194 ARM/NUVOTON NPCM ARCHITECTURE
2195 M:      Avi Fishman <avifishman70@gmail.com>
2196 M:      Tomer Maimon <tmaimon77@gmail.com>
2197 M:      Tali Perry <tali.perry1@gmail.com>
2198 R:      Patrick Venture <venture@google.com>
2199 R:      Nancy Yuen <yuenn@google.com>
2200 R:      Benjamin Fair <benjaminfair@google.com>
2201 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2202 S:      Supported
2203 F:      Documentation/devicetree/bindings/*/*/*npcm*
2204 F:      Documentation/devicetree/bindings/*/*npcm*
2205 F:      arch/arm/boot/dts/nuvoton-npcm*
2206 F:      arch/arm/mach-npcm/
2207 F:      drivers/*/*npcm*
2208 F:      drivers/*/*/*npcm*
2209 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2210
2211 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2212 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2213 S:      Orphan
2214 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2215 F:      arch/arm/mach-s3c/gta02.h
2216 F:      arch/arm/mach-s3c/mach-gta02.c
2217
2218 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2219 M:      Alexander Clouter <alex@digriz.org.uk>
2220 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2221 S:      Maintained
2222 W:      http://www.digriz.org.uk/ts78xx/kernel
2223 F:      arch/arm/mach-orion5x/ts78xx-*
2224
2225 ARM/OXNAS platform support
2226 M:      Neil Armstrong <narmstrong@baylibre.com>
2227 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2228 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2229 S:      Maintained
2230 F:      arch/arm/boot/dts/ox8*.dts*
2231 F:      arch/arm/mach-oxnas/
2232 F:      drivers/power/reset/oxnas-restart.c
2233 N:      oxnas
2234
2235 ARM/PALM TREO SUPPORT
2236 M:      Tomas Cech <sleep_walker@suse.com>
2237 L:      linux-arm-kernel@lists.infradead.org
2238 S:      Maintained
2239 W:      http://hackndev.com
2240 F:      arch/arm/mach-pxa/palmtreo.*
2241
2242 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2243 M:      Marek Vasut <marek.vasut@gmail.com>
2244 L:      linux-arm-kernel@lists.infradead.org
2245 S:      Maintained
2246 W:      http://hackndev.com
2247 F:      arch/arm/mach-pxa/include/mach/palmld.h
2248 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2249 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2250 F:      arch/arm/mach-pxa/palmld.c
2251 F:      arch/arm/mach-pxa/palmt5.*
2252 F:      arch/arm/mach-pxa/palmtc.c
2253 F:      arch/arm/mach-pxa/palmte2.*
2254 F:      arch/arm/mach-pxa/palmtx.c
2255
2256 ARM/PALMZ72 SUPPORT
2257 M:      Sergey Lapin <slapin@ossfans.org>
2258 L:      linux-arm-kernel@lists.infradead.org
2259 S:      Maintained
2260 W:      http://hackndev.com
2261 F:      arch/arm/mach-pxa/palmz72.*
2262
2263 ARM/PLEB SUPPORT
2264 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2265 S:      Maintained
2266 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2267
2268 ARM/PT DIGITAL BOARD PORT
2269 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2270 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2271 S:      Maintained
2272 W:      http://www.armlinux.org.uk/
2273
2274 ARM/QUALCOMM SUPPORT
2275 M:      Andy Gross <agross@kernel.org>
2276 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2277 L:      linux-arm-msm@vger.kernel.org
2278 S:      Maintained
2279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2280 F:      Documentation/devicetree/bindings/*/qcom*
2281 F:      Documentation/devicetree/bindings/soc/qcom/
2282 F:      arch/arm/boot/dts/qcom-*.dts
2283 F:      arch/arm/boot/dts/qcom-*.dtsi
2284 F:      arch/arm/mach-qcom/
2285 F:      arch/arm64/boot/dts/qcom/
2286 F:      drivers/*/*/qcom*
2287 F:      drivers/*/*/qcom/
2288 F:      drivers/*/pm8???-*
2289 F:      drivers/*/qcom*
2290 F:      drivers/*/qcom/
2291 F:      drivers/bluetooth/btqcomsmd.c
2292 F:      drivers/clocksource/timer-qcom.c
2293 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2294 F:      drivers/extcon/extcon-qcom*
2295 F:      drivers/i2c/busses/i2c-qcom-geni.c
2296 F:      drivers/i2c/busses/i2c-qup.c
2297 F:      drivers/iommu/msm*
2298 F:      drivers/mfd/ssbi.c
2299 F:      drivers/mmc/host/mmci_qcom*
2300 F:      drivers/mmc/host/sdhci-msm.c
2301 F:      drivers/pci/controller/dwc/pcie-qcom.c
2302 F:      drivers/phy/qualcomm/
2303 F:      drivers/power/*/msm*
2304 F:      drivers/reset/reset-qcom-*
2305 F:      drivers/scsi/ufs/ufs-qcom*
2306 F:      drivers/spi/spi-geni-qcom.c
2307 F:      drivers/spi/spi-qcom-qspi.c
2308 F:      drivers/spi/spi-qup.c
2309 F:      drivers/tty/serial/msm_serial.c
2310 F:      drivers/usb/dwc3/dwc3-qcom.c
2311 F:      include/dt-bindings/*/qcom*
2312 F:      include/linux/*/qcom*
2313
2314 ARM/RADISYS ENP2611 MACHINE SUPPORT
2315 M:      Lennert Buytenhek <kernel@wantstofly.org>
2316 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2317 S:      Maintained
2318
2319 ARM/RDA MICRO ARCHITECTURE
2320 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2321 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2322 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2323 S:      Maintained
2324 F:      Documentation/devicetree/bindings/arm/rda.yaml
2325 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2326 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2327 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2328 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2329 F:      arch/arm/boot/dts/rda8810pl-*
2330 F:      drivers/clocksource/timer-rda.c
2331 F:      drivers/gpio/gpio-rda.c
2332 F:      drivers/irqchip/irq-rda-intc.c
2333 F:      drivers/tty/serial/rda-uart.c
2334
2335 ARM/REALTEK ARCHITECTURE
2336 M:      Andreas Färber <afaerber@suse.de>
2337 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2338 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2339 S:      Maintained
2340 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2341 F:      arch/arm/boot/dts/rtd*
2342 F:      arch/arm/mach-realtek/
2343 F:      arch/arm64/boot/dts/realtek/
2344
2345 ARM/RENESAS ARM64 ARCHITECTURE
2346 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2347 M:      Magnus Damm <magnus.damm@gmail.com>
2348 L:      linux-renesas-soc@vger.kernel.org
2349 S:      Supported
2350 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2352 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2353 F:      arch/arm64/boot/dts/renesas/
2354 F:      drivers/soc/renesas/
2355 F:      include/linux/soc/renesas/
2356
2357 ARM/RISCPC ARCHITECTURE
2358 M:      Russell King <linux@armlinux.org.uk>
2359 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2360 S:      Maintained
2361 W:      http://www.armlinux.org.uk/
2362 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2363 F:      arch/arm/include/asm/hardware/ioc.h
2364 F:      arch/arm/include/asm/hardware/iomd.h
2365 F:      arch/arm/include/asm/hardware/memc.h
2366 F:      arch/arm/mach-rpc/
2367 F:      drivers/net/ethernet/8390/etherh.c
2368 F:      drivers/net/ethernet/i825xx/ether1*
2369 F:      drivers/net/ethernet/seeq/ether3*
2370 F:      drivers/scsi/arm/
2371
2372 ARM/Rockchip SoC support
2373 M:      Heiko Stuebner <heiko@sntech.de>
2374 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2375 L:      linux-rockchip@lists.infradead.org
2376 S:      Maintained
2377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2378 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2379 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2380 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2381 F:      arch/arm/boot/dts/rk3*
2382 F:      arch/arm/boot/dts/rv1108*
2383 F:      arch/arm/mach-rockchip/
2384 F:      drivers/*/*/*rockchip*
2385 F:      drivers/*/*rockchip*
2386 F:      drivers/clk/rockchip/
2387 F:      drivers/i2c/busses/i2c-rk3x.c
2388 F:      sound/soc/rockchip/
2389 N:      rockchip
2390
2391 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2392 M:      Krzysztof Kozlowski <krzk@kernel.org>
2393 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2394 L:      linux-samsung-soc@vger.kernel.org
2395 S:      Maintained
2396 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2397 F:      Documentation/arm/samsung/
2398 F:      Documentation/devicetree/bindings/arm/samsung/
2399 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2400 F:      arch/arm/boot/dts/exynos*
2401 F:      arch/arm/boot/dts/s3c*
2402 F:      arch/arm/boot/dts/s5p*
2403 F:      arch/arm/mach-exynos*/
2404 F:      arch/arm/mach-s3c/
2405 F:      arch/arm/mach-s5p*/
2406 F:      arch/arm64/boot/dts/exynos/
2407 F:      drivers/*/*/*s3c24*
2408 F:      drivers/*/*s3c24*
2409 F:      drivers/*/*s3c64xx*
2410 F:      drivers/*/*s5pv210*
2411 F:      drivers/memory/samsung/
2412 F:      drivers/soc/samsung/
2413 F:      drivers/tty/serial/samsung*
2414 F:      include/linux/soc/samsung/
2415 N:      exynos
2416 N:      s3c2410
2417 N:      s3c64xx
2418 N:      s5pv210
2419
2420 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2421 M:      Andrzej Hajda <a.hajda@samsung.com>
2422 L:      linux-arm-kernel@lists.infradead.org
2423 L:      linux-media@vger.kernel.org
2424 S:      Maintained
2425 F:      drivers/media/platform/s5p-g2d/
2426
2427 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2428 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2429 L:      linux-samsung-soc@vger.kernel.org
2430 L:      linux-media@vger.kernel.org
2431 S:      Maintained
2432 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2433 F:      drivers/media/cec/platform/s5p/
2434
2435 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2436 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2437 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2438 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2439 L:      linux-arm-kernel@lists.infradead.org
2440 L:      linux-media@vger.kernel.org
2441 S:      Maintained
2442 F:      drivers/media/platform/s5p-jpeg/
2443
2444 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2445 M:      Andrzej Hajda <a.hajda@samsung.com>
2446 L:      linux-arm-kernel@lists.infradead.org
2447 L:      linux-media@vger.kernel.org
2448 S:      Maintained
2449 F:      drivers/media/platform/s5p-mfc/
2450
2451 ARM/SHMOBILE ARM ARCHITECTURE
2452 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2453 M:      Magnus Damm <magnus.damm@gmail.com>
2454 L:      linux-renesas-soc@vger.kernel.org
2455 S:      Supported
2456 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2458 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2459 F:      arch/arm/boot/dts/emev2*
2460 F:      arch/arm/boot/dts/gr-peach*
2461 F:      arch/arm/boot/dts/iwg20d-q7*
2462 F:      arch/arm/boot/dts/r7s*
2463 F:      arch/arm/boot/dts/r8a*
2464 F:      arch/arm/boot/dts/r9a*
2465 F:      arch/arm/boot/dts/sh*
2466 F:      arch/arm/configs/shmobile_defconfig
2467 F:      arch/arm/include/debug/renesas-scif.S
2468 F:      arch/arm/mach-shmobile/
2469 F:      drivers/soc/renesas/
2470 F:      include/linux/soc/renesas/
2471
2472 ARM/SOCFPGA ARCHITECTURE
2473 M:      Dinh Nguyen <dinguyen@kernel.org>
2474 S:      Maintained
2475 W:      http://www.rocketboards.org
2476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2477 F:      arch/arm/boot/dts/socfpga*
2478 F:      arch/arm/configs/socfpga_defconfig
2479 F:      arch/arm/mach-socfpga/
2480 F:      arch/arm64/boot/dts/altera/
2481 F:      arch/arm64/boot/dts/intel/
2482
2483 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2484 M:      Dinh Nguyen <dinguyen@kernel.org>
2485 S:      Maintained
2486 F:      drivers/clk/socfpga/
2487
2488 ARM/SOCFPGA EDAC SUPPORT
2489 M:      Dinh Nguyen <dinguyen@kernel.org>
2490 S:      Maintained
2491 F:      drivers/edac/altera_edac.[ch]
2492
2493 ARM/SPREADTRUM SoC SUPPORT
2494 M:      Orson Zhai <orsonzhai@gmail.com>
2495 M:      Baolin Wang <baolin.wang7@gmail.com>
2496 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2497 S:      Maintained
2498 F:      arch/arm64/boot/dts/sprd
2499 N:      sprd
2500 N:      sc27xx
2501 N:      sc2731
2502
2503 ARM/STI ARCHITECTURE
2504 M:      Patrice Chotard <patrice.chotard@st.com>
2505 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2506 S:      Maintained
2507 W:      http://www.stlinux.com
2508 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2509 F:      arch/arm/boot/dts/sti*
2510 F:      arch/arm/mach-sti/
2511 F:      drivers/ata/ahci_st.c
2512 F:      drivers/char/hw_random/st-rng.c
2513 F:      drivers/clocksource/arm_global_timer.c
2514 F:      drivers/clocksource/clksrc_st_lpc.c
2515 F:      drivers/cpufreq/sti-cpufreq.c
2516 F:      drivers/dma/st_fdma*
2517 F:      drivers/i2c/busses/i2c-st.c
2518 F:      drivers/media/platform/sti/c8sectpfe/
2519 F:      drivers/media/rc/st_rc.c
2520 F:      drivers/mmc/host/sdhci-st.c
2521 F:      drivers/phy/st/phy-miphy28lp.c
2522 F:      drivers/phy/st/phy-stih407-usb.c
2523 F:      drivers/pinctrl/pinctrl-st.c
2524 F:      drivers/remoteproc/st_remoteproc.c
2525 F:      drivers/remoteproc/st_slim_rproc.c
2526 F:      drivers/reset/sti/
2527 F:      drivers/rtc/rtc-st-lpc.c
2528 F:      drivers/tty/serial/st-asc.c
2529 F:      drivers/usb/dwc3/dwc3-st.c
2530 F:      drivers/usb/host/ehci-st.c
2531 F:      drivers/usb/host/ohci-st.c
2532 F:      drivers/watchdog/st_lpc_wdt.c
2533 F:      include/linux/remoteproc/st_slim_rproc.h
2534
2535 ARM/STM32 ARCHITECTURE
2536 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2537 M:      Alexandre Torgue <alexandre.torgue@st.com>
2538 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2539 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2540 S:      Maintained
2541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2542 F:      arch/arm/boot/dts/stm32*
2543 F:      arch/arm/mach-stm32/
2544 F:      drivers/clocksource/armv7m_systick.c
2545 N:      stm32
2546 N:      stm
2547
2548 ARM/Synaptics SoC support
2549 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2550 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2551 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2552 S:      Maintained
2553 F:      arch/arm/boot/dts/berlin*
2554 F:      arch/arm/mach-berlin/
2555 F:      arch/arm64/boot/dts/synaptics/
2556
2557 ARM/TANGO ARCHITECTURE
2558 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2559 M:      Mans Rullgard <mans@mansr.com>
2560 L:      linux-arm-kernel@lists.infradead.org
2561 S:      Odd Fixes
2562 N:      tango
2563
2564 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2565 M:      Lennert Buytenhek <kernel@wantstofly.org>
2566 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2567 S:      Maintained
2568
2569 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2570 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2571 L:      linux-tegra@vger.kernel.org
2572 L:      linux-media@vger.kernel.org
2573 S:      Maintained
2574 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2575 F:      drivers/media/cec/platform/tegra/
2576
2577 ARM/TETON BGA MACHINE SUPPORT
2578 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2579 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2580 S:      Maintained
2581
2582 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2583 M:      Santosh Shilimkar <ssantosh@kernel.org>
2584 L:      linux-kernel@vger.kernel.org
2585 S:      Maintained
2586 F:      drivers/memory/*emif*
2587
2588 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2589 M:      Santosh Shilimkar <ssantosh@kernel.org>
2590 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2591 S:      Maintained
2592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2593 F:      arch/arm/boot/dts/keystone-*
2594 F:      arch/arm/mach-keystone/
2595
2596 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2597 M:      Santosh Shilimkar <ssantosh@kernel.org>
2598 L:      linux-kernel@vger.kernel.org
2599 S:      Maintained
2600 F:      drivers/clk/keystone/
2601
2602 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2603 M:      Santosh Shilimkar <ssantosh@kernel.org>
2604 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2605 L:      linux-kernel@vger.kernel.org
2606 S:      Maintained
2607 F:      drivers/clocksource/timer-keystone.c
2608
2609 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2610 M:      Santosh Shilimkar <ssantosh@kernel.org>
2611 L:      linux-kernel@vger.kernel.org
2612 S:      Maintained
2613 F:      drivers/power/reset/keystone-reset.c
2614
2615 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2616 M:      Tero Kristo <t-kristo@ti.com>
2617 M:      Nishanth Menon <nm@ti.com>
2618 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2619 S:      Supported
2620 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2621 F:      arch/arm64/boot/dts/ti/Makefile
2622 F:      arch/arm64/boot/dts/ti/k3-*
2623 F:      include/dt-bindings/pinctrl/k3.h
2624
2625 ARM/THECUS N2100 MACHINE SUPPORT
2626 M:      Lennert Buytenhek <kernel@wantstofly.org>
2627 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2628 S:      Maintained
2629
2630 ARM/TOSA MACHINE SUPPORT
2631 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2632 M:      Dirk Opfer <dirk@opfer-online.de>
2633 S:      Maintained
2634
2635 ARM/TOSHIBA VISCONTI ARCHITECTURE
2636 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2637 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2638 S:      Supported
2639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2640 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2641 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2642 F:      arch/arm64/boot/dts/toshiba/
2643 F:      drivers/pinctrl/visconti/
2644 N:      visconti
2645
2646 ARM/UNIPHIER ARCHITECTURE
2647 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2648 S:      Orphan
2649 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2650 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2651 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2652 F:      arch/arm/boot/dts/uniphier*
2653 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2654 F:      arch/arm/mach-uniphier/
2655 F:      arch/arm/mm/cache-uniphier.c
2656 F:      arch/arm64/boot/dts/socionext/uniphier*
2657 F:      drivers/bus/uniphier-system-bus.c
2658 F:      drivers/clk/uniphier/
2659 F:      drivers/dma/uniphier-mdmac.c
2660 F:      drivers/gpio/gpio-uniphier.c
2661 F:      drivers/i2c/busses/i2c-uniphier*
2662 F:      drivers/irqchip/irq-uniphier-aidet.c
2663 F:      drivers/mmc/host/uniphier-sd.c
2664 F:      drivers/pinctrl/uniphier/
2665 F:      drivers/reset/reset-uniphier.c
2666 F:      drivers/tty/serial/8250/8250_uniphier.c
2667 N:      uniphier
2668
2669 ARM/VERSATILE EXPRESS PLATFORM
2670 M:      Liviu Dudau <liviu.dudau@arm.com>
2671 M:      Sudeep Holla <sudeep.holla@arm.com>
2672 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2673 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2674 S:      Maintained
2675 F:      */*/*/vexpress*
2676 F:      */*/vexpress*
2677 F:      arch/arm/boot/dts/vexpress*
2678 F:      arch/arm/mach-vexpress/
2679 F:      arch/arm64/boot/dts/arm/
2680 F:      drivers/clk/versatile/clk-vexpress-osc.c
2681 F:      drivers/clocksource/timer-versatile.c
2682 N:      mps2
2683
2684 ARM/VFP SUPPORT
2685 M:      Russell King <linux@armlinux.org.uk>
2686 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2687 S:      Maintained
2688 W:      http://www.armlinux.org.uk/
2689 F:      arch/arm/vfp/
2690
2691 ARM/VOIPAC PXA270 SUPPORT
2692 M:      Marek Vasut <marek.vasut@gmail.com>
2693 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2694 S:      Maintained
2695 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2696 F:      arch/arm/mach-pxa/vpac270.c
2697
2698 ARM/VT8500 ARM ARCHITECTURE
2699 M:      Tony Prisk <linux@prisktech.co.nz>
2700 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2701 S:      Maintained
2702 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2703 F:      arch/arm/mach-vt8500/
2704 F:      drivers/clocksource/timer-vt8500.c
2705 F:      drivers/i2c/busses/i2c-wmt.c
2706 F:      drivers/mmc/host/wmt-sdmmc.c
2707 F:      drivers/pwm/pwm-vt8500.c
2708 F:      drivers/rtc/rtc-vt8500.c
2709 F:      drivers/tty/serial/vt8500_serial.c
2710 F:      drivers/usb/host/ehci-platform.c
2711 F:      drivers/usb/host/uhci-platform.c
2712 F:      drivers/video/fbdev/vt8500lcdfb.*
2713 F:      drivers/video/fbdev/wm8505fb*
2714 F:      drivers/video/fbdev/wmt_ge_rops.*
2715
2716 ARM/ZIPIT Z2 SUPPORT
2717 M:      Marek Vasut <marek.vasut@gmail.com>
2718 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2719 S:      Maintained
2720 F:      arch/arm/mach-pxa/include/mach/z2.h
2721 F:      arch/arm/mach-pxa/z2.c
2722
2723 ARM/ZTE ARCHITECTURE
2724 M:      Jun Nie <jun.nie@linaro.org>
2725 M:      Shawn Guo <shawnguo@kernel.org>
2726 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2727 S:      Maintained
2728 F:      Documentation/devicetree/bindings/arm/zte.yaml
2729 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2730 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2731 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2732 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2733 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2734 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2735 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2736 F:      Documentation/devicetree/bindings/soc/zte/
2737 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2738 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2739 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2740 F:      arch/arm/boot/dts/zx2967*
2741 F:      arch/arm/mach-zx/
2742 F:      arch/arm64/boot/dts/zte/
2743 F:      drivers/clk/zte/
2744 F:      drivers/dma/zx_dma.c
2745 F:      drivers/gpio/gpio-zx.c
2746 F:      drivers/i2c/busses/i2c-zx2967.c
2747 F:      drivers/mmc/host/dw_mmc-zx.*
2748 F:      drivers/pinctrl/zte/
2749 F:      drivers/soc/zte/
2750 F:      drivers/thermal/zx2967_thermal.c
2751 F:      drivers/watchdog/zx2967_wdt.c
2752 F:      include/dt-bindings/clock/zx2967*.h
2753 F:      include/dt-bindings/soc/zte,*.h
2754 F:      sound/soc/codecs/zx_aud96p22.c
2755 F:      sound/soc/zte/
2756
2757 ARM/ZYNQ ARCHITECTURE
2758 M:      Michal Simek <michal.simek@xilinx.com>
2759 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2760 S:      Supported
2761 W:      http://wiki.xilinx.com
2762 T:      git https://github.com/Xilinx/linux-xlnx.git
2763 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2764 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2765 F:      arch/arm/mach-zynq/
2766 F:      drivers/block/xsysace.c
2767 F:      drivers/clocksource/timer-cadence-ttc.c
2768 F:      drivers/cpuidle/cpuidle-zynq.c
2769 F:      drivers/edac/synopsys_edac.c
2770 F:      drivers/i2c/busses/i2c-cadence.c
2771 F:      drivers/i2c/busses/i2c-xiic.c
2772 F:      drivers/mmc/host/sdhci-of-arasan.c
2773 N:      zynq
2774 N:      xilinx
2775
2776 ARM64 PORT (AARCH64 ARCHITECTURE)
2777 M:      Catalin Marinas <catalin.marinas@arm.com>
2778 M:      Will Deacon <will@kernel.org>
2779 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2780 S:      Maintained
2781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2782 F:      Documentation/arm64/
2783 F:      arch/arm64/
2784 F:      tools/testing/selftests/arm64/
2785 X:      arch/arm64/boot/dts/
2786
2787 AS3645A LED FLASH CONTROLLER DRIVER
2788 M:      Sakari Ailus <sakari.ailus@iki.fi>
2789 L:      linux-leds@vger.kernel.org
2790 S:      Maintained
2791 F:      drivers/leds/leds-as3645a.c
2792
2793 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2794 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2795 L:      linux-media@vger.kernel.org
2796 S:      Maintained
2797 T:      git git://linuxtv.org/media_tree.git
2798 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2799 F:      drivers/media/i2c/ak7375.c
2800
2801 ASAHI KASEI AK8974 DRIVER
2802 M:      Linus Walleij <linus.walleij@linaro.org>
2803 L:      linux-iio@vger.kernel.org
2804 S:      Supported
2805 W:      http://www.akm.com/
2806 F:      drivers/iio/magnetometer/ak8974.c
2807
2808 ASC7621 HARDWARE MONITOR DRIVER
2809 M:      George Joseph <george.joseph@fairview5.com>
2810 L:      linux-hwmon@vger.kernel.org
2811 S:      Maintained
2812 F:      Documentation/hwmon/asc7621.rst
2813 F:      drivers/hwmon/asc7621.c
2814
2815 ASPEED PINCTRL DRIVERS
2816 M:      Andrew Jeffery <andrew@aj.id.au>
2817 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2818 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2819 L:      linux-gpio@vger.kernel.org
2820 S:      Maintained
2821 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2822 F:      drivers/pinctrl/aspeed/
2823
2824 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2825 M:      Eddie James <eajames@linux.ibm.com>
2826 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2827 S:      Maintained
2828 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2829 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2830 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2831
2832 ASPEED VIDEO ENGINE DRIVER
2833 M:      Eddie James <eajames@linux.ibm.com>
2834 L:      linux-media@vger.kernel.org
2835 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2836 S:      Maintained
2837 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2838 F:      drivers/media/platform/aspeed-video.c
2839
2840 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2841 M:      Corentin Chary <corentin.chary@gmail.com>
2842 L:      acpi4asus-user@lists.sourceforge.net
2843 L:      platform-driver-x86@vger.kernel.org
2844 S:      Maintained
2845 W:      http://acpi4asus.sf.net
2846 F:      drivers/platform/x86/asus*.c
2847 F:      drivers/platform/x86/eeepc*.c
2848
2849 ASUS WIRELESS RADIO CONTROL DRIVER
2850 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2851 L:      platform-driver-x86@vger.kernel.org
2852 S:      Maintained
2853 F:      drivers/platform/x86/asus-wireless.c
2854
2855 ASYMMETRIC KEYS
2856 M:      David Howells <dhowells@redhat.com>
2857 L:      keyrings@vger.kernel.org
2858 S:      Maintained
2859 F:      Documentation/crypto/asymmetric-keys.rst
2860 F:      crypto/asymmetric_keys/
2861 F:      include/crypto/pkcs7.h
2862 F:      include/crypto/public_key.h
2863 F:      include/linux/verification.h
2864
2865 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2866 R:      Dan Williams <dan.j.williams@intel.com>
2867 S:      Odd fixes
2868 W:      http://sourceforge.net/projects/xscaleiop
2869 F:      Documentation/crypto/async-tx-api.rst
2870 F:      crypto/async_tx/
2871 F:      drivers/dma/
2872 F:      include/linux/async_tx.h
2873 F:      include/linux/dmaengine.h
2874
2875 AT24 EEPROM DRIVER
2876 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2877 L:      linux-i2c@vger.kernel.org
2878 S:      Maintained
2879 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2880 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2881 F:      drivers/misc/eeprom/at24.c
2882
2883 ATA OVER ETHERNET (AOE) DRIVER
2884 M:      "Justin Sanders" <justin@coraid.com>
2885 S:      Supported
2886 W:      http://www.openaoe.org/
2887 F:      Documentation/admin-guide/aoe/
2888 F:      drivers/block/aoe/
2889
2890 ATHEROS 71XX/9XXX GPIO 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/gpio/gpio-ath79.txt
2896 F:      drivers/gpio/gpio-ath79.c
2897
2898 ATHEROS 71XX/9XXX USB PHY DRIVER
2899 M:      Alban Bedel <albeu@free.fr>
2900 S:      Maintained
2901 W:      https://github.com/AlbanBedel/linux
2902 T:      git git://github.com/AlbanBedel/linux
2903 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2904 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2905
2906 ATHEROS ATH GENERIC UTILITIES
2907 M:      Kalle Valo <kvalo@codeaurora.org>
2908 L:      linux-wireless@vger.kernel.org
2909 S:      Supported
2910 F:      drivers/net/wireless/ath/*
2911
2912 ATHEROS ATH5K WIRELESS DRIVER
2913 M:      Jiri Slaby <jirislaby@kernel.org>
2914 M:      Nick Kossifidis <mickflemm@gmail.com>
2915 M:      Luis Chamberlain <mcgrof@kernel.org>
2916 L:      linux-wireless@vger.kernel.org
2917 S:      Maintained
2918 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2919 F:      drivers/net/wireless/ath/ath5k/
2920
2921 ATHEROS ATH6KL WIRELESS DRIVER
2922 M:      Kalle Valo <kvalo@codeaurora.org>
2923 L:      linux-wireless@vger.kernel.org
2924 S:      Supported
2925 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2927 F:      drivers/net/wireless/ath/ath6kl/
2928
2929 ATI_REMOTE2 DRIVER
2930 M:      Ville Syrjala <syrjala@sci.fi>
2931 S:      Maintained
2932 F:      drivers/input/misc/ati_remote2.c
2933
2934 ATK0110 HWMON DRIVER
2935 M:      Luca Tettamanti <kronos.it@gmail.com>
2936 L:      linux-hwmon@vger.kernel.org
2937 S:      Maintained
2938 F:      drivers/hwmon/asus_atk0110.c
2939
2940 ATLX ETHERNET DRIVERS
2941 M:      Jay Cliburn <jcliburn@gmail.com>
2942 M:      Chris Snook <chris.snook@gmail.com>
2943 L:      netdev@vger.kernel.org
2944 S:      Maintained
2945 W:      http://sourceforge.net/projects/atl1
2946 W:      http://atl1.sourceforge.net
2947 F:      drivers/net/ethernet/atheros/
2948
2949 ATM
2950 M:      Chas Williams <3chas3@gmail.com>
2951 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2952 L:      netdev@vger.kernel.org
2953 S:      Maintained
2954 W:      http://linux-atm.sourceforge.net
2955 F:      drivers/atm/
2956 F:      include/linux/atm*
2957 F:      include/uapi/linux/atm*
2958
2959 ATMEL MACB ETHERNET DRIVER
2960 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2961 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2962 S:      Supported
2963 F:      drivers/net/ethernet/cadence/
2964
2965 ATMEL MAXTOUCH DRIVER
2966 M:      Nick Dyer <nick@shmanahar.org>
2967 S:      Maintained
2968 T:      git git://github.com/ndyer/linux.git
2969 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2970 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2971
2972 ATMEL WIRELESS DRIVER
2973 M:      Simon Kelley <simon@thekelleys.org.uk>
2974 L:      linux-wireless@vger.kernel.org
2975 S:      Maintained
2976 W:      http://www.thekelleys.org.uk/atmel
2977 W:      http://atmelwlandriver.sourceforge.net/
2978 F:      drivers/net/wireless/atmel/atmel*
2979
2980 ATOMIC INFRASTRUCTURE
2981 M:      Will Deacon <will@kernel.org>
2982 M:      Peter Zijlstra <peterz@infradead.org>
2983 R:      Boqun Feng <boqun.feng@gmail.com>
2984 L:      linux-kernel@vger.kernel.org
2985 S:      Maintained
2986 F:      arch/*/include/asm/atomic*.h
2987 F:      include/*/atomic*.h
2988 F:      include/linux/refcount.h
2989 F:      Documentation/atomic_*.txt
2990 F:      scripts/atomic/
2991
2992 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2993 M:      Bradley Grove <linuxdrivers@attotech.com>
2994 L:      linux-scsi@vger.kernel.org
2995 S:      Supported
2996 W:      http://www.attotech.com
2997 F:      drivers/scsi/esas2r
2998
2999 ATUSB IEEE 802.15.4 RADIO DRIVER
3000 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3001 L:      linux-wpan@vger.kernel.org
3002 S:      Maintained
3003 F:      drivers/net/ieee802154/at86rf230.h
3004 F:      drivers/net/ieee802154/atusb.c
3005 F:      drivers/net/ieee802154/atusb.h
3006
3007 AUDIT SUBSYSTEM
3008 M:      Paul Moore <paul@paul-moore.com>
3009 M:      Eric Paris <eparis@redhat.com>
3010 L:      linux-audit@redhat.com (moderated for non-subscribers)
3011 S:      Supported
3012 W:      https://github.com/linux-audit
3013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3014 F:      include/linux/audit.h
3015 F:      include/uapi/linux/audit.h
3016 F:      kernel/audit*
3017
3018 AUXILIARY DISPLAY DRIVERS
3019 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3020 S:      Maintained
3021 F:      drivers/auxdisplay/
3022 F:      include/linux/cfag12864b.h
3023
3024 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3025 M:      Andreas Klinger <ak@it-klinger.de>
3026 L:      linux-iio@vger.kernel.org
3027 S:      Maintained
3028 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3029 F:      drivers/iio/adc/hx711.c
3030
3031 AX.25 NETWORK LAYER
3032 M:      Ralf Baechle <ralf@linux-mips.org>
3033 L:      linux-hams@vger.kernel.org
3034 S:      Maintained
3035 W:      http://www.linux-ax25.org/
3036 F:      include/net/ax25.h
3037 F:      include/uapi/linux/ax25.h
3038 F:      net/ax25/
3039
3040 AXENTIA ARM DEVICES
3041 M:      Peter Rosin <peda@axentia.se>
3042 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3043 S:      Maintained
3044 F:      arch/arm/boot/dts/at91-linea.dtsi
3045 F:      arch/arm/boot/dts/at91-natte.dtsi
3046 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3047 F:      arch/arm/boot/dts/at91-tse850-3.dts
3048
3049 AXENTIA ASOC DRIVERS
3050 M:      Peter Rosin <peda@axentia.se>
3051 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3052 S:      Maintained
3053 F:      Documentation/devicetree/bindings/sound/axentia,*
3054 F:      sound/soc/atmel/tse850-pcm5142.c
3055
3056 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3057 M:      Nuno Sá <nuno.sa@analog.com>
3058 L:      linux-hwmon@vger.kernel.org
3059 S:      Supported
3060 W:      http://ez.analog.com/community/linux-device-drivers
3061 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3062 F:      drivers/hwmon/axi-fan-control.c
3063
3064 AXXIA I2C CONTROLLER
3065 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3066 L:      linux-i2c@vger.kernel.org
3067 S:      Maintained
3068 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3069 F:      drivers/i2c/busses/i2c-axxia.c
3070
3071 AZ6007 DVB DRIVER
3072 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
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/usb/dvb-usb-v2/az6007.c
3078
3079 AZTECH FM RADIO RECEIVER DRIVER
3080 M:      Hans Verkuil <hverkuil@xs4all.nl>
3081 L:      linux-media@vger.kernel.org
3082 S:      Maintained
3083 W:      https://linuxtv.org
3084 T:      git git://linuxtv.org/media_tree.git
3085 F:      drivers/media/radio/radio-aztech*
3086
3087 B43 WIRELESS DRIVER
3088 L:      linux-wireless@vger.kernel.org
3089 L:      b43-dev@lists.infradead.org
3090 S:      Odd Fixes
3091 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3092 F:      drivers/net/wireless/broadcom/b43/
3093
3094 B43LEGACY WIRELESS DRIVER
3095 M:      Larry Finger <Larry.Finger@lwfinger.net>
3096 L:      linux-wireless@vger.kernel.org
3097 L:      b43-dev@lists.infradead.org
3098 S:      Maintained
3099 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3100 F:      drivers/net/wireless/broadcom/b43legacy/
3101
3102 BACKLIGHT CLASS/SUBSYSTEM
3103 M:      Lee Jones <lee.jones@linaro.org>
3104 M:      Daniel Thompson <daniel.thompson@linaro.org>
3105 M:      Jingoo Han <jingoohan1@gmail.com>
3106 L:      dri-devel@lists.freedesktop.org
3107 S:      Maintained
3108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3109 F:      Documentation/ABI/stable/sysfs-class-backlight
3110 F:      Documentation/ABI/testing/sysfs-class-backlight
3111 F:      Documentation/devicetree/bindings/leds/backlight
3112 F:      drivers/video/backlight/
3113 F:      include/linux/backlight.h
3114 F:      include/linux/pwm_backlight.h
3115
3116 BATMAN ADVANCED
3117 M:      Marek Lindner <mareklindner@neomailbox.ch>
3118 M:      Simon Wunderlich <sw@simonwunderlich.de>
3119 M:      Antonio Quartulli <a@unstable.cc>
3120 M:      Sven Eckelmann <sven@narfation.org>
3121 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3122 S:      Maintained
3123 W:      https://www.open-mesh.org/
3124 Q:      https://patchwork.open-mesh.org/project/batman/list/
3125 B:      https://www.open-mesh.org/projects/batman-adv/issues
3126 C:      irc://chat.freenode.net/batman
3127 T:      git https://git.open-mesh.org/linux-merge.git
3128 F:      Documentation/networking/batman-adv.rst
3129 F:      include/uapi/linux/batadv_packet.h
3130 F:      include/uapi/linux/batman_adv.h
3131 F:      net/batman-adv/
3132
3133 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3134 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3135 L:      linux-hams@vger.kernel.org
3136 S:      Maintained
3137 W:      http://www.baycom.org/~tom/ham/ham.html
3138 F:      drivers/net/hamradio/baycom*
3139
3140 BCACHE (BLOCK LAYER CACHE)
3141 M:      Coly Li <colyli@suse.de>
3142 M:      Kent Overstreet <kent.overstreet@gmail.com>
3143 L:      linux-bcache@vger.kernel.org
3144 S:      Maintained
3145 W:      http://bcache.evilpiepirate.org
3146 C:      irc://irc.oftc.net/bcache
3147 F:      drivers/md/bcache/
3148
3149 BDISP ST MEDIA DRIVER
3150 M:      Fabien Dessenne <fabien.dessenne@st.com>
3151 L:      linux-media@vger.kernel.org
3152 S:      Supported
3153 W:      https://linuxtv.org
3154 T:      git git://linuxtv.org/media_tree.git
3155 F:      drivers/media/platform/sti/bdisp
3156
3157 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3158 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3159 L:      netdev@vger.kernel.org
3160 S:      Maintained
3161 F:      drivers/net/ethernet/ec_bhf.c
3162
3163 BEFS FILE SYSTEM
3164 M:      Luis de Bethencourt <luisbg@kernel.org>
3165 M:      Salah Triki <salah.triki@gmail.com>
3166 S:      Maintained
3167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3168 F:      Documentation/filesystems/befs.rst
3169 F:      fs/befs/
3170
3171 BFQ I/O SCHEDULER
3172 M:      Paolo Valente <paolo.valente@linaro.org>
3173 M:      Jens Axboe <axboe@kernel.dk>
3174 L:      linux-block@vger.kernel.org
3175 S:      Maintained
3176 F:      Documentation/block/bfq-iosched.rst
3177 F:      block/bfq-*
3178
3179 BFS FILE SYSTEM
3180 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3181 S:      Maintained
3182 F:      Documentation/filesystems/bfs.rst
3183 F:      fs/bfs/
3184 F:      include/uapi/linux/bfs_fs.h
3185
3186 BLINKM RGB LED DRIVER
3187 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3188 S:      Maintained
3189 F:      drivers/leds/leds-blinkm.c
3190
3191 BLOCK LAYER
3192 M:      Jens Axboe <axboe@kernel.dk>
3193 L:      linux-block@vger.kernel.org
3194 S:      Maintained
3195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3196 F:      block/
3197 F:      drivers/block/
3198 F:      include/linux/blk*
3199 F:      kernel/trace/blktrace.c
3200 F:      lib/sbitmap.c
3201
3202 BLOCK2MTD DRIVER
3203 M:      Joern Engel <joern@lazybastard.org>
3204 L:      linux-mtd@lists.infradead.org
3205 S:      Maintained
3206 F:      drivers/mtd/devices/block2mtd.c
3207
3208 BLUETOOTH DRIVERS
3209 M:      Marcel Holtmann <marcel@holtmann.org>
3210 M:      Johan Hedberg <johan.hedberg@gmail.com>
3211 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3212 L:      linux-bluetooth@vger.kernel.org
3213 S:      Supported
3214 W:      http://www.bluez.org/
3215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3217 F:      drivers/bluetooth/
3218
3219 BLUETOOTH SUBSYSTEM
3220 M:      Marcel Holtmann <marcel@holtmann.org>
3221 M:      Johan Hedberg <johan.hedberg@gmail.com>
3222 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3223 L:      linux-bluetooth@vger.kernel.org
3224 S:      Supported
3225 W:      http://www.bluez.org/
3226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3228 F:      include/net/bluetooth/
3229 F:      net/bluetooth/
3230
3231 BONDING DRIVER
3232 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3233 M:      Veaceslav Falico <vfalico@gmail.com>
3234 M:      Andy Gospodarek <andy@greyhouse.net>
3235 L:      netdev@vger.kernel.org
3236 S:      Supported
3237 W:      http://sourceforge.net/projects/bonding/
3238 F:      drivers/net/bonding/
3239 F:      include/uapi/linux/if_bonding.h
3240
3241 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3242 M:      Dan Robertson <dan@dlrobertson.com>
3243 L:      linux-iio@vger.kernel.org
3244 S:      Maintained
3245 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3246 F:      drivers/iio/accel/bma400*
3247
3248 BPF (Safe dynamic programs and tools)
3249 M:      Alexei Starovoitov <ast@kernel.org>
3250 M:      Daniel Borkmann <daniel@iogearbox.net>
3251 M:      Andrii Nakryiko <andrii@kernel.org>
3252 R:      Martin KaFai Lau <kafai@fb.com>
3253 R:      Song Liu <songliubraving@fb.com>
3254 R:      Yonghong Song <yhs@fb.com>
3255 R:      John Fastabend <john.fastabend@gmail.com>
3256 R:      KP Singh <kpsingh@kernel.org>
3257 L:      netdev@vger.kernel.org
3258 L:      bpf@vger.kernel.org
3259 S:      Supported
3260 W:      https://bpf.io/
3261 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3264 F:      Documentation/bpf/
3265 F:      Documentation/networking/filter.rst
3266 F:      arch/*/net/*
3267 F:      include/linux/bpf*
3268 F:      include/linux/filter.h
3269 F:      include/trace/events/xdp.h
3270 F:      include/uapi/linux/bpf*
3271 F:      include/uapi/linux/filter.h
3272 F:      kernel/bpf/
3273 F:      kernel/trace/bpf_trace.c
3274 F:      lib/test_bpf.c
3275 F:      net/bpf/
3276 F:      net/core/filter.c
3277 F:      net/sched/act_bpf.c
3278 F:      net/sched/cls_bpf.c
3279 F:      samples/bpf/
3280 F:      tools/bpf/
3281 F:      tools/lib/bpf/
3282 F:      tools/testing/selftests/bpf/
3283 N:      bpf
3284 K:      bpf
3285
3286 BPF JIT for ARM
3287 M:      Shubham Bansal <illusionist.neo@gmail.com>
3288 L:      netdev@vger.kernel.org
3289 L:      bpf@vger.kernel.org
3290 S:      Maintained
3291 F:      arch/arm/net/
3292
3293 BPF JIT for ARM64
3294 M:      Daniel Borkmann <daniel@iogearbox.net>
3295 M:      Alexei Starovoitov <ast@kernel.org>
3296 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3297 L:      netdev@vger.kernel.org
3298 L:      bpf@vger.kernel.org
3299 S:      Supported
3300 F:      arch/arm64/net/
3301
3302 BPF JIT for MIPS (32-BIT AND 64-BIT)
3303 M:      Paul Burton <paulburton@kernel.org>
3304 L:      netdev@vger.kernel.org
3305 L:      bpf@vger.kernel.org
3306 S:      Maintained
3307 F:      arch/mips/net/
3308
3309 BPF JIT for NFP NICs
3310 M:      Jakub Kicinski <kuba@kernel.org>
3311 L:      netdev@vger.kernel.org
3312 L:      bpf@vger.kernel.org
3313 S:      Supported
3314 F:      drivers/net/ethernet/netronome/nfp/bpf/
3315
3316 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3317 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3318 M:      Sandipan Das <sandipan@linux.ibm.com>
3319 L:      netdev@vger.kernel.org
3320 L:      bpf@vger.kernel.org
3321 S:      Maintained
3322 F:      arch/powerpc/net/
3323
3324 BPF JIT for RISC-V (32-bit)
3325 M:      Luke Nelson <luke.r.nels@gmail.com>
3326 M:      Xi Wang <xi.wang@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_comp64.c
3332
3333 BPF JIT for RISC-V (64-bit)
3334 M:      Björn Töpel <bjorn.topel@gmail.com>
3335 L:      netdev@vger.kernel.org
3336 L:      bpf@vger.kernel.org
3337 S:      Maintained
3338 F:      arch/riscv/net/
3339 X:      arch/riscv/net/bpf_jit_comp32.c
3340
3341 BPF JIT for S390
3342 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3343 M:      Heiko Carstens <hca@linux.ibm.com>
3344 M:      Vasily Gorbik <gor@linux.ibm.com>
3345 L:      netdev@vger.kernel.org
3346 L:      bpf@vger.kernel.org
3347 S:      Maintained
3348 F:      arch/s390/net/
3349 X:      arch/s390/net/pnet.c
3350
3351 BPF JIT for SPARC (32-BIT AND 64-BIT)
3352 M:      David S. Miller <davem@davemloft.net>
3353 L:      netdev@vger.kernel.org
3354 L:      bpf@vger.kernel.org
3355 S:      Maintained
3356 F:      arch/sparc/net/
3357
3358 BPF JIT for X86 32-BIT
3359 M:      Wang YanQing <udknight@gmail.com>
3360 L:      netdev@vger.kernel.org
3361 L:      bpf@vger.kernel.org
3362 S:      Maintained
3363 F:      arch/x86/net/bpf_jit_comp32.c
3364
3365 BPF JIT for X86 64-BIT
3366 M:      Alexei Starovoitov <ast@kernel.org>
3367 M:      Daniel Borkmann <daniel@iogearbox.net>
3368 L:      netdev@vger.kernel.org
3369 L:      bpf@vger.kernel.org
3370 S:      Supported
3371 F:      arch/x86/net/
3372 X:      arch/x86/net/bpf_jit_comp32.c
3373
3374 BPF LSM (Security Audit and Enforcement using BPF)
3375 M:      KP Singh <kpsingh@kernel.org>
3376 R:      Florent Revest <revest@chromium.org>
3377 R:      Brendan Jackman <jackmanb@chromium.org>
3378 L:      bpf@vger.kernel.org
3379 S:      Maintained
3380 F:      Documentation/bpf/bpf_lsm.rst
3381 F:      include/linux/bpf_lsm.h
3382 F:      kernel/bpf/bpf_lsm.c
3383 F:      security/bpf/
3384
3385 BROADCOM B44 10/100 ETHERNET DRIVER
3386 M:      Michael Chan <michael.chan@broadcom.com>
3387 L:      netdev@vger.kernel.org
3388 S:      Supported
3389 F:      drivers/net/ethernet/broadcom/b44.*
3390
3391 BROADCOM B53 ETHERNET SWITCH DRIVER
3392 M:      Florian Fainelli <f.fainelli@gmail.com>
3393 L:      netdev@vger.kernel.org
3394 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3395 S:      Supported
3396 F:      Documentation/devicetree/bindings/net/dsa/b53.txt
3397 F:      drivers/net/dsa/b53/*
3398 F:      include/linux/platform_data/b53.h
3399
3400 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3401 M:      Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
3402 L:      bcm-kernel-feedback-list@broadcom.com
3403 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3404 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3405 S:      Maintained
3406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3407 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3408 F:      drivers/pci/controller/pcie-brcmstb.c
3409 F:      drivers/staging/vc04_services
3410 N:      bcm2711
3411 N:      bcm2835
3412
3413 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3414 M:      Florian Fainelli <f.fainelli@gmail.com>
3415 M:      Ray Jui <rjui@broadcom.com>
3416 M:      Scott Branden <sbranden@broadcom.com>
3417 M:      bcm-kernel-feedback-list@broadcom.com
3418 S:      Maintained
3419 T:      git git://github.com/broadcom/mach-bcm
3420 F:      arch/arm/mach-bcm/
3421 N:      bcm281*
3422 N:      bcm113*
3423 N:      bcm216*
3424 N:      kona
3425
3426 BROADCOM BCM47XX MIPS ARCHITECTURE
3427 M:      Hauke Mehrtens <hauke@hauke-m.de>
3428 M:      Rafał Miłecki <zajec5@gmail.com>
3429 L:      linux-mips@vger.kernel.org
3430 S:      Maintained
3431 F:      Documentation/devicetree/bindings/mips/brcm/
3432 F:      arch/mips/bcm47xx/*
3433 F:      arch/mips/include/asm/mach-bcm47xx/*
3434
3435 BROADCOM BCM5301X ARM ARCHITECTURE
3436 M:      Hauke Mehrtens <hauke@hauke-m.de>
3437 M:      Rafał Miłecki <zajec5@gmail.com>
3438 M:      bcm-kernel-feedback-list@broadcom.com
3439 L:      linux-arm-kernel@lists.infradead.org
3440 S:      Maintained
3441 F:      arch/arm/boot/dts/bcm470*
3442 F:      arch/arm/boot/dts/bcm5301*
3443 F:      arch/arm/boot/dts/bcm953012*
3444 F:      arch/arm/mach-bcm/bcm_5301x.c
3445
3446 BROADCOM BCM53573 ARM ARCHITECTURE
3447 M:      Rafał Miłecki <rafal@milecki.pl>
3448 L:      bcm-kernel-feedback-list@broadcom.com
3449 L:      linux-arm-kernel@lists.infradead.org
3450 S:      Maintained
3451 F:      arch/arm/boot/dts/bcm47189*
3452 F:      arch/arm/boot/dts/bcm53573*
3453
3454 BROADCOM BCM63XX ARM ARCHITECTURE
3455 M:      Florian Fainelli <f.fainelli@gmail.com>
3456 M:      bcm-kernel-feedback-list@broadcom.com
3457 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3458 S:      Maintained
3459 T:      git git://github.com/broadcom/stblinux.git
3460 N:      bcm63xx
3461
3462 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3463 M:      Kevin Cernekee <cernekee@gmail.com>
3464 L:      linux-usb@vger.kernel.org
3465 S:      Maintained
3466 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3467
3468 BROADCOM BCM7XXX ARM ARCHITECTURE
3469 M:      Florian Fainelli <f.fainelli@gmail.com>
3470 M:      bcm-kernel-feedback-list@broadcom.com
3471 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3472 S:      Maintained
3473 T:      git git://github.com/broadcom/stblinux.git
3474 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3475 F:      arch/arm/boot/dts/bcm7*.dts*
3476 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3477 F:      arch/arm/mach-bcm/*brcmstb*
3478 F:      arch/arm/mm/cache-b15-rac.c
3479 F:      drivers/bus/brcmstb_gisb.c
3480 F:      drivers/pci/controller/pcie-brcmstb.c
3481 N:      brcmstb
3482
3483 BROADCOM BDC DRIVER
3484 M:      Al Cooper <alcooperx@gmail.com>
3485 L:      linux-usb@vger.kernel.org
3486 L:      bcm-kernel-feedback-list@broadcom.com
3487 S:      Maintained
3488 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3489 F:      drivers/usb/gadget/udc/bdc/
3490
3491 BROADCOM BMIPS CPUFREQ DRIVER
3492 M:      Markus Mayer <mmayer@broadcom.com>
3493 M:      bcm-kernel-feedback-list@broadcom.com
3494 L:      linux-pm@vger.kernel.org
3495 S:      Maintained
3496 F:      drivers/cpufreq/bmips-cpufreq.c
3497
3498 BROADCOM BMIPS MIPS ARCHITECTURE
3499 M:      Florian Fainelli <f.fainelli@gmail.com>
3500 L:      bcm-kernel-feedback-list@broadcom.com
3501 L:      linux-mips@vger.kernel.org
3502 S:      Maintained
3503 T:      git git://github.com/broadcom/stblinux.git
3504 F:      arch/mips/bmips/*
3505 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3506 F:      arch/mips/include/asm/mach-bmips/*
3507 F:      arch/mips/kernel/*bmips*
3508 F:      drivers/soc/bcm/bcm63xx
3509 F:      drivers/irqchip/irq-bcm63*
3510 F:      drivers/irqchip/irq-bcm7*
3511 F:      drivers/irqchip/irq-brcmstb*
3512 F:      include/linux/bcm963xx_nvram.h
3513 F:      include/linux/bcm963xx_tag.h
3514
3515 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3516 M:      Rasesh Mody <rmody@marvell.com>
3517 M:      GR-Linux-NIC-Dev@marvell.com
3518 L:      netdev@vger.kernel.org
3519 S:      Supported
3520 F:      drivers/net/ethernet/broadcom/bnx2.*
3521 F:      drivers/net/ethernet/broadcom/bnx2_*
3522
3523 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3524 M:      Saurav Kashyap <skashyap@marvell.com>
3525 M:      Javed Hasan <jhasan@marvell.com>
3526 M:      GR-QLogic-Storage-Upstream@marvell.com
3527 L:      linux-scsi@vger.kernel.org
3528 S:      Supported
3529 F:      drivers/scsi/bnx2fc/
3530
3531 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3532 M:      Nilesh Javali <njavali@marvell.com>
3533 M:      Manish Rangankar <mrangankar@marvell.com>
3534 M:      GR-QLogic-Storage-Upstream@marvell.com
3535 L:      linux-scsi@vger.kernel.org
3536 S:      Supported
3537 F:      drivers/scsi/bnx2i/
3538
3539 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3540 M:      Ariel Elior <aelior@marvell.com>
3541 M:      Sudarsana Kalluru <skalluru@marvell.com>
3542 M:      GR-everest-linux-l2@marvell.com
3543 L:      netdev@vger.kernel.org
3544 S:      Supported
3545 F:      drivers/net/ethernet/broadcom/bnx2x/
3546
3547 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3548 M:      Michael Chan <michael.chan@broadcom.com>
3549 L:      netdev@vger.kernel.org
3550 S:      Supported
3551 F:      drivers/net/ethernet/broadcom/bnxt/
3552
3553 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3554 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
3555 M:      Franky Lin <franky.lin@broadcom.com>
3556 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3557 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3558 M:      Wright Feng <wright.feng@infineon.com>
3559 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3560 L:      linux-wireless@vger.kernel.org
3561 L:      brcm80211-dev-list.pdl@broadcom.com
3562 L:      SHA-cyfmac-dev-list@infineon.com
3563 S:      Supported
3564 F:      drivers/net/wireless/broadcom/brcm80211/
3565
3566 BROADCOM BRCMSTB GPIO DRIVER
3567 M:      Gregory Fong <gregory.0xf0@gmail.com>
3568 L:      bcm-kernel-feedback-list@broadcom.com
3569 S:      Supported
3570 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3571 F:      drivers/gpio/gpio-brcmstb.c
3572
3573 BROADCOM BRCMSTB I2C DRIVER
3574 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3575 L:      linux-i2c@vger.kernel.org
3576 L:      bcm-kernel-feedback-list@broadcom.com
3577 S:      Supported
3578 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3579 F:      drivers/i2c/busses/i2c-brcmstb.c
3580
3581 BROADCOM BRCMSTB USB EHCI 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,bcm7445-ehci.yaml
3587 F:      drivers/usb/host/ehci-brcm.*
3588
3589 BROADCOM BRCMSTB USB PIN MAP DRIVER
3590 M:      Al Cooper <alcooperx@gmail.com>
3591 L:      linux-usb@vger.kernel.org
3592 L:      bcm-kernel-feedback-list@broadcom.com
3593 S:      Maintained
3594 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3595 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3596
3597 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3598 M:      Al Cooper <alcooperx@gmail.com>
3599 L:      linux-kernel@vger.kernel.org
3600 L:      bcm-kernel-feedback-list@broadcom.com
3601 S:      Maintained
3602 F:      drivers/phy/broadcom/phy-brcm-usb*
3603
3604 BROADCOM ETHERNET PHY DRIVERS
3605 M:      Florian Fainelli <f.fainelli@gmail.com>
3606 L:      bcm-kernel-feedback-list@broadcom.com
3607 L:      netdev@vger.kernel.org
3608 S:      Supported
3609 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3610 F:      drivers/net/phy/bcm*.[ch]
3611 F:      drivers/net/phy/broadcom.c
3612 F:      include/linux/brcmphy.h
3613
3614 BROADCOM GENET ETHERNET DRIVER
3615 M:      Doug Berger <opendmb@gmail.com>
3616 M:      Florian Fainelli <f.fainelli@gmail.com>
3617 L:      bcm-kernel-feedback-list@broadcom.com
3618 L:      netdev@vger.kernel.org
3619 S:      Supported
3620 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3621 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3622 F:      drivers/net/ethernet/broadcom/genet/
3623 F:      drivers/net/mdio/mdio-bcm-unimac.c
3624 F:      include/linux/platform_data/bcmgenet.h
3625 F:      include/linux/platform_data/mdio-bcm-unimac.h
3626
3627 BROADCOM IPROC ARM ARCHITECTURE
3628 M:      Ray Jui <rjui@broadcom.com>
3629 M:      Scott Branden <sbranden@broadcom.com>
3630 M:      bcm-kernel-feedback-list@broadcom.com
3631 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3632 S:      Maintained
3633 T:      git git://github.com/broadcom/cygnus-linux.git
3634 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3635 F:      arch/arm64/boot/dts/broadcom/stingray/*
3636 F:      drivers/clk/bcm/clk-ns*
3637 F:      drivers/clk/bcm/clk-sr*
3638 F:      drivers/pinctrl/bcm/pinctrl-ns*
3639 F:      include/dt-bindings/clock/bcm-sr*
3640 N:      iproc
3641 N:      cygnus
3642 N:      bcm[-_]nsp
3643 N:      bcm9113*
3644 N:      bcm9583*
3645 N:      bcm9585*
3646 N:      bcm9586*
3647 N:      bcm988312
3648 N:      bcm113*
3649 N:      bcm583*
3650 N:      bcm585*
3651 N:      bcm586*
3652 N:      bcm88312
3653 N:      hr2
3654 N:      stingray
3655
3656 BROADCOM KONA GPIO DRIVER
3657 M:      Ray Jui <rjui@broadcom.com>
3658 L:      bcm-kernel-feedback-list@broadcom.com
3659 S:      Supported
3660 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3661 F:      drivers/gpio/gpio-bcm-kona.c
3662
3663 BROADCOM NETXTREME-E ROCE DRIVER
3664 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3665 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3666 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3667 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3668 M:      Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
3669 L:      linux-rdma@vger.kernel.org
3670 S:      Supported
3671 W:      http://www.broadcom.com
3672 F:      drivers/infiniband/hw/bnxt_re/
3673 F:      include/uapi/rdma/bnxt_re-abi.h
3674
3675 BROADCOM NVRAM DRIVER
3676 M:      Rafał Miłecki <zajec5@gmail.com>
3677 L:      linux-mips@vger.kernel.org
3678 S:      Maintained
3679 F:      drivers/firmware/broadcom/*
3680
3681 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3682 M:      Rafał Miłecki <zajec5@gmail.com>
3683 L:      linux-wireless@vger.kernel.org
3684 S:      Maintained
3685 F:      drivers/bcma/
3686 F:      include/linux/bcma/
3687
3688 BROADCOM SPI DRIVER
3689 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3690 M:      bcm-kernel-feedback-list@broadcom.com
3691 S:      Maintained
3692 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3693 F:      drivers/spi/spi-bcm-qspi.*
3694 F:      drivers/spi/spi-brcmstb-qspi.c
3695 F:      drivers/spi/spi-iproc-qspi.c
3696
3697 BROADCOM STB AVS CPUFREQ 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/cpufreq/brcm,stb-avs-cpu-freq.txt
3703 F:      drivers/cpufreq/brcmstb*
3704
3705 BROADCOM STB AVS TMON DRIVER
3706 M:      Markus Mayer <mmayer@broadcom.com>
3707 M:      bcm-kernel-feedback-list@broadcom.com
3708 L:      linux-pm@vger.kernel.org
3709 S:      Maintained
3710 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3711 F:      drivers/thermal/broadcom/brcmstb*
3712
3713 BROADCOM STB DPFE DRIVER
3714 M:      Markus Mayer <mmayer@broadcom.com>
3715 M:      bcm-kernel-feedback-list@broadcom.com
3716 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3717 S:      Maintained
3718 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3719 F:      drivers/memory/brcmstb_dpfe.c
3720
3721 BROADCOM STB NAND FLASH DRIVER
3722 M:      Brian Norris <computersforpeace@gmail.com>
3723 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3724 L:      linux-mtd@lists.infradead.org
3725 L:      bcm-kernel-feedback-list@broadcom.com
3726 S:      Maintained
3727 F:      drivers/mtd/nand/raw/brcmnand/
3728
3729 BROADCOM SYSTEMPORT ETHERNET DRIVER
3730 M:      Florian Fainelli <f.fainelli@gmail.com>
3731 L:      bcm-kernel-feedback-list@broadcom.com
3732 L:      netdev@vger.kernel.org
3733 S:      Supported
3734 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3735
3736 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3737 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3738 M:      Prashant Sreedharan <prashant@broadcom.com>
3739 M:      Michael Chan <mchan@broadcom.com>
3740 L:      netdev@vger.kernel.org
3741 S:      Supported
3742 F:      drivers/net/ethernet/broadcom/tg3.*
3743
3744 BROCADE BFA FC SCSI DRIVER
3745 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3746 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3747 L:      linux-scsi@vger.kernel.org
3748 S:      Supported
3749 F:      drivers/scsi/bfa/
3750
3751 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3752 M:      Rasesh Mody <rmody@marvell.com>
3753 M:      Sudarsana Kalluru <skalluru@marvell.com>
3754 M:      GR-Linux-NIC-Dev@marvell.com
3755 L:      netdev@vger.kernel.org
3756 S:      Supported
3757 F:      drivers/net/ethernet/brocade/bna/
3758
3759 BSG (block layer generic sg v4 driver)
3760 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3761 L:      linux-scsi@vger.kernel.org
3762 S:      Supported
3763 F:      block/bsg.c
3764 F:      include/linux/bsg.h
3765 F:      include/uapi/linux/bsg.h
3766
3767 BT87X AUDIO DRIVER
3768 M:      Clemens Ladisch <clemens@ladisch.de>
3769 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3770 S:      Maintained
3771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3772 F:      Documentation/sound/cards/bt87x.rst
3773 F:      sound/pci/bt87x.c
3774
3775 BT8XXGPIO DRIVER
3776 M:      Michael Buesch <m@bues.ch>
3777 S:      Maintained
3778 W:      http://bu3sch.de/btgpio.php
3779 F:      drivers/gpio/gpio-bt8xx.c
3780
3781 BTRFS FILE SYSTEM
3782 M:      Chris Mason <clm@fb.com>
3783 M:      Josef Bacik <josef@toxicpanda.com>
3784 M:      David Sterba <dsterba@suse.com>
3785 L:      linux-btrfs@vger.kernel.org
3786 S:      Maintained
3787 W:      http://btrfs.wiki.kernel.org/
3788 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3790 F:      Documentation/filesystems/btrfs.rst
3791 F:      fs/btrfs/
3792 F:      include/linux/btrfs*
3793 F:      include/uapi/linux/btrfs*
3794
3795 BTTV VIDEO4LINUX DRIVER
3796 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3797 L:      linux-media@vger.kernel.org
3798 S:      Odd fixes
3799 W:      https://linuxtv.org
3800 T:      git git://linuxtv.org/media_tree.git
3801 F:      Documentation/driver-api/media/drivers/bttv*
3802 F:      drivers/media/pci/bt8xx/bttv*
3803
3804 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3805 M:      Chanwoo Choi <cw00.choi@samsung.com>
3806 L:      linux-pm@vger.kernel.org
3807 L:      linux-samsung-soc@vger.kernel.org
3808 S:      Maintained
3809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3810 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3811 F:      drivers/devfreq/exynos-bus.c
3812
3813 BUSLOGIC SCSI DRIVER
3814 M:      Khalid Aziz <khalid@gonehiking.org>
3815 L:      linux-scsi@vger.kernel.org
3816 S:      Maintained
3817 F:      drivers/scsi/BusLogic.*
3818 F:      drivers/scsi/FlashPoint.*
3819
3820 C-MEDIA CMI8788 DRIVER
3821 M:      Clemens Ladisch <clemens@ladisch.de>
3822 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3823 S:      Maintained
3824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3825 F:      sound/pci/oxygen/
3826
3827 C-SKY ARCHITECTURE
3828 M:      Guo Ren <guoren@kernel.org>
3829 L:      linux-csky@vger.kernel.org
3830 S:      Supported
3831 T:      git https://github.com/c-sky/csky-linux.git
3832 F:      Documentation/devicetree/bindings/csky/
3833 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3834 F:      Documentation/devicetree/bindings/timer/csky,*
3835 F:      arch/csky/
3836 F:      drivers/clocksource/timer-gx6605s.c
3837 F:      drivers/clocksource/timer-mp-csky.c
3838 F:      drivers/irqchip/irq-csky-*
3839 N:      csky
3840 K:      csky
3841
3842 C6X ARCHITECTURE
3843 M:      Mark Salter <msalter@redhat.com>
3844 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3845 L:      linux-c6x-dev@linux-c6x.org
3846 S:      Maintained
3847 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3848 F:      arch/c6x/
3849
3850 CA8210 IEEE-802.15.4 RADIO DRIVER
3851 M:      Harry Morris <h.morris@cascoda.com>
3852 L:      linux-wpan@vger.kernel.org
3853 S:      Maintained
3854 W:      https://github.com/Cascoda/ca8210-linux.git
3855 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3856 F:      drivers/net/ieee802154/ca8210.c
3857
3858 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3859 M:      David Howells <dhowells@redhat.com>
3860 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3861 S:      Supported
3862 F:      Documentation/filesystems/caching/cachefiles.rst
3863 F:      fs/cachefiles/
3864
3865 CADENCE MIPI-CSI2 BRIDGES
3866 M:      Maxime Ripard <mripard@kernel.org>
3867 L:      linux-media@vger.kernel.org
3868 S:      Maintained
3869 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3870 F:      drivers/media/platform/cadence/cdns-csi2*
3871
3872 CADENCE NAND DRIVER
3873 L:      linux-mtd@lists.infradead.org
3874 S:      Orphan
3875 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3876 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3877
3878 CADENCE USB3 DRD IP DRIVER
3879 M:      Peter Chen <peter.chen@nxp.com>
3880 M:      Pawel Laszczak <pawell@cadence.com>
3881 M:      Roger Quadros <rogerq@ti.com>
3882 R:      Aswath Govindraju <a-govindraju@ti.com>
3883 L:      linux-usb@vger.kernel.org
3884 S:      Maintained
3885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3886 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
3887 F:      drivers/usb/cdns3/
3888
3889 CADET FM/AM RADIO RECEIVER DRIVER
3890 M:      Hans Verkuil <hverkuil@xs4all.nl>
3891 L:      linux-media@vger.kernel.org
3892 S:      Maintained
3893 W:      https://linuxtv.org
3894 T:      git git://linuxtv.org/media_tree.git
3895 F:      drivers/media/radio/radio-cadet*
3896
3897 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3898 L:      linux-media@vger.kernel.org
3899 S:      Orphan
3900 T:      git git://linuxtv.org/media_tree.git
3901 F:      Documentation/admin-guide/media/cafe_ccic*
3902 F:      drivers/media/platform/marvell-ccic/
3903
3904 CAIF NETWORK LAYER
3905 L:      netdev@vger.kernel.org
3906 S:      Orphan
3907 F:      Documentation/networking/caif/
3908 F:      drivers/net/caif/
3909 F:      include/net/caif/
3910 F:      include/uapi/linux/caif/
3911 F:      net/caif/
3912
3913 CAKE QDISC
3914 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3915 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3916 S:      Maintained
3917 F:      net/sched/sch_cake.c
3918
3919 CAN NETWORK DRIVERS
3920 M:      Wolfgang Grandegger <wg@grandegger.com>
3921 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3922 L:      linux-can@vger.kernel.org
3923 S:      Maintained
3924 W:      https://github.com/linux-can
3925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3927 F:      Documentation/devicetree/bindings/net/can/
3928 F:      drivers/net/can/
3929 F:      include/linux/can/dev.h
3930 F:      include/linux/can/led.h
3931 F:      include/linux/can/platform/
3932 F:      include/linux/can/rx-offload.h
3933 F:      include/uapi/linux/can/error.h
3934 F:      include/uapi/linux/can/netlink.h
3935 F:      include/uapi/linux/can/vxcan.h
3936
3937 CAN NETWORK LAYER
3938 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3939 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3940 L:      linux-can@vger.kernel.org
3941 S:      Maintained
3942 W:      https://github.com/linux-can
3943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3945 F:      Documentation/networking/can.rst
3946 F:      include/linux/can/core.h
3947 F:      include/linux/can/skb.h
3948 F:      include/net/netns/can.h
3949 F:      include/uapi/linux/can.h
3950 F:      include/uapi/linux/can/bcm.h
3951 F:      include/uapi/linux/can/gw.h
3952 F:      include/uapi/linux/can/isotp.h
3953 F:      include/uapi/linux/can/raw.h
3954 F:      net/can/
3955
3956 CAN-J1939 NETWORK LAYER
3957 M:      Robin van der Gracht <robin@protonic.nl>
3958 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3959 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
3960 L:      linux-can@vger.kernel.org
3961 S:      Maintained
3962 F:      Documentation/networking/j1939.rst
3963 F:      include/uapi/linux/can/j1939.h
3964 F:      net/can/j1939/
3965
3966 CAPABILITIES
3967 M:      Serge Hallyn <serge@hallyn.com>
3968 L:      linux-security-module@vger.kernel.org
3969 S:      Supported
3970 F:      include/linux/capability.h
3971 F:      include/uapi/linux/capability.h
3972 F:      kernel/capability.c
3973 F:      security/commoncap.c
3974
3975 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3976 M:      Kevin Tsai <ktsai@capellamicro.com>
3977 S:      Maintained
3978 F:      drivers/iio/light/cm*
3979
3980 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3981 M:      Christian Lamparter <chunkeey@googlemail.com>
3982 L:      linux-wireless@vger.kernel.org
3983 S:      Maintained
3984 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
3985 F:      drivers/net/wireless/ath/carl9170/
3986
3987 CAVIUM I2C DRIVER
3988 M:      Robert Richter <rric@kernel.org>
3989 S:      Odd Fixes
3990 W:      http://www.marvell.com
3991 F:      drivers/i2c/busses/i2c-octeon*
3992 F:      drivers/i2c/busses/i2c-thunderx*
3993
3994 CAVIUM LIQUIDIO NETWORK DRIVER
3995 M:      Derek Chickles <dchickles@marvell.com>
3996 M:      Satanand Burla <sburla@marvell.com>
3997 M:      Felix Manlunas <fmanlunas@marvell.com>
3998 L:      netdev@vger.kernel.org
3999 S:      Supported
4000 W:      http://www.marvell.com
4001 F:      drivers/net/ethernet/cavium/liquidio/
4002
4003 CAVIUM MMC DRIVER
4004 M:      Robert Richter <rric@kernel.org>
4005 S:      Odd Fixes
4006 W:      http://www.marvell.com
4007 F:      drivers/mmc/host/cavium*
4008
4009 CAVIUM OCTEON-TX CRYPTO DRIVER
4010 M:      George Cherian <gcherian@marvell.com>
4011 L:      linux-crypto@vger.kernel.org
4012 S:      Supported
4013 W:      http://www.marvell.com
4014 F:      drivers/crypto/cavium/cpt/
4015
4016 CAVIUM THUNDERX2 ARM64 SOC
4017 M:      Robert Richter <rric@kernel.org>
4018 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4019 S:      Odd Fixes
4020 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4021 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4022
4023 CC2520 IEEE-802.15.4 RADIO DRIVER
4024 M:      Varka Bhadram <varkabhadram@gmail.com>
4025 L:      linux-wpan@vger.kernel.org
4026 S:      Maintained
4027 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4028 F:      drivers/net/ieee802154/cc2520.c
4029 F:      include/linux/spi/cc2520.h
4030
4031 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4032 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4033 L:      linux-crypto@vger.kernel.org
4034 S:      Supported
4035 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4036 F:      drivers/crypto/ccree/
4037
4038 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4039 M:      Hadar Gat <hadar.gat@arm.com>
4040 L:      linux-crypto@vger.kernel.org
4041 S:      Supported
4042 F:      drivers/char/hw_random/cctrng.c
4043 F:      drivers/char/hw_random/cctrng.h
4044 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4045 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4046
4047 CEC FRAMEWORK
4048 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4049 L:      linux-media@vger.kernel.org
4050 S:      Supported
4051 W:      http://linuxtv.org
4052 T:      git git://linuxtv.org/media_tree.git
4053 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4054 F:      Documentation/devicetree/bindings/media/cec.txt
4055 F:      Documentation/driver-api/media/cec-core.rst
4056 F:      Documentation/userspace-api/media/cec
4057 F:      drivers/media/cec/
4058 F:      drivers/media/rc/keymaps/rc-cec.c
4059 F:      include/media/cec-notifier.h
4060 F:      include/media/cec.h
4061 F:      include/uapi/linux/cec-funcs.h
4062 F:      include/uapi/linux/cec.h
4063
4064 CEC GPIO DRIVER
4065 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4066 L:      linux-media@vger.kernel.org
4067 S:      Supported
4068 W:      http://linuxtv.org
4069 T:      git git://linuxtv.org/media_tree.git
4070 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4071 F:      drivers/media/cec/platform/cec-gpio/
4072
4073 CELL BROADBAND ENGINE ARCHITECTURE
4074 M:      Arnd Bergmann <arnd@arndb.de>
4075 L:      linuxppc-dev@lists.ozlabs.org
4076 S:      Supported
4077 W:      http://www.ibm.com/developerworks/power/cell/
4078 F:      arch/powerpc/include/asm/cell*.h
4079 F:      arch/powerpc/include/asm/spu*.h
4080 F:      arch/powerpc/include/uapi/asm/spu*.h
4081 F:      arch/powerpc/oprofile/*cell*
4082 F:      arch/powerpc/platforms/cell/
4083
4084 CELLWISE CW2015 BATTERY DRIVER
4085 M:      Tobias Schrammm <t.schramm@manjaro.org>
4086 S:      Maintained
4087 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4088 F:      drivers/power/supply/cw2015_battery.c
4089
4090 CEPH COMMON CODE (LIBCEPH)
4091 M:      Ilya Dryomov <idryomov@gmail.com>
4092 M:      Jeff Layton <jlayton@kernel.org>
4093 L:      ceph-devel@vger.kernel.org
4094 S:      Supported
4095 W:      http://ceph.com/
4096 T:      git git://github.com/ceph/ceph-client.git
4097 F:      include/linux/ceph/
4098 F:      include/linux/crush/
4099 F:      net/ceph/
4100
4101 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4102 M:      Jeff Layton <jlayton@kernel.org>
4103 M:      Ilya Dryomov <idryomov@gmail.com>
4104 L:      ceph-devel@vger.kernel.org
4105 S:      Supported
4106 W:      http://ceph.com/
4107 T:      git git://github.com/ceph/ceph-client.git
4108 F:      Documentation/filesystems/ceph.rst
4109 F:      fs/ceph/
4110
4111 CERTIFICATE HANDLING
4112 M:      David Howells <dhowells@redhat.com>
4113 M:      David Woodhouse <dwmw2@infradead.org>
4114 L:      keyrings@vger.kernel.org
4115 S:      Maintained
4116 F:      Documentation/admin-guide/module-signing.rst
4117 F:      certs/
4118 F:      scripts/extract-cert.c
4119 F:      scripts/sign-file.c
4120
4121 CFAG12864B LCD DRIVER
4122 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4123 S:      Maintained
4124 F:      drivers/auxdisplay/cfag12864b.c
4125 F:      include/linux/cfag12864b.h
4126
4127 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4128 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4129 S:      Maintained
4130 F:      drivers/auxdisplay/cfag12864bfb.c
4131 F:      include/linux/cfag12864b.h
4132
4133 CHAR and MISC DRIVERS
4134 M:      Arnd Bergmann <arnd@arndb.de>
4135 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4136 S:      Supported
4137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4138 F:      drivers/char/
4139 F:      drivers/misc/
4140 F:      include/linux/miscdevice.h
4141 X:      drivers/char/agp/
4142 X:      drivers/char/hw_random/
4143 X:      drivers/char/ipmi/
4144 X:      drivers/char/random.c
4145 X:      drivers/char/tpm/
4146
4147 CHECKPATCH
4148 M:      Andy Whitcroft <apw@canonical.com>
4149 M:      Joe Perches <joe@perches.com>
4150 S:      Maintained
4151 F:      scripts/checkpatch.pl
4152
4153 CHINESE DOCUMENTATION
4154 M:      Harry Wei <harryxiyou@gmail.com>
4155 M:      Alex Shi <alex.shi@linux.alibaba.com>
4156 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
4157 S:      Maintained
4158 F:      Documentation/translations/zh_CN/
4159
4160 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4161 M:      Peter Chen <Peter.Chen@nxp.com>
4162 L:      linux-usb@vger.kernel.org
4163 S:      Maintained
4164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4165 F:      drivers/usb/chipidea/
4166
4167 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4168 M:      Hans de Goede <hdegoede@redhat.com>
4169 L:      linux-input@vger.kernel.org
4170 S:      Maintained
4171 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4172 F:      drivers/input/touchscreen/chipone_icn8318.c
4173
4174 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4175 M:      Hans de Goede <hdegoede@redhat.com>
4176 L:      linux-input@vger.kernel.org
4177 S:      Maintained
4178 F:      drivers/input/touchscreen/chipone_icn8505.c
4179
4180 CHROME HARDWARE PLATFORM SUPPORT
4181 M:      Benson Leung <bleung@chromium.org>
4182 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4183 S:      Maintained
4184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4185 F:      drivers/platform/chrome/
4186
4187 CHROMEOS EC CODEC DRIVER
4188 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4189 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4190 R:      Guenter Roeck <groeck@chromium.org>
4191 S:      Maintained
4192 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4193 F:      sound/soc/codecs/cros_ec_codec.*
4194
4195 CHROMEOS EC SUBDRIVERS
4196 M:      Benson Leung <bleung@chromium.org>
4197 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4198 R:      Guenter Roeck <groeck@chromium.org>
4199 S:      Maintained
4200 F:      drivers/power/supply/cros_usbpd-charger.c
4201 N:      cros_ec
4202 N:      cros-ec
4203
4204 CHRONTEL CH7322 CEC DRIVER
4205 M:      Jeff Chase <jnchase@google.com>
4206 L:      linux-media@vger.kernel.org
4207 S:      Maintained
4208 T:      git git://linuxtv.org/media_tree.git
4209 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4210 F:      drivers/media/cec/i2c/ch7322.c
4211
4212 CIRRUS LOGIC AUDIO CODEC DRIVERS
4213 M:      James Schulman <james.schulman@cirrus.com>
4214 M:      David Rhodes <david.rhodes@cirrus.com>
4215 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4216 L:      patches@opensource.cirrus.com
4217 S:      Maintained
4218 F:      sound/soc/codecs/cs*
4219
4220 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4221 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4222 L:      netdev@vger.kernel.org
4223 S:      Maintained
4224 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4225
4226 CIRRUS LOGIC LOCHNAGAR DRIVER
4227 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4228 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4229 L:      patches@opensource.cirrus.com
4230 S:      Supported
4231 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4232 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4233 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4234 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4235 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4236 F:      Documentation/hwmon/lochnagar.rst
4237 F:      drivers/clk/clk-lochnagar.c
4238 F:      drivers/hwmon/lochnagar-hwmon.c
4239 F:      drivers/mfd/lochnagar-i2c.c
4240 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4241 F:      drivers/regulator/lochnagar-regulator.c
4242 F:      include/dt-bindings/clk/lochnagar.h
4243 F:      include/dt-bindings/pinctrl/lochnagar.h
4244 F:      include/linux/mfd/lochnagar*
4245 F:      sound/soc/codecs/lochnagar-sc.c
4246
4247 CIRRUS LOGIC MADERA CODEC DRIVERS
4248 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4249 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4250 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4251 L:      patches@opensource.cirrus.com
4252 S:      Supported
4253 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4254 T:      git https://github.com/CirrusLogic/linux-drivers.git
4255 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4256 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4257 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4258 F:      drivers/gpio/gpio-madera*
4259 F:      drivers/irqchip/irq-madera*
4260 F:      drivers/mfd/cs47l*
4261 F:      drivers/mfd/madera*
4262 F:      drivers/pinctrl/cirrus/*
4263 F:      include/dt-bindings/sound/madera*
4264 F:      include/linux/irqchip/irq-madera*
4265 F:      include/linux/mfd/madera/*
4266 F:      include/sound/madera*
4267 F:      sound/soc/codecs/cs47l*
4268 F:      sound/soc/codecs/madera*
4269
4270 CISCO FCOE HBA DRIVER
4271 M:      Satish Kharat <satishkh@cisco.com>
4272 M:      Sesidhar Baddela <sebaddel@cisco.com>
4273 M:      Karan Tilak Kumar <kartilak@cisco.com>
4274 L:      linux-scsi@vger.kernel.org
4275 S:      Supported
4276 F:      drivers/scsi/fnic/
4277
4278 CISCO SCSI HBA DRIVER
4279 M:      Karan Tilak Kumar <kartilak@cisco.com>
4280 M:      Sesidhar Baddela <sebaddel@cisco.com>
4281 L:      linux-scsi@vger.kernel.org
4282 S:      Supported
4283 F:      drivers/scsi/snic/
4284
4285 CISCO VIC ETHERNET NIC DRIVER
4286 M:      Christian Benvenuti <benve@cisco.com>
4287 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4288 S:      Supported
4289 F:      drivers/net/ethernet/cisco/enic/
4290
4291 CISCO VIC LOW LATENCY NIC DRIVER
4292 M:      Christian Benvenuti <benve@cisco.com>
4293 M:      Nelson Escobar <neescoba@cisco.com>
4294 S:      Supported
4295 F:      drivers/infiniband/hw/usnic/
4296
4297 CLANG-FORMAT FILE
4298 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4299 S:      Maintained
4300 F:      .clang-format
4301
4302 CLANG/LLVM BUILD SUPPORT
4303 M:      Nathan Chancellor <natechancellor@gmail.com>
4304 M:      Nick Desaulniers <ndesaulniers@google.com>
4305 L:      clang-built-linux@googlegroups.com
4306 S:      Supported
4307 W:      https://clangbuiltlinux.github.io/
4308 B:      https://github.com/ClangBuiltLinux/linux/issues
4309 C:      irc://chat.freenode.net/clangbuiltlinux
4310 F:      Documentation/kbuild/llvm.rst
4311 F:      scripts/clang-tools/
4312 F:      scripts/lld-version.sh
4313 K:      \b(?i:clang|llvm)\b
4314
4315 CLEANCACHE API
4316 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4317 L:      linux-kernel@vger.kernel.org
4318 S:      Maintained
4319 F:      include/linux/cleancache.h
4320 F:      mm/cleancache.c
4321
4322 CLK API
4323 M:      Russell King <linux@armlinux.org.uk>
4324 L:      linux-clk@vger.kernel.org
4325 S:      Maintained
4326 F:      include/linux/clk.h
4327
4328 CLOCKSOURCE, CLOCKEVENT DRIVERS
4329 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4330 M:      Thomas Gleixner <tglx@linutronix.de>
4331 L:      linux-kernel@vger.kernel.org
4332 S:      Supported
4333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4334 F:      Documentation/devicetree/bindings/timer/
4335 F:      drivers/clocksource/
4336
4337 CMPC ACPI DRIVER
4338 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4339 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4340 L:      platform-driver-x86@vger.kernel.org
4341 S:      Supported
4342 F:      drivers/platform/x86/classmate-laptop.c
4343
4344 COBALT MEDIA DRIVER
4345 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4346 L:      linux-media@vger.kernel.org
4347 S:      Supported
4348 W:      https://linuxtv.org
4349 T:      git git://linuxtv.org/media_tree.git
4350 F:      drivers/media/pci/cobalt/
4351
4352 COCCINELLE/Semantic Patches (SmPL)
4353 M:      Julia Lawall <Julia.Lawall@lip6.fr>
4354 M:      Gilles Muller <Gilles.Muller@lip6.fr>
4355 M:      Nicolas Palix <nicolas.palix@imag.fr>
4356 M:      Michal Marek <michal.lkml@markovi.net>
4357 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4358 S:      Supported
4359 W:      http://coccinelle.lip6.fr/
4360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4361 F:      Documentation/dev-tools/coccinelle.rst
4362 F:      scripts/coccicheck
4363 F:      scripts/coccinelle/
4364
4365 CODA FILE SYSTEM
4366 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4367 M:      coda@cs.cmu.edu
4368 L:      codalist@coda.cs.cmu.edu
4369 S:      Maintained
4370 W:      http://www.coda.cs.cmu.edu/
4371 F:      Documentation/filesystems/coda.rst
4372 F:      fs/coda/
4373 F:      include/linux/coda*.h
4374 F:      include/uapi/linux/coda*.h
4375
4376 CODA V4L2 MEM2MEM DRIVER
4377 M:      Philipp Zabel <p.zabel@pengutronix.de>
4378 L:      linux-media@vger.kernel.org
4379 S:      Maintained
4380 F:      Documentation/devicetree/bindings/media/coda.yaml
4381 F:      drivers/media/platform/coda/
4382
4383 CODE OF CONDUCT
4384 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4385 S:      Supported
4386 F:      Documentation/process/code-of-conduct-interpretation.rst
4387 F:      Documentation/process/code-of-conduct.rst
4388
4389 COMMON CLK FRAMEWORK
4390 M:      Michael Turquette <mturquette@baylibre.com>
4391 M:      Stephen Boyd <sboyd@kernel.org>
4392 L:      linux-clk@vger.kernel.org
4393 S:      Maintained
4394 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4396 F:      Documentation/devicetree/bindings/clock/
4397 F:      drivers/clk/
4398 F:      include/linux/clk-pr*
4399 F:      include/linux/clk/
4400 F:      include/linux/of_clk.h
4401 X:      drivers/clk/clkdev.c
4402
4403 COMMON INTERNET FILE SYSTEM (CIFS)
4404 M:      Steve French <sfrench@samba.org>
4405 L:      linux-cifs@vger.kernel.org
4406 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4407 S:      Supported
4408 W:      http://linux-cifs.samba.org/
4409 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4410 F:      Documentation/admin-guide/cifs/
4411 F:      fs/cifs/
4412
4413 COMPACTPCI HOTPLUG CORE
4414 M:      Scott Murray <scott@spiteful.org>
4415 L:      linux-pci@vger.kernel.org
4416 S:      Maintained
4417 F:      drivers/pci/hotplug/cpci_hotplug*
4418
4419 COMPACTPCI HOTPLUG GENERIC DRIVER
4420 M:      Scott Murray <scott@spiteful.org>
4421 L:      linux-pci@vger.kernel.org
4422 S:      Maintained
4423 F:      drivers/pci/hotplug/cpcihp_generic.c
4424
4425 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4426 M:      Scott Murray <scott@spiteful.org>
4427 L:      linux-pci@vger.kernel.org
4428 S:      Maintained
4429 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4430
4431 COMPAL LAPTOP SUPPORT
4432 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4433 L:      platform-driver-x86@vger.kernel.org
4434 S:      Maintained
4435 F:      drivers/platform/x86/compal-laptop.c
4436
4437 COMPILER ATTRIBUTES
4438 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4439 S:      Maintained
4440 F:      include/linux/compiler_attributes.h
4441
4442 CONEXANT ACCESSRUNNER USB DRIVER
4443 L:      accessrunner-general@lists.sourceforge.net
4444 S:      Orphan
4445 W:      http://accessrunner.sourceforge.net/
4446 F:      drivers/usb/atm/cxacru.c
4447
4448 CONFIGFS
4449 M:      Joel Becker <jlbec@evilplan.org>
4450 M:      Christoph Hellwig <hch@lst.de>
4451 S:      Supported
4452 T:      git git://git.infradead.org/users/hch/configfs.git
4453 F:      fs/configfs/
4454 F:      include/linux/configfs.h
4455 F:      samples/configfs/
4456
4457 CONSOLE SUBSYSTEM
4458 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4459 S:      Supported
4460 F:      drivers/video/console/
4461 F:      include/linux/console*
4462
4463 CONTROL GROUP (CGROUP)
4464 M:      Tejun Heo <tj@kernel.org>
4465 M:      Li Zefan <lizefan@huawei.com>
4466 M:      Johannes Weiner <hannes@cmpxchg.org>
4467 L:      cgroups@vger.kernel.org
4468 S:      Maintained
4469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4470 F:      Documentation/admin-guide/cgroup-v1/
4471 F:      Documentation/admin-guide/cgroup-v2.rst
4472 F:      include/linux/cgroup*
4473 F:      kernel/cgroup/
4474
4475 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4476 M:      Tejun Heo <tj@kernel.org>
4477 M:      Jens Axboe <axboe@kernel.dk>
4478 L:      cgroups@vger.kernel.org
4479 L:      linux-block@vger.kernel.org
4480 T:      git git://git.kernel.dk/linux-block
4481 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4482 F:      block/bfq-cgroup.c
4483 F:      block/blk-cgroup.c
4484 F:      block/blk-iolatency.c
4485 F:      block/blk-throttle.c
4486 F:      include/linux/blk-cgroup.h
4487
4488 CONTROL GROUP - CPUSET
4489 M:      Li Zefan <lizefan@huawei.com>
4490 L:      cgroups@vger.kernel.org
4491 S:      Maintained
4492 W:      http://www.bullopensource.org/cpuset/
4493 W:      http://oss.sgi.com/projects/cpusets/
4494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4495 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4496 F:      include/linux/cpuset.h
4497 F:      kernel/cgroup/cpuset.c
4498
4499 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4500 M:      Johannes Weiner <hannes@cmpxchg.org>
4501 M:      Michal Hocko <mhocko@kernel.org>
4502 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4503 L:      cgroups@vger.kernel.org
4504 L:      linux-mm@kvack.org
4505 S:      Maintained
4506 F:      mm/memcontrol.c
4507 F:      mm/swap_cgroup.c
4508
4509 CORETEMP HARDWARE MONITORING DRIVER
4510 M:      Fenghua Yu <fenghua.yu@intel.com>
4511 L:      linux-hwmon@vger.kernel.org
4512 S:      Maintained
4513 F:      Documentation/hwmon/coretemp.rst
4514 F:      drivers/hwmon/coretemp.c
4515
4516 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4517 M:      Marius Zachmann <mail@mariuszachmann.de>
4518 L:      linux-hwmon@vger.kernel.org
4519 S:      Maintained
4520 F:      drivers/hwmon/corsair-cpro.c
4521
4522 CORSAIR-PSU HARDWARE MONITOR DRIVER
4523 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4524 L:      linux-hwmon@vger.kernel.org
4525 S:      Maintained
4526 F:      Documentation/hwmon/corsair-psu.rst
4527 F:      drivers/hwmon/corsair-psu.c
4528
4529 COSA/SRP SYNC SERIAL DRIVER
4530 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4531 S:      Maintained
4532 W:      http://www.fi.muni.cz/~kas/cosa/
4533 F:      drivers/net/wan/cosa*
4534
4535 COUNTER SUBSYSTEM
4536 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4537 L:      linux-iio@vger.kernel.org
4538 S:      Maintained
4539 F:      Documentation/ABI/testing/sysfs-bus-counter*
4540 F:      Documentation/driver-api/generic-counter.rst
4541 F:      drivers/counter/
4542 F:      include/linux/counter.h
4543 F:      include/linux/counter_enum.h
4544
4545 CPMAC ETHERNET DRIVER
4546 M:      Florian Fainelli <f.fainelli@gmail.com>
4547 L:      netdev@vger.kernel.org
4548 S:      Maintained
4549 F:      drivers/net/ethernet/ti/cpmac.c
4550
4551 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4552 M:      Viresh Kumar <viresh.kumar@linaro.org>
4553 M:      Sudeep Holla <sudeep.holla@arm.com>
4554 L:      linux-pm@vger.kernel.org
4555 S:      Maintained
4556 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4557 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4558
4559 CPU FREQUENCY SCALING FRAMEWORK
4560 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4561 M:      Viresh Kumar <viresh.kumar@linaro.org>
4562 L:      linux-pm@vger.kernel.org
4563 S:      Maintained
4564 B:      https://bugzilla.kernel.org
4565 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4567 F:      Documentation/admin-guide/pm/cpufreq.rst
4568 F:      Documentation/admin-guide/pm/intel_pstate.rst
4569 F:      Documentation/cpu-freq/
4570 F:      Documentation/devicetree/bindings/cpufreq/
4571 F:      drivers/cpufreq/
4572 F:      include/linux/cpufreq.h
4573 F:      include/linux/sched/cpufreq.h
4574 F:      kernel/sched/cpufreq*.c
4575 F:      tools/testing/selftests/cpufreq/
4576
4577 CPU IDLE TIME MANAGEMENT FRAMEWORK
4578 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4579 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4580 L:      linux-pm@vger.kernel.org
4581 S:      Maintained
4582 B:      https://bugzilla.kernel.org
4583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4584 F:      Documentation/admin-guide/pm/cpuidle.rst
4585 F:      Documentation/driver-api/pm/cpuidle.rst
4586 F:      drivers/cpuidle/*
4587 F:      include/linux/cpuidle.h
4588
4589 CPU POWER MONITORING SUBSYSTEM
4590 M:      Thomas Renninger <trenn@suse.com>
4591 M:      Shuah Khan <shuah@kernel.org>
4592 M:      Shuah Khan <skhan@linuxfoundation.org>
4593 L:      linux-pm@vger.kernel.org
4594 S:      Maintained
4595 F:      tools/power/cpupower/
4596
4597 CPUID/MSR DRIVER
4598 M:      "H. Peter Anvin" <hpa@zytor.com>
4599 S:      Maintained
4600 F:      arch/x86/kernel/cpuid.c
4601 F:      arch/x86/kernel/msr.c
4602
4603 CPUIDLE DRIVER - ARM BIG LITTLE
4604 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4605 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4606 L:      linux-pm@vger.kernel.org
4607 L:      linux-arm-kernel@lists.infradead.org
4608 S:      Maintained
4609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4610 F:      drivers/cpuidle/cpuidle-big_little.c
4611
4612 CPUIDLE DRIVER - ARM EXYNOS
4613 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4614 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4615 M:      Kukjin Kim <kgene@kernel.org>
4616 L:      linux-pm@vger.kernel.org
4617 L:      linux-samsung-soc@vger.kernel.org
4618 S:      Supported
4619 F:      arch/arm/mach-exynos/pm.c
4620 F:      drivers/cpuidle/cpuidle-exynos.c
4621
4622 CPUIDLE DRIVER - ARM PSCI
4623 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4624 M:      Sudeep Holla <sudeep.holla@arm.com>
4625 L:      linux-pm@vger.kernel.org
4626 L:      linux-arm-kernel@lists.infradead.org
4627 S:      Supported
4628 F:      drivers/cpuidle/cpuidle-psci.c
4629
4630 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4631 M:      Ulf Hansson <ulf.hansson@linaro.org>
4632 L:      linux-pm@vger.kernel.org
4633 L:      linux-arm-kernel@lists.infradead.org
4634 S:      Supported
4635 F:      drivers/cpuidle/cpuidle-psci.h
4636 F:      drivers/cpuidle/cpuidle-psci-domain.c
4637
4638 CRAMFS FILESYSTEM
4639 M:      Nicolas Pitre <nico@fluxnic.net>
4640 S:      Maintained
4641 F:      Documentation/filesystems/cramfs.rst
4642 F:      fs/cramfs/
4643
4644 CREATIVE SB0540
4645 M:      Bastien Nocera <hadess@hadess.net>
4646 L:      linux-input@vger.kernel.org
4647 S:      Maintained
4648 F:      drivers/hid/hid-creative-sb0540.c
4649
4650 CRYPTO API
4651 M:      Herbert Xu <herbert@gondor.apana.org.au>
4652 M:      "David S. Miller" <davem@davemloft.net>
4653 L:      linux-crypto@vger.kernel.org
4654 S:      Maintained
4655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4657 F:      Documentation/crypto/
4658 F:      Documentation/devicetree/bindings/crypto/
4659 F:      arch/*/crypto/
4660 F:      crypto/
4661 F:      drivers/crypto/
4662 F:      include/crypto/
4663 F:      include/linux/crypto*
4664 F:      lib/crypto/
4665
4666 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4667 M:      Neil Horman <nhorman@tuxdriver.com>
4668 L:      linux-crypto@vger.kernel.org
4669 S:      Maintained
4670 F:      crypto/ansi_cprng.c
4671 F:      crypto/rng.c
4672
4673 CS3308 MEDIA DRIVER
4674 M:      Hans Verkuil <hverkuil@xs4all.nl>
4675 L:      linux-media@vger.kernel.org
4676 S:      Odd Fixes
4677 W:      http://linuxtv.org
4678 T:      git git://linuxtv.org/media_tree.git
4679 F:      drivers/media/i2c/cs3308.c
4680
4681 CS5535 Audio ALSA driver
4682 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4683 S:      Maintained
4684 F:      sound/pci/cs5535audio/
4685
4686 CSI DRIVERS FOR ALLWINNER V3s
4687 M:      Yong Deng <yong.deng@magewell.com>
4688 L:      linux-media@vger.kernel.org
4689 S:      Maintained
4690 T:      git git://linuxtv.org/media_tree.git
4691 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4692 F:      drivers/media/platform/sunxi/sun6i-csi/
4693
4694 CW1200 WLAN driver
4695 M:      Solomon Peachy <pizza@shaftnet.org>
4696 S:      Maintained
4697 F:      drivers/net/wireless/st/cw1200/
4698
4699 CX18 VIDEO4LINUX DRIVER
4700 M:      Andy Walls <awalls@md.metrocast.net>
4701 L:      linux-media@vger.kernel.org
4702 S:      Maintained
4703 W:      https://linuxtv.org
4704 T:      git git://linuxtv.org/media_tree.git
4705 F:      drivers/media/pci/cx18/
4706 F:      include/uapi/linux/ivtv*
4707
4708 CX2341X MPEG ENCODER HELPER MODULE
4709 M:      Hans Verkuil <hverkuil@xs4all.nl>
4710 L:      linux-media@vger.kernel.org
4711 S:      Maintained
4712 W:      https://linuxtv.org
4713 T:      git git://linuxtv.org/media_tree.git
4714 F:      drivers/media/common/cx2341x*
4715 F:      include/media/drv-intf/cx2341x.h
4716
4717 CX24120 MEDIA DRIVER
4718 M:      Jemma Denson <jdenson@gmail.com>
4719 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4720 L:      linux-media@vger.kernel.org
4721 S:      Maintained
4722 W:      https://linuxtv.org
4723 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4724 F:      drivers/media/dvb-frontends/cx24120*
4725
4726 CX88 VIDEO4LINUX DRIVER
4727 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4728 L:      linux-media@vger.kernel.org
4729 S:      Odd fixes
4730 W:      https://linuxtv.org
4731 T:      git git://linuxtv.org/media_tree.git
4732 F:      Documentation/driver-api/media/drivers/cx88*
4733 F:      drivers/media/pci/cx88/
4734
4735 CXD2820R MEDIA DRIVER
4736 M:      Antti Palosaari <crope@iki.fi>
4737 L:      linux-media@vger.kernel.org
4738 S:      Maintained
4739 W:      https://linuxtv.org
4740 W:      http://palosaari.fi/linux/
4741 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4742 T:      git git://linuxtv.org/anttip/media_tree.git
4743 F:      drivers/media/dvb-frontends/cxd2820r*
4744
4745 CXGB3 ETHERNET DRIVER (CXGB3)
4746 M:      Raju Rangoju <rajur@chelsio.com>
4747 L:      netdev@vger.kernel.org
4748 S:      Supported
4749 W:      http://www.chelsio.com
4750 F:      drivers/net/ethernet/chelsio/cxgb3/
4751
4752 CXGB3 ISCSI DRIVER (CXGB3I)
4753 M:      Karen Xie <kxie@chelsio.com>
4754 L:      linux-scsi@vger.kernel.org
4755 S:      Supported
4756 W:      http://www.chelsio.com
4757 F:      drivers/scsi/cxgbi/cxgb3i
4758
4759 CXGB4 CRYPTO DRIVER (chcr)
4760 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4761 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4762 M:      Rohit Maheshwari <rohitm@chelsio.com>
4763 L:      linux-crypto@vger.kernel.org
4764 S:      Supported
4765 W:      http://www.chelsio.com
4766 F:      drivers/crypto/chelsio
4767
4768 CXGB4 INLINE CRYPTO DRIVER
4769 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4770 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4771 M:      Rohit Maheshwari <rohitm@chelsio.com>
4772 L:      netdev@vger.kernel.org
4773 S:      Supported
4774 W:      http://www.chelsio.com
4775 F:      drivers/net/ethernet/chelsio/inline_crypto/
4776
4777 CXGB4 ETHERNET DRIVER (CXGB4)
4778 M:      Raju Rangoju <rajur@chelsio.com>
4779 L:      netdev@vger.kernel.org
4780 S:      Supported
4781 W:      http://www.chelsio.com
4782 F:      drivers/net/ethernet/chelsio/cxgb4/
4783
4784 CXGB4 ISCSI DRIVER (CXGB4I)
4785 M:      Karen Xie <kxie@chelsio.com>
4786 L:      linux-scsi@vger.kernel.org
4787 S:      Supported
4788 W:      http://www.chelsio.com
4789 F:      drivers/scsi/cxgbi/cxgb4i
4790
4791 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4792 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4793 L:      linux-rdma@vger.kernel.org
4794 S:      Supported
4795 W:      http://www.openfabrics.org
4796 F:      drivers/infiniband/hw/cxgb4/
4797 F:      include/uapi/rdma/cxgb4-abi.h
4798
4799 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4800 M:      Raju Rangoju <rajur@chelsio.com>
4801 L:      netdev@vger.kernel.org
4802 S:      Supported
4803 W:      http://www.chelsio.com
4804 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4805
4806 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4807 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4808 M:      Andrew Donnellan <ajd@linux.ibm.com>
4809 L:      linuxppc-dev@lists.ozlabs.org
4810 S:      Supported
4811 F:      Documentation/ABI/testing/sysfs-class-cxl
4812 F:      Documentation/powerpc/cxl.rst
4813 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4814 F:      drivers/misc/cxl/
4815 F:      include/misc/cxl*
4816 F:      include/uapi/misc/cxl.h
4817
4818 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4819 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4820 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4821 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4822 L:      linux-scsi@vger.kernel.org
4823 S:      Supported
4824 F:      Documentation/powerpc/cxlflash.rst
4825 F:      drivers/scsi/cxlflash/
4826 F:      include/uapi/scsi/cxlflash_ioctl.h
4827
4828 CYBERPRO FB DRIVER
4829 M:      Russell King <linux@armlinux.org.uk>
4830 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4831 S:      Maintained
4832 W:      http://www.armlinux.org.uk/
4833 F:      drivers/video/fbdev/cyber2000fb.*
4834
4835 CYCLADES ASYNC MUX DRIVER
4836 S:      Orphan
4837 W:      http://www.cyclades.com/
4838 F:      drivers/tty/cyclades.c
4839 F:      include/linux/cyclades.h
4840 F:      include/uapi/linux/cyclades.h
4841
4842 CYCLADES PC300 DRIVER
4843 S:      Orphan
4844 W:      http://www.cyclades.com/
4845 F:      drivers/net/wan/pc300*
4846
4847 CYPRESS_FIRMWARE MEDIA DRIVER
4848 M:      Antti Palosaari <crope@iki.fi>
4849 L:      linux-media@vger.kernel.org
4850 S:      Maintained
4851 W:      https://linuxtv.org
4852 W:      http://palosaari.fi/linux/
4853 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4854 T:      git git://linuxtv.org/anttip/media_tree.git
4855 F:      drivers/media/common/cypress_firmware*
4856
4857 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
4858 M:      Linus Walleij <linus.walleij@linaro.org>
4859 L:      linux-input@vger.kernel.org
4860 S:      Maintained
4861 F:      drivers/input/touchscreen/cy8ctma140.c
4862
4863 CYTTSP TOUCHSCREEN DRIVER
4864 M:      Ferruh Yigit <fery@cypress.com>
4865 L:      linux-input@vger.kernel.org
4866 S:      Supported
4867 F:      drivers/input/touchscreen/cyttsp*
4868 F:      include/linux/input/cyttsp.h
4869
4870 D-LINK DIR-685 TOUCHKEYS DRIVER
4871 M:      Linus Walleij <linus.walleij@linaro.org>
4872 L:      linux-input@vger.kernel.org
4873 S:      Supported
4874 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4875
4876 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4877 M:      Joshua Kinard <kumba@gentoo.org>
4878 S:      Maintained
4879 F:      drivers/rtc/rtc-ds1685.c
4880 F:      include/linux/rtc/ds1685.h
4881
4882 DAMA SLAVE for AX.25
4883 M:      Joerg Reuter <jreuter@yaina.de>
4884 L:      linux-hams@vger.kernel.org
4885 S:      Maintained
4886 W:      http://yaina.de/jreuter/
4887 W:      http://www.qsl.net/dl1bke/
4888 F:      net/ax25/af_ax25.c
4889 F:      net/ax25/ax25_dev.c
4890 F:      net/ax25/ax25_ds_*
4891 F:      net/ax25/ax25_in.c
4892 F:      net/ax25/ax25_out.c
4893 F:      net/ax25/ax25_timer.c
4894 F:      net/ax25/sysctl_net_ax25.c
4895
4896 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4897 L:      netdev@vger.kernel.org
4898 S:      Orphan
4899 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
4900 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4901
4902 DC390/AM53C974 SCSI driver
4903 M:      Hannes Reinecke <hare@suse.com>
4904 L:      linux-scsi@vger.kernel.org
4905 S:      Maintained
4906 F:      drivers/scsi/am53c974.c
4907
4908 DC395x SCSI driver
4909 M:      Oliver Neukum <oliver@neukum.org>
4910 M:      Ali Akcaagac <aliakc@web.de>
4911 M:      Jamie Lenehan <lenehan@twibble.org>
4912 L:      dc395x@twibble.org
4913 S:      Maintained
4914 W:      http://twibble.org/dist/dc395x/
4915 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4916 F:      Documentation/scsi/dc395x.rst
4917 F:      drivers/scsi/dc395x.*
4918
4919 DCCP PROTOCOL
4920 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4921 L:      dccp@vger.kernel.org
4922 S:      Maintained
4923 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4924 F:      include/linux/dccp.h
4925 F:      include/linux/tfrc.h
4926 F:      include/uapi/linux/dccp.h
4927 F:      net/dccp/
4928
4929 DECnet NETWORK LAYER
4930 L:      linux-decnet-user@lists.sourceforge.net
4931 S:      Orphan
4932 W:      http://linux-decnet.sourceforge.net
4933 F:      Documentation/networking/decnet.rst
4934 F:      net/decnet/
4935
4936 DECSTATION PLATFORM SUPPORT
4937 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4938 L:      linux-mips@vger.kernel.org
4939 S:      Maintained
4940 W:      http://www.linux-mips.org/wiki/DECstation
4941 F:      arch/mips/dec/
4942 F:      arch/mips/include/asm/dec/
4943 F:      arch/mips/include/asm/mach-dec/
4944
4945 DEFXX FDDI NETWORK DRIVER
4946 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4947 S:      Maintained
4948 F:      drivers/net/fddi/defxx.*
4949
4950 DEFZA FDDI NETWORK DRIVER
4951 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4952 S:      Maintained
4953 F:      drivers/net/fddi/defza.*
4954
4955 DEINTERLACE DRIVERS FOR ALLWINNER H3
4956 M:      Jernej Skrabec <jernej.skrabec@siol.net>
4957 L:      linux-media@vger.kernel.org
4958 S:      Maintained
4959 T:      git git://linuxtv.org/media_tree.git
4960 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4961 F:      drivers/media/platform/sunxi/sun8i-di/
4962
4963 DELL LAPTOP DRIVER
4964 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4965 M:      Pali Rohár <pali@kernel.org>
4966 L:      platform-driver-x86@vger.kernel.org
4967 S:      Maintained
4968 F:      drivers/platform/x86/dell-laptop.c
4969
4970 DELL LAPTOP FREEFALL DRIVER
4971 M:      Pali Rohár <pali@kernel.org>
4972 S:      Maintained
4973 F:      drivers/platform/x86/dell-smo8800.c
4974
4975 DELL LAPTOP RBTN DRIVER
4976 M:      Pali Rohár <pali@kernel.org>
4977 S:      Maintained
4978 F:      drivers/platform/x86/dell-rbtn.*
4979
4980 DELL LAPTOP SMM DRIVER
4981 M:      Pali Rohár <pali@kernel.org>
4982 S:      Maintained
4983 F:      drivers/hwmon/dell-smm-hwmon.c
4984 F:      include/uapi/linux/i8k.h
4985
4986 DELL REMOTE BIOS UPDATE DRIVER
4987 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4988 L:      platform-driver-x86@vger.kernel.org
4989 S:      Maintained
4990 F:      drivers/platform/x86/dell_rbu.c
4991
4992 DELL SMBIOS DRIVER
4993 M:      Pali Rohár <pali@kernel.org>
4994 M:      Mario Limonciello <mario.limonciello@dell.com>
4995 L:      platform-driver-x86@vger.kernel.org
4996 S:      Maintained
4997 F:      drivers/platform/x86/dell-smbios.*
4998
4999 DELL SMBIOS SMM DRIVER
5000 M:      Mario Limonciello <mario.limonciello@dell.com>
5001 L:      platform-driver-x86@vger.kernel.org
5002 S:      Maintained
5003 F:      drivers/platform/x86/dell-smbios-smm.c
5004
5005 DELL SMBIOS WMI DRIVER
5006 M:      Mario Limonciello <mario.limonciello@dell.com>
5007 L:      platform-driver-x86@vger.kernel.org
5008 S:      Maintained
5009 F:      drivers/platform/x86/dell-smbios-wmi.c
5010 F:      tools/wmi/dell-smbios-example.c
5011
5012 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5013 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5014 L:      platform-driver-x86@vger.kernel.org
5015 S:      Maintained
5016 F:      Documentation/driver-api/dcdbas.rst
5017 F:      drivers/platform/x86/dcdbas.*
5018
5019 DELL WMI DESCRIPTOR DRIVER
5020 M:      Mario Limonciello <mario.limonciello@dell.com>
5021 S:      Maintained
5022 F:      drivers/platform/x86/dell-wmi-descriptor.c
5023
5024 DELL WMI SYSMAN DRIVER
5025 M:      Divya Bharathi <divya.bharathi@dell.com>
5026 M:      Mario Limonciello <mario.limonciello@dell.com>
5027 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5028 L:      platform-driver-x86@vger.kernel.org
5029 S:      Maintained
5030 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5031 F:      drivers/platform/x86/dell-wmi-sysman/
5032
5033 DELL WMI NOTIFICATIONS DRIVER
5034 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5035 M:      Pali Rohár <pali@kernel.org>
5036 S:      Maintained
5037 F:      drivers/platform/x86/dell-wmi.c
5038
5039 DELTA ST MEDIA DRIVER
5040 M:      Hugues Fruchet <hugues.fruchet@st.com>
5041 L:      linux-media@vger.kernel.org
5042 S:      Supported
5043 W:      https://linuxtv.org
5044 T:      git git://linuxtv.org/media_tree.git
5045 F:      drivers/media/platform/sti/delta
5046
5047 DENALI NAND DRIVER
5048 L:      linux-mtd@lists.infradead.org
5049 S:      Orphan
5050 F:      drivers/mtd/nand/raw/denali*
5051
5052 DESIGNWARE EDMA CORE IP DRIVER
5053 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5054 L:      dmaengine@vger.kernel.org
5055 S:      Maintained
5056 F:      drivers/dma/dw-edma/
5057 F:      include/linux/dma/edma.h
5058
5059 DESIGNWARE USB2 DRD IP DRIVER
5060 M:      Minas Harutyunyan <hminas@synopsys.com>
5061 L:      linux-usb@vger.kernel.org
5062 S:      Maintained
5063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5064 F:      drivers/usb/dwc2/
5065
5066 DESIGNWARE USB3 DRD IP DRIVER
5067 M:      Felipe Balbi <balbi@kernel.org>
5068 L:      linux-usb@vger.kernel.org
5069 S:      Maintained
5070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5071 F:      drivers/usb/dwc3/
5072
5073 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5074 M:      Andreas Klinger <ak@it-klinger.de>
5075 L:      linux-iio@vger.kernel.org
5076 S:      Maintained
5077 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5078 F:      drivers/iio/proximity/srf*.c
5079
5080 DEVICE COREDUMP (DEV_COREDUMP)
5081 M:      Johannes Berg <johannes@sipsolutions.net>
5082 L:      linux-kernel@vger.kernel.org
5083 S:      Maintained
5084 F:      drivers/base/devcoredump.c
5085 F:      include/linux/devcoredump.h
5086
5087 DEVICE DEPENDENCY HELPER SCRIPT
5088 M:      Saravana Kannan <saravanak@google.com>
5089 L:      linux-kernel@vger.kernel.org
5090 S:      Maintained
5091 F:      scripts/dev-needs.sh
5092
5093 DEVICE DIRECT ACCESS (DAX)
5094 M:      Dan Williams <dan.j.williams@intel.com>
5095 M:      Vishal Verma <vishal.l.verma@intel.com>
5096 M:      Dave Jiang <dave.jiang@intel.com>
5097 L:      linux-nvdimm@lists.01.org
5098 S:      Supported
5099 F:      drivers/dax/
5100
5101 DEVICE FREQUENCY (DEVFREQ)
5102 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5103 M:      Kyungmin Park <kyungmin.park@samsung.com>
5104 M:      Chanwoo Choi <cw00.choi@samsung.com>
5105 L:      linux-pm@vger.kernel.org
5106 S:      Maintained
5107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5108 F:      Documentation/devicetree/bindings/devfreq/
5109 F:      drivers/devfreq/
5110 F:      include/linux/devfreq.h
5111 F:      include/trace/events/devfreq.h
5112
5113 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5114 M:      Chanwoo Choi <cw00.choi@samsung.com>
5115 L:      linux-pm@vger.kernel.org
5116 S:      Supported
5117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5118 F:      Documentation/devicetree/bindings/devfreq/event/
5119 F:      drivers/devfreq/devfreq-event.c
5120 F:      drivers/devfreq/event/
5121 F:      include/dt-bindings/pmu/exynos_ppmu.h
5122 F:      include/linux/devfreq-event.h
5123
5124 DEVICE NUMBER REGISTRY
5125 M:      Torben Mathiasen <device@lanana.org>
5126 S:      Maintained
5127 W:      http://lanana.org/docs/device-list/index.html
5128
5129 DEVICE-MAPPER  (LVM)
5130 M:      Alasdair Kergon <agk@redhat.com>
5131 M:      Mike Snitzer <snitzer@redhat.com>
5132 M:      dm-devel@redhat.com
5133 L:      dm-devel@redhat.com
5134 S:      Maintained
5135 W:      http://sources.redhat.com/dm
5136 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5138 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5139 F:      Documentation/admin-guide/device-mapper/
5140 F:      drivers/md/Kconfig
5141 F:      drivers/md/Makefile
5142 F:      drivers/md/dm*
5143 F:      drivers/md/persistent-data/
5144 F:      include/linux/device-mapper.h
5145 F:      include/linux/dm-*.h
5146 F:      include/uapi/linux/dm-*.h
5147
5148 DEVLINK
5149 M:      Jiri Pirko <jiri@nvidia.com>
5150 L:      netdev@vger.kernel.org
5151 S:      Supported
5152 F:      Documentation/networking/devlink
5153 F:      include/net/devlink.h
5154 F:      include/uapi/linux/devlink.h
5155 F:      net/core/devlink.c
5156
5157 DIALOG SEMICONDUCTOR DRIVERS
5158 M:      Support Opensource <support.opensource@diasemi.com>
5159 S:      Supported
5160 W:      http://www.dialog-semiconductor.com/products
5161 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5162 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5163 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5164 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5165 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5166 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5167 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5168 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5169 F:      Documentation/hwmon/da90??.rst
5170 F:      drivers/gpio/gpio-da90??.c
5171 F:      drivers/hwmon/da90??-hwmon.c
5172 F:      drivers/iio/adc/da91??-*.c
5173 F:      drivers/input/misc/da90??_onkey.c
5174 F:      drivers/input/touchscreen/da9052_tsi.c
5175 F:      drivers/leds/leds-da90??.c
5176 F:      drivers/mfd/da903x.c
5177 F:      drivers/mfd/da90??-*.c
5178 F:      drivers/mfd/da91??-*.c
5179 F:      drivers/pinctrl/pinctrl-da90??.c
5180 F:      drivers/power/supply/da9052-battery.c
5181 F:      drivers/power/supply/da91??-*.c
5182 F:      drivers/regulator/da9???-regulator.[ch]
5183 F:      drivers/regulator/slg51000-regulator.[ch]
5184 F:      drivers/rtc/rtc-da90??.c
5185 F:      drivers/thermal/da90??-thermal.c
5186 F:      drivers/video/backlight/da90??_bl.c
5187 F:      drivers/watchdog/da90??_wdt.c
5188 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5189 F:      include/linux/mfd/da903x.h
5190 F:      include/linux/mfd/da9052/
5191 F:      include/linux/mfd/da9055/
5192 F:      include/linux/mfd/da9062/
5193 F:      include/linux/mfd/da9063/
5194 F:      include/linux/mfd/da9150/
5195 F:      include/linux/regulator/da9211.h
5196 F:      include/sound/da[79]*.h
5197 F:      sound/soc/codecs/da[79]*.[ch]
5198
5199 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5200 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5201 L:      linux-gpio@vger.kernel.org
5202 S:      Maintained
5203 F:      drivers/gpio/gpio-gpio-mm.c
5204
5205 DIOLAN U2C-12 I2C DRIVER
5206 M:      Guenter Roeck <linux@roeck-us.net>
5207 L:      linux-i2c@vger.kernel.org
5208 S:      Maintained
5209 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5210
5211 DIRECTORY NOTIFICATION (DNOTIFY)
5212 M:      Jan Kara <jack@suse.cz>
5213 R:      Amir Goldstein <amir73il@gmail.com>
5214 L:      linux-fsdevel@vger.kernel.org
5215 S:      Maintained
5216 F:      Documentation/filesystems/dnotify.rst
5217 F:      fs/notify/dnotify/
5218 F:      include/linux/dnotify.h
5219
5220 DISK GEOMETRY AND PARTITION HANDLING
5221 M:      Andries Brouwer <aeb@cwi.nl>
5222 S:      Maintained
5223 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5224 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5225 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5226
5227 DISKQUOTA
5228 M:      Jan Kara <jack@suse.com>
5229 S:      Maintained
5230 F:      Documentation/filesystems/quota.rst
5231 F:      fs/quota/
5232 F:      include/linux/quota*.h
5233 F:      include/uapi/linux/quota*.h
5234
5235 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5236 M:      Bernie Thompson <bernie@plugable.com>
5237 L:      linux-fbdev@vger.kernel.org
5238 S:      Maintained
5239 W:      http://plugable.com/category/projects/udlfb/
5240 F:      Documentation/fb/udlfb.rst
5241 F:      drivers/video/fbdev/udlfb.c
5242 F:      include/video/udlfb.h
5243
5244 DISTRIBUTED LOCK MANAGER (DLM)
5245 M:      Christine Caulfield <ccaulfie@redhat.com>
5246 M:      David Teigland <teigland@redhat.com>
5247 L:      cluster-devel@redhat.com
5248 S:      Supported
5249 W:      http://sources.redhat.com/cluster/
5250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5251 F:      fs/dlm/
5252
5253 DMA BUFFER SHARING FRAMEWORK
5254 M:      Sumit Semwal <sumit.semwal@linaro.org>
5255 M:      Christian König <christian.koenig@amd.com>
5256 L:      linux-media@vger.kernel.org
5257 L:      dri-devel@lists.freedesktop.org
5258 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5259 S:      Maintained
5260 T:      git git://anongit.freedesktop.org/drm/drm-misc
5261 F:      Documentation/driver-api/dma-buf.rst
5262 F:      drivers/dma-buf/
5263 F:      include/linux/*fence.h
5264 F:      include/linux/dma-buf*
5265 F:      include/linux/dma-resv.h
5266 K:      \bdma_(?:buf|fence|resv)\b
5267
5268 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5269 M:      Vinod Koul <vkoul@kernel.org>
5270 L:      dmaengine@vger.kernel.org
5271 S:      Maintained
5272 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5274 F:      Documentation/devicetree/bindings/dma/
5275 F:      Documentation/driver-api/dmaengine/
5276 F:      drivers/dma/
5277 F:      include/linux/dmaengine.h
5278 F:      include/linux/of_dma.h
5279
5280 DMA MAPPING HELPERS
5281 M:      Christoph Hellwig <hch@lst.de>
5282 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5283 R:      Robin Murphy <robin.murphy@arm.com>
5284 L:      iommu@lists.linux-foundation.org
5285 S:      Supported
5286 W:      http://git.infradead.org/users/hch/dma-mapping.git
5287 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5288 F:      include/asm-generic/dma-mapping.h
5289 F:      include/linux/dma-direct.h
5290 F:      include/linux/dma-mapping.h
5291 F:      include/linux/dma-map-ops.h
5292 F:      kernel/dma/
5293
5294 DMA-BUF HEAPS FRAMEWORK
5295 M:      Sumit Semwal <sumit.semwal@linaro.org>
5296 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5297 R:      Liam Mark <lmark@codeaurora.org>
5298 R:      Laura Abbott <labbott@redhat.com>
5299 R:      Brian Starkey <Brian.Starkey@arm.com>
5300 R:      John Stultz <john.stultz@linaro.org>
5301 L:      linux-media@vger.kernel.org
5302 L:      dri-devel@lists.freedesktop.org
5303 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5304 S:      Maintained
5305 T:      git git://anongit.freedesktop.org/drm/drm-misc
5306 F:      drivers/dma-buf/dma-heap.c
5307 F:      drivers/dma-buf/heaps/*
5308 F:      include/linux/dma-heap.h
5309 F:      include/uapi/linux/dma-heap.h
5310
5311 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5312 M:      Lukasz Luba <lukasz.luba@arm.com>
5313 L:      linux-pm@vger.kernel.org
5314 L:      linux-samsung-soc@vger.kernel.org
5315 S:      Maintained
5316 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5317 F:      drivers/memory/samsung/exynos5422-dmc.c
5318
5319 DME1737 HARDWARE MONITOR DRIVER
5320 M:      Juerg Haefliger <juergh@gmail.com>
5321 L:      linux-hwmon@vger.kernel.org
5322 S:      Maintained
5323 F:      Documentation/hwmon/dme1737.rst
5324 F:      drivers/hwmon/dme1737.c
5325
5326 DMI/SMBIOS SUPPORT
5327 M:      Jean Delvare <jdelvare@suse.com>
5328 S:      Maintained
5329 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5330 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5331 F:      drivers/firmware/dmi-id.c
5332 F:      drivers/firmware/dmi_scan.c
5333 F:      include/linux/dmi.h
5334
5335 DOCUMENTATION
5336 M:      Jonathan Corbet <corbet@lwn.net>
5337 L:      linux-doc@vger.kernel.org
5338 S:      Maintained
5339 P:      Documentation/doc-guide/maintainer-profile.rst
5340 T:      git git://git.lwn.net/linux.git docs-next
5341 F:      Documentation/
5342 F:      scripts/documentation-file-ref-check
5343 F:      scripts/kernel-doc
5344 F:      scripts/sphinx-pre-install
5345 X:      Documentation/ABI/
5346 X:      Documentation/admin-guide/media/
5347 X:      Documentation/devicetree/
5348 X:      Documentation/driver-api/media/
5349 X:      Documentation/firmware-guide/acpi/
5350 X:      Documentation/i2c/
5351 X:      Documentation/power/
5352 X:      Documentation/spi/
5353 X:      Documentation/userspace-api/media/
5354
5355 DOCUMENTATION SCRIPTS
5356 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5357 L:      linux-doc@vger.kernel.org
5358 S:      Maintained
5359 F:      Documentation/sphinx/parse-headers.pl
5360 F:      scripts/documentation-file-ref-check
5361 F:      scripts/sphinx-pre-install
5362
5363 DOCUMENTATION/ITALIAN
5364 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5365 L:      linux-doc@vger.kernel.org
5366 S:      Maintained
5367 F:      Documentation/translations/it_IT
5368
5369 DONGWOON DW9714 LENS VOICE COIL DRIVER
5370 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5371 L:      linux-media@vger.kernel.org
5372 S:      Maintained
5373 T:      git git://linuxtv.org/media_tree.git
5374 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5375 F:      drivers/media/i2c/dw9714.c
5376
5377 DONGWOON DW9768 LENS VOICE COIL DRIVER
5378 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5379 L:      linux-media@vger.kernel.org
5380 S:      Maintained
5381 T:      git git://linuxtv.org/media_tree.git
5382 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5383 F:      drivers/media/i2c/dw9768.c
5384
5385 DONGWOON DW9807 LENS VOICE COIL DRIVER
5386 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5387 L:      linux-media@vger.kernel.org
5388 S:      Maintained
5389 T:      git git://linuxtv.org/media_tree.git
5390 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5391 F:      drivers/media/i2c/dw9807-vcm.c
5392
5393 DOUBLETALK DRIVER
5394 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5395 L:      blinux-list@redhat.com
5396 S:      Maintained
5397 F:      drivers/char/dtlk.c
5398 F:      include/linux/dtlk.h
5399
5400 DPAA2 DATAPATH I/O (DPIO) DRIVER
5401 M:      Roy Pledge <Roy.Pledge@nxp.com>
5402 L:      linux-kernel@vger.kernel.org
5403 S:      Maintained
5404 F:      drivers/soc/fsl/dpio
5405
5406 DPAA2 ETHERNET DRIVER
5407 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5408 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5409 L:      netdev@vger.kernel.org
5410 S:      Maintained
5411 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5412 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5413 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5414 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5415 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5416 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5417 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5418 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5419 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5420
5421 DPAA2 ETHERNET SWITCH DRIVER
5422 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5423 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5424 L:      linux-kernel@vger.kernel.org
5425 S:      Maintained
5426 F:      drivers/staging/fsl-dpaa2/ethsw
5427
5428 DPT_I2O SCSI RAID DRIVER
5429 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5430 L:      linux-scsi@vger.kernel.org
5431 S:      Maintained
5432 W:      http://www.adaptec.com/
5433 F:      drivers/scsi/dpt*
5434 F:      drivers/scsi/dpt/
5435
5436 DRBD DRIVER
5437 M:      Philipp Reisner <philipp.reisner@linbit.com>
5438 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5439 L:      drbd-dev@lists.linbit.com
5440 S:      Supported
5441 W:      http://www.drbd.org
5442 T:      git git://git.linbit.com/linux-drbd.git
5443 T:      git git://git.linbit.com/drbd-8.4.git
5444 F:      Documentation/admin-guide/blockdev/
5445 F:      drivers/block/drbd/
5446 F:      lib/lru_cache.c
5447
5448 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5449 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5450 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5451 S:      Supported
5452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5453 F:      Documentation/core-api/kobject.rst
5454 F:      drivers/base/
5455 F:      fs/debugfs/
5456 F:      fs/sysfs/
5457 F:      include/linux/debugfs.h
5458 F:      include/linux/kobj*
5459 F:      lib/kobj*
5460
5461 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5462 M:      Nishanth Menon <nm@ti.com>
5463 L:      linux-pm@vger.kernel.org
5464 S:      Maintained
5465 F:      drivers/soc/ti/smartreflex.c
5466 F:      include/linux/power/smartreflex.h
5467
5468 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5469 M:      Maxime Ripard <mripard@kernel.org>
5470 M:      Chen-Yu Tsai <wens@csie.org>
5471 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5472 L:      dri-devel@lists.freedesktop.org
5473 S:      Supported
5474 T:      git git://anongit.freedesktop.org/drm/drm-misc
5475 F:      drivers/gpu/drm/sun4i/sun8i*
5476
5477 DRM DRIVER FOR ARM PL111 CLCD
5478 M:      Eric Anholt <eric@anholt.net>
5479 S:      Supported
5480 T:      git git://anongit.freedesktop.org/drm/drm-misc
5481 F:      drivers/gpu/drm/pl111/
5482
5483 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5484 M:      Linus Walleij <linus.walleij@linaro.org>
5485 S:      Maintained
5486 T:      git git://anongit.freedesktop.org/drm/drm-misc
5487 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5488 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5489
5490 DRM DRIVER FOR ASPEED BMC GFX
5491 M:      Joel Stanley <joel@jms.id.au>
5492 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5493 S:      Supported
5494 T:      git git://anongit.freedesktop.org/drm/drm-misc
5495 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5496 F:      drivers/gpu/drm/aspeed/
5497
5498 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5499 M:      Dave Airlie <airlied@redhat.com>
5500 R:      Thomas Zimmermann <tzimmermann@suse.de>
5501 L:      dri-devel@lists.freedesktop.org
5502 S:      Supported
5503 T:      git git://anongit.freedesktop.org/drm/drm-misc
5504 F:      drivers/gpu/drm/ast/
5505
5506 DRM DRIVER FOR BOCHS VIRTUAL GPU
5507 M:      Gerd Hoffmann <kraxel@redhat.com>
5508 L:      virtualization@lists.linux-foundation.org
5509 S:      Maintained
5510 T:      git git://anongit.freedesktop.org/drm/drm-misc
5511 F:      drivers/gpu/drm/bochs/
5512
5513 DRM DRIVER FOR BOE HIMAX8279D PANELS
5514 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5515 S:      Maintained
5516 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5517 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5518
5519 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5520 M:      Linus Walleij <linus.walleij@linaro.org>
5521 S:      Maintained
5522 T:      git git://anongit.freedesktop.org/drm/drm-misc
5523 F:      drivers/gpu/drm/tve200/
5524
5525 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5526 M:      Icenowy Zheng <icenowy@aosc.io>
5527 S:      Maintained
5528 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5529 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5530
5531 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5532 M:      Jagan Teki <jagan@amarulasolutions.com>
5533 S:      Maintained
5534 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5535 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5536
5537 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5538 M:      Hans de Goede <hdegoede@redhat.com>
5539 S:      Maintained
5540 T:      git git://anongit.freedesktop.org/drm/drm-misc
5541 F:      drivers/gpu/drm/tiny/gm12u320.c
5542
5543 DRM DRIVER FOR HX8357D PANELS
5544 M:      Eric Anholt <eric@anholt.net>
5545 S:      Maintained
5546 T:      git git://anongit.freedesktop.org/drm/drm-misc
5547 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5548 F:      drivers/gpu/drm/tiny/hx8357d.c
5549
5550 DRM DRIVER FOR ILITEK ILI9225 PANELS
5551 M:      David Lechner <david@lechnology.com>
5552 S:      Maintained
5553 T:      git git://anongit.freedesktop.org/drm/drm-misc
5554 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5555 F:      drivers/gpu/drm/tiny/ili9225.c
5556
5557 DRM DRIVER FOR ILITEK ILI9486 PANELS
5558 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5559 S:      Maintained
5560 T:      git git://anongit.freedesktop.org/drm/drm-misc
5561 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5562 F:      drivers/gpu/drm/tiny/ili9486.c
5563
5564 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5565 S:      Orphan / Obsolete
5566 F:      drivers/gpu/drm/i810/
5567 F:      include/uapi/drm/i810_drm.h
5568
5569 DRM DRIVER FOR LVDS PANELS
5570 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5571 L:      dri-devel@lists.freedesktop.org
5572 T:      git git://anongit.freedesktop.org/drm/drm-misc
5573 S:      Maintained
5574 F:      drivers/gpu/drm/panel/panel-lvds.c
5575 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5576
5577 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5578 M:      Guido Günther <agx@sigxcpu.org>
5579 R:      Purism Kernel Team <kernel@puri.sm>
5580 S:      Maintained
5581 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5582 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5583
5584 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5585 S:      Orphan / Obsolete
5586 F:      drivers/gpu/drm/mga/
5587 F:      include/uapi/drm/mga_drm.h
5588
5589 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5590 M:      Dave Airlie <airlied@redhat.com>
5591 R:      Thomas Zimmermann <tzimmermann@suse.de>
5592 L:      dri-devel@lists.freedesktop.org
5593 S:      Supported
5594 T:      git git://anongit.freedesktop.org/drm/drm-misc
5595 F:      drivers/gpu/drm/mgag200/
5596
5597 DRM DRIVER FOR MI0283QT
5598 M:      Noralf Trønnes <noralf@tronnes.org>
5599 S:      Maintained
5600 T:      git git://anongit.freedesktop.org/drm/drm-misc
5601 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5602 F:      drivers/gpu/drm/tiny/mi0283qt.c
5603
5604 DRM DRIVER FOR MSM ADRENO GPU
5605 M:      Rob Clark <robdclark@gmail.com>
5606 M:      Sean Paul <sean@poorly.run>
5607 L:      linux-arm-msm@vger.kernel.org
5608 L:      dri-devel@lists.freedesktop.org
5609 L:      freedreno@lists.freedesktop.org
5610 S:      Maintained
5611 T:      git https://gitlab.freedesktop.org/drm/msm.git
5612 F:      Documentation/devicetree/bindings/display/msm/
5613 F:      drivers/gpu/drm/msm/
5614 F:      include/uapi/drm/msm_drm.h
5615
5616 DRM DRIVER FOR NOVATEK NT35510 PANELS
5617 M:      Linus Walleij <linus.walleij@linaro.org>
5618 S:      Maintained
5619 T:      git git://anongit.freedesktop.org/drm/drm-misc
5620 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5621 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5622
5623 DRM DRIVER FOR NOVATEK NT36672A PANELS
5624 M:      Sumit Semwal <sumit.semwal@linaro.org>
5625 S:      Maintained
5626 T:      git git://anongit.freedesktop.org/drm/drm-misc
5627 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
5628 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
5629
5630 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5631 M:      Ben Skeggs <bskeggs@redhat.com>
5632 L:      dri-devel@lists.freedesktop.org
5633 L:      nouveau@lists.freedesktop.org
5634 S:      Supported
5635 T:      git git://github.com/skeggsb/linux
5636 F:      drivers/gpu/drm/nouveau/
5637 F:      include/uapi/drm/nouveau_drm.h
5638
5639 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5640 M:      Stefan Mavrodiev <stefan@olimex.com>
5641 S:      Maintained
5642 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5643 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5644
5645 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5646 M:      Noralf Trønnes <noralf@tronnes.org>
5647 S:      Maintained
5648 T:      git git://anongit.freedesktop.org/drm/drm-misc
5649 F:      Documentation/devicetree/bindings/display/repaper.txt
5650 F:      drivers/gpu/drm/tiny/repaper.c
5651
5652 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5653 M:      Dave Airlie <airlied@redhat.com>
5654 M:      Gerd Hoffmann <kraxel@redhat.com>
5655 L:      virtualization@lists.linux-foundation.org
5656 S:      Obsolete
5657 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5658 T:      git git://anongit.freedesktop.org/drm/drm-misc
5659 F:      drivers/gpu/drm/tiny/cirrus.c
5660
5661 DRM DRIVER FOR QXL VIRTUAL GPU
5662 M:      Dave Airlie <airlied@redhat.com>
5663 M:      Gerd Hoffmann <kraxel@redhat.com>
5664 L:      virtualization@lists.linux-foundation.org
5665 L:      spice-devel@lists.freedesktop.org
5666 S:      Maintained
5667 T:      git git://anongit.freedesktop.org/drm/drm-misc
5668 F:      drivers/gpu/drm/qxl/
5669 F:      include/uapi/drm/qxl_drm.h
5670
5671 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5672 S:      Orphan / Obsolete
5673 F:      drivers/gpu/drm/r128/
5674 F:      include/uapi/drm/r128_drm.h
5675
5676 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5677 M:      Robert Chiras <robert.chiras@nxp.com>
5678 S:      Maintained
5679 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5680 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5681
5682 DRM DRIVER FOR SITRONIX ST7703 PANELS
5683 M:      Guido Günther <agx@sigxcpu.org>
5684 R:      Purism Kernel Team <kernel@puri.sm>
5685 R:      Ondrej Jirman <megous@megous.com>
5686 S:      Maintained
5687 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
5688 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
5689
5690 DRM DRIVER FOR SAVAGE VIDEO CARDS
5691 S:      Orphan / Obsolete
5692 F:      drivers/gpu/drm/savage/
5693 F:      include/uapi/drm/savage_drm.h
5694
5695 DRM DRIVER FOR SIS VIDEO CARDS
5696 S:      Orphan / Obsolete
5697 F:      drivers/gpu/drm/sis/
5698 F:      include/uapi/drm/sis_drm.h
5699
5700 DRM DRIVER FOR SITRONIX ST7586 PANELS
5701 M:      David Lechner <david@lechnology.com>
5702 S:      Maintained
5703 T:      git git://anongit.freedesktop.org/drm/drm-misc
5704 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5705 F:      drivers/gpu/drm/tiny/st7586.c
5706
5707 DRM DRIVER FOR SITRONIX ST7701 PANELS
5708 M:      Jagan Teki <jagan@amarulasolutions.com>
5709 S:      Maintained
5710 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5711 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5712
5713 DRM DRIVER FOR SITRONIX ST7735R PANELS
5714 M:      David Lechner <david@lechnology.com>
5715 S:      Maintained
5716 T:      git git://anongit.freedesktop.org/drm/drm-misc
5717 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5718 F:      drivers/gpu/drm/tiny/st7735r.c
5719
5720 DRM DRIVER FOR SONY ACX424AKP PANELS
5721 M:      Linus Walleij <linus.walleij@linaro.org>
5722 S:      Maintained
5723 T:      git git://anongit.freedesktop.org/drm/drm-misc
5724 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5725
5726 DRM DRIVER FOR ST-ERICSSON MCDE
5727 M:      Linus Walleij <linus.walleij@linaro.org>
5728 S:      Maintained
5729 T:      git git://anongit.freedesktop.org/drm/drm-misc
5730 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5731 F:      drivers/gpu/drm/mcde/
5732
5733 DRM DRIVER FOR TDFX VIDEO CARDS
5734 S:      Orphan / Obsolete
5735 F:      drivers/gpu/drm/tdfx/
5736
5737 DRM DRIVER FOR TPO TPG110 PANELS
5738 M:      Linus Walleij <linus.walleij@linaro.org>
5739 S:      Maintained
5740 T:      git git://anongit.freedesktop.org/drm/drm-misc
5741 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5742 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5743
5744 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5745 M:      Dave Airlie <airlied@redhat.com>
5746 R:      Sean Paul <sean@poorly.run>
5747 R:      Thomas Zimmermann <tzimmermann@suse.de>
5748 L:      dri-devel@lists.freedesktop.org
5749 S:      Supported
5750 T:      git git://anongit.freedesktop.org/drm/drm-misc
5751 F:      drivers/gpu/drm/udl/
5752
5753 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5754 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5755 M:      Melissa Wen <melissa.srw@gmail.com>
5756 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5757 R:      Daniel Vetter <daniel@ffwll.ch>
5758 L:      dri-devel@lists.freedesktop.org
5759 S:      Maintained
5760 T:      git git://anongit.freedesktop.org/drm/drm-misc
5761 F:      Documentation/gpu/vkms.rst
5762 F:      drivers/gpu/drm/vkms/
5763
5764 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5765 M:      Hans de Goede <hdegoede@redhat.com>
5766 L:      dri-devel@lists.freedesktop.org
5767 S:      Maintained
5768 T:      git git://anongit.freedesktop.org/drm/drm-misc
5769 F:      drivers/gpu/drm/vboxvideo/
5770
5771 DRM DRIVER FOR VMWARE VIRTUAL GPU
5772 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5773 M:      Roland Scheidegger <sroland@vmware.com>
5774 L:      dri-devel@lists.freedesktop.org
5775 S:      Supported
5776 T:      git git://people.freedesktop.org/~sroland/linux
5777 F:      drivers/gpu/drm/vmwgfx/
5778 F:      include/uapi/drm/vmwgfx_drm.h
5779
5780 DRM DRIVERS
5781 M:      David Airlie <airlied@linux.ie>
5782 M:      Daniel Vetter <daniel@ffwll.ch>
5783 L:      dri-devel@lists.freedesktop.org
5784 S:      Maintained
5785 B:      https://bugs.freedesktop.org/
5786 C:      irc://chat.freenode.net/dri-devel
5787 T:      git git://anongit.freedesktop.org/drm/drm
5788 F:      Documentation/devicetree/bindings/display/
5789 F:      Documentation/devicetree/bindings/gpu/
5790 F:      Documentation/gpu/
5791 F:      drivers/gpu/drm/
5792 F:      drivers/gpu/vga/
5793 F:      include/drm/
5794 F:      include/linux/vga*
5795 F:      include/uapi/drm/
5796
5797 DRM DRIVERS AND MISC GPU PATCHES
5798 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5799 M:      Maxime Ripard <mripard@kernel.org>
5800 M:      Thomas Zimmermann <tzimmermann@suse.de>
5801 S:      Maintained
5802 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5803 T:      git git://anongit.freedesktop.org/drm/drm-misc
5804 F:      Documentation/gpu/
5805 F:      drivers/gpu/drm/*
5806 F:      drivers/gpu/vga/
5807 F:      include/drm/drm*
5808 F:      include/linux/vga*
5809 F:      include/uapi/drm/drm*
5810
5811 DRM DRIVERS FOR ALLWINNER A10
5812 M:      Maxime Ripard <mripard@kernel.org>
5813 M:      Chen-Yu Tsai <wens@csie.org>
5814 L:      dri-devel@lists.freedesktop.org
5815 S:      Supported
5816 T:      git git://anongit.freedesktop.org/drm/drm-misc
5817 F:      Documentation/devicetree/bindings/display/allwinner*
5818 F:      drivers/gpu/drm/sun4i/
5819
5820 DRM DRIVERS FOR AMLOGIC SOCS
5821 M:      Neil Armstrong <narmstrong@baylibre.com>
5822 L:      dri-devel@lists.freedesktop.org
5823 L:      linux-amlogic@lists.infradead.org
5824 S:      Supported
5825 W:      http://linux-meson.com/
5826 T:      git git://anongit.freedesktop.org/drm/drm-misc
5827 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5828 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5829 F:      Documentation/gpu/meson.rst
5830 F:      drivers/gpu/drm/meson/
5831
5832 DRM DRIVERS FOR ATMEL HLCDC
5833 M:      Sam Ravnborg <sam@ravnborg.org>
5834 M:      Boris Brezillon <bbrezillon@kernel.org>
5835 L:      dri-devel@lists.freedesktop.org
5836 S:      Supported
5837 T:      git git://anongit.freedesktop.org/drm/drm-misc
5838 F:      Documentation/devicetree/bindings/display/atmel/
5839 F:      drivers/gpu/drm/atmel-hlcdc/
5840
5841 DRM DRIVERS FOR BRIDGE CHIPS
5842 M:      Andrzej Hajda <a.hajda@samsung.com>
5843 M:      Neil Armstrong <narmstrong@baylibre.com>
5844 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5845 R:      Jonas Karlman <jonas@kwiboo.se>
5846 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5847 S:      Maintained
5848 T:      git git://anongit.freedesktop.org/drm/drm-misc
5849 F:      drivers/gpu/drm/bridge/
5850
5851 DRM DRIVERS FOR EXYNOS
5852 M:      Inki Dae <inki.dae@samsung.com>
5853 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5854 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5855 M:      Kyungmin Park <kyungmin.park@samsung.com>
5856 L:      dri-devel@lists.freedesktop.org
5857 S:      Supported
5858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5859 F:      Documentation/devicetree/bindings/display/exynos/
5860 F:      drivers/gpu/drm/exynos/
5861 F:      include/uapi/drm/exynos_drm.h
5862
5863 DRM DRIVERS FOR FREESCALE DCU
5864 M:      Stefan Agner <stefan@agner.ch>
5865 M:      Alison Wang <alison.wang@nxp.com>
5866 L:      dri-devel@lists.freedesktop.org
5867 S:      Supported
5868 T:      git git://anongit.freedesktop.org/drm/drm-misc
5869 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5870 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5871 F:      drivers/gpu/drm/fsl-dcu/
5872
5873 DRM DRIVERS FOR FREESCALE IMX
5874 M:      Philipp Zabel <p.zabel@pengutronix.de>
5875 L:      dri-devel@lists.freedesktop.org
5876 S:      Maintained
5877 F:      Documentation/devicetree/bindings/display/imx/
5878 F:      drivers/gpu/drm/imx/
5879 F:      drivers/gpu/ipu-v3/
5880
5881 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5882 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5883 L:      dri-devel@lists.freedesktop.org
5884 S:      Maintained
5885 T:      git git://github.com/patjak/drm-gma500
5886 F:      drivers/gpu/drm/gma500/
5887
5888 DRM DRIVERS FOR HISILICON
5889 M:      Xinliang Liu <xinliang.liu@linaro.org>
5890 M:      Tian Tao  <tiantao6@hisilicon.com>
5891 R:      John Stultz <john.stultz@linaro.org>
5892 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5893 R:      Chen Feng <puck.chen@hisilicon.com>
5894 L:      dri-devel@lists.freedesktop.org
5895 S:      Maintained
5896 T:      git git://anongit.freedesktop.org/drm/drm-misc
5897 F:      Documentation/devicetree/bindings/display/hisilicon/
5898 F:      drivers/gpu/drm/hisilicon/
5899
5900 DRM DRIVERS FOR LIMA
5901 M:      Qiang Yu <yuq825@gmail.com>
5902 L:      dri-devel@lists.freedesktop.org
5903 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5904 S:      Maintained
5905 T:      git git://anongit.freedesktop.org/drm/drm-misc
5906 F:      drivers/gpu/drm/lima/
5907 F:      include/uapi/drm/lima_drm.h
5908
5909 DRM DRIVERS FOR MEDIATEK
5910 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
5911 M:      Philipp Zabel <p.zabel@pengutronix.de>
5912 L:      dri-devel@lists.freedesktop.org
5913 S:      Supported
5914 F:      Documentation/devicetree/bindings/display/mediatek/
5915 F:      drivers/gpu/drm/mediatek/
5916 F:      drivers/phy/mediatek/phy-mtk-hdmi*
5917 F:      drivers/phy/mediatek/phy-mtk-mipi*
5918
5919 DRM DRIVERS FOR NVIDIA TEGRA
5920 M:      Thierry Reding <thierry.reding@gmail.com>
5921 L:      dri-devel@lists.freedesktop.org
5922 L:      linux-tegra@vger.kernel.org
5923 S:      Supported
5924 T:      git git://anongit.freedesktop.org/tegra/linux.git
5925 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5926 F:      drivers/gpu/drm/tegra/
5927 F:      drivers/gpu/host1x/
5928 F:      include/linux/host1x.h
5929 F:      include/uapi/drm/tegra_drm.h
5930
5931 DRM DRIVERS FOR RENESAS
5932 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5933 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5934 L:      dri-devel@lists.freedesktop.org
5935 L:      linux-renesas-soc@vger.kernel.org
5936 S:      Supported
5937 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5938 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5939 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
5940 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5941 F:      drivers/gpu/drm/rcar-du/
5942 F:      drivers/gpu/drm/shmobile/
5943 F:      include/linux/platform_data/shmob_drm.h
5944
5945 DRM DRIVERS FOR ROCKCHIP
5946 M:      Sandy Huang <hjc@rock-chips.com>
5947 M:      Heiko Stübner <heiko@sntech.de>
5948 L:      dri-devel@lists.freedesktop.org
5949 S:      Maintained
5950 T:      git git://anongit.freedesktop.org/drm/drm-misc
5951 F:      Documentation/devicetree/bindings/display/rockchip/
5952 F:      drivers/gpu/drm/rockchip/
5953
5954 DRM DRIVERS FOR STI
5955 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5956 M:      Vincent Abriou <vincent.abriou@st.com>
5957 L:      dri-devel@lists.freedesktop.org
5958 S:      Maintained
5959 T:      git git://anongit.freedesktop.org/drm/drm-misc
5960 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5961 F:      drivers/gpu/drm/sti
5962
5963 DRM DRIVERS FOR STM
5964 M:      Yannick Fertre <yannick.fertre@st.com>
5965 M:      Philippe Cornu <philippe.cornu@st.com>
5966 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5967 M:      Vincent Abriou <vincent.abriou@st.com>
5968 L:      dri-devel@lists.freedesktop.org
5969 S:      Maintained
5970 T:      git git://anongit.freedesktop.org/drm/drm-misc
5971 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5972 F:      drivers/gpu/drm/stm
5973
5974 DRM DRIVERS FOR TI KEYSTONE
5975 M:      Jyri Sarha <jsarha@ti.com>
5976 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5977 L:      dri-devel@lists.freedesktop.org
5978 S:      Maintained
5979 T:      git git://anongit.freedesktop.org/drm/drm-misc
5980 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5981 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5982 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5983 F:      drivers/gpu/drm/tidss/
5984
5985 DRM DRIVERS FOR TI LCDC
5986 M:      Jyri Sarha <jsarha@ti.com>
5987 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5988 L:      dri-devel@lists.freedesktop.org
5989 S:      Maintained
5990 F:      Documentation/devicetree/bindings/display/tilcdc/
5991 F:      drivers/gpu/drm/tilcdc/
5992
5993 DRM DRIVERS FOR TI OMAP
5994 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5995 L:      dri-devel@lists.freedesktop.org
5996 S:      Maintained
5997 F:      Documentation/devicetree/bindings/display/ti/
5998 F:      drivers/gpu/drm/omapdrm/
5999
6000 DRM DRIVERS FOR V3D
6001 M:      Eric Anholt <eric@anholt.net>
6002 S:      Supported
6003 T:      git git://anongit.freedesktop.org/drm/drm-misc
6004 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
6005 F:      drivers/gpu/drm/v3d/
6006 F:      include/uapi/drm/v3d_drm.h
6007
6008 DRM DRIVERS FOR VC4
6009 M:      Eric Anholt <eric@anholt.net>
6010 M:      Maxime Ripard <mripard@kernel.org>
6011 S:      Supported
6012 T:      git git://github.com/anholt/linux
6013 T:      git git://anongit.freedesktop.org/drm/drm-misc
6014 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6015 F:      drivers/gpu/drm/vc4/
6016 F:      include/uapi/drm/vc4_drm.h
6017
6018 DRM DRIVERS FOR VIVANTE GPU IP
6019 M:      Lucas Stach <l.stach@pengutronix.de>
6020 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6021 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6022 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6023 L:      dri-devel@lists.freedesktop.org
6024 S:      Maintained
6025 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6026 F:      drivers/gpu/drm/etnaviv/
6027 F:      include/uapi/drm/etnaviv_drm.h
6028
6029 DRM DRIVERS FOR XEN
6030 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6031 L:      dri-devel@lists.freedesktop.org
6032 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6033 S:      Supported
6034 T:      git git://anongit.freedesktop.org/drm/drm-misc
6035 F:      Documentation/gpu/xen-front.rst
6036 F:      drivers/gpu/drm/xen/
6037
6038 DRM DRIVERS FOR XILINX
6039 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6040 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6041 L:      dri-devel@lists.freedesktop.org
6042 S:      Maintained
6043 T:      git git://anongit.freedesktop.org/drm/drm-misc
6044 F:      Documentation/devicetree/bindings/display/xlnx/
6045 F:      drivers/gpu/drm/xlnx/
6046
6047 DRM DRIVERS FOR ZTE ZX
6048 M:      Shawn Guo <shawnguo@kernel.org>
6049 L:      dri-devel@lists.freedesktop.org
6050 S:      Maintained
6051 T:      git git://anongit.freedesktop.org/drm/drm-misc
6052 F:      Documentation/devicetree/bindings/display/zte,vou.txt
6053 F:      drivers/gpu/drm/zte/
6054
6055 DRM PANEL DRIVERS
6056 M:      Thierry Reding <thierry.reding@gmail.com>
6057 R:      Sam Ravnborg <sam@ravnborg.org>
6058 L:      dri-devel@lists.freedesktop.org
6059 S:      Maintained
6060 T:      git git://anongit.freedesktop.org/drm/drm-misc
6061 F:      Documentation/devicetree/bindings/display/panel/
6062 F:      drivers/gpu/drm/drm_panel.c
6063 F:      drivers/gpu/drm/panel/
6064 F:      include/drm/drm_panel.h
6065
6066 DRM TTM SUBSYSTEM
6067 M:      Christian Koenig <christian.koenig@amd.com>
6068 M:      Huang Rui <ray.huang@amd.com>
6069 L:      dri-devel@lists.freedesktop.org
6070 S:      Maintained
6071 T:      git git://people.freedesktop.org/~agd5f/linux
6072 F:      drivers/gpu/drm/ttm/
6073 F:      include/drm/ttm/
6074
6075 DSBR100 USB FM RADIO DRIVER
6076 M:      Alexey Klimov <klimov.linux@gmail.com>
6077 L:      linux-media@vger.kernel.org
6078 S:      Maintained
6079 T:      git git://linuxtv.org/media_tree.git
6080 F:      drivers/media/radio/dsbr100.c
6081
6082 DT3155 MEDIA DRIVER
6083 M:      Hans Verkuil <hverkuil@xs4all.nl>
6084 L:      linux-media@vger.kernel.org
6085 S:      Odd Fixes
6086 W:      https://linuxtv.org
6087 T:      git git://linuxtv.org/media_tree.git
6088 F:      drivers/media/pci/dt3155/
6089
6090 DVB_USB_AF9015 MEDIA DRIVER
6091 M:      Antti Palosaari <crope@iki.fi>
6092 L:      linux-media@vger.kernel.org
6093 S:      Maintained
6094 W:      https://linuxtv.org
6095 W:      http://palosaari.fi/linux/
6096 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6097 T:      git git://linuxtv.org/anttip/media_tree.git
6098 F:      drivers/media/usb/dvb-usb-v2/af9015*
6099
6100 DVB_USB_AF9035 MEDIA DRIVER
6101 M:      Antti Palosaari <crope@iki.fi>
6102 L:      linux-media@vger.kernel.org
6103 S:      Maintained
6104 W:      https://linuxtv.org
6105 W:      http://palosaari.fi/linux/
6106 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6107 T:      git git://linuxtv.org/anttip/media_tree.git
6108 F:      drivers/media/usb/dvb-usb-v2/af9035*
6109
6110 DVB_USB_ANYSEE MEDIA DRIVER
6111 M:      Antti Palosaari <crope@iki.fi>
6112 L:      linux-media@vger.kernel.org
6113 S:      Maintained
6114 W:      https://linuxtv.org
6115 W:      http://palosaari.fi/linux/
6116 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6117 T:      git git://linuxtv.org/anttip/media_tree.git
6118 F:      drivers/media/usb/dvb-usb-v2/anysee*
6119
6120 DVB_USB_AU6610 MEDIA DRIVER
6121 M:      Antti Palosaari <crope@iki.fi>
6122 L:      linux-media@vger.kernel.org
6123 S:      Maintained
6124 W:      https://linuxtv.org
6125 W:      http://palosaari.fi/linux/
6126 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6127 T:      git git://linuxtv.org/anttip/media_tree.git
6128 F:      drivers/media/usb/dvb-usb-v2/au6610*
6129
6130 DVB_USB_CE6230 MEDIA DRIVER
6131 M:      Antti Palosaari <crope@iki.fi>
6132 L:      linux-media@vger.kernel.org
6133 S:      Maintained
6134 W:      https://linuxtv.org
6135 W:      http://palosaari.fi/linux/
6136 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6137 T:      git git://linuxtv.org/anttip/media_tree.git
6138 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6139
6140 DVB_USB_CXUSB MEDIA DRIVER
6141 M:      Michael Krufky <mkrufky@linuxtv.org>
6142 L:      linux-media@vger.kernel.org
6143 S:      Maintained
6144 W:      https://linuxtv.org
6145 W:      http://github.com/mkrufky
6146 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6147 T:      git git://linuxtv.org/media_tree.git
6148 F:      drivers/media/usb/dvb-usb/cxusb*
6149
6150 DVB_USB_EC168 MEDIA DRIVER
6151 M:      Antti Palosaari <crope@iki.fi>
6152 L:      linux-media@vger.kernel.org
6153 S:      Maintained
6154 W:      https://linuxtv.org
6155 W:      http://palosaari.fi/linux/
6156 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6157 T:      git git://linuxtv.org/anttip/media_tree.git
6158 F:      drivers/media/usb/dvb-usb-v2/ec168*
6159
6160 DVB_USB_GL861 MEDIA DRIVER
6161 M:      Antti Palosaari <crope@iki.fi>
6162 L:      linux-media@vger.kernel.org
6163 S:      Maintained
6164 W:      https://linuxtv.org
6165 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6166 T:      git git://linuxtv.org/anttip/media_tree.git
6167 F:      drivers/media/usb/dvb-usb-v2/gl861*
6168
6169 DVB_USB_MXL111SF MEDIA DRIVER
6170 M:      Michael Krufky <mkrufky@linuxtv.org>
6171 L:      linux-media@vger.kernel.org
6172 S:      Maintained
6173 W:      https://linuxtv.org
6174 W:      http://github.com/mkrufky
6175 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6176 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6177 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6178
6179 DVB_USB_RTL28XXU MEDIA DRIVER
6180 M:      Antti Palosaari <crope@iki.fi>
6181 L:      linux-media@vger.kernel.org
6182 S:      Maintained
6183 W:      https://linuxtv.org
6184 W:      http://palosaari.fi/linux/
6185 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6186 T:      git git://linuxtv.org/anttip/media_tree.git
6187 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6188
6189 DVB_USB_V2 MEDIA DRIVER
6190 M:      Antti Palosaari <crope@iki.fi>
6191 L:      linux-media@vger.kernel.org
6192 S:      Maintained
6193 W:      https://linuxtv.org
6194 W:      http://palosaari.fi/linux/
6195 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6196 T:      git git://linuxtv.org/anttip/media_tree.git
6197 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6198 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6199
6200 DYNAMIC DEBUG
6201 M:      Jason Baron <jbaron@akamai.com>
6202 S:      Maintained
6203 F:      include/linux/dynamic_debug.h
6204 F:      lib/dynamic_debug.c
6205
6206 DYNAMIC INTERRUPT MODERATION
6207 M:      Tal Gilboa <talgi@nvidia.com>
6208 S:      Maintained
6209 F:      Documentation/networking/net_dim.rst
6210 F:      include/linux/dim.h
6211 F:      lib/dim/
6212
6213 DZ DECSTATION DZ11 SERIAL DRIVER
6214 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
6215 S:      Maintained
6216 F:      drivers/tty/serial/dz.*
6217
6218 E3X0 POWER BUTTON DRIVER
6219 M:      Moritz Fischer <moritz.fischer@ettus.com>
6220 L:      usrp-users@lists.ettus.com
6221 S:      Supported
6222 W:      http://www.ettus.com
6223 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6224 F:      drivers/input/misc/e3x0-button.c
6225
6226 E4000 MEDIA DRIVER
6227 M:      Antti Palosaari <crope@iki.fi>
6228 L:      linux-media@vger.kernel.org
6229 S:      Maintained
6230 W:      https://linuxtv.org
6231 W:      http://palosaari.fi/linux/
6232 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6233 T:      git git://linuxtv.org/anttip/media_tree.git
6234 F:      drivers/media/tuners/e4000*
6235
6236 EARTH_PT1 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/pt1/
6241
6242 EARTH_PT3 MEDIA DRIVER
6243 M:      Akihiro Tsukada <tskd08@gmail.com>
6244 L:      linux-media@vger.kernel.org
6245 S:      Odd Fixes
6246 F:      drivers/media/pci/pt3/
6247
6248 EC100 MEDIA DRIVER
6249 M:      Antti Palosaari <crope@iki.fi>
6250 L:      linux-media@vger.kernel.org
6251 S:      Maintained
6252 W:      https://linuxtv.org
6253 W:      http://palosaari.fi/linux/
6254 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6255 T:      git git://linuxtv.org/anttip/media_tree.git
6256 F:      drivers/media/dvb-frontends/ec100*
6257
6258 ECRYPT FILE SYSTEM
6259 M:      Tyler Hicks <code@tyhicks.com>
6260 L:      ecryptfs@vger.kernel.org
6261 S:      Odd Fixes
6262 W:      http://ecryptfs.org
6263 W:      https://launchpad.net/ecryptfs
6264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6265 F:      Documentation/filesystems/ecryptfs.rst
6266 F:      fs/ecryptfs/
6267
6268 EDAC-AMD64
6269 M:      Borislav Petkov <bp@alien8.de>
6270 L:      linux-edac@vger.kernel.org
6271 S:      Maintained
6272 F:      drivers/edac/amd64_edac*
6273
6274 EDAC-ARMADA
6275 M:      Jan Luebbe <jlu@pengutronix.de>
6276 L:      linux-edac@vger.kernel.org
6277 S:      Maintained
6278 F:      drivers/edac/armada_xp_*
6279
6280 EDAC-AST2500
6281 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6282 S:      Supported
6283 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6284 F:      drivers/edac/aspeed_edac.c
6285
6286 EDAC-BLUEFIELD
6287 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6288 S:      Supported
6289 F:      drivers/edac/bluefield_edac.c
6290
6291 EDAC-CALXEDA
6292 M:      Andre Przywara <andre.przywara@arm.com>
6293 L:      linux-edac@vger.kernel.org
6294 S:      Maintained
6295 F:      drivers/edac/highbank*
6296
6297 EDAC-CAVIUM OCTEON
6298 M:      Ralf Baechle <ralf@linux-mips.org>
6299 L:      linux-edac@vger.kernel.org
6300 L:      linux-mips@vger.kernel.org
6301 S:      Supported
6302 F:      drivers/edac/octeon_edac*
6303
6304 EDAC-CAVIUM THUNDERX
6305 M:      Robert Richter <rric@kernel.org>
6306 L:      linux-edac@vger.kernel.org
6307 S:      Odd Fixes
6308 F:      drivers/edac/thunderx_edac*
6309
6310 EDAC-CORE
6311 M:      Borislav Petkov <bp@alien8.de>
6312 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6313 M:      Tony Luck <tony.luck@intel.com>
6314 R:      James Morse <james.morse@arm.com>
6315 R:      Robert Richter <rric@kernel.org>
6316 L:      linux-edac@vger.kernel.org
6317 S:      Supported
6318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6319 F:      Documentation/admin-guide/ras.rst
6320 F:      Documentation/driver-api/edac.rst
6321 F:      drivers/edac/
6322 F:      include/linux/edac.h
6323
6324 EDAC-DMC520
6325 M:      Lei Wang <lewan@microsoft.com>
6326 L:      linux-edac@vger.kernel.org
6327 S:      Supported
6328 F:      drivers/edac/dmc520_edac.c
6329
6330 EDAC-E752X
6331 M:      Mark Gross <mark.gross@intel.com>
6332 L:      linux-edac@vger.kernel.org
6333 S:      Maintained
6334 F:      drivers/edac/e752x_edac.c
6335
6336 EDAC-E7XXX
6337 L:      linux-edac@vger.kernel.org
6338 S:      Maintained
6339 F:      drivers/edac/e7xxx_edac.c
6340
6341 EDAC-FSL_DDR
6342 M:      York Sun <york.sun@nxp.com>
6343 L:      linux-edac@vger.kernel.org
6344 S:      Maintained
6345 F:      drivers/edac/fsl_ddr_edac.*
6346
6347 EDAC-GHES
6348 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6349 L:      linux-edac@vger.kernel.org
6350 S:      Maintained
6351 F:      drivers/edac/ghes_edac.c
6352
6353 EDAC-I10NM
6354 M:      Tony Luck <tony.luck@intel.com>
6355 L:      linux-edac@vger.kernel.org
6356 S:      Maintained
6357 F:      drivers/edac/i10nm_base.c
6358
6359 EDAC-I3000
6360 L:      linux-edac@vger.kernel.org
6361 S:      Orphan
6362 F:      drivers/edac/i3000_edac.c
6363
6364 EDAC-I5000
6365 L:      linux-edac@vger.kernel.org
6366 S:      Maintained
6367 F:      drivers/edac/i5000_edac.c
6368
6369 EDAC-I5400
6370 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6371 L:      linux-edac@vger.kernel.org
6372 S:      Maintained
6373 F:      drivers/edac/i5400_edac.c
6374
6375 EDAC-I7300
6376 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6377 L:      linux-edac@vger.kernel.org
6378 S:      Maintained
6379 F:      drivers/edac/i7300_edac.c
6380
6381 EDAC-I7CORE
6382 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6383 L:      linux-edac@vger.kernel.org
6384 S:      Maintained
6385 F:      drivers/edac/i7core_edac.c
6386
6387 EDAC-I82443BXGX
6388 M:      Tim Small <tim@buttersideup.com>
6389 L:      linux-edac@vger.kernel.org
6390 S:      Maintained
6391 F:      drivers/edac/i82443bxgx_edac.c
6392
6393 EDAC-I82975X
6394 M:      "Arvind R." <arvino55@gmail.com>
6395 L:      linux-edac@vger.kernel.org
6396 S:      Maintained
6397 F:      drivers/edac/i82975x_edac.c
6398
6399 EDAC-IE31200
6400 M:      Jason Baron <jbaron@akamai.com>
6401 L:      linux-edac@vger.kernel.org
6402 S:      Maintained
6403 F:      drivers/edac/ie31200_edac.c
6404
6405 EDAC-IGEN6
6406 M:      Tony Luck <tony.luck@intel.com>
6407 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6408 L:      linux-edac@vger.kernel.org
6409 S:      Maintained
6410 F:      drivers/edac/igen6_edac.c
6411
6412 EDAC-MPC85XX
6413 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6414 L:      linux-edac@vger.kernel.org
6415 S:      Maintained
6416 F:      drivers/edac/mpc85xx_edac.[ch]
6417
6418 EDAC-PASEMI
6419 M:      Egor Martovetsky <egor@pasemi.com>
6420 L:      linux-edac@vger.kernel.org
6421 S:      Maintained
6422 F:      drivers/edac/pasemi_edac.c
6423
6424 EDAC-PND2
6425 M:      Tony Luck <tony.luck@intel.com>
6426 L:      linux-edac@vger.kernel.org
6427 S:      Maintained
6428 F:      drivers/edac/pnd2_edac.[ch]
6429
6430 EDAC-QCOM
6431 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6432 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6433 L:      linux-arm-msm@vger.kernel.org
6434 L:      linux-edac@vger.kernel.org
6435 S:      Maintained
6436 F:      drivers/edac/qcom_edac.c
6437
6438 EDAC-R82600
6439 M:      Tim Small <tim@buttersideup.com>
6440 L:      linux-edac@vger.kernel.org
6441 S:      Maintained
6442 F:      drivers/edac/r82600_edac.c
6443
6444 EDAC-SBRIDGE
6445 M:      Tony Luck <tony.luck@intel.com>
6446 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6447 L:      linux-edac@vger.kernel.org
6448 S:      Maintained
6449 F:      drivers/edac/sb_edac.c
6450
6451 EDAC-SIFIVE
6452 M:      Yash Shah <yash.shah@sifive.com>
6453 L:      linux-edac@vger.kernel.org
6454 S:      Supported
6455 F:      drivers/edac/sifive_edac.c
6456
6457 EDAC-SKYLAKE
6458 M:      Tony Luck <tony.luck@intel.com>
6459 L:      linux-edac@vger.kernel.org
6460 S:      Maintained
6461 F:      drivers/edac/skx_*.[ch]
6462
6463 EDAC-TI
6464 M:      Tero Kristo <t-kristo@ti.com>
6465 L:      linux-edac@vger.kernel.org
6466 S:      Maintained
6467 F:      drivers/edac/ti_edac.c
6468
6469 EDIROL UA-101/UA-1000 DRIVER
6470 M:      Clemens Ladisch <clemens@ladisch.de>
6471 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6472 S:      Maintained
6473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6474 F:      sound/usb/misc/ua101.c
6475
6476 EFI TEST DRIVER
6477 M:      Ivan Hu <ivan.hu@canonical.com>
6478 M:      Ard Biesheuvel <ardb@kernel.org>
6479 L:      linux-efi@vger.kernel.org
6480 S:      Maintained
6481 F:      drivers/firmware/efi/test/
6482
6483 EFI VARIABLE FILESYSTEM
6484 M:      Matthew Garrett <matthew.garrett@nebula.com>
6485 M:      Jeremy Kerr <jk@ozlabs.org>
6486 M:      Ard Biesheuvel <ardb@kernel.org>
6487 L:      linux-efi@vger.kernel.org
6488 S:      Maintained
6489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6490 F:      fs/efivarfs/
6491
6492 EFIFB FRAMEBUFFER DRIVER
6493 M:      Peter Jones <pjones@redhat.com>
6494 L:      linux-fbdev@vger.kernel.org
6495 S:      Maintained
6496 F:      drivers/video/fbdev/efifb.c
6497
6498 EFS FILESYSTEM
6499 S:      Orphan
6500 W:      http://aeschi.ch.eu.org/efs/
6501 F:      fs/efs/
6502
6503 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6504 M:      Douglas Miller <dougmill@linux.ibm.com>
6505 L:      netdev@vger.kernel.org
6506 S:      Maintained
6507 F:      drivers/net/ethernet/ibm/ehea/
6508
6509 EM28XX VIDEO4LINUX DRIVER
6510 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6511 L:      linux-media@vger.kernel.org
6512 S:      Maintained
6513 W:      https://linuxtv.org
6514 T:      git git://linuxtv.org/media_tree.git
6515 F:      Documentation/admin-guide/media/em28xx*
6516 F:      drivers/media/usb/em28xx/
6517
6518 EMBEDDED LINUX
6519 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6520 M:      Matt Mackall <mpm@selenic.com>
6521 M:      David Woodhouse <dwmw2@infradead.org>
6522 L:      linux-embedded@vger.kernel.org
6523 S:      Maintained
6524
6525 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6526 M:      Adrian Hunter <adrian.hunter@intel.com>
6527 M:      Ritesh Harjani <riteshh@codeaurora.org>
6528 M:      Asutosh Das <asutoshd@codeaurora.org>
6529 L:      linux-mmc@vger.kernel.org
6530 S:      Maintained
6531 F:      drivers/mmc/host/cqhci*
6532
6533 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6534 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6535 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6536 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6537 L:      linux-scsi@vger.kernel.org
6538 S:      Supported
6539 W:      http://www.broadcom.com
6540 F:      drivers/scsi/be2iscsi/
6541
6542 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6543 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6544 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6545 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6546 L:      netdev@vger.kernel.org
6547 S:      Supported
6548 W:      http://www.emulex.com
6549 F:      drivers/net/ethernet/emulex/benet/
6550
6551 EMULEX ONECONNECT ROCE DRIVER
6552 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6553 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6554 L:      linux-rdma@vger.kernel.org
6555 S:      Odd Fixes
6556 W:      http://www.broadcom.com
6557 F:      drivers/infiniband/hw/ocrdma/
6558 F:      include/uapi/rdma/ocrdma-abi.h
6559
6560 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6561 M:      James Smart <james.smart@broadcom.com>
6562 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6563 L:      linux-scsi@vger.kernel.org
6564 S:      Supported
6565 W:      http://www.broadcom.com
6566 F:      drivers/scsi/lpfc/
6567
6568 ENE CB710 FLASH CARD READER DRIVER
6569 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6570 S:      Maintained
6571 F:      drivers/misc/cb710/
6572 F:      drivers/mmc/host/cb710-mmc.*
6573 F:      include/linux/cb710.h
6574
6575 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6576 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6577 S:      Maintained
6578 F:      drivers/media/rc/ene_ir.*
6579
6580 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6581 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6582 L:      linuxppc-dev@lists.ozlabs.org
6583 S:      Maintained
6584 F:      drivers/tty/ehv_bytechan.c
6585
6586 EPSON S1D13XXX FRAMEBUFFER DRIVER
6587 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6588 S:      Maintained
6589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6590 F:      drivers/video/fbdev/s1d13xxxfb.c
6591 F:      include/video/s1d13xxxfb.h
6592
6593 EROFS FILE SYSTEM
6594 M:      Gao Xiang <xiang@kernel.org>
6595 M:      Chao Yu <yuchao0@huawei.com>
6596 L:      linux-erofs@lists.ozlabs.org
6597 S:      Maintained
6598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6599 F:      Documentation/filesystems/erofs.rst
6600 F:      fs/erofs/
6601 F:      include/trace/events/erofs.h
6602
6603 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6604 M:      Jeff Layton <jlayton@kernel.org>
6605 S:      Maintained
6606 F:      include/linux/errseq.h
6607 F:      lib/errseq.c
6608
6609 ET131X NETWORK DRIVER
6610 M:      Mark Einon <mark.einon@gmail.com>
6611 S:      Odd Fixes
6612 F:      drivers/net/ethernet/agere/
6613
6614 ETHERNET BRIDGE
6615 M:      Roopa Prabhu <roopa@nvidia.com>
6616 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
6617 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6618 L:      netdev@vger.kernel.org
6619 S:      Maintained
6620 W:      http://www.linuxfoundation.org/en/Net:Bridge
6621 F:      include/linux/netfilter_bridge/
6622 F:      net/bridge/
6623
6624 ETHERNET PHY LIBRARY
6625 M:      Andrew Lunn <andrew@lunn.ch>
6626 M:      Heiner Kallweit <hkallweit1@gmail.com>
6627 R:      Russell King <linux@armlinux.org.uk>
6628 L:      netdev@vger.kernel.org
6629 S:      Maintained
6630 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6631 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6632 F:      Documentation/devicetree/bindings/net/mdio*
6633 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6634 F:      Documentation/networking/phy.rst
6635 F:      drivers/net/mdio/
6636 F:      drivers/net/mdio/of_mdio.c
6637 F:      drivers/net/pcs/
6638 F:      drivers/net/phy/
6639 F:      drivers/of/of_net.c
6640 F:      include/dt-bindings/net/qca-ar803x.h
6641 F:      include/linux/*mdio*.h
6642 F:      include/linux/mdio/*.h
6643 F:      include/linux/of_net.h
6644 F:      include/linux/phy.h
6645 F:      include/linux/phy_fixed.h
6646 F:      include/linux/platform_data/mdio-bcm-unimac.h
6647 F:      include/linux/platform_data/mdio-gpio.h
6648 F:      include/trace/events/mdio.h
6649 F:      include/uapi/linux/mdio.h
6650 F:      include/uapi/linux/mii.h
6651
6652 EXFAT FILE SYSTEM
6653 M:      Namjae Jeon <namjae.jeon@samsung.com>
6654 M:      Sungjong Seo <sj1557.seo@samsung.com>
6655 L:      linux-fsdevel@vger.kernel.org
6656 S:      Maintained
6657 F:      fs/exfat/
6658
6659 EXT2 FILE SYSTEM
6660 M:      Jan Kara <jack@suse.com>
6661 L:      linux-ext4@vger.kernel.org
6662 S:      Maintained
6663 F:      Documentation/filesystems/ext2.rst
6664 F:      fs/ext2/
6665 F:      include/linux/ext2*
6666
6667 EXT4 FILE SYSTEM
6668 M:      "Theodore Ts'o" <tytso@mit.edu>
6669 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6670 L:      linux-ext4@vger.kernel.org
6671 S:      Maintained
6672 W:      http://ext4.wiki.kernel.org
6673 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6675 F:      Documentation/filesystems/ext4/
6676 F:      fs/ext4/
6677 F:      include/trace/events/ext4.h
6678
6679 Extended Verification Module (EVM)
6680 M:      Mimi Zohar <zohar@linux.ibm.com>
6681 L:      linux-integrity@vger.kernel.org
6682 S:      Supported
6683 F:      security/integrity/evm/
6684
6685 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6686 M:      Ard Biesheuvel <ardb@kernel.org>
6687 L:      linux-efi@vger.kernel.org
6688 S:      Maintained
6689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6690 F:      Documentation/admin-guide/efi-stub.rst
6691 F:      arch/*/include/asm/efi.h
6692 F:      arch/*/kernel/efi.c
6693 F:      arch/arm/boot/compressed/efi-header.S
6694 F:      arch/arm64/kernel/efi-entry.S
6695 F:      arch/x86/platform/efi/
6696 F:      drivers/firmware/efi/
6697 F:      include/linux/efi*.h
6698
6699 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6700 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6701 M:      Chanwoo Choi <cw00.choi@samsung.com>
6702 L:      linux-kernel@vger.kernel.org
6703 S:      Maintained
6704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6705 F:      Documentation/devicetree/bindings/extcon/
6706 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6707 F:      drivers/extcon/
6708 F:      include/linux/extcon.h
6709 F:      include/linux/extcon/
6710
6711 EXTRA BOOT CONFIG
6712 M:      Masami Hiramatsu <mhiramat@kernel.org>
6713 S:      Maintained
6714 F:      Documentation/admin-guide/bootconfig.rst
6715 F:      fs/proc/bootconfig.c
6716 F:      include/linux/bootconfig.h
6717 F:      lib/bootconfig.c
6718 F:      tools/bootconfig/*
6719 F:      tools/bootconfig/scripts/*
6720
6721 EXYNOS DP DRIVER
6722 M:      Jingoo Han <jingoohan1@gmail.com>
6723 L:      dri-devel@lists.freedesktop.org
6724 S:      Maintained
6725 F:      drivers/gpu/drm/exynos/exynos_dp*
6726
6727 EXYNOS SYSMMU (IOMMU) driver
6728 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6729 L:      iommu@lists.linux-foundation.org
6730 S:      Maintained
6731 F:      drivers/iommu/exynos-iommu.c
6732
6733 F2FS FILE SYSTEM
6734 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6735 M:      Chao Yu <yuchao0@huawei.com>
6736 L:      linux-f2fs-devel@lists.sourceforge.net
6737 S:      Maintained
6738 W:      https://f2fs.wiki.kernel.org/
6739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6740 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6741 F:      Documentation/filesystems/f2fs.rst
6742 F:      fs/f2fs/
6743 F:      include/linux/f2fs_fs.h
6744 F:      include/trace/events/f2fs.h
6745
6746 F71805F HARDWARE MONITORING DRIVER
6747 M:      Jean Delvare <jdelvare@suse.com>
6748 L:      linux-hwmon@vger.kernel.org
6749 S:      Maintained
6750 F:      Documentation/hwmon/f71805f.rst
6751 F:      drivers/hwmon/f71805f.c
6752
6753 FADDR2LINE
6754 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6755 S:      Maintained
6756 F:      scripts/faddr2line
6757
6758 FAILOVER MODULE
6759 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6760 L:      netdev@vger.kernel.org
6761 S:      Supported
6762 F:      Documentation/networking/failover.rst
6763 F:      include/net/failover.h
6764 F:      net/core/failover.c
6765
6766 FANOTIFY
6767 M:      Jan Kara <jack@suse.cz>
6768 R:      Amir Goldstein <amir73il@gmail.com>
6769 L:      linux-fsdevel@vger.kernel.org
6770 S:      Maintained
6771 F:      fs/notify/fanotify/
6772 F:      include/linux/fanotify.h
6773 F:      include/uapi/linux/fanotify.h
6774
6775 FARSYNC SYNCHRONOUS DRIVER
6776 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6777 S:      Supported
6778 W:      http://www.farsite.co.uk/
6779 F:      drivers/net/wan/farsync.*
6780
6781 FAULT INJECTION SUPPORT
6782 M:      Akinobu Mita <akinobu.mita@gmail.com>
6783 S:      Supported
6784 F:      Documentation/fault-injection/
6785 F:      lib/fault-inject.c
6786
6787 FBTFT Framebuffer drivers
6788 L:      dri-devel@lists.freedesktop.org
6789 L:      linux-fbdev@vger.kernel.org
6790 S:      Orphan
6791 F:      drivers/staging/fbtft/
6792
6793 FC0011 TUNER DRIVER
6794 M:      Michael Buesch <m@bues.ch>
6795 L:      linux-media@vger.kernel.org
6796 S:      Maintained
6797 F:      drivers/media/tuners/fc0011.c
6798 F:      drivers/media/tuners/fc0011.h
6799
6800 FC2580 MEDIA DRIVER
6801 M:      Antti Palosaari <crope@iki.fi>
6802 L:      linux-media@vger.kernel.org
6803 S:      Maintained
6804 W:      https://linuxtv.org
6805 W:      http://palosaari.fi/linux/
6806 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6807 T:      git git://linuxtv.org/anttip/media_tree.git
6808 F:      drivers/media/tuners/fc2580*
6809
6810 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6811 M:      Hannes Reinecke <hare@suse.de>
6812 L:      linux-scsi@vger.kernel.org
6813 S:      Supported
6814 W:      www.Open-FCoE.org
6815 F:      drivers/scsi/fcoe/
6816 F:      drivers/scsi/libfc/
6817 F:      include/scsi/fc/
6818 F:      include/scsi/libfc.h
6819 F:      include/scsi/libfcoe.h
6820 F:      include/uapi/scsi/fc/
6821
6822 FILE LOCKING (flock() and fcntl()/lockf())
6823 M:      Jeff Layton <jlayton@kernel.org>
6824 M:      "J. Bruce Fields" <bfields@fieldses.org>
6825 L:      linux-fsdevel@vger.kernel.org
6826 S:      Maintained
6827 F:      fs/fcntl.c
6828 F:      fs/locks.c
6829 F:      include/linux/fcntl.h
6830 F:      include/uapi/linux/fcntl.h
6831
6832 FILESYSTEM DIRECT ACCESS (DAX)
6833 M:      Dan Williams <dan.j.williams@intel.com>
6834 R:      Matthew Wilcox <willy@infradead.org>
6835 R:      Jan Kara <jack@suse.cz>
6836 L:      linux-fsdevel@vger.kernel.org
6837 L:      linux-nvdimm@lists.01.org
6838 S:      Supported
6839 F:      fs/dax.c
6840 F:      include/linux/dax.h
6841 F:      include/trace/events/fs_dax.h
6842
6843 FILESYSTEMS (VFS and infrastructure)
6844 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6845 L:      linux-fsdevel@vger.kernel.org
6846 S:      Maintained
6847 F:      fs/*
6848 F:      include/linux/fs.h
6849 F:      include/linux/fs_types.h
6850 F:      include/uapi/linux/fs.h
6851 F:      include/uapi/linux/openat2.h
6852
6853 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6854 M:      Riku Voipio <riku.voipio@iki.fi>
6855 L:      linux-hwmon@vger.kernel.org
6856 S:      Maintained
6857 F:      drivers/hwmon/f75375s.c
6858 F:      include/linux/f75375s.h
6859
6860 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6861 M:      Clemens Ladisch <clemens@ladisch.de>
6862 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
6863 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6864 S:      Maintained
6865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6866 F:      include/uapi/sound/firewire.h
6867 F:      sound/firewire/
6868
6869 FIREWIRE MEDIA DRIVERS (firedtv)
6870 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6871 L:      linux-media@vger.kernel.org
6872 L:      linux1394-devel@lists.sourceforge.net
6873 S:      Maintained
6874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6875 F:      drivers/media/firewire/
6876
6877 FIREWIRE SBP-2 TARGET
6878 M:      Chris Boot <bootc@bootc.net>
6879 L:      linux-scsi@vger.kernel.org
6880 L:      target-devel@vger.kernel.org
6881 L:      linux1394-devel@lists.sourceforge.net
6882 S:      Maintained
6883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6884 F:      drivers/target/sbp/
6885
6886 FIREWIRE SUBSYSTEM
6887 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6888 L:      linux1394-devel@lists.sourceforge.net
6889 S:      Maintained
6890 W:      http://ieee1394.wiki.kernel.org/
6891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6892 F:      drivers/firewire/
6893 F:      include/linux/firewire.h
6894 F:      include/uapi/linux/firewire*.h
6895 F:      tools/firewire/
6896
6897 FIRMWARE LOADER (request_firmware)
6898 M:      Luis Chamberlain <mcgrof@kernel.org>
6899 L:      linux-kernel@vger.kernel.org
6900 S:      Maintained
6901 F:      Documentation/firmware_class/
6902 F:      drivers/base/firmware_loader/
6903 F:      include/linux/firmware.h
6904
6905 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6906 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6907 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6908 S:      Maintained
6909 F:      drivers/block/rsxx/
6910
6911 FLEXTIMER FTM-QUADDEC DRIVER
6912 M:      Patrick Havelange <patrick.havelange@essensium.com>
6913 L:      linux-iio@vger.kernel.org
6914 S:      Maintained
6915 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6916 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6917 F:      drivers/counter/ftm-quaddec.c
6918
6919 FLOPPY DRIVER
6920 M:      Denis Efremov <efremov@linux.com>
6921 L:      linux-block@vger.kernel.org
6922 S:      Odd Fixes
6923 F:      drivers/block/floppy.c
6924
6925 FLYSKY FSIA6B RC RECEIVER
6926 M:      Markus Koch <markus@notsyncing.net>
6927 L:      linux-input@vger.kernel.org
6928 S:      Maintained
6929 F:      drivers/input/joystick/fsia6b.c
6930
6931 FORCEDETH GIGABIT ETHERNET DRIVER
6932 M:      Rain River <rain.1986.08.12@gmail.com>
6933 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
6934 L:      netdev@vger.kernel.org
6935 S:      Maintained
6936 F:      drivers/net/ethernet/nvidia/*
6937
6938 FPGA DFL DRIVERS
6939 M:      Wu Hao <hao.wu@intel.com>
6940 R:      Tom Rix <trix@redhat.com>
6941 L:      linux-fpga@vger.kernel.org
6942 S:      Maintained
6943 F:      Documentation/ABI/testing/sysfs-bus-dfl
6944 F:      Documentation/fpga/dfl.rst
6945 F:      drivers/fpga/dfl*
6946 F:      include/uapi/linux/fpga-dfl.h
6947
6948 FPGA MANAGER FRAMEWORK
6949 M:      Moritz Fischer <mdf@kernel.org>
6950 R:      Tom Rix <trix@redhat.com>
6951 L:      linux-fpga@vger.kernel.org
6952 S:      Maintained
6953 W:      http://www.rocketboards.org
6954 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6956 F:      Documentation/devicetree/bindings/fpga/
6957 F:      Documentation/driver-api/fpga/
6958 F:      Documentation/fpga/
6959 F:      drivers/fpga/
6960 F:      include/linux/fpga/
6961
6962 FPU EMULATOR
6963 M:      Bill Metzenthen <billm@melbpc.org.au>
6964 S:      Maintained
6965 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6966 F:      arch/x86/math-emu/
6967
6968 FRAMEBUFFER LAYER
6969 L:      dri-devel@lists.freedesktop.org
6970 L:      linux-fbdev@vger.kernel.org
6971 S:      Orphan
6972 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6973 T:      git git://anongit.freedesktop.org/drm/drm-misc
6974 F:      Documentation/fb/
6975 F:      drivers/video/
6976 F:      include/linux/fb.h
6977 F:      include/uapi/linux/fb.h
6978 F:      include/uapi/video/
6979 F:      include/video/
6980
6981 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6982 M:      Horia Geantă <horia.geanta@nxp.com>
6983 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6984 L:      linux-crypto@vger.kernel.org
6985 S:      Maintained
6986 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6987 F:      drivers/crypto/caam/
6988
6989 FREESCALE COLDFIRE M5441X MMC DRIVER
6990 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
6991 L:      linux-mmc@vger.kernel.org
6992 S:      Maintained
6993 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
6994 F:      include/linux/platform_data/mmc-esdhc-mcf.h
6995
6996 FREESCALE DIU FRAMEBUFFER DRIVER
6997 M:      Timur Tabi <timur@kernel.org>
6998 L:      linux-fbdev@vger.kernel.org
6999 S:      Maintained
7000 F:      drivers/video/fbdev/fsl-diu-fb.*
7001
7002 FREESCALE DMA DRIVER
7003 M:      Li Yang <leoyang.li@nxp.com>
7004 M:      Zhang Wei <zw@zh-kernel.org>
7005 L:      linuxppc-dev@lists.ozlabs.org
7006 S:      Maintained
7007 F:      drivers/dma/fsldma.*
7008
7009 FREESCALE DSPI DRIVER
7010 M:      Vladimir Oltean <olteanv@gmail.com>
7011 L:      linux-spi@vger.kernel.org
7012 S:      Maintained
7013 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7014 F:      drivers/spi/spi-fsl-dspi.c
7015 F:      include/linux/spi/spi-fsl-dspi.h
7016
7017 FREESCALE ENETC ETHERNET DRIVERS
7018 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7019 L:      netdev@vger.kernel.org
7020 S:      Maintained
7021 F:      drivers/net/ethernet/freescale/enetc/
7022
7023 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7024 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7025 L:      netdev@vger.kernel.org
7026 S:      Maintained
7027 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7028 F:      drivers/net/ethernet/freescale/gianfar*
7029
7030 FREESCALE GPMI NAND DRIVER
7031 M:      Han Xu <han.xu@nxp.com>
7032 L:      linux-mtd@lists.infradead.org
7033 S:      Maintained
7034 F:      drivers/mtd/nand/raw/gpmi-nand/*
7035
7036 FREESCALE I2C CPM DRIVER
7037 M:      Jochen Friedrich <jochen@scram.de>
7038 L:      linuxppc-dev@lists.ozlabs.org
7039 L:      linux-i2c@vger.kernel.org
7040 S:      Maintained
7041 F:      drivers/i2c/busses/i2c-cpm.c
7042
7043 FREESCALE IMX / MXC FEC DRIVER
7044 M:      Fugang Duan <fugang.duan@nxp.com>
7045 L:      netdev@vger.kernel.org
7046 S:      Maintained
7047 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
7048 F:      drivers/net/ethernet/freescale/fec.h
7049 F:      drivers/net/ethernet/freescale/fec_main.c
7050 F:      drivers/net/ethernet/freescale/fec_ptp.c
7051
7052 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7053 M:      Sascha Hauer <s.hauer@pengutronix.de>
7054 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7055 L:      linux-fbdev@vger.kernel.org
7056 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7057 S:      Maintained
7058 F:      drivers/video/fbdev/imxfb.c
7059 F:      include/linux/platform_data/video-imxfb.h
7060
7061 FREESCALE IMX DDR PMU DRIVER
7062 M:      Frank Li <Frank.li@nxp.com>
7063 L:      linux-arm-kernel@lists.infradead.org
7064 S:      Maintained
7065 F:      Documentation/admin-guide/perf/imx-ddr.rst
7066 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7067 F:      drivers/perf/fsl_imx8_ddr_perf.c
7068
7069 FREESCALE IMX I2C DRIVER
7070 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7071 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7072 L:      linux-i2c@vger.kernel.org
7073 S:      Maintained
7074 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7075 F:      drivers/i2c/busses/i2c-imx.c
7076
7077 FREESCALE IMX LPI2C DRIVER
7078 M:      Dong Aisheng <aisheng.dong@nxp.com>
7079 L:      linux-i2c@vger.kernel.org
7080 L:      linux-imx@nxp.com
7081 S:      Maintained
7082 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7083 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7084
7085 FREESCALE QORIQ DPAA ETHERNET DRIVER
7086 M:      Madalin Bucur <madalin.bucur@nxp.com>
7087 L:      netdev@vger.kernel.org
7088 S:      Maintained
7089 F:      drivers/net/ethernet/freescale/dpaa
7090
7091 FREESCALE QORIQ DPAA FMAN DRIVER
7092 M:      Madalin Bucur <madalin.bucur@nxp.com>
7093 L:      netdev@vger.kernel.org
7094 S:      Maintained
7095 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7096 F:      drivers/net/ethernet/freescale/fman
7097
7098 FREESCALE QORIQ PTP CLOCK DRIVER
7099 M:      Yangbo Lu <yangbo.lu@nxp.com>
7100 L:      netdev@vger.kernel.org
7101 S:      Maintained
7102 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7103 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7104 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7105 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7106 F:      drivers/ptp/ptp_qoriq.c
7107 F:      drivers/ptp/ptp_qoriq_debugfs.c
7108 F:      include/linux/fsl/ptp_qoriq.h
7109
7110 FREESCALE QUAD SPI DRIVER
7111 M:      Han Xu <han.xu@nxp.com>
7112 L:      linux-spi@vger.kernel.org
7113 S:      Maintained
7114 F:      drivers/spi/spi-fsl-qspi.c
7115
7116 FREESCALE QUICC ENGINE LIBRARY
7117 M:      Qiang Zhao <qiang.zhao@nxp.com>
7118 L:      linuxppc-dev@lists.ozlabs.org
7119 S:      Maintained
7120 F:      drivers/soc/fsl/qe/
7121 F:      include/soc/fsl/*qe*.h
7122 F:      include/soc/fsl/*ucc*.h
7123
7124 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7125 M:      Li Yang <leoyang.li@nxp.com>
7126 L:      netdev@vger.kernel.org
7127 L:      linuxppc-dev@lists.ozlabs.org
7128 S:      Maintained
7129 F:      drivers/net/ethernet/freescale/ucc_geth*
7130
7131 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7132 M:      Zhao Qiang <qiang.zhao@nxp.com>
7133 L:      netdev@vger.kernel.org
7134 L:      linuxppc-dev@lists.ozlabs.org
7135 S:      Maintained
7136 F:      drivers/net/wan/fsl_ucc_hdlc*
7137
7138 FREESCALE QUICC ENGINE UCC UART DRIVER
7139 M:      Timur Tabi <timur@kernel.org>
7140 L:      linuxppc-dev@lists.ozlabs.org
7141 S:      Maintained
7142 F:      drivers/tty/serial/ucc_uart.c
7143
7144 FREESCALE SOC DRIVERS
7145 M:      Li Yang <leoyang.li@nxp.com>
7146 L:      linuxppc-dev@lists.ozlabs.org
7147 L:      linux-arm-kernel@lists.infradead.org
7148 S:      Maintained
7149 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
7150 F:      Documentation/devicetree/bindings/soc/fsl/
7151 F:      drivers/soc/fsl/
7152 F:      include/linux/fsl/
7153
7154 FREESCALE SOC FS_ENET DRIVER
7155 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7156 L:      linuxppc-dev@lists.ozlabs.org
7157 L:      netdev@vger.kernel.org
7158 S:      Maintained
7159 F:      drivers/net/ethernet/freescale/fs_enet/
7160 F:      include/linux/fs_enet_pd.h
7161
7162 FREESCALE SOC SOUND DRIVERS
7163 M:      Timur Tabi <timur@kernel.org>
7164 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7165 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7166 R:      Fabio Estevam <festevam@gmail.com>
7167 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7168 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7169 L:      linuxppc-dev@lists.ozlabs.org
7170 S:      Maintained
7171 F:      sound/soc/fsl/fsl*
7172 F:      sound/soc/fsl/imx*
7173 F:      sound/soc/fsl/mpc8610_hpcd.c
7174
7175 FREESCALE USB PERIPHERAL DRIVERS
7176 M:      Li Yang <leoyang.li@nxp.com>
7177 L:      linux-usb@vger.kernel.org
7178 L:      linuxppc-dev@lists.ozlabs.org
7179 S:      Maintained
7180 F:      drivers/usb/gadget/udc/fsl*
7181
7182 FREESCALE USB PHY DRIVER
7183 M:      Ran Wang <ran.wang_1@nxp.com>
7184 L:      linux-usb@vger.kernel.org
7185 L:      linuxppc-dev@lists.ozlabs.org
7186 S:      Maintained
7187 F:      drivers/usb/phy/phy-fsl-usb*
7188
7189 FREEVXFS FILESYSTEM
7190 M:      Christoph Hellwig <hch@infradead.org>
7191 S:      Maintained
7192 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7193 F:      fs/freevxfs/
7194
7195 FREEZER
7196 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7197 M:      Pavel Machek <pavel@ucw.cz>
7198 L:      linux-pm@vger.kernel.org
7199 S:      Supported
7200 F:      Documentation/power/freezing-of-tasks.rst
7201 F:      include/linux/freezer.h
7202 F:      kernel/freezer.c
7203
7204 FRONTSWAP API
7205 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7206 L:      linux-kernel@vger.kernel.org
7207 S:      Maintained
7208 F:      include/linux/frontswap.h
7209 F:      mm/frontswap.c
7210
7211 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7212 M:      David Howells <dhowells@redhat.com>
7213 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7214 S:      Supported
7215 F:      Documentation/filesystems/caching/
7216 F:      fs/fscache/
7217 F:      include/linux/fscache*.h
7218
7219 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7220 M:      Theodore Y. Ts'o <tytso@mit.edu>
7221 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7222 M:      Eric Biggers <ebiggers@kernel.org>
7223 L:      linux-fscrypt@vger.kernel.org
7224 S:      Supported
7225 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7226 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7227 F:      Documentation/filesystems/fscrypt.rst
7228 F:      fs/crypto/
7229 F:      include/linux/fscrypt*.h
7230 F:      include/uapi/linux/fscrypt.h
7231
7232 FSI SUBSYSTEM
7233 M:      Jeremy Kerr <jk@ozlabs.org>
7234 M:      Joel Stanley <joel@jms.id.au>
7235 R:      Alistar Popple <alistair@popple.id.au>
7236 R:      Eddie James <eajames@linux.ibm.com>
7237 L:      linux-fsi@lists.ozlabs.org
7238 S:      Supported
7239 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7241 F:      drivers/fsi/
7242 F:      include/linux/fsi*.h
7243 F:      include/trace/events/fsi*.h
7244
7245 FSI-ATTACHED I2C DRIVER
7246 M:      Eddie James <eajames@linux.ibm.com>
7247 L:      linux-i2c@vger.kernel.org
7248 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7249 S:      Maintained
7250 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7251 F:      drivers/i2c/busses/i2c-fsi.c
7252
7253 FSI-ATTACHED SPI DRIVER
7254 M:      Eddie James <eajames@linux.ibm.com>
7255 L:      linux-spi@vger.kernel.org
7256 S:      Maintained
7257 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7258 F:      drivers/spi/spi-fsi.c
7259
7260 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7261 M:      Jan Kara <jack@suse.cz>
7262 R:      Amir Goldstein <amir73il@gmail.com>
7263 L:      linux-fsdevel@vger.kernel.org
7264 S:      Maintained
7265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7266 F:      fs/notify/
7267 F:      include/linux/fsnotify*.h
7268
7269 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7270 M:      Eric Biggers <ebiggers@kernel.org>
7271 M:      Theodore Y. Ts'o <tytso@mit.edu>
7272 L:      linux-fscrypt@vger.kernel.org
7273 S:      Supported
7274 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7275 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7276 F:      Documentation/filesystems/fsverity.rst
7277 F:      fs/verity/
7278 F:      include/linux/fsverity.h
7279 F:      include/uapi/linux/fsverity.h
7280
7281 FUJITSU LAPTOP EXTRAS
7282 M:      Jonathan Woithe <jwoithe@just42.net>
7283 L:      platform-driver-x86@vger.kernel.org
7284 S:      Maintained
7285 F:      drivers/platform/x86/fujitsu-laptop.c
7286
7287 FUJITSU M-5MO LS CAMERA ISP DRIVER
7288 M:      Kyungmin Park <kyungmin.park@samsung.com>
7289 M:      Heungjun Kim <riverful.kim@samsung.com>
7290 L:      linux-media@vger.kernel.org
7291 S:      Maintained
7292 F:      drivers/media/i2c/m5mols/
7293 F:      include/media/i2c/m5mols.h
7294
7295 FUJITSU TABLET EXTRAS
7296 M:      Robert Gerlach <khnz@gmx.de>
7297 L:      platform-driver-x86@vger.kernel.org
7298 S:      Maintained
7299 F:      drivers/platform/x86/fujitsu-tablet.c
7300
7301 FUSE: FILESYSTEM IN USERSPACE
7302 M:      Miklos Szeredi <miklos@szeredi.hu>
7303 L:      linux-fsdevel@vger.kernel.org
7304 S:      Maintained
7305 W:      https://github.com/libfuse/
7306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7307 F:      Documentation/filesystems/fuse.rst
7308 F:      fs/fuse/
7309 F:      include/uapi/linux/fuse.h
7310
7311 FUTEX SUBSYSTEM
7312 M:      Thomas Gleixner <tglx@linutronix.de>
7313 M:      Ingo Molnar <mingo@redhat.com>
7314 R:      Peter Zijlstra <peterz@infradead.org>
7315 R:      Darren Hart <dvhart@infradead.org>
7316 L:      linux-kernel@vger.kernel.org
7317 S:      Maintained
7318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7319 F:      Documentation/locking/*futex*
7320 F:      include/asm-generic/futex.h
7321 F:      include/linux/futex.h
7322 F:      include/uapi/linux/futex.h
7323 F:      kernel/futex.c
7324 F:      tools/perf/bench/futex*
7325 F:      tools/testing/selftests/futex/
7326
7327 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7328 M:      Tim Harvey <tharvey@gateworks.com>
7329 M:      Robert Jones <rjones@gateworks.com>
7330 S:      Maintained
7331 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7332 F:      drivers/mfd/gateworks-gsc.c
7333 F:      include/linux/mfd/gsc.h
7334 F:      Documentation/hwmon/gsc-hwmon.rst
7335 F:      drivers/hwmon/gsc-hwmon.c
7336 F:      include/linux/platform_data/gsc_hwmon.h
7337
7338 GASKET DRIVER FRAMEWORK
7339 M:      Rob Springer <rspringer@google.com>
7340 M:      Todd Poynor <toddpoynor@google.com>
7341 M:      Ben Chan <benchan@chromium.org>
7342 M:      Richard Yeh <rcy@google.com>
7343 S:      Maintained
7344 F:      drivers/staging/gasket/
7345
7346 GCC PLUGINS
7347 M:      Kees Cook <keescook@chromium.org>
7348 R:      Emese Revfy <re.emese@gmail.com>
7349 L:      linux-hardening@vger.kernel.org
7350 S:      Maintained
7351 F:      Documentation/kbuild/gcc-plugins.rst
7352 F:      scripts/Makefile.gcc-plugins
7353 F:      scripts/gcc-plugin.sh
7354 F:      scripts/gcc-plugins/
7355
7356 GCOV BASED KERNEL PROFILING
7357 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7358 S:      Maintained
7359 F:      Documentation/dev-tools/gcov.rst
7360 F:      kernel/gcov/
7361
7362 GDB KERNEL DEBUGGING HELPER SCRIPTS
7363 M:      Jan Kiszka <jan.kiszka@siemens.com>
7364 M:      Kieran Bingham <kbingham@kernel.org>
7365 S:      Supported
7366 F:      scripts/gdb/
7367
7368 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7369 M:      Achim Leubner <achim_leubner@adaptec.com>
7370 L:      linux-scsi@vger.kernel.org
7371 S:      Supported
7372 W:      http://www.icp-vortex.com/
7373 F:      drivers/scsi/gdt*
7374
7375 GEMTEK FM RADIO RECEIVER DRIVER
7376 M:      Hans Verkuil <hverkuil@xs4all.nl>
7377 L:      linux-media@vger.kernel.org
7378 S:      Maintained
7379 W:      https://linuxtv.org
7380 T:      git git://linuxtv.org/media_tree.git
7381 F:      drivers/media/radio/radio-gemtek*
7382
7383 GENERIC ARCHITECTURE TOPOLOGY
7384 M:      Sudeep Holla <sudeep.holla@arm.com>
7385 L:      linux-kernel@vger.kernel.org
7386 S:      Maintained
7387 F:      drivers/base/arch_topology.c
7388 F:      include/linux/arch_topology.h
7389
7390 GENERIC ENTRY CODE
7391 M:      Thomas Gleixner <tglx@linutronix.de>
7392 M:      Peter Zijlstra <peterz@infradead.org>
7393 M:      Andy Lutomirski <luto@kernel.org>
7394 L:      linux-kernel@vger.kernel.org
7395 S:      Maintained
7396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7397 F:      include/linux/entry-common.h
7398 F:      include/linux/entry-kvm.h
7399 F:      kernel/entry/
7400
7401 GENERIC GPIO I2C DRIVER
7402 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7403 S:      Supported
7404 F:      drivers/i2c/busses/i2c-gpio.c
7405 F:      include/linux/platform_data/i2c-gpio.h
7406
7407 GENERIC GPIO I2C MULTIPLEXER DRIVER
7408 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7409 L:      linux-i2c@vger.kernel.org
7410 S:      Supported
7411 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7412 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7413 F:      include/linux/platform_data/i2c-mux-gpio.h
7414
7415 GENERIC HDLC (WAN) DRIVERS
7416 M:      Krzysztof Halasa <khc@pm.waw.pl>
7417 S:      Maintained
7418 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7419 F:      drivers/net/wan/c101.c
7420 F:      drivers/net/wan/hd6457*
7421 F:      drivers/net/wan/hdlc*
7422 F:      drivers/net/wan/n2.c
7423 F:      drivers/net/wan/pc300too.c
7424 F:      drivers/net/wan/pci200syn.c
7425 F:      drivers/net/wan/wanxl*
7426
7427 GENERIC INCLUDE/ASM HEADER FILES
7428 M:      Arnd Bergmann <arnd@arndb.de>
7429 L:      linux-arch@vger.kernel.org
7430 S:      Maintained
7431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7432 F:      include/asm-generic/
7433 F:      include/uapi/asm-generic/
7434
7435 GENERIC PHY FRAMEWORK
7436 M:      Kishon Vijay Abraham I <kishon@ti.com>
7437 M:      Vinod Koul <vkoul@kernel.org>
7438 L:      linux-kernel@vger.kernel.org
7439 S:      Supported
7440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7441 F:      Documentation/devicetree/bindings/phy/
7442 F:      drivers/phy/
7443 F:      include/linux/phy/
7444
7445 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7446 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7447 S:      Supported
7448 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7449
7450 GENERIC PM DOMAINS
7451 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7452 M:      Kevin Hilman <khilman@kernel.org>
7453 M:      Ulf Hansson <ulf.hansson@linaro.org>
7454 L:      linux-pm@vger.kernel.org
7455 S:      Supported
7456 F:      Documentation/devicetree/bindings/power/power?domain*
7457 F:      drivers/base/power/domain*.c
7458 F:      include/linux/pm_domain.h
7459
7460 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7461 M:      Eugen Hristev <eugen.hristev@microchip.com>
7462 L:      linux-input@vger.kernel.org
7463 S:      Maintained
7464 F:      drivers/input/touchscreen/resistive-adc-touch.c
7465
7466 GENERIC UIO DRIVER FOR PCI DEVICES
7467 M:      "Michael S. Tsirkin" <mst@redhat.com>
7468 L:      kvm@vger.kernel.org
7469 S:      Supported
7470 F:      drivers/uio/uio_pci_generic.c
7471
7472 GENERIC VDSO LIBRARY
7473 M:      Andy Lutomirski <luto@kernel.org>
7474 M:      Thomas Gleixner <tglx@linutronix.de>
7475 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7476 L:      linux-kernel@vger.kernel.org
7477 S:      Maintained
7478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7479 F:      include/asm-generic/vdso/vsyscall.h
7480 F:      include/vdso/
7481 F:      kernel/time/vsyscall.c
7482 F:      lib/vdso/
7483
7484 GENWQE (IBM Generic Workqueue Card)
7485 M:      Frank Haverkamp <haver@linux.ibm.com>
7486 S:      Supported
7487 F:      drivers/misc/genwqe/
7488
7489 GET_MAINTAINER SCRIPT
7490 M:      Joe Perches <joe@perches.com>
7491 S:      Maintained
7492 F:      scripts/get_maintainer.pl
7493
7494 GFS2 FILE SYSTEM
7495 M:      Bob Peterson <rpeterso@redhat.com>
7496 M:      Andreas Gruenbacher <agruenba@redhat.com>
7497 L:      cluster-devel@redhat.com
7498 S:      Supported
7499 W:      http://sources.redhat.com/cluster/
7500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7501 F:      Documentation/filesystems/gfs2*
7502 F:      fs/gfs2/
7503 F:      include/uapi/linux/gfs2_ondisk.h
7504
7505 GNSS SUBSYSTEM
7506 M:      Johan Hovold <johan@kernel.org>
7507 S:      Maintained
7508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7509 F:      Documentation/ABI/testing/sysfs-class-gnss
7510 F:      Documentation/devicetree/bindings/gnss/
7511 F:      drivers/gnss/
7512 F:      include/linux/gnss.h
7513
7514 GO7007 MPEG CODEC
7515 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7516 L:      linux-media@vger.kernel.org
7517 S:      Maintained
7518 F:      drivers/media/usb/go7007/
7519
7520 GOODIX TOUCHSCREEN
7521 M:      Bastien Nocera <hadess@hadess.net>
7522 L:      linux-input@vger.kernel.org
7523 S:      Maintained
7524 F:      drivers/input/touchscreen/goodix.c
7525
7526 GOOGLE ETHERNET DRIVERS
7527 M:      Catherine Sullivan <csully@google.com>
7528 R:      Sagi Shahar <sagis@google.com>
7529 R:      Jon Olson <jonolson@google.com>
7530 L:      netdev@vger.kernel.org
7531 S:      Supported
7532 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7533 F:      drivers/net/ethernet/google
7534
7535 GPD POCKET FAN DRIVER
7536 M:      Hans de Goede <hdegoede@redhat.com>
7537 L:      platform-driver-x86@vger.kernel.org
7538 S:      Maintained
7539 F:      drivers/platform/x86/gpd-pocket-fan.c
7540
7541 GPIO ACPI SUPPORT
7542 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7543 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7544 L:      linux-gpio@vger.kernel.org
7545 L:      linux-acpi@vger.kernel.org
7546 S:      Maintained
7547 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7548 F:      drivers/gpio/gpiolib-acpi.c
7549 F:      drivers/gpio/gpiolib-acpi.h
7550
7551 GPIO AGGREGATOR
7552 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7553 L:      linux-gpio@vger.kernel.org
7554 S:      Supported
7555 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7556 F:      drivers/gpio/gpio-aggregator.c
7557
7558 GPIO IR Transmitter
7559 M:      Sean Young <sean@mess.org>
7560 L:      linux-media@vger.kernel.org
7561 S:      Maintained
7562 F:      drivers/media/rc/gpio-ir-tx.c
7563
7564 GPIO MOCKUP DRIVER
7565 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7566 L:      linux-gpio@vger.kernel.org
7567 S:      Maintained
7568 F:      drivers/gpio/gpio-mockup.c
7569 F:      tools/testing/selftests/gpio/
7570
7571 GPIO REGMAP
7572 R:      Michael Walle <michael@walle.cc>
7573 S:      Maintained
7574 F:      drivers/gpio/gpio-regmap.c
7575 F:      include/linux/gpio/regmap.h
7576
7577 GPIO SUBSYSTEM
7578 M:      Linus Walleij <linus.walleij@linaro.org>
7579 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7580 L:      linux-gpio@vger.kernel.org
7581 S:      Maintained
7582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7583 F:      Documentation/ABI/obsolete/sysfs-gpio
7584 F:      Documentation/ABI/testing/gpio-cdev
7585 F:      Documentation/admin-guide/gpio/
7586 F:      Documentation/devicetree/bindings/gpio/
7587 F:      Documentation/driver-api/gpio/
7588 F:      drivers/gpio/
7589 F:      include/asm-generic/gpio.h
7590 F:      include/linux/gpio.h
7591 F:      include/linux/gpio/
7592 F:      include/linux/of_gpio.h
7593 F:      include/uapi/linux/gpio.h
7594 F:      tools/gpio/
7595
7596 GRE DEMULTIPLEXER DRIVER
7597 M:      Dmitry Kozlov <xeb@mail.ru>
7598 L:      netdev@vger.kernel.org
7599 S:      Maintained
7600 F:      include/net/gre.h
7601 F:      net/ipv4/gre_demux.c
7602 F:      net/ipv4/gre_offload.c
7603
7604 GRETH 10/100/1G Ethernet MAC device driver
7605 M:      Andreas Larsson <andreas@gaisler.com>
7606 L:      netdev@vger.kernel.org
7607 S:      Maintained
7608 F:      drivers/net/ethernet/aeroflex/
7609
7610 GREYBUS AUDIO PROTOCOLS DRIVERS
7611 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7612 M:      Mark Greer <mgreer@animalcreek.com>
7613 S:      Maintained
7614 F:      drivers/staging/greybus/audio_apbridgea.c
7615 F:      drivers/staging/greybus/audio_apbridgea.h
7616 F:      drivers/staging/greybus/audio_codec.c
7617 F:      drivers/staging/greybus/audio_codec.h
7618 F:      drivers/staging/greybus/audio_gb.c
7619 F:      drivers/staging/greybus/audio_manager.c
7620 F:      drivers/staging/greybus/audio_manager.h
7621 F:      drivers/staging/greybus/audio_manager_module.c
7622 F:      drivers/staging/greybus/audio_manager_private.h
7623 F:      drivers/staging/greybus/audio_manager_sysfs.c
7624 F:      drivers/staging/greybus/audio_module.c
7625 F:      drivers/staging/greybus/audio_topology.c
7626
7627 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7628 M:      Viresh Kumar <vireshk@kernel.org>
7629 S:      Maintained
7630 F:      drivers/staging/greybus/authentication.c
7631 F:      drivers/staging/greybus/bootrom.c
7632 F:      drivers/staging/greybus/firmware.h
7633 F:      drivers/staging/greybus/fw-core.c
7634 F:      drivers/staging/greybus/fw-download.c
7635 F:      drivers/staging/greybus/fw-management.c
7636 F:      drivers/staging/greybus/greybus_authentication.h
7637 F:      drivers/staging/greybus/greybus_firmware.h
7638 F:      drivers/staging/greybus/hid.c
7639 F:      drivers/staging/greybus/i2c.c
7640 F:      drivers/staging/greybus/spi.c
7641 F:      drivers/staging/greybus/spilib.c
7642 F:      drivers/staging/greybus/spilib.h
7643
7644 GREYBUS LOOPBACK DRIVER
7645 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7646 S:      Maintained
7647 F:      drivers/staging/greybus/loopback.c
7648
7649 GREYBUS PLATFORM DRIVERS
7650 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7651 S:      Maintained
7652 F:      drivers/staging/greybus/arche-apb-ctrl.c
7653 F:      drivers/staging/greybus/arche-platform.c
7654 F:      drivers/staging/greybus/arche_platform.h
7655
7656 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7657 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7658 S:      Maintained
7659 F:      drivers/staging/greybus/gpio.c
7660 F:      drivers/staging/greybus/light.c
7661 F:      drivers/staging/greybus/power_supply.c
7662 F:      drivers/staging/greybus/sdio.c
7663 F:      drivers/staging/greybus/spi.c
7664 F:      drivers/staging/greybus/spilib.c
7665
7666 GREYBUS SUBSYSTEM
7667 M:      Johan Hovold <johan@kernel.org>
7668 M:      Alex Elder <elder@kernel.org>
7669 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7670 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7671 S:      Maintained
7672 F:      drivers/greybus/
7673 F:      drivers/staging/greybus/
7674 F:      include/linux/greybus.h
7675 F:      include/linux/greybus/
7676
7677 GREYBUS UART PROTOCOLS DRIVERS
7678 M:      David Lin <dtwlin@gmail.com>
7679 S:      Maintained
7680 F:      drivers/staging/greybus/log.c
7681 F:      drivers/staging/greybus/uart.c
7682
7683 GS1662 VIDEO SERIALIZER
7684 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7685 L:      linux-media@vger.kernel.org
7686 S:      Maintained
7687 T:      git git://linuxtv.org/media_tree.git
7688 F:      drivers/media/spi/gs1662.c
7689
7690 GSPCA FINEPIX SUBDRIVER
7691 M:      Frank Zago <frank@zago.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/finepix.c
7696
7697 GSPCA GL860 SUBDRIVER
7698 M:      Olivier Lorin <o.lorin@laposte.net>
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/gl860/
7703
7704 GSPCA M5602 SUBDRIVER
7705 M:      Erik Andren <erik.andren@gmail.com>
7706 L:      linux-media@vger.kernel.org
7707 S:      Maintained
7708 T:      git git://linuxtv.org/media_tree.git
7709 F:      drivers/media/usb/gspca/m5602/
7710
7711 GSPCA PAC207 SONIXB SUBDRIVER
7712 M:      Hans Verkuil <hverkuil@xs4all.nl>
7713 L:      linux-media@vger.kernel.org
7714 S:      Odd Fixes
7715 T:      git git://linuxtv.org/media_tree.git
7716 F:      drivers/media/usb/gspca/pac207.c
7717
7718 GSPCA SN9C20X SUBDRIVER
7719 M:      Brian Johnson <brijohn@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/sn9c20x.c
7724
7725 GSPCA T613 SUBDRIVER
7726 M:      Leandro Costantino <lcostantino@gmail.com>
7727 L:      linux-media@vger.kernel.org
7728 S:      Maintained
7729 T:      git git://linuxtv.org/media_tree.git
7730 F:      drivers/media/usb/gspca/t613.c
7731
7732 GSPCA USB WEBCAM DRIVER
7733 M:      Hans Verkuil <hverkuil@xs4all.nl>
7734 L:      linux-media@vger.kernel.org
7735 S:      Odd Fixes
7736 T:      git git://linuxtv.org/media_tree.git
7737 F:      drivers/media/usb/gspca/
7738
7739 GTP (GPRS Tunneling Protocol)
7740 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7741 M:      Harald Welte <laforge@gnumonks.org>
7742 L:      osmocom-net-gprs@lists.osmocom.org
7743 S:      Maintained
7744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7745 F:      drivers/net/gtp.c
7746
7747 GUID PARTITION TABLE (GPT)
7748 M:      Davidlohr Bueso <dave@stgolabs.net>
7749 L:      linux-efi@vger.kernel.org
7750 S:      Maintained
7751 F:      block/partitions/efi.*
7752
7753 H8/300 ARCHITECTURE
7754 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7755 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7756 S:      Maintained
7757 W:      http://uclinux-h8.sourceforge.jp
7758 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7759 F:      arch/h8300/
7760 F:      drivers/clk/h8300/
7761 F:      drivers/clocksource/h8300_*.c
7762 F:      drivers/irqchip/irq-renesas-h8*.c
7763
7764 HABANALABS PCI DRIVER
7765 M:      Oded Gabbay <ogabbay@kernel.org>
7766 S:      Supported
7767 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
7768 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7769 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7770 F:      drivers/misc/habanalabs/
7771 F:      include/uapi/misc/habanalabs.h
7772
7773 HACKRF MEDIA DRIVER
7774 M:      Antti Palosaari <crope@iki.fi>
7775 L:      linux-media@vger.kernel.org
7776 S:      Maintained
7777 W:      https://linuxtv.org
7778 W:      http://palosaari.fi/linux/
7779 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7780 T:      git git://linuxtv.org/anttip/media_tree.git
7781 F:      drivers/media/usb/hackrf/
7782
7783 HANTRO VPU CODEC DRIVER
7784 M:      Ezequiel Garcia <ezequiel@collabora.com>
7785 M:      Philipp Zabel <p.zabel@pengutronix.de>
7786 L:      linux-media@vger.kernel.org
7787 L:      linux-rockchip@lists.infradead.org
7788 S:      Maintained
7789 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7790 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7791 F:      drivers/staging/media/hantro/
7792
7793 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7794 M:      Frank Seidel <frank@f-seidel.de>
7795 L:      platform-driver-x86@vger.kernel.org
7796 S:      Maintained
7797 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7798 F:      drivers/platform/x86/hdaps.c
7799
7800 HARDWARE MONITORING
7801 M:      Jean Delvare <jdelvare@suse.com>
7802 M:      Guenter Roeck <linux@roeck-us.net>
7803 L:      linux-hwmon@vger.kernel.org
7804 S:      Maintained
7805 W:      http://hwmon.wiki.kernel.org/
7806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7807 F:      Documentation/devicetree/bindings/hwmon/
7808 F:      Documentation/hwmon/
7809 F:      drivers/hwmon/
7810 F:      include/linux/hwmon*.h
7811 F:      include/trace/events/hwmon*.h
7812
7813 HARDWARE RANDOM NUMBER GENERATOR CORE
7814 M:      Matt Mackall <mpm@selenic.com>
7815 M:      Herbert Xu <herbert@gondor.apana.org.au>
7816 L:      linux-crypto@vger.kernel.org
7817 S:      Odd fixes
7818 F:      Documentation/admin-guide/hw_random.rst
7819 F:      Documentation/devicetree/bindings/rng/
7820 F:      drivers/char/hw_random/
7821 F:      include/linux/hw_random.h
7822
7823 HARDWARE SPINLOCK CORE
7824 M:      Ohad Ben-Cohen <ohad@wizery.com>
7825 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7826 R:      Baolin Wang <baolin.wang7@gmail.com>
7827 L:      linux-remoteproc@vger.kernel.org
7828 S:      Maintained
7829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7830 F:      Documentation/devicetree/bindings/hwlock/
7831 F:      Documentation/locking/hwspinlock.rst
7832 F:      drivers/hwspinlock/
7833 F:      include/linux/hwspinlock.h
7834
7835 HARDWARE TRACING FACILITIES
7836 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7837 S:      Maintained
7838 F:      drivers/hwtracing/
7839
7840 HARMONY SOUND DRIVER
7841 L:      linux-parisc@vger.kernel.org
7842 S:      Maintained
7843 F:      sound/parisc/harmony.*
7844
7845 HDPVR USB VIDEO ENCODER DRIVER
7846 M:      Hans Verkuil <hverkuil@xs4all.nl>
7847 L:      linux-media@vger.kernel.org
7848 S:      Odd Fixes
7849 W:      https://linuxtv.org
7850 T:      git git://linuxtv.org/media_tree.git
7851 F:      drivers/media/usb/hdpvr/
7852
7853 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7854 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
7855 S:      Supported
7856 F:      Documentation/watchdog/hpwdt.rst
7857 F:      drivers/watchdog/hpwdt.c
7858
7859 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7860 M:      Don Brace <don.brace@microchip.com>
7861 L:      storagedev@microchip.com
7862 L:      linux-scsi@vger.kernel.org
7863 S:      Supported
7864 F:      Documentation/scsi/hpsa.rst
7865 F:      drivers/scsi/hpsa*.[ch]
7866 F:      include/linux/cciss*.h
7867 F:      include/uapi/linux/cciss*.h
7868
7869 HFI1 DRIVER
7870 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
7871 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
7872 L:      linux-rdma@vger.kernel.org
7873 S:      Supported
7874 F:      drivers/infiniband/hw/hfi1
7875
7876 HFS FILESYSTEM
7877 L:      linux-fsdevel@vger.kernel.org
7878 S:      Orphan
7879 F:      Documentation/filesystems/hfs.rst
7880 F:      fs/hfs/
7881
7882 HFSPLUS FILESYSTEM
7883 L:      linux-fsdevel@vger.kernel.org
7884 S:      Orphan
7885 F:      Documentation/filesystems/hfsplus.rst
7886 F:      fs/hfsplus/
7887
7888 HGA FRAMEBUFFER DRIVER
7889 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7890 L:      linux-nvidia@lists.surfsouth.com
7891 S:      Maintained
7892 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7893 F:      drivers/video/fbdev/hgafb.c
7894
7895 HIBERNATION (aka Software Suspend, aka swsusp)
7896 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7897 M:      Pavel Machek <pavel@ucw.cz>
7898 L:      linux-pm@vger.kernel.org
7899 S:      Supported
7900 B:      https://bugzilla.kernel.org
7901 F:      arch/*/include/asm/suspend*.h
7902 F:      arch/x86/power/
7903 F:      drivers/base/power/
7904 F:      include/linux/freezer.h
7905 F:      include/linux/pm.h
7906 F:      include/linux/suspend.h
7907 F:      kernel/power/
7908
7909 HID CORE LAYER
7910 M:      Jiri Kosina <jikos@kernel.org>
7911 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7912 L:      linux-input@vger.kernel.org
7913 S:      Maintained
7914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7915 F:      drivers/hid/
7916 F:      include/linux/hid*
7917 F:      include/uapi/linux/hid*
7918
7919 HID SENSOR HUB DRIVERS
7920 M:      Jiri Kosina <jikos@kernel.org>
7921 M:      Jonathan Cameron <jic23@kernel.org>
7922 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7923 L:      linux-input@vger.kernel.org
7924 L:      linux-iio@vger.kernel.org
7925 S:      Maintained
7926 F:      Documentation/hid/hid-sensor*
7927 F:      drivers/hid/hid-sensor-*
7928 F:      drivers/iio/*/hid-*
7929 F:      include/linux/hid-sensor-*
7930
7931 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7932 M:      Thomas Gleixner <tglx@linutronix.de>
7933 L:      linux-kernel@vger.kernel.org
7934 S:      Maintained
7935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7936 F:      Documentation/timers/
7937 F:      include/linux/clockchips.h
7938 F:      include/linux/hrtimer.h
7939 F:      kernel/time/clockevents.c
7940 F:      kernel/time/hrtimer.c
7941 F:      kernel/time/timer_*.c
7942
7943 HIGH-SPEED SCC DRIVER FOR AX.25
7944 L:      linux-hams@vger.kernel.org
7945 S:      Orphan
7946 F:      drivers/net/hamradio/dmascc.c
7947 F:      drivers/net/hamradio/scc.c
7948
7949 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7950 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7951 S:      Supported
7952 W:      http://www.highpoint-tech.com
7953 F:      Documentation/scsi/hptiop.rst
7954 F:      drivers/scsi/hptiop.c
7955
7956 HIPPI
7957 M:      Jes Sorensen <jes@trained-monkey.org>
7958 L:      linux-hippi@sunsite.dk
7959 S:      Maintained
7960 F:      drivers/net/hippi/
7961 F:      include/linux/hippidevice.h
7962 F:      include/uapi/linux/if_hippi.h
7963 F:      net/802/hippi.c
7964
7965 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
7966 M:      Kurt Kanzenbach <kurt@linutronix.de>
7967 L:      netdev@vger.kernel.org
7968 S:      Maintained
7969 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
7970 F:      drivers/net/dsa/hirschmann/*
7971 F:      include/linux/platform_data/hirschmann-hellcreek.h
7972 F:      net/dsa/tag_hellcreek.c
7973
7974 HISILICON DMA DRIVER
7975 M:      Zhou Wang <wangzhou1@hisilicon.com>
7976 L:      dmaengine@vger.kernel.org
7977 S:      Maintained
7978 F:      drivers/dma/hisi_dma.c
7979
7980 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7981 M:      Zaibo Xu <xuzaibo@huawei.com>
7982 L:      linux-crypto@vger.kernel.org
7983 S:      Maintained
7984 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7985 F:      drivers/crypto/hisilicon/hpre/hpre.h
7986 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7987 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7988
7989 HISILICON LPC BUS DRIVER
7990 M:      john.garry@huawei.com
7991 S:      Maintained
7992 W:      http://www.hisilicon.com
7993 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
7994 F:      drivers/bus/hisi_lpc.c
7995
7996 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7997 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7998 M:      Salil Mehta <salil.mehta@huawei.com>
7999 L:      netdev@vger.kernel.org
8000 S:      Maintained
8001 W:      http://www.hisilicon.com
8002 F:      drivers/net/ethernet/hisilicon/hns3/
8003
8004 HISILICON NETWORK SUBSYSTEM DRIVER
8005 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8006 M:      Salil Mehta <salil.mehta@huawei.com>
8007 L:      netdev@vger.kernel.org
8008 S:      Maintained
8009 W:      http://www.hisilicon.com
8010 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8011 F:      drivers/net/ethernet/hisilicon/
8012
8013 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8014 M:      John Stultz <john.stultz@linaro.org>
8015 L:      linux-kernel@vger.kernel.org
8016 S:      Maintained
8017 F:      drivers/misc/hisi_hikey_usb.c
8018 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8019
8020 HISILICON PMU DRIVER
8021 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8022 S:      Supported
8023 W:      http://www.hisilicon.com
8024 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8025 F:      drivers/perf/hisilicon
8026
8027 HISILICON QM AND ZIP Controller DRIVER
8028 M:      Zhou Wang <wangzhou1@hisilicon.com>
8029 L:      linux-crypto@vger.kernel.org
8030 S:      Maintained
8031 F:      Documentation/ABI/testing/debugfs-hisi-zip
8032 F:      drivers/crypto/hisilicon/qm.c
8033 F:      drivers/crypto/hisilicon/qm.h
8034 F:      drivers/crypto/hisilicon/sgl.c
8035 F:      drivers/crypto/hisilicon/zip/
8036
8037 HISILICON ROCE DRIVER
8038 M:      Lijun Ou <oulijun@huawei.com>
8039 M:      Wei Hu(Xavier) <huwei87@hisilicon.com>
8040 M:      Weihang Li <liweihang@huawei.com>
8041 L:      linux-rdma@vger.kernel.org
8042 S:      Maintained
8043 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8044 F:      drivers/infiniband/hw/hns/
8045
8046 HISILICON SAS Controller
8047 M:      John Garry <john.garry@huawei.com>
8048 S:      Supported
8049 W:      http://www.hisilicon.com
8050 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8051 F:      drivers/scsi/hisi_sas/
8052
8053 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8054 M:      Zaibo Xu <xuzaibo@huawei.com>
8055 L:      linux-crypto@vger.kernel.org
8056 S:      Maintained
8057 F:      Documentation/ABI/testing/debugfs-hisi-sec
8058 F:      drivers/crypto/hisilicon/sec2/sec.h
8059 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8060 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8061 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8062
8063 HISILICON STAGING DRIVERS FOR HIKEY 960/970
8064 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8065 L:      devel@driverdev.osuosl.org
8066 S:      Maintained
8067 F:      drivers/staging/hikey9xx/
8068
8069 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8070 M:      Zaibo Xu <xuzaibo@huawei.com>
8071 S:      Maintained
8072 F:      drivers/crypto/hisilicon/trng/trng.c
8073
8074 HISILICON V3XX SPI NOR FLASH Controller Driver
8075 M:      John Garry <john.garry@huawei.com>
8076 S:      Maintained
8077 W:      http://www.hisilicon.com
8078 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8079
8080 HMM - Heterogeneous Memory Management
8081 M:      Jérôme Glisse <jglisse@redhat.com>
8082 L:      linux-mm@kvack.org
8083 S:      Maintained
8084 F:      Documentation/vm/hmm.rst
8085 F:      include/linux/hmm*
8086 F:      lib/test_hmm*
8087 F:      mm/hmm*
8088 F:      tools/testing/selftests/vm/*hmm*
8089
8090 HOST AP DRIVER
8091 M:      Jouni Malinen <j@w1.fi>
8092 L:      linux-wireless@vger.kernel.org
8093 S:      Obsolete
8094 W:      http://w1.fi/hostap-driver.html
8095 F:      drivers/net/wireless/intersil/hostap/
8096
8097 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8098 L:      platform-driver-x86@vger.kernel.org
8099 S:      Orphan
8100 F:      drivers/platform/x86/tc1100-wmi.c
8101
8102 HPET:   High Precision Event Timers driver
8103 M:      Clemens Ladisch <clemens@ladisch.de>
8104 S:      Maintained
8105 F:      Documentation/timers/hpet.rst
8106 F:      drivers/char/hpet.c
8107 F:      include/linux/hpet.h
8108 F:      include/uapi/linux/hpet.h
8109
8110 HPET:   x86
8111 S:      Orphan
8112 F:      arch/x86/include/asm/hpet.h
8113 F:      arch/x86/kernel/hpet.c
8114
8115 HPFS FILESYSTEM
8116 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8117 S:      Maintained
8118 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8119 F:      fs/hpfs/
8120
8121 HSI SUBSYSTEM
8122 M:      Sebastian Reichel <sre@kernel.org>
8123 S:      Maintained
8124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8125 F:      Documentation/ABI/testing/sysfs-bus-hsi
8126 F:      Documentation/driver-api/hsi.rst
8127 F:      drivers/hsi/
8128 F:      include/linux/hsi/
8129 F:      include/uapi/linux/hsi/
8130
8131 HSO 3G MODEM DRIVER
8132 L:      linux-usb@vger.kernel.org
8133 S:      Orphan
8134 F:      drivers/net/usb/hso.c
8135
8136 HSR NETWORK PROTOCOL
8137 L:      netdev@vger.kernel.org
8138 S:      Orphan
8139 F:      net/hsr/
8140
8141 HT16K33 LED CONTROLLER DRIVER
8142 M:      Robin van der Gracht <robin@protonic.nl>
8143 S:      Maintained
8144 F:      Documentation/devicetree/bindings/display/ht16k33.txt
8145 F:      drivers/auxdisplay/ht16k33.c
8146
8147 HTCPEN TOUCHSCREEN DRIVER
8148 M:      Pau Oliva Fora <pof@eslack.org>
8149 L:      linux-input@vger.kernel.org
8150 S:      Maintained
8151 F:      drivers/input/touchscreen/htcpen.c
8152
8153 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8154 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8155 L:      linux-iio@vger.kernel.org
8156 S:      Maintained
8157 W:      http://www.st.com/
8158 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
8159 F:      drivers/iio/humidity/hts221*
8160
8161 HUAWEI ETHERNET DRIVER
8162 M:      Bin Luo <luobin9@huawei.com>
8163 L:      netdev@vger.kernel.org
8164 S:      Supported
8165 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8166 F:      drivers/net/ethernet/huawei/hinic/
8167
8168 HUGETLB FILESYSTEM
8169 M:      Mike Kravetz <mike.kravetz@oracle.com>
8170 L:      linux-mm@kvack.org
8171 S:      Maintained
8172 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8173 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8174 F:      Documentation/vm/hugetlbfs_reserv.rst
8175 F:      fs/hugetlbfs/
8176 F:      include/linux/hugetlb.h
8177 F:      mm/hugetlb.c
8178
8179 HVA ST MEDIA DRIVER
8180 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
8181 L:      linux-media@vger.kernel.org
8182 S:      Supported
8183 W:      https://linuxtv.org
8184 T:      git git://linuxtv.org/media_tree.git
8185 F:      drivers/media/platform/sti/hva
8186
8187 HWPOISON MEMORY FAILURE HANDLING
8188 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8189 L:      linux-mm@kvack.org
8190 S:      Maintained
8191 F:      mm/hwpoison-inject.c
8192 F:      mm/memory-failure.c
8193
8194 HYGON PROCESSOR SUPPORT
8195 M:      Pu Wen <puwen@hygon.cn>
8196 L:      linux-kernel@vger.kernel.org
8197 S:      Maintained
8198 F:      arch/x86/kernel/cpu/hygon.c
8199
8200 HYNIX HI556 SENSOR DRIVER
8201 M:      Shawn Tu <shawnx.tu@intel.com>
8202 L:      linux-media@vger.kernel.org
8203 S:      Maintained
8204 T:      git git://linuxtv.org/media_tree.git
8205 F:      drivers/media/i2c/hi556.c
8206
8207 Hyper-V CORE AND DRIVERS
8208 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8209 M:      Haiyang Zhang <haiyangz@microsoft.com>
8210 M:      Stephen Hemminger <sthemmin@microsoft.com>
8211 M:      Wei Liu <wei.liu@kernel.org>
8212 L:      linux-hyperv@vger.kernel.org
8213 S:      Supported
8214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8215 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8216 F:      Documentation/ABI/testing/debugfs-hyperv
8217 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8218 F:      arch/x86/hyperv
8219 F:      arch/x86/include/asm/hyperv-tlfs.h
8220 F:      arch/x86/include/asm/mshyperv.h
8221 F:      arch/x86/include/asm/trace/hyperv.h
8222 F:      arch/x86/kernel/cpu/mshyperv.c
8223 F:      drivers/clocksource/hyperv_timer.c
8224 F:      drivers/hid/hid-hyperv.c
8225 F:      drivers/hv/
8226 F:      drivers/input/serio/hyperv-keyboard.c
8227 F:      drivers/iommu/hyperv-iommu.c
8228 F:      drivers/net/hyperv/
8229 F:      drivers/pci/controller/pci-hyperv-intf.c
8230 F:      drivers/pci/controller/pci-hyperv.c
8231 F:      drivers/scsi/storvsc_drv.c
8232 F:      drivers/uio/uio_hv_generic.c
8233 F:      drivers/video/fbdev/hyperv_fb.c
8234 F:      include/asm-generic/hyperv-tlfs.h
8235 F:      include/asm-generic/mshyperv.h
8236 F:      include/clocksource/hyperv_timer.h
8237 F:      include/linux/hyperv.h
8238 F:      include/uapi/linux/hyperv.h
8239 F:      net/vmw_vsock/hyperv_transport.c
8240 F:      tools/hv/
8241
8242 HYPERBUS SUPPORT
8243 M:      Vignesh Raghavendra <vigneshr@ti.com>
8244 L:      linux-mtd@lists.infradead.org
8245 S:      Supported
8246 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8247 C:      irc://irc.oftc.net/mtd
8248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8249 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8250 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8251 F:      drivers/mtd/hyperbus/
8252 F:      include/linux/mtd/hyperbus.h
8253
8254 HYPERVISOR VIRTUAL CONSOLE DRIVER
8255 L:      linuxppc-dev@lists.ozlabs.org
8256 S:      Odd Fixes
8257 F:      drivers/tty/hvc/
8258
8259 I2C ACPI SUPPORT
8260 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8261 L:      linux-i2c@vger.kernel.org
8262 L:      linux-acpi@vger.kernel.org
8263 S:      Maintained
8264 F:      drivers/i2c/i2c-core-acpi.c
8265
8266 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8267 M:      Ajay Gupta <ajayg@nvidia.com>
8268 L:      linux-i2c@vger.kernel.org
8269 S:      Maintained
8270 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8271 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8272
8273 I2C MUXES
8274 M:      Peter Rosin <peda@axentia.se>
8275 L:      linux-i2c@vger.kernel.org
8276 S:      Maintained
8277 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8278 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8279 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8280 F:      Documentation/i2c/i2c-topology.rst
8281 F:      Documentation/i2c/muxes/
8282 F:      drivers/i2c/i2c-mux.c
8283 F:      drivers/i2c/muxes/
8284 F:      include/linux/i2c-mux.h
8285
8286 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8287 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8288 L:      linux-i2c@vger.kernel.org
8289 S:      Maintained
8290 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8291 F:      drivers/i2c/busses/i2c-mv64xxx.c
8292
8293 I2C OVER PARALLEL PORT
8294 M:      Jean Delvare <jdelvare@suse.com>
8295 L:      linux-i2c@vger.kernel.org
8296 S:      Maintained
8297 F:      Documentation/i2c/busses/i2c-parport.rst
8298 F:      drivers/i2c/busses/i2c-parport.c
8299
8300 I2C SUBSYSTEM
8301 M:      Wolfram Sang <wsa@kernel.org>
8302 L:      linux-i2c@vger.kernel.org
8303 S:      Maintained
8304 W:      https://i2c.wiki.kernel.org/
8305 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8307 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8308 F:      Documentation/i2c/
8309 F:      drivers/i2c/*
8310 F:      include/linux/i2c-dev.h
8311 F:      include/linux/i2c-smbus.h
8312 F:      include/linux/i2c.h
8313 F:      include/uapi/linux/i2c-*.h
8314 F:      include/uapi/linux/i2c.h
8315
8316 I2C SUBSYSTEM HOST DRIVERS
8317 L:      linux-i2c@vger.kernel.org
8318 S:      Odd Fixes
8319 W:      https://i2c.wiki.kernel.org/
8320 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8322 F:      Documentation/devicetree/bindings/i2c/
8323 F:      drivers/i2c/algos/
8324 F:      drivers/i2c/busses/
8325
8326 I2C-TAOS-EVM DRIVER
8327 M:      Jean Delvare <jdelvare@suse.com>
8328 L:      linux-i2c@vger.kernel.org
8329 S:      Maintained
8330 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8331 F:      drivers/i2c/busses/i2c-taos-evm.c
8332
8333 I2C-TINY-USB DRIVER
8334 M:      Till Harbaum <till@harbaum.org>
8335 L:      linux-i2c@vger.kernel.org
8336 S:      Maintained
8337 W:      http://www.harbaum.org/till/i2c_tiny_usb
8338 F:      drivers/i2c/busses/i2c-tiny-usb.c
8339
8340 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8341 M:      Jean Delvare <jdelvare@suse.com>
8342 L:      linux-i2c@vger.kernel.org
8343 S:      Maintained
8344 F:      Documentation/i2c/busses/i2c-ali1535.rst
8345 F:      Documentation/i2c/busses/i2c-ali1563.rst
8346 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8347 F:      Documentation/i2c/busses/i2c-amd756.rst
8348 F:      Documentation/i2c/busses/i2c-amd8111.rst
8349 F:      Documentation/i2c/busses/i2c-i801.rst
8350 F:      Documentation/i2c/busses/i2c-nforce2.rst
8351 F:      Documentation/i2c/busses/i2c-piix4.rst
8352 F:      Documentation/i2c/busses/i2c-sis5595.rst
8353 F:      Documentation/i2c/busses/i2c-sis630.rst
8354 F:      Documentation/i2c/busses/i2c-sis96x.rst
8355 F:      Documentation/i2c/busses/i2c-via.rst
8356 F:      Documentation/i2c/busses/i2c-viapro.rst
8357 F:      drivers/i2c/busses/i2c-ali1535.c
8358 F:      drivers/i2c/busses/i2c-ali1563.c
8359 F:      drivers/i2c/busses/i2c-ali15x3.c
8360 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8361 F:      drivers/i2c/busses/i2c-amd756.c
8362 F:      drivers/i2c/busses/i2c-amd8111.c
8363 F:      drivers/i2c/busses/i2c-i801.c
8364 F:      drivers/i2c/busses/i2c-isch.c
8365 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8366 F:      drivers/i2c/busses/i2c-nforce2.c
8367 F:      drivers/i2c/busses/i2c-piix4.c
8368 F:      drivers/i2c/busses/i2c-sis5595.c
8369 F:      drivers/i2c/busses/i2c-sis630.c
8370 F:      drivers/i2c/busses/i2c-sis96x.c
8371 F:      drivers/i2c/busses/i2c-via.c
8372 F:      drivers/i2c/busses/i2c-viapro.c
8373
8374 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8375 M:      Hans de Goede <hdegoede@redhat.com>
8376 L:      linux-i2c@vger.kernel.org
8377 S:      Maintained
8378 F:      drivers/i2c/busses/i2c-cht-wc.c
8379
8380 I2C/SMBUS ISMT DRIVER
8381 M:      Seth Heasley <seth.heasley@intel.com>
8382 M:      Neil Horman <nhorman@tuxdriver.com>
8383 L:      linux-i2c@vger.kernel.org
8384 F:      Documentation/i2c/busses/i2c-ismt.rst
8385 F:      drivers/i2c/busses/i2c-ismt.c
8386
8387 I2C/SMBUS STUB DRIVER
8388 M:      Jean Delvare <jdelvare@suse.com>
8389 L:      linux-i2c@vger.kernel.org
8390 S:      Maintained
8391 F:      drivers/i2c/i2c-stub.c
8392
8393 I3C DRIVER FOR CADENCE I3C MASTER IP
8394 M:      Przemysław Gaj <pgaj@cadence.com>
8395 S:      Maintained
8396 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8397 F:      drivers/i3c/master/i3c-master-cdns.c
8398
8399 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8400 M:      Vitor Soares <vitor.soares@synopsys.com>
8401 S:      Maintained
8402 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8403 F:      drivers/i3c/master/dw*
8404
8405 I3C SUBSYSTEM
8406 M:      Boris Brezillon <bbrezillon@kernel.org>
8407 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8408 S:      Maintained
8409 C:      irc://chat.freenode.net/linux-i3c
8410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8411 F:      Documentation/ABI/testing/sysfs-bus-i3c
8412 F:      Documentation/devicetree/bindings/i3c/
8413 F:      Documentation/driver-api/i3c
8414 F:      drivers/i3c/
8415 F:      include/linux/i3c/
8416
8417 IA64 (Itanium) PLATFORM
8418 M:      Tony Luck <tony.luck@intel.com>
8419 M:      Fenghua Yu <fenghua.yu@intel.com>
8420 L:      linux-ia64@vger.kernel.org
8421 S:      Odd Fixes
8422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8423 F:      Documentation/ia64/
8424 F:      arch/ia64/
8425
8426 IBM Power 842 compression accelerator
8427 M:      Haren Myneni <haren@us.ibm.com>
8428 S:      Supported
8429 F:      crypto/842.c
8430 F:      drivers/crypto/nx/Kconfig
8431 F:      drivers/crypto/nx/Makefile
8432 F:      drivers/crypto/nx/nx-842*
8433 F:      include/linux/sw842.h
8434 F:      lib/842/
8435
8436 IBM Power in-Nest Crypto Acceleration
8437 M:      Breno Leitão <leitao@debian.org>
8438 M:      Nayna Jain <nayna@linux.ibm.com>
8439 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8440 L:      linux-crypto@vger.kernel.org
8441 S:      Supported
8442 F:      drivers/crypto/nx/Kconfig
8443 F:      drivers/crypto/nx/Makefile
8444 F:      drivers/crypto/nx/nx-aes*
8445 F:      drivers/crypto/nx/nx-sha*
8446 F:      drivers/crypto/nx/nx.*
8447 F:      drivers/crypto/nx/nx_csbcpb.h
8448 F:      drivers/crypto/nx/nx_debugfs.c
8449
8450 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8451 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8452 L:      linux-pci@vger.kernel.org
8453 L:      linuxppc-dev@lists.ozlabs.org
8454 S:      Supported
8455 F:      drivers/pci/hotplug/rpadlpar*
8456
8457 IBM Power Linux RAID adapter
8458 M:      Brian King <brking@us.ibm.com>
8459 S:      Supported
8460 F:      drivers/scsi/ipr.*
8461
8462 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8463 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8464 L:      linux-pci@vger.kernel.org
8465 L:      linuxppc-dev@lists.ozlabs.org
8466 S:      Supported
8467 F:      drivers/pci/hotplug/rpaphp*
8468
8469 IBM Power SRIOV Virtual NIC Device Driver
8470 M:      Dany Madden <drt@linux.ibm.com>
8471 M:      Lijun Pan <ljp@linux.ibm.com>
8472 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8473 L:      netdev@vger.kernel.org
8474 S:      Supported
8475 F:      drivers/net/ethernet/ibm/ibmvnic.*
8476
8477 IBM Power Virtual Accelerator Switchboard
8478 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8479 L:      linuxppc-dev@lists.ozlabs.org
8480 S:      Supported
8481 F:      arch/powerpc/include/asm/vas.h
8482 F:      arch/powerpc/platforms/powernv/copy-paste.h
8483 F:      arch/powerpc/platforms/powernv/vas*
8484
8485 IBM Power Virtual Ethernet Device Driver
8486 M:      Cristobal Forno <cforno12@linux.ibm.com>
8487 L:      netdev@vger.kernel.org
8488 S:      Supported
8489 F:      drivers/net/ethernet/ibm/ibmveth.*
8490
8491 IBM Power Virtual FC Device Drivers
8492 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8493 L:      linux-scsi@vger.kernel.org
8494 S:      Supported
8495 F:      drivers/scsi/ibmvscsi/ibmvfc*
8496
8497 IBM Power Virtual Management Channel Driver
8498 M:      Steven Royer <seroyer@linux.ibm.com>
8499 S:      Supported
8500 F:      drivers/misc/ibmvmc.*
8501
8502 IBM Power Virtual SCSI Device Drivers
8503 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8504 L:      linux-scsi@vger.kernel.org
8505 S:      Supported
8506 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8507 F:      include/scsi/viosrp.h
8508
8509 IBM Power Virtual SCSI Device Target Driver
8510 M:      Michael Cyr <mikecyr@linux.ibm.com>
8511 L:      linux-scsi@vger.kernel.org
8512 L:      target-devel@vger.kernel.org
8513 S:      Supported
8514 F:      drivers/scsi/ibmvscsi_tgt/
8515
8516 IBM Power VMX Cryptographic instructions
8517 M:      Breno Leitão <leitao@debian.org>
8518 M:      Nayna Jain <nayna@linux.ibm.com>
8519 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8520 L:      linux-crypto@vger.kernel.org
8521 S:      Supported
8522 F:      drivers/crypto/vmx/Kconfig
8523 F:      drivers/crypto/vmx/Makefile
8524 F:      drivers/crypto/vmx/aes*
8525 F:      drivers/crypto/vmx/ghash*
8526 F:      drivers/crypto/vmx/ppc-xlate.pl
8527 F:      drivers/crypto/vmx/vmx.c
8528
8529 IBM ServeRAID RAID DRIVER
8530 S:      Orphan
8531 F:      drivers/scsi/ips.*
8532
8533 ICH LPC AND GPIO DRIVER
8534 M:      Peter Tyser <ptyser@xes-inc.com>
8535 S:      Maintained
8536 F:      drivers/gpio/gpio-ich.c
8537 F:      drivers/mfd/lpc_ich.c
8538
8539 ICY I2C DRIVER
8540 M:      Max Staudt <max@enpas.org>
8541 L:      linux-i2c@vger.kernel.org
8542 S:      Maintained
8543 F:      drivers/i2c/busses/i2c-icy.c
8544
8545 IDE SUBSYSTEM
8546 M:      "David S. Miller" <davem@davemloft.net>
8547 L:      linux-ide@vger.kernel.org
8548 S:      Maintained
8549 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8551 F:      Documentation/ide/
8552 F:      drivers/ide/
8553 F:      include/linux/ide.h
8554
8555 IDE/ATAPI DRIVERS
8556 M:      Borislav Petkov <bp@alien8.de>
8557 L:      linux-ide@vger.kernel.org
8558 S:      Maintained
8559 F:      Documentation/cdrom/ide-cd.rst
8560 F:      drivers/ide/ide-cd*
8561
8562 IDEAPAD LAPTOP EXTRAS DRIVER
8563 M:      Ike Panhc <ike.pan@canonical.com>
8564 L:      platform-driver-x86@vger.kernel.org
8565 S:      Maintained
8566 W:      http://launchpad.net/ideapad-laptop
8567 F:      drivers/platform/x86/ideapad-laptop.c
8568
8569 IDEAPAD LAPTOP SLIDEBAR DRIVER
8570 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8571 L:      linux-input@vger.kernel.org
8572 S:      Maintained
8573 W:      https://github.com/o2genum/ideapad-slidebar
8574 F:      drivers/input/misc/ideapad_slidebar.c
8575
8576 IDT VersaClock 5 CLOCK DRIVER
8577 M:      Luca Ceresoli <luca@lucaceresoli.net>
8578 S:      Maintained
8579 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
8580 F:      drivers/clk/clk-versaclock5.c
8581
8582 IEEE 802.15.4 SUBSYSTEM
8583 M:      Alexander Aring <alex.aring@gmail.com>
8584 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8585 L:      linux-wpan@vger.kernel.org
8586 S:      Maintained
8587 W:      https://linux-wpan.org/
8588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8590 F:      Documentation/networking/ieee802154.rst
8591 F:      drivers/net/ieee802154/
8592 F:      include/linux/ieee802154.h
8593 F:      include/linux/nl802154.h
8594 F:      include/net/af_ieee802154.h
8595 F:      include/net/cfg802154.h
8596 F:      include/net/ieee802154_netdev.h
8597 F:      include/net/mac802154.h
8598 F:      include/net/nl802154.h
8599 F:      net/ieee802154/
8600 F:      net/mac802154/
8601
8602 IFE PROTOCOL
8603 M:      Yotam Gigi <yotam.gi@gmail.com>
8604 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8605 F:      include/net/ife.h
8606 F:      include/uapi/linux/ife.h
8607 F:      net/ife
8608
8609 IGORPLUG-USB IR RECEIVER
8610 M:      Sean Young <sean@mess.org>
8611 L:      linux-media@vger.kernel.org
8612 S:      Maintained
8613 F:      drivers/media/rc/igorplugusb.c
8614
8615 IGUANAWORKS USB IR TRANSCEIVER
8616 M:      Sean Young <sean@mess.org>
8617 L:      linux-media@vger.kernel.org
8618 S:      Maintained
8619 F:      drivers/media/rc/iguanair.c
8620
8621 IIO DIGITAL POTENTIOMETER DAC
8622 M:      Peter Rosin <peda@axentia.se>
8623 L:      linux-iio@vger.kernel.org
8624 S:      Maintained
8625 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8626 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8627 F:      drivers/iio/dac/dpot-dac.c
8628
8629 IIO ENVELOPE DETECTOR
8630 M:      Peter Rosin <peda@axentia.se>
8631 L:      linux-iio@vger.kernel.org
8632 S:      Maintained
8633 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8634 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8635 F:      drivers/iio/adc/envelope-detector.c
8636
8637 IIO MULTIPLEXER
8638 M:      Peter Rosin <peda@axentia.se>
8639 L:      linux-iio@vger.kernel.org
8640 S:      Maintained
8641 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8642 F:      drivers/iio/multiplexer/iio-mux.c
8643
8644 IIO SUBSYSTEM AND DRIVERS
8645 M:      Jonathan Cameron <jic23@kernel.org>
8646 R:      Lars-Peter Clausen <lars@metafoo.de>
8647 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
8648 L:      linux-iio@vger.kernel.org
8649 S:      Maintained
8650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8651 F:      Documentation/ABI/testing/configfs-iio*
8652 F:      Documentation/ABI/testing/sysfs-bus-iio*
8653 F:      Documentation/devicetree/bindings/iio/
8654 F:      drivers/iio/
8655 F:      drivers/staging/iio/
8656 F:      include/linux/iio/
8657 F:      tools/iio/
8658
8659 IIO UNIT CONVERTER
8660 M:      Peter Rosin <peda@axentia.se>
8661 L:      linux-iio@vger.kernel.org
8662 S:      Maintained
8663 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8664 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8665 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8666 F:      drivers/iio/afe/iio-rescale.c
8667
8668 IKANOS/ADI EAGLE ADSL USB DRIVER
8669 M:      Matthieu Castet <castet.matthieu@free.fr>
8670 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8671 S:      Maintained
8672 F:      drivers/usb/atm/ueagle-atm.c
8673
8674 IMGTEC ASCII LCD DRIVER
8675 M:      Paul Burton <paulburton@kernel.org>
8676 S:      Maintained
8677 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8678 F:      drivers/auxdisplay/img-ascii-lcd.c
8679
8680 IMGTEC IR DECODER DRIVER
8681 S:      Orphan
8682 F:      drivers/media/rc/img-ir/
8683
8684 IMON SOUNDGRAPH USB IR RECEIVER
8685 M:      Sean Young <sean@mess.org>
8686 L:      linux-media@vger.kernel.org
8687 S:      Maintained
8688 F:      drivers/media/rc/imon.c
8689 F:      drivers/media/rc/imon_raw.c
8690
8691 IMS TWINTURBO FRAMEBUFFER DRIVER
8692 L:      linux-fbdev@vger.kernel.org
8693 S:      Orphan
8694 F:      drivers/video/fbdev/imsttfb.c
8695
8696 INA209 HARDWARE MONITOR DRIVER
8697 M:      Guenter Roeck <linux@roeck-us.net>
8698 L:      linux-hwmon@vger.kernel.org
8699 S:      Maintained
8700 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
8701 F:      Documentation/hwmon/ina209.rst
8702 F:      drivers/hwmon/ina209.c
8703
8704 INA2XX HARDWARE MONITOR DRIVER
8705 M:      Guenter Roeck <linux@roeck-us.net>
8706 L:      linux-hwmon@vger.kernel.org
8707 S:      Maintained
8708 F:      Documentation/hwmon/ina2xx.rst
8709 F:      drivers/hwmon/ina2xx.c
8710 F:      include/linux/platform_data/ina2xx.h
8711
8712 INDUSTRY PACK SUBSYSTEM (IPACK)
8713 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8714 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8715 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8716 L:      industrypack-devel@lists.sourceforge.net
8717 S:      Maintained
8718 W:      http://industrypack.sourceforge.net
8719 F:      drivers/ipack/
8720
8721 INFINEON DPS310 Driver
8722 M:      Eddie James <eajames@linux.ibm.com>
8723 L:      linux-iio@vger.kernel.org
8724 S:      Maintained
8725 F:      drivers/iio/pressure/dps310.c
8726
8727 INFINIBAND SUBSYSTEM
8728 M:      Doug Ledford <dledford@redhat.com>
8729 M:      Jason Gunthorpe <jgg@nvidia.com>
8730 L:      linux-rdma@vger.kernel.org
8731 S:      Supported
8732 W:      https://github.com/linux-rdma/rdma-core
8733 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8735 F:      Documentation/devicetree/bindings/infiniband/
8736 F:      Documentation/infiniband/
8737 F:      drivers/infiniband/
8738 F:      include/rdma/
8739 F:      include/trace/events/ib_mad.h
8740 F:      include/trace/events/ib_umad.h
8741 F:      include/uapi/linux/if_infiniband.h
8742 F:      include/uapi/rdma/
8743 F:      samples/bpf/ibumad_kern.c
8744 F:      samples/bpf/ibumad_user.c
8745
8746 INGENIC JZ4780 DMA Driver
8747 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
8748 S:      Maintained
8749 F:      drivers/dma/dma-jz4780.c
8750
8751 INGENIC JZ4780 NAND DRIVER
8752 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8753 L:      linux-mtd@lists.infradead.org
8754 S:      Maintained
8755 F:      drivers/mtd/nand/raw/ingenic/
8756
8757 INGENIC JZ47xx SoCs
8758 M:      Paul Cercueil <paul@crapouillou.net>
8759 S:      Maintained
8760 F:      arch/mips/boot/dts/ingenic/
8761 F:      arch/mips/generic/board-ingenic.c
8762 F:      arch/mips/include/asm/mach-ingenic/
8763 F:      arch/mips/ingenic/Kconfig
8764 F:      drivers/clk/ingenic/
8765 F:      drivers/dma/dma-jz4780.c
8766 F:      drivers/gpu/drm/ingenic/
8767 F:      drivers/i2c/busses/i2c-jz4780.c
8768 F:      drivers/iio/adc/ingenic-adc.c
8769 F:      drivers/irqchip/irq-ingenic.c
8770 F:      drivers/memory/jz4780-nemc.c
8771 F:      drivers/mmc/host/jz4740_mmc.c
8772 F:      drivers/mtd/nand/raw/ingenic/
8773 F:      drivers/pinctrl/pinctrl-ingenic.c
8774 F:      drivers/power/supply/ingenic-battery.c
8775 F:      drivers/pwm/pwm-jz4740.c
8776 F:      drivers/remoteproc/ingenic_rproc.c
8777 F:      drivers/rtc/rtc-jz4740.c
8778 F:      drivers/tty/serial/8250/8250_ingenic.c
8779 F:      drivers/usb/musb/jz4740.c
8780 F:      drivers/watchdog/jz4740_wdt.c
8781 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8782 F:      include/linux/mfd/ingenic-tcu.h
8783 F:      sound/soc/codecs/jz47*
8784 F:      sound/soc/jz4740/
8785
8786 INOTIFY
8787 M:      Jan Kara <jack@suse.cz>
8788 R:      Amir Goldstein <amir73il@gmail.com>
8789 L:      linux-fsdevel@vger.kernel.org
8790 S:      Maintained
8791 F:      Documentation/filesystems/inotify.rst
8792 F:      fs/notify/inotify/
8793 F:      include/linux/inotify.h
8794 F:      include/uapi/linux/inotify.h
8795
8796 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8797 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8798 L:      linux-input@vger.kernel.org
8799 S:      Maintained
8800 Q:      http://patchwork.kernel.org/project/linux-input/list/
8801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8802 F:      Documentation/devicetree/bindings/input/
8803 F:      Documentation/devicetree/bindings/serio/
8804 F:      Documentation/input/
8805 F:      drivers/input/
8806 F:      include/linux/input.h
8807 F:      include/linux/input/
8808 F:      include/uapi/linux/input-event-codes.h
8809 F:      include/uapi/linux/input.h
8810
8811 INPUT MULTITOUCH (MT) PROTOCOL
8812 M:      Henrik Rydberg <rydberg@bitmath.org>
8813 L:      linux-input@vger.kernel.org
8814 S:      Odd fixes
8815 F:      Documentation/input/multi-touch-protocol.rst
8816 F:      drivers/input/input-mt.c
8817 K:      \b(ABS|SYN)_MT_
8818
8819 INSIDE SECURE CRYPTO DRIVER
8820 M:      Antoine Tenart <atenart@kernel.org>
8821 L:      linux-crypto@vger.kernel.org
8822 S:      Maintained
8823 F:      drivers/crypto/inside-secure/
8824
8825 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8826 M:      Mimi Zohar <zohar@linux.ibm.com>
8827 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8828 L:      linux-integrity@vger.kernel.org
8829 S:      Supported
8830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8831 F:      security/integrity/ima/
8832
8833 INTEL 810/815 FRAMEBUFFER DRIVER
8834 M:      Antonino Daplas <adaplas@gmail.com>
8835 L:      linux-fbdev@vger.kernel.org
8836 S:      Maintained
8837 F:      drivers/video/fbdev/i810/
8838
8839 INTEL ASoC DRIVERS
8840 M:      Cezary Rojewski <cezary.rojewski@intel.com>
8841 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8842 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
8843 M:      Jie Yang <yang.jie@linux.intel.com>
8844 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8845 S:      Supported
8846 F:      sound/soc/intel/
8847
8848 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8849 M:      Hans de Goede <hdegoede@redhat.com>
8850 L:      platform-driver-x86@vger.kernel.org
8851 S:      Maintained
8852 F:      drivers/platform/x86/intel_atomisp2_pm.c
8853
8854 INTEL ATOMISP2 LED DRIVER
8855 M:      Hans de Goede <hdegoede@redhat.com>
8856 L:      platform-driver-x86@vger.kernel.org
8857 S:      Maintained
8858 F:      drivers/platform/x86/intel_atomisp2_led.c
8859
8860 INTEL BROXTON PMC DRIVER
8861 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8862 M:      Zha Qipeng <qipeng.zha@intel.com>
8863 S:      Maintained
8864 F:      drivers/mfd/intel_pmc_bxt.c
8865 F:      include/linux/mfd/intel_pmc_bxt.h
8866
8867 INTEL C600 SERIES SAS CONTROLLER DRIVER
8868 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
8869 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8870 L:      linux-scsi@vger.kernel.org
8871 S:      Supported
8872 T:      git git://git.code.sf.net/p/intel-sas/isci
8873 F:      drivers/scsi/isci/
8874
8875 INTEL CPU family model numbers
8876 M:      Tony Luck <tony.luck@intel.com>
8877 M:      x86@kernel.org
8878 L:      linux-kernel@vger.kernel.org
8879 S:      Supported
8880 F:      arch/x86/include/asm/intel-family.h
8881
8882 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8883 M:      Jani Nikula <jani.nikula@linux.intel.com>
8884 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8885 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
8886 L:      intel-gfx@lists.freedesktop.org
8887 S:      Supported
8888 W:      https://01.org/linuxgraphics/
8889 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8890 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8891 C:      irc://chat.freenode.net/intel-gfx
8892 T:      git git://anongit.freedesktop.org/drm-intel
8893 F:      Documentation/gpu/i915.rst
8894 F:      drivers/gpu/drm/i915/
8895 F:      include/drm/i915*
8896 F:      include/uapi/drm/i915_drm.h
8897
8898 INTEL ETHERNET DRIVERS
8899 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
8900 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
8901 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8902 S:      Supported
8903 W:      http://www.intel.com/support/feedback.htm
8904 W:      http://e1000.sourceforge.net/
8905 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
8907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
8908 F:      Documentation/networking/device_drivers/ethernet/intel/
8909 F:      drivers/net/ethernet/intel/
8910 F:      drivers/net/ethernet/intel/*/
8911 F:      include/linux/avf/virtchnl.h
8912
8913 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8914 M:      Maik Broemme <mbroemme@libmpq.org>
8915 L:      linux-fbdev@vger.kernel.org
8916 S:      Maintained
8917 F:      Documentation/fb/intelfb.rst
8918 F:      drivers/video/fbdev/intelfb/
8919
8920 INTEL GPIO DRIVERS
8921 M:      Andy Shevchenko <andy@kernel.org>
8922 L:      linux-gpio@vger.kernel.org
8923 S:      Maintained
8924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8925 F:      drivers/gpio/gpio-ich.c
8926 F:      drivers/gpio/gpio-intel-mid.c
8927 F:      drivers/gpio/gpio-merrifield.c
8928 F:      drivers/gpio/gpio-ml-ioh.c
8929 F:      drivers/gpio/gpio-pch.c
8930 F:      drivers/gpio/gpio-sch.c
8931 F:      drivers/gpio/gpio-sodaville.c
8932
8933 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8934 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
8935 M:      Zhi Wang <zhi.a.wang@intel.com>
8936 L:      intel-gvt-dev@lists.freedesktop.org
8937 L:      intel-gfx@lists.freedesktop.org
8938 S:      Supported
8939 W:      https://01.org/igvt-g
8940 T:      git https://github.com/intel/gvt-linux.git
8941 F:      drivers/gpu/drm/i915/gvt/
8942
8943 INTEL HID EVENT DRIVER
8944 M:      Alex Hung <alex.hung@canonical.com>
8945 L:      platform-driver-x86@vger.kernel.org
8946 S:      Maintained
8947 F:      drivers/platform/x86/intel-hid.c
8948
8949 INTEL I/OAT DMA DRIVER
8950 M:      Dave Jiang <dave.jiang@intel.com>
8951 R:      Dan Williams <dan.j.williams@intel.com>
8952 L:      dmaengine@vger.kernel.org
8953 S:      Supported
8954 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8955 F:      drivers/dma/ioat*
8956
8957 INTEL IADX DRIVER
8958 M:      Dave Jiang <dave.jiang@intel.com>
8959 L:      dmaengine@vger.kernel.org
8960 S:      Supported
8961 F:      drivers/dma/idxd/*
8962 F:      include/uapi/linux/idxd.h
8963
8964 INTEL IDLE DRIVER
8965 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
8966 M:      Len Brown <lenb@kernel.org>
8967 L:      linux-pm@vger.kernel.org
8968 S:      Supported
8969 B:      https://bugzilla.kernel.org
8970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8971 F:      drivers/idle/intel_idle.c
8972
8973 INTEL INTEGRATED SENSOR HUB DRIVER
8974 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8975 M:      Jiri Kosina <jikos@kernel.org>
8976 L:      linux-input@vger.kernel.org
8977 S:      Maintained
8978 F:      drivers/hid/intel-ish-hid/
8979
8980 INTEL IOMMU (VT-d)
8981 M:      David Woodhouse <dwmw2@infradead.org>
8982 M:      Lu Baolu <baolu.lu@linux.intel.com>
8983 L:      iommu@lists.linux-foundation.org
8984 S:      Supported
8985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8986 F:      drivers/iommu/intel/
8987 F:      include/linux/intel-iommu.h
8988 F:      include/linux/intel-svm.h
8989
8990 INTEL IOP-ADMA DMA DRIVER
8991 R:      Dan Williams <dan.j.williams@intel.com>
8992 S:      Odd fixes
8993 F:      drivers/dma/iop-adma.c
8994
8995 INTEL IPU3 CSI-2 CIO2 DRIVER
8996 M:      Yong Zhi <yong.zhi@intel.com>
8997 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8998 M:      Bingbu Cao <bingbu.cao@intel.com>
8999 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9000 L:      linux-media@vger.kernel.org
9001 S:      Maintained
9002 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9003 F:      drivers/media/pci/intel/ipu3/
9004
9005 INTEL IPU3 CSI-2 IMGU DRIVER
9006 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9007 R:      Bingbu Cao <bingbu.cao@intel.com>
9008 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9009 L:      linux-media@vger.kernel.org
9010 S:      Maintained
9011 F:      Documentation/admin-guide/media/ipu3.rst
9012 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9013 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9014 F:      drivers/staging/media/ipu3/
9015
9016 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9017 M:      Krzysztof Halasa <khalasa@piap.pl>
9018 S:      Maintained
9019 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9020 F:      drivers/net/wan/ixp4xx_hss.c
9021 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9022 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9023 F:      include/linux/soc/ixp4xx/npe.h
9024 F:      include/linux/soc/ixp4xx/qmgr.h
9025
9026 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9027 M:      Deepak Saxena <dsaxena@plexity.net>
9028 S:      Maintained
9029 F:      drivers/char/hw_random/ixp4xx-rng.c
9030
9031 INTEL KEEM BAY DRM DRIVER
9032 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9033 M:      Edmund Dea <edmund.j.dea@intel.com>
9034 S:      Maintained
9035 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9036 F:      drivers/gpu/drm/kmb/
9037
9038 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9039 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9040 S:      Maintained
9041 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9042 F:      drivers/crypto/keembay/Kconfig
9043 F:      drivers/crypto/keembay/Makefile
9044 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9045 F:      drivers/crypto/keembay/ocs-aes.c
9046 F:      drivers/crypto/keembay/ocs-aes.h
9047
9048 INTEL MANAGEMENT ENGINE (mei)
9049 M:      Tomas Winkler <tomas.winkler@intel.com>
9050 L:      linux-kernel@vger.kernel.org
9051 S:      Supported
9052 F:      Documentation/driver-api/mei/*
9053 F:      drivers/misc/mei/
9054 F:      drivers/watchdog/mei_wdt.c
9055 F:      include/linux/mei_cl_bus.h
9056 F:      include/uapi/linux/mei.h
9057 F:      samples/mei/*
9058
9059 INTEL MENLOW THERMAL DRIVER
9060 M:      Sujith Thomas <sujith.thomas@intel.com>
9061 L:      platform-driver-x86@vger.kernel.org
9062 S:      Supported
9063 W:      https://01.org/linux-acpi
9064 F:      drivers/platform/x86/intel_menlow.c
9065
9066 INTEL P-Unit IPC DRIVER
9067 M:      Zha Qipeng <qipeng.zha@intel.com>
9068 L:      platform-driver-x86@vger.kernel.org
9069 S:      Maintained
9070 F:      arch/x86/include/asm/intel_punit_ipc.h
9071 F:      drivers/platform/x86/intel_punit_ipc.c
9072
9073 INTEL PMC CORE DRIVER
9074 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9075 M:      David E Box <david.e.box@intel.com>
9076 L:      platform-driver-x86@vger.kernel.org
9077 S:      Maintained
9078 F:      drivers/platform/x86/intel_pmc_core*
9079
9080 INTEL PMIC GPIO DRIVERS
9081 M:      Andy Shevchenko <andy@kernel.org>
9082 S:      Maintained
9083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9084 F:      drivers/gpio/gpio-*cove.c
9085 F:      drivers/gpio/gpio-msic.c
9086
9087 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9088 M:      Andy Shevchenko <andy@kernel.org>
9089 S:      Maintained
9090 F:      drivers/mfd/intel_msic.c
9091 F:      drivers/mfd/intel_soc_pmic*
9092 F:      include/linux/mfd/intel_msic.h
9093 F:      include/linux/mfd/intel_soc_pmic*
9094
9095 INTEL PMT DRIVER
9096 M:      "David E. Box" <david.e.box@linux.intel.com>
9097 S:      Maintained
9098 F:      drivers/mfd/intel_pmt.c
9099 F:      drivers/platform/x86/intel_pmt_*
9100
9101 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9102 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9103 L:      linux-wireless@vger.kernel.org
9104 S:      Maintained
9105 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9106 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9107 F:      drivers/net/wireless/intel/ipw2x00/
9108
9109 INTEL PSTATE DRIVER
9110 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9111 M:      Len Brown <lenb@kernel.org>
9112 L:      linux-pm@vger.kernel.org
9113 S:      Supported
9114 F:      drivers/cpufreq/intel_pstate.c
9115
9116 INTEL RDMA RNIC DRIVER
9117 M:      Faisal Latif <faisal.latif@intel.com>
9118 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9119 L:      linux-rdma@vger.kernel.org
9120 S:      Supported
9121 F:      drivers/infiniband/hw/i40iw/
9122 F:      include/uapi/rdma/i40iw-abi.h
9123
9124 INTEL SCU DRIVERS
9125 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9126 S:      Maintained
9127 F:      arch/x86/include/asm/intel_scu_ipc.h
9128 F:      drivers/platform/x86/intel_scu_*
9129
9130 INTEL SPEED SELECT TECHNOLOGY
9131 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9132 L:      platform-driver-x86@vger.kernel.org
9133 S:      Maintained
9134 F:      drivers/platform/x86/intel_speed_select_if/
9135 F:      include/uapi/linux/isst_if.h
9136 F:      tools/power/x86/intel-speed-select/
9137
9138 INTEL STRATIX10 FIRMWARE DRIVERS
9139 M:      Richard Gong <richard.gong@linux.intel.com>
9140 L:      linux-kernel@vger.kernel.org
9141 S:      Maintained
9142 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9143 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9144 F:      drivers/firmware/stratix10-rsu.c
9145 F:      drivers/firmware/stratix10-svc.c
9146 F:      include/linux/firmware/intel/stratix10-smc.h
9147 F:      include/linux/firmware/intel/stratix10-svc-client.h
9148
9149 INTEL TELEMETRY DRIVER
9150 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
9151 M:      "David E. Box" <david.e.box@linux.intel.com>
9152 L:      platform-driver-x86@vger.kernel.org
9153 S:      Maintained
9154 F:      arch/x86/include/asm/intel_telemetry.h
9155 F:      drivers/platform/x86/intel_telemetry*
9156
9157 INTEL UNCORE FREQUENCY CONTROL
9158 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9159 L:      platform-driver-x86@vger.kernel.org
9160 S:      Maintained
9161 F:      drivers/platform/x86/intel-uncore-frequency.c
9162
9163 INTEL VIRTUAL BUTTON DRIVER
9164 M:      AceLan Kao <acelan.kao@canonical.com>
9165 L:      platform-driver-x86@vger.kernel.org
9166 S:      Maintained
9167 F:      drivers/platform/x86/intel-vbtn.c
9168
9169 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9170 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9171 L:      linux-wireless@vger.kernel.org
9172 S:      Supported
9173 F:      drivers/net/wireless/intel/iwlegacy/
9174
9175 INTEL WIRELESS WIFI LINK (iwlwifi)
9176 M:      Luca Coelho <luciano.coelho@intel.com>
9177 L:      linux-wireless@vger.kernel.org
9178 S:      Supported
9179 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9181 F:      drivers/net/wireless/intel/iwlwifi/
9182
9183 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9184 M:      Jithu Joseph <jithu.joseph@intel.com>
9185 R:      Maurice Ma <maurice.ma@intel.com>
9186 S:      Maintained
9187 W:      https://slimbootloader.github.io/security/firmware-update.html
9188 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
9189
9190 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9191 M:      Mario Limonciello <mario.limonciello@dell.com>
9192 S:      Maintained
9193 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
9194
9195 INTEL(R) TRACE HUB
9196 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9197 S:      Supported
9198 F:      Documentation/trace/intel_th.rst
9199 F:      drivers/hwtracing/intel_th/
9200 F:      include/linux/intel_th.h
9201
9202 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9203 M:      Ning Sun <ning.sun@intel.com>
9204 L:      tboot-devel@lists.sourceforge.net
9205 S:      Supported
9206 W:      http://tboot.sourceforge.net
9207 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9208 F:      Documentation/x86/intel_txt.rst
9209 F:      arch/x86/kernel/tboot.c
9210 F:      include/linux/tboot.h
9211
9212 INTEL SGX
9213 M:      Jarkko Sakkinen <jarkko@kernel.org>
9214 L:      linux-sgx@vger.kernel.org
9215 S:      Supported
9216 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-sgx.git
9218 F:      Documentation/x86/sgx.rst
9219 F:      arch/x86/entry/vdso/vsgx.S
9220 F:      arch/x86/include/uapi/asm/sgx.h
9221 F:      arch/x86/kernel/cpu/sgx/*
9222 F:      tools/testing/selftests/sgx/*
9223 K:      \bSGX_
9224
9225 INTERCONNECT API
9226 M:      Georgi Djakov <georgi.djakov@linaro.org>
9227 L:      linux-pm@vger.kernel.org
9228 S:      Maintained
9229 F:      Documentation/devicetree/bindings/interconnect/
9230 F:      Documentation/driver-api/interconnect.rst
9231 F:      drivers/interconnect/
9232 F:      include/dt-bindings/interconnect/
9233 F:      include/linux/interconnect-provider.h
9234 F:      include/linux/interconnect.h
9235
9236 INVENSENSE ICM-426xx IMU DRIVER
9237 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9238 L:      linux-iio@vger.kernel.org
9239 S:      Maintained
9240 W:      https://invensense.tdk.com/
9241 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9242 F:      drivers/iio/imu/inv_icm42600/
9243
9244 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9245 M:      Linus Walleij <linus.walleij@linaro.org>
9246 L:      linux-iio@vger.kernel.org
9247 S:      Maintained
9248 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
9249 F:      drivers/iio/gyro/mpu3050*
9250
9251 IOC3 ETHERNET DRIVER
9252 M:      Ralf Baechle <ralf@linux-mips.org>
9253 L:      linux-mips@vger.kernel.org
9254 S:      Maintained
9255 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9256
9257 IOMAP FILESYSTEM LIBRARY
9258 M:      Christoph Hellwig <hch@infradead.org>
9259 M:      Darrick J. Wong <darrick.wong@oracle.com>
9260 M:      linux-xfs@vger.kernel.org
9261 M:      linux-fsdevel@vger.kernel.org
9262 L:      linux-xfs@vger.kernel.org
9263 L:      linux-fsdevel@vger.kernel.org
9264 S:      Supported
9265 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9266 F:      fs/iomap/
9267 F:      include/linux/iomap.h
9268
9269 IOMMU DRIVERS
9270 M:      Joerg Roedel <joro@8bytes.org>
9271 M:      Will Deacon <will@kernel.org>
9272 L:      iommu@lists.linux-foundation.org
9273 S:      Maintained
9274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9275 F:      Documentation/devicetree/bindings/iommu/
9276 F:      Documentation/userspace-api/iommu.rst
9277 F:      drivers/iommu/
9278 F:      include/linux/iommu.h
9279 F:      include/linux/iova.h
9280 F:      include/linux/of_iommu.h
9281 F:      include/uapi/linux/iommu.h
9282
9283 IO_URING
9284 M:      Jens Axboe <axboe@kernel.dk>
9285 L:      io-uring@vger.kernel.org
9286 S:      Maintained
9287 T:      git git://git.kernel.dk/linux-block
9288 T:      git git://git.kernel.dk/liburing
9289 F:      fs/io-wq.c
9290 F:      fs/io-wq.h
9291 F:      fs/io_uring.c
9292 F:      include/uapi/linux/io_uring.h
9293
9294 IPMI SUBSYSTEM
9295 M:      Corey Minyard <minyard@acm.org>
9296 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9297 S:      Supported
9298 W:      http://openipmi.sourceforge.net/
9299 F:      Documentation/driver-api/ipmi.rst
9300 F:      Documentation/devicetree/bindings/ipmi/
9301 F:      drivers/char/ipmi/
9302 F:      include/linux/ipmi*
9303 F:      include/uapi/linux/ipmi*
9304
9305 IPS SCSI RAID DRIVER
9306 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9307 L:      linux-scsi@vger.kernel.org
9308 S:      Maintained
9309 W:      http://www.adaptec.com/
9310 F:      drivers/scsi/ips*
9311
9312 IPVS
9313 M:      Wensong Zhang <wensong@linux-vs.org>
9314 M:      Simon Horman <horms@verge.net.au>
9315 M:      Julian Anastasov <ja@ssi.bg>
9316 L:      netdev@vger.kernel.org
9317 L:      lvs-devel@vger.kernel.org
9318 S:      Maintained
9319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9321 F:      Documentation/networking/ipvs-sysctl.rst
9322 F:      include/net/ip_vs.h
9323 F:      include/uapi/linux/ip_vs.h
9324 F:      net/netfilter/ipvs/
9325
9326 IPWIRELESS DRIVER
9327 M:      Jiri Kosina <jikos@kernel.org>
9328 M:      David Sterba <dsterba@suse.com>
9329 S:      Odd Fixes
9330 F:      drivers/tty/ipwireless/
9331
9332 IPX NETWORK LAYER
9333 L:      netdev@vger.kernel.org
9334 S:      Obsolete
9335 F:      include/uapi/linux/ipx.h
9336
9337 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9338 M:      Marc Zyngier <maz@kernel.org>
9339 S:      Maintained
9340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9341 F:      Documentation/core-api/irq/irq-domain.rst
9342 F:      include/linux/irqdomain.h
9343 F:      kernel/irq/irqdomain.c
9344 F:      kernel/irq/msi.c
9345
9346 IRQ SUBSYSTEM
9347 M:      Thomas Gleixner <tglx@linutronix.de>
9348 L:      linux-kernel@vger.kernel.org
9349 S:      Maintained
9350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9351 F:      kernel/irq/
9352
9353 IRQCHIP DRIVERS
9354 M:      Thomas Gleixner <tglx@linutronix.de>
9355 M:      Marc Zyngier <maz@kernel.org>
9356 L:      linux-kernel@vger.kernel.org
9357 S:      Maintained
9358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9359 F:      Documentation/devicetree/bindings/interrupt-controller/
9360 F:      drivers/irqchip/
9361
9362 ISA
9363 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9364 S:      Maintained
9365 F:      Documentation/driver-api/isa.rst
9366 F:      drivers/base/isa.c
9367 F:      include/linux/isa.h
9368
9369 ISA RADIO MODULE
9370 M:      Hans Verkuil <hverkuil@xs4all.nl>
9371 L:      linux-media@vger.kernel.org
9372 S:      Maintained
9373 W:      https://linuxtv.org
9374 T:      git git://linuxtv.org/media_tree.git
9375 F:      drivers/media/radio/radio-isa*
9376
9377 ISAPNP
9378 M:      Jaroslav Kysela <perex@perex.cz>
9379 S:      Maintained
9380 F:      Documentation/driver-api/isapnp.rst
9381 F:      drivers/pnp/isapnp/
9382 F:      include/linux/isapnp.h
9383
9384 ISCSI
9385 M:      Lee Duncan <lduncan@suse.com>
9386 M:      Chris Leech <cleech@redhat.com>
9387 L:      open-iscsi@googlegroups.com
9388 L:      linux-scsi@vger.kernel.org
9389 S:      Maintained
9390 W:      www.open-iscsi.com
9391 F:      drivers/scsi/*iscsi*
9392 F:      include/scsi/*iscsi*
9393
9394 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9395 M:      Peter Jones <pjones@redhat.com>
9396 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9397 S:      Maintained
9398 F:      drivers/firmware/iscsi_ibft*
9399
9400 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9401 M:      Sagi Grimberg <sagi@grimberg.me>
9402 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
9403 L:      linux-rdma@vger.kernel.org
9404 S:      Supported
9405 W:      http://www.openfabrics.org
9406 W:      www.open-iscsi.org
9407 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9408 F:      drivers/infiniband/ulp/iser/
9409
9410 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9411 M:      Sagi Grimberg <sagi@grimberg.me>
9412 L:      linux-rdma@vger.kernel.org
9413 L:      target-devel@vger.kernel.org
9414 S:      Supported
9415 W:      http://www.linux-iscsi.org
9416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9417 F:      drivers/infiniband/ulp/isert
9418
9419 ISDN/CMTP OVER BLUETOOTH
9420 M:      Karsten Keil <isdn@linux-pingi.de>
9421 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9422 L:      netdev@vger.kernel.org
9423 S:      Odd Fixes
9424 W:      http://www.isdn4linux.de
9425 F:      Documentation/isdn/
9426 F:      drivers/isdn/capi/
9427 F:      include/linux/isdn/
9428 F:      include/uapi/linux/isdn/
9429 F:      net/bluetooth/cmtp/
9430
9431 ISDN/mISDN SUBSYSTEM
9432 M:      Karsten Keil <isdn@linux-pingi.de>
9433 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9434 L:      netdev@vger.kernel.org
9435 S:      Maintained
9436 W:      http://www.isdn4linux.de
9437 F:      drivers/isdn/Kconfig
9438 F:      drivers/isdn/Makefile
9439 F:      drivers/isdn/hardware/
9440 F:      drivers/isdn/mISDN/
9441
9442 IT87 HARDWARE MONITORING DRIVER
9443 M:      Jean Delvare <jdelvare@suse.com>
9444 L:      linux-hwmon@vger.kernel.org
9445 S:      Maintained
9446 F:      Documentation/hwmon/it87.rst
9447 F:      drivers/hwmon/it87.c
9448
9449 IT913X MEDIA DRIVER
9450 M:      Antti Palosaari <crope@iki.fi>
9451 L:      linux-media@vger.kernel.org
9452 S:      Maintained
9453 W:      https://linuxtv.org
9454 W:      http://palosaari.fi/linux/
9455 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9456 T:      git git://linuxtv.org/anttip/media_tree.git
9457 F:      drivers/media/tuners/it913x*
9458
9459 IVTV VIDEO4LINUX DRIVER
9460 M:      Andy Walls <awalls@md.metrocast.net>
9461 L:      linux-media@vger.kernel.org
9462 S:      Maintained
9463 W:      https://linuxtv.org
9464 T:      git git://linuxtv.org/media_tree.git
9465 F:      Documentation/admin-guide/media/ivtv*
9466 F:      drivers/media/pci/ivtv/
9467 F:      include/uapi/linux/ivtv*
9468
9469 IX2505V MEDIA DRIVER
9470 M:      Malcolm Priestley <tvboxspy@gmail.com>
9471 L:      linux-media@vger.kernel.org
9472 S:      Maintained
9473 W:      https://linuxtv.org
9474 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9475 F:      drivers/media/dvb-frontends/ix2505v*
9476
9477 JAILHOUSE HYPERVISOR INTERFACE
9478 M:      Jan Kiszka <jan.kiszka@siemens.com>
9479 L:      jailhouse-dev@googlegroups.com
9480 S:      Maintained
9481 F:      arch/x86/include/asm/jailhouse_para.h
9482 F:      arch/x86/kernel/jailhouse.c
9483
9484 JC42.4 TEMPERATURE SENSOR DRIVER
9485 M:      Guenter Roeck <linux@roeck-us.net>
9486 L:      linux-hwmon@vger.kernel.org
9487 S:      Maintained
9488 F:      Documentation/hwmon/jc42.rst
9489 F:      drivers/hwmon/jc42.c
9490
9491 JFS FILESYSTEM
9492 M:      Dave Kleikamp <shaggy@kernel.org>
9493 L:      jfs-discussion@lists.sourceforge.net
9494 S:      Maintained
9495 W:      http://jfs.sourceforge.net/
9496 T:      git git://github.com/kleikamp/linux-shaggy.git
9497 F:      Documentation/admin-guide/jfs.rst
9498 F:      fs/jfs/
9499
9500 JME NETWORK DRIVER
9501 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9502 L:      netdev@vger.kernel.org
9503 S:      Maintained
9504 F:      drivers/net/ethernet/jme.*
9505
9506 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9507 M:      David Woodhouse <dwmw2@infradead.org>
9508 M:      Richard Weinberger <richard@nod.at>
9509 L:      linux-mtd@lists.infradead.org
9510 S:      Odd Fixes
9511 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9512 T:      git git://git.infradead.org/ubifs-2.6.git
9513 F:      fs/jffs2/
9514 F:      include/uapi/linux/jffs2.h
9515
9516 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9517 M:      "Theodore Ts'o" <tytso@mit.edu>
9518 M:      Jan Kara <jack@suse.com>
9519 L:      linux-ext4@vger.kernel.org
9520 S:      Maintained
9521 F:      fs/jbd2/
9522 F:      include/linux/jbd2.h
9523
9524 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9525 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9526 L:      linux-media@vger.kernel.org
9527 S:      Maintained
9528 F:      drivers/media/platform/rcar_jpu.c
9529
9530 JSM Neo PCI based serial card
9531 L:      linux-serial@vger.kernel.org
9532 S:      Orphan
9533 F:      drivers/tty/serial/jsm/
9534
9535 K10TEMP HARDWARE MONITORING DRIVER
9536 M:      Clemens Ladisch <clemens@ladisch.de>
9537 L:      linux-hwmon@vger.kernel.org
9538 S:      Maintained
9539 F:      Documentation/hwmon/k10temp.rst
9540 F:      drivers/hwmon/k10temp.c
9541
9542 K8TEMP HARDWARE MONITORING DRIVER
9543 M:      Rudolf Marek <r.marek@assembler.cz>
9544 L:      linux-hwmon@vger.kernel.org
9545 S:      Maintained
9546 F:      Documentation/hwmon/k8temp.rst
9547 F:      drivers/hwmon/k8temp.c
9548
9549 KASAN
9550 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
9551 R:      Alexander Potapenko <glider@google.com>
9552 R:      Dmitry Vyukov <dvyukov@google.com>
9553 L:      kasan-dev@googlegroups.com
9554 S:      Maintained
9555 F:      Documentation/dev-tools/kasan.rst
9556 F:      arch/*/include/asm/kasan.h
9557 F:      arch/*/mm/kasan_init*
9558 F:      include/linux/kasan*.h
9559 F:      lib/test_kasan.c
9560 F:      mm/kasan/
9561 F:      scripts/Makefile.kasan
9562
9563 KCONFIG
9564 M:      Masahiro Yamada <masahiroy@kernel.org>
9565 L:      linux-kbuild@vger.kernel.org
9566 S:      Maintained
9567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9568 F:      Documentation/kbuild/kconfig*
9569 F:      scripts/Kconfig.include
9570 F:      scripts/kconfig/
9571
9572 KCOV
9573 R:      Dmitry Vyukov <dvyukov@google.com>
9574 R:      Andrey Konovalov <andreyknvl@google.com>
9575 L:      kasan-dev@googlegroups.com
9576 S:      Maintained
9577 F:      Documentation/dev-tools/kcov.rst
9578 F:      include/linux/kcov.h
9579 F:      include/uapi/linux/kcov.h
9580 F:      kernel/kcov.c
9581 F:      scripts/Makefile.kcov
9582
9583 KCSAN
9584 M:      Marco Elver <elver@google.com>
9585 R:      Dmitry Vyukov <dvyukov@google.com>
9586 L:      kasan-dev@googlegroups.com
9587 S:      Maintained
9588 F:      Documentation/dev-tools/kcsan.rst
9589 F:      include/linux/kcsan*.h
9590 F:      kernel/kcsan/
9591 F:      lib/Kconfig.kcsan
9592 F:      scripts/Makefile.kcsan
9593
9594 KDUMP
9595 M:      Dave Young <dyoung@redhat.com>
9596 M:      Baoquan He <bhe@redhat.com>
9597 R:      Vivek Goyal <vgoyal@redhat.com>
9598 L:      kexec@lists.infradead.org
9599 S:      Maintained
9600 W:      http://lse.sourceforge.net/kdump/
9601 F:      Documentation/admin-guide/kdump/
9602 F:      fs/proc/vmcore.c
9603 F:      include/linux/crash_core.h
9604 F:      include/linux/crash_dump.h
9605 F:      include/uapi/linux/vmcore.h
9606 F:      kernel/crash_*.c
9607
9608 KEENE FM RADIO TRANSMITTER DRIVER
9609 M:      Hans Verkuil <hverkuil@xs4all.nl>
9610 L:      linux-media@vger.kernel.org
9611 S:      Maintained
9612 W:      https://linuxtv.org
9613 T:      git git://linuxtv.org/media_tree.git
9614 F:      drivers/media/radio/radio-keene*
9615
9616 KERNEL AUTOMOUNTER
9617 M:      Ian Kent <raven@themaw.net>
9618 L:      autofs@vger.kernel.org
9619 S:      Maintained
9620 F:      fs/autofs/
9621
9622 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9623 M:      Masahiro Yamada <masahiroy@kernel.org>
9624 M:      Michal Marek <michal.lkml@markovi.net>
9625 L:      linux-kbuild@vger.kernel.org
9626 S:      Maintained
9627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9628 F:      Documentation/kbuild/
9629 F:      Makefile
9630 F:      scripts/*vmlinux*
9631 F:      scripts/Kbuild*
9632 F:      scripts/Makefile*
9633 F:      scripts/basic/
9634 F:      scripts/mk*
9635 F:      scripts/mod/
9636 F:      scripts/package/
9637
9638 KERNEL JANITORS
9639 L:      kernel-janitors@vger.kernel.org
9640 S:      Odd Fixes
9641 W:      http://kernelnewbies.org/KernelJanitors
9642
9643 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9644 M:      "J. Bruce Fields" <bfields@fieldses.org>
9645 M:      Chuck Lever <chuck.lever@oracle.com>
9646 L:      linux-nfs@vger.kernel.org
9647 S:      Supported
9648 W:      http://nfs.sourceforge.net/
9649 T:      git git://linux-nfs.org/~bfields/linux.git
9650 F:      fs/lockd/
9651 F:      fs/nfs_common/
9652 F:      fs/nfsd/
9653 F:      include/linux/lockd/
9654 F:      include/linux/sunrpc/
9655 F:      include/uapi/linux/nfsd/
9656 F:      include/uapi/linux/sunrpc/
9657 F:      net/sunrpc/
9658 F:      Documentation/filesystems/nfs/
9659
9660 KERNEL SELFTEST FRAMEWORK
9661 M:      Shuah Khan <shuah@kernel.org>
9662 M:      Shuah Khan <skhan@linuxfoundation.org>
9663 L:      linux-kselftest@vger.kernel.org
9664 S:      Maintained
9665 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9667 F:      Documentation/dev-tools/kselftest*
9668 F:      tools/testing/selftests/
9669
9670 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9671 M:      Brendan Higgins <brendanhiggins@google.com>
9672 L:      linux-kselftest@vger.kernel.org
9673 L:      kunit-dev@googlegroups.com
9674 S:      Maintained
9675 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9676 F:      Documentation/dev-tools/kunit/
9677 F:      include/kunit/
9678 F:      lib/kunit/
9679 F:      tools/testing/kunit/
9680
9681 KERNEL USERMODE HELPER
9682 M:      Luis Chamberlain <mcgrof@kernel.org>
9683 L:      linux-kernel@vger.kernel.org
9684 S:      Maintained
9685 F:      include/linux/umh.h
9686 F:      kernel/umh.c
9687
9688 KERNEL VIRTUAL MACHINE (KVM)
9689 M:      Paolo Bonzini <pbonzini@redhat.com>
9690 L:      kvm@vger.kernel.org
9691 S:      Supported
9692 W:      http://www.linux-kvm.org
9693 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9694 F:      Documentation/virt/kvm/
9695 F:      include/asm-generic/kvm*
9696 F:      include/kvm/iodev.h
9697 F:      include/linux/kvm*
9698 F:      include/trace/events/kvm.h
9699 F:      include/uapi/asm-generic/kvm*
9700 F:      include/uapi/linux/kvm*
9701 F:      tools/kvm/
9702 F:      tools/testing/selftests/kvm/
9703 F:      virt/kvm/*
9704
9705 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9706 M:      Marc Zyngier <maz@kernel.org>
9707 R:      James Morse <james.morse@arm.com>
9708 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
9709 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
9710 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9711 L:      kvmarm@lists.cs.columbia.edu
9712 S:      Maintained
9713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9714 F:      arch/arm64/include/asm/kvm*
9715 F:      arch/arm64/include/uapi/asm/kvm*
9716 F:      arch/arm64/kvm/
9717 F:      include/kvm/arm_*
9718
9719 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9720 M:      Huacai Chen <chenhc@lemote.com>
9721 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
9722 L:      linux-mips@vger.kernel.org
9723 L:      kvm@vger.kernel.org
9724 S:      Maintained
9725 F:      arch/mips/include/asm/kvm*
9726 F:      arch/mips/include/uapi/asm/kvm*
9727 F:      arch/mips/kvm/
9728
9729 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9730 M:      Paul Mackerras <paulus@ozlabs.org>
9731 L:      kvm-ppc@vger.kernel.org
9732 S:      Supported
9733 W:      http://www.linux-kvm.org/
9734 T:      git git://github.com/agraf/linux-2.6.git
9735 F:      arch/powerpc/include/asm/kvm*
9736 F:      arch/powerpc/include/uapi/asm/kvm*
9737 F:      arch/powerpc/kernel/kvm*
9738 F:      arch/powerpc/kvm/
9739
9740 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9741 M:      Christian Borntraeger <borntraeger@de.ibm.com>
9742 M:      Janosch Frank <frankja@linux.ibm.com>
9743 R:      David Hildenbrand <david@redhat.com>
9744 R:      Cornelia Huck <cohuck@redhat.com>
9745 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
9746 L:      kvm@vger.kernel.org
9747 S:      Supported
9748 W:      http://www.ibm.com/developerworks/linux/linux390/
9749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9750 F:      Documentation/virt/kvm/s390*
9751 F:      arch/s390/include/asm/gmap.h
9752 F:      arch/s390/include/asm/kvm*
9753 F:      arch/s390/include/uapi/asm/kvm*
9754 F:      arch/s390/kernel/uv.c
9755 F:      arch/s390/kvm/
9756 F:      arch/s390/mm/gmap.c
9757 F:      tools/testing/selftests/kvm/*/s390x/
9758 F:      tools/testing/selftests/kvm/s390x/
9759
9760 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9761 M:      Paolo Bonzini <pbonzini@redhat.com>
9762 R:      Sean Christopherson <sean.j.christopherson@intel.com>
9763 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
9764 R:      Wanpeng Li <wanpengli@tencent.com>
9765 R:      Jim Mattson <jmattson@google.com>
9766 R:      Joerg Roedel <joro@8bytes.org>
9767 L:      kvm@vger.kernel.org
9768 S:      Supported
9769 W:      http://www.linux-kvm.org
9770 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9771 F:      arch/x86/include/asm/kvm*
9772 F:      arch/x86/include/asm/pvclock-abi.h
9773 F:      arch/x86/include/asm/svm.h
9774 F:      arch/x86/include/asm/vmx*.h
9775 F:      arch/x86/include/uapi/asm/kvm*
9776 F:      arch/x86/include/uapi/asm/svm.h
9777 F:      arch/x86/include/uapi/asm/vmx.h
9778 F:      arch/x86/kernel/kvm.c
9779 F:      arch/x86/kernel/kvmclock.c
9780 F:      arch/x86/kvm/
9781 F:      arch/x86/kvm/*/
9782
9783 KERNFS
9784 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9785 M:      Tejun Heo <tj@kernel.org>
9786 S:      Supported
9787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9788 F:      fs/kernfs/
9789 F:      include/linux/kernfs.h
9790
9791 KEXEC
9792 M:      Eric Biederman <ebiederm@xmission.com>
9793 L:      kexec@lists.infradead.org
9794 S:      Maintained
9795 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9796 F:      include/linux/kexec.h
9797 F:      include/uapi/linux/kexec.h
9798 F:      kernel/kexec*
9799
9800 KEYS-ENCRYPTED
9801 M:      Mimi Zohar <zohar@linux.ibm.com>
9802 L:      linux-integrity@vger.kernel.org
9803 L:      keyrings@vger.kernel.org
9804 S:      Supported
9805 F:      Documentation/security/keys/trusted-encrypted.rst
9806 F:      include/keys/encrypted-type.h
9807 F:      security/keys/encrypted-keys/
9808
9809 KEYS-TRUSTED
9810 M:      James Bottomley <jejb@linux.ibm.com>
9811 M:      Jarkko Sakkinen <jarkko@kernel.org>
9812 M:      Mimi Zohar <zohar@linux.ibm.com>
9813 L:      linux-integrity@vger.kernel.org
9814 L:      keyrings@vger.kernel.org
9815 S:      Supported
9816 F:      Documentation/security/keys/trusted-encrypted.rst
9817 F:      include/keys/trusted-type.h
9818 F:      include/keys/trusted_tpm.h
9819 F:      security/keys/trusted-keys/
9820
9821 KEYS/KEYRINGS
9822 M:      David Howells <dhowells@redhat.com>
9823 M:      Jarkko Sakkinen <jarkko@kernel.org>
9824 L:      keyrings@vger.kernel.org
9825 S:      Maintained
9826 F:      Documentation/security/keys/core.rst
9827 F:      include/keys/
9828 F:      include/linux/key-type.h
9829 F:      include/linux/key.h
9830 F:      include/linux/keyctl.h
9831 F:      include/uapi/linux/keyctl.h
9832 F:      security/keys/
9833
9834 KFIFO
9835 M:      Stefani Seibold <stefani@seibold.net>
9836 S:      Maintained
9837 F:      include/linux/kfifo.h
9838 F:      lib/kfifo.c
9839 F:      samples/kfifo/
9840
9841 KGDB / KDB /debug_core
9842 M:      Jason Wessel <jason.wessel@windriver.com>
9843 M:      Daniel Thompson <daniel.thompson@linaro.org>
9844 R:      Douglas Anderson <dianders@chromium.org>
9845 L:      kgdb-bugreport@lists.sourceforge.net
9846 S:      Maintained
9847 W:      http://kgdb.wiki.kernel.org/
9848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9849 F:      Documentation/dev-tools/kgdb.rst
9850 F:      drivers/misc/kgdbts.c
9851 F:      drivers/tty/serial/kgdboc.c
9852 F:      include/linux/kdb.h
9853 F:      include/linux/kgdb.h
9854 F:      kernel/debug/
9855
9856 KHADAS MCU MFD DRIVER
9857 M:      Neil Armstrong <narmstrong@baylibre.com>
9858 L:      linux-amlogic@lists.infradead.org
9859 S:      Maintained
9860 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
9861 F:      drivers/mfd/khadas-mcu.c
9862 F:      include/linux/mfd/khadas-mcu.h
9863 F:      drivers/thermal/khadas_mcu_fan.c
9864
9865 KMEMLEAK
9866 M:      Catalin Marinas <catalin.marinas@arm.com>
9867 S:      Maintained
9868 F:      Documentation/dev-tools/kmemleak.rst
9869 F:      include/linux/kmemleak.h
9870 F:      mm/kmemleak.c
9871 F:      samples/kmemleak/kmemleak-test.c
9872
9873 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9874 M:      Luis Chamberlain <mcgrof@kernel.org>
9875 L:      linux-kernel@vger.kernel.org
9876 S:      Maintained
9877 F:      include/linux/kmod.h
9878 F:      kernel/kmod.c
9879 F:      lib/test_kmod.c
9880 F:      tools/testing/selftests/kmod/
9881
9882 KPROBES
9883 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9884 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9885 M:      "David S. Miller" <davem@davemloft.net>
9886 M:      Masami Hiramatsu <mhiramat@kernel.org>
9887 S:      Maintained
9888 F:      Documentation/trace/kprobes.rst
9889 F:      include/asm-generic/kprobes.h
9890 F:      include/linux/kprobes.h
9891 F:      kernel/kprobes.c
9892
9893 KS0108 LCD CONTROLLER DRIVER
9894 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9895 S:      Maintained
9896 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9897 F:      drivers/auxdisplay/ks0108.c
9898 F:      include/linux/ks0108.h
9899
9900 KTD253 BACKLIGHT DRIVER
9901 M:      Linus Walleij <linus.walleij@linaro.org>
9902 S:      Maintained
9903 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
9904 F:      drivers/video/backlight/ktd253-backlight.c
9905
9906 L3MDEV
9907 M:      David Ahern <dsahern@kernel.org>
9908 L:      netdev@vger.kernel.org
9909 S:      Maintained
9910 F:      include/net/l3mdev.h
9911 F:      net/l3mdev
9912
9913 L7 BPF FRAMEWORK
9914 M:      John Fastabend <john.fastabend@gmail.com>
9915 M:      Daniel Borkmann <daniel@iogearbox.net>
9916 M:      Jakub Sitnicki <jakub@cloudflare.com>
9917 M:      Lorenz Bauer <lmb@cloudflare.com>
9918 L:      netdev@vger.kernel.org
9919 L:      bpf@vger.kernel.org
9920 S:      Maintained
9921 F:      include/linux/skmsg.h
9922 F:      net/core/skmsg.c
9923 F:      net/core/sock_map.c
9924 F:      net/ipv4/tcp_bpf.c
9925 F:      net/ipv4/udp_bpf.c
9926
9927 LANTIQ / INTEL Ethernet drivers
9928 M:      Hauke Mehrtens <hauke@hauke-m.de>
9929 L:      netdev@vger.kernel.org
9930 S:      Maintained
9931 F:      drivers/net/dsa/lantiq_gswip.c
9932 F:      drivers/net/dsa/lantiq_pce.h
9933 F:      drivers/net/ethernet/lantiq_xrx200.c
9934 F:      net/dsa/tag_gswip.c
9935
9936 LANTIQ MIPS ARCHITECTURE
9937 M:      John Crispin <john@phrozen.org>
9938 L:      linux-mips@vger.kernel.org
9939 S:      Maintained
9940 F:      arch/mips/lantiq
9941 F:      drivers/soc/lantiq
9942
9943 LASI 53c700 driver for PARISC
9944 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9945 L:      linux-scsi@vger.kernel.org
9946 S:      Maintained
9947 F:      Documentation/scsi/53c700.rst
9948 F:      drivers/scsi/53c700*
9949
9950 LEAKING_ADDRESSES
9951 M:      Tobin C. Harding <me@tobin.cc>
9952 M:      Tycho Andersen <tycho@tycho.pizza>
9953 L:      linux-hardening@vger.kernel.org
9954 S:      Maintained
9955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9956 F:      scripts/leaking_addresses.pl
9957
9958 LED SUBSYSTEM
9959 M:      Pavel Machek <pavel@ucw.cz>
9960 R:      Dan Murphy <dmurphy@ti.com>
9961 L:      linux-leds@vger.kernel.org
9962 S:      Maintained
9963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9964 F:      Documentation/devicetree/bindings/leds/
9965 F:      drivers/leds/
9966 F:      include/linux/leds.h
9967
9968 LEGACY EEPROM DRIVER
9969 M:      Jean Delvare <jdelvare@suse.com>
9970 S:      Maintained
9971 F:      Documentation/misc-devices/eeprom.rst
9972 F:      drivers/misc/eeprom/eeprom.c
9973
9974 LEGO MINDSTORMS EV3
9975 R:      David Lechner <david@lechnology.com>
9976 S:      Maintained
9977 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9978 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9979 F:      drivers/power/supply/lego_ev3_battery.c
9980
9981 LEGO USB Tower driver
9982 M:      Juergen Stuber <starblue@users.sourceforge.net>
9983 L:      legousb-devel@lists.sourceforge.net
9984 S:      Maintained
9985 W:      http://legousb.sourceforge.net/
9986 F:      drivers/usb/misc/legousbtower.c
9987
9988 LG LAPTOP EXTRAS
9989 M:      Matan Ziv-Av <matan@svgalib.org>
9990 L:      platform-driver-x86@vger.kernel.org
9991 S:      Maintained
9992 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9993 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9994 F:      drivers/platform/x86/lg-laptop.c
9995
9996 LG2160 MEDIA DRIVER
9997 M:      Michael Krufky <mkrufky@linuxtv.org>
9998 L:      linux-media@vger.kernel.org
9999 S:      Maintained
10000 W:      https://linuxtv.org
10001 W:      http://github.com/mkrufky
10002 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10003 T:      git git://linuxtv.org/mkrufky/tuners.git
10004 F:      drivers/media/dvb-frontends/lg2160.*
10005
10006 LGDT3305 MEDIA DRIVER
10007 M:      Michael Krufky <mkrufky@linuxtv.org>
10008 L:      linux-media@vger.kernel.org
10009 S:      Maintained
10010 W:      https://linuxtv.org
10011 W:      http://github.com/mkrufky
10012 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10013 T:      git git://linuxtv.org/mkrufky/tuners.git
10014 F:      drivers/media/dvb-frontends/lgdt3305.*
10015
10016 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10017 M:      Viresh Kumar <vireshk@kernel.org>
10018 L:      linux-ide@vger.kernel.org
10019 S:      Maintained
10020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10021 F:      drivers/ata/pata_arasan_cf.c
10022 F:      include/linux/pata_arasan_cf_data.h
10023
10024 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10025 M:      Linus Walleij <linus.walleij@linaro.org>
10026 L:      linux-ide@vger.kernel.org
10027 S:      Maintained
10028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10029 F:      drivers/ata/pata_ftide010.c
10030 F:      drivers/ata/sata_gemini.c
10031 F:      drivers/ata/sata_gemini.h
10032
10033 LIBATA SATA AHCI PLATFORM devices support
10034 M:      Hans de Goede <hdegoede@redhat.com>
10035 M:      Jens Axboe <axboe@kernel.dk>
10036 L:      linux-ide@vger.kernel.org
10037 S:      Maintained
10038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10039 F:      drivers/ata/ahci_platform.c
10040 F:      drivers/ata/libahci_platform.c
10041 F:      include/linux/ahci_platform.h
10042
10043 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10044 M:      Mikael Pettersson <mikpelinux@gmail.com>
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:      drivers/ata/sata_promise.*
10049
10050 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10051 M:      Jens Axboe <axboe@kernel.dk>
10052 L:      linux-ide@vger.kernel.org
10053 S:      Maintained
10054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10055 F:      Documentation/devicetree/bindings/ata/
10056 F:      drivers/ata/
10057 F:      include/linux/ata.h
10058 F:      include/linux/libata.h
10059
10060 LIBLOCKDEP
10061 M:      Sasha Levin <alexander.levin@microsoft.com>
10062 S:      Maintained
10063 F:      tools/lib/lockdep/
10064
10065 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10066 M:      Dan Williams <dan.j.williams@intel.com>
10067 M:      Vishal Verma <vishal.l.verma@intel.com>
10068 M:      Dave Jiang <dave.jiang@intel.com>
10069 L:      linux-nvdimm@lists.01.org
10070 S:      Supported
10071 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10072 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10073 F:      drivers/nvdimm/blk.c
10074 F:      drivers/nvdimm/region_devs.c
10075
10076 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10077 M:      Vishal Verma <vishal.l.verma@intel.com>
10078 M:      Dan Williams <dan.j.williams@intel.com>
10079 M:      Dave Jiang <dave.jiang@intel.com>
10080 L:      linux-nvdimm@lists.01.org
10081 S:      Supported
10082 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10083 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10084 F:      drivers/nvdimm/btt*
10085
10086 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10087 M:      Dan Williams <dan.j.williams@intel.com>
10088 M:      Vishal Verma <vishal.l.verma@intel.com>
10089 M:      Dave Jiang <dave.jiang@intel.com>
10090 L:      linux-nvdimm@lists.01.org
10091 S:      Supported
10092 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10093 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10094 F:      drivers/nvdimm/pmem*
10095
10096 LIBNVDIMM: DEVICETREE BINDINGS
10097 M:      Oliver O'Halloran <oohall@gmail.com>
10098 L:      linux-nvdimm@lists.01.org
10099 S:      Supported
10100 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10101 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10102 F:      drivers/nvdimm/of_pmem.c
10103
10104 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10105 M:      Dan Williams <dan.j.williams@intel.com>
10106 M:      Vishal Verma <vishal.l.verma@intel.com>
10107 M:      Dave Jiang <dave.jiang@intel.com>
10108 M:      Ira Weiny <ira.weiny@intel.com>
10109 L:      linux-nvdimm@lists.01.org
10110 S:      Supported
10111 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10112 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10114 F:      drivers/acpi/nfit/*
10115 F:      drivers/nvdimm/*
10116 F:      include/linux/libnvdimm.h
10117 F:      include/linux/nd.h
10118 F:      include/uapi/linux/ndctl.h
10119 F:      tools/testing/nvdimm/
10120
10121 LICENSES and SPDX stuff
10122 M:      Thomas Gleixner <tglx@linutronix.de>
10123 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10124 L:      linux-spdx@vger.kernel.org
10125 S:      Maintained
10126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10127 F:      COPYING
10128 F:      Documentation/process/license-rules.rst
10129 F:      LICENSES/
10130 F:      scripts/spdxcheck-test.sh
10131 F:      scripts/spdxcheck.py
10132
10133 LIGHTNVM PLATFORM SUPPORT
10134 M:      Matias Bjorling <mb@lightnvm.io>
10135 L:      linux-block@vger.kernel.org
10136 S:      Maintained
10137 W:      http://github/OpenChannelSSD
10138 F:      drivers/lightnvm/
10139 F:      include/linux/lightnvm.h
10140 F:      include/uapi/linux/lightnvm.h
10141
10142 LINEAR RANGES HELPERS
10143 M:      Mark Brown <broonie@kernel.org>
10144 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10145 F:      lib/linear_ranges.c
10146 F:      lib/test_linear_ranges.c
10147 F:      include/linux/linear_range.h
10148
10149 LINUX FOR POWER MACINTOSH
10150 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10151 L:      linuxppc-dev@lists.ozlabs.org
10152 S:      Odd Fixes
10153 F:      arch/powerpc/platforms/powermac/
10154 F:      drivers/macintosh/
10155
10156 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10157 M:      Michael Ellerman <mpe@ellerman.id.au>
10158 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10159 R:      Paul Mackerras <paulus@samba.org>
10160 L:      linuxppc-dev@lists.ozlabs.org
10161 S:      Supported
10162 W:      https://github.com/linuxppc/wiki/wiki
10163 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10165 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10166 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10167 F:      Documentation/devicetree/bindings/powerpc/
10168 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10169 F:      Documentation/powerpc/
10170 F:      arch/powerpc/
10171 F:      drivers/*/*/*pasemi*
10172 F:      drivers/*/*pasemi*
10173 F:      drivers/char/tpm/tpm_ibmvtpm*
10174 F:      drivers/crypto/nx/
10175 F:      drivers/crypto/vmx/
10176 F:      drivers/i2c/busses/i2c-opal.c
10177 F:      drivers/net/ethernet/ibm/ibmveth.*
10178 F:      drivers/net/ethernet/ibm/ibmvnic.*
10179 F:      drivers/pci/hotplug/pnv_php.c
10180 F:      drivers/pci/hotplug/rpa*
10181 F:      drivers/rtc/rtc-opal.c
10182 F:      drivers/scsi/ibmvscsi/
10183 F:      drivers/tty/hvc/hvc_opal.c
10184 F:      drivers/watchdog/wdrtas.c
10185 F:      tools/testing/selftests/powerpc
10186 N:      /pmac
10187 N:      powermac
10188 N:      powernv
10189 N:      [^a-z0-9]ps3
10190 N:      pseries
10191
10192 LINUX FOR POWERPC EMBEDDED MPC5XXX
10193 M:      Anatolij Gustschin <agust@denx.de>
10194 L:      linuxppc-dev@lists.ozlabs.org
10195 S:      Odd Fixes
10196 F:      arch/powerpc/platforms/512x/
10197 F:      arch/powerpc/platforms/52xx/
10198
10199 LINUX FOR POWERPC EMBEDDED PPC4XX
10200 L:      linuxppc-dev@lists.ozlabs.org
10201 S:      Orphan
10202 F:      arch/powerpc/platforms/40x/
10203 F:      arch/powerpc/platforms/44x/
10204
10205 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10206 M:      Scott Wood <oss@buserror.net>
10207 L:      linuxppc-dev@lists.ozlabs.org
10208 S:      Odd fixes
10209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10210 F:      Documentation/devicetree/bindings/powerpc/fsl/
10211 F:      arch/powerpc/platforms/83xx/
10212 F:      arch/powerpc/platforms/85xx/
10213
10214 LINUX FOR POWERPC EMBEDDED PPC8XX
10215 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10216 L:      linuxppc-dev@lists.ozlabs.org
10217 S:      Maintained
10218 F:      arch/powerpc/platforms/8xx/
10219
10220 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10221 M:      Kees Cook <keescook@chromium.org>
10222 S:      Maintained
10223 F:      drivers/misc/lkdtm/*
10224 F:      tools/testing/selftests/lkdtm/*
10225
10226 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10227 M:      Alan Stern <stern@rowland.harvard.edu>
10228 M:      Andrea Parri <parri.andrea@gmail.com>
10229 M:      Will Deacon <will@kernel.org>
10230 M:      Peter Zijlstra <peterz@infradead.org>
10231 M:      Boqun Feng <boqun.feng@gmail.com>
10232 M:      Nicholas Piggin <npiggin@gmail.com>
10233 M:      David Howells <dhowells@redhat.com>
10234 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10235 M:      Luc Maranget <luc.maranget@inria.fr>
10236 M:      "Paul E. McKenney" <paulmck@kernel.org>
10237 R:      Akira Yokosawa <akiyks@gmail.com>
10238 R:      Daniel Lustig <dlustig@nvidia.com>
10239 R:      Joel Fernandes <joel@joelfernandes.org>
10240 L:      linux-kernel@vger.kernel.org
10241 L:      linux-arch@vger.kernel.org
10242 S:      Supported
10243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10244 F:      Documentation/atomic_bitops.txt
10245 F:      Documentation/atomic_t.txt
10246 F:      Documentation/core-api/atomic_ops.rst
10247 F:      Documentation/core-api/refcount-vs-atomic.rst
10248 F:      Documentation/litmus-tests/
10249 F:      Documentation/memory-barriers.txt
10250 F:      tools/memory-model/
10251
10252 LIS3LV02D ACCELEROMETER DRIVER
10253 M:      Eric Piel <eric.piel@tremplin-utc.net>
10254 S:      Maintained
10255 F:      Documentation/misc-devices/lis3lv02d.rst
10256 F:      drivers/misc/lis3lv02d/
10257 F:      drivers/platform/x86/hp_accel.c
10258
10259 LIST KUNIT TEST
10260 M:      David Gow <davidgow@google.com>
10261 L:      linux-kselftest@vger.kernel.org
10262 L:      kunit-dev@googlegroups.com
10263 S:      Maintained
10264 F:      lib/list-test.c
10265
10266 LIVE PATCHING
10267 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10268 M:      Jiri Kosina <jikos@kernel.org>
10269 M:      Miroslav Benes <mbenes@suse.cz>
10270 M:      Petr Mladek <pmladek@suse.com>
10271 R:      Joe Lawrence <joe.lawrence@redhat.com>
10272 L:      live-patching@vger.kernel.org
10273 S:      Maintained
10274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10275 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10276 F:      Documentation/livepatch/
10277 F:      arch/powerpc/include/asm/livepatch.h
10278 F:      arch/s390/include/asm/livepatch.h
10279 F:      arch/x86/include/asm/livepatch.h
10280 F:      include/linux/livepatch.h
10281 F:      kernel/livepatch/
10282 F:      lib/livepatch/
10283 F:      samples/livepatch/
10284 F:      tools/testing/selftests/livepatch/
10285
10286 LLC (802.2)
10287 L:      netdev@vger.kernel.org
10288 S:      Odd fixes
10289 F:      include/linux/llc.h
10290 F:      include/net/llc*
10291 F:      include/uapi/linux/llc.h
10292 F:      net/llc/
10293
10294 LM73 HARDWARE MONITOR DRIVER
10295 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10296 L:      linux-hwmon@vger.kernel.org
10297 S:      Maintained
10298 F:      drivers/hwmon/lm73.c
10299
10300 LM78 HARDWARE MONITOR DRIVER
10301 M:      Jean Delvare <jdelvare@suse.com>
10302 L:      linux-hwmon@vger.kernel.org
10303 S:      Maintained
10304 F:      Documentation/hwmon/lm78.rst
10305 F:      drivers/hwmon/lm78.c
10306
10307 LM83 HARDWARE MONITOR DRIVER
10308 M:      Jean Delvare <jdelvare@suse.com>
10309 L:      linux-hwmon@vger.kernel.org
10310 S:      Maintained
10311 F:      Documentation/hwmon/lm83.rst
10312 F:      drivers/hwmon/lm83.c
10313
10314 LM90 HARDWARE MONITOR DRIVER
10315 M:      Jean Delvare <jdelvare@suse.com>
10316 L:      linux-hwmon@vger.kernel.org
10317 S:      Maintained
10318 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10319 F:      Documentation/hwmon/lm90.rst
10320 F:      drivers/hwmon/lm90.c
10321 F:      include/dt-bindings/thermal/lm90.h
10322
10323 LM95234 HARDWARE MONITOR DRIVER
10324 M:      Guenter Roeck <linux@roeck-us.net>
10325 L:      linux-hwmon@vger.kernel.org
10326 S:      Maintained
10327 F:      Documentation/hwmon/lm95234.rst
10328 F:      drivers/hwmon/lm95234.c
10329
10330 LME2510 MEDIA DRIVER
10331 M:      Malcolm Priestley <tvboxspy@gmail.com>
10332 L:      linux-media@vger.kernel.org
10333 S:      Maintained
10334 W:      https://linuxtv.org
10335 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10336 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10337
10338 LOADPIN SECURITY MODULE
10339 M:      Kees Cook <keescook@chromium.org>
10340 S:      Supported
10341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10342 F:      Documentation/admin-guide/LSM/LoadPin.rst
10343 F:      security/loadpin/
10344
10345 LOCKING PRIMITIVES
10346 M:      Peter Zijlstra <peterz@infradead.org>
10347 M:      Ingo Molnar <mingo@redhat.com>
10348 M:      Will Deacon <will@kernel.org>
10349 L:      linux-kernel@vger.kernel.org
10350 S:      Maintained
10351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10352 F:      Documentation/locking/
10353 F:      arch/*/include/asm/spinlock*.h
10354 F:      include/linux/lockdep.h
10355 F:      include/linux/mutex*.h
10356 F:      include/linux/rwlock*.h
10357 F:      include/linux/rwsem*.h
10358 F:      include/linux/seqlock.h
10359 F:      include/linux/spinlock*.h
10360 F:      kernel/locking/
10361 F:      lib/locking*.[ch]
10362 X:      kernel/locking/locktorture.c
10363
10364 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10365 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
10366 L:      linux-ntfs-dev@lists.sourceforge.net
10367 S:      Maintained
10368 W:      http://www.linux-ntfs.org/content/view/19/37/
10369 F:      Documentation/admin-guide/ldm.rst
10370 F:      block/partitions/ldm.*
10371
10372 LOGITECH HID GAMING KEYBOARDS
10373 M:      Hans de Goede <hdegoede@redhat.com>
10374 L:      linux-input@vger.kernel.org
10375 S:      Maintained
10376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10377 F:      drivers/hid/hid-lg-g15.c
10378
10379 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10380 M:      Sathya Prakash <sathya.prakash@broadcom.com>
10381 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10382 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10383 L:      MPT-FusionLinux.pdl@broadcom.com
10384 L:      linux-scsi@vger.kernel.org
10385 S:      Supported
10386 W:      http://www.avagotech.com/support/
10387 F:      drivers/message/fusion/
10388 F:      drivers/scsi/mpt3sas/
10389
10390 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10391 M:      Matthew Wilcox <willy@infradead.org>
10392 L:      linux-scsi@vger.kernel.org
10393 S:      Maintained
10394 F:      drivers/scsi/sym53c8xx_2/
10395
10396 LTC1660 DAC DRIVER
10397 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10398 L:      linux-iio@vger.kernel.org
10399 S:      Maintained
10400 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10401 F:      drivers/iio/dac/ltc1660.c
10402
10403 LTC2947 HARDWARE MONITOR DRIVER
10404 M:      Nuno Sá <nuno.sa@analog.com>
10405 L:      linux-hwmon@vger.kernel.org
10406 S:      Supported
10407 W:      http://ez.analog.com/community/linux-device-drivers
10408 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10409 F:      drivers/hwmon/ltc2947-core.c
10410 F:      drivers/hwmon/ltc2947-i2c.c
10411 F:      drivers/hwmon/ltc2947-spi.c
10412 F:      drivers/hwmon/ltc2947.h
10413
10414 LTC2983 IIO TEMPERATURE DRIVER
10415 M:      Nuno Sá <nuno.sa@analog.com>
10416 L:      linux-iio@vger.kernel.org
10417 S:      Supported
10418 W:      http://ez.analog.com/community/linux-device-drivers
10419 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10420 F:      drivers/iio/temperature/ltc2983.c
10421
10422 LTC4261 HARDWARE MONITOR DRIVER
10423 M:      Guenter Roeck <linux@roeck-us.net>
10424 L:      linux-hwmon@vger.kernel.org
10425 S:      Maintained
10426 F:      Documentation/hwmon/ltc4261.rst
10427 F:      drivers/hwmon/ltc4261.c
10428
10429 LTC4306 I2C MULTIPLEXER DRIVER
10430 M:      Michael Hennerich <michael.hennerich@analog.com>
10431 L:      linux-i2c@vger.kernel.org
10432 S:      Supported
10433 W:      http://ez.analog.com/community/linux-device-drivers
10434 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10435 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10436
10437 LTP (Linux Test Project)
10438 M:      Mike Frysinger <vapier@gentoo.org>
10439 M:      Cyril Hrubis <chrubis@suse.cz>
10440 M:      Wanlong Gao <wanlong.gao@gmail.com>
10441 M:      Jan Stancek <jstancek@redhat.com>
10442 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10443 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
10444 L:      ltp@lists.linux.it (subscribers-only)
10445 S:      Maintained
10446 W:      http://linux-test-project.github.io/
10447 T:      git git://github.com/linux-test-project/ltp.git
10448
10449 LYNX PCS MODULE
10450 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
10451 L:      netdev@vger.kernel.org
10452 S:      Supported
10453 F:      drivers/net/pcs/pcs-lynx.c
10454 F:      include/linux/pcs-lynx.h
10455
10456 M68K ARCHITECTURE
10457 M:      Geert Uytterhoeven <geert@linux-m68k.org>
10458 L:      linux-m68k@lists.linux-m68k.org
10459 S:      Maintained
10460 W:      http://www.linux-m68k.org/
10461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10462 F:      arch/m68k/
10463 F:      drivers/zorro/
10464
10465 M68K ON APPLE MACINTOSH
10466 M:      Joshua Thompson <funaho@jurai.org>
10467 L:      linux-m68k@lists.linux-m68k.org
10468 S:      Maintained
10469 W:      http://www.mac.linux-m68k.org/
10470 F:      arch/m68k/mac/
10471 F:      drivers/macintosh/adb-iop.c
10472 F:      drivers/macintosh/via-macii.c
10473
10474 M68K ON HP9000/300
10475 M:      Philip Blundell <philb@gnu.org>
10476 S:      Maintained
10477 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10478 F:      arch/m68k/hp300/
10479
10480 M88DS3103 MEDIA DRIVER
10481 M:      Antti Palosaari <crope@iki.fi>
10482 L:      linux-media@vger.kernel.org
10483 S:      Maintained
10484 W:      https://linuxtv.org
10485 W:      http://palosaari.fi/linux/
10486 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10487 T:      git git://linuxtv.org/anttip/media_tree.git
10488 F:      drivers/media/dvb-frontends/m88ds3103*
10489
10490 M88RS2000 MEDIA DRIVER
10491 M:      Malcolm Priestley <tvboxspy@gmail.com>
10492 L:      linux-media@vger.kernel.org
10493 S:      Maintained
10494 W:      https://linuxtv.org
10495 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10496 F:      drivers/media/dvb-frontends/m88rs2000*
10497
10498 MA901 MASTERKIT USB FM RADIO DRIVER
10499 M:      Alexey Klimov <klimov.linux@gmail.com>
10500 L:      linux-media@vger.kernel.org
10501 S:      Maintained
10502 T:      git git://linuxtv.org/media_tree.git
10503 F:      drivers/media/radio/radio-ma901.c
10504
10505 MAC80211
10506 M:      Johannes Berg <johannes@sipsolutions.net>
10507 L:      linux-wireless@vger.kernel.org
10508 S:      Maintained
10509 W:      https://wireless.wiki.kernel.org/
10510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10511 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10512 F:      Documentation/networking/mac80211-injection.rst
10513 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10514 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10515 F:      include/net/mac80211.h
10516 F:      net/mac80211/
10517
10518 MAILBOX API
10519 M:      Jassi Brar <jassisinghbrar@gmail.com>
10520 L:      linux-kernel@vger.kernel.org
10521 S:      Maintained
10522 F:      drivers/mailbox/
10523 F:      include/linux/mailbox_client.h
10524 F:      include/linux/mailbox_controller.h
10525
10526 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10527 M:      Michael Kerrisk <mtk.manpages@gmail.com>
10528 L:      linux-man@vger.kernel.org
10529 S:      Maintained
10530 W:      http://www.kernel.org/doc/man-pages
10531
10532 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10533 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
10534 L:      linux-mips@vger.kernel.org
10535 S:      Maintained
10536 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10537
10538 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10539 M:      Andrew Lunn <andrew@lunn.ch>
10540 M:      Vivien Didelot <vivien.didelot@gmail.com>
10541 L:      netdev@vger.kernel.org
10542 S:      Maintained
10543 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10544 F:      Documentation/networking/devlink/mv88e6xxx.rst
10545 F:      drivers/net/dsa/mv88e6xxx/
10546 F:      include/linux/platform_data/mv88e6xxx.h
10547
10548 MARVELL ARMADA 3700 PHY DRIVERS
10549 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10550 S:      Maintained
10551 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10552 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10553 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10554 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10555
10556 MARVELL ARMADA DRM SUPPORT
10557 M:      Russell King <linux@armlinux.org.uk>
10558 S:      Maintained
10559 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10560 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10561 F:      Documentation/devicetree/bindings/display/armada/
10562 F:      drivers/gpu/drm/armada/
10563 F:      include/uapi/drm/armada_drm.h
10564
10565 MARVELL CRYPTO DRIVER
10566 M:      Boris Brezillon <bbrezillon@kernel.org>
10567 M:      Arnaud Ebalard <arno@natisbad.org>
10568 M:      Srujana Challa <schalla@marvell.com>
10569 L:      linux-crypto@vger.kernel.org
10570 S:      Maintained
10571 F:      drivers/crypto/marvell/
10572 F:      include/linux/soc/marvell/octeontx2/
10573
10574 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10575 M:      Mirko Lindner <mlindner@marvell.com>
10576 M:      Stephen Hemminger <stephen@networkplumber.org>
10577 L:      netdev@vger.kernel.org
10578 S:      Maintained
10579 F:      drivers/net/ethernet/marvell/sk*
10580
10581 MARVELL LIBERTAS WIRELESS DRIVER
10582 L:      libertas-dev@lists.infradead.org
10583 S:      Orphan
10584 F:      drivers/net/wireless/marvell/libertas/
10585
10586 MARVELL MACCHIATOBIN SUPPORT
10587 M:      Russell King <linux@armlinux.org.uk>
10588 L:      linux-arm-kernel@lists.infradead.org
10589 S:      Maintained
10590 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10591
10592 MARVELL MV643XX ETHERNET DRIVER
10593 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
10594 L:      netdev@vger.kernel.org
10595 S:      Maintained
10596 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10597 F:      include/linux/mv643xx.h
10598
10599 MARVELL MV88X3310 PHY DRIVER
10600 M:      Russell King <linux@armlinux.org.uk>
10601 L:      netdev@vger.kernel.org
10602 S:      Maintained
10603 F:      drivers/net/phy/marvell10g.c
10604
10605 MARVELL MVEBU THERMAL DRIVER
10606 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10607 S:      Maintained
10608 F:      drivers/thermal/armada_thermal.c
10609
10610 MARVELL MVNETA ETHERNET DRIVER
10611 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10612 L:      netdev@vger.kernel.org
10613 S:      Maintained
10614 F:      drivers/net/ethernet/marvell/mvneta.*
10615
10616 MARVELL MVPP2 ETHERNET DRIVER
10617 M:      Marcin Wojtas <mw@semihalf.com>
10618 M:      Russell King <linux@armlinux.org.uk>
10619 L:      netdev@vger.kernel.org
10620 S:      Maintained
10621 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
10622 F:      drivers/net/ethernet/marvell/mvpp2/
10623
10624 MARVELL MWIFIEX WIRELESS DRIVER
10625 M:      Amitkumar Karwar <amitkarwar@gmail.com>
10626 M:      Ganapathi Bhat <ganapathi.bhat@nxp.com>
10627 M:      Xinming Hu <huxinming820@gmail.com>
10628 L:      linux-wireless@vger.kernel.org
10629 S:      Maintained
10630 F:      drivers/net/wireless/marvell/mwifiex/
10631
10632 MARVELL MWL8K WIRELESS DRIVER
10633 M:      Lennert Buytenhek <buytenh@wantstofly.org>
10634 L:      linux-wireless@vger.kernel.org
10635 S:      Odd Fixes
10636 F:      drivers/net/wireless/marvell/mwl8k.c
10637
10638 MARVELL NAND CONTROLLER DRIVER
10639 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10640 L:      linux-mtd@lists.infradead.org
10641 S:      Maintained
10642 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10643 F:      drivers/mtd/nand/raw/marvell_nand.c
10644
10645 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10646 M:      Sunil Goutham <sgoutham@marvell.com>
10647 M:      Geetha sowjanya <gakula@marvell.com>
10648 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10649 M:      hariprasad <hkelam@marvell.com>
10650 L:      netdev@vger.kernel.org
10651 S:      Supported
10652 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10653 F:      include/linux/soc/marvell/octeontx2/
10654
10655 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10656 M:      Sunil Goutham <sgoutham@marvell.com>
10657 M:      Linu Cherian <lcherian@marvell.com>
10658 M:      Geetha sowjanya <gakula@marvell.com>
10659 M:      Jerin Jacob <jerinj@marvell.com>
10660 L:      netdev@vger.kernel.org
10661 S:      Supported
10662 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
10663 F:      drivers/net/ethernet/marvell/octeontx2/af/
10664
10665 MARVELL PRESTERA ETHERNET SWITCH DRIVER
10666 M:      Vadym Kochan <vkochan@marvell.com>
10667 M:      Taras Chornyi <tchornyi@marvell.com>
10668 S:      Supported
10669 W:      https://github.com/Marvell-switching/switchdev-prestera
10670 F:      drivers/net/ethernet/marvell/prestera/
10671
10672 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10673 M:      Nicolas Pitre <nico@fluxnic.net>
10674 S:      Odd Fixes
10675 F:      drivers/mmc/host/mvsdio.*
10676
10677 MARVELL USB MDIO CONTROLLER DRIVER
10678 M:      Tobias Waldekranz <tobias@waldekranz.com>
10679 L:      netdev@vger.kernel.org
10680 S:      Maintained
10681 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10682 F:      drivers/net/mdio/mdio-mvusb.c
10683
10684 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10685 M:      Hu Ziji <huziji@marvell.com>
10686 L:      linux-mmc@vger.kernel.org
10687 S:      Supported
10688 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10689 F:      drivers/mmc/host/sdhci-xenon*
10690
10691 MATROX FRAMEBUFFER DRIVER
10692 L:      linux-fbdev@vger.kernel.org
10693 S:      Orphan
10694 F:      drivers/video/fbdev/matrox/matroxfb_*
10695 F:      include/uapi/linux/matroxfb.h
10696
10697 MAX16065 HARDWARE MONITOR DRIVER
10698 M:      Guenter Roeck <linux@roeck-us.net>
10699 L:      linux-hwmon@vger.kernel.org
10700 S:      Maintained
10701 F:      Documentation/hwmon/max16065.rst
10702 F:      drivers/hwmon/max16065.c
10703
10704 MAX2175 SDR TUNER DRIVER
10705 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10706 L:      linux-media@vger.kernel.org
10707 S:      Maintained
10708 T:      git git://linuxtv.org/media_tree.git
10709 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10710 F:      Documentation/userspace-api/media/drivers/max2175.rst
10711 F:      drivers/media/i2c/max2175*
10712 F:      include/uapi/linux/max2175.h
10713
10714 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10715 L:      linux-hwmon@vger.kernel.org
10716 S:      Orphan
10717 F:      Documentation/hwmon/max6650.rst
10718 F:      drivers/hwmon/max6650.c
10719
10720 MAX6697 HARDWARE MONITOR DRIVER
10721 M:      Guenter Roeck <linux@roeck-us.net>
10722 L:      linux-hwmon@vger.kernel.org
10723 S:      Maintained
10724 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10725 F:      Documentation/hwmon/max6697.rst
10726 F:      drivers/hwmon/max6697.c
10727 F:      include/linux/platform_data/max6697.h
10728
10729 MAX9286 QUAD GMSL DESERIALIZER DRIVER
10730 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
10731 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10732 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
10733 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
10734 L:      linux-media@vger.kernel.org
10735 S:      Maintained
10736 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
10737 F:      drivers/media/i2c/max9286.c
10738
10739 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10740 M:      Peter Rosin <peda@axentia.se>
10741 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10742 S:      Maintained
10743 F:      Documentation/devicetree/bindings/sound/max9860.txt
10744 F:      sound/soc/codecs/max9860.*
10745
10746 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10747 M:      Andreas Klinger <ak@it-klinger.de>
10748 L:      linux-iio@vger.kernel.org
10749 S:      Maintained
10750 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10751 F:      drivers/iio/proximity/mb1232.c
10752
10753 MAXIM MAX77650 PMIC MFD DRIVER
10754 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
10755 L:      linux-kernel@vger.kernel.org
10756 S:      Maintained
10757 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10758 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10759 F:      drivers/gpio/gpio-max77650.c
10760 F:      drivers/input/misc/max77650-onkey.c
10761 F:      drivers/leds/leds-max77650.c
10762 F:      drivers/mfd/max77650.c
10763 F:      drivers/power/supply/max77650-charger.c
10764 F:      drivers/regulator/max77650-regulator.c
10765 F:      include/linux/mfd/max77650.h
10766
10767 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10768 M:      Javier Martinez Canillas <javier@dowhile0.org>
10769 L:      linux-kernel@vger.kernel.org
10770 S:      Supported
10771 F:      Documentation/devicetree/bindings/*/*max77802.txt
10772 F:      drivers/regulator/max77802-regulator.c
10773 F:      include/dt-bindings/*/*max77802.h
10774
10775 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10776 M:      Krzysztof Kozlowski <krzk@kernel.org>
10777 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10778 L:      linux-pm@vger.kernel.org
10779 S:      Supported
10780 F:      drivers/power/supply/max14577_charger.c
10781 F:      drivers/power/supply/max77693_charger.c
10782
10783 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10784 M:      Chanwoo Choi <cw00.choi@samsung.com>
10785 M:      Krzysztof Kozlowski <krzk@kernel.org>
10786 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10787 L:      linux-kernel@vger.kernel.org
10788 S:      Supported
10789 F:      Documentation/devicetree/bindings/*/max77686.txt
10790 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10791 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10792 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10793 F:      drivers/*/max14577*.c
10794 F:      drivers/*/max77686*.c
10795 F:      drivers/*/max77693*.c
10796 F:      drivers/clk/clk-max77686.c
10797 F:      drivers/extcon/extcon-max14577.c
10798 F:      drivers/extcon/extcon-max77693.c
10799 F:      drivers/rtc/rtc-max77686.c
10800 F:      include/linux/mfd/max14577*.h
10801 F:      include/linux/mfd/max77686*.h
10802 F:      include/linux/mfd/max77693*.h
10803
10804 MAXIRADIO FM RADIO RECEIVER DRIVER
10805 M:      Hans Verkuil <hverkuil@xs4all.nl>
10806 L:      linux-media@vger.kernel.org
10807 S:      Maintained
10808 W:      https://linuxtv.org
10809 T:      git git://linuxtv.org/media_tree.git
10810 F:      drivers/media/radio/radio-maxiradio*
10811
10812 MCAN MMIO DEVICE DRIVER
10813 M:      Dan Murphy <dmurphy@ti.com>
10814 M:      Sriram Dash <sriram.dash@samsung.com>
10815 L:      linux-can@vger.kernel.org
10816 S:      Maintained
10817 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10818 F:      drivers/net/can/m_can/m_can.c
10819 F:      drivers/net/can/m_can/m_can.h
10820 F:      drivers/net/can/m_can/m_can_platform.c
10821
10822 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10823 M:      Rishi Gupta <gupt21@gmail.com>
10824 L:      linux-i2c@vger.kernel.org
10825 L:      linux-input@vger.kernel.org
10826 S:      Maintained
10827 F:      drivers/hid/hid-mcp2221.c
10828
10829 MCP251XFD SPI-CAN NETWORK DRIVER
10830 M:      Marc Kleine-Budde <mkl@pengutronix.de>
10831 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
10832 R:      Thomas Kopp <thomas.kopp@microchip.com>
10833 L:      linux-can@vger.kernel.org
10834 S:      Maintained
10835 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
10836 F:      drivers/net/can/spi/mcp251xfd/
10837
10838 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10839 M:      Peter Rosin <peda@axentia.se>
10840 L:      linux-iio@vger.kernel.org
10841 S:      Maintained
10842 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10843 F:      drivers/iio/potentiometer/mcp4018.c
10844 F:      drivers/iio/potentiometer/mcp4531.c
10845
10846 MCR20A IEEE-802.15.4 RADIO DRIVER
10847 M:      Xue Liu <liuxuenetmail@gmail.com>
10848 L:      linux-wpan@vger.kernel.org
10849 S:      Maintained
10850 W:      https://github.com/xueliu/mcr20a-linux
10851 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10852 F:      drivers/net/ieee802154/mcr20a.c
10853 F:      drivers/net/ieee802154/mcr20a.h
10854
10855 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10856 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10857 L:      linux-iio@vger.kernel.org
10858 S:      Maintained
10859 F:      drivers/iio/dac/cio-dac.c
10860
10861 MEDIA CONTROLLER FRAMEWORK
10862 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10863 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10864 L:      linux-media@vger.kernel.org
10865 S:      Supported
10866 W:      https://www.linuxtv.org
10867 T:      git git://linuxtv.org/media_tree.git
10868 F:      drivers/media/mc/
10869 F:      include/media/media-*.h
10870 F:      include/uapi/linux/media.h
10871
10872 MEDIA DRIVER FOR FREESCALE IMX PXP
10873 M:      Philipp Zabel <p.zabel@pengutronix.de>
10874 L:      linux-media@vger.kernel.org
10875 S:      Maintained
10876 T:      git git://linuxtv.org/media_tree.git
10877 F:      drivers/media/platform/imx-pxp.[ch]
10878
10879 MEDIA DRIVERS FOR ASCOT2E
10880 M:      Sergey Kozlov <serjk@netup.ru>
10881 M:      Abylay Ospan <aospan@netup.ru>
10882 L:      linux-media@vger.kernel.org
10883 S:      Supported
10884 W:      https://linuxtv.org
10885 W:      http://netup.tv/
10886 T:      git git://linuxtv.org/media_tree.git
10887 F:      drivers/media/dvb-frontends/ascot2e*
10888
10889 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10890 M:      Jasmin Jessich <jasmin@anw.at>
10891 L:      linux-media@vger.kernel.org
10892 S:      Maintained
10893 W:      https://linuxtv.org
10894 T:      git git://linuxtv.org/media_tree.git
10895 F:      drivers/media/dvb-frontends/cxd2099*
10896
10897 MEDIA DRIVERS FOR CXD2841ER
10898 M:      Sergey Kozlov <serjk@netup.ru>
10899 M:      Abylay Ospan <aospan@netup.ru>
10900 L:      linux-media@vger.kernel.org
10901 S:      Supported
10902 W:      https://linuxtv.org
10903 W:      http://netup.tv/
10904 T:      git git://linuxtv.org/media_tree.git
10905 F:      drivers/media/dvb-frontends/cxd2841er*
10906
10907 MEDIA DRIVERS FOR CXD2880
10908 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10909 L:      linux-media@vger.kernel.org
10910 S:      Supported
10911 W:      http://linuxtv.org/
10912 T:      git git://linuxtv.org/media_tree.git
10913 F:      drivers/media/dvb-frontends/cxd2880/*
10914 F:      drivers/media/spi/cxd2880*
10915
10916 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10917 L:      linux-media@vger.kernel.org
10918 S:      Orphan
10919 W:      https://linuxtv.org
10920 T:      git git://linuxtv.org/media_tree.git
10921 F:      drivers/media/pci/ddbridge/*
10922
10923 MEDIA DRIVERS FOR FREESCALE IMX
10924 M:      Steve Longerbeam <slongerbeam@gmail.com>
10925 M:      Philipp Zabel <p.zabel@pengutronix.de>
10926 L:      linux-media@vger.kernel.org
10927 S:      Maintained
10928 T:      git git://linuxtv.org/media_tree.git
10929 F:      Documentation/admin-guide/media/imx.rst
10930 F:      Documentation/devicetree/bindings/media/imx.txt
10931 F:      drivers/staging/media/imx/
10932 F:      include/linux/imx-media.h
10933 F:      include/media/imx.h
10934
10935 MEDIA DRIVERS FOR FREESCALE IMX7
10936 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10937 L:      linux-media@vger.kernel.org
10938 S:      Maintained
10939 T:      git git://linuxtv.org/media_tree.git
10940 F:      Documentation/admin-guide/media/imx7.rst
10941 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
10942 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
10943 F:      drivers/staging/media/imx/imx7-media-csi.c
10944 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10945
10946 MEDIA DRIVERS FOR HELENE
10947 M:      Abylay Ospan <aospan@netup.ru>
10948 L:      linux-media@vger.kernel.org
10949 S:      Supported
10950 W:      https://linuxtv.org
10951 W:      http://netup.tv/
10952 T:      git git://linuxtv.org/media_tree.git
10953 F:      drivers/media/dvb-frontends/helene*
10954
10955 MEDIA DRIVERS FOR HORUS3A
10956 M:      Sergey Kozlov <serjk@netup.ru>
10957 M:      Abylay Ospan <aospan@netup.ru>
10958 L:      linux-media@vger.kernel.org
10959 S:      Supported
10960 W:      https://linuxtv.org
10961 W:      http://netup.tv/
10962 T:      git git://linuxtv.org/media_tree.git
10963 F:      drivers/media/dvb-frontends/horus3a*
10964
10965 MEDIA DRIVERS FOR LNBH25
10966 M:      Sergey Kozlov <serjk@netup.ru>
10967 M:      Abylay Ospan <aospan@netup.ru>
10968 L:      linux-media@vger.kernel.org
10969 S:      Supported
10970 W:      https://linuxtv.org
10971 W:      http://netup.tv/
10972 T:      git git://linuxtv.org/media_tree.git
10973 F:      drivers/media/dvb-frontends/lnbh25*
10974
10975 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10976 L:      linux-media@vger.kernel.org
10977 S:      Orphan
10978 W:      https://linuxtv.org
10979 T:      git git://linuxtv.org/media_tree.git
10980 F:      drivers/media/dvb-frontends/mxl5xx*
10981
10982 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10983 M:      Sergey Kozlov <serjk@netup.ru>
10984 M:      Abylay Ospan <aospan@netup.ru>
10985 L:      linux-media@vger.kernel.org
10986 S:      Supported
10987 W:      https://linuxtv.org
10988 W:      http://netup.tv/
10989 T:      git git://linuxtv.org/media_tree.git
10990 F:      drivers/media/pci/netup_unidvb/*
10991
10992 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10993 M:      Dmitry Osipenko <digetx@gmail.com>
10994 L:      linux-media@vger.kernel.org
10995 L:      linux-tegra@vger.kernel.org
10996 S:      Maintained
10997 T:      git git://linuxtv.org/media_tree.git
10998 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10999 F:      drivers/staging/media/tegra-vde/
11000
11001 MEDIA DRIVERS FOR RENESAS - CEU
11002 M:      Jacopo Mondi <jacopo@jmondi.org>
11003 L:      linux-media@vger.kernel.org
11004 L:      linux-renesas-soc@vger.kernel.org
11005 S:      Supported
11006 T:      git git://linuxtv.org/media_tree.git
11007 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11008 F:      drivers/media/platform/renesas-ceu.c
11009 F:      include/media/drv-intf/renesas-ceu.h
11010
11011 MEDIA DRIVERS FOR RENESAS - DRIF
11012 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11013 L:      linux-media@vger.kernel.org
11014 L:      linux-renesas-soc@vger.kernel.org
11015 S:      Supported
11016 T:      git git://linuxtv.org/media_tree.git
11017 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
11018 F:      drivers/media/platform/rcar_drif.c
11019
11020 MEDIA DRIVERS FOR RENESAS - FCP
11021 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11022 L:      linux-media@vger.kernel.org
11023 L:      linux-renesas-soc@vger.kernel.org
11024 S:      Supported
11025 T:      git git://linuxtv.org/media_tree.git
11026 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11027 F:      drivers/media/platform/rcar-fcp.c
11028 F:      include/media/rcar-fcp.h
11029
11030 MEDIA DRIVERS FOR RENESAS - FDP1
11031 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11032 L:      linux-media@vger.kernel.org
11033 L:      linux-renesas-soc@vger.kernel.org
11034 S:      Supported
11035 T:      git git://linuxtv.org/media_tree.git
11036 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11037 F:      drivers/media/platform/rcar_fdp1.c
11038
11039 MEDIA DRIVERS FOR RENESAS - VIN
11040 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11041 L:      linux-media@vger.kernel.org
11042 L:      linux-renesas-soc@vger.kernel.org
11043 S:      Supported
11044 T:      git git://linuxtv.org/media_tree.git
11045 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11046 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11047 F:      drivers/media/platform/rcar-vin/
11048
11049 MEDIA DRIVERS FOR RENESAS - VSP1
11050 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11051 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11052 L:      linux-media@vger.kernel.org
11053 L:      linux-renesas-soc@vger.kernel.org
11054 S:      Supported
11055 T:      git git://linuxtv.org/media_tree.git
11056 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11057 F:      drivers/media/platform/vsp1/
11058
11059 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR 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/stv0910*
11065
11066 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11067 L:      linux-media@vger.kernel.org
11068 S:      Orphan
11069 W:      https://linuxtv.org
11070 T:      git git://linuxtv.org/media_tree.git
11071 F:      drivers/media/dvb-frontends/stv6111*
11072
11073 MEDIA DRIVERS FOR STM32 - DCMI
11074 M:      Hugues Fruchet <hugues.fruchet@st.com>
11075 L:      linux-media@vger.kernel.org
11076 S:      Supported
11077 T:      git git://linuxtv.org/media_tree.git
11078 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11079 F:      drivers/media/platform/stm32/stm32-dcmi.c
11080
11081 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11082 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11083 L:      linux-media@vger.kernel.org
11084 S:      Maintained
11085 W:      https://linuxtv.org
11086 Q:      http://patchwork.kernel.org/project/linux-media/list/
11087 T:      git git://linuxtv.org/media_tree.git
11088 F:      Documentation/admin-guide/media/
11089 F:      Documentation/devicetree/bindings/media/
11090 F:      Documentation/driver-api/media/
11091 F:      Documentation/userspace-api/media/
11092 F:      drivers/media/
11093 F:      drivers/staging/media/
11094 F:      include/linux/platform_data/media/
11095 F:      include/media/
11096 F:      include/uapi/linux/dvb/
11097 F:      include/uapi/linux/ivtv*
11098 F:      include/uapi/linux/media.h
11099 F:      include/uapi/linux/meye.h
11100 F:      include/uapi/linux/uvcvideo.h
11101 F:      include/uapi/linux/v4l2-*
11102 F:      include/uapi/linux/videodev2.h
11103
11104 MEDIATEK BLUETOOTH DRIVER
11105 M:      Sean Wang <sean.wang@mediatek.com>
11106 L:      linux-bluetooth@vger.kernel.org
11107 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11108 S:      Maintained
11109 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11110 F:      drivers/bluetooth/btmtkuart.c
11111
11112 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11113 M:      Sean Wang <sean.wang@mediatek.com>
11114 L:      linux-pm@vger.kernel.org
11115 S:      Maintained
11116 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11117 F:      drivers/power/reset/mt6323-poweroff.c
11118
11119 MEDIATEK CIR DRIVER
11120 M:      Sean Wang <sean.wang@mediatek.com>
11121 S:      Maintained
11122 F:      drivers/media/rc/mtk-cir.c
11123
11124 MEDIATEK DMA DRIVER
11125 M:      Sean Wang <sean.wang@mediatek.com>
11126 L:      dmaengine@vger.kernel.org
11127 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11128 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11129 S:      Maintained
11130 F:      Documentation/devicetree/bindings/dma/mtk-*
11131 F:      drivers/dma/mediatek/
11132
11133 MEDIATEK ETHERNET DRIVER
11134 M:      Felix Fietkau <nbd@nbd.name>
11135 M:      John Crispin <john@phrozen.org>
11136 M:      Sean Wang <sean.wang@mediatek.com>
11137 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11138 L:      netdev@vger.kernel.org
11139 S:      Maintained
11140 F:      drivers/net/ethernet/mediatek/
11141
11142 MEDIATEK I2C CONTROLLER DRIVER
11143 M:      Qii Wang <qii.wang@mediatek.com>
11144 L:      linux-i2c@vger.kernel.org
11145 S:      Maintained
11146 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11147 F:      drivers/i2c/busses/i2c-mt65xx.c
11148
11149 MEDIATEK JPEG DRIVER
11150 M:      Rick Chang <rick.chang@mediatek.com>
11151 M:      Bin Liu <bin.liu@mediatek.com>
11152 S:      Supported
11153 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11154 F:      drivers/media/platform/mtk-jpeg/
11155
11156 MEDIATEK MDP DRIVER
11157 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11158 M:      Houlong Wei <houlong.wei@mediatek.com>
11159 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11160 S:      Supported
11161 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11162 F:      drivers/media/platform/mtk-mdp/
11163 F:      drivers/media/platform/mtk-vpu/
11164
11165 MEDIATEK MEDIA DRIVER
11166 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11167 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11168 S:      Supported
11169 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11170 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11171 F:      drivers/media/platform/mtk-vcodec/
11172 F:      drivers/media/platform/mtk-vpu/
11173
11174 MEDIATEK MMC/SD/SDIO DRIVER
11175 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11176 S:      Maintained
11177 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
11178 F:      drivers/mmc/host/mtk-sd.c
11179
11180 MEDIATEK MT76 WIRELESS LAN DRIVER
11181 M:      Felix Fietkau <nbd@nbd.name>
11182 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11183 R:      Ryder Lee <ryder.lee@mediatek.com>
11184 L:      linux-wireless@vger.kernel.org
11185 S:      Maintained
11186 F:      drivers/net/wireless/mediatek/mt76/
11187
11188 MEDIATEK MT7601U WIRELESS LAN DRIVER
11189 M:      Jakub Kicinski <kubakici@wp.pl>
11190 L:      linux-wireless@vger.kernel.org
11191 S:      Maintained
11192 F:      drivers/net/wireless/mediatek/mt7601u/
11193
11194 MEDIATEK MT7621/28/88 I2C DRIVER
11195 M:      Stefan Roese <sr@denx.de>
11196 L:      linux-i2c@vger.kernel.org
11197 S:      Maintained
11198 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11199 F:      drivers/i2c/busses/i2c-mt7621.c
11200
11201 MEDIATEK MT7621 PHY PCI DRIVER
11202 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11203 S:      Maintained
11204 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11205 F:      drivers/phy/ralink/phy-mt7621-pci.c
11206
11207 MEDIATEK NAND CONTROLLER DRIVER
11208 L:      linux-mtd@lists.infradead.org
11209 S:      Orphan
11210 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11211 F:      drivers/mtd/nand/raw/mtk_*
11212
11213 MEDIATEK PMIC LED DRIVER
11214 M:      Sean Wang <sean.wang@mediatek.com>
11215 S:      Maintained
11216 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11217 F:      drivers/leds/leds-mt6323.c
11218
11219 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11220 M:      Sean Wang <sean.wang@mediatek.com>
11221 S:      Maintained
11222 F:      drivers/char/hw_random/mtk-rng.c
11223
11224 MEDIATEK SWITCH DRIVER
11225 M:      Sean Wang <sean.wang@mediatek.com>
11226 M:      Landen Chao <Landen.Chao@mediatek.com>
11227 L:      netdev@vger.kernel.org
11228 S:      Maintained
11229 F:      drivers/net/dsa/mt7530.*
11230 F:      net/dsa/tag_mtk.c
11231
11232 MEDIATEK USB3 DRD IP DRIVER
11233 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
11234 L:      linux-usb@vger.kernel.org
11235 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11236 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11237 S:      Maintained
11238 F:      drivers/usb/mtu3/
11239
11240 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11241 M:      Peter Senna Tschudin <peter.senna@gmail.com>
11242 M:      Martin Donnelly <martin.donnelly@ge.com>
11243 M:      Martyn Welch <martyn.welch@collabora.co.uk>
11244 S:      Maintained
11245 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11246 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11247
11248 MEGARAID SCSI/SAS DRIVERS
11249 M:      Kashyap Desai <kashyap.desai@broadcom.com>
11250 M:      Sumit Saxena <sumit.saxena@broadcom.com>
11251 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11252 L:      megaraidlinux.pdl@broadcom.com
11253 L:      linux-scsi@vger.kernel.org
11254 S:      Maintained
11255 W:      http://www.avagotech.com/support/
11256 F:      Documentation/scsi/megaraid.rst
11257 F:      drivers/scsi/megaraid.*
11258 F:      drivers/scsi/megaraid/
11259
11260 MELEXIS MLX90614 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/mlx90614.c
11266
11267 MELEXIS MLX90632 DRIVER
11268 M:      Crt Mori <cmo@melexis.com>
11269 L:      linux-iio@vger.kernel.org
11270 S:      Supported
11271 W:      http://www.melexis.com
11272 F:      drivers/iio/temperature/mlx90632.c
11273
11274 MELFAS MIP4 TOUCHSCREEN DRIVER
11275 M:      Sangwon Jee <jeesw@melfas.com>
11276 S:      Supported
11277 W:      http://www.melfas.com
11278 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11279 F:      drivers/input/touchscreen/melfas_mip4.c
11280
11281 MELLANOX BLUEFIELD I2C DRIVER
11282 M:      Khalil Blaiech <kblaiech@nvidia.com>
11283 L:      linux-i2c@vger.kernel.org
11284 S:      Supported
11285 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
11286 F:      drivers/i2c/busses/i2c-mlxbf.c
11287
11288 MELLANOX ETHERNET DRIVER (mlx4_en)
11289 M:      Tariq Toukan <tariqt@nvidia.com>
11290 L:      netdev@vger.kernel.org
11291 S:      Supported
11292 W:      http://www.mellanox.com
11293 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11294 F:      drivers/net/ethernet/mellanox/mlx4/en_*
11295
11296 MELLANOX ETHERNET DRIVER (mlx5e)
11297 M:      Saeed Mahameed <saeedm@nvidia.com>
11298 L:      netdev@vger.kernel.org
11299 S:      Supported
11300 W:      http://www.mellanox.com
11301 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11302 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
11303
11304 MELLANOX ETHERNET INNOVA DRIVERS
11305 R:      Boris Pismenny <borisp@nvidia.com>
11306 L:      netdev@vger.kernel.org
11307 S:      Supported
11308 W:      http://www.mellanox.com
11309 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11310 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
11311 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11312 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11313 F:      include/linux/mlx5/mlx5_ifc_fpga.h
11314
11315 MELLANOX ETHERNET SWITCH DRIVERS
11316 M:      Jiri Pirko <jiri@nvidia.com>
11317 M:      Ido Schimmel <idosch@nvidia.com>
11318 L:      netdev@vger.kernel.org
11319 S:      Supported
11320 W:      http://www.mellanox.com
11321 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11322 F:      drivers/net/ethernet/mellanox/mlxsw/
11323 F:      tools/testing/selftests/drivers/net/mlxsw/
11324
11325 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11326 M:      mlxsw@nvidia.com
11327 L:      netdev@vger.kernel.org
11328 S:      Supported
11329 W:      http://www.mellanox.com
11330 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11331 F:      drivers/net/ethernet/mellanox/mlxfw/
11332
11333 MELLANOX HARDWARE PLATFORM SUPPORT
11334 M:      Andy Shevchenko <andy@infradead.org>
11335 M:      Darren Hart <dvhart@infradead.org>
11336 M:      Vadim Pasternak <vadimp@nvidia.com>
11337 L:      platform-driver-x86@vger.kernel.org
11338 S:      Supported
11339 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11340 F:      drivers/platform/mellanox/
11341 F:      include/linux/platform_data/mlxreg.h
11342
11343 MELLANOX MLX4 core VPI driver
11344 M:      Tariq Toukan <tariqt@nvidia.com>
11345 L:      netdev@vger.kernel.org
11346 L:      linux-rdma@vger.kernel.org
11347 S:      Supported
11348 W:      http://www.mellanox.com
11349 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11350 F:      drivers/net/ethernet/mellanox/mlx4/
11351 F:      include/linux/mlx4/
11352
11353 MELLANOX MLX4 IB driver
11354 M:      Yishai Hadas <yishaih@nvidia.com>
11355 L:      linux-rdma@vger.kernel.org
11356 S:      Supported
11357 W:      http://www.mellanox.com
11358 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11359 F:      drivers/infiniband/hw/mlx4/
11360 F:      include/linux/mlx4/
11361 F:      include/uapi/rdma/mlx4-abi.h
11362
11363 MELLANOX MLX5 core VPI driver
11364 M:      Saeed Mahameed <saeedm@nvidia.com>
11365 M:      Leon Romanovsky <leonro@nvidia.com>
11366 L:      netdev@vger.kernel.org
11367 L:      linux-rdma@vger.kernel.org
11368 S:      Supported
11369 W:      http://www.mellanox.com
11370 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11371 F:      Documentation/networking/device_drivers/ethernet/mellanox/
11372 F:      drivers/net/ethernet/mellanox/mlx5/core/
11373 F:      include/linux/mlx5/
11374
11375 MELLANOX MLX5 IB driver
11376 M:      Leon Romanovsky <leonro@nvidia.com>
11377 L:      linux-rdma@vger.kernel.org
11378 S:      Supported
11379 W:      http://www.mellanox.com
11380 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11381 F:      drivers/infiniband/hw/mlx5/
11382 F:      include/linux/mlx5/
11383 F:      include/uapi/rdma/mlx5-abi.h
11384
11385 MELLANOX MLXCPLD I2C AND MUX DRIVER
11386 M:      Vadim Pasternak <vadimp@nvidia.com>
11387 M:      Michael Shych <michaelsh@nvidia.com>
11388 L:      linux-i2c@vger.kernel.org
11389 S:      Supported
11390 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11391 F:      drivers/i2c/busses/i2c-mlxcpld.c
11392 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11393
11394 MELLANOX MLXCPLD LED DRIVER
11395 M:      Vadim Pasternak <vadimp@nvidia.com>
11396 L:      linux-leds@vger.kernel.org
11397 S:      Supported
11398 F:      Documentation/leds/leds-mlxcpld.rst
11399 F:      drivers/leds/leds-mlxcpld.c
11400 F:      drivers/leds/leds-mlxreg.c
11401
11402 MELLANOX PLATFORM DRIVER
11403 M:      Vadim Pasternak <vadimp@nvidia.com>
11404 L:      platform-driver-x86@vger.kernel.org
11405 S:      Supported
11406 F:      drivers/platform/x86/mlx-platform.c
11407
11408 MEMBARRIER SUPPORT
11409 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11410 M:      "Paul E. McKenney" <paulmck@kernel.org>
11411 L:      linux-kernel@vger.kernel.org
11412 S:      Supported
11413 F:      arch/powerpc/include/asm/membarrier.h
11414 F:      include/uapi/linux/membarrier.h
11415 F:      kernel/sched/membarrier.c
11416
11417 MEMBLOCK
11418 M:      Mike Rapoport <rppt@linux.ibm.com>
11419 L:      linux-mm@kvack.org
11420 S:      Maintained
11421 F:      Documentation/core-api/boot-time-mm.rst
11422 F:      include/linux/memblock.h
11423 F:      mm/memblock.c
11424
11425 MEMORY CONTROLLER DRIVERS
11426 M:      Krzysztof Kozlowski <krzk@kernel.org>
11427 L:      linux-kernel@vger.kernel.org
11428 S:      Maintained
11429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
11430 F:      Documentation/devicetree/bindings/memory-controllers/
11431 F:      drivers/memory/
11432
11433 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
11434 M:      Dmitry Osipenko <digetx@gmail.com>
11435 L:      linux-pm@vger.kernel.org
11436 L:      linux-tegra@vger.kernel.org
11437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
11438 S:      Maintained
11439 F:      drivers/devfreq/tegra20-devfreq.c
11440 F:      drivers/devfreq/tegra30-devfreq.c
11441
11442 MEMORY MANAGEMENT
11443 M:      Andrew Morton <akpm@linux-foundation.org>
11444 L:      linux-mm@kvack.org
11445 S:      Maintained
11446 W:      http://www.linux-mm.org
11447 T:      quilt https://ozlabs.org/~akpm/mmotm/
11448 T:      quilt https://ozlabs.org/~akpm/mmots/
11449 T:      git git://github.com/hnaz/linux-mm.git
11450 F:      include/linux/gfp.h
11451 F:      include/linux/memory_hotplug.h
11452 F:      include/linux/mm.h
11453 F:      include/linux/mmzone.h
11454 F:      include/linux/vmalloc.h
11455 F:      mm/
11456
11457 MEMORY TECHNOLOGY DEVICES (MTD)
11458 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11459 M:      Richard Weinberger <richard@nod.at>
11460 M:      Vignesh Raghavendra <vigneshr@ti.com>
11461 L:      linux-mtd@lists.infradead.org
11462 S:      Maintained
11463 W:      http://www.linux-mtd.infradead.org/
11464 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11465 C:      irc://irc.oftc.net/mtd
11466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11468 F:      Documentation/devicetree/bindings/mtd/
11469 F:      drivers/mtd/
11470 F:      include/linux/mtd/
11471 F:      include/uapi/mtd/
11472
11473 MEN A21 WATCHDOG DRIVER
11474 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11475 L:      linux-watchdog@vger.kernel.org
11476 S:      Maintained
11477 F:      drivers/watchdog/mena21_wdt.c
11478
11479 MEN CHAMELEON BUS (mcb)
11480 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11481 S:      Maintained
11482 F:      Documentation/driver-api/men-chameleon-bus.rst
11483 F:      drivers/mcb/
11484 F:      include/linux/mcb.h
11485
11486 MEN F21BMC (Board Management Controller)
11487 M:      Andreas Werner <andreas.werner@men.de>
11488 S:      Supported
11489 F:      Documentation/hwmon/menf21bmc.rst
11490 F:      drivers/hwmon/menf21bmc_hwmon.c
11491 F:      drivers/leds/leds-menf21bmc.c
11492 F:      drivers/mfd/menf21bmc.c
11493 F:      drivers/watchdog/menf21bmc_wdt.c
11494
11495 MEN Z069 WATCHDOG DRIVER
11496 M:      Johannes Thumshirn <jth@kernel.org>
11497 L:      linux-watchdog@vger.kernel.org
11498 S:      Maintained
11499 F:      drivers/watchdog/menz69_wdt.c
11500
11501 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11502 M:      Neil Armstrong <narmstrong@baylibre.com>
11503 L:      linux-media@vger.kernel.org
11504 L:      linux-amlogic@lists.infradead.org
11505 S:      Supported
11506 W:      http://linux-meson.com/
11507 T:      git git://linuxtv.org/media_tree.git
11508 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11509 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
11510 F:      drivers/media/cec/platform/meson/ao-cec.c
11511
11512 MESON GE2D DRIVER FOR AMLOGIC SOCS
11513 M:      Neil Armstrong <narmstrong@baylibre.com>
11514 L:      linux-media@vger.kernel.org
11515 L:      linux-amlogic@lists.infradead.org
11516 S:      Supported
11517 T:      git git://linuxtv.org/media_tree.git
11518 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
11519 F:      drivers/media/meson/ge2d/
11520
11521 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11522 M:      Liang Yang <liang.yang@amlogic.com>
11523 L:      linux-mtd@lists.infradead.org
11524 S:      Maintained
11525 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11526 F:      drivers/mtd/nand/raw/meson_*
11527
11528 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11529 M:      Neil Armstrong <narmstrong@baylibre.com>
11530 L:      linux-media@vger.kernel.org
11531 L:      linux-amlogic@lists.infradead.org
11532 S:      Supported
11533 T:      git git://linuxtv.org/media_tree.git
11534 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11535 F:      drivers/staging/media/meson/vdec/
11536
11537 METHODE UDPU SUPPORT
11538 M:      Vladimir Vid <vladimir.vid@sartura.hr>
11539 S:      Maintained
11540 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11541
11542 MHI BUS
11543 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11544 M:      Hemant Kumar <hemantk@codeaurora.org>
11545 L:      linux-arm-msm@vger.kernel.org
11546 S:      Maintained
11547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11548 F:      Documentation/ABI/stable/sysfs-bus-mhi
11549 F:      Documentation/mhi/
11550 F:      drivers/bus/mhi/
11551 F:      include/linux/mhi.h
11552
11553 MICROBLAZE ARCHITECTURE
11554 M:      Michal Simek <monstr@monstr.eu>
11555 S:      Supported
11556 W:      http://www.monstr.eu/fdt/
11557 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11558 F:      arch/microblaze/
11559
11560 MICROCHIP AT91 DMA DRIVERS
11561 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11562 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11563 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11564 L:      dmaengine@vger.kernel.org
11565 S:      Supported
11566 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11567 F:      drivers/dma/at_hdmac.c
11568 F:      drivers/dma/at_hdmac_regs.h
11569 F:      drivers/dma/at_xdmac.c
11570 F:      include/dt-bindings/dma/at91.h
11571 F:      include/linux/platform_data/dma-atmel.h
11572
11573 MICROCHIP AT91 SERIAL DRIVER
11574 M:      Richard Genoud <richard.genoud@gmail.com>
11575 S:      Maintained
11576 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11577 F:      drivers/tty/serial/atmel_serial.c
11578 F:      drivers/tty/serial/atmel_serial.h
11579
11580 MICROCHIP AT91 USART MFD DRIVER
11581 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11582 L:      linux-kernel@vger.kernel.org
11583 S:      Supported
11584 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11585 F:      drivers/mfd/at91-usart.c
11586 F:      include/dt-bindings/mfd/at91-usart.h
11587
11588 MICROCHIP AT91 USART SPI DRIVER
11589 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11590 L:      linux-spi@vger.kernel.org
11591 S:      Supported
11592 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11593 F:      drivers/spi/spi-at91-usart.c
11594
11595 MICROCHIP AUDIO ASOC DRIVERS
11596 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11597 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11598 S:      Supported
11599 F:      sound/soc/atmel
11600
11601 MICROCHIP ECC DRIVER
11602 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11603 L:      linux-crypto@vger.kernel.org
11604 S:      Maintained
11605 F:      drivers/crypto/atmel-ecc.*
11606
11607 MICROCHIP I2C DRIVER
11608 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11609 L:      linux-i2c@vger.kernel.org
11610 S:      Supported
11611 F:      drivers/i2c/busses/i2c-at91-*.c
11612 F:      drivers/i2c/busses/i2c-at91.h
11613
11614 MICROCHIP ISC DRIVER
11615 M:      Eugen Hristev <eugen.hristev@microchip.com>
11616 L:      linux-media@vger.kernel.org
11617 S:      Supported
11618 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11619 F:      drivers/media/platform/atmel/atmel-isc-base.c
11620 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11621 F:      drivers/media/platform/atmel/atmel-isc.h
11622 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11623 F:      include/linux/atmel-isc-media.h
11624
11625 MICROCHIP ISI DRIVER
11626 M:      Eugen Hristev <eugen.hristev@microchip.com>
11627 L:      linux-media@vger.kernel.org
11628 S:      Supported
11629 F:      drivers/media/platform/atmel/atmel-isi.c
11630 F:      drivers/media/platform/atmel/atmel-isi.h
11631
11632 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11633 M:      Woojung Huh <woojung.huh@microchip.com>
11634 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11635 L:      netdev@vger.kernel.org
11636 S:      Maintained
11637 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
11638 F:      drivers/net/dsa/microchip/*
11639 F:      include/linux/platform_data/microchip-ksz.h
11640 F:      net/dsa/tag_ksz.c
11641
11642 MICROCHIP LAN743X ETHERNET DRIVER
11643 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
11644 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11645 L:      netdev@vger.kernel.org
11646 S:      Maintained
11647 F:      drivers/net/ethernet/microchip/lan743x_*
11648
11649 MICROCHIP LCDFB DRIVER
11650 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11651 L:      linux-fbdev@vger.kernel.org
11652 S:      Maintained
11653 F:      drivers/video/fbdev/atmel_lcdfb.c
11654 F:      include/video/atmel_lcdc.h
11655
11656 MICROCHIP MCP16502 PMIC DRIVER
11657 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
11658 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11659 S:      Maintained
11660 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11661 F:      drivers/regulator/mcp16502.c
11662
11663 MICROCHIP MCP3911 ADC DRIVER
11664 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11665 M:      Kent Gustavsson <kent@minoris.se>
11666 L:      linux-iio@vger.kernel.org
11667 S:      Supported
11668 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11669 F:      drivers/iio/adc/mcp3911.c
11670
11671 MICROCHIP MMC/SD/SDIO MCI DRIVER
11672 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11673 S:      Maintained
11674 F:      drivers/mmc/host/atmel-mci.c
11675
11676 MICROCHIP NAND DRIVER
11677 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11678 L:      linux-mtd@lists.infradead.org
11679 S:      Supported
11680 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11681 F:      drivers/mtd/nand/raw/atmel/*
11682
11683 MICROCHIP PWM DRIVER
11684 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11685 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11686 L:      linux-pwm@vger.kernel.org
11687 S:      Supported
11688 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11689 F:      drivers/pwm/pwm-atmel.c
11690
11691 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11692 M:      Eugen Hristev <eugen.hristev@microchip.com>
11693 L:      linux-iio@vger.kernel.org
11694 S:      Supported
11695 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11696 F:      drivers/iio/adc/at91-sama5d2_adc.c
11697 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11698
11699 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11700 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11701 S:      Supported
11702 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11703
11704 MICROCHIP SPI DRIVER
11705 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11706 S:      Supported
11707 F:      drivers/spi/spi-atmel.*
11708
11709 MICROCHIP SSC DRIVER
11710 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11711 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11712 S:      Supported
11713 F:      drivers/misc/atmel-ssc.c
11714 F:      include/linux/atmel-ssc.h
11715
11716 MICROCHIP USB251XB DRIVER
11717 M:      Richard Leitner <richard.leitner@skidata.com>
11718 L:      linux-usb@vger.kernel.org
11719 S:      Maintained
11720 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11721 F:      drivers/usb/misc/usb251xb.c
11722
11723 MICROCHIP USBA UDC DRIVER
11724 M:      Cristian Birsan <cristian.birsan@microchip.com>
11725 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11726 S:      Supported
11727 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11728
11729 MICROCHIP WILC1000 WIFI DRIVER
11730 M:      Ajay Singh <ajay.kathat@microchip.com>
11731 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11732 L:      linux-wireless@vger.kernel.org
11733 S:      Supported
11734 F:      drivers/net/wireless/microchip/wilc1000/
11735
11736 MICROSEMI MIPS SOCS
11737 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11738 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11739 L:      linux-mips@vger.kernel.org
11740 S:      Supported
11741 F:      Documentation/devicetree/bindings/mips/mscc.txt
11742 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
11743 F:      arch/mips/boot/dts/mscc/
11744 F:      arch/mips/configs/generic/board-ocelot.config
11745 F:      arch/mips/generic/board-ocelot.c
11746
11747 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11748 M:      Don Brace <don.brace@microchip.com>
11749 L:      storagedev@microchip.com
11750 L:      linux-scsi@vger.kernel.org
11751 S:      Supported
11752 F:      Documentation/scsi/smartpqi.rst
11753 F:      drivers/scsi/smartpqi/Kconfig
11754 F:      drivers/scsi/smartpqi/Makefile
11755 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11756 F:      include/linux/cciss*.h
11757 F:      include/uapi/linux/cciss*.h
11758
11759 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
11760 M:      Maximilian Luz <luzmaximilian@gmail.com>
11761 L:      platform-driver-x86@vger.kernel.org
11762 S:      Maintained
11763 F:      drivers/platform/surface/surface_gpe.c
11764
11765 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
11766 M:      Hans de Goede <hdegoede@redhat.com>
11767 M:      Mark Gross <mgross@linux.intel.com>
11768 M:      Maximilian Luz <luzmaximilian@gmail.com>
11769 L:      platform-driver-x86@vger.kernel.org
11770 S:      Maintained
11771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
11772 F:      drivers/platform/surface/
11773
11774 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11775 M:      Chen Yu <yu.c.chen@intel.com>
11776 L:      platform-driver-x86@vger.kernel.org
11777 S:      Supported
11778 F:      drivers/platform/surface/surfacepro3_button.c
11779
11780 MICROTEK X6 SCANNER
11781 M:      Oliver Neukum <oliver@neukum.org>
11782 S:      Maintained
11783 F:      drivers/usb/image/microtek.*
11784
11785 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
11786 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11787 L:      linux-media@vger.kernel.org
11788 S:      Maintained
11789 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
11790 F:      Documentation/driver-api/media/drivers/ccs/
11791 F:      drivers/media/i2c/ccs-pll.c
11792 F:      drivers/media/i2c/ccs-pll.h
11793 F:      drivers/media/i2c/ccs/
11794 F:      include/uapi/linux/smiapp.h
11795
11796 MIPS
11797 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11798 L:      linux-mips@vger.kernel.org
11799 S:      Maintained
11800 W:      http://www.linux-mips.org/
11801 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11803 F:      Documentation/devicetree/bindings/mips/
11804 F:      Documentation/mips/
11805 F:      arch/mips/
11806 F:      drivers/platform/mips/
11807
11808 MIPS BOSTON DEVELOPMENT BOARD
11809 M:      Paul Burton <paulburton@kernel.org>
11810 L:      linux-mips@vger.kernel.org
11811 S:      Maintained
11812 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11813 F:      arch/mips/boot/dts/img/boston.dts
11814 F:      arch/mips/configs/generic/board-boston.config
11815 F:      drivers/clk/imgtec/clk-boston.c
11816 F:      include/dt-bindings/clock/boston-clock.h
11817
11818 MIPS CORE DRIVERS
11819 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11820 M:      Serge Semin <fancer.lancer@gmail.com>
11821 L:      linux-mips@vger.kernel.org
11822 S:      Supported
11823 F:      drivers/bus/mips_cdmm.c
11824 F:      drivers/clocksource/mips-gic-timer.c
11825 F:      drivers/cpuidle/cpuidle-cps.c
11826 F:      drivers/irqchip/irq-mips-cpu.c
11827 F:      drivers/irqchip/irq-mips-gic.c
11828
11829 MIPS GENERIC PLATFORM
11830 M:      Paul Burton <paulburton@kernel.org>
11831 L:      linux-mips@vger.kernel.org
11832 S:      Supported
11833 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
11834 F:      arch/mips/generic/
11835 F:      arch/mips/tools/generic-board-config.sh
11836
11837 MIPS RINT INSTRUCTION EMULATION
11838 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
11839 L:      linux-mips@vger.kernel.org
11840 S:      Supported
11841 F:      arch/mips/math-emu/dp_rint.c
11842 F:      arch/mips/math-emu/sp_rint.c
11843
11844 MIPS/LOONGSON1 ARCHITECTURE
11845 M:      Keguang Zhang <keguang.zhang@gmail.com>
11846 L:      linux-mips@vger.kernel.org
11847 S:      Maintained
11848 F:      arch/mips/include/asm/mach-loongson32/
11849 F:      arch/mips/loongson32/
11850 F:      drivers/*/*/*loongson1*
11851 F:      drivers/*/*loongson1*
11852
11853 MIPS/LOONGSON2EF ARCHITECTURE
11854 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11855 L:      linux-mips@vger.kernel.org
11856 S:      Maintained
11857 F:      arch/mips/include/asm/mach-loongson2ef/
11858 F:      arch/mips/loongson2ef/
11859 F:      drivers/*/*/*loongson2*
11860 F:      drivers/*/*loongson2*
11861
11862 MIPS/LOONGSON64 ARCHITECTURE
11863 M:      Huacai Chen <chenhc@lemote.com>
11864 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11865 L:      linux-mips@vger.kernel.org
11866 S:      Maintained
11867 F:      arch/mips/include/asm/mach-loongson64/
11868 F:      arch/mips/loongson64/
11869 F:      drivers/*/*/*loongson3*
11870 F:      drivers/*/*loongson3*
11871 F:      drivers/irqchip/irq-loongson*
11872 F:      drivers/platform/mips/cpu_hwmon.c
11873
11874 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11875 M:      Hans Verkuil <hverkuil@xs4all.nl>
11876 L:      linux-media@vger.kernel.org
11877 S:      Odd Fixes
11878 W:      https://linuxtv.org
11879 T:      git git://linuxtv.org/media_tree.git
11880 F:      drivers/media/radio/radio-miropcm20*
11881
11882 MMP SUPPORT
11883 R:      Lubomir Rintel <lkundrak@v3.sk>
11884 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11885 S:      Odd Fixes
11886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11887 F:      arch/arm/boot/dts/mmp*
11888 F:      arch/arm/mach-mmp/
11889 F:      include/linux/soc/mmp/
11890
11891 MMP USB PHY DRIVERS
11892 R:      Lubomir Rintel <lkundrak@v3.sk>
11893 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11894 S:      Maintained
11895 F:      drivers/phy/marvell/phy-mmp3-usb.c
11896 F:      drivers/phy/marvell/phy-pxa-usb.c
11897
11898 MMU GATHER AND TLB INVALIDATION
11899 M:      Will Deacon <will@kernel.org>
11900 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
11901 M:      Andrew Morton <akpm@linux-foundation.org>
11902 M:      Nick Piggin <npiggin@gmail.com>
11903 M:      Peter Zijlstra <peterz@infradead.org>
11904 L:      linux-arch@vger.kernel.org
11905 L:      linux-mm@kvack.org
11906 S:      Maintained
11907 F:      arch/*/include/asm/tlb.h
11908 F:      include/asm-generic/tlb.h
11909 F:      mm/mmu_gather.c
11910
11911 MN88472 MEDIA DRIVER
11912 M:      Antti Palosaari <crope@iki.fi>
11913 L:      linux-media@vger.kernel.org
11914 S:      Maintained
11915 W:      https://linuxtv.org
11916 W:      http://palosaari.fi/linux/
11917 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11918 F:      drivers/media/dvb-frontends/mn88472*
11919
11920 MN88473 MEDIA DRIVER
11921 M:      Antti Palosaari <crope@iki.fi>
11922 L:      linux-media@vger.kernel.org
11923 S:      Maintained
11924 W:      https://linuxtv.org
11925 W:      http://palosaari.fi/linux/
11926 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11927 F:      drivers/media/dvb-frontends/mn88473*
11928
11929 MODULE SUPPORT
11930 M:      Jessica Yu <jeyu@kernel.org>
11931 S:      Maintained
11932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11933 F:      include/linux/module.h
11934 F:      kernel/module.c
11935
11936 MONOLITHIC POWER SYSTEM PMIC DRIVER
11937 M:      Saravanan Sekar <sravanhome@gmail.com>
11938 S:      Maintained
11939 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
11940 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11941 F:      drivers/iio/adc/mp2629_adc.c
11942 F:      drivers/mfd/mp2629.c
11943 F:      drivers/power/supply/mp2629_charger.c
11944 F:      drivers/regulator/mp5416.c
11945 F:      drivers/regulator/mpq7920.c
11946 F:      drivers/regulator/mpq7920.h
11947 F:      include/linux/mfd/mp2629.h
11948
11949 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11950 S:      Orphan
11951 W:      http://popies.net/meye/
11952 F:      Documentation/userspace-api/media/drivers/meye*
11953 F:      drivers/media/pci/meye/
11954 F:      include/uapi/linux/meye.h
11955
11956 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11957 M:      Jiri Slaby <jirislaby@kernel.org>
11958 S:      Maintained
11959 F:      Documentation/driver-api/serial/moxa-smartio.rst
11960 F:      drivers/tty/mxser.*
11961
11962 MR800 AVERMEDIA USB FM RADIO DRIVER
11963 M:      Alexey Klimov <klimov.linux@gmail.com>
11964 L:      linux-media@vger.kernel.org
11965 S:      Maintained
11966 T:      git git://linuxtv.org/media_tree.git
11967 F:      drivers/media/radio/radio-mr800.c
11968
11969 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11970 M:      Alan Ott <alan@signal11.us>
11971 L:      linux-wpan@vger.kernel.org
11972 S:      Maintained
11973 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11974 F:      drivers/net/ieee802154/mrf24j40.c
11975
11976 MSI LAPTOP SUPPORT
11977 M:      "Lee, Chun-Yi" <jlee@suse.com>
11978 L:      platform-driver-x86@vger.kernel.org
11979 S:      Maintained
11980 F:      drivers/platform/x86/msi-laptop.c
11981
11982 MSI WMI SUPPORT
11983 L:      platform-driver-x86@vger.kernel.org
11984 S:      Orphan
11985 F:      drivers/platform/x86/msi-wmi.c
11986
11987 MSI001 MEDIA DRIVER
11988 M:      Antti Palosaari <crope@iki.fi>
11989 L:      linux-media@vger.kernel.org
11990 S:      Maintained
11991 W:      https://linuxtv.org
11992 W:      http://palosaari.fi/linux/
11993 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11994 T:      git git://linuxtv.org/anttip/media_tree.git
11995 F:      drivers/media/tuners/msi001*
11996
11997 MSI2500 MEDIA DRIVER
11998 M:      Antti Palosaari <crope@iki.fi>
11999 L:      linux-media@vger.kernel.org
12000 S:      Maintained
12001 W:      https://linuxtv.org
12002 W:      http://palosaari.fi/linux/
12003 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12004 T:      git git://linuxtv.org/anttip/media_tree.git
12005 F:      drivers/media/usb/msi2500/
12006
12007 MSTAR INTERRUPT CONTROLLER DRIVER
12008 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12009 M:      Daniel Palmer <daniel@thingy.jp>
12010 S:      Maintained
12011 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12012 F:      drivers/irqchip/irq-mst-intc.c
12013
12014 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12015 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12016 L:      linux-mtd@lists.infradead.org
12017 S:      Maintained
12018 F:      drivers/mtd/devices/docg3*
12019
12020 MT9M032 APTINA SENSOR DRIVER
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/mt9m032.c
12026 F:      include/media/i2c/mt9m032.h
12027
12028 MT9P031 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/mt9p031.c
12034 F:      include/media/i2c/mt9p031.h
12035
12036 MT9T001 APTINA CAMERA SENSOR
12037 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12038 L:      linux-media@vger.kernel.org
12039 S:      Maintained
12040 T:      git git://linuxtv.org/media_tree.git
12041 F:      drivers/media/i2c/mt9t001.c
12042 F:      include/media/i2c/mt9t001.h
12043
12044 MT9T112 APTINA CAMERA SENSOR
12045 M:      Jacopo Mondi <jacopo@jmondi.org>
12046 L:      linux-media@vger.kernel.org
12047 S:      Odd Fixes
12048 T:      git git://linuxtv.org/media_tree.git
12049 F:      drivers/media/i2c/mt9t112.c
12050 F:      include/media/i2c/mt9t112.h
12051
12052 MT9V032 APTINA CAMERA SENSOR
12053 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12054 L:      linux-media@vger.kernel.org
12055 S:      Maintained
12056 T:      git git://linuxtv.org/media_tree.git
12057 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12058 F:      drivers/media/i2c/mt9v032.c
12059 F:      include/media/i2c/mt9v032.h
12060
12061 MT9V111 APTINA CAMERA SENSOR
12062 M:      Jacopo Mondi <jacopo@jmondi.org>
12063 L:      linux-media@vger.kernel.org
12064 S:      Maintained
12065 T:      git git://linuxtv.org/media_tree.git
12066 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12067 F:      drivers/media/i2c/mt9v111.c
12068
12069 MULTIFUNCTION DEVICES (MFD)
12070 M:      Lee Jones <lee.jones@linaro.org>
12071 S:      Supported
12072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12073 F:      Documentation/devicetree/bindings/mfd/
12074 F:      drivers/mfd/
12075 F:      include/dt-bindings/mfd/
12076 F:      include/linux/mfd/
12077
12078 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12079 S:      Orphan
12080 F:      drivers/mmc/host/mmc_spi.c
12081 F:      include/linux/spi/mmc_spi.h
12082
12083 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12084 M:      Ulf Hansson <ulf.hansson@linaro.org>
12085 L:      linux-mmc@vger.kernel.org
12086 S:      Maintained
12087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12088 F:      Documentation/devicetree/bindings/mmc/
12089 F:      drivers/mmc/
12090 F:      include/linux/mmc/
12091 F:      include/uapi/linux/mmc/
12092
12093 MULTIPLEXER SUBSYSTEM
12094 M:      Peter Rosin <peda@axentia.se>
12095 S:      Maintained
12096 F:      Documentation/ABI/testing/sysfs-class-mux*
12097 F:      Documentation/devicetree/bindings/mux/
12098 F:      drivers/mux/
12099 F:      include/dt-bindings/mux/
12100 F:      include/linux/mux/
12101
12102 MULTITECH MULTIPORT CARD (ISICOM)
12103 S:      Orphan
12104 F:      drivers/tty/isicom.c
12105 F:      include/linux/isicom.h
12106
12107 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12108 M:      Bin Liu <b-liu@ti.com>
12109 L:      linux-usb@vger.kernel.org
12110 S:      Maintained
12111 F:      drivers/usb/musb/
12112
12113 MXL301RF MEDIA DRIVER
12114 M:      Akihiro Tsukada <tskd08@gmail.com>
12115 L:      linux-media@vger.kernel.org
12116 S:      Odd Fixes
12117 F:      drivers/media/tuners/mxl301rf*
12118
12119 MXL5007T MEDIA DRIVER
12120 M:      Michael Krufky <mkrufky@linuxtv.org>
12121 L:      linux-media@vger.kernel.org
12122 S:      Maintained
12123 W:      https://linuxtv.org
12124 W:      http://github.com/mkrufky
12125 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12126 T:      git git://linuxtv.org/mkrufky/tuners.git
12127 F:      drivers/media/tuners/mxl5007t.*
12128
12129 MXSFB DRM DRIVER
12130 M:      Marek Vasut <marex@denx.de>
12131 M:      Stefan Agner <stefan@agner.ch>
12132 L:      dri-devel@lists.freedesktop.org
12133 S:      Supported
12134 T:      git git://anongit.freedesktop.org/drm/drm-misc
12135 F:      Documentation/devicetree/bindings/display/mxsfb.txt
12136 F:      drivers/gpu/drm/mxsfb/
12137
12138 MYLEX DAC960 PCI RAID Controller
12139 M:      Hannes Reinecke <hare@kernel.org>
12140 L:      linux-scsi@vger.kernel.org
12141 S:      Supported
12142 F:      drivers/scsi/myrb.*
12143 F:      drivers/scsi/myrs.*
12144
12145 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12146 M:      Chris Lee <christopher.lee@cspi.com>
12147 L:      netdev@vger.kernel.org
12148 S:      Supported
12149 W:      https://www.cspi.com/ethernet-products/support/downloads/
12150 F:      drivers/net/ethernet/myricom/myri10ge/
12151
12152 NAND FLASH SUBSYSTEM
12153 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12154 R:      Richard Weinberger <richard@nod.at>
12155 L:      linux-mtd@lists.infradead.org
12156 S:      Maintained
12157 W:      http://www.linux-mtd.infradead.org/
12158 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12159 C:      irc://irc.oftc.net/mtd
12160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12161 F:      drivers/mtd/nand/
12162 F:      include/linux/mtd/*nand*.h
12163
12164 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12165 M:      Daniel Mack <zonque@gmail.com>
12166 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12167 S:      Maintained
12168 W:      http://www.native-instruments.com
12169 F:      sound/usb/caiaq/
12170
12171 NATSEMI ETHERNET DRIVER (DP8381x)
12172 S:      Orphan
12173 F:      drivers/net/ethernet/natsemi/natsemi.c
12174
12175 NCR 5380 SCSI DRIVERS
12176 M:      Finn Thain <fthain@telegraphics.com.au>
12177 M:      Michael Schmitz <schmitzmic@gmail.com>
12178 L:      linux-scsi@vger.kernel.org
12179 S:      Maintained
12180 F:      Documentation/scsi/g_NCR5380.rst
12181 F:      drivers/scsi/NCR5380.*
12182 F:      drivers/scsi/arm/cumana_1.c
12183 F:      drivers/scsi/arm/oak.c
12184 F:      drivers/scsi/atari_scsi.*
12185 F:      drivers/scsi/dmx3191d.c
12186 F:      drivers/scsi/g_NCR5380.*
12187 F:      drivers/scsi/mac_scsi.*
12188 F:      drivers/scsi/sun3_scsi.*
12189 F:      drivers/scsi/sun3_scsi_vme.c
12190
12191 NCSI LIBRARY
12192 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
12193 S:      Maintained
12194 F:      net/ncsi/
12195
12196 NCT6775 HARDWARE MONITOR DRIVER
12197 M:      Guenter Roeck <linux@roeck-us.net>
12198 L:      linux-hwmon@vger.kernel.org
12199 S:      Maintained
12200 F:      Documentation/hwmon/nct6775.rst
12201 F:      drivers/hwmon/nct6775.c
12202
12203 NETDEVSIM
12204 M:      Jakub Kicinski <kuba@kernel.org>
12205 S:      Maintained
12206 F:      drivers/net/netdevsim/*
12207
12208 NETEM NETWORK EMULATOR
12209 M:      Stephen Hemminger <stephen@networkplumber.org>
12210 L:      netdev@vger.kernel.org
12211 S:      Maintained
12212 F:      net/sched/sch_netem.c
12213
12214 NETERION 10GbE DRIVERS (s2io/vxge)
12215 M:      Jon Mason <jdmason@kudzu.us>
12216 L:      netdev@vger.kernel.org
12217 S:      Supported
12218 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12219 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12220 F:      drivers/net/ethernet/neterion/
12221
12222 NETFILTER
12223 M:      Pablo Neira Ayuso <pablo@netfilter.org>
12224 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
12225 M:      Florian Westphal <fw@strlen.de>
12226 L:      netfilter-devel@vger.kernel.org
12227 L:      coreteam@netfilter.org
12228 S:      Maintained
12229 W:      http://www.netfilter.org/
12230 W:      http://www.iptables.org/
12231 W:      http://www.nftables.org/
12232 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
12233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12235 F:      include/linux/netfilter*
12236 F:      include/linux/netfilter/
12237 F:      include/net/netfilter/
12238 F:      include/uapi/linux/netfilter*
12239 F:      include/uapi/linux/netfilter/
12240 F:      net/*/netfilter.c
12241 F:      net/*/netfilter/
12242 F:      net/bridge/br_netfilter*.c
12243 F:      net/netfilter/
12244
12245 NETROM NETWORK LAYER
12246 M:      Ralf Baechle <ralf@linux-mips.org>
12247 L:      linux-hams@vger.kernel.org
12248 S:      Maintained
12249 W:      http://www.linux-ax25.org/
12250 F:      include/net/netrom.h
12251 F:      include/uapi/linux/netrom.h
12252 F:      net/netrom/
12253
12254 NETRONOME ETHERNET DRIVERS
12255 M:      Simon Horman <simon.horman@netronome.com>
12256 R:      Jakub Kicinski <kuba@kernel.org>
12257 L:      oss-drivers@netronome.com
12258 S:      Maintained
12259 F:      drivers/net/ethernet/netronome/
12260
12261 NETWORK BLOCK DEVICE (NBD)
12262 M:      Josef Bacik <josef@toxicpanda.com>
12263 L:      linux-block@vger.kernel.org
12264 L:      nbd@other.debian.org
12265 S:      Maintained
12266 F:      Documentation/admin-guide/blockdev/nbd.rst
12267 F:      drivers/block/nbd.c
12268 F:      include/trace/events/nbd.h
12269 F:      include/uapi/linux/nbd.h
12270
12271 NETWORK DROP MONITOR
12272 M:      Neil Horman <nhorman@tuxdriver.com>
12273 L:      netdev@vger.kernel.org
12274 S:      Maintained
12275 W:      https://fedorahosted.org/dropwatch/
12276 F:      include/uapi/linux/net_dropmon.h
12277 F:      net/core/drop_monitor.c
12278
12279 NETWORKING DRIVERS
12280 M:      "David S. Miller" <davem@davemloft.net>
12281 M:      Jakub Kicinski <kuba@kernel.org>
12282 L:      netdev@vger.kernel.org
12283 S:      Maintained
12284 W:      http://www.linuxfoundation.org/en/Net
12285 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12288 F:      Documentation/devicetree/bindings/net/
12289 F:      drivers/connector/
12290 F:      drivers/net/
12291 F:      include/linux/etherdevice.h
12292 F:      include/linux/fcdevice.h
12293 F:      include/linux/fddidevice.h
12294 F:      include/linux/hippidevice.h
12295 F:      include/linux/if_*
12296 F:      include/linux/inetdevice.h
12297 F:      include/linux/netdevice.h
12298 F:      include/uapi/linux/if_*
12299 F:      include/uapi/linux/netdevice.h
12300
12301 NETWORKING DRIVERS (WIRELESS)
12302 M:      Kalle Valo <kvalo@codeaurora.org>
12303 L:      linux-wireless@vger.kernel.org
12304 S:      Maintained
12305 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
12307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
12308 F:      Documentation/devicetree/bindings/net/wireless/
12309 F:      drivers/net/wireless/
12310
12311 NETWORKING [DSA]
12312 M:      Andrew Lunn <andrew@lunn.ch>
12313 M:      Vivien Didelot <vivien.didelot@gmail.com>
12314 M:      Florian Fainelli <f.fainelli@gmail.com>
12315 M:      Vladimir Oltean <olteanv@gmail.com>
12316 S:      Maintained
12317 F:      Documentation/devicetree/bindings/net/dsa/
12318 F:      drivers/net/dsa/
12319 F:      include/linux/dsa/
12320 F:      include/linux/platform_data/dsa.h
12321 F:      include/net/dsa.h
12322 F:      net/dsa/
12323
12324 NETWORKING [GENERAL]
12325 M:      "David S. Miller" <davem@davemloft.net>
12326 M:      Jakub Kicinski <kuba@kernel.org>
12327 L:      netdev@vger.kernel.org
12328 S:      Maintained
12329 W:      http://www.linuxfoundation.org/en/Net
12330 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12331 B:      mailto:netdev@vger.kernel.org
12332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12334 F:      Documentation/networking/
12335 F:      include/linux/in.h
12336 F:      include/linux/net.h
12337 F:      include/linux/netdevice.h
12338 F:      include/net/
12339 F:      include/uapi/linux/in.h
12340 F:      include/uapi/linux/net.h
12341 F:      include/uapi/linux/net_namespace.h
12342 F:      include/uapi/linux/netdevice.h
12343 F:      lib/net_utils.c
12344 F:      lib/random32.c
12345 F:      net/
12346 F:      tools/testing/selftests/net/
12347
12348 NETWORKING [IPSEC]
12349 M:      Steffen Klassert <steffen.klassert@secunet.com>
12350 M:      Herbert Xu <herbert@gondor.apana.org.au>
12351 M:      "David S. Miller" <davem@davemloft.net>
12352 L:      netdev@vger.kernel.org
12353 S:      Maintained
12354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
12355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
12356 F:      include/net/xfrm.h
12357 F:      include/uapi/linux/xfrm.h
12358 F:      net/ipv4/ah4.c
12359 F:      net/ipv4/esp4*
12360 F:      net/ipv4/ip_vti.c
12361 F:      net/ipv4/ipcomp.c
12362 F:      net/ipv4/xfrm*
12363 F:      net/ipv6/ah6.c
12364 F:      net/ipv6/esp6*
12365 F:      net/ipv6/ip6_vti.c
12366 F:      net/ipv6/ipcomp6.c
12367 F:      net/ipv6/xfrm*
12368 F:      net/key/
12369 F:      net/xfrm/
12370 F:      tools/testing/selftests/net/ipsec.c
12371
12372 NETWORKING [IPv4/IPv6]
12373 M:      "David S. Miller" <davem@davemloft.net>
12374 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
12375 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
12376 L:      netdev@vger.kernel.org
12377 S:      Maintained
12378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12379 F:      arch/x86/net/*
12380 F:      include/net/ip*
12381 F:      net/ipv4/
12382 F:      net/ipv6/
12383
12384 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
12385 M:      Paul Moore <paul@paul-moore.com>
12386 L:      netdev@vger.kernel.org
12387 L:      linux-security-module@vger.kernel.org
12388 S:      Maintained
12389 W:      https://github.com/netlabel
12390 F:      Documentation/netlabel/
12391 F:      include/net/calipso.h
12392 F:      include/net/cipso_ipv4.h
12393 F:      include/net/netlabel.h
12394 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
12395 F:      include/uapi/linux/netfilter/xt_SECMARK.h
12396 F:      net/ipv4/cipso_ipv4.c
12397 F:      net/ipv6/calipso.c
12398 F:      net/netfilter/xt_CONNSECMARK.c
12399 F:      net/netfilter/xt_SECMARK.c
12400 F:      net/netlabel/
12401
12402 NETWORKING [MPTCP]
12403 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
12404 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
12405 L:      netdev@vger.kernel.org
12406 L:      mptcp@lists.01.org
12407 S:      Maintained
12408 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
12409 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
12410 F:      Documentation/networking/mptcp-sysctl.rst
12411 F:      include/net/mptcp.h
12412 F:      include/uapi/linux/mptcp.h
12413 F:      net/mptcp/
12414 F:      tools/testing/selftests/net/mptcp/
12415
12416 NETWORKING [TCP]
12417 M:      Eric Dumazet <edumazet@google.com>
12418 L:      netdev@vger.kernel.org
12419 S:      Maintained
12420 F:      include/linux/tcp.h
12421 F:      include/net/tcp.h
12422 F:      include/trace/events/tcp.h
12423 F:      include/uapi/linux/tcp.h
12424 F:      net/ipv4/syncookies.c
12425 F:      net/ipv4/tcp*.c
12426 F:      net/ipv6/syncookies.c
12427 F:      net/ipv6/tcp*.c
12428
12429 NETWORKING [TLS]
12430 M:      Boris Pismenny <borisp@nvidia.com>
12431 M:      Aviad Yehezkel <aviadye@nvidia.com>
12432 M:      John Fastabend <john.fastabend@gmail.com>
12433 M:      Daniel Borkmann <daniel@iogearbox.net>
12434 M:      Jakub Kicinski <kuba@kernel.org>
12435 L:      netdev@vger.kernel.org
12436 S:      Maintained
12437 F:      include/net/tls.h
12438 F:      include/uapi/linux/tls.h
12439 F:      net/tls/*
12440
12441 NETWORKING [WIRELESS]
12442 L:      linux-wireless@vger.kernel.org
12443 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12444
12445 NETXEN (1/10) GbE SUPPORT
12446 M:      Manish Chopra <manishc@marvell.com>
12447 M:      Rahul Verma <rahulv@marvell.com>
12448 M:      GR-Linux-NIC-Dev@marvell.com
12449 L:      netdev@vger.kernel.org
12450 S:      Supported
12451 F:      drivers/net/ethernet/qlogic/netxen/
12452
12453 NET_FAILOVER MODULE
12454 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
12455 L:      netdev@vger.kernel.org
12456 S:      Supported
12457 F:      Documentation/networking/net_failover.rst
12458 F:      drivers/net/net_failover.c
12459 F:      include/net/net_failover.h
12460
12461 NEXTHOP
12462 M:      David Ahern <dsahern@kernel.org>
12463 L:      netdev@vger.kernel.org
12464 S:      Maintained
12465 F:      include/net/netns/nexthop.h
12466 F:      include/net/nexthop.h
12467 F:      include/uapi/linux/nexthop.h
12468 F:      net/ipv4/nexthop.c
12469
12470 NFC SUBSYSTEM
12471 L:      netdev@vger.kernel.org
12472 S:      Orphan
12473 F:      Documentation/devicetree/bindings/net/nfc/
12474 F:      drivers/nfc/
12475 F:      include/linux/platform_data/nfcmrvl.h
12476 F:      include/net/nfc/
12477 F:      include/uapi/linux/nfc.h
12478 F:      net/nfc/
12479
12480 NFS, SUNRPC, AND LOCKD CLIENTS
12481 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
12482 M:      Anna Schumaker <anna.schumaker@netapp.com>
12483 L:      linux-nfs@vger.kernel.org
12484 S:      Maintained
12485 W:      http://client.linux-nfs.org
12486 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12487 F:      fs/lockd/
12488 F:      fs/nfs/
12489 F:      fs/nfs_common/
12490 F:      include/linux/lockd/
12491 F:      include/linux/nfs*
12492 F:      include/linux/sunrpc/
12493 F:      include/uapi/linux/nfs*
12494 F:      include/uapi/linux/sunrpc/
12495 F:      net/sunrpc/
12496 F:      Documentation/filesystems/nfs/
12497
12498 NILFS2 FILESYSTEM
12499 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
12500 L:      linux-nilfs@vger.kernel.org
12501 S:      Supported
12502 W:      https://nilfs.sourceforge.io/
12503 W:      https://nilfs.osdn.jp/
12504 T:      git git://github.com/konis/nilfs2.git
12505 F:      Documentation/filesystems/nilfs2.rst
12506 F:      fs/nilfs2/
12507 F:      include/trace/events/nilfs2.h
12508 F:      include/uapi/linux/nilfs2_api.h
12509 F:      include/uapi/linux/nilfs2_ondisk.h
12510
12511 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
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/pcmcia/nsp_*
12517
12518 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12519 M:      GOTO Masanori <gotom@debian.or.jp>
12520 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12521 S:      Maintained
12522 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12523 F:      Documentation/scsi/NinjaSCSI.rst
12524 F:      drivers/scsi/nsp32*
12525
12526 NIOS2 ARCHITECTURE
12527 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12528 S:      Maintained
12529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12530 F:      arch/nios2/
12531
12532 NITRO ENCLAVES (NE)
12533 M:      Andra Paraschiv <andraprs@amazon.com>
12534 M:      Alexandru Vasile <lexnv@amazon.com>
12535 M:      Alexandru Ciobotaru <alcioa@amazon.com>
12536 L:      linux-kernel@vger.kernel.org
12537 S:      Supported
12538 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
12539 F:      Documentation/virt/ne_overview.rst
12540 F:      drivers/virt/nitro_enclaves/
12541 F:      include/linux/nitro_enclaves.h
12542 F:      include/uapi/linux/nitro_enclaves.h
12543 F:      samples/nitro_enclaves/
12544
12545 NOHZ, DYNTICKS SUPPORT
12546 M:      Frederic Weisbecker <fweisbec@gmail.com>
12547 M:      Thomas Gleixner <tglx@linutronix.de>
12548 M:      Ingo Molnar <mingo@kernel.org>
12549 L:      linux-kernel@vger.kernel.org
12550 S:      Maintained
12551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12552 F:      include/linux/sched/nohz.h
12553 F:      include/linux/tick.h
12554 F:      kernel/time/tick*.*
12555
12556 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12557 M:      Pavel Machek <pavel@ucw.cz>
12558 M:      Sakari Ailus <sakari.ailus@iki.fi>
12559 L:      linux-media@vger.kernel.org
12560 S:      Maintained
12561 F:      drivers/media/i2c/ad5820.c
12562 F:      drivers/media/i2c/et8ek8
12563
12564 NOKIA N900 POWER SUPPLY DRIVERS
12565 R:      Pali Rohár <pali@kernel.org>
12566 F:      drivers/power/supply/bq2415x_charger.c
12567 F:      drivers/power/supply/bq27xxx_battery.c
12568 F:      drivers/power/supply/bq27xxx_battery_i2c.c
12569 F:      drivers/power/supply/isp1704_charger.c
12570 F:      drivers/power/supply/rx51_battery.c
12571 F:      include/linux/power/bq2415x_charger.h
12572 F:      include/linux/power/bq27xxx_battery.h
12573
12574 NOLIBC HEADER FILE
12575 M:      Willy Tarreau <w@1wt.eu>
12576 S:      Maintained
12577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12578 F:      tools/include/nolibc/
12579
12580 NSDEPS
12581 M:      Matthias Maennich <maennich@google.com>
12582 S:      Maintained
12583 F:      Documentation/core-api/symbol-namespaces.rst
12584 F:      scripts/nsdeps
12585
12586 NTB AMD DRIVER
12587 M:      Sanjay R Mehta <sanju.mehta@amd.com>
12588 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
12589 L:      linux-ntb@googlegroups.com
12590 S:      Supported
12591 F:      drivers/ntb/hw/amd/
12592
12593 NTB DRIVER CORE
12594 M:      Jon Mason <jdmason@kudzu.us>
12595 M:      Dave Jiang <dave.jiang@intel.com>
12596 M:      Allen Hubbe <allenbh@gmail.com>
12597 L:      linux-ntb@googlegroups.com
12598 S:      Supported
12599 W:      https://github.com/jonmason/ntb/wiki
12600 T:      git git://github.com/jonmason/ntb.git
12601 F:      drivers/net/ntb_netdev.c
12602 F:      drivers/ntb/
12603 F:      include/linux/ntb.h
12604 F:      include/linux/ntb_transport.h
12605 F:      tools/testing/selftests/ntb/
12606
12607 NTB IDT DRIVER
12608 M:      Serge Semin <fancer.lancer@gmail.com>
12609 L:      linux-ntb@googlegroups.com
12610 S:      Supported
12611 F:      drivers/ntb/hw/idt/
12612
12613 NTB INTEL DRIVER
12614 M:      Dave Jiang <dave.jiang@intel.com>
12615 L:      linux-ntb@googlegroups.com
12616 S:      Supported
12617 W:      https://github.com/davejiang/linux/wiki
12618 T:      git https://github.com/davejiang/linux.git
12619 F:      drivers/ntb/hw/intel/
12620
12621 NTFS FILESYSTEM
12622 M:      Anton Altaparmakov <anton@tuxera.com>
12623 L:      linux-ntfs-dev@lists.sourceforge.net
12624 S:      Supported
12625 W:      http://www.tuxera.com/
12626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12627 F:      Documentation/filesystems/ntfs.rst
12628 F:      fs/ntfs/
12629
12630 NUBUS SUBSYSTEM
12631 M:      Finn Thain <fthain@telegraphics.com.au>
12632 L:      linux-m68k@lists.linux-m68k.org
12633 S:      Maintained
12634 F:      arch/*/include/asm/nubus.h
12635 F:      drivers/nubus/
12636 F:      include/linux/nubus.h
12637 F:      include/uapi/linux/nubus.h
12638
12639 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12640 M:      Antonino Daplas <adaplas@gmail.com>
12641 L:      linux-fbdev@vger.kernel.org
12642 S:      Maintained
12643 F:      drivers/video/fbdev/nvidia/
12644 F:      drivers/video/fbdev/riva/
12645
12646 NVM EXPRESS DRIVER
12647 M:      Keith Busch <kbusch@kernel.org>
12648 M:      Jens Axboe <axboe@fb.com>
12649 M:      Christoph Hellwig <hch@lst.de>
12650 M:      Sagi Grimberg <sagi@grimberg.me>
12651 L:      linux-nvme@lists.infradead.org
12652 S:      Supported
12653 W:      http://git.infradead.org/nvme.git
12654 T:      git://git.infradead.org/nvme.git
12655 F:      drivers/nvme/host/
12656 F:      include/linux/nvme.h
12657 F:      include/uapi/linux/nvme_ioctl.h
12658
12659 NVM EXPRESS FC TRANSPORT DRIVERS
12660 M:      James Smart <james.smart@broadcom.com>
12661 L:      linux-nvme@lists.infradead.org
12662 S:      Supported
12663 F:      drivers/nvme/host/fc.c
12664 F:      drivers/nvme/target/fc.c
12665 F:      drivers/nvme/target/fcloop.c
12666 F:      include/linux/nvme-fc-driver.h
12667 F:      include/linux/nvme-fc.h
12668
12669 NVM EXPRESS TARGET DRIVER
12670 M:      Christoph Hellwig <hch@lst.de>
12671 M:      Sagi Grimberg <sagi@grimberg.me>
12672 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
12673 L:      linux-nvme@lists.infradead.org
12674 S:      Supported
12675 W:      http://git.infradead.org/nvme.git
12676 T:      git://git.infradead.org/nvme.git
12677 F:      drivers/nvme/target/
12678
12679 NVMEM FRAMEWORK
12680 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12681 S:      Maintained
12682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
12683 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12684 F:      Documentation/devicetree/bindings/nvmem/
12685 F:      drivers/nvmem/
12686 F:      include/linux/nvmem-consumer.h
12687 F:      include/linux/nvmem-provider.h
12688
12689 NXP FSPI DRIVER
12690 M:      Ashish Kumar <ashish.kumar@nxp.com>
12691 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
12692 L:      linux-spi@vger.kernel.org
12693 S:      Maintained
12694 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12695 F:      drivers/spi/spi-nxp-fspi.c
12696
12697 NXP FXAS21002C DRIVER
12698 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12699 L:      linux-iio@vger.kernel.org
12700 S:      Maintained
12701 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
12702 F:      drivers/iio/gyro/fxas21002c.h
12703 F:      drivers/iio/gyro/fxas21002c_core.c
12704 F:      drivers/iio/gyro/fxas21002c_i2c.c
12705 F:      drivers/iio/gyro/fxas21002c_spi.c
12706
12707 NXP i.MX 8MQ DCSS DRIVER
12708 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
12709 R:      Lucas Stach <l.stach@pengutronix.de>
12710 L:      dri-devel@lists.freedesktop.org
12711 S:      Maintained
12712 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
12713 F:      drivers/gpu/drm/imx/dcss/
12714
12715 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
12716 M:      Jagan Teki <jagan@amarulasolutions.com>
12717 S:      Maintained
12718 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
12719 F:      drivers/regulator/pf8x00-regulator.c
12720
12721 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
12722 M:      Krzysztof Kozlowski <krzk@kernel.org>
12723 L:      linux-kernel@vger.kernel.org
12724 S:      Maintained
12725 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
12726 F:      drivers/extcon/extcon-ptn5150.c
12727
12728 NXP SGTL5000 DRIVER
12729 M:      Fabio Estevam <festevam@gmail.com>
12730 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12731 S:      Maintained
12732 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
12733 F:      sound/soc/codecs/sgtl5000*
12734
12735 NXP SJA1105 ETHERNET SWITCH DRIVER
12736 M:      Vladimir Oltean <olteanv@gmail.com>
12737 L:      linux-kernel@vger.kernel.org
12738 S:      Maintained
12739 F:      drivers/net/dsa/sja1105
12740
12741 NXP TDA998X DRM DRIVER
12742 M:      Russell King <linux@armlinux.org.uk>
12743 S:      Maintained
12744 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12745 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12746 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12747 F:      include/drm/i2c/tda998x.h
12748 F:      include/dt-bindings/display/tda998x.h
12749 K:      "nxp,tda998x"
12750
12751 NXP TFA9879 DRIVER
12752 M:      Peter Rosin <peda@axentia.se>
12753 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12754 S:      Maintained
12755 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12756 F:      sound/soc/codecs/tfa9879*
12757
12758 NXP-NCI NFC DRIVER
12759 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
12760 R:      Charles Gorand <charles.gorand@effinnov.com>
12761 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12762 S:      Supported
12763 F:      drivers/nfc/nxp-nci
12764
12765 OBJAGG
12766 M:      Jiri Pirko <jiri@nvidia.com>
12767 L:      netdev@vger.kernel.org
12768 S:      Supported
12769 F:      include/linux/objagg.h
12770 F:      lib/objagg.c
12771 F:      lib/test_objagg.c
12772
12773 OBJTOOL
12774 M:      Josh Poimboeuf <jpoimboe@redhat.com>
12775 M:      Peter Zijlstra <peterz@infradead.org>
12776 S:      Supported
12777 F:      tools/objtool/
12778 F:      include/linux/objtool.h
12779
12780 OCELOT ETHERNET SWITCH DRIVER
12781 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
12782 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
12783 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
12784 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12785 L:      netdev@vger.kernel.org
12786 S:      Supported
12787 F:      drivers/net/dsa/ocelot/*
12788 F:      drivers/net/ethernet/mscc/
12789 F:      include/soc/mscc/ocelot*
12790 F:      net/dsa/tag_ocelot.c
12791 F:      tools/testing/selftests/drivers/net/ocelot/*
12792
12793 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12794 M:      Frederic Barrat <fbarrat@linux.ibm.com>
12795 M:      Andrew Donnellan <ajd@linux.ibm.com>
12796 L:      linuxppc-dev@lists.ozlabs.org
12797 S:      Supported
12798 F:      Documentation/userspace-api/accelerators/ocxl.rst
12799 F:      arch/powerpc/include/asm/pnv-ocxl.h
12800 F:      arch/powerpc/platforms/powernv/ocxl.c
12801 F:      drivers/misc/ocxl/
12802 F:      include/misc/ocxl*
12803 F:      include/uapi/misc/ocxl.h
12804
12805 OMAP AUDIO SUPPORT
12806 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
12807 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
12808 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12809 L:      linux-omap@vger.kernel.org
12810 S:      Maintained
12811 F:      sound/soc/ti/n810.c
12812 F:      sound/soc/ti/omap*
12813 F:      sound/soc/ti/rx51.c
12814 F:      sound/soc/ti/sdma-pcm.*
12815
12816 OMAP CLOCK FRAMEWORK SUPPORT
12817 M:      Paul Walmsley <paul@pwsan.com>
12818 L:      linux-omap@vger.kernel.org
12819 S:      Maintained
12820 F:      arch/arm/*omap*/*clock*
12821
12822 OMAP DEVICE TREE SUPPORT
12823 M:      Benoît Cousson <bcousson@baylibre.com>
12824 M:      Tony Lindgren <tony@atomide.com>
12825 L:      linux-omap@vger.kernel.org
12826 L:      devicetree@vger.kernel.org
12827 S:      Maintained
12828 F:      arch/arm/boot/dts/*am3*
12829 F:      arch/arm/boot/dts/*am4*
12830 F:      arch/arm/boot/dts/*am5*
12831 F:      arch/arm/boot/dts/*dra7*
12832 F:      arch/arm/boot/dts/*omap*
12833 F:      arch/arm/boot/dts/logicpd-som-lv*
12834 F:      arch/arm/boot/dts/logicpd-torpedo*
12835
12836 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12837 L:      linux-omap@vger.kernel.org
12838 L:      linux-fbdev@vger.kernel.org
12839 S:      Orphan
12840 F:      Documentation/arm/omap/dss.rst
12841 F:      drivers/video/fbdev/omap2/
12842
12843 OMAP FRAMEBUFFER SUPPORT
12844 L:      linux-fbdev@vger.kernel.org
12845 L:      linux-omap@vger.kernel.org
12846 S:      Orphan
12847 F:      drivers/video/fbdev/omap/
12848
12849 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12850 M:      Roger Quadros <rogerq@ti.com>
12851 M:      Tony Lindgren <tony@atomide.com>
12852 L:      linux-omap@vger.kernel.org
12853 S:      Maintained
12854 F:      arch/arm/mach-omap2/*gpmc*
12855 F:      drivers/memory/omap-gpmc.c
12856
12857 OMAP GPIO DRIVER
12858 M:      Grygorii Strashko <grygorii.strashko@ti.com>
12859 M:      Santosh Shilimkar <ssantosh@kernel.org>
12860 M:      Kevin Hilman <khilman@kernel.org>
12861 L:      linux-omap@vger.kernel.org
12862 S:      Maintained
12863 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12864 F:      drivers/gpio/gpio-omap.c
12865
12866 OMAP HARDWARE SPINLOCK SUPPORT
12867 M:      Ohad Ben-Cohen <ohad@wizery.com>
12868 L:      linux-omap@vger.kernel.org
12869 S:      Maintained
12870 F:      drivers/hwspinlock/omap_hwspinlock.c
12871
12872 OMAP HS MMC SUPPORT
12873 L:      linux-mmc@vger.kernel.org
12874 L:      linux-omap@vger.kernel.org
12875 S:      Orphan
12876 F:      drivers/mmc/host/omap_hsmmc.c
12877
12878 OMAP HWMOD DATA
12879 M:      Paul Walmsley <paul@pwsan.com>
12880 L:      linux-omap@vger.kernel.org
12881 S:      Maintained
12882 F:      arch/arm/mach-omap2/omap_hwmod*data*
12883
12884 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12885 M:      Benoît Cousson <bcousson@baylibre.com>
12886 L:      linux-omap@vger.kernel.org
12887 S:      Maintained
12888 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12889
12890 OMAP HWMOD SUPPORT
12891 M:      Benoît Cousson <bcousson@baylibre.com>
12892 M:      Paul Walmsley <paul@pwsan.com>
12893 L:      linux-omap@vger.kernel.org
12894 S:      Maintained
12895 F:      arch/arm/mach-omap2/omap_hwmod.*
12896
12897 OMAP I2C DRIVER
12898 M:      Vignesh R <vigneshr@ti.com>
12899 L:      linux-omap@vger.kernel.org
12900 L:      linux-i2c@vger.kernel.org
12901 S:      Maintained
12902 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12903 F:      drivers/i2c/busses/i2c-omap.c
12904
12905 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12906 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12907 L:      linux-media@vger.kernel.org
12908 S:      Maintained
12909 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12910 F:      drivers/media/platform/omap3isp/
12911 F:      drivers/staging/media/omap4iss/
12912
12913 OMAP MMC SUPPORT
12914 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12915 L:      linux-omap@vger.kernel.org
12916 S:      Odd Fixes
12917 F:      drivers/mmc/host/omap.c
12918
12919 OMAP POWER MANAGEMENT SUPPORT
12920 M:      Kevin Hilman <khilman@kernel.org>
12921 L:      linux-omap@vger.kernel.org
12922 S:      Maintained
12923 F:      arch/arm/*omap*/*pm*
12924 F:      drivers/cpufreq/omap-cpufreq.c
12925
12926 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12927 M:      Rajendra Nayak <rnayak@codeaurora.org>
12928 M:      Paul Walmsley <paul@pwsan.com>
12929 L:      linux-omap@vger.kernel.org
12930 S:      Maintained
12931 F:      arch/arm/mach-omap2/prm*
12932
12933 OMAP RANDOM NUMBER GENERATOR SUPPORT
12934 M:      Deepak Saxena <dsaxena@plexity.net>
12935 S:      Maintained
12936 F:      drivers/char/hw_random/omap-rng.c
12937
12938 OMAP USB SUPPORT
12939 L:      linux-usb@vger.kernel.org
12940 L:      linux-omap@vger.kernel.org
12941 S:      Orphan
12942 F:      arch/arm/*omap*/usb*
12943 F:      drivers/usb/*/*omap*
12944
12945 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12946 M:      Mark Jackson <mpfj@newflow.co.uk>
12947 L:      linux-omap@vger.kernel.org
12948 S:      Maintained
12949 F:      arch/arm/boot/dts/am335x-nano.dts
12950
12951 OMAP1 SUPPORT
12952 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12953 M:      Tony Lindgren <tony@atomide.com>
12954 L:      linux-omap@vger.kernel.org
12955 S:      Maintained
12956 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12958 F:      arch/arm/configs/omap1_defconfig
12959 F:      arch/arm/mach-omap1/
12960 F:      arch/arm/plat-omap/
12961 F:      drivers/i2c/busses/i2c-omap.c
12962 F:      include/linux/platform_data/ams-delta-fiq.h
12963 F:      include/linux/platform_data/i2c-omap.h
12964
12965 OMAP2+ SUPPORT
12966 M:      Tony Lindgren <tony@atomide.com>
12967 L:      linux-omap@vger.kernel.org
12968 S:      Maintained
12969 W:      http://www.muru.com/linux/omap/
12970 W:      http://linux.omap.com/
12971 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12973 F:      arch/arm/configs/omap2plus_defconfig
12974 F:      arch/arm/mach-omap2/
12975 F:      arch/arm/plat-omap/
12976 F:      drivers/bus/ti-sysc.c
12977 F:      drivers/i2c/busses/i2c-omap.c
12978 F:      drivers/irqchip/irq-omap-intc.c
12979 F:      drivers/mfd/*omap*.c
12980 F:      drivers/mfd/menelaus.c
12981 F:      drivers/mfd/palmas.c
12982 F:      drivers/mfd/tps65217.c
12983 F:      drivers/mfd/tps65218.c
12984 F:      drivers/mfd/tps65910.c
12985 F:      drivers/mfd/twl-core.[ch]
12986 F:      drivers/mfd/twl4030*.c
12987 F:      drivers/mfd/twl6030*.c
12988 F:      drivers/mfd/twl6040*.c
12989 F:      drivers/regulator/palmas-regulator*.c
12990 F:      drivers/regulator/pbias-regulator.c
12991 F:      drivers/regulator/tps65217-regulator.c
12992 F:      drivers/regulator/tps65218-regulator.c
12993 F:      drivers/regulator/tps65910-regulator.c
12994 F:      drivers/regulator/twl-regulator.c
12995 F:      drivers/regulator/twl6030-regulator.c
12996 F:      include/linux/platform_data/i2c-omap.h
12997 F:      include/linux/platform_data/ti-sysc.h
12998
12999 OMFS FILESYSTEM
13000 M:      Bob Copeland <me@bobcopeland.com>
13001 L:      linux-karma-devel@lists.sourceforge.net
13002 S:      Maintained
13003 F:      Documentation/filesystems/omfs.rst
13004 F:      fs/omfs/
13005
13006 OMNIKEY CARDMAN 4000 DRIVER
13007 M:      Harald Welte <laforge@gnumonks.org>
13008 S:      Maintained
13009 F:      drivers/char/pcmcia/cm4000_cs.c
13010 F:      include/linux/cm4000_cs.h
13011 F:      include/uapi/linux/cm4000_cs.h
13012
13013 OMNIKEY CARDMAN 4040 DRIVER
13014 M:      Harald Welte <laforge@gnumonks.org>
13015 S:      Maintained
13016 F:      drivers/char/pcmcia/cm4040_cs.*
13017
13018 OMNIVISION OV02A10 SENSOR DRIVER
13019 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13020 L:      linux-media@vger.kernel.org
13021 S:      Maintained
13022 T:      git git://linuxtv.org/media_tree.git
13023 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13024 F:      drivers/media/i2c/ov02a10.c
13025
13026 OMNIVISION OV13858 SENSOR DRIVER
13027 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13028 L:      linux-media@vger.kernel.org
13029 S:      Maintained
13030 T:      git git://linuxtv.org/media_tree.git
13031 F:      drivers/media/i2c/ov13858.c
13032
13033 OMNIVISION OV2680 SENSOR DRIVER
13034 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13035 L:      linux-media@vger.kernel.org
13036 S:      Maintained
13037 T:      git git://linuxtv.org/media_tree.git
13038 F:      Documentation/devicetree/bindings/media/i2c/ov2680.yaml
13039 F:      drivers/media/i2c/ov2680.c
13040
13041 OMNIVISION OV2685 SENSOR DRIVER
13042 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13043 L:      linux-media@vger.kernel.org
13044 S:      Maintained
13045 T:      git git://linuxtv.org/media_tree.git
13046 F:      drivers/media/i2c/ov2685.c
13047
13048 OMNIVISION OV2740 SENSOR DRIVER
13049 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13050 R:      Shawn Tu <shawnx.tu@intel.com>
13051 R:      Bingbu Cao <bingbu.cao@intel.com>
13052 L:      linux-media@vger.kernel.org
13053 S:      Maintained
13054 T:      git git://linuxtv.org/media_tree.git
13055 F:      drivers/media/i2c/ov2740.c
13056
13057 OMNIVISION OV5640 SENSOR DRIVER
13058 M:      Steve Longerbeam <slongerbeam@gmail.com>
13059 L:      linux-media@vger.kernel.org
13060 S:      Maintained
13061 T:      git git://linuxtv.org/media_tree.git
13062 F:      drivers/media/i2c/ov5640.c
13063
13064 OMNIVISION OV5647 SENSOR DRIVER
13065 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
13066 M:      Jacopo Mondi <jacopo@jmondi.org>
13067 L:      linux-media@vger.kernel.org
13068 S:      Maintained
13069 T:      git git://linuxtv.org/media_tree.git
13070 F:      Documentation/devicetree/bindings/media/i2c/ov5647.yaml
13071 F:      drivers/media/i2c/ov5647.c
13072
13073 OMNIVISION OV5670 SENSOR DRIVER
13074 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13075 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
13076 L:      linux-media@vger.kernel.org
13077 S:      Maintained
13078 T:      git git://linuxtv.org/media_tree.git
13079 F:      drivers/media/i2c/ov5670.c
13080
13081 OMNIVISION OV5675 SENSOR DRIVER
13082 M:      Shawn Tu <shawnx.tu@intel.com>
13083 L:      linux-media@vger.kernel.org
13084 S:      Maintained
13085 T:      git git://linuxtv.org/media_tree.git
13086 F:      drivers/media/i2c/ov5675.c
13087
13088 OMNIVISION OV5695 SENSOR DRIVER
13089 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13090 L:      linux-media@vger.kernel.org
13091 S:      Maintained
13092 T:      git git://linuxtv.org/media_tree.git
13093 F:      drivers/media/i2c/ov5695.c
13094
13095 OMNIVISION OV7670 SENSOR DRIVER
13096 L:      linux-media@vger.kernel.org
13097 S:      Orphan
13098 T:      git git://linuxtv.org/media_tree.git
13099 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
13100 F:      drivers/media/i2c/ov7670.c
13101
13102 OMNIVISION OV772x SENSOR DRIVER
13103 M:      Jacopo Mondi <jacopo@jmondi.org>
13104 L:      linux-media@vger.kernel.org
13105 S:      Odd fixes
13106 T:      git git://linuxtv.org/media_tree.git
13107 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13108 F:      drivers/media/i2c/ov772x.c
13109 F:      include/media/i2c/ov772x.h
13110
13111 OMNIVISION OV7740 SENSOR DRIVER
13112 M:      Wenyou Yang <wenyou.yang@microchip.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/ov7740.txt
13117 F:      drivers/media/i2c/ov7740.c
13118
13119 OMNIVISION OV8856 SENSOR DRIVER
13120 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13121 L:      linux-media@vger.kernel.org
13122 S:      Maintained
13123 T:      git git://linuxtv.org/media_tree.git
13124 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13125 F:      drivers/media/i2c/ov8856.c
13126
13127 OMNIVISION OV9640 SENSOR DRIVER
13128 M:      Petr Cvek <petrcvekcz@gmail.com>
13129 L:      linux-media@vger.kernel.org
13130 S:      Maintained
13131 F:      drivers/media/i2c/ov9640.*
13132
13133 OMNIVISION OV9650 SENSOR DRIVER
13134 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13135 R:      Akinobu Mita <akinobu.mita@gmail.com>
13136 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13137 L:      linux-media@vger.kernel.org
13138 S:      Maintained
13139 T:      git git://linuxtv.org/media_tree.git
13140 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
13141 F:      drivers/media/i2c/ov9650.c
13142
13143 OMNIVISION OV9734 SENSOR DRIVER
13144 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13145 R:      Bingbu Cao <bingbu.cao@intel.com>
13146 L:      linux-media@vger.kernel.org
13147 S:      Maintained
13148 T:      git git://linuxtv.org/media_tree.git
13149 F:      drivers/media/i2c/ov9734.c
13150
13151 ONENAND FLASH DRIVER
13152 M:      Kyungmin Park <kyungmin.park@samsung.com>
13153 L:      linux-mtd@lists.infradead.org
13154 S:      Maintained
13155 F:      drivers/mtd/nand/onenand/
13156 F:      include/linux/mtd/onenand*.h
13157
13158 ONION OMEGA2+ BOARD
13159 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
13160 L:      linux-mips@vger.kernel.org
13161 S:      Maintained
13162 F:      arch/mips/boot/dts/ralink/omega2p.dts
13163
13164 OP-TEE DRIVER
13165 M:      Jens Wiklander <jens.wiklander@linaro.org>
13166 L:      op-tee@lists.trustedfirmware.org
13167 S:      Maintained
13168 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
13169 F:      drivers/tee/optee/
13170
13171 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
13172 M:      Sumit Garg <sumit.garg@linaro.org>
13173 L:      op-tee@lists.trustedfirmware.org
13174 S:      Maintained
13175 F:      drivers/char/hw_random/optee-rng.c
13176
13177 OPA-VNIC DRIVER
13178 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
13179 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
13180 L:      linux-rdma@vger.kernel.org
13181 S:      Supported
13182 F:      drivers/infiniband/ulp/opa_vnic
13183
13184 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
13185 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
13186 M:      Frank Rowand <frowand.list@gmail.com>
13187 L:      devicetree@vger.kernel.org
13188 S:      Maintained
13189 F:      Documentation/devicetree/dynamic-resolution-notes.rst
13190 F:      Documentation/devicetree/overlay-notes.rst
13191 F:      drivers/of/overlay.c
13192 F:      drivers/of/resolver.c
13193 K:      of_overlay_notifier_
13194
13195 OPEN FIRMWARE AND FLATTENED DEVICE TREE
13196 M:      Rob Herring <robh+dt@kernel.org>
13197 M:      Frank Rowand <frowand.list@gmail.com>
13198 L:      devicetree@vger.kernel.org
13199 S:      Maintained
13200 W:      http://www.devicetree.org/
13201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13202 F:      Documentation/ABI/testing/sysfs-firmware-ofw
13203 F:      drivers/of/
13204 F:      include/linux/of*.h
13205 F:      scripts/dtc/
13206
13207 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
13208 M:      Rob Herring <robh+dt@kernel.org>
13209 L:      devicetree@vger.kernel.org
13210 S:      Maintained
13211 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
13212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13213 F:      Documentation/devicetree/
13214 F:      arch/*/boot/dts/
13215 F:      include/dt-bindings/
13216
13217 OPENCORES I2C BUS DRIVER
13218 M:      Peter Korsgaard <peter@korsgaard.com>
13219 M:      Andrew Lunn <andrew@lunn.ch>
13220 L:      linux-i2c@vger.kernel.org
13221 S:      Maintained
13222 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
13223 F:      Documentation/i2c/busses/i2c-ocores.rst
13224 F:      drivers/i2c/busses/i2c-ocores.c
13225 F:      include/linux/platform_data/i2c-ocores.h
13226
13227 OPENRISC ARCHITECTURE
13228 M:      Jonas Bonn <jonas@southpole.se>
13229 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
13230 M:      Stafford Horne <shorne@gmail.com>
13231 L:      openrisc@lists.librecores.org
13232 S:      Maintained
13233 W:      http://openrisc.io
13234 T:      git git://github.com/openrisc/linux.git
13235 F:      Documentation/devicetree/bindings/openrisc/
13236 F:      Documentation/openrisc/
13237 F:      arch/openrisc/
13238 F:      drivers/irqchip/irq-ompic.c
13239 F:      drivers/irqchip/irq-or1k-*
13240
13241 OPENVSWITCH
13242 M:      Pravin B Shelar <pshelar@ovn.org>
13243 L:      netdev@vger.kernel.org
13244 L:      dev@openvswitch.org
13245 S:      Maintained
13246 W:      http://openvswitch.org
13247 F:      include/uapi/linux/openvswitch.h
13248 F:      net/openvswitch/
13249
13250 OPERATING PERFORMANCE POINTS (OPP)
13251 M:      Viresh Kumar <vireshk@kernel.org>
13252 M:      Nishanth Menon <nm@ti.com>
13253 M:      Stephen Boyd <sboyd@kernel.org>
13254 L:      linux-pm@vger.kernel.org
13255 S:      Maintained
13256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
13257 F:      Documentation/devicetree/bindings/opp/
13258 F:      Documentation/power/opp.rst
13259 F:      drivers/opp/
13260 F:      include/linux/pm_opp.h
13261
13262 OPL4 DRIVER
13263 M:      Clemens Ladisch <clemens@ladisch.de>
13264 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13265 S:      Maintained
13266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13267 F:      sound/drivers/opl4/
13268
13269 OPROFILE
13270 M:      Robert Richter <rric@kernel.org>
13271 L:      oprofile-list@lists.sf.net
13272 S:      Maintained
13273 F:      arch/*/include/asm/oprofile*.h
13274 F:      arch/*/oprofile/
13275 F:      drivers/oprofile/
13276 F:      include/linux/oprofile.h
13277
13278 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
13279 M:      Mark Fasheh <mark@fasheh.com>
13280 M:      Joel Becker <jlbec@evilplan.org>
13281 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
13282 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
13283 S:      Supported
13284 W:      http://ocfs2.wiki.kernel.org
13285 F:      Documentation/filesystems/dlmfs.rst
13286 F:      Documentation/filesystems/ocfs2.rst
13287 F:      fs/ocfs2/
13288
13289 ORANGEFS FILESYSTEM
13290 M:      Mike Marshall <hubcap@omnibond.com>
13291 R:      Martin Brandenburg <martin@omnibond.com>
13292 L:      devel@lists.orangefs.org
13293 S:      Supported
13294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
13295 F:      Documentation/filesystems/orangefs.rst
13296 F:      fs/orangefs/
13297
13298 ORINOCO DRIVER
13299 L:      linux-wireless@vger.kernel.org
13300 S:      Orphan
13301 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
13302 W:      http://www.nongnu.org/orinoco/
13303 F:      drivers/net/wireless/intersil/orinoco/
13304
13305 OV2659 OMNIVISION SENSOR DRIVER
13306 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13307 L:      linux-media@vger.kernel.org
13308 S:      Maintained
13309 W:      https://linuxtv.org
13310 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13311 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13312 F:      drivers/media/i2c/ov2659.c
13313 F:      include/media/i2c/ov2659.h
13314
13315 OVERLAY FILESYSTEM
13316 M:      Miklos Szeredi <miklos@szeredi.hu>
13317 L:      linux-unionfs@vger.kernel.org
13318 S:      Supported
13319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
13320 F:      Documentation/filesystems/overlayfs.rst
13321 F:      fs/overlayfs/
13322
13323 P54 WIRELESS DRIVER
13324 M:      Christian Lamparter <chunkeey@googlemail.com>
13325 L:      linux-wireless@vger.kernel.org
13326 S:      Maintained
13327 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13328 F:      drivers/net/wireless/intersil/p54/
13329
13330 PACKING
13331 M:      Vladimir Oltean <olteanv@gmail.com>
13332 L:      netdev@vger.kernel.org
13333 S:      Supported
13334 F:      Documentation/core-api/packing.rst
13335 F:      include/linux/packing.h
13336 F:      lib/packing.c
13337
13338 PADATA PARALLEL EXECUTION MECHANISM
13339 M:      Steffen Klassert <steffen.klassert@secunet.com>
13340 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
13341 L:      linux-crypto@vger.kernel.org
13342 L:      linux-kernel@vger.kernel.org
13343 S:      Maintained
13344 F:      Documentation/core-api/padata.rst
13345 F:      include/linux/padata.h
13346 F:      kernel/padata.c
13347
13348 PAGE POOL
13349 M:      Jesper Dangaard Brouer <hawk@kernel.org>
13350 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
13351 L:      netdev@vger.kernel.org
13352 S:      Supported
13353 F:      Documentation/networking/page_pool.rst
13354 F:      include/net/page_pool.h
13355 F:      include/trace/events/page_pool.h
13356 F:      net/core/page_pool.c
13357
13358 PANASONIC LAPTOP ACPI EXTRAS DRIVER
13359 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
13360 L:      platform-driver-x86@vger.kernel.org
13361 S:      Maintained
13362 F:      drivers/platform/x86/panasonic-laptop.c
13363
13364 PARALLAX PING IIO SENSOR DRIVER
13365 M:      Andreas Klinger <ak@it-klinger.de>
13366 L:      linux-iio@vger.kernel.org
13367 S:      Maintained
13368 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
13369 F:      drivers/iio/proximity/ping.c
13370
13371 PARALLEL LCD/KEYPAD PANEL DRIVER
13372 M:      Willy Tarreau <willy@haproxy.com>
13373 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
13374 S:      Odd Fixes
13375 F:      Documentation/admin-guide/lcd-panel-cgram.rst
13376 F:      drivers/auxdisplay/panel.c
13377
13378 PARALLEL PORT SUBSYSTEM
13379 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
13380 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
13381 L:      linux-parport@lists.infradead.org (subscribers-only)
13382 S:      Maintained
13383 F:      Documentation/driver-api/parport*.rst
13384 F:      drivers/char/ppdev.c
13385 F:      drivers/parport/
13386 F:      include/linux/parport*.h
13387 F:      include/uapi/linux/ppdev.h
13388
13389 PARAVIRT_OPS INTERFACE
13390 M:      Juergen Gross <jgross@suse.com>
13391 M:      Deep Shah <sdeep@vmware.com>
13392 M:      "VMware, Inc." <pv-drivers@vmware.com>
13393 L:      virtualization@lists.linux-foundation.org
13394 S:      Supported
13395 F:      Documentation/virt/paravirt_ops.rst
13396 F:      arch/*/include/asm/paravirt*.h
13397 F:      arch/*/kernel/paravirt*
13398 F:      include/linux/hypervisor.h
13399
13400 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
13401 M:      Tim Waugh <tim@cyberelk.net>
13402 L:      linux-parport@lists.infradead.org (subscribers-only)
13403 S:      Maintained
13404 F:      Documentation/admin-guide/blockdev/paride.rst
13405 F:      drivers/block/paride/
13406
13407 PARISC ARCHITECTURE
13408 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
13409 M:      Helge Deller <deller@gmx.de>
13410 L:      linux-parisc@vger.kernel.org
13411 S:      Maintained
13412 W:      https://parisc.wiki.kernel.org
13413 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
13414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
13415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
13416 F:      Documentation/parisc/
13417 F:      arch/parisc/
13418 F:      drivers/char/agp/parisc-agp.c
13419 F:      drivers/input/misc/hp_sdc_rtc.c
13420 F:      drivers/input/serio/gscps2.c
13421 F:      drivers/input/serio/hp_sdc*
13422 F:      drivers/parisc/
13423 F:      drivers/parport/parport_gsc.*
13424 F:      drivers/tty/serial/8250/8250_gsc.c
13425 F:      drivers/video/console/sti*
13426 F:      drivers/video/fbdev/sti*
13427 F:      drivers/video/logo/logo_parisc*
13428 F:      include/linux/hp_sdc.h
13429
13430 PARMAN
13431 M:      Jiri Pirko <jiri@nvidia.com>
13432 L:      netdev@vger.kernel.org
13433 S:      Supported
13434 F:      include/linux/parman.h
13435 F:      lib/parman.c
13436 F:      lib/test_parman.c
13437
13438 PC ENGINES APU BOARD DRIVER
13439 M:      Enrico Weigelt, metux IT consult <info@metux.net>
13440 S:      Maintained
13441 F:      drivers/platform/x86/pcengines-apuv2.c
13442
13443 PC87360 HARDWARE MONITORING DRIVER
13444 M:      Jim Cromie <jim.cromie@gmail.com>
13445 L:      linux-hwmon@vger.kernel.org
13446 S:      Maintained
13447 F:      Documentation/hwmon/pc87360.rst
13448 F:      drivers/hwmon/pc87360.c
13449
13450 PC8736x GPIO DRIVER
13451 M:      Jim Cromie <jim.cromie@gmail.com>
13452 S:      Maintained
13453 F:      drivers/char/pc8736x_gpio.c
13454
13455 PC87427 HARDWARE MONITORING DRIVER
13456 M:      Jean Delvare <jdelvare@suse.com>
13457 L:      linux-hwmon@vger.kernel.org
13458 S:      Maintained
13459 F:      Documentation/hwmon/pc87427.rst
13460 F:      drivers/hwmon/pc87427.c
13461
13462 PCA9532 LED DRIVER
13463 M:      Riku Voipio <riku.voipio@iki.fi>
13464 S:      Maintained
13465 F:      drivers/leds/leds-pca9532.c
13466 F:      include/linux/leds-pca9532.h
13467
13468 PCA9541 I2C BUS MASTER SELECTOR DRIVER
13469 M:      Guenter Roeck <linux@roeck-us.net>
13470 L:      linux-i2c@vger.kernel.org
13471 S:      Maintained
13472 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
13473
13474 PCDP - PRIMARY CONSOLE AND DEBUG PORT
13475 M:      Khalid Aziz <khalid@gonehiking.org>
13476 S:      Maintained
13477 F:      drivers/firmware/pcdp.*
13478
13479 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
13480 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13481 M:      Pali Rohár <pali@kernel.org>
13482 L:      linux-pci@vger.kernel.org
13483 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13484 S:      Maintained
13485 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
13486 F:      drivers/pci/controller/pci-aardvark.c
13487
13488 PCI DRIVER FOR ALTERA PCIE IP
13489 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13490 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13491 L:      linux-pci@vger.kernel.org
13492 S:      Supported
13493 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
13494 F:      drivers/pci/controller/pcie-altera.c
13495
13496 PCI DRIVER FOR APPLIEDMICRO XGENE
13497 M:      Toan Le <toan@os.amperecomputing.com>
13498 L:      linux-pci@vger.kernel.org
13499 L:      linux-arm-kernel@lists.infradead.org
13500 S:      Maintained
13501 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
13502 F:      drivers/pci/controller/pci-xgene.c
13503
13504 PCI DRIVER FOR ARM VERSATILE PLATFORM
13505 M:      Rob Herring <robh@kernel.org>
13506 L:      linux-pci@vger.kernel.org
13507 L:      linux-arm-kernel@lists.infradead.org
13508 S:      Maintained
13509 F:      Documentation/devicetree/bindings/pci/versatile.yaml
13510 F:      drivers/pci/controller/pci-versatile.c
13511
13512 PCI DRIVER FOR ARMADA 8K
13513 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13514 L:      linux-pci@vger.kernel.org
13515 L:      linux-arm-kernel@lists.infradead.org
13516 S:      Maintained
13517 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
13518 F:      drivers/pci/controller/dwc/pcie-armada8k.c
13519
13520 PCI DRIVER FOR CADENCE PCIE IP
13521 M:      Tom Joseph <tjoseph@cadence.com>
13522 L:      linux-pci@vger.kernel.org
13523 S:      Maintained
13524 F:      Documentation/devicetree/bindings/pci/cdns,*
13525 F:      drivers/pci/controller/cadence/
13526
13527 PCI DRIVER FOR FREESCALE LAYERSCAPE
13528 M:      Minghuan Lian <minghuan.Lian@nxp.com>
13529 M:      Mingkai Hu <mingkai.hu@nxp.com>
13530 M:      Roy Zang <roy.zang@nxp.com>
13531 L:      linuxppc-dev@lists.ozlabs.org
13532 L:      linux-pci@vger.kernel.org
13533 L:      linux-arm-kernel@lists.infradead.org
13534 S:      Maintained
13535 F:      drivers/pci/controller/dwc/*layerscape*
13536
13537 PCI DRIVER FOR GENERIC OF HOSTS
13538 M:      Will Deacon <will@kernel.org>
13539 L:      linux-pci@vger.kernel.org
13540 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13541 S:      Maintained
13542 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13543 F:      drivers/pci/controller/pci-host-common.c
13544 F:      drivers/pci/controller/pci-host-generic.c
13545
13546 PCI DRIVER FOR IMX6
13547 M:      Richard Zhu <hongxing.zhu@nxp.com>
13548 M:      Lucas Stach <l.stach@pengutronix.de>
13549 L:      linux-pci@vger.kernel.org
13550 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13551 S:      Maintained
13552 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
13553 F:      drivers/pci/controller/dwc/*imx6*
13554
13555 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13556 M:      Jonathan Derrick <jonathan.derrick@intel.com>
13557 L:      linux-pci@vger.kernel.org
13558 S:      Supported
13559 F:      drivers/pci/controller/vmd.c
13560
13561 PCI DRIVER FOR MICROSEMI SWITCHTEC
13562 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
13563 M:      Logan Gunthorpe <logang@deltatee.com>
13564 L:      linux-pci@vger.kernel.org
13565 S:      Maintained
13566 F:      Documentation/ABI/testing/sysfs-class-switchtec
13567 F:      Documentation/driver-api/switchtec.rst
13568 F:      drivers/ntb/hw/mscc/
13569 F:      drivers/pci/switch/switchtec*
13570 F:      include/linux/switchtec.h
13571 F:      include/uapi/linux/switchtec_ioctl.h
13572
13573 PCI DRIVER FOR MOBIVEIL PCIE IP
13574 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
13575 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13576 L:      linux-pci@vger.kernel.org
13577 S:      Supported
13578 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
13579 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
13580
13581 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
13582 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13583 L:      linux-pci@vger.kernel.org
13584 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13585 S:      Maintained
13586 F:      drivers/pci/controller/*mvebu*
13587
13588 PCI DRIVER FOR NVIDIA TEGRA
13589 M:      Thierry Reding <thierry.reding@gmail.com>
13590 L:      linux-tegra@vger.kernel.org
13591 L:      linux-pci@vger.kernel.org
13592 S:      Supported
13593 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
13594 F:      drivers/pci/controller/pci-tegra.c
13595
13596 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13597 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13598 L:      linux-pci@vger.kernel.org
13599 L:      linux-arm-kernel@lists.infradead.org
13600 S:      Maintained
13601 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13602 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
13603
13604 PCI DRIVER FOR RENESAS R-CAR
13605 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
13606 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13607 L:      linux-pci@vger.kernel.org
13608 L:      linux-renesas-soc@vger.kernel.org
13609 S:      Maintained
13610 F:      Documentation/devicetree/bindings/pci/*rcar*
13611 F:      drivers/pci/controller/*rcar*
13612
13613 PCI DRIVER FOR SAMSUNG EXYNOS
13614 M:      Jingoo Han <jingoohan1@gmail.com>
13615 L:      linux-pci@vger.kernel.org
13616 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13617 L:      linux-samsung-soc@vger.kernel.org
13618 S:      Maintained
13619 F:      drivers/pci/controller/dwc/pci-exynos.c
13620
13621 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13622 M:      Jingoo Han <jingoohan1@gmail.com>
13623 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
13624 L:      linux-pci@vger.kernel.org
13625 S:      Maintained
13626 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
13627 F:      drivers/pci/controller/dwc/*designware*
13628
13629 PCI DRIVER FOR TI DRA7XX/J721E
13630 M:      Kishon Vijay Abraham I <kishon@ti.com>
13631 L:      linux-omap@vger.kernel.org
13632 L:      linux-pci@vger.kernel.org
13633 L:      linux-arm-kernel@lists.infradead.org
13634 S:      Supported
13635 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
13636 F:      drivers/pci/controller/cadence/pci-j721e.c
13637 F:      drivers/pci/controller/dwc/pci-dra7xx.c
13638
13639 PCI DRIVER FOR TI KEYSTONE
13640 M:      Murali Karicheri <m-karicheri2@ti.com>
13641 L:      linux-pci@vger.kernel.org
13642 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13643 S:      Maintained
13644 F:      drivers/pci/controller/dwc/pci-keystone.c
13645
13646 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13647 M:      Linus Walleij <linus.walleij@linaro.org>
13648 L:      linux-pci@vger.kernel.org
13649 S:      Maintained
13650 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13651 F:      drivers/pci/controller/pci-v3-semi.c
13652
13653 PCI ENDPOINT SUBSYSTEM
13654 M:      Kishon Vijay Abraham I <kishon@ti.com>
13655 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13656 L:      linux-pci@vger.kernel.org
13657 S:      Supported
13658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13659 F:      drivers/misc/pci_endpoint_test.c
13660 F:      drivers/pci/endpoint/
13661 F:      tools/pci/
13662
13663 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13664 M:      Russell Currey <ruscur@russell.cc>
13665 M:      Oliver O'Halloran <oohall@gmail.com>
13666 L:      linuxppc-dev@lists.ozlabs.org
13667 S:      Supported
13668 F:      Documentation/PCI/pci-error-recovery.rst
13669 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
13670 F:      arch/powerpc/include/*/eeh*.h
13671 F:      arch/powerpc/kernel/eeh*.c
13672 F:      arch/powerpc/platforms/*/eeh*.c
13673 F:      drivers/pci/pcie/aer.c
13674 F:      drivers/pci/pcie/dpc.c
13675 F:      drivers/pci/pcie/err.c
13676
13677 PCI ERROR RECOVERY
13678 M:      Linas Vepstas <linasvepstas@gmail.com>
13679 L:      linux-pci@vger.kernel.org
13680 S:      Supported
13681 F:      Documentation/PCI/pci-error-recovery.rst
13682
13683 PCI MSI DRIVER FOR ALTERA MSI IP
13684 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13685 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13686 L:      linux-pci@vger.kernel.org
13687 S:      Supported
13688 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13689 F:      drivers/pci/controller/pcie-altera-msi.c
13690
13691 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13692 M:      Toan Le <toan@os.amperecomputing.com>
13693 L:      linux-pci@vger.kernel.org
13694 L:      linux-arm-kernel@lists.infradead.org
13695 S:      Maintained
13696 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13697 F:      drivers/pci/controller/pci-xgene-msi.c
13698
13699 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13700 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13701 R:      Rob Herring <robh@kernel.org>
13702 L:      linux-pci@vger.kernel.org
13703 S:      Supported
13704 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13706 F:      drivers/pci/controller/
13707
13708 PCI SUBSYSTEM
13709 M:      Bjorn Helgaas <bhelgaas@google.com>
13710 L:      linux-pci@vger.kernel.org
13711 S:      Supported
13712 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13714 F:      Documentation/PCI/
13715 F:      Documentation/devicetree/bindings/pci/
13716 F:      arch/x86/kernel/early-quirks.c
13717 F:      arch/x86/kernel/quirks.c
13718 F:      arch/x86/pci/
13719 F:      drivers/acpi/pci*
13720 F:      drivers/pci/
13721 F:      include/asm-generic/pci*
13722 F:      include/linux/of_pci.h
13723 F:      include/linux/pci*
13724 F:      include/uapi/linux/pci*
13725 F:      lib/pci*
13726
13727 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13728 M:      Jonathan Chocron <jonnyc@amazon.com>
13729 L:      linux-pci@vger.kernel.org
13730 S:      Maintained
13731 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13732 F:      drivers/pci/controller/dwc/pcie-al.c
13733
13734 PCIE DRIVER FOR AMLOGIC MESON
13735 M:      Yue Wang <yue.wang@Amlogic.com>
13736 L:      linux-pci@vger.kernel.org
13737 L:      linux-amlogic@lists.infradead.org
13738 S:      Maintained
13739 F:      drivers/pci/controller/dwc/pci-meson.c
13740
13741 PCIE DRIVER FOR AXIS ARTPEC
13742 M:      Jesper Nilsson <jesper.nilsson@axis.com>
13743 L:      linux-arm-kernel@axis.com
13744 L:      linux-pci@vger.kernel.org
13745 S:      Maintained
13746 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13747 F:      drivers/pci/controller/dwc/*artpec*
13748
13749 PCIE DRIVER FOR CAVIUM THUNDERX
13750 M:      Robert Richter <rric@kernel.org>
13751 L:      linux-pci@vger.kernel.org
13752 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13753 S:      Odd Fixes
13754 F:      drivers/pci/controller/pci-thunder-*
13755
13756 PCIE DRIVER FOR HISILICON
13757 M:      Zhou Wang <wangzhou1@hisilicon.com>
13758 L:      linux-pci@vger.kernel.org
13759 S:      Maintained
13760 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13761 F:      drivers/pci/controller/dwc/pcie-hisi.c
13762
13763 PCIE DRIVER FOR HISILICON KIRIN
13764 M:      Xiaowei Song <songxiaowei@hisilicon.com>
13765 M:      Binghui Wang <wangbinghui@hisilicon.com>
13766 L:      linux-pci@vger.kernel.org
13767 S:      Maintained
13768 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13769 F:      drivers/pci/controller/dwc/pcie-kirin.c
13770
13771 PCIE DRIVER FOR HISILICON STB
13772 M:      Shawn Guo <shawn.guo@linaro.org>
13773 L:      linux-pci@vger.kernel.org
13774 S:      Maintained
13775 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13776 F:      drivers/pci/controller/dwc/pcie-histb.c
13777
13778 PCIE DRIVER FOR MEDIATEK
13779 M:      Ryder Lee <ryder.lee@mediatek.com>
13780 L:      linux-pci@vger.kernel.org
13781 L:      linux-mediatek@lists.infradead.org
13782 S:      Supported
13783 F:      Documentation/devicetree/bindings/pci/mediatek*
13784 F:      drivers/pci/controller/*mediatek*
13785
13786 PCIE DRIVER FOR QUALCOMM MSM
13787 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
13788 L:      linux-pci@vger.kernel.org
13789 L:      linux-arm-msm@vger.kernel.org
13790 S:      Maintained
13791 F:      drivers/pci/controller/dwc/*qcom*
13792
13793 PCIE DRIVER FOR ROCKCHIP
13794 M:      Shawn Lin <shawn.lin@rock-chips.com>
13795 L:      linux-pci@vger.kernel.org
13796 L:      linux-rockchip@lists.infradead.org
13797 S:      Maintained
13798 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13799 F:      drivers/pci/controller/pcie-rockchip*
13800
13801 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13802 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
13803 L:      linux-pci@vger.kernel.org
13804 S:      Maintained
13805 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
13806 F:      drivers/pci/controller/dwc/pcie-uniphier*
13807
13808 PCIE DRIVER FOR ST SPEAR13XX
13809 M:      Pratyush Anand <pratyush.anand@gmail.com>
13810 L:      linux-pci@vger.kernel.org
13811 S:      Maintained
13812 F:      drivers/pci/controller/dwc/*spear*
13813
13814 PCMCIA SUBSYSTEM
13815 M:      Dominik Brodowski <linux@dominikbrodowski.net>
13816 S:      Odd Fixes
13817 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13818 F:      Documentation/pcmcia/
13819 F:      drivers/pcmcia/
13820 F:      include/pcmcia/
13821 F:      tools/pcmcia/
13822
13823 PCNET32 NETWORK DRIVER
13824 M:      Don Fry <pcnet32@frontier.com>
13825 L:      netdev@vger.kernel.org
13826 S:      Maintained
13827 F:      drivers/net/ethernet/amd/pcnet32.c
13828
13829 PCRYPT PARALLEL CRYPTO ENGINE
13830 M:      Steffen Klassert <steffen.klassert@secunet.com>
13831 L:      linux-crypto@vger.kernel.org
13832 S:      Maintained
13833 F:      crypto/pcrypt.c
13834 F:      include/crypto/pcrypt.h
13835
13836 PEAQ WMI HOTKEYS DRIVER
13837 M:      Hans de Goede <hdegoede@redhat.com>
13838 L:      platform-driver-x86@vger.kernel.org
13839 S:      Maintained
13840 F:      drivers/platform/x86/peaq-wmi.c
13841
13842 PENSANDO ETHERNET DRIVERS
13843 M:      Shannon Nelson <snelson@pensando.io>
13844 M:      Pensando Drivers <drivers@pensando.io>
13845 L:      netdev@vger.kernel.org
13846 S:      Supported
13847 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
13848 F:      drivers/net/ethernet/pensando/
13849
13850 PER-CPU MEMORY ALLOCATOR
13851 M:      Dennis Zhou <dennis@kernel.org>
13852 M:      Tejun Heo <tj@kernel.org>
13853 M:      Christoph Lameter <cl@linux.com>
13854 S:      Maintained
13855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13856 F:      arch/*/include/asm/percpu.h
13857 F:      include/linux/percpu*.h
13858 F:      mm/percpu*.c
13859
13860 PER-TASK DELAY ACCOUNTING
13861 M:      Balbir Singh <bsingharora@gmail.com>
13862 S:      Maintained
13863 F:      include/linux/delayacct.h
13864 F:      kernel/delayacct.c
13865
13866 PERFORMANCE EVENTS SUBSYSTEM
13867 M:      Peter Zijlstra <peterz@infradead.org>
13868 M:      Ingo Molnar <mingo@redhat.com>
13869 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
13870 R:      Mark Rutland <mark.rutland@arm.com>
13871 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
13872 R:      Jiri Olsa <jolsa@redhat.com>
13873 R:      Namhyung Kim <namhyung@kernel.org>
13874 L:      linux-kernel@vger.kernel.org
13875 S:      Supported
13876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13877 F:      arch/*/events/*
13878 F:      arch/*/events/*/*
13879 F:      arch/*/include/asm/perf_event.h
13880 F:      arch/*/kernel/*/*/perf_event*.c
13881 F:      arch/*/kernel/*/perf_event*.c
13882 F:      arch/*/kernel/perf_callchain.c
13883 F:      arch/*/kernel/perf_event*.c
13884 F:      include/linux/perf_event.h
13885 F:      include/uapi/linux/perf_event.h
13886 F:      kernel/events/*
13887 F:      tools/lib/perf/
13888 F:      tools/perf/
13889
13890 PERFORMANCE EVENTS TOOLING ARM64
13891 R:      John Garry <john.garry@huawei.com>
13892 R:      Will Deacon <will@kernel.org>
13893 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
13894 R:      Leo Yan <leo.yan@linaro.org>
13895 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13896 S:      Supported
13897 F:      tools/build/feature/test-libopencsd.c
13898 F:      tools/perf/arch/arm*/
13899 F:      tools/perf/pmu-events/arch/arm64/
13900 F:      tools/perf/util/arm-spe*
13901 F:      tools/perf/util/cs-etm*
13902
13903 PERSONALITY HANDLING
13904 M:      Christoph Hellwig <hch@infradead.org>
13905 L:      linux-abi-devel@lists.sourceforge.net
13906 S:      Maintained
13907 F:      include/linux/personality.h
13908 F:      include/uapi/linux/personality.h
13909
13910 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13911 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13912 L:      linux-input@vger.kernel.org
13913 S:      Maintained
13914 F:      Documentation/input/devices/pxrc.rst
13915 F:      drivers/input/joystick/pxrc.c
13916
13917 PHONET PROTOCOL
13918 M:      Remi Denis-Courmont <courmisch@gmail.com>
13919 S:      Supported
13920 F:      Documentation/networking/phonet.rst
13921 F:      include/linux/phonet.h
13922 F:      include/net/phonet/
13923 F:      include/uapi/linux/phonet.h
13924 F:      net/phonet/
13925
13926 PHRAM MTD DRIVER
13927 M:      Joern Engel <joern@lazybastard.org>
13928 L:      linux-mtd@lists.infradead.org
13929 S:      Maintained
13930 F:      drivers/mtd/devices/phram.c
13931
13932 PICOLCD HID DRIVER
13933 M:      Bruno Prémont <bonbons@linux-vserver.org>
13934 L:      linux-input@vger.kernel.org
13935 S:      Maintained
13936 F:      drivers/hid/hid-picolcd*
13937
13938 PICOXCELL SUPPORT
13939 M:      Jamie Iles <jamie@jamieiles.com>
13940 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13941 S:      Supported
13942 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13943 F:      arch/arm/boot/dts/picoxcell*
13944 F:      arch/arm/mach-picoxcell/
13945 F:      drivers/crypto/picoxcell*
13946
13947 PIDFD API
13948 M:      Christian Brauner <christian@brauner.io>
13949 L:      linux-kernel@vger.kernel.org
13950 S:      Maintained
13951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13952 F:      samples/pidfd/
13953 F:      tools/testing/selftests/clone3/
13954 F:      tools/testing/selftests/pid_namespace/
13955 F:      tools/testing/selftests/pidfd/
13956 K:      (?i)pidfd
13957 K:      (?i)clone3
13958 K:      \b(clone_args|kernel_clone_args)\b
13959
13960 PIN CONTROL SUBSYSTEM
13961 M:      Linus Walleij <linus.walleij@linaro.org>
13962 L:      linux-gpio@vger.kernel.org
13963 S:      Maintained
13964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13965 F:      Documentation/devicetree/bindings/pinctrl/
13966 F:      Documentation/driver-api/pinctl.rst
13967 F:      drivers/pinctrl/
13968 F:      include/linux/pinctrl/
13969
13970 PIN CONTROLLER - FREESCALE
13971 M:      Dong Aisheng <aisheng.dong@nxp.com>
13972 M:      Fabio Estevam <festevam@gmail.com>
13973 M:      Shawn Guo <shawnguo@kernel.org>
13974 M:      Stefan Agner <stefan@agner.ch>
13975 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
13976 L:      linux-gpio@vger.kernel.org
13977 S:      Maintained
13978 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13979 F:      drivers/pinctrl/freescale/
13980
13981 PIN CONTROLLER - INTEL
13982 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13983 M:      Andy Shevchenko <andy@kernel.org>
13984 S:      Maintained
13985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13986 F:      drivers/pinctrl/intel/
13987
13988 PIN CONTROLLER - MEDIATEK
13989 M:      Sean Wang <sean.wang@kernel.org>
13990 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13991 S:      Maintained
13992 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13993 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13994 F:      drivers/pinctrl/mediatek/
13995
13996 PIN CONTROLLER - MICROCHIP AT91
13997 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13998 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13999 L:      linux-gpio@vger.kernel.org
14000 S:      Supported
14001 F:      drivers/gpio/gpio-sama5d2-piobu.c
14002 F:      drivers/pinctrl/pinctrl-at91*
14003
14004 PIN CONTROLLER - QUALCOMM
14005 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14006 L:      linux-arm-msm@vger.kernel.org
14007 S:      Maintained
14008 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14009 F:      drivers/pinctrl/qcom/
14010
14011 PIN CONTROLLER - RENESAS
14012 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14013 L:      linux-renesas-soc@vger.kernel.org
14014 S:      Supported
14015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14016 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
14017 F:      drivers/pinctrl/renesas/
14018
14019 PIN CONTROLLER - SAMSUNG
14020 M:      Tomasz Figa <tomasz.figa@gmail.com>
14021 M:      Krzysztof Kozlowski <krzk@kernel.org>
14022 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14023 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14024 L:      linux-samsung-soc@vger.kernel.org
14025 S:      Maintained
14026 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
14027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14028 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14029 F:      drivers/pinctrl/samsung/
14030 F:      include/dt-bindings/pinctrl/samsung.h
14031
14032 PIN CONTROLLER - SINGLE
14033 M:      Tony Lindgren <tony@atomide.com>
14034 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
14035 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14036 L:      linux-omap@vger.kernel.org
14037 S:      Maintained
14038 F:      drivers/pinctrl/pinctrl-single.c
14039
14040 PIN CONTROLLER - ST SPEAR
14041 M:      Viresh Kumar <vireshk@kernel.org>
14042 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14043 S:      Maintained
14044 W:      http://www.st.com/spear
14045 F:      drivers/pinctrl/spear/
14046
14047 PISTACHIO SOC SUPPORT
14048 M:      James Hartley <james.hartley@sondrel.com>
14049 L:      linux-mips@vger.kernel.org
14050 S:      Odd Fixes
14051 F:      arch/mips/boot/dts/img/pistachio*
14052 F:      arch/mips/configs/pistachio*_defconfig
14053 F:      arch/mips/include/asm/mach-pistachio/
14054 F:      arch/mips/pistachio/
14055
14056 PKTCDVD DRIVER
14057 M:      linux-block@vger.kernel.org
14058 S:      Orphan
14059 F:      drivers/block/pktcdvd.c
14060 F:      include/linux/pktcdvd.h
14061 F:      include/uapi/linux/pktcdvd.h
14062
14063 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14064 M:      Tomasz Duszynski <tduszyns@gmail.com>
14065 S:      Maintained
14066 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14067 F:      drivers/iio/chemical/pms7003.c
14068
14069 PLDMFW LIBRARY
14070 M:      Jacob Keller <jacob.e.keller@intel.com>
14071 S:      Maintained
14072 F:      Documentation/driver-api/pldmfw/
14073 F:      include/linux/pldmfw.h
14074 F:      lib/pldmfw/
14075
14076 PLX DMA DRIVER
14077 M:      Logan Gunthorpe <logang@deltatee.com>
14078 S:      Maintained
14079 F:      drivers/dma/plx_dma.c
14080
14081 PM6764TR DRIVER
14082 M:      Charles Hsu     <hsu.yungteng@gmail.com>
14083 L:      linux-hwmon@vger.kernel.org
14084 S:      Maintained
14085 F:      Documentation/hwmon/pm6764tr.rst
14086 F:      drivers/hwmon/pmbus/pm6764tr.c
14087
14088 PM-GRAPH UTILITY
14089 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14090 L:      linux-pm@vger.kernel.org
14091 S:      Supported
14092 W:      https://01.org/pm-graph
14093 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14094 T:      git git://github.com/intel/pm-graph
14095 F:      tools/power/pm-graph
14096
14097 PMBUS HARDWARE MONITORING DRIVERS
14098 M:      Guenter Roeck <linux@roeck-us.net>
14099 L:      linux-hwmon@vger.kernel.org
14100 S:      Maintained
14101 W:      http://hwmon.wiki.kernel.org/
14102 W:      http://www.roeck-us.net/linux/drivers/
14103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14104 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14105 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
14106 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
14107 F:      Documentation/hwmon/adm1275.rst
14108 F:      Documentation/hwmon/ibm-cffps.rst
14109 F:      Documentation/hwmon/ir35221.rst
14110 F:      Documentation/hwmon/lm25066.rst
14111 F:      Documentation/hwmon/ltc2978.rst
14112 F:      Documentation/hwmon/ltc3815.rst
14113 F:      Documentation/hwmon/max16064.rst
14114 F:      Documentation/hwmon/max20751.rst
14115 F:      Documentation/hwmon/max31785.rst
14116 F:      Documentation/hwmon/max34440.rst
14117 F:      Documentation/hwmon/max8688.rst
14118 F:      Documentation/hwmon/pmbus-core.rst
14119 F:      Documentation/hwmon/pmbus.rst
14120 F:      Documentation/hwmon/tps40422.rst
14121 F:      Documentation/hwmon/ucd9000.rst
14122 F:      Documentation/hwmon/ucd9200.rst
14123 F:      Documentation/hwmon/zl6100.rst
14124 F:      drivers/hwmon/pmbus/
14125 F:      include/linux/pmbus.h
14126
14127 PMC SIERRA MaxRAID DRIVER
14128 L:      linux-scsi@vger.kernel.org
14129 S:      Orphan
14130 W:      http://www.pmc-sierra.com/
14131 F:      drivers/scsi/pmcraid.*
14132
14133 PMC SIERRA PM8001 DRIVER
14134 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14135 L:      linux-scsi@vger.kernel.org
14136 S:      Supported
14137 F:      drivers/scsi/pm8001/
14138
14139 PNI RM3100 IIO DRIVER
14140 M:      Song Qiang <songqiang1304521@gmail.com>
14141 L:      linux-iio@vger.kernel.org
14142 S:      Maintained
14143 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
14144 F:      drivers/iio/magnetometer/rm3100*
14145
14146 PNP SUPPORT
14147 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
14148 L:      linux-acpi@vger.kernel.org
14149 S:      Maintained
14150 F:      drivers/pnp/
14151 F:      include/linux/pnp.h
14152
14153 POSIX CLOCKS and TIMERS
14154 M:      Thomas Gleixner <tglx@linutronix.de>
14155 L:      linux-kernel@vger.kernel.org
14156 S:      Maintained
14157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
14158 F:      fs/timerfd.c
14159 F:      include/linux/time_namespace.h
14160 F:      include/linux/timer*
14161 F:      kernel/time/*timer*
14162 F:      kernel/time/namespace.c
14163
14164 POWER MANAGEMENT CORE
14165 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
14166 L:      linux-pm@vger.kernel.org
14167 S:      Supported
14168 B:      https://bugzilla.kernel.org
14169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14170 F:      drivers/base/power/
14171 F:      drivers/powercap/
14172 F:      include/linux/intel_rapl.h
14173 F:      include/linux/pm.h
14174 F:      include/linux/pm_*
14175 F:      include/linux/powercap.h
14176 F:      kernel/configs/nopm.config
14177
14178 POWER STATE COORDINATION INTERFACE (PSCI)
14179 M:      Mark Rutland <mark.rutland@arm.com>
14180 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14181 L:      linux-arm-kernel@lists.infradead.org
14182 S:      Maintained
14183 F:      drivers/firmware/psci/
14184 F:      include/linux/psci.h
14185 F:      include/uapi/linux/psci.h
14186
14187 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
14188 M:      Sebastian Reichel <sre@kernel.org>
14189 L:      linux-pm@vger.kernel.org
14190 S:      Maintained
14191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
14192 F:      Documentation/ABI/testing/sysfs-class-power
14193 F:      Documentation/devicetree/bindings/power/supply/
14194 F:      drivers/power/supply/
14195 F:      include/linux/power_supply.h
14196
14197 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
14198 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
14199 L:      linuxppc-dev@lists.ozlabs.org
14200 S:      Maintained
14201 F:      drivers/char/powernv-op-panel.c
14202
14203 PPP OVER ATM (RFC 2364)
14204 M:      Mitchell Blank Jr <mitch@sfgoth.com>
14205 S:      Maintained
14206 F:      include/uapi/linux/atmppp.h
14207 F:      net/atm/pppoatm.c
14208
14209 PPP OVER ETHERNET
14210 M:      Michal Ostrowski <mostrows@earthlink.net>
14211 S:      Maintained
14212 F:      drivers/net/ppp/pppoe.c
14213 F:      drivers/net/ppp/pppox.c
14214
14215 PPP OVER L2TP
14216 M:      James Chapman <jchapman@katalix.com>
14217 S:      Maintained
14218 F:      include/linux/if_pppol2tp.h
14219 F:      include/uapi/linux/if_pppol2tp.h
14220 F:      net/l2tp/l2tp_ppp.c
14221
14222 PPP PROTOCOL DRIVERS AND COMPRESSORS
14223 M:      Paul Mackerras <paulus@samba.org>
14224 L:      linux-ppp@vger.kernel.org
14225 S:      Maintained
14226 F:      drivers/net/ppp/ppp_*
14227
14228 PPS SUPPORT
14229 M:      Rodolfo Giometti <giometti@enneenne.com>
14230 L:      linuxpps@ml.enneenne.com (subscribers-only)
14231 S:      Maintained
14232 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
14233 F:      Documentation/ABI/testing/sysfs-pps
14234 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
14235 F:      Documentation/driver-api/pps.rst
14236 F:      drivers/pps/
14237 F:      include/linux/pps*.h
14238 F:      include/uapi/linux/pps.h
14239
14240 PPTP DRIVER
14241 M:      Dmitry Kozlov <xeb@mail.ru>
14242 L:      netdev@vger.kernel.org
14243 S:      Maintained
14244 W:      http://sourceforge.net/projects/accel-pptp
14245 F:      drivers/net/ppp/pptp.c
14246
14247 PRESSURE STALL INFORMATION (PSI)
14248 M:      Johannes Weiner <hannes@cmpxchg.org>
14249 S:      Maintained
14250 F:      include/linux/psi*
14251 F:      kernel/sched/psi.c
14252
14253 PRINTK
14254 M:      Petr Mladek <pmladek@suse.com>
14255 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
14256 R:      Steven Rostedt <rostedt@goodmis.org>
14257 R:      John Ogness <john.ogness@linutronix.de>
14258 S:      Maintained
14259 F:      include/linux/printk.h
14260 F:      kernel/printk/
14261
14262 PRISM54 WIRELESS DRIVER
14263 M:      Luis Chamberlain <mcgrof@kernel.org>
14264 L:      linux-wireless@vger.kernel.org
14265 S:      Obsolete
14266 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14267 F:      drivers/net/wireless/intersil/prism54/
14268
14269 PROC FILESYSTEM
14270 R:      Alexey Dobriyan <adobriyan@gmail.com>
14271 L:      linux-kernel@vger.kernel.org
14272 L:      linux-fsdevel@vger.kernel.org
14273 S:      Maintained
14274 F:      Documentation/filesystems/proc.rst
14275 F:      fs/proc/
14276 F:      include/linux/proc_fs.h
14277 F:      tools/testing/selftests/proc/
14278
14279 PROC SYSCTL
14280 M:      Luis Chamberlain <mcgrof@kernel.org>
14281 M:      Kees Cook <keescook@chromium.org>
14282 M:      Iurii Zaikin <yzaikin@google.com>
14283 L:      linux-kernel@vger.kernel.org
14284 L:      linux-fsdevel@vger.kernel.org
14285 S:      Maintained
14286 F:      fs/proc/proc_sysctl.c
14287 F:      include/linux/sysctl.h
14288 F:      kernel/sysctl-test.c
14289 F:      kernel/sysctl.c
14290 F:      tools/testing/selftests/sysctl/
14291
14292 PS3 NETWORK SUPPORT
14293 M:      Geoff Levand <geoff@infradead.org>
14294 L:      netdev@vger.kernel.org
14295 L:      linuxppc-dev@lists.ozlabs.org
14296 S:      Maintained
14297 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
14298
14299 PS3 PLATFORM SUPPORT
14300 M:      Geoff Levand <geoff@infradead.org>
14301 L:      linuxppc-dev@lists.ozlabs.org
14302 S:      Maintained
14303 F:      arch/powerpc/boot/ps3*
14304 F:      arch/powerpc/include/asm/lv1call.h
14305 F:      arch/powerpc/include/asm/ps3*.h
14306 F:      arch/powerpc/platforms/ps3/
14307 F:      drivers/*/ps3*
14308 F:      drivers/ps3/
14309 F:      drivers/rtc/rtc-ps3.c
14310 F:      drivers/usb/host/*ps3.c
14311 F:      sound/ppc/snd_ps3*
14312
14313 PS3VRAM DRIVER
14314 M:      Jim Paris <jim@jtan.com>
14315 M:      Geoff Levand <geoff@infradead.org>
14316 L:      linuxppc-dev@lists.ozlabs.org
14317 S:      Maintained
14318 F:      drivers/block/ps3vram.c
14319
14320 PSAMPLE PACKET SAMPLING SUPPORT
14321 M:      Yotam Gigi <yotam.gi@gmail.com>
14322 S:      Maintained
14323 F:      include/net/psample.h
14324 F:      include/uapi/linux/psample.h
14325 F:      net/psample
14326
14327 PSTORE FILESYSTEM
14328 M:      Kees Cook <keescook@chromium.org>
14329 M:      Anton Vorontsov <anton@enomsg.org>
14330 M:      Colin Cross <ccross@android.com>
14331 M:      Tony Luck <tony.luck@intel.com>
14332 S:      Maintained
14333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
14334 F:      Documentation/admin-guide/ramoops.rst
14335 F:      Documentation/admin-guide/pstore-blk.rst
14336 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
14337 F:      drivers/acpi/apei/erst.c
14338 F:      drivers/firmware/efi/efi-pstore.c
14339 F:      fs/pstore/
14340 F:      include/linux/pstore*
14341 K:      \b(pstore|ramoops)
14342
14343 PTP HARDWARE CLOCK SUPPORT
14344 M:      Richard Cochran <richardcochran@gmail.com>
14345 L:      netdev@vger.kernel.org
14346 S:      Maintained
14347 W:      http://linuxptp.sourceforge.net/
14348 F:      Documentation/ABI/testing/sysfs-ptp
14349 F:      Documentation/driver-api/ptp.rst
14350 F:      drivers/net/phy/dp83640*
14351 F:      drivers/ptp/*
14352 F:      include/linux/ptp_cl*
14353
14354 PTRACE SUPPORT
14355 M:      Oleg Nesterov <oleg@redhat.com>
14356 S:      Maintained
14357 F:      arch/*/*/ptrace*.c
14358 F:      arch/*/include/asm/ptrace*.h
14359 F:      arch/*/ptrace*.c
14360 F:      include/asm-generic/syscall.h
14361 F:      include/linux/ptrace.h
14362 F:      include/linux/regset.h
14363 F:      include/linux/tracehook.h
14364 F:      include/uapi/linux/ptrace.h
14365 F:      include/uapi/linux/ptrace.h
14366 F:      kernel/ptrace.c
14367
14368 PULSE8-CEC DRIVER
14369 M:      Hans Verkuil <hverkuil@xs4all.nl>
14370 L:      linux-media@vger.kernel.org
14371 S:      Maintained
14372 T:      git git://linuxtv.org/media_tree.git
14373 F:      Documentation/admin-guide/media/pulse8-cec.rst
14374 F:      drivers/media/cec/usb/pulse8/
14375
14376 PVRUSB2 VIDEO4LINUX DRIVER
14377 M:      Mike Isely <isely@pobox.com>
14378 L:      pvrusb2@isely.net       (subscribers-only)
14379 L:      linux-media@vger.kernel.org
14380 S:      Maintained
14381 W:      http://www.isely.net/pvrusb2/
14382 T:      git git://linuxtv.org/media_tree.git
14383 F:      Documentation/driver-api/media/drivers/pvrusb2*
14384 F:      drivers/media/usb/pvrusb2/
14385
14386 PWC WEBCAM DRIVER
14387 M:      Hans Verkuil <hverkuil@xs4all.nl>
14388 L:      linux-media@vger.kernel.org
14389 S:      Odd Fixes
14390 T:      git git://linuxtv.org/media_tree.git
14391 F:      drivers/media/usb/pwc/*
14392 F:      include/trace/events/pwc.h
14393
14394 PWM FAN DRIVER
14395 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14396 L:      linux-hwmon@vger.kernel.org
14397 S:      Supported
14398 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
14399 F:      Documentation/hwmon/pwm-fan.rst
14400 F:      drivers/hwmon/pwm-fan.c
14401
14402 PWM IR Transmitter
14403 M:      Sean Young <sean@mess.org>
14404 L:      linux-media@vger.kernel.org
14405 S:      Maintained
14406 F:      drivers/media/rc/pwm-ir-tx.c
14407
14408 PWM SUBSYSTEM
14409 M:      Thierry Reding <thierry.reding@gmail.com>
14410 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
14411 M:      Lee Jones <lee.jones@linaro.org>
14412 L:      linux-pwm@vger.kernel.org
14413 S:      Maintained
14414 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
14415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
14416 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
14417 F:      Documentation/devicetree/bindings/pwm/
14418 F:      Documentation/driver-api/pwm.rst
14419 F:      drivers/gpio/gpio-mvebu.c
14420 F:      drivers/pwm/
14421 F:      drivers/video/backlight/pwm_bl.c
14422 F:      include/linux/pwm.h
14423 F:      include/linux/pwm_backlight.h
14424 K:      pwm_(config|apply_state|ops)
14425
14426 PXA GPIO DRIVER
14427 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14428 L:      linux-gpio@vger.kernel.org
14429 S:      Maintained
14430 F:      drivers/gpio/gpio-pxa.c
14431
14432 PXA MMCI DRIVER
14433 S:      Orphan
14434
14435 PXA RTC DRIVER
14436 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14437 L:      linux-rtc@vger.kernel.org
14438 S:      Maintained
14439
14440 PXA2xx/PXA3xx SUPPORT
14441 M:      Daniel Mack <daniel@zonque.org>
14442 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
14443 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14444 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14445 S:      Maintained
14446 T:      git git://github.com/hzhuang1/linux.git
14447 T:      git git://github.com/rjarzmik/linux.git
14448 F:      arch/arm/boot/dts/pxa*
14449 F:      arch/arm/mach-pxa/
14450 F:      drivers/dma/pxa*
14451 F:      drivers/pcmcia/pxa2xx*
14452 F:      drivers/pinctrl/pxa/
14453 F:      drivers/spi/spi-pxa2xx*
14454 F:      drivers/usb/gadget/udc/pxa2*
14455 F:      include/sound/pxa2xx-lib.h
14456 F:      sound/arm/pxa*
14457 F:      sound/soc/pxa/
14458
14459 QAT DRIVER
14460 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
14461 L:      qat-linux@intel.com
14462 S:      Supported
14463 F:      drivers/crypto/qat/
14464
14465 QCOM AUDIO (ASoC) DRIVERS
14466 M:      Patrick Lai <plai@codeaurora.org>
14467 M:      Banajit Goswami <bgoswami@codeaurora.org>
14468 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14469 S:      Supported
14470 F:      sound/soc/qcom/
14471
14472 QCOM IPA DRIVER
14473 M:      Alex Elder <elder@kernel.org>
14474 L:      netdev@vger.kernel.org
14475 S:      Supported
14476 F:      drivers/net/ipa/
14477
14478 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
14479 M:      Gabriel Somlo <somlo@cmu.edu>
14480 M:      "Michael S. Tsirkin" <mst@redhat.com>
14481 L:      qemu-devel@nongnu.org
14482 S:      Maintained
14483 F:      drivers/firmware/qemu_fw_cfg.c
14484 F:      include/uapi/linux/qemu_fw_cfg.h
14485
14486 QIB DRIVER
14487 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14488 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14489 L:      linux-rdma@vger.kernel.org
14490 S:      Supported
14491 F:      drivers/infiniband/hw/qib/
14492
14493 QLOGIC QL41xxx FCOE DRIVER
14494 M:      Saurav Kashyap <skashyap@marvell.com>
14495 M:      Javed Hasan <jhasan@marvell.com>
14496 M:      GR-QLogic-Storage-Upstream@marvell.com
14497 L:      linux-scsi@vger.kernel.org
14498 S:      Supported
14499 F:      drivers/scsi/qedf/
14500
14501 QLOGIC QL41xxx ISCSI DRIVER
14502 M:      Nilesh Javali <njavali@marvell.com>
14503 M:      Manish Rangankar <mrangankar@marvell.com>
14504 M:      GR-QLogic-Storage-Upstream@marvell.com
14505 L:      linux-scsi@vger.kernel.org
14506 S:      Supported
14507 F:      drivers/scsi/qedi/
14508
14509 QLOGIC QL4xxx ETHERNET DRIVER
14510 M:      Ariel Elior <aelior@marvell.com>
14511 M:      GR-everest-linux-l2@marvell.com
14512 L:      netdev@vger.kernel.org
14513 S:      Supported
14514 F:      drivers/net/ethernet/qlogic/qed/
14515 F:      drivers/net/ethernet/qlogic/qede/
14516 F:      include/linux/qed/
14517
14518 QLOGIC QL4xxx RDMA DRIVER
14519 M:      Michal Kalderon <mkalderon@marvell.com>
14520 M:      Ariel Elior <aelior@marvell.com>
14521 L:      linux-rdma@vger.kernel.org
14522 S:      Supported
14523 F:      drivers/infiniband/hw/qedr/
14524 F:      include/uapi/rdma/qedr-abi.h
14525
14526 QLOGIC QLA1280 SCSI DRIVER
14527 M:      Michael Reed <mdr@sgi.com>
14528 L:      linux-scsi@vger.kernel.org
14529 S:      Maintained
14530 F:      drivers/scsi/qla1280.[ch]
14531
14532 QLOGIC QLA2XXX FC-SCSI DRIVER
14533 M:      Nilesh Javali <njavali@marvell.com>
14534 M:      GR-QLogic-Storage-Upstream@marvell.com
14535 L:      linux-scsi@vger.kernel.org
14536 S:      Supported
14537 F:      drivers/scsi/qla2xxx/
14538
14539 QLOGIC QLA3XXX NETWORK DRIVER
14540 M:      GR-Linux-NIC-Dev@marvell.com
14541 L:      netdev@vger.kernel.org
14542 S:      Supported
14543 F:      drivers/net/ethernet/qlogic/qla3xxx.*
14544
14545 QLOGIC QLA4XXX iSCSI DRIVER
14546 M:      Nilesh Javali <njavali@marvell.com>
14547 M:      Manish Rangankar <mrangankar@marvell.com>
14548 M:      GR-QLogic-Storage-Upstream@marvell.com
14549 L:      linux-scsi@vger.kernel.org
14550 S:      Supported
14551 F:      drivers/scsi/qla4xxx/
14552
14553 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14554 M:      Shahed Shaikh <shshaikh@marvell.com>
14555 M:      Manish Chopra <manishc@marvell.com>
14556 M:      GR-Linux-NIC-Dev@marvell.com
14557 L:      netdev@vger.kernel.org
14558 S:      Supported
14559 F:      drivers/net/ethernet/qlogic/qlcnic/
14560
14561 QLOGIC QLGE 10Gb ETHERNET DRIVER
14562 M:      Manish Chopra <manishc@marvell.com>
14563 M:      GR-Linux-NIC-Dev@marvell.com
14564 L:      netdev@vger.kernel.org
14565 S:      Supported
14566 F:      drivers/staging/qlge/
14567
14568 QM1D1B0004 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/qm1d1b0004*
14573
14574 QM1D1C0042 MEDIA DRIVER
14575 M:      Akihiro Tsukada <tskd08@gmail.com>
14576 L:      linux-media@vger.kernel.org
14577 S:      Odd Fixes
14578 F:      drivers/media/tuners/qm1d1c0042*
14579
14580 QNX4 FILESYSTEM
14581 M:      Anders Larsen <al@alarsen.net>
14582 S:      Maintained
14583 W:      http://www.alarsen.net/linux/qnx4fs/
14584 F:      fs/qnx4/
14585 F:      include/uapi/linux/qnx4_fs.h
14586 F:      include/uapi/linux/qnxtypes.h
14587
14588 QORIQ DPAA2 FSL-MC BUS DRIVER
14589 M:      Stuart Yoder <stuyoder@gmail.com>
14590 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
14591 L:      linux-kernel@vger.kernel.org
14592 S:      Maintained
14593 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
14594 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
14595 F:      drivers/bus/fsl-mc/
14596
14597 QT1010 MEDIA DRIVER
14598 M:      Antti Palosaari <crope@iki.fi>
14599 L:      linux-media@vger.kernel.org
14600 S:      Maintained
14601 W:      https://linuxtv.org
14602 W:      http://palosaari.fi/linux/
14603 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14604 T:      git git://linuxtv.org/anttip/media_tree.git
14605 F:      drivers/media/tuners/qt1010*
14606
14607 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
14608 M:      Kalle Valo <kvalo@codeaurora.org>
14609 L:      ath10k@lists.infradead.org
14610 S:      Supported
14611 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
14612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14613 F:      drivers/net/wireless/ath/ath10k/
14614
14615 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
14616 M:      Kalle Valo <kvalo@codeaurora.org>
14617 L:      ath11k@lists.infradead.org
14618 S:      Supported
14619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14620 F:      drivers/net/wireless/ath/ath11k/
14621
14622 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
14623 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
14624 L:      linux-wireless@vger.kernel.org
14625 S:      Supported
14626 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
14627 F:      drivers/net/wireless/ath/ath9k/
14628
14629 QUALCOMM CAMERA SUBSYSTEM DRIVER
14630 M:      Robert Foss <robert.foss@linaro.org>
14631 M:      Todor Tomov <todor.too@gmail.com>
14632 L:      linux-media@vger.kernel.org
14633 S:      Maintained
14634 F:      Documentation/admin-guide/media/qcom_camss.rst
14635 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
14636 F:      drivers/media/platform/qcom/camss/
14637
14638 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
14639 M:      Niklas Cassel <nks@flawful.org>
14640 L:      linux-pm@vger.kernel.org
14641 L:      linux-arm-msm@vger.kernel.org
14642 S:      Maintained
14643 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
14644 F:      drivers/soc/qcom/cpr.c
14645
14646 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
14647 M:      Ilia Lin <ilia.lin@kernel.org>
14648 L:      linux-pm@vger.kernel.org
14649 S:      Maintained
14650 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
14651 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
14652
14653 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
14654 M:      Timur Tabi <timur@kernel.org>
14655 L:      netdev@vger.kernel.org
14656 S:      Maintained
14657 F:      drivers/net/ethernet/qualcomm/emac/
14658
14659 QUALCOMM ETHQOS ETHERNET DRIVER
14660 M:      Vinod Koul <vkoul@kernel.org>
14661 L:      netdev@vger.kernel.org
14662 S:      Maintained
14663 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
14664 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
14665
14666 QUALCOMM GENERIC INTERFACE I2C DRIVER
14667 M:      Akash Asthana <akashast@codeaurora.org>
14668 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
14669 L:      linux-i2c@vger.kernel.org
14670 L:      linux-arm-msm@vger.kernel.org
14671 S:      Supported
14672 F:      drivers/i2c/busses/i2c-qcom-geni.c
14673
14674 QUALCOMM HEXAGON ARCHITECTURE
14675 M:      Brian Cain <bcain@codeaurora.org>
14676 L:      linux-hexagon@vger.kernel.org
14677 S:      Supported
14678 F:      arch/hexagon/
14679
14680 QUALCOMM HIDMA DRIVER
14681 M:      Sinan Kaya <okaya@kernel.org>
14682 L:      linux-arm-kernel@lists.infradead.org
14683 L:      linux-arm-msm@vger.kernel.org
14684 L:      dmaengine@vger.kernel.org
14685 S:      Supported
14686 F:      drivers/dma/qcom/hidma*
14687
14688 QUALCOMM I2C CCI DRIVER
14689 M:      Loic Poulain <loic.poulain@linaro.org>
14690 M:      Robert Foss <robert.foss@linaro.org>
14691 L:      linux-i2c@vger.kernel.org
14692 L:      linux-arm-msm@vger.kernel.org
14693 S:      Maintained
14694 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
14695 F:      drivers/i2c/busses/i2c-qcom-cci.c
14696
14697 QUALCOMM IOMMU
14698 M:      Rob Clark <robdclark@gmail.com>
14699 L:      iommu@lists.linux-foundation.org
14700 L:      linux-arm-msm@vger.kernel.org
14701 S:      Maintained
14702 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
14703
14704 QUALCOMM IPCC MAILBOX DRIVER
14705 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
14706 L:      linux-arm-msm@vger.kernel.org
14707 S:      Supported
14708 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
14709 F:      drivers/mailbox/qcom-ipcc.c
14710 F:      include/dt-bindings/mailbox/qcom-ipcc.h
14711
14712 QUALCOMM IPQ4019 USB PHY DRIVER
14713 M:      Robert Marko <robert.marko@sartura.hr>
14714 M:      Luka Perkov <luka.perkov@sartura.hr>
14715 L:      linux-arm-msm@vger.kernel.org
14716 S:      Maintained
14717 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
14718 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
14719
14720 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
14721 M:      Robert Marko <robert.marko@sartura.hr>
14722 M:      Luka Perkov <luka.perkov@sartura.hr>
14723 L:      linux-arm-msm@vger.kernel.org
14724 S:      Maintained
14725 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
14726 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
14727
14728 QUALCOMM RMNET DRIVER
14729 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
14730 M:      Sean Tranchetti <stranche@codeaurora.org>
14731 L:      netdev@vger.kernel.org
14732 S:      Maintained
14733 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
14734 F:      drivers/net/ethernet/qualcomm/rmnet/
14735 F:      include/linux/if_rmnet.h
14736
14737 QUALCOMM TSENS THERMAL DRIVER
14738 M:      Amit Kucheria <amitk@kernel.org>
14739 L:      linux-pm@vger.kernel.org
14740 L:      linux-arm-msm@vger.kernel.org
14741 S:      Maintained
14742 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14743 F:      drivers/thermal/qcom/
14744
14745 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14746 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
14747 L:      linux-media@vger.kernel.org
14748 L:      linux-arm-msm@vger.kernel.org
14749 S:      Maintained
14750 T:      git git://linuxtv.org/media_tree.git
14751 F:      Documentation/devicetree/bindings/media/*venus*
14752 F:      drivers/media/platform/qcom/venus/
14753
14754 QUALCOMM WCN36XX WIRELESS DRIVER
14755 M:      Kalle Valo <kvalo@codeaurora.org>
14756 L:      wcn36xx@lists.infradead.org
14757 S:      Supported
14758 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
14759 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14760 F:      drivers/net/wireless/ath/wcn36xx/
14761
14762 QUANTENNA QTNFMAC WIRELESS DRIVER
14763 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
14764 R:      Sergey Matyukevich <geomatsi@gmail.com>
14765 L:      linux-wireless@vger.kernel.org
14766 S:      Maintained
14767 F:      drivers/net/wireless/quantenna
14768
14769 RADEON and AMDGPU DRM DRIVERS
14770 M:      Alex Deucher <alexander.deucher@amd.com>
14771 M:      Christian König <christian.koenig@amd.com>
14772 L:      amd-gfx@lists.freedesktop.org
14773 S:      Supported
14774 T:      git git://people.freedesktop.org/~agd5f/linux
14775 F:      drivers/gpu/drm/amd/
14776 F:      drivers/gpu/drm/radeon/
14777 F:      include/uapi/drm/amdgpu_drm.h
14778 F:      include/uapi/drm/radeon_drm.h
14779
14780 RADEON FRAMEBUFFER DISPLAY DRIVER
14781 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
14782 L:      linux-fbdev@vger.kernel.org
14783 S:      Maintained
14784 F:      drivers/video/fbdev/aty/radeon*
14785 F:      include/uapi/linux/radeonfb.h
14786
14787 RADIOSHARK RADIO DRIVER
14788 M:      Hans Verkuil <hverkuil@xs4all.nl>
14789 L:      linux-media@vger.kernel.org
14790 S:      Maintained
14791 T:      git git://linuxtv.org/media_tree.git
14792 F:      drivers/media/radio/radio-shark.c
14793
14794 RADIOSHARK2 RADIO DRIVER
14795 M:      Hans Verkuil <hverkuil@xs4all.nl>
14796 L:      linux-media@vger.kernel.org
14797 S:      Maintained
14798 T:      git git://linuxtv.org/media_tree.git
14799 F:      drivers/media/radio/radio-shark2.c
14800 F:      drivers/media/radio/radio-tea5777.c
14801
14802 RADOS BLOCK DEVICE (RBD)
14803 M:      Ilya Dryomov <idryomov@gmail.com>
14804 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
14805 L:      ceph-devel@vger.kernel.org
14806 S:      Supported
14807 W:      http://ceph.com/
14808 T:      git git://github.com/ceph/ceph-client.git
14809 F:      Documentation/ABI/testing/sysfs-bus-rbd
14810 F:      drivers/block/rbd.c
14811 F:      drivers/block/rbd_types.h
14812
14813 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14814 M:      Paul Mackerras <paulus@samba.org>
14815 L:      linux-fbdev@vger.kernel.org
14816 S:      Maintained
14817 F:      drivers/video/fbdev/aty/aty128fb.c
14818
14819 RAINSHADOW-CEC DRIVER
14820 M:      Hans Verkuil <hverkuil@xs4all.nl>
14821 L:      linux-media@vger.kernel.org
14822 S:      Maintained
14823 T:      git git://linuxtv.org/media_tree.git
14824 F:      drivers/media/cec/usb/rainshadow/
14825
14826 RALINK MIPS ARCHITECTURE
14827 M:      John Crispin <john@phrozen.org>
14828 L:      linux-mips@vger.kernel.org
14829 S:      Maintained
14830 F:      arch/mips/ralink
14831
14832 RALINK RT2X00 WIRELESS LAN DRIVER
14833 M:      Stanislaw Gruszka <stf_xl@wp.pl>
14834 M:      Helmut Schaa <helmut.schaa@googlemail.com>
14835 L:      linux-wireless@vger.kernel.org
14836 S:      Maintained
14837 F:      drivers/net/wireless/ralink/rt2x00/
14838
14839 RAMDISK RAM BLOCK DEVICE DRIVER
14840 M:      Jens Axboe <axboe@kernel.dk>
14841 S:      Maintained
14842 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14843 F:      drivers/block/brd.c
14844
14845 RANCHU VIRTUAL BOARD FOR MIPS
14846 M:      Miodrag Dinic <miodrag.dinic@mips.com>
14847 L:      linux-mips@vger.kernel.org
14848 S:      Supported
14849 F:      arch/mips/configs/generic/board-ranchu.config
14850 F:      arch/mips/generic/board-ranchu.c
14851
14852 RANDOM NUMBER DRIVER
14853 M:      "Theodore Ts'o" <tytso@mit.edu>
14854 S:      Maintained
14855 F:      drivers/char/random.c
14856
14857 RAPIDIO SUBSYSTEM
14858 M:      Matt Porter <mporter@kernel.crashing.org>
14859 M:      Alexandre Bounine <alex.bou9@gmail.com>
14860 S:      Maintained
14861 F:      drivers/rapidio/
14862
14863 RAS INFRASTRUCTURE
14864 M:      Tony Luck <tony.luck@intel.com>
14865 M:      Borislav Petkov <bp@alien8.de>
14866 L:      linux-edac@vger.kernel.org
14867 S:      Maintained
14868 F:      Documentation/admin-guide/ras.rst
14869 F:      drivers/ras/
14870 F:      include/linux/ras.h
14871 F:      include/ras/ras_event.h
14872
14873 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14874 L:      linux-wireless@vger.kernel.org
14875 S:      Orphan
14876 F:      drivers/net/wireless/ray*
14877
14878 RC-CORE / LIRC FRAMEWORK
14879 M:      Sean Young <sean@mess.org>
14880 L:      linux-media@vger.kernel.org
14881 S:      Maintained
14882 W:      http://linuxtv.org
14883 T:      git git://linuxtv.org/media_tree.git
14884 F:      Documentation/driver-api/media/rc-core.rst
14885 F:      Documentation/userspace-api/media/rc/
14886 F:      drivers/media/rc/
14887 F:      include/media/rc-map.h
14888 F:      include/media/rc-core.h
14889 F:      include/uapi/linux/lirc.h
14890
14891 RCMM REMOTE CONTROLS DECODER
14892 M:      Patrick Lerda <patrick9876@free.fr>
14893 S:      Maintained
14894 F:      drivers/media/rc/ir-rcmm-decoder.c
14895
14896 RCUTORTURE TEST FRAMEWORK
14897 M:      "Paul E. McKenney" <paulmck@kernel.org>
14898 M:      Josh Triplett <josh@joshtriplett.org>
14899 R:      Steven Rostedt <rostedt@goodmis.org>
14900 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14901 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14902 L:      rcu@vger.kernel.org
14903 S:      Supported
14904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14905 F:      tools/testing/selftests/rcutorture
14906
14907 RDACM20 Camera Sensor
14908 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
14909 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
14910 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
14911 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
14912 L:      linux-media@vger.kernel.org
14913 S:      Maintained
14914 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
14915 F:      drivers/media/i2c/max9271.c
14916 F:      drivers/media/i2c/max9271.h
14917 F:      drivers/media/i2c/rdacm20.c
14918
14919 RDC R-321X SoC
14920 M:      Florian Fainelli <florian@openwrt.org>
14921 S:      Maintained
14922
14923 RDC R6040 FAST ETHERNET DRIVER
14924 M:      Florian Fainelli <f.fainelli@gmail.com>
14925 L:      netdev@vger.kernel.org
14926 S:      Maintained
14927 F:      drivers/net/ethernet/rdc/r6040.c
14928
14929 RDMAVT - RDMA verbs software
14930 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14931 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14932 L:      linux-rdma@vger.kernel.org
14933 S:      Supported
14934 F:      drivers/infiniband/sw/rdmavt
14935
14936 RDS - RELIABLE DATAGRAM SOCKETS
14937 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
14938 L:      netdev@vger.kernel.org
14939 L:      linux-rdma@vger.kernel.org
14940 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
14941 S:      Supported
14942 W:      https://oss.oracle.com/projects/rds/
14943 F:      Documentation/networking/rds.rst
14944 F:      net/rds/
14945
14946 RDT - RESOURCE ALLOCATION
14947 M:      Fenghua Yu <fenghua.yu@intel.com>
14948 M:      Reinette Chatre <reinette.chatre@intel.com>
14949 L:      linux-kernel@vger.kernel.org
14950 S:      Supported
14951 F:      Documentation/x86/resctrl*
14952 F:      arch/x86/include/asm/resctrl.h
14953 F:      arch/x86/kernel/cpu/resctrl/
14954 F:      tools/testing/selftests/resctrl/
14955
14956 READ-COPY UPDATE (RCU)
14957 M:      "Paul E. McKenney" <paulmck@kernel.org>
14958 M:      Josh Triplett <josh@joshtriplett.org>
14959 R:      Steven Rostedt <rostedt@goodmis.org>
14960 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14961 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14962 R:      Joel Fernandes <joel@joelfernandes.org>
14963 L:      rcu@vger.kernel.org
14964 S:      Supported
14965 W:      http://www.rdrop.com/users/paulmck/RCU/
14966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14967 F:      Documentation/RCU/
14968 F:      include/linux/rcu*
14969 F:      kernel/rcu/
14970 X:      Documentation/RCU/torture.rst
14971 X:      include/linux/srcu*.h
14972 X:      kernel/rcu/srcu*.c
14973
14974 REAL TIME CLOCK (RTC) SUBSYSTEM
14975 M:      Alessandro Zummo <a.zummo@towertech.it>
14976 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14977 L:      linux-rtc@vger.kernel.org
14978 S:      Maintained
14979 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14981 F:      Documentation/admin-guide/rtc.rst
14982 F:      Documentation/devicetree/bindings/rtc/
14983 F:      drivers/rtc/
14984 F:      include/linux/platform_data/rtc-*
14985 F:      include/linux/rtc.h
14986 F:      include/linux/rtc/
14987 F:      include/uapi/linux/rtc.h
14988 F:      tools/testing/selftests/rtc/
14989
14990 REALTEK AUDIO CODECS
14991 M:      Oder Chiou <oder_chiou@realtek.com>
14992 S:      Maintained
14993 F:      include/sound/rt*.h
14994 F:      sound/soc/codecs/rt*
14995
14996 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14997 M:      Linus Walleij <linus.walleij@linaro.org>
14998 S:      Maintained
14999 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
15000 F:      drivers/net/dsa/realtek-smi*
15001 F:      drivers/net/dsa/rtl83*
15002
15003 REALTEK WIRELESS DRIVER (rtlwifi family)
15004 M:      Ping-Ke Shih <pkshih@realtek.com>
15005 L:      linux-wireless@vger.kernel.org
15006 S:      Maintained
15007 W:      https://wireless.wiki.kernel.org/
15008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15009 F:      drivers/net/wireless/realtek/rtlwifi/
15010
15011 REALTEK WIRELESS DRIVER (rtw88)
15012 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
15013 L:      linux-wireless@vger.kernel.org
15014 S:      Maintained
15015 F:      drivers/net/wireless/realtek/rtw88/
15016
15017 REDPINE WIRELESS DRIVER
15018 M:      Amitkumar Karwar <amitkarwar@gmail.com>
15019 M:      Siva Rebbagondla <siva8118@gmail.com>
15020 L:      linux-wireless@vger.kernel.org
15021 S:      Maintained
15022 F:      drivers/net/wireless/rsi/
15023
15024 REGISTER MAP ABSTRACTION
15025 M:      Mark Brown <broonie@kernel.org>
15026 L:      linux-kernel@vger.kernel.org
15027 S:      Supported
15028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15029 F:      Documentation/devicetree/bindings/regmap/
15030 F:      drivers/base/regmap/
15031 F:      include/linux/regmap.h
15032
15033 REISERFS FILE SYSTEM
15034 L:      reiserfs-devel@vger.kernel.org
15035 S:      Supported
15036 F:      fs/reiserfs/
15037
15038 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15039 M:      Ohad Ben-Cohen <ohad@wizery.com>
15040 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15041 L:      linux-remoteproc@vger.kernel.org
15042 S:      Maintained
15043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15044 F:      Documentation/ABI/testing/sysfs-class-remoteproc
15045 F:      Documentation/devicetree/bindings/remoteproc/
15046 F:      Documentation/staging/remoteproc.rst
15047 F:      drivers/remoteproc/
15048 F:      include/linux/remoteproc.h
15049 F:      include/linux/remoteproc/
15050
15051 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15052 M:      Ohad Ben-Cohen <ohad@wizery.com>
15053 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15054 L:      linux-remoteproc@vger.kernel.org
15055 S:      Maintained
15056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15057 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
15058 F:      Documentation/staging/rpmsg.rst
15059 F:      drivers/rpmsg/
15060 F:      include/linux/rpmsg.h
15061 F:      include/linux/rpmsg/
15062 F:      include/uapi/linux/rpmsg.h
15063 F:      samples/rpmsg/
15064
15065 RENESAS CLOCK DRIVERS
15066 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15067 L:      linux-renesas-soc@vger.kernel.org
15068 S:      Supported
15069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
15070 F:      Documentation/devicetree/bindings/clock/renesas,*
15071 F:      drivers/clk/renesas/
15072
15073 RENESAS EMEV2 I2C DRIVER
15074 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15075 S:      Supported
15076 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
15077 F:      drivers/i2c/busses/i2c-emev2.c
15078
15079 RENESAS ETHERNET DRIVERS
15080 R:      Sergei Shtylyov <sergei.shtylyov@gmail.com>
15081 L:      netdev@vger.kernel.org
15082 L:      linux-renesas-soc@vger.kernel.org
15083 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
15084 F:      drivers/net/ethernet/renesas/
15085 F:      include/linux/sh_eth.h
15086
15087 RENESAS R-CAR GYROADC DRIVER
15088 M:      Marek Vasut <marek.vasut@gmail.com>
15089 L:      linux-iio@vger.kernel.org
15090 S:      Supported
15091 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
15092 F:      drivers/iio/adc/rcar-gyroadc.c
15093
15094 RENESAS R-CAR I2C DRIVERS
15095 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15096 S:      Supported
15097 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
15098 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
15099 F:      drivers/i2c/busses/i2c-rcar.c
15100 F:      drivers/i2c/busses/i2c-sh_mobile.c
15101
15102 RENESAS R-CAR THERMAL DRIVERS
15103 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
15104 L:      linux-renesas-soc@vger.kernel.org
15105 S:      Supported
15106 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
15107 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
15108 F:      drivers/thermal/rcar_gen3_thermal.c
15109 F:      drivers/thermal/rcar_thermal.c
15110
15111 RENESAS RIIC DRIVER
15112 M:      Chris Brandt <chris.brandt@renesas.com>
15113 S:      Supported
15114 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
15115 F:      drivers/i2c/busses/i2c-riic.c
15116
15117 RENESAS USB PHY DRIVER
15118 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15119 L:      linux-renesas-soc@vger.kernel.org
15120 S:      Maintained
15121 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
15122
15123 RESET CONTROLLER FRAMEWORK
15124 M:      Philipp Zabel <p.zabel@pengutronix.de>
15125 S:      Maintained
15126 T:      git git://git.pengutronix.de/git/pza/linux
15127 F:      Documentation/devicetree/bindings/reset/
15128 F:      Documentation/driver-api/reset.rst
15129 F:      drivers/reset/
15130 F:      include/dt-bindings/reset/
15131 F:      include/linux/reset-controller.h
15132 F:      include/linux/reset.h
15133 F:      include/linux/reset/
15134 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
15135
15136 RESTARTABLE SEQUENCES SUPPORT
15137 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15138 M:      Peter Zijlstra <peterz@infradead.org>
15139 M:      "Paul E. McKenney" <paulmck@kernel.org>
15140 M:      Boqun Feng <boqun.feng@gmail.com>
15141 L:      linux-kernel@vger.kernel.org
15142 S:      Supported
15143 F:      include/trace/events/rseq.h
15144 F:      include/uapi/linux/rseq.h
15145 F:      kernel/rseq.c
15146 F:      tools/testing/selftests/rseq/
15147
15148 RFKILL
15149 M:      Johannes Berg <johannes@sipsolutions.net>
15150 L:      linux-wireless@vger.kernel.org
15151 S:      Maintained
15152 W:      https://wireless.wiki.kernel.org/
15153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
15154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
15155 F:      Documentation/ABI/stable/sysfs-class-rfkill
15156 F:      Documentation/driver-api/rfkill.rst
15157 F:      include/linux/rfkill.h
15158 F:      include/uapi/linux/rfkill.h
15159 F:      net/rfkill/
15160
15161 RHASHTABLE
15162 M:      Thomas Graf <tgraf@suug.ch>
15163 M:      Herbert Xu <herbert@gondor.apana.org.au>
15164 L:      netdev@vger.kernel.org
15165 S:      Maintained
15166 F:      include/linux/rhashtable-types.h
15167 F:      include/linux/rhashtable.h
15168 F:      lib/rhashtable.c
15169 F:      lib/test_rhashtable.c
15170
15171 RICOH R5C592 MEMORYSTICK DRIVER
15172 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15173 S:      Maintained
15174 F:      drivers/memstick/host/r592.*
15175
15176 RICOH SMARTMEDIA/XD DRIVER
15177 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15178 S:      Maintained
15179 F:      drivers/mtd/nand/raw/r852.c
15180 F:      drivers/mtd/nand/raw/r852.h
15181
15182 RISC-V ARCHITECTURE
15183 M:      Paul Walmsley <paul.walmsley@sifive.com>
15184 M:      Palmer Dabbelt <palmer@dabbelt.com>
15185 M:      Albert Ou <aou@eecs.berkeley.edu>
15186 L:      linux-riscv@lists.infradead.org
15187 S:      Supported
15188 P:      Documentation/riscv/patch-acceptance.rst
15189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
15190 F:      arch/riscv/
15191 N:      riscv
15192 K:      riscv
15193
15194 RNBD BLOCK DRIVERS
15195 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
15196 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15197 L:      linux-block@vger.kernel.org
15198 S:      Maintained
15199 F:      drivers/block/rnbd/
15200
15201 ROCCAT DRIVERS
15202 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
15203 S:      Maintained
15204 W:      http://sourceforge.net/projects/roccat/
15205 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
15206 F:      drivers/hid/hid-roccat*
15207 F:      include/linux/hid-roccat*
15208
15209 ROCKCHIP ISP V1 DRIVER
15210 M:      Helen Koike <helen.koike@collabora.com>
15211 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
15212 L:      linux-media@vger.kernel.org
15213 L:      linux-rockchip@lists.infradead.org
15214 S:      Maintained
15215 F:      Documentation/admin-guide/media/rkisp1.rst
15216 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
15217 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
15218 F:      drivers/media/platform/rockchip/rkisp1
15219 F:      include/uapi/linux/rkisp1-config.h
15220
15221 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
15222 M:      Jacob Chen <jacob-chen@iotwrt.com>
15223 M:      Ezequiel Garcia <ezequiel@collabora.com>
15224 L:      linux-media@vger.kernel.org
15225 L:      linux-rockchip@lists.infradead.org
15226 S:      Maintained
15227 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
15228 F:      drivers/media/platform/rockchip/rga/
15229
15230 ROCKCHIP VIDEO DECODER DRIVER
15231 M:      Ezequiel Garcia <ezequiel@collabora.com>
15232 L:      linux-media@vger.kernel.org
15233 L:      linux-rockchip@lists.infradead.org
15234 S:      Maintained
15235 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
15236 F:      drivers/staging/media/rkvdec/
15237
15238 ROCKER DRIVER
15239 M:      Jiri Pirko <jiri@resnulli.us>
15240 L:      netdev@vger.kernel.org
15241 S:      Supported
15242 F:      drivers/net/ethernet/rocker/
15243
15244 ROCKETPORT DRIVER
15245 S:      Maintained
15246 W:      http://www.comtrol.com
15247 F:      Documentation/driver-api/serial/rocket.rst
15248 F:      drivers/tty/rocket*
15249
15250 ROCKETPORT EXPRESS/INFINITY DRIVER
15251 M:      Kevin Cernekee <cernekee@gmail.com>
15252 L:      linux-serial@vger.kernel.org
15253 S:      Odd Fixes
15254 F:      drivers/tty/serial/rp2.*
15255
15256 ROHM BD99954 CHARGER IC
15257 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15258 L:      linux-power@fi.rohmeurope.com
15259 S:      Supported
15260 F:      drivers/power/supply/bd99954-charger.c
15261 F:      drivers/power/supply/bd99954-charger.h
15262
15263 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
15264 M:      Tomasz Duszynski <tduszyns@gmail.com>
15265 S:      Maintained
15266 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
15267 F:      drivers/iio/light/bh1750.c
15268
15269 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
15270 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15271 L:      linux-kernel@vger.kernel.org
15272 L:      linux-renesas-soc@vger.kernel.org
15273 S:      Supported
15274 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
15275 F:      drivers/gpio/gpio-bd9571mwv.c
15276 F:      drivers/mfd/bd9571mwv.c
15277 F:      drivers/regulator/bd9571mwv-regulator.c
15278 F:      include/linux/mfd/bd9571mwv.h
15279
15280 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
15281 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15282 L:      linux-power@fi.rohmeurope.com
15283 S:      Supported
15284 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
15285 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
15286 F:      drivers/clk/clk-bd718x7.c
15287 F:      drivers/gpio/gpio-bd70528.c
15288 F:      drivers/gpio/gpio-bd71828.c
15289 F:      drivers/mfd/rohm-bd70528.c
15290 F:      drivers/mfd/rohm-bd71828.c
15291 F:      drivers/mfd/rohm-bd718x7.c
15292 F:      drivers/power/supply/bd70528-charger.c
15293 F:      drivers/regulator/bd70528-regulator.c
15294 F:      drivers/regulator/bd71828-regulator.c
15295 F:      drivers/regulator/bd718x7-regulator.c
15296 F:      drivers/regulator/rohm-regulator.c
15297 F:      drivers/rtc/rtc-bd70528.c
15298 F:      drivers/watchdog/bd70528_wdt.c
15299 F:      include/linux/mfd/rohm-bd70528.h
15300 F:      include/linux/mfd/rohm-bd71828.h
15301 F:      include/linux/mfd/rohm-bd718x7.h
15302 F:      include/linux/mfd/rohm-generic.h
15303 F:      include/linux/mfd/rohm-shared.h
15304
15305 ROSE NETWORK LAYER
15306 M:      Ralf Baechle <ralf@linux-mips.org>
15307 L:      linux-hams@vger.kernel.org
15308 S:      Maintained
15309 W:      http://www.linux-ax25.org/
15310 F:      include/net/rose.h
15311 F:      include/uapi/linux/rose.h
15312 F:      net/rose/
15313
15314 ROTATION DRIVER FOR ALLWINNER A83T
15315 M:      Jernej Skrabec <jernej.skrabec@siol.net>
15316 L:      linux-media@vger.kernel.org
15317 S:      Maintained
15318 T:      git git://linuxtv.org/media_tree.git
15319 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
15320 F:      drivers/media/platform/sunxi/sun8i-rotate/
15321
15322 RTL2830 MEDIA DRIVER
15323 M:      Antti Palosaari <crope@iki.fi>
15324 L:      linux-media@vger.kernel.org
15325 S:      Maintained
15326 W:      https://linuxtv.org
15327 W:      http://palosaari.fi/linux/
15328 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15329 T:      git git://linuxtv.org/anttip/media_tree.git
15330 F:      drivers/media/dvb-frontends/rtl2830*
15331
15332 RTL2832 MEDIA DRIVER
15333 M:      Antti Palosaari <crope@iki.fi>
15334 L:      linux-media@vger.kernel.org
15335 S:      Maintained
15336 W:      https://linuxtv.org
15337 W:      http://palosaari.fi/linux/
15338 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15339 T:      git git://linuxtv.org/anttip/media_tree.git
15340 F:      drivers/media/dvb-frontends/rtl2832*
15341
15342 RTL2832_SDR MEDIA DRIVER
15343 M:      Antti Palosaari <crope@iki.fi>
15344 L:      linux-media@vger.kernel.org
15345 S:      Maintained
15346 W:      https://linuxtv.org
15347 W:      http://palosaari.fi/linux/
15348 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15349 T:      git git://linuxtv.org/anttip/media_tree.git
15350 F:      drivers/media/dvb-frontends/rtl2832_sdr*
15351
15352 RTL8180 WIRELESS DRIVER
15353 L:      linux-wireless@vger.kernel.org
15354 S:      Orphan
15355 W:      https://wireless.wiki.kernel.org/
15356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15357 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
15358
15359 RTL8187 WIRELESS DRIVER
15360 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
15361 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
15362 M:      Larry Finger <Larry.Finger@lwfinger.net>
15363 L:      linux-wireless@vger.kernel.org
15364 S:      Maintained
15365 W:      https://wireless.wiki.kernel.org/
15366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15367 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
15368
15369 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
15370 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
15371 L:      linux-wireless@vger.kernel.org
15372 S:      Maintained
15373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
15374 F:      drivers/net/wireless/realtek/rtl8xxxu/
15375
15376 RTRS TRANSPORT DRIVERS
15377 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
15378 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15379 L:      linux-rdma@vger.kernel.org
15380 S:      Maintained
15381 F:      drivers/infiniband/ulp/rtrs/
15382
15383 RXRPC SOCKETS (AF_RXRPC)
15384 M:      David Howells <dhowells@redhat.com>
15385 L:      linux-afs@lists.infradead.org
15386 S:      Supported
15387 W:      https://www.infradead.org/~dhowells/kafs/
15388 F:      Documentation/networking/rxrpc.rst
15389 F:      include/keys/rxrpc-type.h
15390 F:      include/net/af_rxrpc.h
15391 F:      include/trace/events/rxrpc.h
15392 F:      include/uapi/linux/rxrpc.h
15393 F:      net/rxrpc/
15394
15395 S3 SAVAGE FRAMEBUFFER DRIVER
15396 M:      Antonino Daplas <adaplas@gmail.com>
15397 L:      linux-fbdev@vger.kernel.org
15398 S:      Maintained
15399 F:      drivers/video/fbdev/savage/
15400
15401 S390
15402 M:      Heiko Carstens <hca@linux.ibm.com>
15403 M:      Vasily Gorbik <gor@linux.ibm.com>
15404 M:      Christian Borntraeger <borntraeger@de.ibm.com>
15405 L:      linux-s390@vger.kernel.org
15406 S:      Supported
15407 W:      http://www.ibm.com/developerworks/linux/linux390/
15408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
15409 F:      Documentation/driver-api/s390-drivers.rst
15410 F:      Documentation/s390/
15411 F:      arch/s390/
15412 F:      drivers/s390/
15413
15414 S390 COMMON I/O LAYER
15415 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
15416 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
15417 L:      linux-s390@vger.kernel.org
15418 S:      Supported
15419 W:      http://www.ibm.com/developerworks/linux/linux390/
15420 F:      drivers/s390/cio/
15421
15422 S390 DASD DRIVER
15423 M:      Stefan Haberland <sth@linux.ibm.com>
15424 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
15425 L:      linux-s390@vger.kernel.org
15426 S:      Supported
15427 W:      http://www.ibm.com/developerworks/linux/linux390/
15428 F:      block/partitions/ibm.c
15429 F:      drivers/s390/block/dasd*
15430 F:      include/linux/dasd_mod.h
15431
15432 S390 IOMMU (PCI)
15433 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15434 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15435 L:      linux-s390@vger.kernel.org
15436 S:      Supported
15437 W:      http://www.ibm.com/developerworks/linux/linux390/
15438 F:      drivers/iommu/s390-iommu.c
15439
15440 S390 IUCV NETWORK LAYER
15441 M:      Julian Wiedmann <jwi@linux.ibm.com>
15442 M:      Karsten Graul <kgraul@linux.ibm.com>
15443 L:      linux-s390@vger.kernel.org
15444 S:      Supported
15445 W:      http://www.ibm.com/developerworks/linux/linux390/
15446 F:      drivers/s390/net/*iucv*
15447 F:      include/net/iucv/
15448 F:      net/iucv/
15449
15450 S390 NETWORK DRIVERS
15451 M:      Julian Wiedmann <jwi@linux.ibm.com>
15452 M:      Karsten Graul <kgraul@linux.ibm.com>
15453 L:      linux-s390@vger.kernel.org
15454 S:      Supported
15455 W:      http://www.ibm.com/developerworks/linux/linux390/
15456 F:      drivers/s390/net/
15457
15458 S390 PCI SUBSYSTEM
15459 M:      Niklas Schnelle <schnelle@linux.ibm.com>
15460 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15461 L:      linux-s390@vger.kernel.org
15462 S:      Supported
15463 W:      http://www.ibm.com/developerworks/linux/linux390/
15464 F:      arch/s390/pci/
15465 F:      drivers/pci/hotplug/s390_pci_hpc.c
15466 F:      Documentation/s390/pci.rst
15467
15468 S390 VFIO AP DRIVER
15469 M:      Tony Krowiak <akrowiak@linux.ibm.com>
15470 M:      Pierre Morel <pmorel@linux.ibm.com>
15471 M:      Halil Pasic <pasic@linux.ibm.com>
15472 L:      linux-s390@vger.kernel.org
15473 S:      Supported
15474 W:      http://www.ibm.com/developerworks/linux/linux390/
15475 F:      Documentation/s390/vfio-ap.rst
15476 F:      drivers/s390/crypto/vfio_ap_drv.c
15477 F:      drivers/s390/crypto/vfio_ap_ops.c
15478 F:      drivers/s390/crypto/vfio_ap_private.h
15479
15480 S390 VFIO-CCW DRIVER
15481 M:      Cornelia Huck <cohuck@redhat.com>
15482 M:      Eric Farman <farman@linux.ibm.com>
15483 R:      Halil Pasic <pasic@linux.ibm.com>
15484 L:      linux-s390@vger.kernel.org
15485 L:      kvm@vger.kernel.org
15486 S:      Supported
15487 F:      Documentation/s390/vfio-ccw.rst
15488 F:      drivers/s390/cio/vfio_ccw*
15489 F:      include/uapi/linux/vfio_ccw.h
15490
15491 S390 VFIO-PCI DRIVER
15492 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15493 L:      linux-s390@vger.kernel.org
15494 L:      kvm@vger.kernel.org
15495 S:      Supported
15496 F:      drivers/vfio/pci/vfio_pci_zdev.c
15497 F:      include/uapi/linux/vfio_zdev.h
15498
15499 S390 ZCRYPT DRIVER
15500 M:      Harald Freudenberger <freude@linux.ibm.com>
15501 L:      linux-s390@vger.kernel.org
15502 S:      Supported
15503 W:      http://www.ibm.com/developerworks/linux/linux390/
15504 F:      drivers/s390/crypto/
15505
15506 S390 ZFCP DRIVER
15507 M:      Steffen Maier <maier@linux.ibm.com>
15508 M:      Benjamin Block <bblock@linux.ibm.com>
15509 L:      linux-s390@vger.kernel.org
15510 S:      Supported
15511 W:      http://www.ibm.com/developerworks/linux/linux390/
15512 F:      drivers/s390/scsi/zfcp_*
15513
15514 S3C24XX SD/MMC Driver
15515 M:      Ben Dooks <ben-linux@fluff.org>
15516 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15517 S:      Supported
15518 F:      drivers/mmc/host/s3cmci.*
15519
15520 SAA6588 RDS RECEIVER DRIVER
15521 M:      Hans Verkuil <hverkuil@xs4all.nl>
15522 L:      linux-media@vger.kernel.org
15523 S:      Odd Fixes
15524 W:      https://linuxtv.org
15525 T:      git git://linuxtv.org/media_tree.git
15526 F:      drivers/media/i2c/saa6588*
15527
15528 SAA7134 VIDEO4LINUX DRIVER
15529 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15530 L:      linux-media@vger.kernel.org
15531 S:      Odd fixes
15532 W:      https://linuxtv.org
15533 T:      git git://linuxtv.org/media_tree.git
15534 F:      Documentation/driver-api/media/drivers/saa7134*
15535 F:      drivers/media/pci/saa7134/
15536
15537 SAA7146 VIDEO4LINUX-2 DRIVER
15538 M:      Hans Verkuil <hverkuil@xs4all.nl>
15539 L:      linux-media@vger.kernel.org
15540 S:      Maintained
15541 T:      git git://linuxtv.org/media_tree.git
15542 F:      drivers/media/common/saa7146/
15543 F:      drivers/media/pci/saa7146/
15544 F:      include/media/drv-intf/saa7146*
15545
15546 SAFESETID SECURITY MODULE
15547 M:      Micah Morton <mortonm@chromium.org>
15548 S:      Supported
15549 F:      Documentation/admin-guide/LSM/SafeSetID.rst
15550 F:      security/safesetid/
15551
15552 SAMSUNG AUDIO (ASoC) DRIVERS
15553 M:      Krzysztof Kozlowski <krzk@kernel.org>
15554 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15555 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15556 S:      Supported
15557 F:      Documentation/devicetree/bindings/sound/samsung*
15558 F:      sound/soc/samsung/
15559
15560 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
15561 M:      Krzysztof Kozlowski <krzk@kernel.org>
15562 L:      linux-crypto@vger.kernel.org
15563 L:      linux-samsung-soc@vger.kernel.org
15564 S:      Maintained
15565 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
15566 F:      drivers/crypto/exynos-rng.c
15567
15568 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
15569 M:      Łukasz Stelmach <l.stelmach@samsung.com>
15570 L:      linux-samsung-soc@vger.kernel.org
15571 S:      Maintained
15572 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
15573 F:      drivers/char/hw_random/exynos-trng.c
15574
15575 SAMSUNG FRAMEBUFFER DRIVER
15576 M:      Jingoo Han <jingoohan1@gmail.com>
15577 L:      linux-fbdev@vger.kernel.org
15578 S:      Maintained
15579 F:      drivers/video/fbdev/s3c-fb.c
15580
15581 SAMSUNG INTERCONNECT DRIVERS
15582 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15583 M:      Artur Świgoń <a.swigon@samsung.com>
15584 L:      linux-pm@vger.kernel.org
15585 L:      linux-samsung-soc@vger.kernel.org
15586 S:      Supported
15587 F:      drivers/interconnect/samsung/
15588
15589 SAMSUNG LAPTOP DRIVER
15590 M:      Corentin Chary <corentin.chary@gmail.com>
15591 L:      platform-driver-x86@vger.kernel.org
15592 S:      Maintained
15593 F:      drivers/platform/x86/samsung-laptop.c
15594
15595 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
15596 M:      Krzysztof Kozlowski <krzk@kernel.org>
15597 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15598 L:      linux-kernel@vger.kernel.org
15599 L:      linux-samsung-soc@vger.kernel.org
15600 S:      Supported
15601 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
15602 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
15603 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
15604 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
15605 F:      drivers/clk/clk-s2mps11.c
15606 F:      drivers/mfd/sec*.c
15607 F:      drivers/regulator/s2m*.c
15608 F:      drivers/regulator/s5m*.c
15609 F:      drivers/rtc/rtc-s5m.c
15610 F:      include/linux/mfd/samsung/
15611
15612 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
15613 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
15614 L:      linux-media@vger.kernel.org
15615 L:      linux-samsung-soc@vger.kernel.org
15616 S:      Maintained
15617 F:      drivers/media/platform/s3c-camif/
15618 F:      include/media/drv-intf/s3c_camif.h
15619
15620 SAMSUNG S3FWRN5 NFC DRIVER
15621 M:      Krzysztof Kozlowski <krzk@kernel.org>
15622 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
15623 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
15624 S:      Maintained
15625 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
15626 F:      drivers/nfc/s3fwrn5
15627
15628 SAMSUNG S5C73M3 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/s5c73m3/*
15633
15634 SAMSUNG S5K5BAF CAMERA DRIVER
15635 M:      Andrzej Hajda <a.hajda@samsung.com>
15636 L:      linux-media@vger.kernel.org
15637 S:      Supported
15638 F:      drivers/media/i2c/s5k5baf.c
15639
15640 SAMSUNG S5P Security SubSystem (SSS) DRIVER
15641 M:      Krzysztof Kozlowski <krzk@kernel.org>
15642 M:      Vladimir Zapolskiy <vz@mleia.com>
15643 M:      Kamil Konieczny <k.konieczny@samsung.com>
15644 L:      linux-crypto@vger.kernel.org
15645 L:      linux-samsung-soc@vger.kernel.org
15646 S:      Maintained
15647 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
15648 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
15649 F:      drivers/crypto/s5p-sss.c
15650
15651 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
15652 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15653 L:      linux-media@vger.kernel.org
15654 S:      Supported
15655 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15656 F:      drivers/media/platform/exynos4-is/
15657
15658 SAMSUNG SOC CLOCK DRIVERS
15659 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15660 M:      Tomasz Figa <tomasz.figa@gmail.com>
15661 M:      Chanwoo Choi <cw00.choi@samsung.com>
15662 L:      linux-samsung-soc@vger.kernel.org
15663 S:      Supported
15664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
15665 F:      Documentation/devicetree/bindings/clock/exynos*.txt
15666 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
15667 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
15668 F:      drivers/clk/samsung/
15669 F:      include/dt-bindings/clock/exynos*.h
15670 F:      include/linux/clk/samsung.h
15671 F:      include/linux/platform_data/clk-s3c2410.h
15672
15673 SAMSUNG SPI DRIVERS
15674 M:      Krzysztof Kozlowski <krzk@kernel.org>
15675 M:      Andi Shyti <andi@etezian.org>
15676 L:      linux-spi@vger.kernel.org
15677 L:      linux-samsung-soc@vger.kernel.org
15678 S:      Maintained
15679 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
15680 F:      drivers/spi/spi-s3c*
15681 F:      include/linux/platform_data/spi-s3c64xx.h
15682 F:      include/linux/spi/s3c24xx-fiq.h
15683
15684 SAMSUNG SXGBE DRIVERS
15685 M:      Byungho An <bh74.an@samsung.com>
15686 L:      netdev@vger.kernel.org
15687 S:      Supported
15688 F:      drivers/net/ethernet/samsung/sxgbe/
15689
15690 SAMSUNG THERMAL DRIVER
15691 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15692 L:      linux-pm@vger.kernel.org
15693 L:      linux-samsung-soc@vger.kernel.org
15694 S:      Supported
15695 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
15696 F:      drivers/thermal/samsung/
15697
15698 SAMSUNG USB2 PHY DRIVER
15699 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15700 L:      linux-kernel@vger.kernel.org
15701 S:      Supported
15702 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
15703 F:      Documentation/driver-api/phy/samsung-usb2.rst
15704 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
15705 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
15706 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
15707 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
15708 F:      drivers/phy/samsung/phy-samsung-usb2.c
15709 F:      drivers/phy/samsung/phy-samsung-usb2.h
15710
15711 SC1200 WDT DRIVER
15712 M:      Zwane Mwaikambo <zwanem@gmail.com>
15713 S:      Maintained
15714 F:      drivers/watchdog/sc1200wdt.c
15715
15716 SCHEDULER
15717 M:      Ingo Molnar <mingo@redhat.com>
15718 M:      Peter Zijlstra <peterz@infradead.org>
15719 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
15720 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
15721 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
15722 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
15723 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
15724 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
15725 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
15726 L:      linux-kernel@vger.kernel.org
15727 S:      Maintained
15728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
15729 F:      include/linux/preempt.h
15730 F:      include/linux/sched.h
15731 F:      include/linux/wait.h
15732 F:      include/uapi/linux/sched.h
15733 F:      kernel/sched/
15734
15735 SCR24X CHIP CARD INTERFACE DRIVER
15736 M:      Lubomir Rintel <lkundrak@v3.sk>
15737 S:      Supported
15738 F:      drivers/char/pcmcia/scr24x_cs.c
15739
15740 SCSI CDROM DRIVER
15741 M:      Jens Axboe <axboe@kernel.dk>
15742 L:      linux-scsi@vger.kernel.org
15743 S:      Maintained
15744 W:      http://www.kernel.dk
15745 F:      drivers/scsi/sr*
15746
15747 SCSI RDMA PROTOCOL (SRP) INITIATOR
15748 M:      Bart Van Assche <bvanassche@acm.org>
15749 L:      linux-rdma@vger.kernel.org
15750 S:      Supported
15751 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15752 F:      drivers/infiniband/ulp/srp/
15753 F:      include/scsi/srp.h
15754
15755 SCSI RDMA PROTOCOL (SRP) TARGET
15756 M:      Bart Van Assche <bvanassche@acm.org>
15757 L:      linux-rdma@vger.kernel.org
15758 L:      target-devel@vger.kernel.org
15759 S:      Supported
15760 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15761 F:      drivers/infiniband/ulp/srpt/
15762
15763 SCSI SG DRIVER
15764 M:      Doug Gilbert <dgilbert@interlog.com>
15765 L:      linux-scsi@vger.kernel.org
15766 S:      Maintained
15767 W:      http://sg.danny.cz/sg
15768 F:      Documentation/scsi/scsi-generic.rst
15769 F:      drivers/scsi/sg.c
15770 F:      include/scsi/sg.h
15771
15772 SCSI SUBSYSTEM
15773 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
15774 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15775 L:      linux-scsi@vger.kernel.org
15776 S:      Maintained
15777 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
15778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
15779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15780 F:      Documentation/devicetree/bindings/scsi/
15781 F:      drivers/scsi/
15782 F:      include/scsi/
15783
15784 SCSI TAPE DRIVER
15785 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
15786 L:      linux-scsi@vger.kernel.org
15787 S:      Maintained
15788 F:      Documentation/scsi/st.rst
15789 F:      drivers/scsi/st.*
15790 F:      drivers/scsi/st_*.h
15791
15792 SCSI TARGET SUBSYSTEM
15793 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15794 L:      linux-scsi@vger.kernel.org
15795 L:      target-devel@vger.kernel.org
15796 S:      Supported
15797 W:      http://www.linux-iscsi.org
15798 Q:      https://patchwork.kernel.org/project/target-devel/list/
15799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15800 F:      Documentation/target/
15801 F:      drivers/target/
15802 F:      include/target/
15803
15804 SCTP PROTOCOL
15805 M:      Vlad Yasevich <vyasevich@gmail.com>
15806 M:      Neil Horman <nhorman@tuxdriver.com>
15807 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
15808 L:      linux-sctp@vger.kernel.org
15809 S:      Maintained
15810 W:      http://lksctp.sourceforge.net
15811 F:      Documentation/networking/sctp.rst
15812 F:      include/linux/sctp.h
15813 F:      include/net/sctp/
15814 F:      include/uapi/linux/sctp.h
15815 F:      net/sctp/
15816
15817 SCx200 CPU SUPPORT
15818 M:      Jim Cromie <jim.cromie@gmail.com>
15819 S:      Odd Fixes
15820 F:      Documentation/i2c/busses/scx200_acb.rst
15821 F:      arch/x86/platform/scx200/
15822 F:      drivers/i2c/busses/scx200*
15823 F:      drivers/mtd/maps/scx200_docflash.c
15824 F:      drivers/watchdog/scx200_wdt.c
15825 F:      include/linux/scx200.h
15826
15827 SCx200 GPIO DRIVER
15828 M:      Jim Cromie <jim.cromie@gmail.com>
15829 S:      Maintained
15830 F:      drivers/char/scx200_gpio.c
15831 F:      include/linux/scx200_gpio.h
15832
15833 SCx200 HRT CLOCKSOURCE DRIVER
15834 M:      Jim Cromie <jim.cromie@gmail.com>
15835 S:      Maintained
15836 F:      drivers/clocksource/scx200_hrt.c
15837
15838 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15839 M:      Sascha Sommer <saschasommer@freenet.de>
15840 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
15841 S:      Maintained
15842 F:      drivers/mmc/host/sdricoh_cs.c
15843
15844 SECO BOARDS CEC DRIVER
15845 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
15846 S:      Maintained
15847 F:      drivers/media/cec/platform/seco/seco-cec.c
15848 F:      drivers/media/cec/platform/seco/seco-cec.h
15849
15850 SECURE COMPUTING
15851 M:      Kees Cook <keescook@chromium.org>
15852 R:      Andy Lutomirski <luto@amacapital.net>
15853 R:      Will Drewry <wad@chromium.org>
15854 S:      Supported
15855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15856 F:      Documentation/userspace-api/seccomp_filter.rst
15857 F:      include/linux/seccomp.h
15858 F:      include/uapi/linux/seccomp.h
15859 F:      kernel/seccomp.c
15860 F:      tools/testing/selftests/kselftest_harness.h
15861 F:      tools/testing/selftests/seccomp/*
15862 K:      \bsecure_computing
15863 K:      \bTIF_SECCOMP\b
15864
15865 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15866 M:      Al Cooper <alcooperx@gmail.com>
15867 L:      linux-mmc@vger.kernel.org
15868 L:      bcm-kernel-feedback-list@broadcom.com
15869 S:      Maintained
15870 F:      drivers/mmc/host/sdhci-brcmstb*
15871
15872 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15873 M:      Adrian Hunter <adrian.hunter@intel.com>
15874 L:      linux-mmc@vger.kernel.org
15875 S:      Maintained
15876 F:      drivers/mmc/host/sdhci*
15877 F:      include/linux/mmc/sdhci*
15878
15879 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15880 M:      Eugen Hristev <eugen.hristev@microchip.com>
15881 L:      linux-mmc@vger.kernel.org
15882 S:      Supported
15883 F:      drivers/mmc/host/sdhci-of-at91.c
15884
15885 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15886 M:      Ben Dooks <ben-linux@fluff.org>
15887 M:      Jaehoon Chung <jh80.chung@samsung.com>
15888 L:      linux-mmc@vger.kernel.org
15889 S:      Maintained
15890 F:      drivers/mmc/host/sdhci-s3c*
15891
15892 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15893 M:      Viresh Kumar <vireshk@kernel.org>
15894 L:      linux-mmc@vger.kernel.org
15895 S:      Maintained
15896 F:      drivers/mmc/host/sdhci-spear.c
15897
15898 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15899 M:      Kishon Vijay Abraham I <kishon@ti.com>
15900 L:      linux-mmc@vger.kernel.org
15901 S:      Maintained
15902 F:      drivers/mmc/host/sdhci-omap.c
15903
15904 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15905 M:      Jonathan Derrick <jonathan.derrick@intel.com>
15906 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
15907 L:      linux-block@vger.kernel.org
15908 S:      Supported
15909 F:      block/opal_proto.h
15910 F:      block/sed*
15911 F:      include/linux/sed*
15912 F:      include/uapi/linux/sed*
15913
15914 SECURITY CONTACT
15915 M:      Security Officers <security@kernel.org>
15916 S:      Supported
15917 F:      Documentation/admin-guide/security-bugs.rst
15918
15919 SECURITY SUBSYSTEM
15920 M:      James Morris <jmorris@namei.org>
15921 M:      "Serge E. Hallyn" <serge@hallyn.com>
15922 L:      linux-security-module@vger.kernel.org (suggested Cc:)
15923 S:      Supported
15924 W:      http://kernsec.org/
15925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15926 F:      security/
15927 X:      security/selinux/
15928
15929 SELINUX SECURITY MODULE
15930 M:      Paul Moore <paul@paul-moore.com>
15931 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
15932 M:      Eric Paris <eparis@parisplace.org>
15933 L:      selinux@vger.kernel.org
15934 S:      Supported
15935 W:      https://selinuxproject.org
15936 W:      https://github.com/SELinuxProject
15937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15938 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15939 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15940 F:      Documentation/admin-guide/LSM/SELinux.rst
15941 F:      include/trace/events/avc.h
15942 F:      include/uapi/linux/selinux_netlink.h
15943 F:      scripts/selinux/
15944 F:      security/selinux/
15945
15946 SENSABLE PHANTOM
15947 M:      Jiri Slaby <jirislaby@kernel.org>
15948 S:      Maintained
15949 F:      drivers/misc/phantom.c
15950 F:      include/uapi/linux/phantom.h
15951
15952 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
15953 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
15954 S:      Maintained
15955 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
15956 F:      drivers/iio/chemical/scd30.h
15957 F:      drivers/iio/chemical/scd30_core.c
15958 F:      drivers/iio/chemical/scd30_i2c.c
15959 F:      drivers/iio/chemical/scd30_serial.c
15960
15961 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15962 M:      Tomasz Duszynski <tduszyns@gmail.com>
15963 S:      Maintained
15964 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15965 F:      drivers/iio/chemical/sps30.c
15966
15967 SERIAL DEVICE BUS
15968 M:      Rob Herring <robh@kernel.org>
15969 L:      linux-serial@vger.kernel.org
15970 S:      Maintained
15971 F:      Documentation/devicetree/bindings/serial/serial.yaml
15972 F:      drivers/tty/serdev/
15973 F:      include/linux/serdev.h
15974
15975 SERIAL DRIVERS
15976 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15977 L:      linux-serial@vger.kernel.org
15978 S:      Maintained
15979 F:      Documentation/devicetree/bindings/serial/
15980 F:      drivers/tty/serial/
15981
15982 SERIAL IR RECEIVER
15983 M:      Sean Young <sean@mess.org>
15984 L:      linux-media@vger.kernel.org
15985 S:      Maintained
15986 F:      drivers/media/rc/serial_ir.c
15987
15988 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15989 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15990 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15991 S:      Maintained
15992 F:      Documentation/devicetree/bindings/slimbus/
15993 F:      drivers/slimbus/
15994 F:      include/linux/slimbus.h
15995
15996 SFC NETWORK DRIVER
15997 M:      Edward Cree <ecree.xilinx@gmail.com>
15998 M:      Martin Habets <habetsm.xilinx@gmail.com>
15999 L:      netdev@vger.kernel.org
16000 S:      Supported
16001 F:      drivers/net/ethernet/sfc/
16002
16003 SFF/SFP/SFP+ MODULE SUPPORT
16004 M:      Russell King <linux@armlinux.org.uk>
16005 L:      netdev@vger.kernel.org
16006 S:      Maintained
16007 F:      drivers/net/phy/phylink.c
16008 F:      drivers/net/phy/sfp*
16009 F:      include/linux/mdio/mdio-i2c.h
16010 F:      include/linux/phylink.h
16011 F:      include/linux/sfp.h
16012 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)
16013
16014 SGI GRU DRIVER
16015 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
16016 S:      Maintained
16017 F:      drivers/misc/sgi-gru/
16018
16019 SGI XP/XPC/XPNET DRIVER
16020 M:      Robin Holt <robinmholt@gmail.com>
16021 M:      Steve Wahl <steve.wahl@hpe.com>
16022 R:      Mike Travis <mike.travis@hpe.com>
16023 S:      Maintained
16024 F:      drivers/misc/sgi-xp/
16025
16026 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
16027 M:      Karsten Graul <kgraul@linux.ibm.com>
16028 L:      linux-s390@vger.kernel.org
16029 S:      Supported
16030 W:      http://www.ibm.com/developerworks/linux/linux390/
16031 F:      net/smc/
16032
16033 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
16034 M:      Linus Walleij <linus.walleij@linaro.org>
16035 L:      linux-iio@vger.kernel.org
16036 S:      Maintained
16037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
16038 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
16039 F:      drivers/iio/light/gp2ap002.c
16040
16041 SHARP RJ54N1CB0C SENSOR DRIVER
16042 M:      Jacopo Mondi <jacopo@jmondi.org>
16043 L:      linux-media@vger.kernel.org
16044 S:      Odd fixes
16045 T:      git git://linuxtv.org/media_tree.git
16046 F:      drivers/media/i2c/rj54n1cb0c.c
16047 F:      include/media/i2c/rj54n1cb0c.h
16048
16049 SH_VOU V4L2 OUTPUT DRIVER
16050 L:      linux-media@vger.kernel.org
16051 S:      Orphan
16052 F:      drivers/media/platform/sh_vou.c
16053 F:      include/media/drv-intf/sh_vou.h
16054
16055 SI2157 MEDIA DRIVER
16056 M:      Antti Palosaari <crope@iki.fi>
16057 L:      linux-media@vger.kernel.org
16058 S:      Maintained
16059 W:      https://linuxtv.org
16060 W:      http://palosaari.fi/linux/
16061 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16062 T:      git git://linuxtv.org/anttip/media_tree.git
16063 F:      drivers/media/tuners/si2157*
16064
16065 SI2165 MEDIA DRIVER
16066 M:      Matthias Schwarzott <zzam@gentoo.org>
16067 L:      linux-media@vger.kernel.org
16068 S:      Maintained
16069 W:      https://linuxtv.org
16070 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16071 F:      drivers/media/dvb-frontends/si2165*
16072
16073 SI2168 MEDIA DRIVER
16074 M:      Antti Palosaari <crope@iki.fi>
16075 L:      linux-media@vger.kernel.org
16076 S:      Maintained
16077 W:      https://linuxtv.org
16078 W:      http://palosaari.fi/linux/
16079 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16080 T:      git git://linuxtv.org/anttip/media_tree.git
16081 F:      drivers/media/dvb-frontends/si2168*
16082
16083 SI470X FM RADIO RECEIVER I2C DRIVER
16084 M:      Hans Verkuil <hverkuil@xs4all.nl>
16085 L:      linux-media@vger.kernel.org
16086 S:      Odd Fixes
16087 W:      https://linuxtv.org
16088 T:      git git://linuxtv.org/media_tree.git
16089 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
16090
16091 SI470X FM RADIO RECEIVER USB DRIVER
16092 M:      Hans Verkuil <hverkuil@xs4all.nl>
16093 L:      linux-media@vger.kernel.org
16094 S:      Maintained
16095 W:      https://linuxtv.org
16096 T:      git git://linuxtv.org/media_tree.git
16097 F:      drivers/media/radio/si470x/radio-si470x-common.c
16098 F:      drivers/media/radio/si470x/radio-si470x-usb.c
16099 F:      drivers/media/radio/si470x/radio-si470x.h
16100
16101 SI4713 FM RADIO TRANSMITTER I2C DRIVER
16102 M:      Eduardo Valentin <edubezval@gmail.com>
16103 L:      linux-media@vger.kernel.org
16104 S:      Odd Fixes
16105 W:      https://linuxtv.org
16106 T:      git git://linuxtv.org/media_tree.git
16107 F:      drivers/media/radio/si4713/si4713.?
16108
16109 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
16110 M:      Eduardo Valentin <edubezval@gmail.com>
16111 L:      linux-media@vger.kernel.org
16112 S:      Odd Fixes
16113 W:      https://linuxtv.org
16114 T:      git git://linuxtv.org/media_tree.git
16115 F:      drivers/media/radio/si4713/radio-platform-si4713.c
16116
16117 SI4713 FM RADIO TRANSMITTER USB DRIVER
16118 M:      Hans Verkuil <hverkuil@xs4all.nl>
16119 L:      linux-media@vger.kernel.org
16120 S:      Maintained
16121 W:      https://linuxtv.org
16122 T:      git git://linuxtv.org/media_tree.git
16123 F:      drivers/media/radio/si4713/radio-usb-si4713.c
16124
16125 SIANO DVB DRIVER
16126 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16127 L:      linux-media@vger.kernel.org
16128 S:      Odd fixes
16129 W:      https://linuxtv.org
16130 T:      git git://linuxtv.org/media_tree.git
16131 F:      drivers/media/common/siano/
16132 F:      drivers/media/mmc/siano/
16133 F:      drivers/media/usb/siano/
16134 F:      drivers/media/usb/siano/
16135
16136 SIFIVE DRIVERS
16137 M:      Palmer Dabbelt <palmer@dabbelt.com>
16138 M:      Paul Walmsley <paul.walmsley@sifive.com>
16139 L:      linux-riscv@lists.infradead.org
16140 S:      Supported
16141 T:      git git://github.com/sifive/riscv-linux.git
16142 N:      sifive
16143 K:      [^@]sifive
16144
16145 SIFIVE FU540 SYSTEM-ON-CHIP
16146 M:      Paul Walmsley <paul.walmsley@sifive.com>
16147 M:      Palmer Dabbelt <palmer@dabbelt.com>
16148 L:      linux-riscv@lists.infradead.org
16149 S:      Supported
16150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
16151 N:      fu540
16152 K:      fu540
16153
16154 SIFIVE PDMA DRIVER
16155 M:      Green Wan <green.wan@sifive.com>
16156 S:      Maintained
16157 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
16158 F:      drivers/dma/sf-pdma/
16159
16160 SILEAD TOUCHSCREEN DRIVER
16161 M:      Hans de Goede <hdegoede@redhat.com>
16162 L:      linux-input@vger.kernel.org
16163 L:      platform-driver-x86@vger.kernel.org
16164 S:      Maintained
16165 F:      drivers/input/touchscreen/silead.c
16166 F:      drivers/platform/x86/touchscreen_dmi.c
16167
16168 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
16169 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
16170 S:      Supported
16171 F:      drivers/staging/wfx/
16172
16173 SILICON MOTION SM712 FRAME BUFFER DRIVER
16174 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16175 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16176 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16177 L:      linux-fbdev@vger.kernel.org
16178 S:      Maintained
16179 F:      Documentation/fb/sm712fb.rst
16180 F:      drivers/video/fbdev/sm712*
16181
16182 SIMPLE FIRMWARE INTERFACE (SFI)
16183 S:      Obsolete
16184 W:      http://simplefirmware.org/
16185 F:      arch/x86/platform/sfi/
16186 F:      drivers/sfi/
16187 F:      include/linux/sfi*.h
16188
16189 SIMPLEFB FB DRIVER
16190 M:      Hans de Goede <hdegoede@redhat.com>
16191 L:      linux-fbdev@vger.kernel.org
16192 S:      Maintained
16193 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
16194 F:      drivers/video/fbdev/simplefb.c
16195 F:      include/linux/platform_data/simplefb.h
16196
16197 SIMTEC EB110ATX (Chalice CATS)
16198 M:      Simtec Linux Team <linux@simtec.co.uk>
16199 S:      Supported
16200 W:      http://www.simtec.co.uk/products/EB110ATX/
16201
16202 SIMTEC EB2410ITX (BAST)
16203 M:      Simtec Linux Team <linux@simtec.co.uk>
16204 S:      Supported
16205 W:      http://www.simtec.co.uk/products/EB2410ITX/
16206 F:      arch/arm/mach-s3c/bast-ide.c
16207 F:      arch/arm/mach-s3c/bast-irq.c
16208 F:      arch/arm/mach-s3c/mach-bast.c
16209
16210 SIOX
16211 M:      Thorsten Scherer <t.scherer@eckelmann.de>
16212 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16213 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16214 S:      Supported
16215 F:      drivers/gpio/gpio-siox.c
16216 F:      drivers/siox/*
16217 F:      include/trace/events/siox.h
16218
16219 SIPHASH PRF ROUTINES
16220 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16221 S:      Maintained
16222 F:      include/linux/siphash.h
16223 F:      lib/siphash.c
16224 F:      lib/test_siphash.c
16225
16226 SIS 190 ETHERNET DRIVER
16227 M:      Francois Romieu <romieu@fr.zoreil.com>
16228 L:      netdev@vger.kernel.org
16229 S:      Maintained
16230 F:      drivers/net/ethernet/sis/sis190.c
16231
16232 SIS 900/7016 FAST ETHERNET DRIVER
16233 M:      Daniele Venzano <venza@brownhat.org>
16234 L:      netdev@vger.kernel.org
16235 S:      Maintained
16236 W:      http://www.brownhat.org/sis900.html
16237 F:      drivers/net/ethernet/sis/sis900.*
16238
16239 SIS FRAMEBUFFER DRIVER
16240 M:      Thomas Winischhofer <thomas@winischhofer.net>
16241 S:      Maintained
16242 W:      http://www.winischhofer.net/linuxsisvga.shtml
16243 F:      Documentation/fb/sisfb.rst
16244 F:      drivers/video/fbdev/sis/
16245 F:      include/video/sisfb.h
16246
16247 SIS I2C TOUCHSCREEN DRIVER
16248 M:      Mika Penttilä <mika.penttila@nextfour.com>
16249 L:      linux-input@vger.kernel.org
16250 S:      Maintained
16251 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
16252 F:      drivers/input/touchscreen/sis_i2c.c
16253
16254 SIS USB2VGA DRIVER
16255 M:      Thomas Winischhofer <thomas@winischhofer.net>
16256 S:      Maintained
16257 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
16258 F:      drivers/usb/misc/sisusbvga/
16259
16260 SLAB ALLOCATOR
16261 M:      Christoph Lameter <cl@linux.com>
16262 M:      Pekka Enberg <penberg@kernel.org>
16263 M:      David Rientjes <rientjes@google.com>
16264 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
16265 M:      Andrew Morton <akpm@linux-foundation.org>
16266 L:      linux-mm@kvack.org
16267 S:      Maintained
16268 F:      include/linux/sl?b*.h
16269 F:      mm/sl?b*
16270
16271 SLEEPABLE READ-COPY UPDATE (SRCU)
16272 M:      Lai Jiangshan <jiangshanlai@gmail.com>
16273 M:      "Paul E. McKenney" <paulmck@kernel.org>
16274 M:      Josh Triplett <josh@joshtriplett.org>
16275 R:      Steven Rostedt <rostedt@goodmis.org>
16276 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16277 L:      rcu@vger.kernel.org
16278 S:      Supported
16279 W:      http://www.rdrop.com/users/paulmck/RCU/
16280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16281 F:      include/linux/srcu*.h
16282 F:      kernel/rcu/srcu*.c
16283
16284 SMACK SECURITY MODULE
16285 M:      Casey Schaufler <casey@schaufler-ca.com>
16286 L:      linux-security-module@vger.kernel.org
16287 S:      Maintained
16288 W:      http://schaufler-ca.com
16289 T:      git git://github.com/cschaufler/smack-next
16290 F:      Documentation/admin-guide/LSM/Smack.rst
16291 F:      security/smack/
16292
16293 SMC91x ETHERNET DRIVER
16294 M:      Nicolas Pitre <nico@fluxnic.net>
16295 S:      Odd Fixes
16296 F:      drivers/net/ethernet/smsc/smc91x.*
16297
16298 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
16299 M:      Mark Rutland <mark.rutland@arm.com>
16300 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
16301 M:      Sudeep Holla <sudeep.holla@arm.com>
16302 L:      linux-arm-kernel@lists.infradead.org
16303 S:      Maintained
16304 F:      drivers/firmware/smccc/
16305 F:      include/linux/arm-smccc.h
16306
16307 SMM665 HARDWARE MONITOR DRIVER
16308 M:      Guenter Roeck <linux@roeck-us.net>
16309 L:      linux-hwmon@vger.kernel.org
16310 S:      Maintained
16311 F:      Documentation/hwmon/smm665.rst
16312 F:      drivers/hwmon/smm665.c
16313
16314 SMSC EMC2103 HARDWARE MONITOR DRIVER
16315 M:      Steve Glendinning <steve.glendinning@shawell.net>
16316 L:      linux-hwmon@vger.kernel.org
16317 S:      Maintained
16318 F:      Documentation/hwmon/emc2103.rst
16319 F:      drivers/hwmon/emc2103.c
16320
16321 SMSC SCH5627 HARDWARE MONITOR DRIVER
16322 M:      Hans de Goede <hdegoede@redhat.com>
16323 L:      linux-hwmon@vger.kernel.org
16324 S:      Supported
16325 F:      Documentation/hwmon/sch5627.rst
16326 F:      drivers/hwmon/sch5627.c
16327
16328 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
16329 M:      Steve Glendinning <steve.glendinning@shawell.net>
16330 L:      linux-fbdev@vger.kernel.org
16331 S:      Maintained
16332 F:      drivers/video/fbdev/smscufx.c
16333
16334 SMSC47B397 HARDWARE MONITOR DRIVER
16335 M:      Jean Delvare <jdelvare@suse.com>
16336 L:      linux-hwmon@vger.kernel.org
16337 S:      Maintained
16338 F:      Documentation/hwmon/smsc47b397.rst
16339 F:      drivers/hwmon/smsc47b397.c
16340
16341 SMSC911x ETHERNET DRIVER
16342 M:      Steve Glendinning <steve.glendinning@shawell.net>
16343 L:      netdev@vger.kernel.org
16344 S:      Maintained
16345 F:      drivers/net/ethernet/smsc/smsc911x.*
16346 F:      include/linux/smsc911x.h
16347
16348 SMSC9420 PCI ETHERNET DRIVER
16349 M:      Steve Glendinning <steve.glendinning@shawell.net>
16350 L:      netdev@vger.kernel.org
16351 S:      Maintained
16352 F:      drivers/net/ethernet/smsc/smsc9420.*
16353
16354 SOCIONEXT (SNI) AVE NETWORK DRIVER
16355 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
16356 L:      netdev@vger.kernel.org
16357 S:      Maintained
16358 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
16359 F:      drivers/net/ethernet/socionext/sni_ave.c
16360
16361 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
16362 M:      Jassi Brar <jaswinder.singh@linaro.org>
16363 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
16364 L:      netdev@vger.kernel.org
16365 S:      Maintained
16366 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
16367 F:      drivers/net/ethernet/socionext/netsec.c
16368
16369 SOCIONEXT (SNI) Synquacer SPI DRIVER
16370 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
16371 M:      Jassi Brar <jaswinder.singh@linaro.org>
16372 L:      linux-spi@vger.kernel.org
16373 S:      Maintained
16374 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
16375 F:      drivers/spi/spi-synquacer.c
16376
16377 SOCIONEXT SYNQUACER I2C DRIVER
16378 M:      Ard Biesheuvel <ardb@kernel.org>
16379 L:      linux-i2c@vger.kernel.org
16380 S:      Maintained
16381 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
16382 F:      drivers/i2c/busses/i2c-synquacer.c
16383
16384 SOCIONEXT UNIPHIER SOUND DRIVER
16385 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16386 S:      Orphan
16387 F:      sound/soc/uniphier/
16388
16389 SOEKRIS NET48XX LED SUPPORT
16390 M:      Chris Boot <bootc@bootc.net>
16391 S:      Maintained
16392 F:      drivers/leds/leds-net48xx.c
16393
16394 SOFT-IWARP DRIVER (siw)
16395 M:      Bernard Metzler <bmt@zurich.ibm.com>
16396 L:      linux-rdma@vger.kernel.org
16397 S:      Supported
16398 F:      drivers/infiniband/sw/siw/
16399 F:      include/uapi/rdma/siw-abi.h
16400
16401 SOFT-ROCE DRIVER (rxe)
16402 M:      Zhu Yanjun <yanjunz@nvidia.com>
16403 L:      linux-rdma@vger.kernel.org
16404 S:      Supported
16405 F:      drivers/infiniband/sw/rxe/
16406 F:      include/uapi/rdma/rdma_user_rxe.h
16407
16408 SOFTLOGIC 6x10 MPEG CODEC
16409 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
16410 M:      Anton Sviridenko <anton@corp.bluecherry.net>
16411 M:      Andrey Utkin <andrey_utkin@fastmail.com>
16412 M:      Ismael Luceno <ismael@iodev.co.uk>
16413 L:      linux-media@vger.kernel.org
16414 S:      Supported
16415 F:      drivers/media/pci/solo6x10/
16416
16417 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
16418 M:      James Morse <james.morse@arm.com>
16419 L:      linux-arm-kernel@lists.infradead.org
16420 S:      Maintained
16421 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
16422 F:      drivers/firmware/arm_sdei.c
16423 F:      include/linux/arm_sdei.h
16424 F:      include/uapi/linux/arm_sdei.h
16425
16426 SOFTWARE RAID (Multiple Disks) SUPPORT
16427 M:      Song Liu <song@kernel.org>
16428 L:      linux-raid@vger.kernel.org
16429 S:      Supported
16430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
16431 F:      drivers/md/Kconfig
16432 F:      drivers/md/Makefile
16433 F:      drivers/md/md*
16434 F:      drivers/md/raid*
16435 F:      include/linux/raid/
16436 F:      include/uapi/linux/raid/
16437
16438 SOLIDRUN CLEARFOG SUPPORT
16439 M:      Russell King <linux@armlinux.org.uk>
16440 S:      Maintained
16441 F:      arch/arm/boot/dts/armada-388-clearfog*
16442 F:      arch/arm/boot/dts/armada-38x-solidrun-*
16443
16444 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
16445 M:      Russell King <linux@armlinux.org.uk>
16446 S:      Maintained
16447 F:      arch/arm/boot/dts/imx6*-cubox-i*
16448 F:      arch/arm/boot/dts/imx6*-hummingboard*
16449 F:      arch/arm/boot/dts/imx6*-sr-*
16450
16451 SONIC NETWORK DRIVER
16452 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
16453 L:      netdev@vger.kernel.org
16454 S:      Maintained
16455 F:      drivers/net/ethernet/natsemi/sonic.*
16456
16457 SONICS SILICON BACKPLANE DRIVER (SSB)
16458 M:      Michael Buesch <m@bues.ch>
16459 L:      linux-wireless@vger.kernel.org
16460 S:      Maintained
16461 F:      drivers/ssb/
16462 F:      include/linux/ssb/
16463
16464 SONY IMX214 SENSOR DRIVER
16465 M:      Ricardo Ribalda <ribalda@kernel.org>
16466 L:      linux-media@vger.kernel.org
16467 S:      Maintained
16468 T:      git git://linuxtv.org/media_tree.git
16469 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
16470 F:      drivers/media/i2c/imx214.c
16471
16472 SONY IMX219 SENSOR DRIVER
16473 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
16474 L:      linux-media@vger.kernel.org
16475 S:      Maintained
16476 T:      git git://linuxtv.org/media_tree.git
16477 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
16478 F:      drivers/media/i2c/imx219.c
16479
16480 SONY IMX258 SENSOR DRIVER
16481 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
16482 L:      linux-media@vger.kernel.org
16483 S:      Maintained
16484 T:      git git://linuxtv.org/media_tree.git
16485 F:      drivers/media/i2c/imx258.c
16486
16487 SONY IMX274 SENSOR DRIVER
16488 M:      Leon Luo <leonl@leopardimaging.com>
16489 L:      linux-media@vger.kernel.org
16490 S:      Maintained
16491 T:      git git://linuxtv.org/media_tree.git
16492 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
16493 F:      drivers/media/i2c/imx274.c
16494
16495 SONY IMX290 SENSOR DRIVER
16496 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16497 L:      linux-media@vger.kernel.org
16498 S:      Maintained
16499 T:      git git://linuxtv.org/media_tree.git
16500 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
16501 F:      drivers/media/i2c/imx290.c
16502
16503 SONY IMX319 SENSOR DRIVER
16504 M:      Bingbu Cao <bingbu.cao@intel.com>
16505 L:      linux-media@vger.kernel.org
16506 S:      Maintained
16507 T:      git git://linuxtv.org/media_tree.git
16508 F:      drivers/media/i2c/imx319.c
16509
16510 SONY IMX355 SENSOR DRIVER
16511 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
16512 L:      linux-media@vger.kernel.org
16513 S:      Maintained
16514 T:      git git://linuxtv.org/media_tree.git
16515 F:      drivers/media/i2c/imx355.c
16516
16517 SONY MEMORYSTICK SUBSYSTEM
16518 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16519 M:      Alex Dubov <oakad@yahoo.com>
16520 M:      Ulf Hansson <ulf.hansson@linaro.org>
16521 L:      linux-mmc@vger.kernel.org
16522 S:      Maintained
16523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
16524 F:      drivers/memstick/
16525 F:      include/linux/memstick.h
16526
16527 SONY VAIO CONTROL DEVICE DRIVER
16528 M:      Mattia Dongili <malattia@linux.it>
16529 L:      platform-driver-x86@vger.kernel.org
16530 S:      Maintained
16531 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
16532 F:      Documentation/admin-guide/laptops/sony-laptop.rst
16533 F:      drivers/char/sonypi.c
16534 F:      drivers/platform/x86/sony-laptop.c
16535 F:      include/linux/sony-laptop.h
16536
16537 SOUND
16538 M:      Jaroslav Kysela <perex@perex.cz>
16539 M:      Takashi Iwai <tiwai@suse.com>
16540 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16541 S:      Maintained
16542 W:      http://www.alsa-project.org/
16543 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
16544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16545 F:      Documentation/sound/
16546 F:      include/sound/
16547 F:      include/uapi/sound/
16548 F:      sound/
16549
16550 SOUND - COMPRESSED AUDIO
16551 M:      Vinod Koul <vkoul@kernel.org>
16552 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16553 S:      Supported
16554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16555 F:      Documentation/sound/designs/compress-offload.rst
16556 F:      include/sound/compress_driver.h
16557 F:      include/uapi/sound/compress_*
16558 F:      sound/core/compress_offload.c
16559 F:      sound/soc/soc-compress.c
16560
16561 SOUND - DMAENGINE HELPERS
16562 M:      Lars-Peter Clausen <lars@metafoo.de>
16563 S:      Supported
16564 F:      include/sound/dmaengine_pcm.h
16565 F:      sound/core/pcm_dmaengine.c
16566 F:      sound/soc/soc-generic-dmaengine-pcm.c
16567
16568 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
16569 M:      Liam Girdwood <lgirdwood@gmail.com>
16570 M:      Mark Brown <broonie@kernel.org>
16571 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16572 S:      Supported
16573 W:      http://alsa-project.org/main/index.php/ASoC
16574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
16575 F:      Documentation/devicetree/bindings/sound/
16576 F:      Documentation/sound/soc/
16577 F:      include/dt-bindings/sound/
16578 F:      include/sound/soc*
16579 F:      sound/soc/
16580
16581 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
16582 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16583 M:      Liam Girdwood <lgirdwood@gmail.com>
16584 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
16585 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
16586 M:      Daniel Baluta <daniel.baluta@nxp.com>
16587 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
16588 S:      Supported
16589 W:      https://github.com/thesofproject/linux/
16590 F:      sound/soc/sof/
16591
16592 SOUNDWIRE SUBSYSTEM
16593 M:      Vinod Koul <vkoul@kernel.org>
16594 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
16595 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16596 R:      Sanyog Kale <sanyog.r.kale@intel.com>
16597 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16598 S:      Supported
16599 F:      Documentation/driver-api/soundwire/
16600 F:      drivers/soundwire/
16601 F:      include/linux/soundwire/
16602
16603 SP2 MEDIA DRIVER
16604 M:      Olli Salonen <olli.salonen@iki.fi>
16605 L:      linux-media@vger.kernel.org
16606 S:      Maintained
16607 W:      https://linuxtv.org
16608 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16609 F:      drivers/media/dvb-frontends/sp2*
16610
16611 SPARC + UltraSPARC (sparc/sparc64)
16612 M:      "David S. Miller" <davem@davemloft.net>
16613 L:      sparclinux@vger.kernel.org
16614 S:      Maintained
16615 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
16616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16618 F:      arch/sparc/
16619 F:      drivers/sbus/
16620
16621 SPARC SERIAL DRIVERS
16622 M:      "David S. Miller" <davem@davemloft.net>
16623 L:      sparclinux@vger.kernel.org
16624 S:      Maintained
16625 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16627 F:      drivers/tty/serial/suncore.c
16628 F:      drivers/tty/serial/sunhv.c
16629 F:      drivers/tty/serial/sunsab.c
16630 F:      drivers/tty/serial/sunsab.h
16631 F:      drivers/tty/serial/sunsu.c
16632 F:      drivers/tty/serial/sunzilog.c
16633 F:      drivers/tty/serial/sunzilog.h
16634 F:      drivers/tty/vcc.c
16635 F:      include/linux/sunserialcore.h
16636
16637 SPARSE CHECKER
16638 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
16639 L:      linux-sparse@vger.kernel.org
16640 S:      Maintained
16641 W:      https://sparse.docs.kernel.org/
16642 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
16643 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
16644 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
16645 F:      include/linux/compiler.h
16646
16647 SPEAKUP CONSOLE SPEECH DRIVER
16648 M:      William Hubbs <w.d.hubbs@gmail.com>
16649 M:      Chris Brannon <chris@the-brannons.com>
16650 M:      Kirk Reiser <kirk@reisers.ca>
16651 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
16652 L:      speakup@linux-speakup.org
16653 S:      Odd Fixes
16654 W:      http://www.linux-speakup.org/
16655 F:      drivers/accessibility/speakup/
16656
16657 SPEAR CLOCK FRAMEWORK SUPPORT
16658 M:      Viresh Kumar <vireshk@kernel.org>
16659 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16660 S:      Maintained
16661 W:      http://www.st.com/spear
16662 F:      drivers/clk/spear/
16663
16664 SPEAR PLATFORM SUPPORT
16665 M:      Viresh Kumar <vireshk@kernel.org>
16666 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
16667 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16668 S:      Maintained
16669 W:      http://www.st.com/spear
16670 F:      arch/arm/boot/dts/spear*
16671 F:      arch/arm/mach-spear/
16672
16673 SPI NOR SUBSYSTEM
16674 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
16675 L:      linux-mtd@lists.infradead.org
16676 S:      Maintained
16677 W:      http://www.linux-mtd.infradead.org/
16678 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
16679 C:      irc://irc.oftc.net/mtd
16680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
16681 F:      drivers/mtd/spi-nor/
16682 F:      include/linux/mtd/spi-nor.h
16683
16684 SPI SUBSYSTEM
16685 M:      Mark Brown <broonie@kernel.org>
16686 L:      linux-spi@vger.kernel.org
16687 S:      Maintained
16688 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
16689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
16690 F:      Documentation/devicetree/bindings/spi/
16691 F:      Documentation/spi/
16692 F:      drivers/spi/
16693 F:      include/linux/spi/
16694 F:      include/uapi/linux/spi/
16695 F:      tools/spi/
16696
16697 SPIDERNET NETWORK DRIVER for CELL
16698 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
16699 L:      netdev@vger.kernel.org
16700 S:      Supported
16701 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
16702 F:      drivers/net/ethernet/toshiba/spider_net*
16703
16704 SPMI SUBSYSTEM
16705 M:      Stephen Boyd <sboyd@kernel.org>
16706 L:      linux-kernel@vger.kernel.org
16707 S:      Maintained
16708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
16709 F:      Documentation/devicetree/bindings/spmi/
16710 F:      drivers/spmi/
16711 F:      include/dt-bindings/spmi/spmi.h
16712 F:      include/linux/spmi.h
16713 F:      include/trace/events/spmi.h
16714
16715 SPU FILE SYSTEM
16716 M:      Jeremy Kerr <jk@ozlabs.org>
16717 L:      linuxppc-dev@lists.ozlabs.org
16718 S:      Supported
16719 W:      http://www.ibm.com/developerworks/power/cell/
16720 F:      Documentation/filesystems/spufs/spufs.rst
16721 F:      arch/powerpc/platforms/cell/spufs/
16722
16723 SQUASHFS FILE SYSTEM
16724 M:      Phillip Lougher <phillip@squashfs.org.uk>
16725 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
16726 S:      Maintained
16727 W:      http://squashfs.org.uk
16728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
16729 F:      Documentation/filesystems/squashfs.rst
16730 F:      fs/squashfs/
16731
16732 SRM (Alpha) environment access
16733 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
16734 S:      Maintained
16735 F:      arch/alpha/kernel/srm_env.c
16736
16737 ST LSM6DSx IMU IIO DRIVER
16738 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
16739 L:      linux-iio@vger.kernel.org
16740 S:      Maintained
16741 W:      http://www.st.com/
16742 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
16743 F:      drivers/iio/imu/st_lsm6dsx/
16744
16745 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
16746 M:      Mickael Guene <mickael.guene@st.com>
16747 L:      linux-media@vger.kernel.org
16748 S:      Maintained
16749 T:      git git://linuxtv.org/media_tree.git
16750 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
16751 F:      drivers/media/i2c/st-mipid02.c
16752
16753 ST STM32 I2C/SMBUS DRIVER
16754 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
16755 L:      linux-i2c@vger.kernel.org
16756 S:      Maintained
16757 F:      drivers/i2c/busses/i2c-stm32*
16758
16759 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
16760 M:      Song Qiang <songqiang1304521@gmail.com>
16761 L:      linux-iio@vger.kernel.org
16762 S:      Maintained
16763 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
16764 F:      drivers/iio/proximity/vl53l0x-i2c.c
16765
16766 STABLE BRANCH
16767 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16768 M:      Sasha Levin <sashal@kernel.org>
16769 L:      stable@vger.kernel.org
16770 S:      Supported
16771 F:      Documentation/process/stable-kernel-rules.rst
16772
16773 STAGING - ATOMISP DRIVER
16774 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16775 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
16776 L:      linux-media@vger.kernel.org
16777 S:      Maintained
16778 F:      drivers/staging/media/atomisp/
16779
16780 STAGING - COMEDI
16781 M:      Ian Abbott <abbotti@mev.co.uk>
16782 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
16783 S:      Odd Fixes
16784 F:      drivers/staging/comedi/
16785
16786 STAGING - FIELDBUS SUBSYSTEM
16787 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16788 S:      Maintained
16789 F:      drivers/staging/fieldbus/*
16790 F:      drivers/staging/fieldbus/Documentation/
16791
16792 STAGING - HMS ANYBUS-S BUS
16793 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16794 S:      Maintained
16795 F:      drivers/staging/fieldbus/anybuss/
16796
16797 STAGING - INDUSTRIAL IO
16798 M:      Jonathan Cameron <jic23@kernel.org>
16799 L:      linux-iio@vger.kernel.org
16800 S:      Odd Fixes
16801 F:      Documentation/devicetree/bindings/staging/iio/
16802 F:      drivers/staging/iio/
16803
16804 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
16805 M:      Marc Dietrich <marvin24@gmx.de>
16806 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
16807 L:      linux-tegra@vger.kernel.org
16808 S:      Maintained
16809 F:      drivers/staging/nvec/
16810
16811 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
16812 M:      Jens Frederich <jfrederich@gmail.com>
16813 M:      Daniel Drake <dsd@laptop.org>
16814 M:      Jon Nettleton <jon.nettleton@gmail.com>
16815 S:      Maintained
16816 W:      http://wiki.laptop.org/go/DCON
16817 F:      drivers/staging/olpc_dcon/
16818
16819 STAGING - REALTEK RTL8188EU DRIVERS
16820 M:      Larry Finger <Larry.Finger@lwfinger.net>
16821 S:      Odd Fixes
16822 F:      drivers/staging/rtl8188eu/
16823
16824 STAGING - REALTEK RTL8712U DRIVERS
16825 M:      Larry Finger <Larry.Finger@lwfinger.net>
16826 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
16827 S:      Odd Fixes
16828 F:      drivers/staging/rtl8712/
16829
16830 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16831 M:      Michael Hennerich <michael.hennerich@analog.com>
16832 L:      linux-fbdev@vger.kernel.org
16833 S:      Supported
16834 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16835 F:      drivers/staging/fbtft/fb_seps525.c
16836
16837 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16838 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16839 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16840 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16841 L:      linux-fbdev@vger.kernel.org
16842 S:      Maintained
16843 F:      drivers/staging/sm750fb/
16844
16845 STAGING - VIA VT665X DRIVERS
16846 M:      Forest Bond <forest@alittletooquiet.net>
16847 S:      Odd Fixes
16848 F:      drivers/staging/vt665?/
16849
16850 STAGING SUBSYSTEM
16851 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16852 L:      devel@driverdev.osuosl.org
16853 S:      Supported
16854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16855 F:      drivers/staging/
16856
16857 STARFIRE/DURALAN NETWORK DRIVER
16858 M:      Ion Badulescu <ionut@badula.org>
16859 S:      Odd Fixes
16860 F:      drivers/net/ethernet/adaptec/starfire*
16861
16862 STEC S1220 SKD DRIVER
16863 M:      Damien Le Moal <Damien.LeMoal@wdc.com>
16864 L:      linux-block@vger.kernel.org
16865 S:      Maintained
16866 F:      drivers/block/skd*[ch]
16867
16868 STI AUDIO (ASoC) DRIVERS
16869 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16870 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16871 S:      Maintained
16872 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16873 F:      sound/soc/sti/
16874
16875 STI CEC DRIVER
16876 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
16877 S:      Maintained
16878 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16879 F:      drivers/media/cec/platform/sti/
16880
16881 STK1160 USB VIDEO CAPTURE DRIVER
16882 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16883 L:      linux-media@vger.kernel.org
16884 S:      Maintained
16885 T:      git git://linuxtv.org/media_tree.git
16886 F:      drivers/media/usb/stk1160/
16887
16888 STM32 AUDIO (ASoC) DRIVERS
16889 M:      Olivier Moysan <olivier.moysan@st.com>
16890 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16891 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16892 S:      Maintained
16893 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
16894 F:      sound/soc/stm/
16895
16896 STM32 TIMER/LPTIMER DRIVERS
16897 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
16898 S:      Maintained
16899 F:      Documentation/ABI/testing/*timer-stm32
16900 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16901 F:      drivers/*/stm32-*timer*
16902 F:      drivers/pwm/pwm-stm32*
16903 F:      include/linux/*/stm32-*tim*
16904
16905 STMMAC ETHERNET DRIVER
16906 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
16907 M:      Alexandre Torgue <alexandre.torgue@st.com>
16908 M:      Jose Abreu <joabreu@synopsys.com>
16909 L:      netdev@vger.kernel.org
16910 S:      Supported
16911 W:      http://www.stlinux.com
16912 F:      Documentation/networking/device_drivers/ethernet/stmicro/
16913 F:      drivers/net/ethernet/stmicro/stmmac/
16914
16915 SUN3/3X
16916 M:      Sam Creasey <sammy@sammy.net>
16917 S:      Maintained
16918 W:      http://sammy.net/sun3/
16919 F:      arch/m68k/include/asm/sun3*
16920 F:      arch/m68k/kernel/*sun3*
16921 F:      arch/m68k/sun3*/
16922 F:      drivers/net/ethernet/i825xx/sun3*
16923
16924 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16925 M:      Hans de Goede <hdegoede@redhat.com>
16926 L:      linux-input@vger.kernel.org
16927 S:      Maintained
16928 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16929 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16930
16931 SUNDANCE NETWORK DRIVER
16932 M:      Denis Kirjanov <kda@linux-powerpc.org>
16933 L:      netdev@vger.kernel.org
16934 S:      Maintained
16935 F:      drivers/net/ethernet/dlink/sundance.c
16936
16937 SUPERH
16938 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
16939 M:      Rich Felker <dalias@libc.org>
16940 L:      linux-sh@vger.kernel.org
16941 S:      Maintained
16942 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16943 F:      Documentation/sh/
16944 F:      arch/sh/
16945 F:      drivers/sh/
16946
16947 SUSPEND TO RAM
16948 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
16949 M:      Len Brown <len.brown@intel.com>
16950 M:      Pavel Machek <pavel@ucw.cz>
16951 L:      linux-pm@vger.kernel.org
16952 S:      Supported
16953 B:      https://bugzilla.kernel.org
16954 F:      Documentation/power/
16955 F:      arch/x86/kernel/acpi/
16956 F:      drivers/base/power/
16957 F:      include/linux/freezer.h
16958 F:      include/linux/pm.h
16959 F:      include/linux/suspend.h
16960 F:      kernel/power/
16961
16962 SVGA HANDLING
16963 M:      Martin Mares <mj@ucw.cz>
16964 L:      linux-video@atrey.karlin.mff.cuni.cz
16965 S:      Maintained
16966 F:      Documentation/admin-guide/svga.rst
16967 F:      arch/x86/boot/video*
16968
16969 SWIOTLB SUBSYSTEM
16970 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
16971 L:      iommu@lists.linux-foundation.org
16972 S:      Supported
16973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16974 F:      arch/*/kernel/pci-swiotlb.c
16975 F:      include/linux/swiotlb.h
16976 F:      kernel/dma/swiotlb.c
16977
16978 SWITCHDEV
16979 M:      Jiri Pirko <jiri@resnulli.us>
16980 M:      Ivan Vecera <ivecera@redhat.com>
16981 L:      netdev@vger.kernel.org
16982 S:      Supported
16983 F:      include/net/switchdev.h
16984 F:      net/switchdev/
16985
16986 SY8106A REGULATOR DRIVER
16987 M:      Icenowy Zheng <icenowy@aosc.io>
16988 S:      Maintained
16989 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16990 F:      drivers/regulator/sy8106a-regulator.c
16991
16992 SYNC FILE FRAMEWORK
16993 M:      Sumit Semwal <sumit.semwal@linaro.org>
16994 R:      Gustavo Padovan <gustavo@padovan.org>
16995 L:      linux-media@vger.kernel.org
16996 L:      dri-devel@lists.freedesktop.org
16997 S:      Maintained
16998 T:      git git://anongit.freedesktop.org/drm/drm-misc
16999 F:      Documentation/driver-api/sync_file.rst
17000 F:      drivers/dma-buf/dma-fence*
17001 F:      drivers/dma-buf/sw_sync.c
17002 F:      drivers/dma-buf/sync_*
17003 F:      include/linux/sync_file.h
17004 F:      include/uapi/linux/sync_file.h
17005
17006 SYNOPSYS ARC ARCHITECTURE
17007 M:      Vineet Gupta <vgupta@synopsys.com>
17008 L:      linux-snps-arc@lists.infradead.org
17009 S:      Supported
17010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
17011 F:      Documentation/devicetree/bindings/arc/*
17012 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
17013 F:      arch/arc/
17014 F:      drivers/clocksource/arc_timer.c
17015 F:      drivers/tty/serial/arc_uart.c
17016
17017 SYNOPSYS ARC HSDK SDP pll clock driver
17018 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17019 S:      Supported
17020 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
17021 F:      drivers/clk/clk-hsdk-pll.c
17022
17023 SYNOPSYS ARC SDP clock driver
17024 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17025 S:      Supported
17026 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
17027 F:      drivers/clk/axs10x/*
17028
17029 SYNOPSYS ARC SDP platform support
17030 M:      Alexey Brodkin <abrodkin@synopsys.com>
17031 S:      Supported
17032 F:      Documentation/devicetree/bindings/arc/axs10*
17033 F:      arch/arc/boot/dts/ax*
17034 F:      arch/arc/plat-axs10x
17035
17036 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
17037 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17038 S:      Supported
17039 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
17040 F:      drivers/reset/reset-axs10x.c
17041
17042 SYNOPSYS CREG GPIO DRIVER
17043 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17044 S:      Maintained
17045 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
17046 F:      drivers/gpio/gpio-creg-snps.c
17047
17048 SYNOPSYS DESIGNWARE 8250 UART DRIVER
17049 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17050 S:      Maintained
17051 F:      drivers/tty/serial/8250/8250_dw.c
17052 F:      drivers/tty/serial/8250/8250_dwlib.*
17053 F:      drivers/tty/serial/8250/8250_lpss.c
17054
17055 SYNOPSYS DESIGNWARE APB GPIO DRIVER
17056 M:      Hoan Tran <hoan@os.amperecomputing.com>
17057 M:      Serge Semin <fancer.lancer@gmail.com>
17058 L:      linux-gpio@vger.kernel.org
17059 S:      Maintained
17060 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
17061 F:      drivers/gpio/gpio-dwapb.c
17062
17063 SYNOPSYS DESIGNWARE APB SSI DRIVER
17064 M:      Serge Semin <fancer.lancer@gmail.com>
17065 L:      linux-spi@vger.kernel.org
17066 S:      Supported
17067 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
17068 F:      drivers/spi/spi-dw*
17069
17070 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
17071 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17072 S:      Maintained
17073 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
17074 F:      drivers/dma/dw-axi-dmac/
17075
17076 SYNOPSYS DESIGNWARE DMAC DRIVER
17077 M:      Viresh Kumar <vireshk@kernel.org>
17078 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17079 S:      Maintained
17080 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
17081 F:      drivers/dma/dw/
17082 F:      include/dt-bindings/dma/dw-dmac.h
17083 F:      include/linux/dma/dw.h
17084 F:      include/linux/platform_data/dma-dw.h
17085
17086 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
17087 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17088 L:      netdev@vger.kernel.org
17089 S:      Supported
17090 F:      drivers/net/ethernet/synopsys/
17091
17092 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
17093 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17094 L:      netdev@vger.kernel.org
17095 S:      Supported
17096 F:      drivers/net/pcs/pcs-xpcs.c
17097 F:      include/linux/pcs/pcs-xpcs.h
17098
17099 SYNOPSYS DESIGNWARE I2C DRIVER
17100 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
17101 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17102 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
17103 L:      linux-i2c@vger.kernel.org
17104 S:      Maintained
17105 F:      drivers/i2c/busses/i2c-designware-*
17106 F:      include/linux/platform_data/i2c-designware.h
17107
17108 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
17109 M:      Jaehoon Chung <jh80.chung@samsung.com>
17110 L:      linux-mmc@vger.kernel.org
17111 S:      Maintained
17112 F:      drivers/mmc/host/dw_mmc*
17113
17114 SYNOPSYS HSDK RESET CONTROLLER DRIVER
17115 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17116 S:      Supported
17117 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
17118 F:      drivers/reset/reset-hsdk.c
17119 F:      include/dt-bindings/reset/snps,hsdk-reset.h
17120
17121 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
17122 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
17123 M:      Manjunath M B <manjumb@synopsys.com>
17124 L:      linux-mmc@vger.kernel.org
17125 S:      Maintained
17126 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
17127
17128 SYSTEM CONFIGURATION (SYSCON)
17129 M:      Lee Jones <lee.jones@linaro.org>
17130 M:      Arnd Bergmann <arnd@arndb.de>
17131 S:      Supported
17132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
17133 F:      drivers/mfd/syscon.c
17134
17135 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
17136 M:      Sudeep Holla <sudeep.holla@arm.com>
17137 L:      linux-arm-kernel@lists.infradead.org
17138 S:      Maintained
17139 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
17140 F:      drivers/clk/clk-sc[mp]i.c
17141 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
17142 F:      drivers/firmware/arm_scmi/
17143 F:      drivers/firmware/arm_scpi.c
17144 F:      drivers/reset/reset-scmi.c
17145 F:      include/linux/sc[mp]i_protocol.h
17146 F:      include/trace/events/scmi.h
17147
17148 SYSTEM RESET/SHUTDOWN DRIVERS
17149 M:      Sebastian Reichel <sre@kernel.org>
17150 L:      linux-pm@vger.kernel.org
17151 S:      Maintained
17152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
17153 F:      Documentation/devicetree/bindings/power/reset/
17154 F:      drivers/power/reset/
17155
17156 SYSTEM TRACE MODULE CLASS
17157 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
17158 S:      Maintained
17159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
17160 F:      Documentation/trace/stm.rst
17161 F:      drivers/hwtracing/stm/
17162 F:      include/linux/stm.h
17163 F:      include/uapi/linux/stm.h
17164
17165 SYSTEM76 ACPI DRIVER
17166 M:      Jeremy Soller <jeremy@system76.com>
17167 M:      System76 Product Development <productdev@system76.com>
17168 L:      platform-driver-x86@vger.kernel.org
17169 S:      Maintained
17170 F:      drivers/platform/x86/system76_acpi.c
17171
17172 SYSV FILESYSTEM
17173 M:      Christoph Hellwig <hch@infradead.org>
17174 S:      Maintained
17175 F:      Documentation/filesystems/sysv-fs.rst
17176 F:      fs/sysv/
17177 F:      include/linux/sysv_fs.h
17178
17179 TASKSTATS STATISTICS INTERFACE
17180 M:      Balbir Singh <bsingharora@gmail.com>
17181 S:      Maintained
17182 F:      Documentation/accounting/taskstats*
17183 F:      include/linux/taskstats*
17184 F:      kernel/taskstats.c
17185
17186 TC subsystem
17187 M:      Jamal Hadi Salim <jhs@mojatatu.com>
17188 M:      Cong Wang <xiyou.wangcong@gmail.com>
17189 M:      Jiri Pirko <jiri@resnulli.us>
17190 L:      netdev@vger.kernel.org
17191 S:      Maintained
17192 F:      include/net/pkt_cls.h
17193 F:      include/net/pkt_sched.h
17194 F:      include/net/tc_act/
17195 F:      include/uapi/linux/pkt_cls.h
17196 F:      include/uapi/linux/pkt_sched.h
17197 F:      include/uapi/linux/tc_act/
17198 F:      include/uapi/linux/tc_ematch/
17199 F:      net/sched/
17200
17201 TC90522 MEDIA DRIVER
17202 M:      Akihiro Tsukada <tskd08@gmail.com>
17203 L:      linux-media@vger.kernel.org
17204 S:      Odd Fixes
17205 F:      drivers/media/dvb-frontends/tc90522*
17206
17207 TCP LOW PRIORITY MODULE
17208 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
17209 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
17210 S:      Maintained
17211 W:      http://tcp-lp-mod.sourceforge.net/
17212 F:      net/ipv4/tcp_lp.c
17213
17214 TDA10071 MEDIA DRIVER
17215 M:      Antti Palosaari <crope@iki.fi>
17216 L:      linux-media@vger.kernel.org
17217 S:      Maintained
17218 W:      https://linuxtv.org
17219 W:      http://palosaari.fi/linux/
17220 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17221 T:      git git://linuxtv.org/anttip/media_tree.git
17222 F:      drivers/media/dvb-frontends/tda10071*
17223
17224 TDA18212 MEDIA DRIVER
17225 M:      Antti Palosaari <crope@iki.fi>
17226 L:      linux-media@vger.kernel.org
17227 S:      Maintained
17228 W:      https://linuxtv.org
17229 W:      http://palosaari.fi/linux/
17230 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17231 T:      git git://linuxtv.org/anttip/media_tree.git
17232 F:      drivers/media/tuners/tda18212*
17233
17234 TDA18218 MEDIA DRIVER
17235 M:      Antti Palosaari <crope@iki.fi>
17236 L:      linux-media@vger.kernel.org
17237 S:      Maintained
17238 W:      https://linuxtv.org
17239 W:      http://palosaari.fi/linux/
17240 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17241 T:      git git://linuxtv.org/anttip/media_tree.git
17242 F:      drivers/media/tuners/tda18218*
17243
17244 TDA18250 MEDIA DRIVER
17245 M:      Olli Salonen <olli.salonen@iki.fi>
17246 L:      linux-media@vger.kernel.org
17247 S:      Maintained
17248 W:      https://linuxtv.org
17249 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17250 T:      git git://linuxtv.org/media_tree.git
17251 F:      drivers/media/tuners/tda18250*
17252
17253 TDA18271 MEDIA DRIVER
17254 M:      Michael Krufky <mkrufky@linuxtv.org>
17255 L:      linux-media@vger.kernel.org
17256 S:      Maintained
17257 W:      https://linuxtv.org
17258 W:      http://github.com/mkrufky
17259 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17260 T:      git git://linuxtv.org/mkrufky/tuners.git
17261 F:      drivers/media/tuners/tda18271*
17262
17263 TDA1997x MEDIA DRIVER
17264 M:      Tim Harvey <tharvey@gateworks.com>
17265 L:      linux-media@vger.kernel.org
17266 S:      Maintained
17267 W:      https://linuxtv.org
17268 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17269 F:      drivers/media/i2c/tda1997x.*
17270
17271 TDA827x MEDIA DRIVER
17272 M:      Michael Krufky <mkrufky@linuxtv.org>
17273 L:      linux-media@vger.kernel.org
17274 S:      Maintained
17275 W:      https://linuxtv.org
17276 W:      http://github.com/mkrufky
17277 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17278 T:      git git://linuxtv.org/mkrufky/tuners.git
17279 F:      drivers/media/tuners/tda8290.*
17280
17281 TDA8290 MEDIA DRIVER
17282 M:      Michael Krufky <mkrufky@linuxtv.org>
17283 L:      linux-media@vger.kernel.org
17284 S:      Maintained
17285 W:      https://linuxtv.org
17286 W:      http://github.com/mkrufky
17287 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17288 T:      git git://linuxtv.org/mkrufky/tuners.git
17289 F:      drivers/media/tuners/tda8290.*
17290
17291 TDA9840 MEDIA DRIVER
17292 M:      Hans Verkuil <hverkuil@xs4all.nl>
17293 L:      linux-media@vger.kernel.org
17294 S:      Maintained
17295 W:      https://linuxtv.org
17296 T:      git git://linuxtv.org/media_tree.git
17297 F:      drivers/media/i2c/tda9840*
17298
17299 TEA5761 TUNER DRIVER
17300 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17301 L:      linux-media@vger.kernel.org
17302 S:      Odd fixes
17303 W:      https://linuxtv.org
17304 T:      git git://linuxtv.org/media_tree.git
17305 F:      drivers/media/tuners/tea5761.*
17306
17307 TEA5767 TUNER DRIVER
17308 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17309 L:      linux-media@vger.kernel.org
17310 S:      Maintained
17311 W:      https://linuxtv.org
17312 T:      git git://linuxtv.org/media_tree.git
17313 F:      drivers/media/tuners/tea5767.*
17314
17315 TEA6415C MEDIA DRIVER
17316 M:      Hans Verkuil <hverkuil@xs4all.nl>
17317 L:      linux-media@vger.kernel.org
17318 S:      Maintained
17319 W:      https://linuxtv.org
17320 T:      git git://linuxtv.org/media_tree.git
17321 F:      drivers/media/i2c/tea6415c*
17322
17323 TEA6420 MEDIA DRIVER
17324 M:      Hans Verkuil <hverkuil@xs4all.nl>
17325 L:      linux-media@vger.kernel.org
17326 S:      Maintained
17327 W:      https://linuxtv.org
17328 T:      git git://linuxtv.org/media_tree.git
17329 F:      drivers/media/i2c/tea6420*
17330
17331 TEAM DRIVER
17332 M:      Jiri Pirko <jiri@resnulli.us>
17333 L:      netdev@vger.kernel.org
17334 S:      Supported
17335 F:      drivers/net/team/
17336 F:      include/linux/if_team.h
17337 F:      include/uapi/linux/if_team.h
17338
17339 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
17340 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
17341 S:      Maintained
17342 F:      arch/x86/platform/ts5500/
17343
17344 TECHNOTREND USB IR RECEIVER
17345 M:      Sean Young <sean@mess.org>
17346 L:      linux-media@vger.kernel.org
17347 S:      Maintained
17348 F:      drivers/media/rc/ttusbir.c
17349
17350 TECHWELL TW9910 VIDEO DECODER
17351 L:      linux-media@vger.kernel.org
17352 S:      Orphan
17353 F:      drivers/media/i2c/tw9910.c
17354 F:      include/media/i2c/tw9910.h
17355
17356 TEE SUBSYSTEM
17357 M:      Jens Wiklander <jens.wiklander@linaro.org>
17358 L:      op-tee@lists.trustedfirmware.org
17359 S:      Maintained
17360 F:      Documentation/staging/tee.rst
17361 F:      drivers/tee/
17362 F:      include/linux/tee_drv.h
17363 F:      include/uapi/linux/tee.h
17364
17365 TEGRA ARCHITECTURE SUPPORT
17366 M:      Thierry Reding <thierry.reding@gmail.com>
17367 M:      Jonathan Hunter <jonathanh@nvidia.com>
17368 L:      linux-tegra@vger.kernel.org
17369 S:      Supported
17370 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
17371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
17372 N:      [^a-z]tegra
17373
17374 TEGRA CLOCK DRIVER
17375 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
17376 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
17377 S:      Supported
17378 F:      drivers/clk/tegra/
17379
17380 TEGRA DMA DRIVERS
17381 M:      Laxman Dewangan <ldewangan@nvidia.com>
17382 M:      Jon Hunter <jonathanh@nvidia.com>
17383 S:      Supported
17384 F:      drivers/dma/tegra*
17385
17386 TEGRA I2C DRIVER
17387 M:      Laxman Dewangan <ldewangan@nvidia.com>
17388 R:      Dmitry Osipenko <digetx@gmail.com>
17389 S:      Supported
17390 F:      drivers/i2c/busses/i2c-tegra.c
17391
17392 TEGRA IOMMU DRIVERS
17393 M:      Thierry Reding <thierry.reding@gmail.com>
17394 R:      Krishna Reddy <vdumpa@nvidia.com>
17395 L:      linux-tegra@vger.kernel.org
17396 S:      Supported
17397 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
17398 F:      drivers/iommu/tegra*
17399
17400 TEGRA KBC DRIVER
17401 M:      Laxman Dewangan <ldewangan@nvidia.com>
17402 S:      Supported
17403 F:      drivers/input/keyboard/tegra-kbc.c
17404
17405 TEGRA NAND DRIVER
17406 M:      Stefan Agner <stefan@agner.ch>
17407 M:      Lucas Stach <dev@lynxeye.de>
17408 S:      Maintained
17409 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
17410 F:      drivers/mtd/nand/raw/tegra_nand.c
17411
17412 TEGRA PWM DRIVER
17413 M:      Thierry Reding <thierry.reding@gmail.com>
17414 S:      Supported
17415 F:      drivers/pwm/pwm-tegra.c
17416
17417 TEGRA SERIAL DRIVER
17418 M:      Laxman Dewangan <ldewangan@nvidia.com>
17419 S:      Supported
17420 F:      drivers/tty/serial/serial-tegra.c
17421
17422 TEGRA SPI DRIVER
17423 M:      Laxman Dewangan <ldewangan@nvidia.com>
17424 S:      Supported
17425 F:      drivers/spi/spi-tegra*
17426
17427 TEGRA VIDEO DRIVER
17428 M:      Thierry Reding <thierry.reding@gmail.com>
17429 M:      Jonathan Hunter <jonathanh@nvidia.com>
17430 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
17431 L:      linux-media@vger.kernel.org
17432 L:      linux-tegra@vger.kernel.org
17433 S:      Maintained
17434 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
17435 F:      drivers/staging/media/tegra-video/
17436
17437 TEGRA XUSB PADCTL DRIVER
17438 M:      JC Kuo <jckuo@nvidia.com>
17439 S:      Supported
17440 F:      drivers/phy/tegra/xusb*
17441
17442 TEHUTI ETHERNET DRIVER
17443 M:      Andy Gospodarek <andy@greyhouse.net>
17444 L:      netdev@vger.kernel.org
17445 S:      Supported
17446 F:      drivers/net/ethernet/tehuti/*
17447
17448 TELECOM CLOCK DRIVER FOR MCPL0010
17449 M:      Mark Gross <mark.gross@intel.com>
17450 S:      Supported
17451 F:      drivers/char/tlclk.c
17452
17453 TEMPO SEMICONDUCTOR DRIVERS
17454 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
17455 S:      Maintained
17456 F:      Documentation/devicetree/bindings/sound/tscs*.txt
17457 F:      sound/soc/codecs/tscs*.c
17458 F:      sound/soc/codecs/tscs*.h
17459
17460 TENSILICA XTENSA PORT (xtensa)
17461 M:      Chris Zankel <chris@zankel.net>
17462 M:      Max Filippov <jcmvbkbc@gmail.com>
17463 L:      linux-xtensa@linux-xtensa.org
17464 S:      Maintained
17465 T:      git git://github.com/czankel/xtensa-linux.git
17466 F:      arch/xtensa/
17467 F:      drivers/irqchip/irq-xtensa-*
17468
17469 TEXAS INSTRUMENTS ASoC DRIVERS
17470 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
17471 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17472 S:      Maintained
17473 F:      sound/soc/ti/
17474
17475 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
17476 M:      Ricardo Ribalda <ribalda@kernel.org>
17477 L:      linux-iio@vger.kernel.org
17478 S:      Supported
17479 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
17480 F:      drivers/iio/dac/ti-dac7612.c
17481
17482 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
17483 M:      Nishanth Menon <nm@ti.com>
17484 M:      Tero Kristo <t-kristo@ti.com>
17485 M:      Santosh Shilimkar <ssantosh@kernel.org>
17486 L:      linux-arm-kernel@lists.infradead.org
17487 S:      Maintained
17488 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
17489 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
17490 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
17491 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
17492 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
17493 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
17494 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
17495 F:      drivers/clk/keystone/sci-clk.c
17496 F:      drivers/firmware/ti_sci*
17497 F:      drivers/irqchip/irq-ti-sci-inta.c
17498 F:      drivers/irqchip/irq-ti-sci-intr.c
17499 F:      drivers/reset/reset-ti-sci.c
17500 F:      drivers/soc/ti/ti_sci_inta_msi.c
17501 F:      drivers/soc/ti/ti_sci_pm_domains.c
17502 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
17503 F:      include/linux/soc/ti/ti_sci_inta_msi.h
17504 F:      include/linux/soc/ti/ti_sci_protocol.h
17505
17506 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
17507 M:      Hans Verkuil <hverkuil@xs4all.nl>
17508 L:      linux-media@vger.kernel.org
17509 S:      Maintained
17510 W:      https://linuxtv.org
17511 T:      git git://linuxtv.org/media_tree.git
17512 F:      drivers/media/radio/radio-raremono.c
17513
17514 THERMAL
17515 M:      Zhang Rui <rui.zhang@intel.com>
17516 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
17517 R:      Amit Kucheria <amitk@kernel.org>
17518 L:      linux-pm@vger.kernel.org
17519 S:      Supported
17520 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
17522 F:      Documentation/devicetree/bindings/thermal/
17523 F:      drivers/thermal/
17524 F:      include/linux/cpu_cooling.h
17525 F:      include/linux/thermal.h
17526 F:      include/uapi/linux/thermal.h
17527
17528 THERMAL DRIVER FOR AMLOGIC SOCS
17529 M:      Guillaume La Roque <glaroque@baylibre.com>
17530 L:      linux-pm@vger.kernel.org
17531 L:      linux-amlogic@lists.infradead.org
17532 S:      Supported
17533 W:      http://linux-meson.com/
17534 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
17535 F:      drivers/thermal/amlogic_thermal.c
17536
17537 THERMAL/CPU_COOLING
17538 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
17539 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
17540 M:      Viresh Kumar <viresh.kumar@linaro.org>
17541 M:      Javi Merino <javi.merino@kernel.org>
17542 L:      linux-pm@vger.kernel.org
17543 S:      Supported
17544 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
17545 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
17546 F:      drivers/thermal/cpufreq_cooling.c
17547 F:      drivers/thermal/cpuidle_cooling.c
17548 F:      include/linux/cpu_cooling.h
17549
17550 THERMAL/POWER_ALLOCATOR
17551 M:      Lukasz Luba <lukasz.luba@arm.com>
17552 L:      linux-pm@vger.kernel.org
17553 S:      Maintained
17554 F:      Documentation/driver-api/thermal/power_allocator.rst
17555 F:      drivers/thermal/gov_power_allocator.c
17556 F:      include/trace/events/thermal_power_allocator.h
17557
17558 THINKPAD ACPI EXTRAS DRIVER
17559 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
17560 L:      ibm-acpi-devel@lists.sourceforge.net
17561 L:      platform-driver-x86@vger.kernel.org
17562 S:      Maintained
17563 W:      http://ibm-acpi.sourceforge.net
17564 W:      http://thinkwiki.org/wiki/Ibm-acpi
17565 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
17566 F:      drivers/platform/x86/thinkpad_acpi.c
17567
17568 THUNDERBOLT DMA TRAFFIC TEST DRIVER
17569 M:      Isaac Hazan <isaac.hazan@intel.com>
17570 L:      linux-usb@vger.kernel.org
17571 S:      Maintained
17572 F:      drivers/thunderbolt/dma_test.c
17573
17574 THUNDERBOLT DRIVER
17575 M:      Andreas Noever <andreas.noever@gmail.com>
17576 M:      Michael Jamet <michael.jamet@intel.com>
17577 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
17578 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
17579 L:      linux-usb@vger.kernel.org
17580 S:      Maintained
17581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
17582 F:      Documentation/admin-guide/thunderbolt.rst
17583 F:      drivers/thunderbolt/
17584 F:      include/linux/thunderbolt.h
17585
17586 THUNDERBOLT NETWORK DRIVER
17587 M:      Michael Jamet <michael.jamet@intel.com>
17588 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
17589 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
17590 L:      netdev@vger.kernel.org
17591 S:      Maintained
17592 F:      drivers/net/thunderbolt.c
17593
17594 THUNDERX GPIO DRIVER
17595 M:      Robert Richter <rric@kernel.org>
17596 S:      Odd Fixes
17597 F:      drivers/gpio/gpio-thunderx.c
17598
17599 TI AM437X VPFE DRIVER
17600 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17601 L:      linux-media@vger.kernel.org
17602 S:      Maintained
17603 W:      https://linuxtv.org
17604 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17605 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17606 F:      drivers/media/platform/am437x/
17607
17608 TI BANDGAP AND THERMAL DRIVER
17609 M:      Eduardo Valentin <edubezval@gmail.com>
17610 M:      Keerthy <j-keerthy@ti.com>
17611 L:      linux-pm@vger.kernel.org
17612 L:      linux-omap@vger.kernel.org
17613 S:      Maintained
17614 F:      drivers/thermal/ti-soc-thermal/
17615
17616 TI BQ27XXX POWER SUPPLY DRIVER
17617 R:      Dan Murphy <dmurphy@ti.com>
17618 F:      drivers/power/supply/bq27xxx_battery.c
17619 F:      drivers/power/supply/bq27xxx_battery_i2c.c
17620 F:      include/linux/power/bq27xxx_battery.h
17621
17622 TI CDCE706 CLOCK DRIVER
17623 M:      Max Filippov <jcmvbkbc@gmail.com>
17624 S:      Maintained
17625 F:      drivers/clk/clk-cdce706.c
17626
17627 TI CLOCK DRIVER
17628 M:      Tero Kristo <t-kristo@ti.com>
17629 L:      linux-omap@vger.kernel.org
17630 S:      Maintained
17631 F:      drivers/clk/ti/
17632 F:      include/linux/clk/ti.h
17633
17634 TI DAVINCI MACHINE SUPPORT
17635 M:      Sekhar Nori <nsekhar@ti.com>
17636 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
17637 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17638 S:      Supported
17639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
17640 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
17641 F:      arch/arm/boot/dts/da850*
17642 F:      arch/arm/mach-davinci/
17643 F:      drivers/i2c/busses/i2c-davinci.c
17644
17645 TI DAVINCI SERIES CLOCK DRIVER
17646 M:      David Lechner <david@lechnology.com>
17647 R:      Sekhar Nori <nsekhar@ti.com>
17648 S:      Maintained
17649 F:      Documentation/devicetree/bindings/clock/ti/davinci/
17650 F:      drivers/clk/davinci/
17651
17652 TI DAVINCI SERIES GPIO DRIVER
17653 M:      Keerthy <j-keerthy@ti.com>
17654 L:      linux-gpio@vger.kernel.org
17655 S:      Maintained
17656 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
17657 F:      drivers/gpio/gpio-davinci.c
17658
17659 TI DAVINCI SERIES MEDIA DRIVER
17660 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17661 L:      linux-media@vger.kernel.org
17662 S:      Maintained
17663 W:      https://linuxtv.org
17664 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17665 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17666 F:      drivers/media/platform/davinci/
17667 F:      include/media/davinci/
17668
17669 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
17670 R:      David Lechner <david@lechnology.com>
17671 L:      linux-iio@vger.kernel.org
17672 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
17673 F:      drivers/counter/ti-eqep.c
17674
17675 TI ETHERNET SWITCH DRIVER (CPSW)
17676 R:      Grygorii Strashko <grygorii.strashko@ti.com>
17677 L:      linux-omap@vger.kernel.org
17678 L:      netdev@vger.kernel.org
17679 S:      Maintained
17680 F:      drivers/net/ethernet/ti/cpsw*
17681 F:      drivers/net/ethernet/ti/davinci*
17682
17683 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
17684 M:      Alex Dubov <oakad@yahoo.com>
17685 S:      Maintained
17686 W:      http://tifmxx.berlios.de/
17687 F:      drivers/memstick/host/tifm_ms.c
17688 F:      drivers/misc/tifm*
17689 F:      drivers/mmc/host/tifm_sd.c
17690 F:      include/linux/tifm.h
17691
17692 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
17693 M:      Santosh Shilimkar <ssantosh@kernel.org>
17694 L:      linux-kernel@vger.kernel.org
17695 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17696 S:      Maintained
17697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
17698 F:      drivers/soc/ti/*
17699
17700 TI LM49xxx FAMILY ASoC CODEC DRIVERS
17701 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
17702 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
17703 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17704 S:      Maintained
17705 F:      sound/soc/codecs/isabelle*
17706 F:      sound/soc/codecs/lm49453*
17707
17708 TI LP855x BACKLIGHT DRIVER
17709 M:      Milo Kim <milo.kim@ti.com>
17710 S:      Maintained
17711 F:      Documentation/driver-api/backlight/lp855x-driver.rst
17712 F:      drivers/video/backlight/lp855x_bl.c
17713 F:      include/linux/platform_data/lp855x.h
17714
17715 TI LP8727 CHARGER DRIVER
17716 M:      Milo Kim <milo.kim@ti.com>
17717 S:      Maintained
17718 F:      drivers/power/supply/lp8727_charger.c
17719 F:      include/linux/platform_data/lp8727.h
17720
17721 TI LP8788 MFD DRIVER
17722 M:      Milo Kim <milo.kim@ti.com>
17723 S:      Maintained
17724 F:      drivers/iio/adc/lp8788_adc.c
17725 F:      drivers/leds/leds-lp8788.c
17726 F:      drivers/mfd/lp8788*.c
17727 F:      drivers/power/supply/lp8788-charger.c
17728 F:      drivers/regulator/lp8788-*.c
17729 F:      include/linux/mfd/lp8788*.h
17730
17731 TI NETCP ETHERNET DRIVER
17732 M:      Wingman Kwok <w-kwok2@ti.com>
17733 M:      Murali Karicheri <m-karicheri2@ti.com>
17734 L:      netdev@vger.kernel.org
17735 S:      Maintained
17736 F:      drivers/net/ethernet/ti/netcp*
17737
17738 TI PCM3060 ASoC CODEC DRIVER
17739 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
17740 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17741 S:      Maintained
17742 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
17743 F:      sound/soc/codecs/pcm3060*
17744
17745 TI TAS571X FAMILY ASoC CODEC DRIVER
17746 M:      Kevin Cernekee <cernekee@chromium.org>
17747 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17748 S:      Odd Fixes
17749 F:      sound/soc/codecs/tas571x*
17750
17751 TI TCAN4X5X DEVICE DRIVER
17752 M:      Dan Murphy <dmurphy@ti.com>
17753 L:      linux-can@vger.kernel.org
17754 S:      Maintained
17755 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
17756 F:      drivers/net/can/m_can/tcan4x5x.c
17757
17758 TI TRF7970A NFC DRIVER
17759 M:      Mark Greer <mgreer@animalcreek.com>
17760 L:      linux-wireless@vger.kernel.org
17761 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
17762 S:      Supported
17763 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
17764 F:      drivers/nfc/trf7970a.c
17765
17766 TI TWL4030 SERIES SOC CODEC DRIVER
17767 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
17768 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17769 S:      Maintained
17770 F:      sound/soc/codecs/twl4030*
17771
17772 TI VPE/CAL DRIVERS
17773 M:      Benoit Parrot <bparrot@ti.com>
17774 L:      linux-media@vger.kernel.org
17775 S:      Maintained
17776 W:      http://linuxtv.org/
17777 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17778 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
17779 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
17780 F:      drivers/media/platform/ti-vpe/
17781
17782 TI WILINK WIRELESS DRIVERS
17783 L:      linux-wireless@vger.kernel.org
17784 S:      Orphan
17785 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
17786 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
17787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
17788 F:      drivers/net/wireless/ti/
17789 F:      include/linux/wl12xx.h
17790
17791 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
17792 M:      John Stultz <john.stultz@linaro.org>
17793 M:      Thomas Gleixner <tglx@linutronix.de>
17794 R:      Stephen Boyd <sboyd@kernel.org>
17795 L:      linux-kernel@vger.kernel.org
17796 S:      Supported
17797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
17798 F:      include/linux/clocksource.h
17799 F:      include/linux/time.h
17800 F:      include/linux/timex.h
17801 F:      include/uapi/linux/time.h
17802 F:      include/uapi/linux/timex.h
17803 F:      kernel/time/alarmtimer.c
17804 F:      kernel/time/clocksource.c
17805 F:      kernel/time/ntp.c
17806 F:      kernel/time/time*.c
17807 F:      tools/testing/selftests/timers/
17808
17809 TIPC NETWORK LAYER
17810 M:      Jon Maloy <jmaloy@redhat.com>
17811 M:      Ying Xue <ying.xue@windriver.com>
17812 L:      netdev@vger.kernel.org (core kernel code)
17813 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
17814 S:      Maintained
17815 W:      http://tipc.sourceforge.net/
17816 F:      include/uapi/linux/tipc*.h
17817 F:      net/tipc/
17818
17819 TLAN NETWORK DRIVER
17820 M:      Samuel Chessman <chessman@tux.org>
17821 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
17822 S:      Maintained
17823 W:      http://sourceforge.net/projects/tlan/
17824 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
17825 F:      drivers/net/ethernet/ti/tlan.*
17826
17827 TM6000 VIDEO4LINUX DRIVER
17828 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17829 L:      linux-media@vger.kernel.org
17830 S:      Odd fixes
17831 W:      https://linuxtv.org
17832 T:      git git://linuxtv.org/media_tree.git
17833 F:      Documentation/admin-guide/media/tm6000*
17834 F:      drivers/media/usb/tm6000/
17835
17836 TMIO/SDHI MMC DRIVER
17837 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17838 L:      linux-mmc@vger.kernel.org
17839 S:      Supported
17840 F:      drivers/mmc/host/renesas_sdhi*
17841 F:      drivers/mmc/host/tmio_mmc*
17842 F:      include/linux/mfd/tmio.h
17843
17844 TMP401 HARDWARE MONITOR DRIVER
17845 M:      Guenter Roeck <linux@roeck-us.net>
17846 L:      linux-hwmon@vger.kernel.org
17847 S:      Maintained
17848 F:      Documentation/hwmon/tmp401.rst
17849 F:      drivers/hwmon/tmp401.c
17850
17851 TMP513 HARDWARE MONITOR DRIVER
17852 M:      Eric Tremblay <etremblay@distech-controls.com>
17853 L:      linux-hwmon@vger.kernel.org
17854 S:      Maintained
17855 F:      Documentation/hwmon/tmp513.rst
17856 F:      drivers/hwmon/tmp513.c
17857
17858 TMPFS (SHMEM FILESYSTEM)
17859 M:      Hugh Dickins <hughd@google.com>
17860 L:      linux-mm@kvack.org
17861 S:      Maintained
17862 F:      include/linux/shmem_fs.h
17863 F:      mm/shmem.c
17864
17865 TOMOYO SECURITY MODULE
17866 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
17867 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
17868 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
17869 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
17870 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
17871 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
17872 S:      Maintained
17873 W:      https://tomoyo.osdn.jp/
17874 F:      security/tomoyo/
17875
17876 TOPSTAR LAPTOP EXTRAS DRIVER
17877 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17878 L:      platform-driver-x86@vger.kernel.org
17879 S:      Maintained
17880 F:      drivers/platform/x86/topstar-laptop.c
17881
17882 TORTURE-TEST MODULES
17883 M:      Davidlohr Bueso <dave@stgolabs.net>
17884 M:      "Paul E. McKenney" <paulmck@kernel.org>
17885 M:      Josh Triplett <josh@joshtriplett.org>
17886 L:      linux-kernel@vger.kernel.org
17887 S:      Supported
17888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17889 F:      Documentation/RCU/torture.rst
17890 F:      kernel/locking/locktorture.c
17891 F:      kernel/rcu/rcuscale.c
17892 F:      kernel/rcu/rcutorture.c
17893 F:      kernel/rcu/refscale.c
17894 F:      kernel/torture.c
17895
17896 TOSHIBA ACPI EXTRAS 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_acpi.c
17901
17902 TOSHIBA BLUETOOTH 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_bluetooth.c
17907
17908 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17909 M:      Azael Avalos <coproscefalo@gmail.com>
17910 L:      platform-driver-x86@vger.kernel.org
17911 S:      Maintained
17912 F:      drivers/platform/x86/toshiba_haps.c
17913
17914 TOSHIBA SMM DRIVER
17915 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
17916 S:      Maintained
17917 W:      http://www.buzzard.org.uk/toshiba/
17918 F:      drivers/char/toshiba.c
17919 F:      include/linux/toshiba.h
17920 F:      include/uapi/linux/toshiba.h
17921
17922 TOSHIBA TC358743 DRIVER
17923 M:      Mats Randgaard <matrandg@cisco.com>
17924 L:      linux-media@vger.kernel.org
17925 S:      Maintained
17926 F:      drivers/media/i2c/tc358743*
17927 F:      include/media/i2c/tc358743.h
17928
17929 TOSHIBA WMI HOTKEYS DRIVER
17930 M:      Azael Avalos <coproscefalo@gmail.com>
17931 L:      platform-driver-x86@vger.kernel.org
17932 S:      Maintained
17933 F:      drivers/platform/x86/toshiba-wmi.c
17934
17935 TPM DEVICE DRIVER
17936 M:      Peter Huewe <peterhuewe@gmx.de>
17937 M:      Jarkko Sakkinen <jarkko@kernel.org>
17938 R:      Jason Gunthorpe <jgg@ziepe.ca>
17939 L:      linux-integrity@vger.kernel.org
17940 S:      Maintained
17941 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17942 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
17943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
17944 F:      drivers/char/tpm/
17945
17946 TRACING
17947 M:      Steven Rostedt <rostedt@goodmis.org>
17948 M:      Ingo Molnar <mingo@redhat.com>
17949 S:      Maintained
17950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17951 F:      Documentation/trace/ftrace.rst
17952 F:      arch/*/*/*/ftrace.h
17953 F:      arch/*/kernel/ftrace.c
17954 F:      include/*/ftrace.h
17955 F:      include/linux/trace*.h
17956 F:      include/trace/
17957 F:      kernel/trace/
17958 F:      tools/testing/selftests/ftrace/
17959
17960 TRACING MMIO ACCESSES (MMIOTRACE)
17961 M:      Steven Rostedt <rostedt@goodmis.org>
17962 M:      Ingo Molnar <mingo@kernel.org>
17963 R:      Karol Herbst <karolherbst@gmail.com>
17964 R:      Pekka Paalanen <ppaalanen@gmail.com>
17965 L:      linux-kernel@vger.kernel.org
17966 L:      nouveau@lists.freedesktop.org
17967 S:      Maintained
17968 F:      arch/x86/mm/kmmio.c
17969 F:      arch/x86/mm/mmio-mod.c
17970 F:      arch/x86/mm/testmmiotrace.c
17971 F:      include/linux/mmiotrace.h
17972 F:      kernel/trace/trace_mmiotrace.c
17973
17974 TRIVIAL PATCHES
17975 M:      Jiri Kosina <trivial@kernel.org>
17976 S:      Maintained
17977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17978 K:      ^Subject:.*(?i)trivial
17979
17980 TTY LAYER
17981 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17982 M:      Jiri Slaby <jirislaby@kernel.org>
17983 S:      Supported
17984 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17985 F:      Documentation/driver-api/serial/
17986 F:      drivers/tty/
17987 F:      drivers/tty/serial/serial_core.c
17988 F:      include/linux/serial.h
17989 F:      include/linux/serial_core.h
17990 F:      include/linux/tty.h
17991 F:      include/uapi/linux/serial.h
17992 F:      include/uapi/linux/serial_core.h
17993 F:      include/uapi/linux/tty.h
17994
17995 TUA9001 MEDIA DRIVER
17996 M:      Antti Palosaari <crope@iki.fi>
17997 L:      linux-media@vger.kernel.org
17998 S:      Maintained
17999 W:      https://linuxtv.org
18000 W:      http://palosaari.fi/linux/
18001 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18002 T:      git git://linuxtv.org/anttip/media_tree.git
18003 F:      drivers/media/tuners/tua9001*
18004
18005 TULIP NETWORK DRIVERS
18006 L:      netdev@vger.kernel.org
18007 L:      linux-parisc@vger.kernel.org
18008 S:      Orphan
18009 F:      drivers/net/ethernet/dec/tulip/
18010
18011 TUN/TAP driver
18012 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
18013 S:      Maintained
18014 W:      http://vtun.sourceforge.net/tun
18015 F:      Documentation/networking/tuntap.rst
18016 F:      arch/um/os-Linux/drivers/
18017
18018 TURBOCHANNEL SUBSYSTEM
18019 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
18020 M:      Ralf Baechle <ralf@linux-mips.org>
18021 L:      linux-mips@vger.kernel.org
18022 S:      Maintained
18023 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
18024 F:      drivers/tc/
18025 F:      include/linux/tc.h
18026
18027 TURBOSTAT UTILITY
18028 M:      "Len Brown" <lenb@kernel.org>
18029 L:      linux-pm@vger.kernel.org
18030 S:      Supported
18031 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18032 B:      https://bugzilla.kernel.org
18033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
18034 F:      tools/power/x86/turbostat/
18035
18036 TW5864 VIDEO4LINUX DRIVER
18037 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18038 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18039 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
18040 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18041 L:      linux-media@vger.kernel.org
18042 S:      Supported
18043 F:      drivers/media/pci/tw5864/
18044
18045 TW68 VIDEO4LINUX DRIVER
18046 M:      Hans Verkuil <hverkuil@xs4all.nl>
18047 L:      linux-media@vger.kernel.org
18048 S:      Odd Fixes
18049 W:      https://linuxtv.org
18050 T:      git git://linuxtv.org/media_tree.git
18051 F:      drivers/media/pci/tw68/
18052
18053 TW686X VIDEO4LINUX DRIVER
18054 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18055 L:      linux-media@vger.kernel.org
18056 S:      Maintained
18057 W:      http://linuxtv.org
18058 T:      git git://linuxtv.org/media_tree.git
18059 F:      drivers/media/pci/tw686x/
18060
18061 UACCE ACCELERATOR FRAMEWORK
18062 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
18063 M:      Zhou Wang <wangzhou1@hisilicon.com>
18064 L:      linux-accelerators@lists.ozlabs.org
18065 L:      linux-kernel@vger.kernel.org
18066 S:      Maintained
18067 F:      Documentation/ABI/testing/sysfs-driver-uacce
18068 F:      Documentation/misc-devices/uacce.rst
18069 F:      drivers/misc/uacce/
18070 F:      include/linux/uacce.h
18071 F:      include/uapi/misc/uacce/
18072
18073 UBI FILE SYSTEM (UBIFS)
18074 M:      Richard Weinberger <richard@nod.at>
18075 L:      linux-mtd@lists.infradead.org
18076 S:      Supported
18077 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
18078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18080 F:      Documentation/filesystems/ubifs-authentication.rst
18081 F:      Documentation/filesystems/ubifs.rst
18082 F:      fs/ubifs/
18083
18084 UCLINUX (M68KNOMMU AND COLDFIRE)
18085 M:      Greg Ungerer <gerg@linux-m68k.org>
18086 L:      linux-m68k@lists.linux-m68k.org
18087 L:      uclinux-dev@uclinux.org  (subscribers-only)
18088 S:      Maintained
18089 W:      http://www.linux-m68k.org/
18090 W:      http://www.uclinux.org/
18091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
18092 F:      arch/m68k/*/*_no.*
18093 F:      arch/m68k/68*/
18094 F:      arch/m68k/coldfire/
18095 F:      arch/m68k/include/asm/*_no.*
18096
18097 UDF FILESYSTEM
18098 M:      Jan Kara <jack@suse.com>
18099 S:      Maintained
18100 F:      Documentation/filesystems/udf.rst
18101 F:      fs/udf/
18102
18103 UDRAW TABLET
18104 M:      Bastien Nocera <hadess@hadess.net>
18105 L:      linux-input@vger.kernel.org
18106 S:      Maintained
18107 F:      drivers/hid/hid-udraw-ps3.c
18108
18109 UFS FILESYSTEM
18110 M:      Evgeniy Dushistov <dushistov@mail.ru>
18111 S:      Maintained
18112 F:      Documentation/admin-guide/ufs.rst
18113 F:      fs/ufs/
18114
18115 UHID USERSPACE HID IO DRIVER
18116 M:      David Rheinsberg <david.rheinsberg@gmail.com>
18117 L:      linux-input@vger.kernel.org
18118 S:      Maintained
18119 F:      drivers/hid/uhid.c
18120 F:      include/uapi/linux/uhid.h
18121
18122 ULPI BUS
18123 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18124 L:      linux-usb@vger.kernel.org
18125 S:      Maintained
18126 F:      drivers/usb/common/ulpi.c
18127 F:      include/linux/ulpi/
18128
18129 UNICODE SUBSYSTEM
18130 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
18131 L:      linux-fsdevel@vger.kernel.org
18132 S:      Supported
18133 F:      fs/unicode/
18134
18135 UNIFDEF
18136 M:      Tony Finch <dot@dotat.at>
18137 S:      Maintained
18138 W:      http://dotat.at/prog/unifdef
18139 F:      scripts/unifdef.c
18140
18141 UNIFORM CDROM DRIVER
18142 M:      Jens Axboe <axboe@kernel.dk>
18143 S:      Maintained
18144 W:      http://www.kernel.dk
18145 F:      Documentation/cdrom/
18146 F:      drivers/cdrom/cdrom.c
18147 F:      include/linux/cdrom.h
18148 F:      include/uapi/linux/cdrom.h
18149
18150 UNISYS S-PAR DRIVERS
18151 M:      David Kershner <david.kershner@unisys.com>
18152 L:      sparmaintainer@unisys.com (Unisys internal)
18153 S:      Supported
18154 F:      drivers/staging/unisys/
18155 F:      drivers/visorbus/
18156 F:      include/linux/visorbus.h
18157
18158 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
18159 R:      Alim Akhtar <alim.akhtar@samsung.com>
18160 R:      Avri Altman <avri.altman@wdc.com>
18161 L:      linux-scsi@vger.kernel.org
18162 S:      Supported
18163 F:      Documentation/scsi/ufs.rst
18164 F:      drivers/scsi/ufs/
18165
18166 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
18167 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
18168 L:      linux-scsi@vger.kernel.org
18169 S:      Supported
18170 F:      drivers/scsi/ufs/*dwc*
18171
18172 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
18173 M:      Stanley Chu <stanley.chu@mediatek.com>
18174 L:      linux-scsi@vger.kernel.org
18175 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
18176 S:      Maintained
18177 F:      drivers/scsi/ufs/ufs-mediatek*
18178
18179 UNSORTED BLOCK IMAGES (UBI)
18180 M:      Richard Weinberger <richard@nod.at>
18181 L:      linux-mtd@lists.infradead.org
18182 S:      Supported
18183 W:      http://www.linux-mtd.infradead.org/
18184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18186 F:      drivers/mtd/ubi/
18187 F:      include/linux/mtd/ubi.h
18188 F:      include/uapi/mtd/ubi-user.h
18189
18190 USB "USBNET" DRIVER FRAMEWORK
18191 M:      Oliver Neukum <oneukum@suse.com>
18192 L:      netdev@vger.kernel.org
18193 S:      Maintained
18194 W:      http://www.linux-usb.org/usbnet
18195 F:      drivers/net/usb/usbnet.c
18196 F:      include/linux/usb/usbnet.h
18197
18198 USB ACM DRIVER
18199 M:      Oliver Neukum <oneukum@suse.com>
18200 L:      linux-usb@vger.kernel.org
18201 S:      Maintained
18202 F:      Documentation/usb/acm.rst
18203 F:      drivers/usb/class/cdc-acm.*
18204
18205 USB APPLE MFI FASTCHARGE DRIVER
18206 M:      Bastien Nocera <hadess@hadess.net>
18207 L:      linux-usb@vger.kernel.org
18208 S:      Maintained
18209 F:      drivers/usb/misc/apple-mfi-fastcharge.c
18210
18211 USB AR5523 WIRELESS DRIVER
18212 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
18213 L:      linux-wireless@vger.kernel.org
18214 S:      Maintained
18215 F:      drivers/net/wireless/ath/ar5523/
18216
18217 USB ATTACHED SCSI
18218 M:      Oliver Neukum <oneukum@suse.com>
18219 L:      linux-usb@vger.kernel.org
18220 L:      linux-scsi@vger.kernel.org
18221 S:      Maintained
18222 F:      drivers/usb/storage/uas.c
18223
18224 USB CDC ETHERNET DRIVER
18225 M:      Oliver Neukum <oliver@neukum.org>
18226 L:      linux-usb@vger.kernel.org
18227 S:      Maintained
18228 F:      drivers/net/usb/cdc_*.c
18229 F:      include/uapi/linux/usb/cdc.h
18230
18231 USB CHAOSKEY DRIVER
18232 M:      Keith Packard <keithp@keithp.com>
18233 L:      linux-usb@vger.kernel.org
18234 S:      Maintained
18235 F:      drivers/usb/misc/chaoskey.c
18236
18237 USB CYPRESS C67X00 DRIVER
18238 M:      Peter Korsgaard <jacmet@sunsite.dk>
18239 L:      linux-usb@vger.kernel.org
18240 S:      Maintained
18241 F:      drivers/usb/c67x00/
18242
18243 USB DAVICOM DM9601 DRIVER
18244 M:      Peter Korsgaard <jacmet@sunsite.dk>
18245 L:      netdev@vger.kernel.org
18246 S:      Maintained
18247 W:      http://www.linux-usb.org/usbnet
18248 F:      drivers/net/usb/dm9601.c
18249
18250 USB EHCI DRIVER
18251 M:      Alan Stern <stern@rowland.harvard.edu>
18252 L:      linux-usb@vger.kernel.org
18253 S:      Maintained
18254 F:      Documentation/usb/ehci.rst
18255 F:      drivers/usb/host/ehci*
18256
18257 USB GADGET/PERIPHERAL SUBSYSTEM
18258 M:      Felipe Balbi <balbi@kernel.org>
18259 L:      linux-usb@vger.kernel.org
18260 S:      Maintained
18261 W:      http://www.linux-usb.org/gadget
18262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18263 F:      drivers/usb/gadget/
18264 F:      include/linux/usb/gadget*
18265
18266 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
18267 M:      Jiri Kosina <jikos@kernel.org>
18268 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
18269 L:      linux-usb@vger.kernel.org
18270 S:      Maintained
18271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
18272 F:      Documentation/hid/hiddev.rst
18273 F:      drivers/hid/usbhid/
18274
18275 USB INTEL XHCI ROLE MUX DRIVER
18276 M:      Hans de Goede <hdegoede@redhat.com>
18277 L:      linux-usb@vger.kernel.org
18278 S:      Maintained
18279 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
18280
18281 USB IP DRIVER FOR HISILICON KIRIN
18282 M:      Yu Chen <chenyu56@huawei.com>
18283 M:      Binghui Wang <wangbinghui@hisilicon.com>
18284 L:      linux-usb@vger.kernel.org
18285 S:      Maintained
18286 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
18287 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
18288
18289 USB ISP116X DRIVER
18290 M:      Olav Kongas <ok@artecdesign.ee>
18291 L:      linux-usb@vger.kernel.org
18292 S:      Maintained
18293 F:      drivers/usb/host/isp116x*
18294 F:      include/linux/usb/isp116x.h
18295
18296 USB LAN78XX ETHERNET DRIVER
18297 M:      Woojung Huh <woojung.huh@microchip.com>
18298 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
18299 L:      netdev@vger.kernel.org
18300 S:      Maintained
18301 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
18302 F:      drivers/net/usb/lan78xx.*
18303 F:      include/dt-bindings/net/microchip-lan78xx.h
18304
18305 USB MASS STORAGE DRIVER
18306 M:      Alan Stern <stern@rowland.harvard.edu>
18307 L:      linux-usb@vger.kernel.org
18308 L:      usb-storage@lists.one-eyed-alien.net
18309 S:      Maintained
18310 F:      drivers/usb/storage/
18311
18312 USB MIDI DRIVER
18313 M:      Clemens Ladisch <clemens@ladisch.de>
18314 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18315 S:      Maintained
18316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18317 F:      sound/usb/midi.*
18318
18319 USB NETWORKING DRIVERS
18320 L:      linux-usb@vger.kernel.org
18321 S:      Odd Fixes
18322 F:      drivers/net/usb/
18323
18324 USB OHCI DRIVER
18325 M:      Alan Stern <stern@rowland.harvard.edu>
18326 L:      linux-usb@vger.kernel.org
18327 S:      Maintained
18328 F:      Documentation/usb/ohci.rst
18329 F:      drivers/usb/host/ohci*
18330
18331 USB OTG FSM (Finite State Machine)
18332 M:      Peter Chen <Peter.Chen@nxp.com>
18333 L:      linux-usb@vger.kernel.org
18334 S:      Maintained
18335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
18336 F:      drivers/usb/common/usb-otg-fsm.c
18337
18338 USB OVER IP DRIVER
18339 M:      Valentina Manea <valentina.manea.m@gmail.com>
18340 M:      Shuah Khan <shuah@kernel.org>
18341 M:      Shuah Khan <skhan@linuxfoundation.org>
18342 L:      linux-usb@vger.kernel.org
18343 S:      Maintained
18344 F:      Documentation/usb/usbip_protocol.rst
18345 F:      drivers/usb/usbip/
18346 F:      tools/testing/selftests/drivers/usb/usbip/
18347 F:      tools/usb/usbip/
18348
18349 USB PEGASUS DRIVER
18350 M:      Petko Manolov <petkan@nucleusys.com>
18351 L:      linux-usb@vger.kernel.org
18352 L:      netdev@vger.kernel.org
18353 S:      Maintained
18354 W:      https://github.com/petkan/pegasus
18355 T:      git git://github.com/petkan/pegasus.git
18356 F:      drivers/net/usb/pegasus.*
18357
18358 USB PHY LAYER
18359 M:      Felipe Balbi <balbi@kernel.org>
18360 L:      linux-usb@vger.kernel.org
18361 S:      Maintained
18362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18363 F:      drivers/usb/phy/
18364
18365 USB PRINTER DRIVER (usblp)
18366 M:      Pete Zaitcev <zaitcev@redhat.com>
18367 L:      linux-usb@vger.kernel.org
18368 S:      Supported
18369 F:      drivers/usb/class/usblp.c
18370
18371 USB RAW GADGET DRIVER
18372 R:      Andrey Konovalov <andreyknvl@gmail.com>
18373 L:      linux-usb@vger.kernel.org
18374 S:      Maintained
18375 F:      Documentation/usb/raw-gadget.rst
18376 F:      drivers/usb/gadget/legacy/raw_gadget.c
18377 F:      include/uapi/linux/usb/raw_gadget.h
18378
18379 USB QMI WWAN NETWORK DRIVER
18380 M:      Bjørn Mork <bjorn@mork.no>
18381 L:      netdev@vger.kernel.org
18382 S:      Maintained
18383 F:      Documentation/ABI/testing/sysfs-class-net-qmi
18384 F:      drivers/net/usb/qmi_wwan.c
18385
18386 USB RTL8150 DRIVER
18387 M:      Petko Manolov <petkan@nucleusys.com>
18388 L:      linux-usb@vger.kernel.org
18389 L:      netdev@vger.kernel.org
18390 S:      Maintained
18391 W:      https://github.com/petkan/rtl8150
18392 T:      git git://github.com/petkan/rtl8150.git
18393 F:      drivers/net/usb/rtl8150.c
18394
18395 USB SERIAL SUBSYSTEM
18396 M:      Johan Hovold <johan@kernel.org>
18397 L:      linux-usb@vger.kernel.org
18398 S:      Maintained
18399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
18400 F:      Documentation/usb/usb-serial.rst
18401 F:      drivers/usb/serial/
18402 F:      include/linux/usb/serial.h
18403
18404 USB SMSC75XX ETHERNET DRIVER
18405 M:      Steve Glendinning <steve.glendinning@shawell.net>
18406 L:      netdev@vger.kernel.org
18407 S:      Maintained
18408 F:      drivers/net/usb/smsc75xx.*
18409
18410 USB SMSC95XX ETHERNET DRIVER
18411 M:      Steve Glendinning <steve.glendinning@shawell.net>
18412 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
18413 L:      netdev@vger.kernel.org
18414 S:      Maintained
18415 F:      drivers/net/usb/smsc95xx.*
18416
18417 USB SUBSYSTEM
18418 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18419 L:      linux-usb@vger.kernel.org
18420 S:      Supported
18421 W:      http://www.linux-usb.org
18422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
18423 F:      Documentation/devicetree/bindings/usb/
18424 F:      Documentation/usb/
18425 F:      drivers/usb/
18426 F:      include/linux/usb.h
18427 F:      include/linux/usb/
18428
18429 USB TYPEC BUS FOR ALTERNATE MODES
18430 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18431 L:      linux-usb@vger.kernel.org
18432 S:      Maintained
18433 F:      Documentation/ABI/testing/sysfs-bus-typec
18434 F:      Documentation/driver-api/usb/typec_bus.rst
18435 F:      drivers/usb/typec/altmodes/
18436 F:      include/linux/usb/typec_altmode.h
18437
18438 USB TYPEC CLASS
18439 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18440 L:      linux-usb@vger.kernel.org
18441 S:      Maintained
18442 F:      Documentation/ABI/testing/sysfs-class-typec
18443 F:      Documentation/driver-api/usb/typec.rst
18444 F:      drivers/usb/typec/
18445 F:      include/linux/usb/typec.h
18446
18447 USB TYPEC INTEL PMC MUX DRIVER
18448 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18449 L:      linux-usb@vger.kernel.org
18450 S:      Maintained
18451 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
18452 F:      drivers/usb/typec/mux/intel_pmc_mux.c
18453
18454 USB TYPEC PI3USB30532 MUX DRIVER
18455 M:      Hans de Goede <hdegoede@redhat.com>
18456 L:      linux-usb@vger.kernel.org
18457 S:      Maintained
18458 F:      drivers/usb/typec/mux/pi3usb30532.c
18459
18460 USB TYPEC PORT CONTROLLER DRIVERS
18461 M:      Guenter Roeck <linux@roeck-us.net>
18462 L:      linux-usb@vger.kernel.org
18463 S:      Maintained
18464 F:      drivers/usb/typec/tcpm/
18465
18466 USB UHCI DRIVER
18467 M:      Alan Stern <stern@rowland.harvard.edu>
18468 L:      linux-usb@vger.kernel.org
18469 S:      Maintained
18470 F:      drivers/usb/host/uhci*
18471
18472 USB VIDEO CLASS
18473 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18474 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
18475 L:      linux-media@vger.kernel.org
18476 S:      Maintained
18477 W:      http://www.ideasonboard.org/uvc/
18478 T:      git git://linuxtv.org/media_tree.git
18479 F:      drivers/media/usb/uvc/
18480 F:      include/uapi/linux/uvcvideo.h
18481
18482 USB WEBCAM GADGET
18483 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18484 L:      linux-usb@vger.kernel.org
18485 S:      Maintained
18486 F:      drivers/usb/gadget/function/*uvc*
18487 F:      drivers/usb/gadget/legacy/webcam.c
18488 F:      include/uapi/linux/usb/g_uvc.h
18489
18490 USB WIRELESS RNDIS DRIVER (rndis_wlan)
18491 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
18492 L:      linux-wireless@vger.kernel.org
18493 S:      Maintained
18494 F:      drivers/net/wireless/rndis_wlan.c
18495
18496 USB XHCI DRIVER
18497 M:      Mathias Nyman <mathias.nyman@intel.com>
18498 L:      linux-usb@vger.kernel.org
18499 S:      Supported
18500 F:      drivers/usb/host/pci-quirks*
18501 F:      drivers/usb/host/xhci*
18502
18503 USB ZD1201 DRIVER
18504 L:      linux-wireless@vger.kernel.org
18505 S:      Orphan
18506 W:      http://linux-lc100020.sourceforge.net
18507 F:      drivers/net/wireless/zydas/zd1201.*
18508
18509 USB ZR364XX DRIVER
18510 M:      Antoine Jacquet <royale@zerezo.com>
18511 L:      linux-usb@vger.kernel.org
18512 L:      linux-media@vger.kernel.org
18513 S:      Maintained
18514 W:      http://royale.zerezo.com/zr364xx/
18515 T:      git git://linuxtv.org/media_tree.git
18516 F:      Documentation/admin-guide/media/zr364xx*
18517 F:      drivers/media/usb/zr364xx/
18518
18519 USER-MODE LINUX (UML)
18520 M:      Jeff Dike <jdike@addtoit.com>
18521 M:      Richard Weinberger <richard@nod.at>
18522 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
18523 L:      linux-um@lists.infradead.org
18524 S:      Maintained
18525 W:      http://user-mode-linux.sourceforge.net
18526 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
18527 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
18528 F:      Documentation/virt/uml/
18529 F:      arch/um/
18530 F:      arch/x86/um/
18531 F:      fs/hostfs/
18532
18533 USERSPACE COPYIN/COPYOUT (UIOVEC)
18534 M:      Alexander Viro <viro@zeniv.linux.org.uk>
18535 S:      Maintained
18536 F:      include/linux/uio.h
18537 F:      lib/iov_iter.c
18538
18539 USERSPACE DMA BUFFER DRIVER
18540 M:      Gerd Hoffmann <kraxel@redhat.com>
18541 L:      dri-devel@lists.freedesktop.org
18542 S:      Maintained
18543 T:      git git://anongit.freedesktop.org/drm/drm-misc
18544 F:      drivers/dma-buf/udmabuf.c
18545 F:      include/uapi/linux/udmabuf.h
18546
18547 USERSPACE I/O (UIO)
18548 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18549 S:      Maintained
18550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18551 F:      Documentation/driver-api/uio-howto.rst
18552 F:      drivers/uio/
18553 F:      include/linux/uio_driver.h
18554
18555 UTIL-LINUX PACKAGE
18556 M:      Karel Zak <kzak@redhat.com>
18557 L:      util-linux@vger.kernel.org
18558 S:      Maintained
18559 W:      http://en.wikipedia.org/wiki/Util-linux
18560 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
18561
18562 UUID HELPERS
18563 M:      Christoph Hellwig <hch@lst.de>
18564 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18565 L:      linux-kernel@vger.kernel.org
18566 S:      Maintained
18567 T:      git git://git.infradead.org/users/hch/uuid.git
18568 F:      include/linux/uuid.h
18569 F:      include/uapi/linux/uuid.h
18570 F:      lib/test_uuid.c
18571 F:      lib/uuid.c
18572
18573 UV SYSFS DRIVER
18574 M:      Justin Ernst <justin.ernst@hpe.com>
18575 L:      platform-driver-x86@vger.kernel.org
18576 S:      Maintained
18577 F:      drivers/platform/x86/uv_sysfs.c
18578
18579 UVESAFB DRIVER
18580 M:      Michal Januszewski <spock@gentoo.org>
18581 L:      linux-fbdev@vger.kernel.org
18582 S:      Maintained
18583 W:      https://github.com/mjanusz/v86d
18584 F:      Documentation/fb/uvesafb.rst
18585 F:      drivers/video/fbdev/uvesafb.*
18586
18587 Ux500 CLOCK DRIVERS
18588 M:      Ulf Hansson <ulf.hansson@linaro.org>
18589 L:      linux-clk@vger.kernel.org
18590 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18591 S:      Maintained
18592 F:      drivers/clk/ux500/
18593
18594 VF610 NAND DRIVER
18595 M:      Stefan Agner <stefan@agner.ch>
18596 L:      linux-mtd@lists.infradead.org
18597 S:      Supported
18598 F:      drivers/mtd/nand/raw/vf610_nfc.c
18599
18600 VFAT/FAT/MSDOS FILESYSTEM
18601 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
18602 S:      Maintained
18603 F:      Documentation/filesystems/vfat.rst
18604 F:      fs/fat/
18605
18606 VFIO DRIVER
18607 M:      Alex Williamson <alex.williamson@redhat.com>
18608 R:      Cornelia Huck <cohuck@redhat.com>
18609 L:      kvm@vger.kernel.org
18610 S:      Maintained
18611 T:      git git://github.com/awilliam/linux-vfio.git
18612 F:      Documentation/driver-api/vfio.rst
18613 F:      drivers/vfio/
18614 F:      include/linux/vfio.h
18615 F:      include/uapi/linux/vfio.h
18616
18617 VFIO FSL-MC DRIVER
18618 M:      Diana Craciun <diana.craciun@oss.nxp.com>
18619 L:      kvm@vger.kernel.org
18620 S:      Maintained
18621 F:      drivers/vfio/fsl-mc/
18622
18623 VFIO MEDIATED DEVICE DRIVERS
18624 M:      Kirti Wankhede <kwankhede@nvidia.com>
18625 L:      kvm@vger.kernel.org
18626 S:      Maintained
18627 F:      Documentation/driver-api/vfio-mediated-device.rst
18628 F:      drivers/vfio/mdev/
18629 F:      include/linux/mdev.h
18630 F:      samples/vfio-mdev/
18631
18632 VFIO PLATFORM DRIVER
18633 M:      Eric Auger <eric.auger@redhat.com>
18634 L:      kvm@vger.kernel.org
18635 S:      Maintained
18636 F:      drivers/vfio/platform/
18637
18638 VGA_SWITCHEROO
18639 R:      Lukas Wunner <lukas@wunner.de>
18640 S:      Maintained
18641 T:      git git://anongit.freedesktop.org/drm/drm-misc
18642 F:      Documentation/gpu/vga-switcheroo.rst
18643 F:      drivers/gpu/vga/vga_switcheroo.c
18644 F:      include/linux/vga_switcheroo.h
18645
18646 VIA RHINE NETWORK DRIVER
18647 S:      Maintained
18648 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
18649 F:      drivers/net/ethernet/via/via-rhine.c
18650
18651 VIA SD/MMC CARD CONTROLLER DRIVER
18652 M:      Bruce Chang <brucechang@via.com.tw>
18653 M:      Harald Welte <HaraldWelte@viatech.com>
18654 S:      Maintained
18655 F:      drivers/mmc/host/via-sdmmc.c
18656
18657 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
18658 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
18659 L:      linux-fbdev@vger.kernel.org
18660 S:      Maintained
18661 F:      drivers/video/fbdev/via/
18662 F:      include/linux/via-core.h
18663 F:      include/linux/via-gpio.h
18664 F:      include/linux/via_i2c.h
18665
18666 VIA VELOCITY NETWORK DRIVER
18667 M:      Francois Romieu <romieu@fr.zoreil.com>
18668 L:      netdev@vger.kernel.org
18669 S:      Maintained
18670 F:      drivers/net/ethernet/via/via-velocity.*
18671
18672 VICODEC VIRTUAL CODEC DRIVER
18673 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
18674 L:      linux-media@vger.kernel.org
18675 S:      Maintained
18676 W:      https://linuxtv.org
18677 T:      git git://linuxtv.org/media_tree.git
18678 F:      drivers/media/test-drivers/vicodec/*
18679
18680 VIDEO I2C POLLING DRIVER
18681 M:      Matt Ranostay <matt.ranostay@konsulko.com>
18682 L:      linux-media@vger.kernel.org
18683 S:      Maintained
18684 F:      drivers/media/i2c/video-i2c.c
18685
18686 VIDEO MULTIPLEXER DRIVER
18687 M:      Philipp Zabel <p.zabel@pengutronix.de>
18688 L:      linux-media@vger.kernel.org
18689 S:      Maintained
18690 F:      drivers/media/platform/video-mux.c
18691
18692 VIDEOBUF2 FRAMEWORK
18693 M:      Tomasz Figa <tfiga@chromium.org>
18694 M:      Marek Szyprowski <m.szyprowski@samsung.com>
18695 L:      linux-media@vger.kernel.org
18696 S:      Maintained
18697 F:      drivers/media/common/videobuf2/*
18698 F:      include/media/videobuf2-*
18699
18700 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
18701 M:      Helen Koike <helen.koike@collabora.com>
18702 R:      Shuah Khan <skhan@linuxfoundation.org>
18703 L:      linux-media@vger.kernel.org
18704 S:      Maintained
18705 W:      https://linuxtv.org
18706 T:      git git://linuxtv.org/media_tree.git
18707 F:      drivers/media/test-drivers/vimc/*
18708
18709 VIRT LIB
18710 M:      Alex Williamson <alex.williamson@redhat.com>
18711 M:      Paolo Bonzini <pbonzini@redhat.com>
18712 L:      kvm@vger.kernel.org
18713 S:      Supported
18714 F:      virt/lib/
18715
18716 VIRTIO AND VHOST VSOCK DRIVER
18717 M:      Stefan Hajnoczi <stefanha@redhat.com>
18718 M:      Stefano Garzarella <sgarzare@redhat.com>
18719 L:      kvm@vger.kernel.org
18720 L:      virtualization@lists.linux-foundation.org
18721 L:      netdev@vger.kernel.org
18722 S:      Maintained
18723 F:      drivers/net/vsockmon.c
18724 F:      drivers/vhost/vsock.c
18725 F:      include/linux/virtio_vsock.h
18726 F:      include/uapi/linux/virtio_vsock.h
18727 F:      include/uapi/linux/vm_sockets_diag.h
18728 F:      include/uapi/linux/vsockmon.h
18729 F:      net/vmw_vsock/af_vsock_tap.c
18730 F:      net/vmw_vsock/diag.c
18731 F:      net/vmw_vsock/virtio_transport.c
18732 F:      net/vmw_vsock/virtio_transport_common.c
18733 F:      net/vmw_vsock/vsock_loopback.c
18734 F:      tools/testing/vsock/
18735
18736 VIRTIO BLOCK AND SCSI DRIVERS
18737 M:      "Michael S. Tsirkin" <mst@redhat.com>
18738 M:      Jason Wang <jasowang@redhat.com>
18739 R:      Paolo Bonzini <pbonzini@redhat.com>
18740 R:      Stefan Hajnoczi <stefanha@redhat.com>
18741 L:      virtualization@lists.linux-foundation.org
18742 S:      Maintained
18743 F:      drivers/block/virtio_blk.c
18744 F:      drivers/scsi/virtio_scsi.c
18745 F:      drivers/vhost/scsi.c
18746 F:      include/uapi/linux/virtio_blk.h
18747 F:      include/uapi/linux/virtio_scsi.h
18748
18749 VIRTIO CONSOLE DRIVER
18750 M:      Amit Shah <amit@kernel.org>
18751 L:      virtualization@lists.linux-foundation.org
18752 S:      Maintained
18753 F:      drivers/char/virtio_console.c
18754 F:      include/linux/virtio_console.h
18755 F:      include/uapi/linux/virtio_console.h
18756
18757 VIRTIO CORE AND NET DRIVERS
18758 M:      "Michael S. Tsirkin" <mst@redhat.com>
18759 M:      Jason Wang <jasowang@redhat.com>
18760 L:      virtualization@lists.linux-foundation.org
18761 S:      Maintained
18762 F:      Documentation/devicetree/bindings/virtio/
18763 F:      drivers/block/virtio_blk.c
18764 F:      drivers/crypto/virtio/
18765 F:      drivers/net/virtio_net.c
18766 F:      drivers/vdpa/
18767 F:      drivers/virtio/
18768 F:      include/linux/vdpa.h
18769 F:      include/linux/virtio*.h
18770 F:      include/uapi/linux/virtio_*.h
18771 F:      tools/virtio/
18772
18773 VIRTIO BALLOON
18774 M:      "Michael S. Tsirkin" <mst@redhat.com>
18775 M:      David Hildenbrand <david@redhat.com>
18776 L:      virtualization@lists.linux-foundation.org
18777 S:      Maintained
18778 F:      drivers/virtio/virtio_balloon.c
18779 F:      include/uapi/linux/virtio_balloon.h
18780 F:      include/linux/balloon_compaction.h
18781 F:      mm/balloon_compaction.c
18782
18783 VIRTIO CRYPTO DRIVER
18784 M:      Gonglei <arei.gonglei@huawei.com>
18785 L:      virtualization@lists.linux-foundation.org
18786 L:      linux-crypto@vger.kernel.org
18787 S:      Maintained
18788 F:      drivers/crypto/virtio/
18789 F:      include/uapi/linux/virtio_crypto.h
18790
18791 VIRTIO DRIVERS FOR S390
18792 M:      Cornelia Huck <cohuck@redhat.com>
18793 M:      Halil Pasic <pasic@linux.ibm.com>
18794 L:      linux-s390@vger.kernel.org
18795 L:      virtualization@lists.linux-foundation.org
18796 L:      kvm@vger.kernel.org
18797 S:      Supported
18798 F:      arch/s390/include/uapi/asm/virtio-ccw.h
18799 F:      drivers/s390/virtio/
18800
18801 VIRTIO FILE SYSTEM
18802 M:      Vivek Goyal <vgoyal@redhat.com>
18803 M:      Stefan Hajnoczi <stefanha@redhat.com>
18804 M:      Miklos Szeredi <miklos@szeredi.hu>
18805 L:      virtualization@lists.linux-foundation.org
18806 L:      linux-fsdevel@vger.kernel.org
18807 S:      Supported
18808 W:      https://virtio-fs.gitlab.io/
18809 F:      Documentation/filesystems/virtiofs.rst
18810 F:      fs/fuse/virtio_fs.c
18811 F:      include/uapi/linux/virtio_fs.h
18812
18813 VIRTIO GPU DRIVER
18814 M:      David Airlie <airlied@linux.ie>
18815 M:      Gerd Hoffmann <kraxel@redhat.com>
18816 L:      dri-devel@lists.freedesktop.org
18817 L:      virtualization@lists.linux-foundation.org
18818 S:      Maintained
18819 T:      git git://anongit.freedesktop.org/drm/drm-misc
18820 F:      drivers/gpu/drm/virtio/
18821 F:      include/uapi/linux/virtio_gpu.h
18822
18823 VIRTIO HOST (VHOST)
18824 M:      "Michael S. Tsirkin" <mst@redhat.com>
18825 M:      Jason Wang <jasowang@redhat.com>
18826 L:      kvm@vger.kernel.org
18827 L:      virtualization@lists.linux-foundation.org
18828 L:      netdev@vger.kernel.org
18829 S:      Maintained
18830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
18831 F:      drivers/vhost/
18832 F:      include/linux/vhost_iotlb.h
18833 F:      include/uapi/linux/vhost.h
18834
18835 VIRTIO INPUT DRIVER
18836 M:      Gerd Hoffmann <kraxel@redhat.com>
18837 S:      Maintained
18838 F:      drivers/virtio/virtio_input.c
18839 F:      include/uapi/linux/virtio_input.h
18840
18841 VIRTIO IOMMU DRIVER
18842 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
18843 L:      virtualization@lists.linux-foundation.org
18844 S:      Maintained
18845 F:      drivers/iommu/virtio-iommu.c
18846 F:      include/uapi/linux/virtio_iommu.h
18847
18848 VIRTIO MEM DRIVER
18849 M:      David Hildenbrand <david@redhat.com>
18850 L:      virtualization@lists.linux-foundation.org
18851 S:      Maintained
18852 W:      https://virtio-mem.gitlab.io/
18853 F:      drivers/virtio/virtio_mem.c
18854 F:      include/uapi/linux/virtio_mem.h
18855
18856 VIRTUAL BOX GUEST DEVICE DRIVER
18857 M:      Hans de Goede <hdegoede@redhat.com>
18858 M:      Arnd Bergmann <arnd@arndb.de>
18859 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18860 S:      Maintained
18861 F:      drivers/virt/vboxguest/
18862 F:      include/linux/vbox_utils.h
18863 F:      include/uapi/linux/vbox*.h
18864
18865 VIRTUAL BOX SHARED FOLDER VFS DRIVER
18866 M:      Hans de Goede <hdegoede@redhat.com>
18867 L:      linux-fsdevel@vger.kernel.org
18868 S:      Maintained
18869 F:      fs/vboxsf/*
18870
18871 VIRTUAL SERIO DEVICE DRIVER
18872 M:      Stephen Chandler Paul <thatslyude@gmail.com>
18873 S:      Maintained
18874 F:      drivers/input/serio/userio.c
18875 F:      include/uapi/linux/userio.h
18876
18877 VIVID VIRTUAL VIDEO DRIVER
18878 M:      Hans Verkuil <hverkuil@xs4all.nl>
18879 L:      linux-media@vger.kernel.org
18880 S:      Maintained
18881 W:      https://linuxtv.org
18882 T:      git git://linuxtv.org/media_tree.git
18883 F:      drivers/media/test-drivers/vivid/*
18884
18885 VIDTV VIRTUAL DIGITAL TV DRIVER
18886 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
18887 L:      linux-media@vger.kernel.org
18888 S:      Maintained
18889 W:      https://linuxtv.org
18890 T:      git git://linuxtv.org/media_tree.git
18891 F:      drivers/media/test-drivers/vidtv/*
18892
18893 VLYNQ BUS
18894 M:      Florian Fainelli <f.fainelli@gmail.com>
18895 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
18896 S:      Maintained
18897 F:      drivers/vlynq/vlynq.c
18898 F:      include/linux/vlynq.h
18899
18900 VME SUBSYSTEM
18901 M:      Martyn Welch <martyn@welchs.me.uk>
18902 M:      Manohar Vanga <manohar.vanga@gmail.com>
18903 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18904 L:      devel@driverdev.osuosl.org
18905 S:      Maintained
18906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18907 F:      Documentation/driver-api/vme.rst
18908 F:      drivers/staging/vme/
18909 F:      drivers/vme/
18910 F:      include/linux/vme*
18911
18912 VMWARE BALLOON DRIVER
18913 M:      Nadav Amit <namit@vmware.com>
18914 M:      "VMware, Inc." <pv-drivers@vmware.com>
18915 L:      linux-kernel@vger.kernel.org
18916 S:      Maintained
18917 F:      drivers/misc/vmw_balloon.c
18918
18919 VMWARE HYPERVISOR INTERFACE
18920 M:      Deep Shah <sdeep@vmware.com>
18921 M:      "VMware, Inc." <pv-drivers@vmware.com>
18922 L:      virtualization@lists.linux-foundation.org
18923 S:      Supported
18924 F:      arch/x86/include/asm/vmware.h
18925 F:      arch/x86/kernel/cpu/vmware.c
18926
18927 VMWARE PVRDMA DRIVER
18928 M:      Adit Ranadive <aditr@vmware.com>
18929 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18930 L:      linux-rdma@vger.kernel.org
18931 S:      Maintained
18932 F:      drivers/infiniband/hw/vmw_pvrdma/
18933
18934 VMware PVSCSI driver
18935 M:      Jim Gill <jgill@vmware.com>
18936 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18937 L:      linux-scsi@vger.kernel.org
18938 S:      Maintained
18939 F:      drivers/scsi/vmw_pvscsi.c
18940 F:      drivers/scsi/vmw_pvscsi.h
18941
18942 VMWARE VIRTUAL PTP CLOCK DRIVER
18943 M:      Vivek Thampi <vithampi@vmware.com>
18944 M:      "VMware, Inc." <pv-drivers@vmware.com>
18945 L:      netdev@vger.kernel.org
18946 S:      Supported
18947 F:      drivers/ptp/ptp_vmw.c
18948
18949 VMWARE VMMOUSE SUBDRIVER
18950 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
18951 M:      "VMware, Inc." <pv-drivers@vmware.com>
18952 L:      linux-input@vger.kernel.org
18953 S:      Maintained
18954 F:      drivers/input/mouse/vmmouse.c
18955 F:      drivers/input/mouse/vmmouse.h
18956
18957 VMWARE VMXNET3 ETHERNET DRIVER
18958 M:      Ronak Doshi <doshir@vmware.com>
18959 M:      "VMware, Inc." <pv-drivers@vmware.com>
18960 L:      netdev@vger.kernel.org
18961 S:      Maintained
18962 F:      drivers/net/vmxnet3/
18963
18964 VOCORE VOCORE2 BOARD
18965 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
18966 L:      linux-mips@vger.kernel.org
18967 S:      Maintained
18968 F:      arch/mips/boot/dts/ralink/vocore2.dts
18969
18970 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18971 M:      Liam Girdwood <lgirdwood@gmail.com>
18972 M:      Mark Brown <broonie@kernel.org>
18973 L:      linux-kernel@vger.kernel.org
18974 S:      Supported
18975 W:      http://www.slimlogic.co.uk/?p=48
18976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18977 F:      Documentation/devicetree/bindings/regulator/
18978 F:      Documentation/power/regulator/
18979 F:      drivers/regulator/
18980 F:      include/dt-bindings/regulator/
18981 F:      include/linux/regulator/
18982 K:      regulator_get_optional
18983
18984 VRF
18985 M:      David Ahern <dsahern@kernel.org>
18986 M:      Shrijeet Mukherjee <shrijeet@gmail.com>
18987 L:      netdev@vger.kernel.org
18988 S:      Maintained
18989 F:      Documentation/networking/vrf.rst
18990 F:      drivers/net/vrf.c
18991
18992 VSPRINTF
18993 M:      Petr Mladek <pmladek@suse.com>
18994 M:      Steven Rostedt <rostedt@goodmis.org>
18995 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
18996 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18997 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
18998 S:      Maintained
18999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
19000 F:      Documentation/core-api/printk-formats.rst
19001 F:      lib/test_printf.c
19002 F:      lib/vsprintf.c
19003
19004 VT1211 HARDWARE MONITOR DRIVER
19005 M:      Juerg Haefliger <juergh@gmail.com>
19006 L:      linux-hwmon@vger.kernel.org
19007 S:      Maintained
19008 F:      Documentation/hwmon/vt1211.rst
19009 F:      drivers/hwmon/vt1211.c
19010
19011 VT8231 HARDWARE MONITOR DRIVER
19012 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
19013 L:      linux-hwmon@vger.kernel.org
19014 S:      Maintained
19015 F:      drivers/hwmon/vt8231.c
19016
19017 VUB300 USB to SDIO/SD/MMC bridge chip
19018 L:      linux-mmc@vger.kernel.org
19019 S:      Orphan
19020 F:      drivers/mmc/host/vub300.c
19021
19022 W1 DALLAS'S 1-WIRE BUS
19023 M:      Evgeniy Polyakov <zbr@ioremap.net>
19024 S:      Maintained
19025 F:      Documentation/devicetree/bindings/w1/
19026 F:      Documentation/w1/
19027 F:      drivers/w1/
19028 F:      include/linux/w1.h
19029
19030 W83791D HARDWARE MONITORING DRIVER
19031 M:      Marc Hulsman <m.hulsman@tudelft.nl>
19032 L:      linux-hwmon@vger.kernel.org
19033 S:      Maintained
19034 F:      Documentation/hwmon/w83791d.rst
19035 F:      drivers/hwmon/w83791d.c
19036
19037 W83793 HARDWARE MONITORING DRIVER
19038 M:      Rudolf Marek <r.marek@assembler.cz>
19039 L:      linux-hwmon@vger.kernel.org
19040 S:      Maintained
19041 F:      Documentation/hwmon/w83793.rst
19042 F:      drivers/hwmon/w83793.c
19043
19044 W83795 HARDWARE MONITORING DRIVER
19045 M:      Jean Delvare <jdelvare@suse.com>
19046 L:      linux-hwmon@vger.kernel.org
19047 S:      Maintained
19048 F:      drivers/hwmon/w83795.c
19049
19050 W83L51xD SD/MMC CARD INTERFACE DRIVER
19051 M:      Pierre Ossman <pierre@ossman.eu>
19052 S:      Maintained
19053 F:      drivers/mmc/host/wbsd.*
19054
19055 WACOM PROTOCOL 4 SERIAL TABLETS
19056 M:      Julian Squires <julian@cipht.net>
19057 M:      Hans de Goede <hdegoede@redhat.com>
19058 L:      linux-input@vger.kernel.org
19059 S:      Maintained
19060 F:      drivers/input/tablet/wacom_serial4.c
19061
19062 WATCHDOG DEVICE DRIVERS
19063 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
19064 M:      Guenter Roeck <linux@roeck-us.net>
19065 L:      linux-watchdog@vger.kernel.org
19066 S:      Maintained
19067 W:      http://www.linux-watchdog.org/
19068 T:      git git://www.linux-watchdog.org/linux-watchdog.git
19069 F:      Documentation/devicetree/bindings/watchdog/
19070 F:      Documentation/watchdog/
19071 F:      drivers/watchdog/
19072 F:      include/linux/watchdog.h
19073 F:      include/uapi/linux/watchdog.h
19074
19075 WHISKEYCOVE PMIC GPIO DRIVER
19076 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
19077 L:      linux-gpio@vger.kernel.org
19078 S:      Maintained
19079 F:      drivers/gpio/gpio-wcove.c
19080
19081 WHWAVE RTC DRIVER
19082 M:      Dianlong Li <long17.cool@163.com>
19083 L:      linux-rtc@vger.kernel.org
19084 S:      Maintained
19085 F:      drivers/rtc/rtc-sd3078.c
19086
19087 WIIMOTE HID DRIVER
19088 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19089 L:      linux-input@vger.kernel.org
19090 S:      Maintained
19091 F:      drivers/hid/hid-wiimote*
19092
19093 WILOCITY WIL6210 WIRELESS DRIVER
19094 M:      Maya Erez <merez@codeaurora.org>
19095 L:      linux-wireless@vger.kernel.org
19096 L:      wil6210@qti.qualcomm.com
19097 S:      Supported
19098 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
19099 F:      drivers/net/wireless/ath/wil6210/
19100
19101 WINBOND CIR DRIVER
19102 M:      David Härdeman <david@hardeman.nu>
19103 S:      Maintained
19104 F:      drivers/media/rc/winbond-cir.c
19105
19106 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
19107 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
19108 L:      linux-watchdog@vger.kernel.org
19109 S:      Maintained
19110 F:      drivers/watchdog/ebc-c384_wdt.c
19111
19112 WINSYSTEMS WS16C48 GPIO DRIVER
19113 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
19114 L:      linux-gpio@vger.kernel.org
19115 S:      Maintained
19116 F:      drivers/gpio/gpio-ws16c48.c
19117
19118 WIREGUARD SECURE NETWORK TUNNEL
19119 M:      Jason A. Donenfeld <Jason@zx2c4.com>
19120 L:      wireguard@lists.zx2c4.com
19121 L:      netdev@vger.kernel.org
19122 S:      Maintained
19123 F:      drivers/net/wireguard/
19124 F:      tools/testing/selftests/wireguard/
19125
19126 WISTRON LAPTOP BUTTON DRIVER
19127 M:      Miloslav Trmac <mitr@volny.cz>
19128 S:      Maintained
19129 F:      drivers/input/misc/wistron_btns.c
19130
19131 WL3501 WIRELESS PCMCIA CARD DRIVER
19132 L:      linux-wireless@vger.kernel.org
19133 S:      Odd fixes
19134 F:      drivers/net/wireless/wl3501*
19135
19136 WOLFSON MICROELECTRONICS DRIVERS
19137 L:      patches@opensource.cirrus.com
19138 S:      Supported
19139 W:      https://github.com/CirrusLogic/linux-drivers/wiki
19140 T:      git https://github.com/CirrusLogic/linux-drivers.git
19141 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
19142 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
19143 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
19144 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
19145 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
19146 F:      Documentation/hwmon/wm83??.rst
19147 F:      arch/arm/mach-s3c/mach-crag6410*
19148 F:      drivers/clk/clk-wm83*.c
19149 F:      drivers/extcon/extcon-arizona.c
19150 F:      drivers/gpio/gpio-*wm*.c
19151 F:      drivers/gpio/gpio-arizona.c
19152 F:      drivers/hwmon/wm83??-hwmon.c
19153 F:      drivers/input/misc/wm831x-on.c
19154 F:      drivers/input/touchscreen/wm831x-ts.c
19155 F:      drivers/input/touchscreen/wm97*.c
19156 F:      drivers/leds/leds-wm83*.c
19157 F:      drivers/mfd/arizona*
19158 F:      drivers/mfd/cs47l24*
19159 F:      drivers/mfd/wm*.c
19160 F:      drivers/power/supply/wm83*.c
19161 F:      drivers/regulator/arizona*
19162 F:      drivers/regulator/wm8*.c
19163 F:      drivers/rtc/rtc-wm83*.c
19164 F:      drivers/video/backlight/wm83*_bl.c
19165 F:      drivers/watchdog/wm83*_wdt.c
19166 F:      include/linux/mfd/arizona/
19167 F:      include/linux/mfd/wm831x/
19168 F:      include/linux/mfd/wm8350/
19169 F:      include/linux/mfd/wm8400*
19170 F:      include/linux/regulator/arizona*
19171 F:      include/linux/wm97xx.h
19172 F:      include/sound/wm????.h
19173 F:      sound/soc/codecs/arizona.?
19174 F:      sound/soc/codecs/cs47l24*
19175 F:      sound/soc/codecs/wm*
19176
19177 WORKQUEUE
19178 M:      Tejun Heo <tj@kernel.org>
19179 R:      Lai Jiangshan <jiangshanlai@gmail.com>
19180 S:      Maintained
19181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
19182 F:      Documentation/core-api/workqueue.rst
19183 F:      include/linux/workqueue.h
19184 F:      kernel/workqueue.c
19185
19186 X-POWERS AXP288 PMIC DRIVERS
19187 M:      Hans de Goede <hdegoede@redhat.com>
19188 S:      Maintained
19189 F:      drivers/acpi/pmic/intel_pmic_xpower.c
19190 N:      axp288
19191
19192 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
19193 M:      Chen-Yu Tsai <wens@csie.org>
19194 L:      linux-kernel@vger.kernel.org
19195 S:      Maintained
19196 N:      axp[128]
19197
19198 X.25 STACK
19199 M:      Martin Schiller <ms@dev.tdt.de>
19200 L:      linux-x25@vger.kernel.org
19201 S:      Maintained
19202 F:      Documentation/networking/lapb-module.rst
19203 F:      Documentation/networking/x25*
19204 F:      drivers/net/wan/hdlc_x25.c
19205 F:      drivers/net/wan/lapbether.c
19206 F:      include/*/lapb.h
19207 F:      include/net/x25*
19208 F:      include/uapi/linux/x25.h
19209 F:      net/lapb/
19210 F:      net/x25/
19211
19212 X86 ARCHITECTURE (32-BIT AND 64-BIT)
19213 M:      Thomas Gleixner <tglx@linutronix.de>
19214 M:      Ingo Molnar <mingo@redhat.com>
19215 M:      Borislav Petkov <bp@alien8.de>
19216 M:      x86@kernel.org
19217 R:      "H. Peter Anvin" <hpa@zytor.com>
19218 L:      linux-kernel@vger.kernel.org
19219 S:      Maintained
19220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19221 F:      Documentation/devicetree/bindings/x86/
19222 F:      Documentation/x86/
19223 F:      arch/x86/
19224
19225 X86 ENTRY CODE
19226 M:      Andy Lutomirski <luto@kernel.org>
19227 L:      linux-kernel@vger.kernel.org
19228 S:      Maintained
19229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
19230 F:      arch/x86/entry/
19231
19232 X86 MCE INFRASTRUCTURE
19233 M:      Tony Luck <tony.luck@intel.com>
19234 M:      Borislav Petkov <bp@alien8.de>
19235 L:      linux-edac@vger.kernel.org
19236 S:      Maintained
19237 F:      arch/x86/kernel/cpu/mce/*
19238
19239 X86 MICROCODE UPDATE SUPPORT
19240 M:      Borislav Petkov <bp@alien8.de>
19241 S:      Maintained
19242 F:      arch/x86/kernel/cpu/microcode/*
19243
19244 X86 MM
19245 M:      Dave Hansen <dave.hansen@linux.intel.com>
19246 M:      Andy Lutomirski <luto@kernel.org>
19247 M:      Peter Zijlstra <peterz@infradead.org>
19248 L:      linux-kernel@vger.kernel.org
19249 S:      Maintained
19250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
19251 F:      arch/x86/mm/
19252
19253 X86 PLATFORM DRIVERS
19254 M:      Hans de Goede <hdegoede@redhat.com>
19255 M:      Mark Gross <mgross@linux.intel.com>
19256 L:      platform-driver-x86@vger.kernel.org
19257 S:      Maintained
19258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
19259 F:      drivers/platform/olpc/
19260 F:      drivers/platform/x86/
19261
19262 X86 PLATFORM DRIVERS - ARCH
19263 R:      Darren Hart <dvhart@infradead.org>
19264 R:      Andy Shevchenko <andy@infradead.org>
19265 L:      platform-driver-x86@vger.kernel.org
19266 L:      x86@kernel.org
19267 S:      Maintained
19268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19269 F:      arch/x86/platform
19270
19271 X86 PLATFORM UV HPE SUPERDOME FLEX
19272 M:      Steve Wahl <steve.wahl@hpe.com>
19273 R:      Mike Travis <mike.travis@hpe.com>
19274 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
19275 R:      Russ Anderson <russ.anderson@hpe.com>
19276 S:      Supported
19277 F:      arch/x86/include/asm/uv/
19278 F:      arch/x86/kernel/apic/x2apic_uv_x.c
19279 F:      arch/x86/platform/uv/
19280
19281 X86 VDSO
19282 M:      Andy Lutomirski <luto@kernel.org>
19283 L:      linux-kernel@vger.kernel.org
19284 S:      Maintained
19285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
19286 F:      arch/x86/entry/vdso/
19287
19288 XARRAY
19289 M:      Matthew Wilcox <willy@infradead.org>
19290 L:      linux-fsdevel@vger.kernel.org
19291 S:      Supported
19292 F:      Documentation/core-api/xarray.rst
19293 F:      include/linux/idr.h
19294 F:      include/linux/xarray.h
19295 F:      lib/idr.c
19296 F:      lib/xarray.c
19297 F:      tools/testing/radix-tree
19298
19299 XBOX DVD IR REMOTE
19300 M:      Benjamin Valentin <benpicco@googlemail.com>
19301 S:      Maintained
19302 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
19303 F:      drivers/media/rc/xbox_remote.c
19304
19305 XC2028/3028 TUNER DRIVER
19306 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19307 L:      linux-media@vger.kernel.org
19308 S:      Maintained
19309 W:      https://linuxtv.org
19310 T:      git git://linuxtv.org/media_tree.git
19311 F:      drivers/media/tuners/tuner-xc2028.*
19312
19313 XDP (eXpress Data Path)
19314 M:      Alexei Starovoitov <ast@kernel.org>
19315 M:      Daniel Borkmann <daniel@iogearbox.net>
19316 M:      David S. Miller <davem@davemloft.net>
19317 M:      Jakub Kicinski <kuba@kernel.org>
19318 M:      Jesper Dangaard Brouer <hawk@kernel.org>
19319 M:      John Fastabend <john.fastabend@gmail.com>
19320 L:      netdev@vger.kernel.org
19321 L:      bpf@vger.kernel.org
19322 S:      Supported
19323 F:      include/net/xdp.h
19324 F:      include/net/xdp_priv.h
19325 F:      include/trace/events/xdp.h
19326 F:      kernel/bpf/cpumap.c
19327 F:      kernel/bpf/devmap.c
19328 F:      net/core/xdp.c
19329 F:      samples/bpf/xdp*
19330 F:      tools/testing/selftests/bpf/*xdp*
19331 F:      tools/testing/selftests/bpf/*/*xdp*
19332 F:      drivers/net/ethernet/*/*/*/*/*xdp*
19333 F:      drivers/net/ethernet/*/*/*xdp*
19334 K:      (?:\b|_)xdp(?:\b|_)
19335
19336 XDP SOCKETS (AF_XDP)
19337 M:      Björn Töpel <bjorn.topel@intel.com>
19338 M:      Magnus Karlsson <magnus.karlsson@intel.com>
19339 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
19340 L:      netdev@vger.kernel.org
19341 L:      bpf@vger.kernel.org
19342 S:      Maintained
19343 F:      Documentation/networking/af_xdp.rst
19344 F:      include/net/xdp_sock*
19345 F:      include/net/xsk_buff_pool.h
19346 F:      include/uapi/linux/if_xdp.h
19347 F:      include/uapi/linux/xdp_diag.h
19348 F:      include/net/netns/xdp.h
19349 F:      net/xdp/
19350 F:      samples/bpf/xdpsock*
19351 F:      tools/lib/bpf/xsk*
19352
19353 XEN BLOCK SUBSYSTEM
19354 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19355 M:      Roger Pau Monné <roger.pau@citrix.com>
19356 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19357 S:      Supported
19358 F:      drivers/block/xen*
19359 F:      drivers/block/xen-blkback/*
19360
19361 XEN HYPERVISOR ARM
19362 M:      Stefano Stabellini <sstabellini@kernel.org>
19363 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19364 S:      Maintained
19365 F:      arch/arm/include/asm/xen/
19366 F:      arch/arm/xen/
19367
19368 XEN HYPERVISOR ARM64
19369 M:      Stefano Stabellini <sstabellini@kernel.org>
19370 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19371 S:      Maintained
19372 F:      arch/arm64/include/asm/xen/
19373 F:      arch/arm64/xen/
19374
19375 XEN HYPERVISOR INTERFACE
19376 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
19377 M:      Juergen Gross <jgross@suse.com>
19378 R:      Stefano Stabellini <sstabellini@kernel.org>
19379 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19380 S:      Supported
19381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
19382 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
19383 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
19384 F:      arch/x86/include/asm/pvclock-abi.h
19385 F:      arch/x86/include/asm/xen/
19386 F:      arch/x86/platform/pvh/
19387 F:      arch/x86/xen/
19388 F:      drivers/*/xen-*front.c
19389 F:      drivers/xen/
19390 F:      include/uapi/xen/
19391 F:      include/xen/
19392
19393 XEN NETWORK BACKEND DRIVER
19394 M:      Wei Liu <wei.liu@kernel.org>
19395 M:      Paul Durrant <paul@xen.org>
19396 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19397 L:      netdev@vger.kernel.org
19398 S:      Supported
19399 F:      drivers/net/xen-netback/*
19400
19401 XEN PCI SUBSYSTEM
19402 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19403 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19404 S:      Supported
19405 F:      arch/x86/pci/*xen*
19406 F:      drivers/pci/*xen*
19407
19408 XEN PVSCSI DRIVERS
19409 M:      Juergen Gross <jgross@suse.com>
19410 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19411 L:      linux-scsi@vger.kernel.org
19412 S:      Supported
19413 F:      drivers/scsi/xen-scsifront.c
19414 F:      drivers/xen/xen-scsiback.c
19415 F:      include/xen/interface/io/vscsiif.h
19416
19417 XEN SOUND FRONTEND DRIVER
19418 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
19419 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19420 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19421 S:      Supported
19422 F:      sound/xen/*
19423
19424 XEN SWIOTLB SUBSYSTEM
19425 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19426 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19427 L:      iommu@lists.linux-foundation.org
19428 S:      Supported
19429 F:      arch/x86/xen/*swiotlb*
19430 F:      drivers/xen/*swiotlb*
19431
19432 XFS FILESYSTEM
19433 M:      Darrick J. Wong <darrick.wong@oracle.com>
19434 M:      linux-xfs@vger.kernel.org
19435 L:      linux-xfs@vger.kernel.org
19436 S:      Supported
19437 W:      http://xfs.org/
19438 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
19439 F:      Documentation/ABI/testing/sysfs-fs-xfs
19440 F:      Documentation/admin-guide/xfs.rst
19441 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
19442 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
19443 F:      fs/xfs/
19444 F:      include/uapi/linux/dqblk_xfs.h
19445 F:      include/uapi/linux/fsmap.h
19446
19447 XILINX AXI ETHERNET DRIVER
19448 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
19449 S:      Maintained
19450 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
19451
19452 XILINX CAN DRIVER
19453 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
19454 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
19455 L:      linux-can@vger.kernel.org
19456 S:      Maintained
19457 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
19458 F:      drivers/net/can/xilinx_can.c
19459
19460 XILINX SD-FEC IP CORES
19461 M:      Derek Kiernan <derek.kiernan@xilinx.com>
19462 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
19463 S:      Maintained
19464 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
19465 F:      Documentation/misc-devices/xilinx_sdfec.rst
19466 F:      drivers/misc/Kconfig
19467 F:      drivers/misc/Makefile
19468 F:      drivers/misc/xilinx_sdfec.c
19469 F:      include/uapi/misc/xilinx_sdfec.h
19470
19471 XILINX UARTLITE SERIAL DRIVER
19472 M:      Peter Korsgaard <jacmet@sunsite.dk>
19473 L:      linux-serial@vger.kernel.org
19474 S:      Maintained
19475 F:      drivers/tty/serial/uartlite.c
19476
19477 XILINX VIDEO IP CORES
19478 M:      Hyun Kwon <hyun.kwon@xilinx.com>
19479 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19480 L:      linux-media@vger.kernel.org
19481 S:      Supported
19482 T:      git git://linuxtv.org/media_tree.git
19483 F:      Documentation/devicetree/bindings/media/xilinx/
19484 F:      drivers/media/platform/xilinx/
19485 F:      include/uapi/linux/xilinx-v4l2-controls.h
19486
19487 XILINX ZYNQMP DPDMA DRIVER
19488 M:      Hyun Kwon <hyun.kwon@xilinx.com>
19489 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19490 L:      dmaengine@vger.kernel.org
19491 S:      Supported
19492 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
19493 F:      drivers/dma/xilinx/xilinx_dpdma.c
19494 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
19495
19496 XILINX ZYNQMP PSGTR PHY DRIVER
19497 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
19498 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19499 L:      linux-kernel@vger.kernel.org
19500 S:      Supported
19501 T:      git https://github.com/Xilinx/linux-xlnx.git
19502 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
19503 F:      drivers/phy/xilinx/phy-zynqmp.c
19504
19505 XILLYBUS DRIVER
19506 M:      Eli Billauer <eli.billauer@gmail.com>
19507 L:      linux-kernel@vger.kernel.org
19508 S:      Supported
19509 F:      drivers/char/xillybus/
19510
19511 XLP9XX I2C DRIVER
19512 M:      George Cherian <gcherian@marvell.com>
19513 L:      linux-i2c@vger.kernel.org
19514 S:      Supported
19515 W:      http://www.marvell.com
19516 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
19517 F:      drivers/i2c/busses/i2c-xlp9xx.c
19518
19519 XRA1403 GPIO EXPANDER
19520 M:      Nandor Han <nandor.han@ge.com>
19521 M:      Semi Malinen <semi.malinen@ge.com>
19522 L:      linux-gpio@vger.kernel.org
19523 S:      Maintained
19524 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
19525 F:      drivers/gpio/gpio-xra1403.c
19526
19527 XTENSA XTFPGA PLATFORM SUPPORT
19528 M:      Max Filippov <jcmvbkbc@gmail.com>
19529 L:      linux-xtensa@linux-xtensa.org
19530 S:      Maintained
19531 F:      drivers/spi/spi-xtensa-xtfpga.c
19532 F:      sound/soc/xtensa/xtfpga-i2s.c
19533
19534 YAM DRIVER FOR AX.25
19535 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
19536 L:      linux-hams@vger.kernel.org
19537 S:      Maintained
19538 F:      drivers/net/hamradio/yam*
19539 F:      include/linux/yam.h
19540
19541 YAMA SECURITY MODULE
19542 M:      Kees Cook <keescook@chromium.org>
19543 S:      Supported
19544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
19545 F:      Documentation/admin-guide/LSM/Yama.rst
19546 F:      security/yama/
19547
19548 YEALINK PHONE DRIVER
19549 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
19550 L:      usbb2k-api-dev@nongnu.org
19551 S:      Maintained
19552 F:      Documentation/input/devices/yealink.rst
19553 F:      drivers/input/misc/yealink.*
19554
19555 Z8530 DRIVER FOR AX.25
19556 M:      Joerg Reuter <jreuter@yaina.de>
19557 L:      linux-hams@vger.kernel.org
19558 S:      Maintained
19559 W:      http://yaina.de/jreuter/
19560 W:      http://www.qsl.net/dl1bke/
19561 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
19562 F:      drivers/net/hamradio/*scc.c
19563 F:      drivers/net/hamradio/z8530.h
19564
19565 ZBUD COMPRESSED PAGE ALLOCATOR
19566 M:      Seth Jennings <sjenning@redhat.com>
19567 M:      Dan Streetman <ddstreet@ieee.org>
19568 L:      linux-mm@kvack.org
19569 S:      Maintained
19570 F:      include/linux/zbud.h
19571 F:      mm/zbud.c
19572
19573 ZD1211RW WIRELESS DRIVER
19574 M:      Daniel Drake <dsd@gentoo.org>
19575 M:      Ulrich Kunitz <kune@deine-taler.de>
19576 L:      linux-wireless@vger.kernel.org
19577 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
19578 S:      Maintained
19579 W:      http://zd1211.ath.cx/wiki/DriverRewrite
19580 F:      drivers/net/wireless/zydas/zd1211rw/
19581
19582 ZD1301 MEDIA DRIVER
19583 M:      Antti Palosaari <crope@iki.fi>
19584 L:      linux-media@vger.kernel.org
19585 S:      Maintained
19586 W:      https://linuxtv.org/
19587 W:      http://palosaari.fi/linux/
19588 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19589 F:      drivers/media/usb/dvb-usb-v2/zd1301*
19590
19591 ZD1301_DEMOD MEDIA DRIVER
19592 M:      Antti Palosaari <crope@iki.fi>
19593 L:      linux-media@vger.kernel.org
19594 S:      Maintained
19595 W:      https://linuxtv.org/
19596 W:      http://palosaari.fi/linux/
19597 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19598 F:      drivers/media/dvb-frontends/zd1301_demod*
19599
19600 ZHAOXIN PROCESSOR SUPPORT
19601 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
19602 L:      linux-kernel@vger.kernel.org
19603 S:      Maintained
19604 F:      arch/x86/kernel/cpu/zhaoxin.c
19605
19606 ZONEFS FILESYSTEM
19607 M:      Damien Le Moal <damien.lemoal@wdc.com>
19608 M:      Naohiro Aota <naohiro.aota@wdc.com>
19609 R:      Johannes Thumshirn <jth@kernel.org>
19610 L:      linux-fsdevel@vger.kernel.org
19611 S:      Maintained
19612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
19613 F:      Documentation/filesystems/zonefs.rst
19614 F:      fs/zonefs/
19615
19616 ZPOOL COMPRESSED PAGE STORAGE API
19617 M:      Dan Streetman <ddstreet@ieee.org>
19618 L:      linux-mm@kvack.org
19619 S:      Maintained
19620 F:      include/linux/zpool.h
19621 F:      mm/zpool.c
19622
19623 ZR36067 VIDEO FOR LINUX DRIVER
19624 M:      Corentin Labbe <clabbe@baylibre.com>
19625 L:      mjpeg-users@lists.sourceforge.net
19626 L:      linux-media@vger.kernel.org
19627 S:      Maintained
19628 W:      http://mjpeg.sourceforge.net/driver-zoran/
19629 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19630 F:      Documentation/driver-api/media/drivers/zoran.rst
19631 F:      drivers/staging/media/zoran/
19632
19633 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
19634 M:      Minchan Kim <minchan@kernel.org>
19635 M:      Nitin Gupta <ngupta@vflare.org>
19636 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19637 L:      linux-kernel@vger.kernel.org
19638 S:      Maintained
19639 F:      Documentation/admin-guide/blockdev/zram.rst
19640 F:      drivers/block/zram/
19641
19642 ZS DECSTATION Z85C30 SERIAL DRIVER
19643 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
19644 S:      Maintained
19645 F:      drivers/tty/serial/zs.*
19646
19647 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
19648 M:      Minchan Kim <minchan@kernel.org>
19649 M:      Nitin Gupta <ngupta@vflare.org>
19650 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19651 L:      linux-mm@kvack.org
19652 S:      Maintained
19653 F:      Documentation/vm/zsmalloc.rst
19654 F:      include/linux/zsmalloc.h
19655 F:      mm/zsmalloc.c
19656
19657 ZSWAP COMPRESSED SWAP CACHING
19658 M:      Seth Jennings <sjenning@redhat.com>
19659 M:      Dan Streetman <ddstreet@ieee.org>
19660 M:      Vitaly Wool <vitaly.wool@konsulko.com>
19661 L:      linux-mm@kvack.org
19662 S:      Maintained
19663 F:      mm/zswap.c
19664
19665 THE REST
19666 M:      Linus Torvalds <torvalds@linux-foundation.org>
19667 L:      linux-kernel@vger.kernel.org
19668 S:      Buried alive in reporters
19669 Q:      http://patchwork.kernel.org/project/LKML/list/
19670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
19671 F:      *
19672 F:      */