Merge tag 'devicetree-for-5.11' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-microblaze.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L:      linux-bluetooth@vger.kernel.org
176 L:      linux-wpan@vger.kernel.org
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L:      linux-hams@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <johannes@sipsolutions.net>
190 L:      linux-wireless@vger.kernel.org
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
207 M:      Heiner Kallweit <hkallweit1@gmail.com>
208 L:      netdev@vger.kernel.org
209 S:      Maintained
210 F:      drivers/net/ethernet/realtek/r8169*
211
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
214 L:      linux-serial@vger.kernel.org
215 S:      Maintained
216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F:      drivers/tty/serial/8250*
218 F:      include/linux/serial_8250.h
219
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L:      netdev@vger.kernel.org
222 S:      Orphan / Obsolete
223 F:      drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M:      Eric Van Hensbergen <ericvh@gmail.com>
227 M:      Latchesar Ionkov <lucho@ionkov.net>
228 M:      Dominique Martinet <asmadeus@codewreck.org>
229 L:      v9fs-developer@lists.sourceforge.net
230 S:      Maintained
231 W:      http://swik.net/v9fs
232 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T:      git git://github.com/martinetd/linux.git
235 F:      Documentation/filesystems/9p.rst
236 F:      fs/9p/
237 F:      include/net/9p/
238 F:      include/trace/events/9p.h
239 F:      include/uapi/linux/virtio_9p.h
240 F:      net/9p/
241
242 A8293 MEDIA DRIVER
243 M:      Antti Palosaari <crope@iki.fi>
244 L:      linux-media@vger.kernel.org
245 S:      Maintained
246 W:      https://linuxtv.org
247 W:      http://palosaari.fi/linux/
248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
249 T:      git git://linuxtv.org/anttip/media_tree.git
250 F:      drivers/media/dvb-frontends/a8293*
251
252 AACRAID SCSI RAID DRIVER
253 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
254 L:      linux-scsi@vger.kernel.org
255 S:      Supported
256 W:      http://www.adaptec.com/
257 F:      Documentation/scsi/aacraid.rst
258 F:      drivers/scsi/aacraid/
259
260 ABI/API
261 L:      linux-api@vger.kernel.org
262 F:      include/linux/syscalls.h
263 F:      kernel/sys_ni.c
264
265 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
266 M:      Hans de Goede <hdegoede@redhat.com>
267 L:      linux-hwmon@vger.kernel.org
268 S:      Maintained
269 F:      drivers/hwmon/abituguru.c
270
271 ABIT UGURU 3 HARDWARE MONITOR DRIVER
272 M:      Alistair John Strachan <alistair@devzero.co.uk>
273 L:      linux-hwmon@vger.kernel.org
274 S:      Maintained
275 F:      drivers/hwmon/abituguru3.c
276
277 ACCES 104-DIO-48E GPIO DRIVER
278 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
279 L:      linux-gpio@vger.kernel.org
280 S:      Maintained
281 F:      drivers/gpio/gpio-104-dio-48e.c
282
283 ACCES 104-IDI-48 GPIO DRIVER
284 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
285 L:      linux-gpio@vger.kernel.org
286 S:      Maintained
287 F:      drivers/gpio/gpio-104-idi-48.c
288
289 ACCES 104-IDIO-16 GPIO DRIVER
290 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
291 L:      linux-gpio@vger.kernel.org
292 S:      Maintained
293 F:      drivers/gpio/gpio-104-idio-16.c
294
295 ACCES 104-QUAD-8 DRIVER
296 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
297 M:      Syed Nayyar Waris <syednwaris@gmail.com>
298 L:      linux-iio@vger.kernel.org
299 S:      Maintained
300 F:      Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
301 F:      Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
302 F:      drivers/counter/104-quad-8.c
303
304 ACCES PCI-IDIO-16 GPIO DRIVER
305 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
306 L:      linux-gpio@vger.kernel.org
307 S:      Maintained
308 F:      drivers/gpio/gpio-pci-idio-16.c
309
310 ACCES PCIe-IDIO-24 GPIO DRIVER
311 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
312 L:      linux-gpio@vger.kernel.org
313 S:      Maintained
314 F:      drivers/gpio/gpio-pcie-idio-24.c
315
316 ACENIC DRIVER
317 M:      Jes Sorensen <jes@trained-monkey.org>
318 L:      linux-acenic@sunsite.dk
319 S:      Maintained
320 F:      drivers/net/ethernet/alteon/acenic*
321
322 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
323 M:      Peter Kaestle <peter@piie.net>
324 L:      platform-driver-x86@vger.kernel.org
325 S:      Maintained
326 W:      http://piie.net/?section=acerhdf
327 F:      drivers/platform/x86/acerhdf.c
328
329 ACER WMI LAPTOP EXTRAS
330 M:      "Lee, Chun-Yi" <jlee@suse.com>
331 L:      platform-driver-x86@vger.kernel.org
332 S:      Maintained
333 F:      drivers/platform/x86/acer-wmi.c
334
335 ACPI
336 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
337 M:      Len Brown <lenb@kernel.org>
338 L:      linux-acpi@vger.kernel.org
339 S:      Supported
340 W:      https://01.org/linux-acpi
341 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
342 B:      https://bugzilla.kernel.org
343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
344 F:      Documentation/ABI/testing/configfs-acpi
345 F:      Documentation/ABI/testing/sysfs-bus-acpi
346 F:      Documentation/firmware-guide/acpi/
347 F:      drivers/acpi/
348 F:      drivers/pci/*/*acpi*
349 F:      drivers/pci/*acpi*
350 F:      drivers/pnp/pnpacpi/
351 F:      include/acpi/
352 F:      include/linux/acpi.h
353 F:      include/linux/fwnode.h
354 F:      tools/power/acpi/
355
356 ACPI APEI
357 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
358 M:      Len Brown <lenb@kernel.org>
359 R:      James Morse <james.morse@arm.com>
360 R:      Tony Luck <tony.luck@intel.com>
361 R:      Borislav Petkov <bp@alien8.de>
362 L:      linux-acpi@vger.kernel.org
363 F:      drivers/acpi/apei/
364
365 ACPI COMPONENT ARCHITECTURE (ACPICA)
366 M:      Robert Moore <robert.moore@intel.com>
367 M:      Erik Kaneda <erik.kaneda@intel.com>
368 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
369 L:      linux-acpi@vger.kernel.org
370 L:      devel@acpica.org
371 S:      Supported
372 W:      https://acpica.org/
373 W:      https://github.com/acpica/acpica/
374 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
375 B:      https://bugzilla.kernel.org
376 B:      https://bugs.acpica.org
377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
378 F:      drivers/acpi/acpica/
379 F:      include/acpi/
380 F:      tools/power/acpi/
381
382 ACPI FAN DRIVER
383 M:      Zhang Rui <rui.zhang@intel.com>
384 L:      linux-acpi@vger.kernel.org
385 S:      Supported
386 W:      https://01.org/linux-acpi
387 B:      https://bugzilla.kernel.org
388 F:      drivers/acpi/fan.c
389
390 ACPI FOR ARM64 (ACPI/arm64)
391 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
392 M:      Hanjun Guo <guohanjun@huawei.com>
393 M:      Sudeep Holla <sudeep.holla@arm.com>
394 L:      linux-acpi@vger.kernel.org
395 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
396 S:      Maintained
397 F:      drivers/acpi/arm64
398
399 ACPI I2C MULTI INSTANTIATE DRIVER
400 M:      Hans de Goede <hdegoede@redhat.com>
401 L:      platform-driver-x86@vger.kernel.org
402 S:      Maintained
403 F:      drivers/platform/x86/i2c-multi-instantiate.c
404
405 ACPI PMIC DRIVERS
406 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
407 M:      Len Brown <lenb@kernel.org>
408 R:      Andy Shevchenko <andy@kernel.org>
409 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
410 L:      linux-acpi@vger.kernel.org
411 S:      Supported
412 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
413 B:      https://bugzilla.kernel.org
414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
415 F:      drivers/acpi/pmic/
416
417 ACPI THERMAL DRIVER
418 M:      Zhang Rui <rui.zhang@intel.com>
419 L:      linux-acpi@vger.kernel.org
420 S:      Supported
421 W:      https://01.org/linux-acpi
422 B:      https://bugzilla.kernel.org
423 F:      drivers/acpi/*thermal*
424
425 ACPI VIDEO DRIVER
426 M:      Zhang Rui <rui.zhang@intel.com>
427 L:      linux-acpi@vger.kernel.org
428 S:      Supported
429 W:      https://01.org/linux-acpi
430 B:      https://bugzilla.kernel.org
431 F:      drivers/acpi/acpi_video.c
432
433 ACPI WMI DRIVER
434 L:      platform-driver-x86@vger.kernel.org
435 S:      Orphan
436 F:      drivers/platform/x86/wmi.c
437 F:      include/uapi/linux/wmi.h
438
439 AD1889 ALSA SOUND DRIVER
440 L:      linux-parisc@vger.kernel.org
441 S:      Maintained
442 W:      https://parisc.wiki.kernel.org/index.php/AD1889
443 F:      sound/pci/ad1889.*
444
445 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
446 M:      Michael Hennerich <michael.hennerich@analog.com>
447 S:      Supported
448 W:      http://wiki.analog.com/AD5254
449 W:      http://ez.analog.com/community/linux-device-drivers
450 F:      drivers/misc/ad525x_dpot.c
451
452 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
453 M:      Michael Hennerich <michael.hennerich@analog.com>
454 S:      Supported
455 W:      http://wiki.analog.com/AD5398
456 W:      http://ez.analog.com/community/linux-device-drivers
457 F:      drivers/regulator/ad5398.c
458
459 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
460 M:      Michael Hennerich <michael.hennerich@analog.com>
461 S:      Supported
462 W:      http://wiki.analog.com/AD7142
463 W:      http://ez.analog.com/community/linux-device-drivers
464 F:      drivers/input/misc/ad714x.c
465
466 AD7877 TOUCHSCREEN DRIVER
467 M:      Michael Hennerich <michael.hennerich@analog.com>
468 S:      Supported
469 W:      http://wiki.analog.com/AD7877
470 W:      http://ez.analog.com/community/linux-device-drivers
471 F:      drivers/input/touchscreen/ad7877.c
472
473 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
474 M:      Michael Hennerich <michael.hennerich@analog.com>
475 S:      Supported
476 W:      http://wiki.analog.com/AD7879
477 W:      http://ez.analog.com/community/linux-device-drivers
478 F:      drivers/input/touchscreen/ad7879.c
479
480 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
481 M:      Jiri Kosina <jikos@kernel.org>
482 S:      Maintained
483
484 ADF7242 IEEE 802.15.4 RADIO DRIVER
485 M:      Michael Hennerich <michael.hennerich@analog.com>
486 L:      linux-wpan@vger.kernel.org
487 S:      Supported
488 W:      https://wiki.analog.com/ADF7242
489 W:      http://ez.analog.com/community/linux-device-drivers
490 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
491 F:      drivers/net/ieee802154/adf7242.c
492
493 ADM1025 HARDWARE MONITOR DRIVER
494 M:      Jean Delvare <jdelvare@suse.com>
495 L:      linux-hwmon@vger.kernel.org
496 S:      Maintained
497 F:      Documentation/hwmon/adm1025.rst
498 F:      drivers/hwmon/adm1025.c
499
500 ADM1029 HARDWARE MONITOR DRIVER
501 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
502 L:      linux-hwmon@vger.kernel.org
503 S:      Maintained
504 F:      drivers/hwmon/adm1029.c
505
506 ADM8211 WIRELESS DRIVER
507 L:      linux-wireless@vger.kernel.org
508 S:      Orphan
509 W:      https://wireless.wiki.kernel.org/
510 F:      drivers/net/wireless/admtek/adm8211.*
511
512 ADP1653 FLASH CONTROLLER DRIVER
513 M:      Sakari Ailus <sakari.ailus@iki.fi>
514 L:      linux-media@vger.kernel.org
515 S:      Maintained
516 F:      drivers/media/i2c/adp1653.c
517 F:      include/media/i2c/adp1653.h
518
519 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
520 M:      Michael Hennerich <michael.hennerich@analog.com>
521 S:      Supported
522 W:      http://wiki.analog.com/ADP5520
523 W:      http://ez.analog.com/community/linux-device-drivers
524 F:      drivers/gpio/gpio-adp5520.c
525 F:      drivers/input/keyboard/adp5520-keys.c
526 F:      drivers/leds/leds-adp5520.c
527 F:      drivers/mfd/adp5520.c
528 F:      drivers/video/backlight/adp5520_bl.c
529
530 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
531 M:      Michael Hennerich <michael.hennerich@analog.com>
532 S:      Supported
533 W:      http://wiki.analog.com/ADP5588
534 W:      http://ez.analog.com/community/linux-device-drivers
535 F:      drivers/gpio/gpio-adp5588.c
536 F:      drivers/input/keyboard/adp5588-keys.c
537
538 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
539 M:      Michael Hennerich <michael.hennerich@analog.com>
540 S:      Supported
541 W:      http://wiki.analog.com/ADP8860
542 W:      http://ez.analog.com/community/linux-device-drivers
543 F:      drivers/video/backlight/adp8860_bl.c
544
545 ADT746X FAN DRIVER
546 M:      Colin Leroy <colin@colino.net>
547 S:      Maintained
548 F:      drivers/macintosh/therm_adt746x.c
549
550 ADT7475 HARDWARE MONITOR DRIVER
551 M:      Jean Delvare <jdelvare@suse.com>
552 L:      linux-hwmon@vger.kernel.org
553 S:      Maintained
554 F:      Documentation/hwmon/adt7475.rst
555 F:      drivers/hwmon/adt7475.c
556
557 ADVANSYS SCSI DRIVER
558 M:      Matthew Wilcox <willy@infradead.org>
559 M:      Hannes Reinecke <hare@suse.com>
560 L:      linux-scsi@vger.kernel.org
561 S:      Maintained
562 F:      Documentation/scsi/advansys.rst
563 F:      drivers/scsi/advansys.c
564
565 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
566 M:      Michael Hennerich <michael.hennerich@analog.com>
567 S:      Supported
568 W:      http://wiki.analog.com/ADXL345
569 W:      http://ez.analog.com/community/linux-device-drivers
570 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
571 F:      drivers/input/misc/adxl34x.c
572
573 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
574 M:      Michael Hennerich <michael.hennerich@analog.com>
575 S:      Supported
576 W:      http://ez.analog.com/community/linux-device-drivers
577 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
578 F:      drivers/iio/accel/adxl372.c
579 F:      drivers/iio/accel/adxl372_i2c.c
580 F:      drivers/iio/accel/adxl372_spi.c
581
582 AF9013 MEDIA DRIVER
583 M:      Antti Palosaari <crope@iki.fi>
584 L:      linux-media@vger.kernel.org
585 S:      Maintained
586 W:      https://linuxtv.org
587 W:      http://palosaari.fi/linux/
588 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
589 T:      git git://linuxtv.org/anttip/media_tree.git
590 F:      drivers/media/dvb-frontends/af9013*
591
592 AF9033 MEDIA DRIVER
593 M:      Antti Palosaari <crope@iki.fi>
594 L:      linux-media@vger.kernel.org
595 S:      Maintained
596 W:      https://linuxtv.org
597 W:      http://palosaari.fi/linux/
598 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
599 T:      git git://linuxtv.org/anttip/media_tree.git
600 F:      drivers/media/dvb-frontends/af9033*
601
602 AFFS FILE SYSTEM
603 M:      David Sterba <dsterba@suse.com>
604 L:      linux-fsdevel@vger.kernel.org
605 S:      Odd Fixes
606 F:      Documentation/filesystems/affs.rst
607 F:      fs/affs/
608
609 AFS FILESYSTEM
610 M:      David Howells <dhowells@redhat.com>
611 L:      linux-afs@lists.infradead.org
612 S:      Supported
613 W:      https://www.infradead.org/~dhowells/kafs/
614 F:      Documentation/filesystems/afs.rst
615 F:      fs/afs/
616 F:      include/trace/events/afs.h
617
618 AGPGART DRIVER
619 M:      David Airlie <airlied@linux.ie>
620 S:      Maintained
621 T:      git git://anongit.freedesktop.org/drm/drm
622 F:      drivers/char/agp/
623 F:      include/linux/agp*
624 F:      include/uapi/linux/agp*
625
626 AHA152X SCSI DRIVER
627 M:      "Juergen E. Fischer" <fischer@norbit.de>
628 L:      linux-scsi@vger.kernel.org
629 S:      Maintained
630 F:      drivers/scsi/aha152x*
631 F:      drivers/scsi/pcmcia/aha152x*
632
633 AIC7XXX / AIC79XX SCSI DRIVER
634 M:      Hannes Reinecke <hare@suse.com>
635 L:      linux-scsi@vger.kernel.org
636 S:      Maintained
637 F:      drivers/scsi/aic7xxx/
638
639 AIMSLAB FM RADIO RECEIVER DRIVER
640 M:      Hans Verkuil <hverkuil@xs4all.nl>
641 L:      linux-media@vger.kernel.org
642 S:      Maintained
643 W:      https://linuxtv.org
644 T:      git git://linuxtv.org/media_tree.git
645 F:      drivers/media/radio/radio-aimslab*
646
647 AIO
648 M:      Benjamin LaHaise <bcrl@kvack.org>
649 L:      linux-aio@kvack.org
650 S:      Supported
651 F:      fs/aio.c
652 F:      include/linux/*aio*.h
653
654 AIRSPY MEDIA DRIVER
655 M:      Antti Palosaari <crope@iki.fi>
656 L:      linux-media@vger.kernel.org
657 S:      Maintained
658 W:      https://linuxtv.org
659 W:      http://palosaari.fi/linux/
660 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
661 T:      git git://linuxtv.org/anttip/media_tree.git
662 F:      drivers/media/usb/airspy/
663
664 ALACRITECH GIGABIT ETHERNET DRIVER
665 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
666 S:      Maintained
667 F:      drivers/net/ethernet/alacritech/*
668
669 ALCATEL SPEEDTOUCH USB DRIVER
670 M:      Duncan Sands <duncan.sands@free.fr>
671 L:      linux-usb@vger.kernel.org
672 S:      Maintained
673 W:      http://www.linux-usb.org/SpeedTouch/
674 F:      drivers/usb/atm/speedtch.c
675 F:      drivers/usb/atm/usbatm.c
676
677 ALCHEMY AU1XX0 MMC DRIVER
678 M:      Manuel Lauss <manuel.lauss@gmail.com>
679 S:      Maintained
680 F:      drivers/mmc/host/au1xmmc.c
681
682 ALI1563 I2C DRIVER
683 M:      Rudolf Marek <r.marek@assembler.cz>
684 L:      linux-i2c@vger.kernel.org
685 S:      Maintained
686 F:      Documentation/i2c/busses/i2c-ali1563.rst
687 F:      drivers/i2c/busses/i2c-ali1563.c
688
689 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
690 M:      Tomislav Denis <tomislav.denis@avl.com>
691 L:      linux-iio@vger.kernel.org
692 S:      Maintained
693 W:      http://www.allsensors.com/
694 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
695 F:      drivers/iio/pressure/dlhl60d.c
696
697 ALLEGRO DVT VIDEO IP CORE DRIVER
698 M:      Michael Tretter <m.tretter@pengutronix.de>
699 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
700 L:      linux-media@vger.kernel.org
701 S:      Maintained
702 F:      drivers/staging/media/allegro-dvt/
703
704 ALLWINNER A10 CSI DRIVER
705 M:      Maxime Ripard <mripard@kernel.org>
706 L:      linux-media@vger.kernel.org
707 S:      Maintained
708 T:      git git://linuxtv.org/media_tree.git
709 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
710 F:      drivers/media/platform/sunxi/sun4i-csi/
711
712 ALLWINNER CPUFREQ DRIVER
713 M:      Yangtao Li <tiny.windzz@gmail.com>
714 L:      linux-pm@vger.kernel.org
715 S:      Maintained
716 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
717 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
718
719 ALLWINNER CRYPTO DRIVERS
720 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
721 L:      linux-crypto@vger.kernel.org
722 S:      Maintained
723 F:      drivers/crypto/allwinner/
724
725 ALLWINNER THERMAL DRIVER
726 M:      Vasily Khoruzhick <anarsoul@gmail.com>
727 M:      Yangtao Li <tiny.windzz@gmail.com>
728 L:      linux-pm@vger.kernel.org
729 S:      Maintained
730 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
731 F:      drivers/thermal/sun8i_thermal.c
732
733 ALLWINNER VPU DRIVER
734 M:      Maxime Ripard <mripard@kernel.org>
735 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
736 L:      linux-media@vger.kernel.org
737 S:      Maintained
738 F:      drivers/staging/media/sunxi/cedrus/
739
740 ALPHA PORT
741 M:      Richard Henderson <rth@twiddle.net>
742 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
743 M:      Matt Turner <mattst88@gmail.com>
744 L:      linux-alpha@vger.kernel.org
745 S:      Odd Fixes
746 F:      arch/alpha/
747
748 ALPS PS/2 TOUCHPAD DRIVER
749 R:      Pali Rohár <pali@kernel.org>
750 F:      drivers/input/mouse/alps.*
751
752 ALTERA I2C CONTROLLER DRIVER
753 M:      Thor Thayer <thor.thayer@linux.intel.com>
754 S:      Maintained
755 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
756 F:      drivers/i2c/busses/i2c-altera.c
757
758 ALTERA MAILBOX DRIVER
759 M:      Ley Foon Tan <ley.foon.tan@intel.com>
760 S:      Maintained
761 F:      drivers/mailbox/mailbox-altera.c
762
763 ALTERA PIO DRIVER
764 M:      Joyce Ooi <joyce.ooi@intel.com>
765 L:      linux-gpio@vger.kernel.org
766 S:      Maintained
767 F:      drivers/gpio/gpio-altera.c
768
769 ALTERA SYSTEM MANAGER DRIVER
770 M:      Thor Thayer <thor.thayer@linux.intel.com>
771 S:      Maintained
772 F:      drivers/mfd/altera-sysmgr.c
773 F:      include/linux/mfd/altera-sysmgr.h
774
775 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
776 M:      Thor Thayer <thor.thayer@linux.intel.com>
777 S:      Maintained
778 F:      drivers/gpio/gpio-altera-a10sr.c
779 F:      drivers/mfd/altera-a10sr.c
780 F:      drivers/reset/reset-a10sr.c
781 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
782 F:      include/linux/mfd/altera-a10sr.h
783
784 ALTERA TRIPLE SPEED ETHERNET DRIVER
785 M:      Joyce Ooi <joyce.ooi@intel.com>
786 L:      netdev@vger.kernel.org
787 S:      Maintained
788 F:      drivers/net/ethernet/altera/
789
790 ALTERA UART/JTAG UART SERIAL DRIVERS
791 M:      Tobias Klauser <tklauser@distanz.ch>
792 L:      linux-serial@vger.kernel.org
793 S:      Maintained
794 F:      drivers/tty/serial/altera_jtaguart.c
795 F:      drivers/tty/serial/altera_uart.c
796 F:      include/linux/altera_jtaguart.h
797 F:      include/linux/altera_uart.h
798
799 AMAZON ANNAPURNA LABS FIC DRIVER
800 M:      Talel Shenhar <talel@amazon.com>
801 S:      Maintained
802 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
803 F:      drivers/irqchip/irq-al-fic.c
804
805 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
806 M:      Talel Shenhar <talel@amazon.com>
807 M:      Talel Shenhar <talelshenhar@gmail.com>
808 S:      Maintained
809 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
810 F:      drivers/edac/al_mc_edac.c
811
812 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
813 M:      Talel Shenhar <talel@amazon.com>
814 S:      Maintained
815 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
816 F:      drivers/thermal/thermal_mmio.c
817
818 AMAZON ETHERNET DRIVERS
819 M:      Netanel Belgazal <netanel@amazon.com>
820 M:      Arthur Kiyanovski <akiyano@amazon.com>
821 R:      Guy Tzalik <gtzalik@amazon.com>
822 R:      Saeed Bishara <saeedb@amazon.com>
823 R:      Zorik Machulsky <zorik@amazon.com>
824 L:      netdev@vger.kernel.org
825 S:      Supported
826 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
827 F:      drivers/net/ethernet/amazon/
828
829 AMAZON RDMA EFA DRIVER
830 M:      Gal Pressman <galpress@amazon.com>
831 R:      Yossi Leybovich <sleybo@amazon.com>
832 L:      linux-rdma@vger.kernel.org
833 S:      Supported
834 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
835 F:      drivers/infiniband/hw/efa/
836 F:      include/uapi/rdma/efa-abi.h
837
838 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
839 M:      Tom Lendacky <thomas.lendacky@amd.com>
840 M:      John Allen <john.allen@amd.com>
841 L:      linux-crypto@vger.kernel.org
842 S:      Supported
843 F:      drivers/crypto/ccp/
844 F:      include/linux/ccp.h
845
846 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
847 M:      Brijesh Singh <brijesh.singh@amd.com>
848 M:      Tom Lendacky <thomas.lendacky@amd.com>
849 L:      linux-crypto@vger.kernel.org
850 S:      Supported
851 F:      drivers/crypto/ccp/sev*
852 F:      include/uapi/linux/psp-sev.h
853
854 AMD DISPLAY CORE
855 M:      Harry Wentland <harry.wentland@amd.com>
856 M:      Leo Li <sunpeng.li@amd.com>
857 L:      amd-gfx@lists.freedesktop.org
858 S:      Supported
859 T:      git git://people.freedesktop.org/~agd5f/linux
860 F:      drivers/gpu/drm/amd/display/
861
862 AMD ENERGY DRIVER
863 M:      Naveen Krishna Chatradhi <nchatrad@amd.com>
864 L:      linux-hwmon@vger.kernel.org
865 S:      Maintained
866 F:      Documentation/hwmon/amd_energy.rst
867 F:      drivers/hwmon/amd_energy.c
868
869 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
870 M:      Huang Rui <ray.huang@amd.com>
871 L:      linux-hwmon@vger.kernel.org
872 S:      Supported
873 F:      Documentation/hwmon/fam15h_power.rst
874 F:      drivers/hwmon/fam15h_power.c
875
876 AMD FCH GPIO DRIVER
877 M:      Enrico Weigelt, metux IT consult <info@metux.net>
878 L:      linux-gpio@vger.kernel.org
879 S:      Maintained
880 F:      drivers/gpio/gpio-amd-fch.c
881 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
882
883 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
884 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
885 S:      Orphan
886 F:      drivers/usb/gadget/udc/amd5536udc.*
887
888 AMD GEODE PROCESSOR/CHIPSET SUPPORT
889 M:      Andres Salomon <dilinger@queued.net>
890 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
891 S:      Supported
892 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
893 F:      arch/x86/include/asm/geode.h
894 F:      drivers/char/hw_random/geode-rng.c
895 F:      drivers/crypto/geode*
896 F:      drivers/video/fbdev/geode/
897
898 AMD IOMMU (AMD-VI)
899 M:      Joerg Roedel <joro@8bytes.org>
900 L:      iommu@lists.linux-foundation.org
901 S:      Maintained
902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
903 F:      drivers/iommu/amd/
904 F:      include/linux/amd-iommu.h
905
906 AMD KFD
907 M:      Felix Kuehling <Felix.Kuehling@amd.com>
908 L:      amd-gfx@lists.freedesktop.org
909 S:      Supported
910 T:      git git://people.freedesktop.org/~agd5f/linux
911 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
912 F:      drivers/gpu/drm/amd/amdkfd/
913 F:      drivers/gpu/drm/amd/include/cik_structs.h
914 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
915 F:      drivers/gpu/drm/amd/include/v9_structs.h
916 F:      drivers/gpu/drm/amd/include/vi_structs.h
917 F:      include/uapi/linux/kfd_ioctl.h
918
919 AMD SPI DRIVER
920 M:      Sanjay R Mehta <sanju.mehta@amd.com>
921 S:      Maintained
922 F:      drivers/spi/spi-amd.c
923
924 AMD MP2 I2C DRIVER
925 M:      Elie Morisse <syniurge@gmail.com>
926 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
927 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
928 L:      linux-i2c@vger.kernel.org
929 S:      Maintained
930 F:      drivers/i2c/busses/i2c-amd-mp2*
931
932 AMD PMC DRIVER
933 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
934 L:      platform-driver-x86@vger.kernel.org
935 S:      Maintained
936 F:      drivers/platform/x86/amd-pmc.*
937
938 AMD POWERPLAY
939 M:      Evan Quan <evan.quan@amd.com>
940 L:      amd-gfx@lists.freedesktop.org
941 S:      Supported
942 T:      git git://people.freedesktop.org/~agd5f/linux
943 F:      drivers/gpu/drm/amd/pm/powerplay/
944
945 AMD SEATTLE DEVICE TREE SUPPORT
946 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
947 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
948 M:      Tom Lendacky <thomas.lendacky@amd.com>
949 S:      Supported
950 F:      arch/arm64/boot/dts/amd/
951
952 AMD XGBE DRIVER
953 M:      Tom Lendacky <thomas.lendacky@amd.com>
954 L:      netdev@vger.kernel.org
955 S:      Supported
956 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
957 F:      drivers/net/ethernet/amd/xgbe/
958
959 AMS AS73211 DRIVER
960 M:      Christian Eggers <ceggers@arri.de>
961 L:      linux-iio@vger.kernel.org
962 S:      Maintained
963 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
964 F:      drivers/iio/light/as73211.c
965
966 ANALOG DEVICES INC AD7192 DRIVER
967 M:      Alexandru Tachici <alexandru.tachici@analog.com>
968 L:      linux-iio@vger.kernel.org
969 S:      Supported
970 W:      http://ez.analog.com/community/linux-device-drivers
971 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
972 F:      drivers/iio/adc/ad7192.c
973
974 ANALOG DEVICES INC AD7292 DRIVER
975 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
976 L:      linux-iio@vger.kernel.org
977 S:      Supported
978 W:      http://ez.analog.com/community/linux-device-drivers
979 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
980 F:      drivers/iio/adc/ad7292.c
981
982 ANALOG DEVICES INC AD7768-1 DRIVER
983 M:      Michael Hennerich <Michael.Hennerich@analog.com>
984 L:      linux-iio@vger.kernel.org
985 S:      Supported
986 W:      http://ez.analog.com/community/linux-device-drivers
987 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
988 F:      drivers/iio/adc/ad7768-1.c
989
990 ANALOG DEVICES INC AD7780 DRIVER
991 M:      Michael Hennerich <Michael.Hennerich@analog.com>
992 M:      Renato Lui Geh <renatogeh@gmail.com>
993 L:      linux-iio@vger.kernel.org
994 S:      Supported
995 W:      http://ez.analog.com/community/linux-device-drivers
996 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
997 F:      drivers/iio/adc/ad7780.c
998
999 ANALOG DEVICES INC AD9389B DRIVER
1000 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1001 L:      linux-media@vger.kernel.org
1002 S:      Maintained
1003 F:      drivers/media/i2c/ad9389b*
1004
1005 ANALOG DEVICES INC ADGS1408 DRIVER
1006 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1007 S:      Supported
1008 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1009 F:      drivers/mux/adgs1408.c
1010
1011 ANALOG DEVICES INC ADIN DRIVER
1012 M:      Alexandru Ardelean <alexaundru.ardelean@analog.com>
1013 L:      netdev@vger.kernel.org
1014 S:      Supported
1015 W:      http://ez.analog.com/community/linux-device-drivers
1016 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1017 F:      drivers/net/phy/adin.c
1018
1019 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1020 M:      Alexandru Ardelean <alexandru.ardelean@analog.com>
1021 L:      linux-iio@vger.kernel.org
1022 S:      Supported
1023 F:      drivers/iio/imu/adis.c
1024 F:      include/linux/iio/imu/adis.h
1025
1026 ANALOG DEVICES INC ADIS16460 DRIVER
1027 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1028 L:      linux-iio@vger.kernel.org
1029 S:      Supported
1030 W:      http://ez.analog.com/community/linux-device-drivers
1031 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1032 F:      drivers/iio/imu/adis16460.c
1033
1034 ANALOG DEVICES INC ADIS16475 DRIVER
1035 M:      Nuno Sa <nuno.sa@analog.com>
1036 L:      linux-iio@vger.kernel.org
1037 W:      http://ez.analog.com/community/linux-device-drivers
1038 S:      Supported
1039 F:      drivers/iio/imu/adis16475.c
1040 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1041
1042 ANALOG DEVICES INC ADM1177 DRIVER
1043 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1044 L:      linux-hwmon@vger.kernel.org
1045 S:      Supported
1046 W:      http://ez.analog.com/community/linux-device-drivers
1047 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1048 F:      drivers/hwmon/adm1177.c
1049
1050 ANALOG DEVICES INC ADP5061 DRIVER
1051 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1052 L:      linux-pm@vger.kernel.org
1053 S:      Supported
1054 W:      http://ez.analog.com/community/linux-device-drivers
1055 F:      drivers/power/supply/adp5061.c
1056
1057 ANALOG DEVICES INC ADV7180 DRIVER
1058 M:      Lars-Peter Clausen <lars@metafoo.de>
1059 L:      linux-media@vger.kernel.org
1060 S:      Supported
1061 W:      http://ez.analog.com/community/linux-device-drivers
1062 F:      drivers/media/i2c/adv7180.c
1063 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1064
1065 ANALOG DEVICES INC ADV748X DRIVER
1066 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1067 L:      linux-media@vger.kernel.org
1068 S:      Maintained
1069 F:      drivers/media/i2c/adv748x/*
1070
1071 ANALOG DEVICES INC ADV7511 DRIVER
1072 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1073 L:      linux-media@vger.kernel.org
1074 S:      Maintained
1075 F:      drivers/media/i2c/adv7511*
1076
1077 ANALOG DEVICES INC ADV7604 DRIVER
1078 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1079 L:      linux-media@vger.kernel.org
1080 S:      Maintained
1081 F:      drivers/media/i2c/adv7604*
1082 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1083
1084 ANALOG DEVICES INC ADV7842 DRIVER
1085 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1086 L:      linux-media@vger.kernel.org
1087 S:      Maintained
1088 F:      drivers/media/i2c/adv7842*
1089
1090 ANALOG DEVICES INC ADXRS290 DRIVER
1091 M:      Nishant Malpani <nish.malpani25@gmail.com>
1092 L:      linux-iio@vger.kernel.org
1093 S:      Supported
1094 F:      drivers/iio/gyro/adxrs290.c
1095 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1096
1097 ANALOG DEVICES INC ASOC CODEC DRIVERS
1098 M:      Lars-Peter Clausen <lars@metafoo.de>
1099 M:      Nuno Sá <nuno.sa@analog.com>
1100 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1101 S:      Supported
1102 W:      http://wiki.analog.com/
1103 W:      http://ez.analog.com/community/linux-device-drivers
1104 F:      sound/soc/codecs/ad1*
1105 F:      sound/soc/codecs/ad7*
1106 F:      sound/soc/codecs/adau*
1107 F:      sound/soc/codecs/adav*
1108 F:      sound/soc/codecs/sigmadsp.*
1109 F:      sound/soc/codecs/ssm*
1110
1111 ANALOG DEVICES INC DMA DRIVERS
1112 M:      Lars-Peter Clausen <lars@metafoo.de>
1113 S:      Supported
1114 W:      http://ez.analog.com/community/linux-device-drivers
1115 F:      drivers/dma/dma-axi-dmac.c
1116
1117 ANALOG DEVICES INC IIO DRIVERS
1118 M:      Lars-Peter Clausen <lars@metafoo.de>
1119 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1120 S:      Supported
1121 W:      http://wiki.analog.com/
1122 W:      http://ez.analog.com/community/linux-device-drivers
1123 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1124 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1125 F:      Documentation/devicetree/bindings/iio/*/adi,*
1126 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
1127 F:      drivers/iio/*/ad*
1128 F:      drivers/iio/adc/ltc249*
1129 F:      drivers/iio/amplifiers/hmc425a.c
1130 F:      drivers/staging/iio/*/ad*
1131 X:      drivers/iio/*/adjd*
1132
1133 ANALOGBITS PLL LIBRARIES
1134 M:      Paul Walmsley <paul.walmsley@sifive.com>
1135 S:      Supported
1136 F:      drivers/clk/analogbits/*
1137 F:      include/linux/clk/analogbits*
1138
1139 ANDES ARCHITECTURE
1140 M:      Nick Hu <nickhu@andestech.com>
1141 M:      Greentime Hu <green.hu@gmail.com>
1142 M:      Vincent Chen <deanbo422@gmail.com>
1143 S:      Supported
1144 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1145 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1146 F:      Documentation/devicetree/bindings/nds32/
1147 F:      arch/nds32/
1148 N:      nds32
1149 K:      nds32
1150
1151 ANDROID CONFIG FRAGMENTS
1152 M:      Rob Herring <robh@kernel.org>
1153 S:      Supported
1154 F:      kernel/configs/android*
1155
1156 ANDROID DRIVERS
1157 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1158 M:      Arve Hjønnevåg <arve@android.com>
1159 M:      Todd Kjos <tkjos@android.com>
1160 M:      Martijn Coenen <maco@android.com>
1161 M:      Joel Fernandes <joel@joelfernandes.org>
1162 M:      Christian Brauner <christian@brauner.io>
1163 M:      Hridya Valsaraju <hridya@google.com>
1164 M:      Suren Baghdasaryan <surenb@google.com>
1165 L:      devel@driverdev.osuosl.org
1166 S:      Supported
1167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1168 F:      drivers/android/
1169 F:      drivers/staging/android/
1170
1171 ANDROID GOLDFISH PIC DRIVER
1172 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1173 S:      Supported
1174 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1175 F:      drivers/irqchip/irq-goldfish-pic.c
1176
1177 ANDROID GOLDFISH RTC DRIVER
1178 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1179 S:      Supported
1180 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1181 F:      drivers/rtc/rtc-goldfish.c
1182
1183 AOA (Apple Onboard Audio) ALSA DRIVER
1184 M:      Johannes Berg <johannes@sipsolutions.net>
1185 L:      linuxppc-dev@lists.ozlabs.org
1186 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1187 S:      Maintained
1188 F:      sound/aoa/
1189
1190 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1191 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1192 L:      linux-iio@vger.kernel.org
1193 S:      Maintained
1194 F:      drivers/iio/adc/stx104.c
1195
1196 APM DRIVER
1197 M:      Jiri Kosina <jikos@kernel.org>
1198 S:      Odd fixes
1199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1200 F:      arch/x86/kernel/apm_32.c
1201 F:      drivers/char/apm-emulation.c
1202 F:      include/linux/apm_bios.h
1203 F:      include/uapi/linux/apm_bios.h
1204
1205 APPARMOR SECURITY MODULE
1206 M:      John Johansen <john.johansen@canonical.com>
1207 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1208 S:      Supported
1209 W:      wiki.apparmor.net
1210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1211 F:      Documentation/admin-guide/LSM/apparmor.rst
1212 F:      security/apparmor/
1213
1214 APPLE BCM5974 MULTITOUCH DRIVER
1215 M:      Henrik Rydberg <rydberg@bitmath.org>
1216 L:      linux-input@vger.kernel.org
1217 S:      Odd fixes
1218 F:      drivers/input/mouse/bcm5974.c
1219
1220 APPLE SMC DRIVER
1221 M:      Henrik Rydberg <rydberg@bitmath.org>
1222 L:      linux-hwmon@vger.kernel.org
1223 S:      Odd fixes
1224 F:      drivers/hwmon/applesmc.c
1225
1226 APPLETALK NETWORK LAYER
1227 L:      netdev@vger.kernel.org
1228 S:      Odd fixes
1229 F:      drivers/net/appletalk/
1230 F:      include/linux/atalk.h
1231 F:      include/uapi/linux/atalk.h
1232 F:      net/appletalk/
1233
1234 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1235 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1236 S:      Supported
1237 F:      arch/arm64/boot/dts/apm/
1238
1239 APPLIED MICRO (APM) X-GENE SOC EDAC
1240 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1241 S:      Supported
1242 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1243 F:      drivers/edac/xgene_edac.c
1244
1245 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1246 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1247 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1248 S:      Supported
1249 F:      drivers/net/ethernet/apm/xgene-v2/
1250
1251 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1252 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1253 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1254 M:      Quan Nguyen <quan@os.amperecomputing.com>
1255 S:      Supported
1256 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1257 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1258 F:      drivers/net/ethernet/apm/xgene/
1259 F:      drivers/net/mdio/mdio-xgene.c
1260
1261 APPLIED MICRO (APM) X-GENE SOC PMU
1262 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1263 S:      Supported
1264 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1265 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1266 F:      drivers/perf/xgene_pmu.c
1267
1268 APTINA CAMERA SENSOR PLL
1269 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1270 L:      linux-media@vger.kernel.org
1271 S:      Maintained
1272 F:      drivers/media/i2c/aptina-pll.*
1273
1274 AQUANTIA ETHERNET DRIVER (atlantic)
1275 M:      Igor Russkikh <irusskikh@marvell.com>
1276 L:      netdev@vger.kernel.org
1277 S:      Supported
1278 W:      https://www.marvell.com/
1279 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1280 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1281 F:      drivers/net/ethernet/aquantia/atlantic/
1282
1283 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1284 M:      Egor Pomozov <epomozov@marvell.com>
1285 L:      netdev@vger.kernel.org
1286 S:      Supported
1287 W:      http://www.aquantia.com
1288 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1289
1290 ARASAN NAND CONTROLLER DRIVER
1291 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1292 L:      linux-mtd@lists.infradead.org
1293 S:      Maintained
1294 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1295 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1296
1297 ARC FRAMEBUFFER DRIVER
1298 M:      Jaya Kumar <jayalk@intworks.biz>
1299 S:      Maintained
1300 F:      drivers/video/fbdev/arcfb.c
1301 F:      drivers/video/fbdev/core/fb_defio.c
1302
1303 ARC PGU DRM DRIVER
1304 M:      Alexey Brodkin <abrodkin@synopsys.com>
1305 S:      Supported
1306 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1307 F:      drivers/gpu/drm/arc/
1308
1309 ARCNET NETWORK LAYER
1310 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1311 L:      netdev@vger.kernel.org
1312 S:      Maintained
1313 F:      drivers/net/arcnet/
1314 F:      include/uapi/linux/if_arcnet.h
1315
1316 ARM ARCHITECTED TIMER DRIVER
1317 M:      Mark Rutland <mark.rutland@arm.com>
1318 M:      Marc Zyngier <maz@kernel.org>
1319 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1320 S:      Maintained
1321 F:      arch/arm/include/asm/arch_timer.h
1322 F:      arch/arm64/include/asm/arch_timer.h
1323 F:      drivers/clocksource/arm_arch_timer.c
1324
1325 ARM HDLCD DRM DRIVER
1326 M:      Liviu Dudau <liviu.dudau@arm.com>
1327 S:      Supported
1328 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1329 F:      drivers/gpu/drm/arm/hdlcd_*
1330
1331 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1332 M:      Linus Walleij <linus.walleij@linaro.org>
1333 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1334 S:      Maintained
1335 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1336 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1337 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1338 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1339 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1340 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1341 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1342 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1343 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1344 F:      arch/arm/boot/dts/arm-realview-*
1345 F:      arch/arm/boot/dts/integrator*
1346 F:      arch/arm/boot/dts/versatile*
1347 F:      arch/arm/mach-integrator/
1348 F:      arch/arm/mach-realview/
1349 F:      arch/arm/mach-versatile/
1350 F:      arch/arm/plat-versatile/
1351 F:      drivers/bus/arm-integrator-lm.c
1352 F:      drivers/clk/versatile/
1353 F:      drivers/i2c/busses/i2c-versatile.c
1354 F:      drivers/irqchip/irq-versatile-fpga.c
1355 F:      drivers/mtd/maps/physmap-versatile.*
1356 F:      drivers/power/reset/arm-versatile-reboot.c
1357 F:      drivers/soc/versatile/
1358
1359 ARM KOMEDA DRM-KMS DRIVER
1360 M:      James (Qian) Wang <james.qian.wang@arm.com>
1361 M:      Liviu Dudau <liviu.dudau@arm.com>
1362 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1363 L:      Mali DP Maintainers <malidp@foss.arm.com>
1364 S:      Supported
1365 T:      git git://anongit.freedesktop.org/drm/drm-misc
1366 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1367 F:      Documentation/gpu/komeda-kms.rst
1368 F:      drivers/gpu/drm/arm/display/include/
1369 F:      drivers/gpu/drm/arm/display/komeda/
1370
1371 ARM MALI PANFROST DRM DRIVER
1372 M:      Rob Herring <robh@kernel.org>
1373 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1374 R:      Steven Price <steven.price@arm.com>
1375 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1376 L:      dri-devel@lists.freedesktop.org
1377 S:      Supported
1378 T:      git git://anongit.freedesktop.org/drm/drm-misc
1379 F:      drivers/gpu/drm/panfrost/
1380 F:      include/uapi/drm/panfrost_drm.h
1381
1382 ARM MALI-DP DRM DRIVER
1383 M:      Liviu Dudau <liviu.dudau@arm.com>
1384 M:      Brian Starkey <brian.starkey@arm.com>
1385 L:      Mali DP Maintainers <malidp@foss.arm.com>
1386 S:      Supported
1387 T:      git git://anongit.freedesktop.org/drm/drm-misc
1388 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1389 F:      Documentation/gpu/afbc.rst
1390 F:      drivers/gpu/drm/arm/
1391
1392 ARM MFM AND FLOPPY DRIVERS
1393 M:      Ian Molton <spyro@f2s.com>
1394 S:      Maintained
1395 F:      arch/arm/include/asm/floppy.h
1396 F:      arch/arm/mach-rpc/floppydma.S
1397
1398 ARM PMU PROFILING AND DEBUGGING
1399 M:      Will Deacon <will@kernel.org>
1400 M:      Mark Rutland <mark.rutland@arm.com>
1401 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1402 S:      Maintained
1403 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1404 F:      Documentation/devicetree/bindings/perf/
1405 F:      arch/arm*/include/asm/hw_breakpoint.h
1406 F:      arch/arm*/include/asm/perf_event.h
1407 F:      arch/arm*/kernel/hw_breakpoint.c
1408 F:      arch/arm*/kernel/perf_*
1409 F:      arch/arm/oprofile/common.c
1410 F:      drivers/perf/
1411 F:      include/linux/perf/arm_pmu.h
1412
1413 ARM PORT
1414 M:      Russell King <linux@armlinux.org.uk>
1415 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1416 S:      Odd Fixes
1417 W:      http://www.armlinux.org.uk/
1418 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1419 F:      arch/arm/
1420 X:      arch/arm/boot/dts/
1421
1422 ARM PRIMECELL AACI PL041 DRIVER
1423 M:      Russell King <linux@armlinux.org.uk>
1424 S:      Odd Fixes
1425 F:      sound/arm/aaci.*
1426
1427 ARM PRIMECELL BUS SUPPORT
1428 M:      Russell King <linux@armlinux.org.uk>
1429 S:      Odd Fixes
1430 F:      drivers/amba/
1431 F:      include/linux/amba/bus.h
1432
1433 ARM PRIMECELL CLCD PL110 DRIVER
1434 M:      Russell King <linux@armlinux.org.uk>
1435 S:      Odd Fixes
1436 F:      drivers/video/fbdev/amba-clcd.*
1437
1438 ARM PRIMECELL KMI PL050 DRIVER
1439 M:      Russell King <linux@armlinux.org.uk>
1440 S:      Odd Fixes
1441 F:      drivers/input/serio/ambakmi.*
1442 F:      include/linux/amba/kmi.h
1443
1444 ARM PRIMECELL MMCI PL180/1 DRIVER
1445 M:      Russell King <linux@armlinux.org.uk>
1446 S:      Odd Fixes
1447 F:      drivers/mmc/host/mmci.*
1448 F:      include/linux/amba/mmci.h
1449
1450 ARM PRIMECELL SSP PL022 SPI DRIVER
1451 M:      Linus Walleij <linus.walleij@linaro.org>
1452 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1453 S:      Maintained
1454 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1455 F:      drivers/spi/spi-pl022.c
1456
1457 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1458 M:      Russell King <linux@armlinux.org.uk>
1459 S:      Odd Fixes
1460 F:      drivers/tty/serial/amba-pl01*.c
1461 F:      include/linux/amba/serial.h
1462
1463 ARM PRIMECELL VIC PL190/PL192 DRIVER
1464 M:      Linus Walleij <linus.walleij@linaro.org>
1465 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1466 S:      Maintained
1467 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1468 F:      drivers/irqchip/irq-vic.c
1469
1470 ARM SMC WATCHDOG DRIVER
1471 M:      Julius Werner <jwerner@chromium.org>
1472 R:      Evan Benn <evanbenn@chromium.org>
1473 S:      Maintained
1474 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1475 F:      drivers/watchdog/arm_smc_wdt.c
1476
1477 ARM SMMU DRIVERS
1478 M:      Will Deacon <will@kernel.org>
1479 R:      Robin Murphy <robin.murphy@arm.com>
1480 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1481 S:      Maintained
1482 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1483 F:      drivers/iommu/arm/
1484 F:      drivers/iommu/io-pgtable-arm*
1485
1486 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1487 M:      Arnd Bergmann <arnd@arndb.de>
1488 M:      Olof Johansson <olof@lixom.net>
1489 M:      soc@kernel.org
1490 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1491 S:      Maintained
1492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1493 F:      arch/arm/boot/dts/Makefile
1494 F:      arch/arm64/boot/dts/Makefile
1495
1496 ARM SUB-ARCHITECTURES
1497 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1498 S:      Maintained
1499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1500 F:      arch/arm/mach-*/
1501 F:      arch/arm/plat-*/
1502
1503 ARM/ACTIONS SEMI ARCHITECTURE
1504 M:      Andreas Färber <afaerber@suse.de>
1505 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1506 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1507 S:      Maintained
1508 F:      Documentation/devicetree/bindings/arm/actions.yaml
1509 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1510 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1511 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1512 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1513 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1514 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1515 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1516 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1517 F:      arch/arm/boot/dts/owl-*
1518 F:      arch/arm/mach-actions/
1519 F:      arch/arm64/boot/dts/actions/
1520 F:      drivers/clk/actions/
1521 F:      drivers/clocksource/timer-owl*
1522 F:      drivers/dma/owl-dma.c
1523 F:      drivers/i2c/busses/i2c-owl.c
1524 F:      drivers/irqchip/irq-owl-sirq.c
1525 F:      drivers/mmc/host/owl-mmc.c
1526 F:      drivers/pinctrl/actions/*
1527 F:      drivers/soc/actions/
1528 F:      include/dt-bindings/power/owl-*
1529 F:      include/dt-bindings/reset/actions,*
1530 F:      include/linux/soc/actions/
1531 N:      owl
1532
1533 ARM/ADS SPHERE MACHINE SUPPORT
1534 M:      Lennert Buytenhek <kernel@wantstofly.org>
1535 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1536 S:      Maintained
1537
1538 ARM/AFEB9260 MACHINE SUPPORT
1539 M:      Sergey Lapin <slapin@ossfans.org>
1540 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1541 S:      Maintained
1542
1543 ARM/AJECO 1ARM MACHINE SUPPORT
1544 M:      Lennert Buytenhek <kernel@wantstofly.org>
1545 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1546 S:      Maintained
1547
1548 ARM/Allwinner SoC Clock Support
1549 M:      Emilio López <emilio@elopez.com.ar>
1550 S:      Maintained
1551 F:      drivers/clk/sunxi/
1552
1553 ARM/Allwinner sunXi SoC support
1554 M:      Maxime Ripard <mripard@kernel.org>
1555 M:      Chen-Yu Tsai <wens@csie.org>
1556 R:      Jernej Skrabec <jernej.skrabec@siol.net>
1557 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1558 S:      Maintained
1559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1560 F:      arch/arm/mach-sunxi/
1561 F:      arch/arm64/boot/dts/allwinner/
1562 F:      drivers/clk/sunxi-ng/
1563 F:      drivers/pinctrl/sunxi/
1564 F:      drivers/soc/sunxi/
1565 N:      sun[x456789]i
1566 N:      sun50i
1567
1568 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1569 M:      Neil Armstrong <narmstrong@baylibre.com>
1570 M:      Jerome Brunet <jbrunet@baylibre.com>
1571 L:      linux-amlogic@lists.infradead.org
1572 S:      Maintained
1573 F:      Documentation/devicetree/bindings/clock/amlogic*
1574 F:      drivers/clk/meson/
1575 F:      include/dt-bindings/clock/gxbb*
1576 F:      include/dt-bindings/clock/meson*
1577
1578 ARM/Amlogic Meson SoC Crypto Drivers
1579 M:      Corentin Labbe <clabbe@baylibre.com>
1580 L:      linux-crypto@vger.kernel.org
1581 L:      linux-amlogic@lists.infradead.org
1582 S:      Maintained
1583 F:      Documentation/devicetree/bindings/crypto/amlogic*
1584 F:      drivers/crypto/amlogic/
1585
1586 ARM/Amlogic Meson SoC Sound Drivers
1587 M:      Jerome Brunet <jbrunet@baylibre.com>
1588 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1589 S:      Maintained
1590 F:      Documentation/devicetree/bindings/sound/amlogic*
1591 F:      sound/soc/meson/
1592
1593 ARM/Amlogic Meson SoC support
1594 M:      Kevin Hilman <khilman@baylibre.com>
1595 R:      Neil Armstrong <narmstrong@baylibre.com>
1596 R:      Jerome Brunet <jbrunet@baylibre.com>
1597 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1598 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1599 L:      linux-amlogic@lists.infradead.org
1600 S:      Maintained
1601 W:      http://linux-meson.com/
1602 F:      arch/arm/boot/dts/meson*
1603 F:      arch/arm/mach-meson/
1604 F:      arch/arm64/boot/dts/amlogic/
1605 F:      drivers/mmc/host/meson*
1606 F:      drivers/pinctrl/meson/
1607 F:      drivers/rtc/rtc-meson*
1608 F:      drivers/soc/amlogic/
1609 N:      meson
1610
1611 ARM/Annapurna Labs ALPINE ARCHITECTURE
1612 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1613 M:      Antoine Tenart <atenart@kernel.org>
1614 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1615 S:      Maintained
1616 F:      arch/arm/boot/dts/alpine*
1617 F:      arch/arm/mach-alpine/
1618 F:      arch/arm64/boot/dts/amazon/
1619 F:      drivers/*/*alpine*
1620
1621 ARM/ARTPEC MACHINE SUPPORT
1622 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1623 M:      Lars Persson <lars.persson@axis.com>
1624 L:      linux-arm-kernel@axis.com
1625 S:      Maintained
1626 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1627 F:      arch/arm/boot/dts/artpec6*
1628 F:      arch/arm/mach-artpec
1629 F:      drivers/clk/axis
1630 F:      drivers/crypto/axis
1631 F:      drivers/mmc/host/usdhi6rol0.c
1632 F:      drivers/pinctrl/pinctrl-artpec*
1633
1634 ARM/ASPEED I2C DRIVER
1635 M:      Brendan Higgins <brendanhiggins@google.com>
1636 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1637 R:      Joel Stanley <joel@jms.id.au>
1638 L:      linux-i2c@vger.kernel.org
1639 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1640 S:      Maintained
1641 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1642 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1643 F:      drivers/i2c/busses/i2c-aspeed.c
1644 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1645
1646 ARM/ASPEED MACHINE SUPPORT
1647 M:      Joel Stanley <joel@jms.id.au>
1648 R:      Andrew Jeffery <andrew@aj.id.au>
1649 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1650 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1651 S:      Supported
1652 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1654 F:      arch/arm/boot/dts/aspeed-*
1655 F:      arch/arm/mach-aspeed/
1656 N:      aspeed
1657
1658 ARM/BITMAIN ARCHITECTURE
1659 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1660 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1661 S:      Maintained
1662 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1663 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1664 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1665 F:      arch/arm64/boot/dts/bitmain/
1666 F:      drivers/clk/clk-bm1880.c
1667 F:      drivers/pinctrl/pinctrl-bm1880.c
1668
1669 ARM/CALXEDA HIGHBANK ARCHITECTURE
1670 M:      Andre Przywara <andre.przywara@arm.com>
1671 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1672 S:      Maintained
1673 F:      arch/arm/boot/dts/ecx-*.dts*
1674 F:      arch/arm/boot/dts/highbank.dts
1675 F:      arch/arm/mach-highbank/
1676
1677 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1678 M:      Krzysztof Halasa <khalasa@piap.pl>
1679 S:      Maintained
1680 F:      arch/arm/mach-cns3xxx/
1681
1682 ARM/CAVIUM THUNDER NETWORK DRIVER
1683 M:      Sunil Goutham <sgoutham@marvell.com>
1684 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1685 S:      Supported
1686 F:      drivers/net/ethernet/cavium/thunder/
1687
1688 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1689 M:      Lukasz Majewski <lukma@denx.de>
1690 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1691 S:      Maintained
1692 F:      arch/arm/mach-ep93xx/ts72xx.c
1693
1694 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1695 M:      Alexander Shiyan <shc_work@mail.ru>
1696 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1697 S:      Odd Fixes
1698 N:      clps711x
1699
1700 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1701 M:      Lennert Buytenhek <kernel@wantstofly.org>
1702 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1703 S:      Maintained
1704
1705 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1706 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1707 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1708 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1709 S:      Maintained
1710 F:      arch/arm/mach-ep93xx/
1711 F:      arch/arm/mach-ep93xx/include/mach/
1712
1713 ARM/CLKDEV SUPPORT
1714 M:      Russell King <linux@armlinux.org.uk>
1715 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1716 S:      Maintained
1717 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1718 F:      drivers/clk/clkdev.c
1719
1720 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1721 M:      Baruch Siach <baruch@tkos.co.il>
1722 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1723 S:      Maintained
1724 F:      arch/arm/boot/dts/cx92755*
1725 N:      digicolor
1726
1727 ARM/CONTEC MICRO9 MACHINE SUPPORT
1728 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1729 S:      Maintained
1730 F:      arch/arm/mach-ep93xx/micro9.c
1731
1732 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1733 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1734 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1735 R:      Mike Leach <mike.leach@linaro.org>
1736 R:      Leo Yan <leo.yan@linaro.org>
1737 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1738 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1739 S:      Maintained
1740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1741 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1742 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1743 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1744 F:      Documentation/devicetree/bindings/arm/coresight.txt
1745 F:      Documentation/trace/coresight/*
1746 F:      drivers/hwtracing/coresight/*
1747 F:      include/dt-bindings/arm/coresight-cti-dt.h
1748 F:      tools/perf/arch/arm/util/auxtrace.c
1749 F:      tools/perf/arch/arm/util/cs-etm.c
1750 F:      tools/perf/arch/arm/util/cs-etm.h
1751 F:      tools/perf/arch/arm/util/pmu.c
1752 F:      tools/perf/util/cs-etm-decoder/*
1753 F:      tools/perf/util/cs-etm.*
1754
1755 ARM/CORGI MACHINE SUPPORT
1756 M:      Richard Purdie <rpurdie@rpsys.net>
1757 S:      Maintained
1758
1759 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1760 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1761 M:      Linus Walleij <linus.walleij@linaro.org>
1762 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1763 S:      Maintained
1764 T:      git git://github.com/ulli-kroll/linux.git
1765 F:      Documentation/devicetree/bindings/arm/gemini.txt
1766 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1767 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1768 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1769 F:      arch/arm/mach-gemini/
1770 F:      drivers/net/ethernet/cortina/
1771 F:      drivers/pinctrl/pinctrl-gemini.c
1772 F:      drivers/rtc/rtc-ftrtc010.c
1773
1774 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1775 M:      Barry Song <baohua@kernel.org>
1776 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1777 S:      Maintained
1778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1779 F:      arch/arm/boot/dts/prima2*
1780 F:      arch/arm/mach-prima2/
1781 F:      drivers/clk/sirf/
1782 F:      drivers/clocksource/timer-atlas7.c
1783 F:      drivers/clocksource/timer-prima2.c
1784 X:      drivers/gnss
1785 N:      [^a-z]sirf
1786
1787 ARM/CZ.NIC TURRIS MOX SUPPORT
1788 M:      Marek Behun <marek.behun@nic.cz>
1789 S:      Maintained
1790 W:      http://mox.turris.cz
1791 F:      Documentation/ABI/testing/debugfs-moxtet
1792 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1793 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1794 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1795 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1796 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1797 F:      drivers/bus/moxtet.c
1798 F:      drivers/firmware/turris-mox-rwtm.c
1799 F:      drivers/gpio/gpio-moxtet.c
1800 F:      include/linux/moxtet.h
1801
1802 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1803 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1804 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1805 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1806 S:      Maintained
1807 N:      efm32
1808
1809 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1810 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1811 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1812 S:      Maintained
1813 F:      arch/arm/mach-pxa/ezx.c
1814
1815 ARM/FARADAY FA526 PORT
1816 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1817 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1818 S:      Maintained
1819 T:      git git://git.berlios.de/gemini-board
1820 F:      arch/arm/mm/*-fa*
1821
1822 ARM/FOOTBRIDGE ARCHITECTURE
1823 M:      Russell King <linux@armlinux.org.uk>
1824 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1825 S:      Maintained
1826 W:      http://www.armlinux.org.uk/
1827 F:      arch/arm/include/asm/hardware/dec21285.h
1828 F:      arch/arm/mach-footbridge/
1829
1830 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1831 M:      Shawn Guo <shawnguo@kernel.org>
1832 M:      Sascha Hauer <s.hauer@pengutronix.de>
1833 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1834 R:      Fabio Estevam <festevam@gmail.com>
1835 R:      NXP Linux Team <linux-imx@nxp.com>
1836 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1837 S:      Maintained
1838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1839 X:      drivers/media/i2c/
1840 N:      imx
1841 N:      mxs
1842
1843 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1844 M:      Shawn Guo <shawnguo@kernel.org>
1845 M:      Li Yang <leoyang.li@nxp.com>
1846 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1847 S:      Maintained
1848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1849 F:      arch/arm/boot/dts/ls1021a*
1850 F:      arch/arm64/boot/dts/freescale/fsl-*
1851 F:      arch/arm64/boot/dts/freescale/qoriq-*
1852
1853 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1854 M:      Shawn Guo <shawnguo@kernel.org>
1855 M:      Sascha Hauer <s.hauer@pengutronix.de>
1856 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1857 R:      Stefan Agner <stefan@agner.ch>
1858 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1859 S:      Maintained
1860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1861 F:      arch/arm/boot/dts/vf*
1862 F:      arch/arm/mach-imx/*vf610*
1863
1864 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1865 M:      Lennert Buytenhek <kernel@wantstofly.org>
1866 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1867 S:      Maintained
1868
1869 ARM/GUMSTIX MACHINE SUPPORT
1870 M:      Steve Sakoman <sakoman@gmail.com>
1871 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1872 S:      Maintained
1873
1874 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1875 M:      Philipp Zabel <philipp.zabel@gmail.com>
1876 M:      Paul Parsons <lost.distance@yahoo.com>
1877 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1878 S:      Maintained
1879 F:      arch/arm/mach-pxa/hx4700.c
1880 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1881 F:      sound/soc/pxa/hx4700.c
1882
1883 ARM/HISILICON SOC SUPPORT
1884 M:      Wei Xu <xuwei5@hisilicon.com>
1885 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1886 S:      Supported
1887 W:      http://www.hisilicon.com
1888 T:      git git://github.com/hisilicon/linux-hisi.git
1889 F:      arch/arm/boot/dts/hi3*
1890 F:      arch/arm/boot/dts/hip*
1891 F:      arch/arm/boot/dts/hisi*
1892 F:      arch/arm/mach-hisi/
1893 F:      arch/arm64/boot/dts/hisilicon/
1894
1895 ARM/HP JORNADA 7XX MACHINE SUPPORT
1896 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1897 S:      Maintained
1898 W:      www.jlime.com
1899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1900 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1901 F:      arch/arm/mach-sa1100/jornada720.c
1902
1903 ARM/IGEP MACHINE SUPPORT
1904 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1905 M:      Javier Martinez Canillas <javier@dowhile0.org>
1906 L:      linux-omap@vger.kernel.org
1907 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1908 S:      Maintained
1909 F:      arch/arm/boot/dts/omap3-igep*
1910
1911 ARM/INCOME PXA270 SUPPORT
1912 M:      Marek Vasut <marek.vasut@gmail.com>
1913 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1914 S:      Maintained
1915 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1916
1917 ARM/INTEL IOP32X ARM ARCHITECTURE
1918 M:      Lennert Buytenhek <kernel@wantstofly.org>
1919 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1920 S:      Maintained
1921
1922 ARM/INTEL IQ81342EX MACHINE SUPPORT
1923 M:      Lennert Buytenhek <kernel@wantstofly.org>
1924 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1925 S:      Maintained
1926
1927 ARM/INTEL IXDP2850 MACHINE SUPPORT
1928 M:      Lennert Buytenhek <kernel@wantstofly.org>
1929 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1930 S:      Maintained
1931
1932 ARM/INTEL IXP4XX ARM ARCHITECTURE
1933 M:      Linus Walleij <linusw@kernel.org>
1934 M:      Imre Kaloz <kaloz@openwrt.org>
1935 M:      Krzysztof Halasa <khalasa@piap.pl>
1936 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1937 S:      Maintained
1938 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1939 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1940 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1941 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1942 F:      arch/arm/mach-ixp4xx/
1943 F:      drivers/clocksource/timer-ixp4xx.c
1944 F:      drivers/gpio/gpio-ixp4xx.c
1945 F:      drivers/irqchip/irq-ixp4xx.c
1946 F:      include/linux/irqchip/irq-ixp4xx.h
1947 F:      include/linux/platform_data/timer-ixp4xx.h
1948
1949 ARM/INTEL KEEMBAY ARCHITECTURE
1950 M:      Paul J. Murphy <paul.j.murphy@intel.com>
1951 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
1952 S:      Maintained
1953 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
1954 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
1955 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
1956
1957 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1958 M:      Jonathan Cameron <jic23@cam.ac.uk>
1959 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1960 S:      Maintained
1961 F:      arch/arm/mach-pxa/stargate2.c
1962 F:      drivers/pcmcia/pxa2xx_stargate2.c
1963
1964 ARM/INTEL XSC3 (MANZANO) ARM CORE
1965 M:      Lennert Buytenhek <kernel@wantstofly.org>
1966 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1967 S:      Maintained
1968
1969 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1970 M:      Lennert Buytenhek <kernel@wantstofly.org>
1971 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1972 S:      Maintained
1973
1974 ARM/LG1K ARCHITECTURE
1975 M:      Chanho Min <chanho.min@lge.com>
1976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1977 S:      Maintained
1978 F:      arch/arm64/boot/dts/lg/
1979
1980 ARM/LOGICPD PXA270 MACHINE SUPPORT
1981 M:      Lennert Buytenhek <kernel@wantstofly.org>
1982 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1983 S:      Maintained
1984
1985 ARM/LPC18XX ARCHITECTURE
1986 M:      Vladimir Zapolskiy <vz@mleia.com>
1987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1988 S:      Maintained
1989 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1990 F:      arch/arm/boot/dts/lpc43*
1991 F:      drivers/i2c/busses/i2c-lpc2k.c
1992 F:      drivers/memory/pl172.c
1993 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
1994 F:      drivers/rtc/rtc-lpc24xx.c
1995 N:      lpc18xx
1996
1997 ARM/LPC32XX SOC SUPPORT
1998 M:      Vladimir Zapolskiy <vz@mleia.com>
1999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2000 S:      Maintained
2001 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2002 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2003 F:      arch/arm/boot/dts/lpc32*
2004 F:      arch/arm/mach-lpc32xx/
2005 F:      drivers/i2c/busses/i2c-pnx.c
2006 F:      drivers/net/ethernet/nxp/lpc_eth.c
2007 F:      drivers/usb/host/ohci-nxp.c
2008 F:      drivers/watchdog/pnx4008_wdt.c
2009 N:      lpc32xx
2010
2011 ARM/MAGICIAN MACHINE SUPPORT
2012 M:      Philipp Zabel <philipp.zabel@gmail.com>
2013 S:      Maintained
2014
2015 ARM/Marvell Dove/MV78xx0/Orion SOC support
2016 M:      Andrew Lunn <andrew@lunn.ch>
2017 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2018 M:      Gregory Clement <gregory.clement@bootlin.com>
2019 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2020 S:      Maintained
2021 T:      git git://git.infradead.org/linux-mvebu.git
2022 F:      Documentation/devicetree/bindings/soc/dove/
2023 F:      arch/arm/boot/dts/dove*
2024 F:      arch/arm/boot/dts/orion5x*
2025 F:      arch/arm/mach-dove/
2026 F:      arch/arm/mach-mv78xx0/
2027 F:      arch/arm/mach-orion5x/
2028 F:      arch/arm/plat-orion/
2029 F:      drivers/soc/dove/
2030
2031 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2032 M:      Andrew Lunn <andrew@lunn.ch>
2033 M:      Gregory Clement <gregory.clement@bootlin.com>
2034 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2035 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2036 S:      Maintained
2037 T:      git git://git.infradead.org/linux-mvebu.git
2038 F:      arch/arm/boot/dts/armada*
2039 F:      arch/arm/boot/dts/kirkwood*
2040 F:      arch/arm/configs/mvebu_*_defconfig
2041 F:      arch/arm/mach-mvebu/
2042 F:      arch/arm64/boot/dts/marvell/armada*
2043 F:      arch/arm64/boot/dts/marvell/cn913*
2044 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2045 F:      drivers/cpufreq/armada-8k-cpufreq.c
2046 F:      drivers/cpufreq/mvebu-cpufreq.c
2047 F:      drivers/irqchip/irq-armada-370-xp.c
2048 F:      drivers/irqchip/irq-mvebu-*
2049 F:      drivers/pinctrl/mvebu/
2050 F:      drivers/rtc/rtc-armada38x.c
2051
2052 ARM/Mediatek RTC DRIVER
2053 M:      Eddie Huang <eddie.huang@mediatek.com>
2054 M:      Sean Wang <sean.wang@mediatek.com>
2055 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2056 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2057 S:      Maintained
2058 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2059 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2060 F:      drivers/rtc/rtc-mt2712.c
2061 F:      drivers/rtc/rtc-mt6397.c
2062 F:      drivers/rtc/rtc-mt7622.c
2063
2064 ARM/Mediatek SoC support
2065 M:      Matthias Brugger <matthias.bgg@gmail.com>
2066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2067 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2068 S:      Maintained
2069 W:      https://mtk.bcnfs.org/
2070 C:      irc://chat.freenode.net/linux-mediatek
2071 F:      arch/arm/boot/dts/mt6*
2072 F:      arch/arm/boot/dts/mt7*
2073 F:      arch/arm/boot/dts/mt8*
2074 F:      arch/arm/mach-mediatek/
2075 F:      arch/arm64/boot/dts/mediatek/
2076 F:      drivers/soc/mediatek/
2077 N:      mtk
2078 N:      mt[678]
2079 K:      mediatek
2080
2081 ARM/Mediatek USB3 PHY DRIVER
2082 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2083 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2084 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2085 S:      Maintained
2086 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2087 F:      drivers/phy/mediatek/
2088
2089 ARM/Microchip (AT91) SoC support
2090 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2091 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2092 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2093 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2094 S:      Supported
2095 W:      http://www.linux4sam.org
2096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2097 F:      arch/arm/boot/dts/at91*.dts
2098 F:      arch/arm/boot/dts/at91*.dtsi
2099 F:      arch/arm/boot/dts/sama*.dts
2100 F:      arch/arm/boot/dts/sama*.dtsi
2101 F:      arch/arm/include/debug/at91.S
2102 F:      arch/arm/mach-at91/
2103 F:      drivers/memory/atmel*
2104 F:      drivers/watchdog/sama5d4_wdt.c
2105 F:      include/soc/at91/
2106 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2107 X:      drivers/net/wireless/atmel/
2108 N:      at91
2109 N:      atmel
2110
2111 ARM/Microchip Sparx5 SoC support
2112 M:      Lars Povlsen <lars.povlsen@microchip.com>
2113 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2114 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
2115 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2116 S:      Supported
2117 T:      git git://github.com/microchip-ung/linux-upstream.git
2118 F:      arch/arm64/boot/dts/microchip/
2119 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2120 N:      sparx5
2121
2122 Microchip Timer Counter Block (TCB) Capture Driver
2123 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2124 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2125 L:      linux-iio@vger.kernel.org
2126 S:      Maintained
2127 F:      drivers/counter/microchip-tcb-capture.c
2128
2129 ARM/MIOA701 MACHINE SUPPORT
2130 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2131 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2132 S:      Maintained
2133 F:      arch/arm/mach-pxa/mioa701.c
2134
2135 ARM/MStar/Sigmastar Armv7 SoC support
2136 M:      Daniel Palmer <daniel@thingy.jp>
2137 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2138 S:      Maintained
2139 W:      http://linux-chenxing.org/
2140 F:      Documentation/devicetree/bindings/arm/mstar/*
2141 F:      arch/arm/boot/dts/mstar-*
2142 F:      arch/arm/mach-mstar/
2143
2144 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2145 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2146 S:      Maintained
2147
2148 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2149 M:      Linus Walleij <linus.walleij@linaro.org>
2150 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2151 S:      Maintained
2152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2153 F:      Documentation/devicetree/bindings/arm/ste-*
2154 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2155 F:      Documentation/devicetree/bindings/arm/ux500/
2156 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2157 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2158 F:      arch/arm/boot/dts/ste-*
2159 F:      arch/arm/mach-nomadik/
2160 F:      arch/arm/mach-u300/
2161 F:      arch/arm/mach-ux500/
2162 F:      drivers/clk/clk-nomadik.c
2163 F:      drivers/clk/clk-u300.c
2164 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2165 F:      drivers/clocksource/timer-u300.c
2166 F:      drivers/dma/coh901318*
2167 F:      drivers/dma/ste_dma40*
2168 F:      drivers/hwspinlock/u8500_hsem.c
2169 F:      drivers/i2c/busses/i2c-nomadik.c
2170 F:      drivers/i2c/busses/i2c-stu300.c
2171 F:      drivers/iio/adc/ab8500-gpadc.c
2172 F:      drivers/mfd/ab3100*
2173 F:      drivers/mfd/ab8500*
2174 F:      drivers/mfd/abx500*
2175 F:      drivers/mfd/db8500*
2176 F:      drivers/mfd/dbx500*
2177 F:      drivers/pinctrl/nomadik/
2178 F:      drivers/pinctrl/pinctrl-coh901*
2179 F:      drivers/pinctrl/pinctrl-u300.c
2180 F:      drivers/rtc/rtc-ab3100.c
2181 F:      drivers/rtc/rtc-ab8500.c
2182 F:      drivers/rtc/rtc-coh901331.c
2183 F:      drivers/rtc/rtc-pl031.c
2184 F:      drivers/soc/ux500/
2185 F:      drivers/watchdog/coh901327_wdt.c
2186
2187 ARM/NUVOTON NPCM ARCHITECTURE
2188 M:      Avi Fishman <avifishman70@gmail.com>
2189 M:      Tomer Maimon <tmaimon77@gmail.com>
2190 M:      Tali Perry <tali.perry1@gmail.com>
2191 R:      Patrick Venture <venture@google.com>
2192 R:      Nancy Yuen <yuenn@google.com>
2193 R:      Benjamin Fair <benjaminfair@google.com>
2194 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2195 S:      Supported
2196 F:      Documentation/devicetree/bindings/*/*/*npcm*
2197 F:      Documentation/devicetree/bindings/*/*npcm*
2198 F:      arch/arm/boot/dts/nuvoton-npcm*
2199 F:      arch/arm/mach-npcm/
2200 F:      drivers/*/*npcm*
2201 F:      drivers/*/*/*npcm*
2202 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2203
2204 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2205 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2206 S:      Orphan
2207 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2208 F:      arch/arm/mach-s3c/gta02.h
2209 F:      arch/arm/mach-s3c/mach-gta02.c
2210
2211 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2212 M:      Alexander Clouter <alex@digriz.org.uk>
2213 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2214 S:      Maintained
2215 W:      http://www.digriz.org.uk/ts78xx/kernel
2216 F:      arch/arm/mach-orion5x/ts78xx-*
2217
2218 ARM/OXNAS platform support
2219 M:      Neil Armstrong <narmstrong@baylibre.com>
2220 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2221 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2222 S:      Maintained
2223 F:      arch/arm/boot/dts/ox8*.dts*
2224 F:      arch/arm/mach-oxnas/
2225 F:      drivers/power/reset/oxnas-restart.c
2226 N:      oxnas
2227
2228 ARM/PALM TREO SUPPORT
2229 M:      Tomas Cech <sleep_walker@suse.com>
2230 L:      linux-arm-kernel@lists.infradead.org
2231 S:      Maintained
2232 W:      http://hackndev.com
2233 F:      arch/arm/mach-pxa/palmtreo.*
2234
2235 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2236 M:      Marek Vasut <marek.vasut@gmail.com>
2237 L:      linux-arm-kernel@lists.infradead.org
2238 S:      Maintained
2239 W:      http://hackndev.com
2240 F:      arch/arm/mach-pxa/include/mach/palmld.h
2241 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2242 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2243 F:      arch/arm/mach-pxa/palmld.c
2244 F:      arch/arm/mach-pxa/palmt5.*
2245 F:      arch/arm/mach-pxa/palmtc.c
2246 F:      arch/arm/mach-pxa/palmte2.*
2247 F:      arch/arm/mach-pxa/palmtx.c
2248
2249 ARM/PALMZ72 SUPPORT
2250 M:      Sergey Lapin <slapin@ossfans.org>
2251 L:      linux-arm-kernel@lists.infradead.org
2252 S:      Maintained
2253 W:      http://hackndev.com
2254 F:      arch/arm/mach-pxa/palmz72.*
2255
2256 ARM/PLEB SUPPORT
2257 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2258 S:      Maintained
2259 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2260
2261 ARM/PT DIGITAL BOARD PORT
2262 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2263 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2264 S:      Maintained
2265 W:      http://www.armlinux.org.uk/
2266
2267 ARM/QUALCOMM SUPPORT
2268 M:      Andy Gross <agross@kernel.org>
2269 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2270 L:      linux-arm-msm@vger.kernel.org
2271 S:      Maintained
2272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2273 F:      Documentation/devicetree/bindings/*/qcom*
2274 F:      Documentation/devicetree/bindings/soc/qcom/
2275 F:      arch/arm/boot/dts/qcom-*.dts
2276 F:      arch/arm/boot/dts/qcom-*.dtsi
2277 F:      arch/arm/mach-qcom/
2278 F:      arch/arm64/boot/dts/qcom/
2279 F:      drivers/*/*/qcom*
2280 F:      drivers/*/*/qcom/
2281 F:      drivers/*/pm8???-*
2282 F:      drivers/*/qcom*
2283 F:      drivers/*/qcom/
2284 F:      drivers/bluetooth/btqcomsmd.c
2285 F:      drivers/clocksource/timer-qcom.c
2286 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2287 F:      drivers/extcon/extcon-qcom*
2288 F:      drivers/i2c/busses/i2c-qcom-geni.c
2289 F:      drivers/i2c/busses/i2c-qup.c
2290 F:      drivers/iommu/msm*
2291 F:      drivers/mfd/ssbi.c
2292 F:      drivers/mmc/host/mmci_qcom*
2293 F:      drivers/mmc/host/sdhci-msm.c
2294 F:      drivers/pci/controller/dwc/pcie-qcom.c
2295 F:      drivers/phy/qualcomm/
2296 F:      drivers/power/*/msm*
2297 F:      drivers/reset/reset-qcom-*
2298 F:      drivers/scsi/ufs/ufs-qcom*
2299 F:      drivers/spi/spi-geni-qcom.c
2300 F:      drivers/spi/spi-qcom-qspi.c
2301 F:      drivers/spi/spi-qup.c
2302 F:      drivers/tty/serial/msm_serial.c
2303 F:      drivers/usb/dwc3/dwc3-qcom.c
2304 F:      include/dt-bindings/*/qcom*
2305 F:      include/linux/*/qcom*
2306
2307 ARM/RADISYS ENP2611 MACHINE SUPPORT
2308 M:      Lennert Buytenhek <kernel@wantstofly.org>
2309 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2310 S:      Maintained
2311
2312 ARM/RDA MICRO ARCHITECTURE
2313 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2314 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2315 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2316 S:      Maintained
2317 F:      Documentation/devicetree/bindings/arm/rda.yaml
2318 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2319 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2320 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2321 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2322 F:      arch/arm/boot/dts/rda8810pl-*
2323 F:      drivers/clocksource/timer-rda.c
2324 F:      drivers/gpio/gpio-rda.c
2325 F:      drivers/irqchip/irq-rda-intc.c
2326 F:      drivers/tty/serial/rda-uart.c
2327
2328 ARM/REALTEK ARCHITECTURE
2329 M:      Andreas Färber <afaerber@suse.de>
2330 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2331 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2332 S:      Maintained
2333 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2334 F:      arch/arm/boot/dts/rtd*
2335 F:      arch/arm/mach-realtek/
2336 F:      arch/arm64/boot/dts/realtek/
2337
2338 ARM/RENESAS ARM64 ARCHITECTURE
2339 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2340 M:      Magnus Damm <magnus.damm@gmail.com>
2341 L:      linux-renesas-soc@vger.kernel.org
2342 S:      Supported
2343 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2345 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2346 F:      arch/arm64/boot/dts/renesas/
2347 F:      drivers/soc/renesas/
2348 F:      include/linux/soc/renesas/
2349
2350 ARM/RISCPC ARCHITECTURE
2351 M:      Russell King <linux@armlinux.org.uk>
2352 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2353 S:      Maintained
2354 W:      http://www.armlinux.org.uk/
2355 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2356 F:      arch/arm/include/asm/hardware/ioc.h
2357 F:      arch/arm/include/asm/hardware/iomd.h
2358 F:      arch/arm/include/asm/hardware/memc.h
2359 F:      arch/arm/mach-rpc/
2360 F:      drivers/net/ethernet/8390/etherh.c
2361 F:      drivers/net/ethernet/i825xx/ether1*
2362 F:      drivers/net/ethernet/seeq/ether3*
2363 F:      drivers/scsi/arm/
2364
2365 ARM/Rockchip SoC support
2366 M:      Heiko Stuebner <heiko@sntech.de>
2367 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2368 L:      linux-rockchip@lists.infradead.org
2369 S:      Maintained
2370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2371 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2372 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2373 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2374 F:      arch/arm/boot/dts/rk3*
2375 F:      arch/arm/boot/dts/rv1108*
2376 F:      arch/arm/mach-rockchip/
2377 F:      drivers/*/*/*rockchip*
2378 F:      drivers/*/*rockchip*
2379 F:      drivers/clk/rockchip/
2380 F:      drivers/i2c/busses/i2c-rk3x.c
2381 F:      sound/soc/rockchip/
2382 N:      rockchip
2383
2384 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2385 M:      Krzysztof Kozlowski <krzk@kernel.org>
2386 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2387 L:      linux-samsung-soc@vger.kernel.org
2388 S:      Maintained
2389 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2390 F:      Documentation/arm/samsung/
2391 F:      Documentation/devicetree/bindings/arm/samsung/
2392 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2393 F:      arch/arm/boot/dts/exynos*
2394 F:      arch/arm/boot/dts/s3c*
2395 F:      arch/arm/boot/dts/s5p*
2396 F:      arch/arm/mach-exynos*/
2397 F:      arch/arm/mach-s3c/
2398 F:      arch/arm/mach-s5p*/
2399 F:      arch/arm64/boot/dts/exynos/
2400 F:      drivers/*/*/*s3c24*
2401 F:      drivers/*/*s3c24*
2402 F:      drivers/*/*s3c64xx*
2403 F:      drivers/*/*s5pv210*
2404 F:      drivers/memory/samsung/
2405 F:      drivers/soc/samsung/
2406 F:      drivers/tty/serial/samsung*
2407 F:      include/linux/soc/samsung/
2408 N:      exynos
2409 N:      s3c2410
2410 N:      s3c64xx
2411 N:      s5pv210
2412
2413 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2414 M:      Andrzej Hajda <a.hajda@samsung.com>
2415 L:      linux-arm-kernel@lists.infradead.org
2416 L:      linux-media@vger.kernel.org
2417 S:      Maintained
2418 F:      drivers/media/platform/s5p-g2d/
2419
2420 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2421 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2422 L:      linux-samsung-soc@vger.kernel.org
2423 L:      linux-media@vger.kernel.org
2424 S:      Maintained
2425 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2426 F:      drivers/media/cec/platform/s5p/
2427
2428 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2429 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2430 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2431 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2432 L:      linux-arm-kernel@lists.infradead.org
2433 L:      linux-media@vger.kernel.org
2434 S:      Maintained
2435 F:      drivers/media/platform/s5p-jpeg/
2436
2437 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2438 M:      Andrzej Hajda <a.hajda@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-mfc/
2443
2444 ARM/SHMOBILE ARM ARCHITECTURE
2445 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2446 M:      Magnus Damm <magnus.damm@gmail.com>
2447 L:      linux-renesas-soc@vger.kernel.org
2448 S:      Supported
2449 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2451 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2452 F:      arch/arm/boot/dts/emev2*
2453 F:      arch/arm/boot/dts/gr-peach*
2454 F:      arch/arm/boot/dts/iwg20d-q7*
2455 F:      arch/arm/boot/dts/r7s*
2456 F:      arch/arm/boot/dts/r8a*
2457 F:      arch/arm/boot/dts/r9a*
2458 F:      arch/arm/boot/dts/sh*
2459 F:      arch/arm/configs/shmobile_defconfig
2460 F:      arch/arm/include/debug/renesas-scif.S
2461 F:      arch/arm/mach-shmobile/
2462 F:      drivers/soc/renesas/
2463 F:      include/linux/soc/renesas/
2464
2465 ARM/SOCFPGA ARCHITECTURE
2466 M:      Dinh Nguyen <dinguyen@kernel.org>
2467 S:      Maintained
2468 W:      http://www.rocketboards.org
2469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2470 F:      arch/arm/boot/dts/socfpga*
2471 F:      arch/arm/configs/socfpga_defconfig
2472 F:      arch/arm/mach-socfpga/
2473 F:      arch/arm64/boot/dts/altera/
2474 F:      arch/arm64/boot/dts/intel/
2475
2476 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2477 M:      Dinh Nguyen <dinguyen@kernel.org>
2478 S:      Maintained
2479 F:      drivers/clk/socfpga/
2480
2481 ARM/SOCFPGA EDAC SUPPORT
2482 M:      Dinh Nguyen <dinguyen@kernel.org>
2483 S:      Maintained
2484 F:      drivers/edac/altera_edac.[ch]
2485
2486 ARM/SPREADTRUM SoC SUPPORT
2487 M:      Orson Zhai <orsonzhai@gmail.com>
2488 M:      Baolin Wang <baolin.wang7@gmail.com>
2489 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2490 S:      Maintained
2491 F:      arch/arm64/boot/dts/sprd
2492 N:      sprd
2493 N:      sc27xx
2494 N:      sc2731
2495
2496 ARM/STI ARCHITECTURE
2497 M:      Patrice Chotard <patrice.chotard@st.com>
2498 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2499 S:      Maintained
2500 W:      http://www.stlinux.com
2501 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2502 F:      arch/arm/boot/dts/sti*
2503 F:      arch/arm/mach-sti/
2504 F:      drivers/ata/ahci_st.c
2505 F:      drivers/char/hw_random/st-rng.c
2506 F:      drivers/clocksource/arm_global_timer.c
2507 F:      drivers/clocksource/clksrc_st_lpc.c
2508 F:      drivers/cpufreq/sti-cpufreq.c
2509 F:      drivers/dma/st_fdma*
2510 F:      drivers/i2c/busses/i2c-st.c
2511 F:      drivers/media/platform/sti/c8sectpfe/
2512 F:      drivers/media/rc/st_rc.c
2513 F:      drivers/mmc/host/sdhci-st.c
2514 F:      drivers/phy/st/phy-miphy28lp.c
2515 F:      drivers/phy/st/phy-stih407-usb.c
2516 F:      drivers/pinctrl/pinctrl-st.c
2517 F:      drivers/remoteproc/st_remoteproc.c
2518 F:      drivers/remoteproc/st_slim_rproc.c
2519 F:      drivers/reset/sti/
2520 F:      drivers/rtc/rtc-st-lpc.c
2521 F:      drivers/tty/serial/st-asc.c
2522 F:      drivers/usb/dwc3/dwc3-st.c
2523 F:      drivers/usb/host/ehci-st.c
2524 F:      drivers/usb/host/ohci-st.c
2525 F:      drivers/watchdog/st_lpc_wdt.c
2526 F:      include/linux/remoteproc/st_slim_rproc.h
2527
2528 ARM/STM32 ARCHITECTURE
2529 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2530 M:      Alexandre Torgue <alexandre.torgue@st.com>
2531 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2532 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2533 S:      Maintained
2534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2535 F:      arch/arm/boot/dts/stm32*
2536 F:      arch/arm/mach-stm32/
2537 F:      drivers/clocksource/armv7m_systick.c
2538 N:      stm32
2539 N:      stm
2540
2541 ARM/Synaptics SoC support
2542 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2543 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2544 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2545 S:      Maintained
2546 F:      arch/arm/boot/dts/berlin*
2547 F:      arch/arm/mach-berlin/
2548 F:      arch/arm64/boot/dts/synaptics/
2549
2550 ARM/TANGO ARCHITECTURE
2551 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2552 M:      Mans Rullgard <mans@mansr.com>
2553 L:      linux-arm-kernel@lists.infradead.org
2554 S:      Odd Fixes
2555 N:      tango
2556
2557 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2558 M:      Lennert Buytenhek <kernel@wantstofly.org>
2559 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2560 S:      Maintained
2561
2562 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2563 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2564 L:      linux-tegra@vger.kernel.org
2565 L:      linux-media@vger.kernel.org
2566 S:      Maintained
2567 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2568 F:      drivers/media/cec/platform/tegra/
2569
2570 ARM/TETON BGA MACHINE SUPPORT
2571 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2572 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2573 S:      Maintained
2574
2575 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2576 M:      Santosh Shilimkar <ssantosh@kernel.org>
2577 L:      linux-kernel@vger.kernel.org
2578 S:      Maintained
2579 F:      drivers/memory/*emif*
2580
2581 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2582 M:      Santosh Shilimkar <ssantosh@kernel.org>
2583 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2584 S:      Maintained
2585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2586 F:      arch/arm/boot/dts/keystone-*
2587 F:      arch/arm/mach-keystone/
2588
2589 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2590 M:      Santosh Shilimkar <ssantosh@kernel.org>
2591 L:      linux-kernel@vger.kernel.org
2592 S:      Maintained
2593 F:      drivers/clk/keystone/
2594
2595 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2596 M:      Santosh Shilimkar <ssantosh@kernel.org>
2597 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2598 L:      linux-kernel@vger.kernel.org
2599 S:      Maintained
2600 F:      drivers/clocksource/timer-keystone.c
2601
2602 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2603 M:      Santosh Shilimkar <ssantosh@kernel.org>
2604 L:      linux-kernel@vger.kernel.org
2605 S:      Maintained
2606 F:      drivers/power/reset/keystone-reset.c
2607
2608 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2609 M:      Tero Kristo <t-kristo@ti.com>
2610 M:      Nishanth Menon <nm@ti.com>
2611 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2612 S:      Supported
2613 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2614 F:      arch/arm64/boot/dts/ti/Makefile
2615 F:      arch/arm64/boot/dts/ti/k3-*
2616 F:      include/dt-bindings/pinctrl/k3.h
2617
2618 ARM/THECUS N2100 MACHINE SUPPORT
2619 M:      Lennert Buytenhek <kernel@wantstofly.org>
2620 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2621 S:      Maintained
2622
2623 ARM/TOSA MACHINE SUPPORT
2624 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2625 M:      Dirk Opfer <dirk@opfer-online.de>
2626 S:      Maintained
2627
2628 ARM/TOSHIBA VISCONTI ARCHITECTURE
2629 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2630 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2631 S:      Supported
2632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2633 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2634 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2635 F:      arch/arm64/boot/dts/toshiba/
2636 F:      drivers/pinctrl/visconti/
2637 N:      visconti
2638
2639 ARM/UNIPHIER ARCHITECTURE
2640 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2641 S:      Orphan
2642 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2643 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2644 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2645 F:      arch/arm/boot/dts/uniphier*
2646 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2647 F:      arch/arm/mach-uniphier/
2648 F:      arch/arm/mm/cache-uniphier.c
2649 F:      arch/arm64/boot/dts/socionext/uniphier*
2650 F:      drivers/bus/uniphier-system-bus.c
2651 F:      drivers/clk/uniphier/
2652 F:      drivers/dma/uniphier-mdmac.c
2653 F:      drivers/gpio/gpio-uniphier.c
2654 F:      drivers/i2c/busses/i2c-uniphier*
2655 F:      drivers/irqchip/irq-uniphier-aidet.c
2656 F:      drivers/mmc/host/uniphier-sd.c
2657 F:      drivers/pinctrl/uniphier/
2658 F:      drivers/reset/reset-uniphier.c
2659 F:      drivers/tty/serial/8250/8250_uniphier.c
2660 N:      uniphier
2661
2662 ARM/VERSATILE EXPRESS PLATFORM
2663 M:      Liviu Dudau <liviu.dudau@arm.com>
2664 M:      Sudeep Holla <sudeep.holla@arm.com>
2665 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2666 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2667 S:      Maintained
2668 F:      */*/*/vexpress*
2669 F:      */*/vexpress*
2670 F:      arch/arm/boot/dts/vexpress*
2671 F:      arch/arm/mach-vexpress/
2672 F:      arch/arm64/boot/dts/arm/
2673 F:      drivers/clk/versatile/clk-vexpress-osc.c
2674 F:      drivers/clocksource/timer-versatile.c
2675 N:      mps2
2676
2677 ARM/VFP SUPPORT
2678 M:      Russell King <linux@armlinux.org.uk>
2679 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2680 S:      Maintained
2681 W:      http://www.armlinux.org.uk/
2682 F:      arch/arm/vfp/
2683
2684 ARM/VOIPAC PXA270 SUPPORT
2685 M:      Marek Vasut <marek.vasut@gmail.com>
2686 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2687 S:      Maintained
2688 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2689 F:      arch/arm/mach-pxa/vpac270.c
2690
2691 ARM/VT8500 ARM ARCHITECTURE
2692 M:      Tony Prisk <linux@prisktech.co.nz>
2693 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2694 S:      Maintained
2695 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2696 F:      arch/arm/mach-vt8500/
2697 F:      drivers/clocksource/timer-vt8500.c
2698 F:      drivers/i2c/busses/i2c-wmt.c
2699 F:      drivers/mmc/host/wmt-sdmmc.c
2700 F:      drivers/pwm/pwm-vt8500.c
2701 F:      drivers/rtc/rtc-vt8500.c
2702 F:      drivers/tty/serial/vt8500_serial.c
2703 F:      drivers/usb/host/ehci-platform.c
2704 F:      drivers/usb/host/uhci-platform.c
2705 F:      drivers/video/fbdev/vt8500lcdfb.*
2706 F:      drivers/video/fbdev/wm8505fb*
2707 F:      drivers/video/fbdev/wmt_ge_rops.*
2708
2709 ARM/ZIPIT Z2 SUPPORT
2710 M:      Marek Vasut <marek.vasut@gmail.com>
2711 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2712 S:      Maintained
2713 F:      arch/arm/mach-pxa/include/mach/z2.h
2714 F:      arch/arm/mach-pxa/z2.c
2715
2716 ARM/ZTE ARCHITECTURE
2717 M:      Jun Nie <jun.nie@linaro.org>
2718 M:      Shawn Guo <shawnguo@kernel.org>
2719 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2720 S:      Maintained
2721 F:      Documentation/devicetree/bindings/arm/zte.yaml
2722 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2723 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2724 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2725 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2726 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2727 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2728 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2729 F:      Documentation/devicetree/bindings/soc/zte/
2730 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2731 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2732 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2733 F:      arch/arm/boot/dts/zx2967*
2734 F:      arch/arm/mach-zx/
2735 F:      arch/arm64/boot/dts/zte/
2736 F:      drivers/clk/zte/
2737 F:      drivers/dma/zx_dma.c
2738 F:      drivers/gpio/gpio-zx.c
2739 F:      drivers/i2c/busses/i2c-zx2967.c
2740 F:      drivers/mmc/host/dw_mmc-zx.*
2741 F:      drivers/pinctrl/zte/
2742 F:      drivers/soc/zte/
2743 F:      drivers/thermal/zx2967_thermal.c
2744 F:      drivers/watchdog/zx2967_wdt.c
2745 F:      include/dt-bindings/clock/zx2967*.h
2746 F:      include/dt-bindings/soc/zte,*.h
2747 F:      sound/soc/codecs/zx_aud96p22.c
2748 F:      sound/soc/zte/
2749
2750 ARM/ZYNQ ARCHITECTURE
2751 M:      Michal Simek <michal.simek@xilinx.com>
2752 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2753 S:      Supported
2754 W:      http://wiki.xilinx.com
2755 T:      git https://github.com/Xilinx/linux-xlnx.git
2756 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2757 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2758 F:      arch/arm/mach-zynq/
2759 F:      drivers/block/xsysace.c
2760 F:      drivers/clocksource/timer-cadence-ttc.c
2761 F:      drivers/cpuidle/cpuidle-zynq.c
2762 F:      drivers/edac/synopsys_edac.c
2763 F:      drivers/i2c/busses/i2c-cadence.c
2764 F:      drivers/i2c/busses/i2c-xiic.c
2765 F:      drivers/mmc/host/sdhci-of-arasan.c
2766 N:      zynq
2767 N:      xilinx
2768
2769 ARM64 PORT (AARCH64 ARCHITECTURE)
2770 M:      Catalin Marinas <catalin.marinas@arm.com>
2771 M:      Will Deacon <will@kernel.org>
2772 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2773 S:      Maintained
2774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2775 F:      Documentation/arm64/
2776 F:      arch/arm64/
2777 F:      tools/testing/selftests/arm64/
2778 X:      arch/arm64/boot/dts/
2779
2780 AS3645A LED FLASH CONTROLLER DRIVER
2781 M:      Sakari Ailus <sakari.ailus@iki.fi>
2782 L:      linux-leds@vger.kernel.org
2783 S:      Maintained
2784 F:      drivers/leds/leds-as3645a.c
2785
2786 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2787 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2788 L:      linux-media@vger.kernel.org
2789 S:      Maintained
2790 T:      git git://linuxtv.org/media_tree.git
2791 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2792 F:      drivers/media/i2c/ak7375.c
2793
2794 ASAHI KASEI AK8974 DRIVER
2795 M:      Linus Walleij <linus.walleij@linaro.org>
2796 L:      linux-iio@vger.kernel.org
2797 S:      Supported
2798 W:      http://www.akm.com/
2799 F:      drivers/iio/magnetometer/ak8974.c
2800
2801 ASC7621 HARDWARE MONITOR DRIVER
2802 M:      George Joseph <george.joseph@fairview5.com>
2803 L:      linux-hwmon@vger.kernel.org
2804 S:      Maintained
2805 F:      Documentation/hwmon/asc7621.rst
2806 F:      drivers/hwmon/asc7621.c
2807
2808 ASPEED PINCTRL DRIVERS
2809 M:      Andrew Jeffery <andrew@aj.id.au>
2810 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2811 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2812 L:      linux-gpio@vger.kernel.org
2813 S:      Maintained
2814 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2815 F:      drivers/pinctrl/aspeed/
2816
2817 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2818 M:      Eddie James <eajames@linux.ibm.com>
2819 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2820 S:      Maintained
2821 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2822 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2823 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2824
2825 ASPEED VIDEO ENGINE DRIVER
2826 M:      Eddie James <eajames@linux.ibm.com>
2827 L:      linux-media@vger.kernel.org
2828 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2829 S:      Maintained
2830 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2831 F:      drivers/media/platform/aspeed-video.c
2832
2833 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2834 M:      Corentin Chary <corentin.chary@gmail.com>
2835 L:      acpi4asus-user@lists.sourceforge.net
2836 L:      platform-driver-x86@vger.kernel.org
2837 S:      Maintained
2838 W:      http://acpi4asus.sf.net
2839 F:      drivers/platform/x86/asus*.c
2840 F:      drivers/platform/x86/eeepc*.c
2841
2842 ASUS WIRELESS RADIO CONTROL DRIVER
2843 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2844 L:      platform-driver-x86@vger.kernel.org
2845 S:      Maintained
2846 F:      drivers/platform/x86/asus-wireless.c
2847
2848 ASYMMETRIC KEYS
2849 M:      David Howells <dhowells@redhat.com>
2850 L:      keyrings@vger.kernel.org
2851 S:      Maintained
2852 F:      Documentation/crypto/asymmetric-keys.rst
2853 F:      crypto/asymmetric_keys/
2854 F:      include/crypto/pkcs7.h
2855 F:      include/crypto/public_key.h
2856 F:      include/linux/verification.h
2857
2858 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2859 R:      Dan Williams <dan.j.williams@intel.com>
2860 S:      Odd fixes
2861 W:      http://sourceforge.net/projects/xscaleiop
2862 F:      Documentation/crypto/async-tx-api.rst
2863 F:      crypto/async_tx/
2864 F:      drivers/dma/
2865 F:      include/linux/async_tx.h
2866 F:      include/linux/dmaengine.h
2867
2868 AT24 EEPROM DRIVER
2869 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2870 L:      linux-i2c@vger.kernel.org
2871 S:      Maintained
2872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2873 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2874 F:      drivers/misc/eeprom/at24.c
2875
2876 ATA OVER ETHERNET (AOE) DRIVER
2877 M:      "Justin Sanders" <justin@coraid.com>
2878 S:      Supported
2879 W:      http://www.openaoe.org/
2880 F:      Documentation/admin-guide/aoe/
2881 F:      drivers/block/aoe/
2882
2883 ATHEROS 71XX/9XXX GPIO DRIVER
2884 M:      Alban Bedel <albeu@free.fr>
2885 S:      Maintained
2886 W:      https://github.com/AlbanBedel/linux
2887 T:      git git://github.com/AlbanBedel/linux
2888 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2889 F:      drivers/gpio/gpio-ath79.c
2890
2891 ATHEROS 71XX/9XXX USB PHY DRIVER
2892 M:      Alban Bedel <albeu@free.fr>
2893 S:      Maintained
2894 W:      https://github.com/AlbanBedel/linux
2895 T:      git git://github.com/AlbanBedel/linux
2896 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2897 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2898
2899 ATHEROS ATH GENERIC UTILITIES
2900 M:      Kalle Valo <kvalo@codeaurora.org>
2901 L:      linux-wireless@vger.kernel.org
2902 S:      Supported
2903 F:      drivers/net/wireless/ath/*
2904
2905 ATHEROS ATH5K WIRELESS DRIVER
2906 M:      Jiri Slaby <jirislaby@kernel.org>
2907 M:      Nick Kossifidis <mickflemm@gmail.com>
2908 M:      Luis Chamberlain <mcgrof@kernel.org>
2909 L:      linux-wireless@vger.kernel.org
2910 S:      Maintained
2911 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2912 F:      drivers/net/wireless/ath/ath5k/
2913
2914 ATHEROS ATH6KL WIRELESS DRIVER
2915 M:      Kalle Valo <kvalo@codeaurora.org>
2916 L:      linux-wireless@vger.kernel.org
2917 S:      Supported
2918 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2920 F:      drivers/net/wireless/ath/ath6kl/
2921
2922 ATI_REMOTE2 DRIVER
2923 M:      Ville Syrjala <syrjala@sci.fi>
2924 S:      Maintained
2925 F:      drivers/input/misc/ati_remote2.c
2926
2927 ATK0110 HWMON DRIVER
2928 M:      Luca Tettamanti <kronos.it@gmail.com>
2929 L:      linux-hwmon@vger.kernel.org
2930 S:      Maintained
2931 F:      drivers/hwmon/asus_atk0110.c
2932
2933 ATLX ETHERNET DRIVERS
2934 M:      Jay Cliburn <jcliburn@gmail.com>
2935 M:      Chris Snook <chris.snook@gmail.com>
2936 L:      netdev@vger.kernel.org
2937 S:      Maintained
2938 W:      http://sourceforge.net/projects/atl1
2939 W:      http://atl1.sourceforge.net
2940 F:      drivers/net/ethernet/atheros/
2941
2942 ATM
2943 M:      Chas Williams <3chas3@gmail.com>
2944 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2945 L:      netdev@vger.kernel.org
2946 S:      Maintained
2947 W:      http://linux-atm.sourceforge.net
2948 F:      drivers/atm/
2949 F:      include/linux/atm*
2950 F:      include/uapi/linux/atm*
2951
2952 ATMEL MACB ETHERNET DRIVER
2953 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2954 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2955 S:      Supported
2956 F:      drivers/net/ethernet/cadence/
2957
2958 ATMEL MAXTOUCH DRIVER
2959 M:      Nick Dyer <nick@shmanahar.org>
2960 S:      Maintained
2961 T:      git git://github.com/ndyer/linux.git
2962 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
2963 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2964
2965 ATMEL WIRELESS DRIVER
2966 M:      Simon Kelley <simon@thekelleys.org.uk>
2967 L:      linux-wireless@vger.kernel.org
2968 S:      Maintained
2969 W:      http://www.thekelleys.org.uk/atmel
2970 W:      http://atmelwlandriver.sourceforge.net/
2971 F:      drivers/net/wireless/atmel/atmel*
2972
2973 ATOMIC INFRASTRUCTURE
2974 M:      Will Deacon <will@kernel.org>
2975 M:      Peter Zijlstra <peterz@infradead.org>
2976 R:      Boqun Feng <boqun.feng@gmail.com>
2977 L:      linux-kernel@vger.kernel.org
2978 S:      Maintained
2979 F:      arch/*/include/asm/atomic*.h
2980 F:      include/*/atomic*.h
2981 F:      include/linux/refcount.h
2982 F:      Documentation/atomic_*.txt
2983 F:      scripts/atomic/
2984
2985 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2986 M:      Bradley Grove <linuxdrivers@attotech.com>
2987 L:      linux-scsi@vger.kernel.org
2988 S:      Supported
2989 W:      http://www.attotech.com
2990 F:      drivers/scsi/esas2r
2991
2992 ATUSB IEEE 802.15.4 RADIO DRIVER
2993 M:      Stefan Schmidt <stefan@datenfreihafen.org>
2994 L:      linux-wpan@vger.kernel.org
2995 S:      Maintained
2996 F:      drivers/net/ieee802154/at86rf230.h
2997 F:      drivers/net/ieee802154/atusb.c
2998 F:      drivers/net/ieee802154/atusb.h
2999
3000 AUDIT SUBSYSTEM
3001 M:      Paul Moore <paul@paul-moore.com>
3002 M:      Eric Paris <eparis@redhat.com>
3003 L:      linux-audit@redhat.com (moderated for non-subscribers)
3004 S:      Supported
3005 W:      https://github.com/linux-audit
3006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3007 F:      include/linux/audit.h
3008 F:      include/uapi/linux/audit.h
3009 F:      kernel/audit*
3010
3011 AUXILIARY DISPLAY DRIVERS
3012 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3013 S:      Maintained
3014 F:      drivers/auxdisplay/
3015 F:      include/linux/cfag12864b.h
3016
3017 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3018 M:      Andreas Klinger <ak@it-klinger.de>
3019 L:      linux-iio@vger.kernel.org
3020 S:      Maintained
3021 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3022 F:      drivers/iio/adc/hx711.c
3023
3024 AX.25 NETWORK LAYER
3025 M:      Ralf Baechle <ralf@linux-mips.org>
3026 L:      linux-hams@vger.kernel.org
3027 S:      Maintained
3028 W:      http://www.linux-ax25.org/
3029 F:      include/net/ax25.h
3030 F:      include/uapi/linux/ax25.h
3031 F:      net/ax25/
3032
3033 AXENTIA ARM DEVICES
3034 M:      Peter Rosin <peda@axentia.se>
3035 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3036 S:      Maintained
3037 F:      arch/arm/boot/dts/at91-linea.dtsi
3038 F:      arch/arm/boot/dts/at91-natte.dtsi
3039 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3040 F:      arch/arm/boot/dts/at91-tse850-3.dts
3041
3042 AXENTIA ASOC DRIVERS
3043 M:      Peter Rosin <peda@axentia.se>
3044 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3045 S:      Maintained
3046 F:      Documentation/devicetree/bindings/sound/axentia,*
3047 F:      sound/soc/atmel/tse850-pcm5142.c
3048
3049 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3050 M:      Nuno Sá <nuno.sa@analog.com>
3051 L:      linux-hwmon@vger.kernel.org
3052 S:      Supported
3053 W:      http://ez.analog.com/community/linux-device-drivers
3054 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3055 F:      drivers/hwmon/axi-fan-control.c
3056
3057 AXXIA I2C CONTROLLER
3058 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3059 L:      linux-i2c@vger.kernel.org
3060 S:      Maintained
3061 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3062 F:      drivers/i2c/busses/i2c-axxia.c
3063
3064 AZ6007 DVB DRIVER
3065 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3066 L:      linux-media@vger.kernel.org
3067 S:      Maintained
3068 W:      https://linuxtv.org
3069 T:      git git://linuxtv.org/media_tree.git
3070 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3071
3072 AZTECH FM RADIO RECEIVER DRIVER
3073 M:      Hans Verkuil <hverkuil@xs4all.nl>
3074 L:      linux-media@vger.kernel.org
3075 S:      Maintained
3076 W:      https://linuxtv.org
3077 T:      git git://linuxtv.org/media_tree.git
3078 F:      drivers/media/radio/radio-aztech*
3079
3080 B43 WIRELESS DRIVER
3081 L:      linux-wireless@vger.kernel.org
3082 L:      b43-dev@lists.infradead.org
3083 S:      Odd Fixes
3084 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3085 F:      drivers/net/wireless/broadcom/b43/
3086
3087 B43LEGACY WIRELESS DRIVER
3088 M:      Larry Finger <Larry.Finger@lwfinger.net>
3089 L:      linux-wireless@vger.kernel.org
3090 L:      b43-dev@lists.infradead.org
3091 S:      Maintained
3092 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3093 F:      drivers/net/wireless/broadcom/b43legacy/
3094
3095 BACKLIGHT CLASS/SUBSYSTEM
3096 M:      Lee Jones <lee.jones@linaro.org>
3097 M:      Daniel Thompson <daniel.thompson@linaro.org>
3098 M:      Jingoo Han <jingoohan1@gmail.com>
3099 L:      dri-devel@lists.freedesktop.org
3100 S:      Maintained
3101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3102 F:      Documentation/ABI/stable/sysfs-class-backlight
3103 F:      Documentation/ABI/testing/sysfs-class-backlight
3104 F:      Documentation/devicetree/bindings/leds/backlight
3105 F:      drivers/video/backlight/
3106 F:      include/linux/backlight.h
3107 F:      include/linux/pwm_backlight.h
3108
3109 BATMAN ADVANCED
3110 M:      Marek Lindner <mareklindner@neomailbox.ch>
3111 M:      Simon Wunderlich <sw@simonwunderlich.de>
3112 M:      Antonio Quartulli <a@unstable.cc>
3113 M:      Sven Eckelmann <sven@narfation.org>
3114 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3115 S:      Maintained
3116 W:      https://www.open-mesh.org/
3117 Q:      https://patchwork.open-mesh.org/project/batman/list/
3118 B:      https://www.open-mesh.org/projects/batman-adv/issues
3119 C:      irc://chat.freenode.net/batman
3120 T:      git https://git.open-mesh.org/linux-merge.git
3121 F:      Documentation/networking/batman-adv.rst
3122 F:      include/uapi/linux/batadv_packet.h
3123 F:      include/uapi/linux/batman_adv.h
3124 F:      net/batman-adv/
3125
3126 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3127 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3128 L:      linux-hams@vger.kernel.org
3129 S:      Maintained
3130 W:      http://www.baycom.org/~tom/ham/ham.html
3131 F:      drivers/net/hamradio/baycom*
3132
3133 BCACHE (BLOCK LAYER CACHE)
3134 M:      Coly Li <colyli@suse.de>
3135 M:      Kent Overstreet <kent.overstreet@gmail.com>
3136 L:      linux-bcache@vger.kernel.org
3137 S:      Maintained
3138 W:      http://bcache.evilpiepirate.org
3139 C:      irc://irc.oftc.net/bcache
3140 F:      drivers/md/bcache/
3141
3142 BDISP ST MEDIA DRIVER
3143 M:      Fabien Dessenne <fabien.dessenne@st.com>
3144 L:      linux-media@vger.kernel.org
3145 S:      Supported
3146 W:      https://linuxtv.org
3147 T:      git git://linuxtv.org/media_tree.git
3148 F:      drivers/media/platform/sti/bdisp
3149
3150 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3151 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3152 L:      netdev@vger.kernel.org
3153 S:      Maintained
3154 F:      drivers/net/ethernet/ec_bhf.c
3155
3156 BEFS FILE SYSTEM
3157 M:      Luis de Bethencourt <luisbg@kernel.org>
3158 M:      Salah Triki <salah.triki@gmail.com>
3159 S:      Maintained
3160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3161 F:      Documentation/filesystems/befs.rst
3162 F:      fs/befs/
3163
3164 BFQ I/O SCHEDULER
3165 M:      Paolo Valente <paolo.valente@linaro.org>
3166 M:      Jens Axboe <axboe@kernel.dk>
3167 L:      linux-block@vger.kernel.org
3168 S:      Maintained
3169 F:      Documentation/block/bfq-iosched.rst
3170 F:      block/bfq-*
3171
3172 BFS FILE SYSTEM
3173 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3174 S:      Maintained
3175 F:      Documentation/filesystems/bfs.rst
3176 F:      fs/bfs/
3177 F:      include/uapi/linux/bfs_fs.h
3178
3179 BLINKM RGB LED DRIVER
3180 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3181 S:      Maintained
3182 F:      drivers/leds/leds-blinkm.c
3183
3184 BLOCK LAYER
3185 M:      Jens Axboe <axboe@kernel.dk>
3186 L:      linux-block@vger.kernel.org
3187 S:      Maintained
3188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3189 F:      block/
3190 F:      drivers/block/
3191 F:      include/linux/blk*
3192 F:      kernel/trace/blktrace.c
3193 F:      lib/sbitmap.c
3194
3195 BLOCK2MTD DRIVER
3196 M:      Joern Engel <joern@lazybastard.org>
3197 L:      linux-mtd@lists.infradead.org
3198 S:      Maintained
3199 F:      drivers/mtd/devices/block2mtd.c
3200
3201 BLUETOOTH DRIVERS
3202 M:      Marcel Holtmann <marcel@holtmann.org>
3203 M:      Johan Hedberg <johan.hedberg@gmail.com>
3204 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3205 L:      linux-bluetooth@vger.kernel.org
3206 S:      Supported
3207 W:      http://www.bluez.org/
3208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3210 F:      drivers/bluetooth/
3211
3212 BLUETOOTH SUBSYSTEM
3213 M:      Marcel Holtmann <marcel@holtmann.org>
3214 M:      Johan Hedberg <johan.hedberg@gmail.com>
3215 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3216 L:      linux-bluetooth@vger.kernel.org
3217 S:      Supported
3218 W:      http://www.bluez.org/
3219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3221 F:      include/net/bluetooth/
3222 F:      net/bluetooth/
3223
3224 BONDING DRIVER
3225 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3226 M:      Veaceslav Falico <vfalico@gmail.com>
3227 M:      Andy Gospodarek <andy@greyhouse.net>
3228 L:      netdev@vger.kernel.org
3229 S:      Supported
3230 W:      http://sourceforge.net/projects/bonding/
3231 F:      drivers/net/bonding/
3232 F:      include/uapi/linux/if_bonding.h
3233
3234 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3235 M:      Dan Robertson <dan@dlrobertson.com>
3236 L:      linux-iio@vger.kernel.org
3237 S:      Maintained
3238 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3239 F:      drivers/iio/accel/bma400*
3240
3241 BPF (Safe dynamic programs and tools)
3242 M:      Alexei Starovoitov <ast@kernel.org>
3243 M:      Daniel Borkmann <daniel@iogearbox.net>
3244 M:      Andrii Nakryiko <andrii@kernel.org>
3245 R:      Martin KaFai Lau <kafai@fb.com>
3246 R:      Song Liu <songliubraving@fb.com>
3247 R:      Yonghong Song <yhs@fb.com>
3248 R:      John Fastabend <john.fastabend@gmail.com>
3249 R:      KP Singh <kpsingh@kernel.org>
3250 L:      netdev@vger.kernel.org
3251 L:      bpf@vger.kernel.org
3252 S:      Supported
3253 W:      https://bpf.io/
3254 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3257 F:      Documentation/bpf/
3258 F:      Documentation/networking/filter.rst
3259 F:      arch/*/net/*
3260 F:      include/linux/bpf*
3261 F:      include/linux/filter.h
3262 F:      include/trace/events/xdp.h
3263 F:      include/uapi/linux/bpf*
3264 F:      include/uapi/linux/filter.h
3265 F:      kernel/bpf/
3266 F:      kernel/trace/bpf_trace.c
3267 F:      lib/test_bpf.c
3268 F:      net/bpf/
3269 F:      net/core/filter.c
3270 F:      net/sched/act_bpf.c
3271 F:      net/sched/cls_bpf.c
3272 F:      samples/bpf/
3273 F:      tools/bpf/
3274 F:      tools/lib/bpf/
3275 F:      tools/testing/selftests/bpf/
3276 N:      bpf
3277 K:      bpf
3278
3279 BPF JIT for ARM
3280 M:      Shubham Bansal <illusionist.neo@gmail.com>
3281 L:      netdev@vger.kernel.org
3282 L:      bpf@vger.kernel.org
3283 S:      Maintained
3284 F:      arch/arm/net/
3285
3286 BPF JIT for ARM64
3287 M:      Daniel Borkmann <daniel@iogearbox.net>
3288 M:      Alexei Starovoitov <ast@kernel.org>
3289 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3290 L:      netdev@vger.kernel.org
3291 L:      bpf@vger.kernel.org
3292 S:      Supported
3293 F:      arch/arm64/net/
3294
3295 BPF JIT for MIPS (32-BIT AND 64-BIT)
3296 M:      Paul Burton <paulburton@kernel.org>
3297 L:      netdev@vger.kernel.org
3298 L:      bpf@vger.kernel.org
3299 S:      Maintained
3300 F:      arch/mips/net/
3301
3302 BPF JIT for NFP NICs
3303 M:      Jakub Kicinski <kuba@kernel.org>
3304 L:      netdev@vger.kernel.org
3305 L:      bpf@vger.kernel.org
3306 S:      Supported
3307 F:      drivers/net/ethernet/netronome/nfp/bpf/
3308
3309 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3310 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3311 M:      Sandipan Das <sandipan@linux.ibm.com>
3312 L:      netdev@vger.kernel.org
3313 L:      bpf@vger.kernel.org
3314 S:      Maintained
3315 F:      arch/powerpc/net/
3316
3317 BPF JIT for RISC-V (32-bit)
3318 M:      Luke Nelson <luke.r.nels@gmail.com>
3319 M:      Xi Wang <xi.wang@gmail.com>
3320 L:      netdev@vger.kernel.org
3321 L:      bpf@vger.kernel.org
3322 S:      Maintained
3323 F:      arch/riscv/net/
3324 X:      arch/riscv/net/bpf_jit_comp64.c
3325
3326 BPF JIT for RISC-V (64-bit)
3327 M:      Björn Töpel <bjorn.topel@gmail.com>
3328 L:      netdev@vger.kernel.org
3329 L:      bpf@vger.kernel.org
3330 S:      Maintained
3331 F:      arch/riscv/net/
3332 X:      arch/riscv/net/bpf_jit_comp32.c
3333
3334 BPF JIT for S390
3335 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3336 M:      Heiko Carstens <hca@linux.ibm.com>
3337 M:      Vasily Gorbik <gor@linux.ibm.com>
3338 L:      netdev@vger.kernel.org
3339 L:      bpf@vger.kernel.org
3340 S:      Maintained
3341 F:      arch/s390/net/
3342 X:      arch/s390/net/pnet.c
3343
3344 BPF JIT for SPARC (32-BIT AND 64-BIT)
3345 M:      David S. Miller <davem@davemloft.net>
3346 L:      netdev@vger.kernel.org
3347 L:      bpf@vger.kernel.org
3348 S:      Maintained
3349 F:      arch/sparc/net/
3350
3351 BPF JIT for X86 32-BIT
3352 M:      Wang YanQing <udknight@gmail.com>
3353 L:      netdev@vger.kernel.org
3354 L:      bpf@vger.kernel.org
3355 S:      Maintained
3356 F:      arch/x86/net/bpf_jit_comp32.c
3357
3358 BPF JIT for X86 64-BIT
3359 M:      Alexei Starovoitov <ast@kernel.org>
3360 M:      Daniel Borkmann <daniel@iogearbox.net>
3361 L:      netdev@vger.kernel.org
3362 L:      bpf@vger.kernel.org
3363 S:      Supported
3364 F:      arch/x86/net/
3365 X:      arch/x86/net/bpf_jit_comp32.c
3366
3367 BPF LSM (Security Audit and Enforcement using BPF)
3368 M:      KP Singh <kpsingh@kernel.org>
3369 R:      Florent Revest <revest@chromium.org>
3370 R:      Brendan Jackman <jackmanb@chromium.org>
3371 L:      bpf@vger.kernel.org
3372 S:      Maintained
3373 F:      Documentation/bpf/bpf_lsm.rst
3374 F:      include/linux/bpf_lsm.h
3375 F:      kernel/bpf/bpf_lsm.c
3376 F:      security/bpf/
3377
3378 BROADCOM B44 10/100 ETHERNET DRIVER
3379 M:      Michael Chan <michael.chan@broadcom.com>
3380 L:      netdev@vger.kernel.org
3381 S:      Supported
3382 F:      drivers/net/ethernet/broadcom/b44.*
3383
3384 BROADCOM B53 ETHERNET SWITCH DRIVER
3385 M:      Florian Fainelli <f.fainelli@gmail.com>
3386 L:      netdev@vger.kernel.org
3387 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3388 S:      Supported
3389 F:      Documentation/devicetree/bindings/net/dsa/b53.txt
3390 F:      drivers/net/dsa/b53/*
3391 F:      include/linux/platform_data/b53.h
3392
3393 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3394 M:      Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
3395 L:      bcm-kernel-feedback-list@broadcom.com
3396 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3397 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3398 S:      Maintained
3399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3400 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3401 F:      drivers/pci/controller/pcie-brcmstb.c
3402 F:      drivers/staging/vc04_services
3403 N:      bcm2711
3404 N:      bcm2835
3405
3406 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3407 M:      Florian Fainelli <f.fainelli@gmail.com>
3408 M:      Ray Jui <rjui@broadcom.com>
3409 M:      Scott Branden <sbranden@broadcom.com>
3410 M:      bcm-kernel-feedback-list@broadcom.com
3411 S:      Maintained
3412 T:      git git://github.com/broadcom/mach-bcm
3413 F:      arch/arm/mach-bcm/
3414 N:      bcm281*
3415 N:      bcm113*
3416 N:      bcm216*
3417 N:      kona
3418
3419 BROADCOM BCM47XX MIPS ARCHITECTURE
3420 M:      Hauke Mehrtens <hauke@hauke-m.de>
3421 M:      Rafał Miłecki <zajec5@gmail.com>
3422 L:      linux-mips@vger.kernel.org
3423 S:      Maintained
3424 F:      Documentation/devicetree/bindings/mips/brcm/
3425 F:      arch/mips/bcm47xx/*
3426 F:      arch/mips/include/asm/mach-bcm47xx/*
3427
3428 BROADCOM BCM5301X ARM ARCHITECTURE
3429 M:      Hauke Mehrtens <hauke@hauke-m.de>
3430 M:      Rafał Miłecki <zajec5@gmail.com>
3431 M:      bcm-kernel-feedback-list@broadcom.com
3432 L:      linux-arm-kernel@lists.infradead.org
3433 S:      Maintained
3434 F:      arch/arm/boot/dts/bcm470*
3435 F:      arch/arm/boot/dts/bcm5301*
3436 F:      arch/arm/boot/dts/bcm953012*
3437 F:      arch/arm/mach-bcm/bcm_5301x.c
3438
3439 BROADCOM BCM53573 ARM ARCHITECTURE
3440 M:      Rafał Miłecki <rafal@milecki.pl>
3441 L:      bcm-kernel-feedback-list@broadcom.com
3442 L:      linux-arm-kernel@lists.infradead.org
3443 S:      Maintained
3444 F:      arch/arm/boot/dts/bcm47189*
3445 F:      arch/arm/boot/dts/bcm53573*
3446
3447 BROADCOM BCM63XX ARM ARCHITECTURE
3448 M:      Florian Fainelli <f.fainelli@gmail.com>
3449 M:      bcm-kernel-feedback-list@broadcom.com
3450 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3451 S:      Maintained
3452 T:      git git://github.com/broadcom/stblinux.git
3453 N:      bcm63xx
3454
3455 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3456 M:      Kevin Cernekee <cernekee@gmail.com>
3457 L:      linux-usb@vger.kernel.org
3458 S:      Maintained
3459 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3460
3461 BROADCOM BCM7XXX ARM ARCHITECTURE
3462 M:      Florian Fainelli <f.fainelli@gmail.com>
3463 M:      bcm-kernel-feedback-list@broadcom.com
3464 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3465 S:      Maintained
3466 T:      git git://github.com/broadcom/stblinux.git
3467 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3468 F:      arch/arm/boot/dts/bcm7*.dts*
3469 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3470 F:      arch/arm/mach-bcm/*brcmstb*
3471 F:      arch/arm/mm/cache-b15-rac.c
3472 F:      drivers/bus/brcmstb_gisb.c
3473 F:      drivers/pci/controller/pcie-brcmstb.c
3474 N:      brcmstb
3475
3476 BROADCOM BDC DRIVER
3477 M:      Al Cooper <alcooperx@gmail.com>
3478 L:      linux-usb@vger.kernel.org
3479 L:      bcm-kernel-feedback-list@broadcom.com
3480 S:      Maintained
3481 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3482 F:      drivers/usb/gadget/udc/bdc/
3483
3484 BROADCOM BMIPS CPUFREQ DRIVER
3485 M:      Markus Mayer <mmayer@broadcom.com>
3486 M:      bcm-kernel-feedback-list@broadcom.com
3487 L:      linux-pm@vger.kernel.org
3488 S:      Maintained
3489 F:      drivers/cpufreq/bmips-cpufreq.c
3490
3491 BROADCOM BMIPS MIPS ARCHITECTURE
3492 M:      Florian Fainelli <f.fainelli@gmail.com>
3493 L:      bcm-kernel-feedback-list@broadcom.com
3494 L:      linux-mips@vger.kernel.org
3495 S:      Maintained
3496 T:      git git://github.com/broadcom/stblinux.git
3497 F:      arch/mips/bmips/*
3498 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3499 F:      arch/mips/include/asm/mach-bmips/*
3500 F:      arch/mips/kernel/*bmips*
3501 F:      drivers/soc/bcm/bcm63xx
3502 F:      drivers/irqchip/irq-bcm63*
3503 F:      drivers/irqchip/irq-bcm7*
3504 F:      drivers/irqchip/irq-brcmstb*
3505 F:      include/linux/bcm963xx_nvram.h
3506 F:      include/linux/bcm963xx_tag.h
3507
3508 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3509 M:      Rasesh Mody <rmody@marvell.com>
3510 M:      GR-Linux-NIC-Dev@marvell.com
3511 L:      netdev@vger.kernel.org
3512 S:      Supported
3513 F:      drivers/net/ethernet/broadcom/bnx2.*
3514 F:      drivers/net/ethernet/broadcom/bnx2_*
3515
3516 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3517 M:      Saurav Kashyap <skashyap@marvell.com>
3518 M:      Javed Hasan <jhasan@marvell.com>
3519 M:      GR-QLogic-Storage-Upstream@marvell.com
3520 L:      linux-scsi@vger.kernel.org
3521 S:      Supported
3522 F:      drivers/scsi/bnx2fc/
3523
3524 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3525 M:      Nilesh Javali <njavali@marvell.com>
3526 M:      Manish Rangankar <mrangankar@marvell.com>
3527 M:      GR-QLogic-Storage-Upstream@marvell.com
3528 L:      linux-scsi@vger.kernel.org
3529 S:      Supported
3530 F:      drivers/scsi/bnx2i/
3531
3532 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3533 M:      Ariel Elior <aelior@marvell.com>
3534 M:      Sudarsana Kalluru <skalluru@marvell.com>
3535 M:      GR-everest-linux-l2@marvell.com
3536 L:      netdev@vger.kernel.org
3537 S:      Supported
3538 F:      drivers/net/ethernet/broadcom/bnx2x/
3539
3540 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3541 M:      Michael Chan <michael.chan@broadcom.com>
3542 L:      netdev@vger.kernel.org
3543 S:      Supported
3544 F:      drivers/net/ethernet/broadcom/bnxt/
3545
3546 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3547 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
3548 M:      Franky Lin <franky.lin@broadcom.com>
3549 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3550 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3551 M:      Wright Feng <wright.feng@infineon.com>
3552 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3553 L:      linux-wireless@vger.kernel.org
3554 L:      brcm80211-dev-list.pdl@broadcom.com
3555 L:      SHA-cyfmac-dev-list@infineon.com
3556 S:      Supported
3557 F:      drivers/net/wireless/broadcom/brcm80211/
3558
3559 BROADCOM BRCMSTB GPIO DRIVER
3560 M:      Gregory Fong <gregory.0xf0@gmail.com>
3561 L:      bcm-kernel-feedback-list@broadcom.com
3562 S:      Supported
3563 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3564 F:      drivers/gpio/gpio-brcmstb.c
3565
3566 BROADCOM BRCMSTB I2C DRIVER
3567 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3568 L:      linux-i2c@vger.kernel.org
3569 L:      bcm-kernel-feedback-list@broadcom.com
3570 S:      Supported
3571 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3572 F:      drivers/i2c/busses/i2c-brcmstb.c
3573
3574 BROADCOM BRCMSTB USB EHCI DRIVER
3575 M:      Al Cooper <alcooperx@gmail.com>
3576 L:      linux-usb@vger.kernel.org
3577 L:      bcm-kernel-feedback-list@broadcom.com
3578 S:      Maintained
3579 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3580 F:      drivers/usb/host/ehci-brcm.*
3581
3582 BROADCOM BRCMSTB USB PIN MAP DRIVER
3583 M:      Al Cooper <alcooperx@gmail.com>
3584 L:      linux-usb@vger.kernel.org
3585 L:      bcm-kernel-feedback-list@broadcom.com
3586 S:      Maintained
3587 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3588 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3589
3590 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3591 M:      Al Cooper <alcooperx@gmail.com>
3592 L:      linux-kernel@vger.kernel.org
3593 L:      bcm-kernel-feedback-list@broadcom.com
3594 S:      Maintained
3595 F:      drivers/phy/broadcom/phy-brcm-usb*
3596
3597 BROADCOM ETHERNET PHY DRIVERS
3598 M:      Florian Fainelli <f.fainelli@gmail.com>
3599 L:      bcm-kernel-feedback-list@broadcom.com
3600 L:      netdev@vger.kernel.org
3601 S:      Supported
3602 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3603 F:      drivers/net/phy/bcm*.[ch]
3604 F:      drivers/net/phy/broadcom.c
3605 F:      include/linux/brcmphy.h
3606
3607 BROADCOM GENET ETHERNET DRIVER
3608 M:      Doug Berger <opendmb@gmail.com>
3609 M:      Florian Fainelli <f.fainelli@gmail.com>
3610 L:      bcm-kernel-feedback-list@broadcom.com
3611 L:      netdev@vger.kernel.org
3612 S:      Supported
3613 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3614 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3615 F:      drivers/net/ethernet/broadcom/genet/
3616 F:      drivers/net/mdio/mdio-bcm-unimac.c
3617 F:      include/linux/platform_data/bcmgenet.h
3618 F:      include/linux/platform_data/mdio-bcm-unimac.h
3619
3620 BROADCOM IPROC ARM ARCHITECTURE
3621 M:      Ray Jui <rjui@broadcom.com>
3622 M:      Scott Branden <sbranden@broadcom.com>
3623 M:      bcm-kernel-feedback-list@broadcom.com
3624 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3625 S:      Maintained
3626 T:      git git://github.com/broadcom/cygnus-linux.git
3627 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3628 F:      arch/arm64/boot/dts/broadcom/stingray/*
3629 F:      drivers/clk/bcm/clk-ns*
3630 F:      drivers/clk/bcm/clk-sr*
3631 F:      drivers/pinctrl/bcm/pinctrl-ns*
3632 F:      include/dt-bindings/clock/bcm-sr*
3633 N:      iproc
3634 N:      cygnus
3635 N:      bcm[-_]nsp
3636 N:      bcm9113*
3637 N:      bcm9583*
3638 N:      bcm9585*
3639 N:      bcm9586*
3640 N:      bcm988312
3641 N:      bcm113*
3642 N:      bcm583*
3643 N:      bcm585*
3644 N:      bcm586*
3645 N:      bcm88312
3646 N:      hr2
3647 N:      stingray
3648
3649 BROADCOM KONA GPIO DRIVER
3650 M:      Ray Jui <rjui@broadcom.com>
3651 L:      bcm-kernel-feedback-list@broadcom.com
3652 S:      Supported
3653 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3654 F:      drivers/gpio/gpio-bcm-kona.c
3655
3656 BROADCOM NETXTREME-E ROCE DRIVER
3657 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3658 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3659 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3660 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3661 M:      Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
3662 L:      linux-rdma@vger.kernel.org
3663 S:      Supported
3664 W:      http://www.broadcom.com
3665 F:      drivers/infiniband/hw/bnxt_re/
3666 F:      include/uapi/rdma/bnxt_re-abi.h
3667
3668 BROADCOM NVRAM DRIVER
3669 M:      Rafał Miłecki <zajec5@gmail.com>
3670 L:      linux-mips@vger.kernel.org
3671 S:      Maintained
3672 F:      drivers/firmware/broadcom/*
3673
3674 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3675 M:      Rafał Miłecki <zajec5@gmail.com>
3676 L:      linux-wireless@vger.kernel.org
3677 S:      Maintained
3678 F:      drivers/bcma/
3679 F:      include/linux/bcma/
3680
3681 BROADCOM SPI DRIVER
3682 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3683 M:      bcm-kernel-feedback-list@broadcom.com
3684 S:      Maintained
3685 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3686 F:      drivers/spi/spi-bcm-qspi.*
3687 F:      drivers/spi/spi-brcmstb-qspi.c
3688 F:      drivers/spi/spi-iproc-qspi.c
3689
3690 BROADCOM STB AVS CPUFREQ DRIVER
3691 M:      Markus Mayer <mmayer@broadcom.com>
3692 M:      bcm-kernel-feedback-list@broadcom.com
3693 L:      linux-pm@vger.kernel.org
3694 S:      Maintained
3695 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3696 F:      drivers/cpufreq/brcmstb*
3697
3698 BROADCOM STB AVS TMON DRIVER
3699 M:      Markus Mayer <mmayer@broadcom.com>
3700 M:      bcm-kernel-feedback-list@broadcom.com
3701 L:      linux-pm@vger.kernel.org
3702 S:      Maintained
3703 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3704 F:      drivers/thermal/broadcom/brcmstb*
3705
3706 BROADCOM STB DPFE DRIVER
3707 M:      Markus Mayer <mmayer@broadcom.com>
3708 M:      bcm-kernel-feedback-list@broadcom.com
3709 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3710 S:      Maintained
3711 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3712 F:      drivers/memory/brcmstb_dpfe.c
3713
3714 BROADCOM STB NAND FLASH DRIVER
3715 M:      Brian Norris <computersforpeace@gmail.com>
3716 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3717 L:      linux-mtd@lists.infradead.org
3718 L:      bcm-kernel-feedback-list@broadcom.com
3719 S:      Maintained
3720 F:      drivers/mtd/nand/raw/brcmnand/
3721
3722 BROADCOM SYSTEMPORT ETHERNET DRIVER
3723 M:      Florian Fainelli <f.fainelli@gmail.com>
3724 L:      bcm-kernel-feedback-list@broadcom.com
3725 L:      netdev@vger.kernel.org
3726 S:      Supported
3727 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3728
3729 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3730 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3731 M:      Prashant Sreedharan <prashant@broadcom.com>
3732 M:      Michael Chan <mchan@broadcom.com>
3733 L:      netdev@vger.kernel.org
3734 S:      Supported
3735 F:      drivers/net/ethernet/broadcom/tg3.*
3736
3737 BROCADE BFA FC SCSI DRIVER
3738 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3739 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3740 L:      linux-scsi@vger.kernel.org
3741 S:      Supported
3742 F:      drivers/scsi/bfa/
3743
3744 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3745 M:      Rasesh Mody <rmody@marvell.com>
3746 M:      Sudarsana Kalluru <skalluru@marvell.com>
3747 M:      GR-Linux-NIC-Dev@marvell.com
3748 L:      netdev@vger.kernel.org
3749 S:      Supported
3750 F:      drivers/net/ethernet/brocade/bna/
3751
3752 BSG (block layer generic sg v4 driver)
3753 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3754 L:      linux-scsi@vger.kernel.org
3755 S:      Supported
3756 F:      block/bsg.c
3757 F:      include/linux/bsg.h
3758 F:      include/uapi/linux/bsg.h
3759
3760 BT87X AUDIO DRIVER
3761 M:      Clemens Ladisch <clemens@ladisch.de>
3762 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3763 S:      Maintained
3764 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3765 F:      Documentation/sound/cards/bt87x.rst
3766 F:      sound/pci/bt87x.c
3767
3768 BT8XXGPIO DRIVER
3769 M:      Michael Buesch <m@bues.ch>
3770 S:      Maintained
3771 W:      http://bu3sch.de/btgpio.php
3772 F:      drivers/gpio/gpio-bt8xx.c
3773
3774 BTRFS FILE SYSTEM
3775 M:      Chris Mason <clm@fb.com>
3776 M:      Josef Bacik <josef@toxicpanda.com>
3777 M:      David Sterba <dsterba@suse.com>
3778 L:      linux-btrfs@vger.kernel.org
3779 S:      Maintained
3780 W:      http://btrfs.wiki.kernel.org/
3781 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3783 F:      Documentation/filesystems/btrfs.rst
3784 F:      fs/btrfs/
3785 F:      include/linux/btrfs*
3786 F:      include/uapi/linux/btrfs*
3787
3788 BTTV VIDEO4LINUX DRIVER
3789 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3790 L:      linux-media@vger.kernel.org
3791 S:      Odd fixes
3792 W:      https://linuxtv.org
3793 T:      git git://linuxtv.org/media_tree.git
3794 F:      Documentation/driver-api/media/drivers/bttv*
3795 F:      drivers/media/pci/bt8xx/bttv*
3796
3797 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3798 M:      Chanwoo Choi <cw00.choi@samsung.com>
3799 L:      linux-pm@vger.kernel.org
3800 L:      linux-samsung-soc@vger.kernel.org
3801 S:      Maintained
3802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3803 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3804 F:      drivers/devfreq/exynos-bus.c
3805
3806 BUSLOGIC SCSI DRIVER
3807 M:      Khalid Aziz <khalid@gonehiking.org>
3808 L:      linux-scsi@vger.kernel.org
3809 S:      Maintained
3810 F:      drivers/scsi/BusLogic.*
3811 F:      drivers/scsi/FlashPoint.*
3812
3813 C-MEDIA CMI8788 DRIVER
3814 M:      Clemens Ladisch <clemens@ladisch.de>
3815 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3816 S:      Maintained
3817 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3818 F:      sound/pci/oxygen/
3819
3820 C-SKY ARCHITECTURE
3821 M:      Guo Ren <guoren@kernel.org>
3822 L:      linux-csky@vger.kernel.org
3823 S:      Supported
3824 T:      git https://github.com/c-sky/csky-linux.git
3825 F:      Documentation/devicetree/bindings/csky/
3826 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3827 F:      Documentation/devicetree/bindings/timer/csky,*
3828 F:      arch/csky/
3829 F:      drivers/clocksource/timer-gx6605s.c
3830 F:      drivers/clocksource/timer-mp-csky.c
3831 F:      drivers/irqchip/irq-csky-*
3832 N:      csky
3833 K:      csky
3834
3835 C6X ARCHITECTURE
3836 M:      Mark Salter <msalter@redhat.com>
3837 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3838 L:      linux-c6x-dev@linux-c6x.org
3839 S:      Maintained
3840 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3841 F:      arch/c6x/
3842
3843 CA8210 IEEE-802.15.4 RADIO DRIVER
3844 M:      Harry Morris <h.morris@cascoda.com>
3845 L:      linux-wpan@vger.kernel.org
3846 S:      Maintained
3847 W:      https://github.com/Cascoda/ca8210-linux.git
3848 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3849 F:      drivers/net/ieee802154/ca8210.c
3850
3851 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3852 M:      David Howells <dhowells@redhat.com>
3853 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3854 S:      Supported
3855 F:      Documentation/filesystems/caching/cachefiles.rst
3856 F:      fs/cachefiles/
3857
3858 CADENCE MIPI-CSI2 BRIDGES
3859 M:      Maxime Ripard <mripard@kernel.org>
3860 L:      linux-media@vger.kernel.org
3861 S:      Maintained
3862 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3863 F:      drivers/media/platform/cadence/cdns-csi2*
3864
3865 CADENCE NAND DRIVER
3866 L:      linux-mtd@lists.infradead.org
3867 S:      Orphan
3868 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3869 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3870
3871 CADENCE USB3 DRD IP DRIVER
3872 M:      Peter Chen <peter.chen@nxp.com>
3873 M:      Pawel Laszczak <pawell@cadence.com>
3874 M:      Roger Quadros <rogerq@ti.com>
3875 R:      Aswath Govindraju <a-govindraju@ti.com>
3876 L:      linux-usb@vger.kernel.org
3877 S:      Maintained
3878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3879 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
3880 F:      drivers/usb/cdns3/
3881
3882 CADET FM/AM RADIO RECEIVER DRIVER
3883 M:      Hans Verkuil <hverkuil@xs4all.nl>
3884 L:      linux-media@vger.kernel.org
3885 S:      Maintained
3886 W:      https://linuxtv.org
3887 T:      git git://linuxtv.org/media_tree.git
3888 F:      drivers/media/radio/radio-cadet*
3889
3890 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3891 L:      linux-media@vger.kernel.org
3892 S:      Orphan
3893 T:      git git://linuxtv.org/media_tree.git
3894 F:      Documentation/admin-guide/media/cafe_ccic*
3895 F:      drivers/media/platform/marvell-ccic/
3896
3897 CAIF NETWORK LAYER
3898 L:      netdev@vger.kernel.org
3899 S:      Orphan
3900 F:      Documentation/networking/caif/
3901 F:      drivers/net/caif/
3902 F:      include/net/caif/
3903 F:      include/uapi/linux/caif/
3904 F:      net/caif/
3905
3906 CAKE QDISC
3907 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3908 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3909 S:      Maintained
3910 F:      net/sched/sch_cake.c
3911
3912 CAN NETWORK DRIVERS
3913 M:      Wolfgang Grandegger <wg@grandegger.com>
3914 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3915 L:      linux-can@vger.kernel.org
3916 S:      Maintained
3917 W:      https://github.com/linux-can
3918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3920 F:      Documentation/devicetree/bindings/net/can/
3921 F:      drivers/net/can/
3922 F:      include/linux/can/dev.h
3923 F:      include/linux/can/led.h
3924 F:      include/linux/can/platform/
3925 F:      include/linux/can/rx-offload.h
3926 F:      include/uapi/linux/can/error.h
3927 F:      include/uapi/linux/can/netlink.h
3928 F:      include/uapi/linux/can/vxcan.h
3929
3930 CAN NETWORK LAYER
3931 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3932 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3933 L:      linux-can@vger.kernel.org
3934 S:      Maintained
3935 W:      https://github.com/linux-can
3936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3938 F:      Documentation/networking/can.rst
3939 F:      include/linux/can/core.h
3940 F:      include/linux/can/skb.h
3941 F:      include/net/netns/can.h
3942 F:      include/uapi/linux/can.h
3943 F:      include/uapi/linux/can/bcm.h
3944 F:      include/uapi/linux/can/gw.h
3945 F:      include/uapi/linux/can/isotp.h
3946 F:      include/uapi/linux/can/raw.h
3947 F:      net/can/
3948
3949 CAN-J1939 NETWORK LAYER
3950 M:      Robin van der Gracht <robin@protonic.nl>
3951 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3952 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
3953 L:      linux-can@vger.kernel.org
3954 S:      Maintained
3955 F:      Documentation/networking/j1939.rst
3956 F:      include/uapi/linux/can/j1939.h
3957 F:      net/can/j1939/
3958
3959 CAPABILITIES
3960 M:      Serge Hallyn <serge@hallyn.com>
3961 L:      linux-security-module@vger.kernel.org
3962 S:      Supported
3963 F:      include/linux/capability.h
3964 F:      include/uapi/linux/capability.h
3965 F:      kernel/capability.c
3966 F:      security/commoncap.c
3967
3968 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3969 M:      Kevin Tsai <ktsai@capellamicro.com>
3970 S:      Maintained
3971 F:      drivers/iio/light/cm*
3972
3973 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3974 M:      Christian Lamparter <chunkeey@googlemail.com>
3975 L:      linux-wireless@vger.kernel.org
3976 S:      Maintained
3977 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
3978 F:      drivers/net/wireless/ath/carl9170/
3979
3980 CAVIUM I2C DRIVER
3981 M:      Robert Richter <rric@kernel.org>
3982 S:      Odd Fixes
3983 W:      http://www.marvell.com
3984 F:      drivers/i2c/busses/i2c-octeon*
3985 F:      drivers/i2c/busses/i2c-thunderx*
3986
3987 CAVIUM LIQUIDIO NETWORK DRIVER
3988 M:      Derek Chickles <dchickles@marvell.com>
3989 M:      Satanand Burla <sburla@marvell.com>
3990 M:      Felix Manlunas <fmanlunas@marvell.com>
3991 L:      netdev@vger.kernel.org
3992 S:      Supported
3993 W:      http://www.marvell.com
3994 F:      drivers/net/ethernet/cavium/liquidio/
3995
3996 CAVIUM MMC DRIVER
3997 M:      Robert Richter <rric@kernel.org>
3998 S:      Odd Fixes
3999 W:      http://www.marvell.com
4000 F:      drivers/mmc/host/cavium*
4001
4002 CAVIUM OCTEON-TX CRYPTO DRIVER
4003 M:      George Cherian <gcherian@marvell.com>
4004 L:      linux-crypto@vger.kernel.org
4005 S:      Supported
4006 W:      http://www.marvell.com
4007 F:      drivers/crypto/cavium/cpt/
4008
4009 CAVIUM THUNDERX2 ARM64 SOC
4010 M:      Robert Richter <rric@kernel.org>
4011 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4012 S:      Odd Fixes
4013 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4014 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4015
4016 CC2520 IEEE-802.15.4 RADIO DRIVER
4017 M:      Varka Bhadram <varkabhadram@gmail.com>
4018 L:      linux-wpan@vger.kernel.org
4019 S:      Maintained
4020 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4021 F:      drivers/net/ieee802154/cc2520.c
4022 F:      include/linux/spi/cc2520.h
4023
4024 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4025 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4026 L:      linux-crypto@vger.kernel.org
4027 S:      Supported
4028 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4029 F:      drivers/crypto/ccree/
4030
4031 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4032 M:      Hadar Gat <hadar.gat@arm.com>
4033 L:      linux-crypto@vger.kernel.org
4034 S:      Supported
4035 F:      drivers/char/hw_random/cctrng.c
4036 F:      drivers/char/hw_random/cctrng.h
4037 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4038 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4039
4040 CEC FRAMEWORK
4041 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4042 L:      linux-media@vger.kernel.org
4043 S:      Supported
4044 W:      http://linuxtv.org
4045 T:      git git://linuxtv.org/media_tree.git
4046 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4047 F:      Documentation/devicetree/bindings/media/cec.txt
4048 F:      Documentation/driver-api/media/cec-core.rst
4049 F:      Documentation/userspace-api/media/cec
4050 F:      drivers/media/cec/
4051 F:      drivers/media/rc/keymaps/rc-cec.c
4052 F:      include/media/cec-notifier.h
4053 F:      include/media/cec.h
4054 F:      include/uapi/linux/cec-funcs.h
4055 F:      include/uapi/linux/cec.h
4056
4057 CEC GPIO DRIVER
4058 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4059 L:      linux-media@vger.kernel.org
4060 S:      Supported
4061 W:      http://linuxtv.org
4062 T:      git git://linuxtv.org/media_tree.git
4063 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4064 F:      drivers/media/cec/platform/cec-gpio/
4065
4066 CELL BROADBAND ENGINE ARCHITECTURE
4067 M:      Arnd Bergmann <arnd@arndb.de>
4068 L:      linuxppc-dev@lists.ozlabs.org
4069 S:      Supported
4070 W:      http://www.ibm.com/developerworks/power/cell/
4071 F:      arch/powerpc/include/asm/cell*.h
4072 F:      arch/powerpc/include/asm/spu*.h
4073 F:      arch/powerpc/include/uapi/asm/spu*.h
4074 F:      arch/powerpc/oprofile/*cell*
4075 F:      arch/powerpc/platforms/cell/
4076
4077 CELLWISE CW2015 BATTERY DRIVER
4078 M:      Tobias Schrammm <t.schramm@manjaro.org>
4079 S:      Maintained
4080 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4081 F:      drivers/power/supply/cw2015_battery.c
4082
4083 CEPH COMMON CODE (LIBCEPH)
4084 M:      Ilya Dryomov <idryomov@gmail.com>
4085 M:      Jeff Layton <jlayton@kernel.org>
4086 L:      ceph-devel@vger.kernel.org
4087 S:      Supported
4088 W:      http://ceph.com/
4089 T:      git git://github.com/ceph/ceph-client.git
4090 F:      include/linux/ceph/
4091 F:      include/linux/crush/
4092 F:      net/ceph/
4093
4094 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4095 M:      Jeff Layton <jlayton@kernel.org>
4096 M:      Ilya Dryomov <idryomov@gmail.com>
4097 L:      ceph-devel@vger.kernel.org
4098 S:      Supported
4099 W:      http://ceph.com/
4100 T:      git git://github.com/ceph/ceph-client.git
4101 F:      Documentation/filesystems/ceph.rst
4102 F:      fs/ceph/
4103
4104 CERTIFICATE HANDLING
4105 M:      David Howells <dhowells@redhat.com>
4106 M:      David Woodhouse <dwmw2@infradead.org>
4107 L:      keyrings@vger.kernel.org
4108 S:      Maintained
4109 F:      Documentation/admin-guide/module-signing.rst
4110 F:      certs/
4111 F:      scripts/extract-cert.c
4112 F:      scripts/sign-file.c
4113
4114 CFAG12864B LCD DRIVER
4115 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4116 S:      Maintained
4117 F:      drivers/auxdisplay/cfag12864b.c
4118 F:      include/linux/cfag12864b.h
4119
4120 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4121 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4122 S:      Maintained
4123 F:      drivers/auxdisplay/cfag12864bfb.c
4124 F:      include/linux/cfag12864b.h
4125
4126 CHAR and MISC DRIVERS
4127 M:      Arnd Bergmann <arnd@arndb.de>
4128 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4129 S:      Supported
4130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4131 F:      drivers/char/
4132 F:      drivers/misc/
4133 F:      include/linux/miscdevice.h
4134 X:      drivers/char/agp/
4135 X:      drivers/char/hw_random/
4136 X:      drivers/char/ipmi/
4137 X:      drivers/char/random.c
4138 X:      drivers/char/tpm/
4139
4140 CHECKPATCH
4141 M:      Andy Whitcroft <apw@canonical.com>
4142 M:      Joe Perches <joe@perches.com>
4143 S:      Maintained
4144 F:      scripts/checkpatch.pl
4145
4146 CHINESE DOCUMENTATION
4147 M:      Harry Wei <harryxiyou@gmail.com>
4148 M:      Alex Shi <alex.shi@linux.alibaba.com>
4149 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
4150 S:      Maintained
4151 F:      Documentation/translations/zh_CN/
4152
4153 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4154 M:      Peter Chen <Peter.Chen@nxp.com>
4155 L:      linux-usb@vger.kernel.org
4156 S:      Maintained
4157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4158 F:      drivers/usb/chipidea/
4159
4160 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4161 M:      Hans de Goede <hdegoede@redhat.com>
4162 L:      linux-input@vger.kernel.org
4163 S:      Maintained
4164 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4165 F:      drivers/input/touchscreen/chipone_icn8318.c
4166
4167 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4168 M:      Hans de Goede <hdegoede@redhat.com>
4169 L:      linux-input@vger.kernel.org
4170 S:      Maintained
4171 F:      drivers/input/touchscreen/chipone_icn8505.c
4172
4173 CHROME HARDWARE PLATFORM SUPPORT
4174 M:      Benson Leung <bleung@chromium.org>
4175 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4176 S:      Maintained
4177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4178 F:      drivers/platform/chrome/
4179
4180 CHROMEOS EC CODEC DRIVER
4181 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4182 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4183 R:      Guenter Roeck <groeck@chromium.org>
4184 S:      Maintained
4185 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4186 F:      sound/soc/codecs/cros_ec_codec.*
4187
4188 CHROMEOS EC SUBDRIVERS
4189 M:      Benson Leung <bleung@chromium.org>
4190 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4191 R:      Guenter Roeck <groeck@chromium.org>
4192 S:      Maintained
4193 F:      drivers/power/supply/cros_usbpd-charger.c
4194 N:      cros_ec
4195 N:      cros-ec
4196
4197 CHRONTEL CH7322 CEC DRIVER
4198 M:      Jeff Chase <jnchase@google.com>
4199 L:      linux-media@vger.kernel.org
4200 S:      Maintained
4201 T:      git git://linuxtv.org/media_tree.git
4202 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4203 F:      drivers/media/cec/i2c/ch7322.c
4204
4205 CIRRUS LOGIC AUDIO CODEC DRIVERS
4206 M:      James Schulman <james.schulman@cirrus.com>
4207 M:      David Rhodes <david.rhodes@cirrus.com>
4208 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4209 L:      patches@opensource.cirrus.com
4210 S:      Maintained
4211 F:      sound/soc/codecs/cs*
4212
4213 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4214 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4215 L:      netdev@vger.kernel.org
4216 S:      Maintained
4217 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4218
4219 CIRRUS LOGIC LOCHNAGAR DRIVER
4220 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4221 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4222 L:      patches@opensource.cirrus.com
4223 S:      Supported
4224 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4225 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4226 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4227 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4228 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4229 F:      Documentation/hwmon/lochnagar.rst
4230 F:      drivers/clk/clk-lochnagar.c
4231 F:      drivers/hwmon/lochnagar-hwmon.c
4232 F:      drivers/mfd/lochnagar-i2c.c
4233 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4234 F:      drivers/regulator/lochnagar-regulator.c
4235 F:      include/dt-bindings/clk/lochnagar.h
4236 F:      include/dt-bindings/pinctrl/lochnagar.h
4237 F:      include/linux/mfd/lochnagar*
4238 F:      sound/soc/codecs/lochnagar-sc.c
4239
4240 CIRRUS LOGIC MADERA CODEC DRIVERS
4241 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4242 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4243 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4244 L:      patches@opensource.cirrus.com
4245 S:      Supported
4246 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4247 T:      git https://github.com/CirrusLogic/linux-drivers.git
4248 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4249 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4250 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4251 F:      drivers/gpio/gpio-madera*
4252 F:      drivers/irqchip/irq-madera*
4253 F:      drivers/mfd/cs47l*
4254 F:      drivers/mfd/madera*
4255 F:      drivers/pinctrl/cirrus/*
4256 F:      include/dt-bindings/sound/madera*
4257 F:      include/linux/irqchip/irq-madera*
4258 F:      include/linux/mfd/madera/*
4259 F:      include/sound/madera*
4260 F:      sound/soc/codecs/cs47l*
4261 F:      sound/soc/codecs/madera*
4262
4263 CISCO FCOE HBA DRIVER
4264 M:      Satish Kharat <satishkh@cisco.com>
4265 M:      Sesidhar Baddela <sebaddel@cisco.com>
4266 M:      Karan Tilak Kumar <kartilak@cisco.com>
4267 L:      linux-scsi@vger.kernel.org
4268 S:      Supported
4269 F:      drivers/scsi/fnic/
4270
4271 CISCO SCSI HBA DRIVER
4272 M:      Karan Tilak Kumar <kartilak@cisco.com>
4273 M:      Sesidhar Baddela <sebaddel@cisco.com>
4274 L:      linux-scsi@vger.kernel.org
4275 S:      Supported
4276 F:      drivers/scsi/snic/
4277
4278 CISCO VIC ETHERNET NIC DRIVER
4279 M:      Christian Benvenuti <benve@cisco.com>
4280 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4281 S:      Supported
4282 F:      drivers/net/ethernet/cisco/enic/
4283
4284 CISCO VIC LOW LATENCY NIC DRIVER
4285 M:      Christian Benvenuti <benve@cisco.com>
4286 M:      Nelson Escobar <neescoba@cisco.com>
4287 S:      Supported
4288 F:      drivers/infiniband/hw/usnic/
4289
4290 CLANG-FORMAT FILE
4291 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4292 S:      Maintained
4293 F:      .clang-format
4294
4295 CLANG/LLVM BUILD SUPPORT
4296 M:      Nathan Chancellor <natechancellor@gmail.com>
4297 M:      Nick Desaulniers <ndesaulniers@google.com>
4298 L:      clang-built-linux@googlegroups.com
4299 S:      Supported
4300 W:      https://clangbuiltlinux.github.io/
4301 B:      https://github.com/ClangBuiltLinux/linux/issues
4302 C:      irc://chat.freenode.net/clangbuiltlinux
4303 F:      Documentation/kbuild/llvm.rst
4304 F:      scripts/clang-tools/
4305 F:      scripts/lld-version.sh
4306 K:      \b(?i:clang|llvm)\b
4307
4308 CLEANCACHE API
4309 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4310 L:      linux-kernel@vger.kernel.org
4311 S:      Maintained
4312 F:      include/linux/cleancache.h
4313 F:      mm/cleancache.c
4314
4315 CLK API
4316 M:      Russell King <linux@armlinux.org.uk>
4317 L:      linux-clk@vger.kernel.org
4318 S:      Maintained
4319 F:      include/linux/clk.h
4320
4321 CLOCKSOURCE, CLOCKEVENT DRIVERS
4322 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4323 M:      Thomas Gleixner <tglx@linutronix.de>
4324 L:      linux-kernel@vger.kernel.org
4325 S:      Supported
4326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4327 F:      Documentation/devicetree/bindings/timer/
4328 F:      drivers/clocksource/
4329
4330 CMPC ACPI DRIVER
4331 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4332 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4333 L:      platform-driver-x86@vger.kernel.org
4334 S:      Supported
4335 F:      drivers/platform/x86/classmate-laptop.c
4336
4337 COBALT MEDIA DRIVER
4338 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4339 L:      linux-media@vger.kernel.org
4340 S:      Supported
4341 W:      https://linuxtv.org
4342 T:      git git://linuxtv.org/media_tree.git
4343 F:      drivers/media/pci/cobalt/
4344
4345 COCCINELLE/Semantic Patches (SmPL)
4346 M:      Julia Lawall <Julia.Lawall@lip6.fr>
4347 M:      Gilles Muller <Gilles.Muller@lip6.fr>
4348 M:      Nicolas Palix <nicolas.palix@imag.fr>
4349 M:      Michal Marek <michal.lkml@markovi.net>
4350 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4351 S:      Supported
4352 W:      http://coccinelle.lip6.fr/
4353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4354 F:      Documentation/dev-tools/coccinelle.rst
4355 F:      scripts/coccicheck
4356 F:      scripts/coccinelle/
4357
4358 CODA FILE SYSTEM
4359 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4360 M:      coda@cs.cmu.edu
4361 L:      codalist@coda.cs.cmu.edu
4362 S:      Maintained
4363 W:      http://www.coda.cs.cmu.edu/
4364 F:      Documentation/filesystems/coda.rst
4365 F:      fs/coda/
4366 F:      include/linux/coda*.h
4367 F:      include/uapi/linux/coda*.h
4368
4369 CODA V4L2 MEM2MEM DRIVER
4370 M:      Philipp Zabel <p.zabel@pengutronix.de>
4371 L:      linux-media@vger.kernel.org
4372 S:      Maintained
4373 F:      Documentation/devicetree/bindings/media/coda.yaml
4374 F:      drivers/media/platform/coda/
4375
4376 CODE OF CONDUCT
4377 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4378 S:      Supported
4379 F:      Documentation/process/code-of-conduct-interpretation.rst
4380 F:      Documentation/process/code-of-conduct.rst
4381
4382 COMMON CLK FRAMEWORK
4383 M:      Michael Turquette <mturquette@baylibre.com>
4384 M:      Stephen Boyd <sboyd@kernel.org>
4385 L:      linux-clk@vger.kernel.org
4386 S:      Maintained
4387 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4389 F:      Documentation/devicetree/bindings/clock/
4390 F:      drivers/clk/
4391 F:      include/linux/clk-pr*
4392 F:      include/linux/clk/
4393 F:      include/linux/of_clk.h
4394 X:      drivers/clk/clkdev.c
4395
4396 COMMON INTERNET FILE SYSTEM (CIFS)
4397 M:      Steve French <sfrench@samba.org>
4398 L:      linux-cifs@vger.kernel.org
4399 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4400 S:      Supported
4401 W:      http://linux-cifs.samba.org/
4402 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4403 F:      Documentation/admin-guide/cifs/
4404 F:      fs/cifs/
4405
4406 COMPACTPCI HOTPLUG CORE
4407 M:      Scott Murray <scott@spiteful.org>
4408 L:      linux-pci@vger.kernel.org
4409 S:      Maintained
4410 F:      drivers/pci/hotplug/cpci_hotplug*
4411
4412 COMPACTPCI HOTPLUG GENERIC DRIVER
4413 M:      Scott Murray <scott@spiteful.org>
4414 L:      linux-pci@vger.kernel.org
4415 S:      Maintained
4416 F:      drivers/pci/hotplug/cpcihp_generic.c
4417
4418 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4419 M:      Scott Murray <scott@spiteful.org>
4420 L:      linux-pci@vger.kernel.org
4421 S:      Maintained
4422 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4423
4424 COMPAL LAPTOP SUPPORT
4425 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4426 L:      platform-driver-x86@vger.kernel.org
4427 S:      Maintained
4428 F:      drivers/platform/x86/compal-laptop.c
4429
4430 COMPILER ATTRIBUTES
4431 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4432 S:      Maintained
4433 F:      include/linux/compiler_attributes.h
4434
4435 CONEXANT ACCESSRUNNER USB DRIVER
4436 L:      accessrunner-general@lists.sourceforge.net
4437 S:      Orphan
4438 W:      http://accessrunner.sourceforge.net/
4439 F:      drivers/usb/atm/cxacru.c
4440
4441 CONFIGFS
4442 M:      Joel Becker <jlbec@evilplan.org>
4443 M:      Christoph Hellwig <hch@lst.de>
4444 S:      Supported
4445 T:      git git://git.infradead.org/users/hch/configfs.git
4446 F:      fs/configfs/
4447 F:      include/linux/configfs.h
4448 F:      samples/configfs/
4449
4450 CONSOLE SUBSYSTEM
4451 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4452 S:      Supported
4453 F:      drivers/video/console/
4454 F:      include/linux/console*
4455
4456 CONTROL GROUP (CGROUP)
4457 M:      Tejun Heo <tj@kernel.org>
4458 M:      Li Zefan <lizefan@huawei.com>
4459 M:      Johannes Weiner <hannes@cmpxchg.org>
4460 L:      cgroups@vger.kernel.org
4461 S:      Maintained
4462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4463 F:      Documentation/admin-guide/cgroup-v1/
4464 F:      Documentation/admin-guide/cgroup-v2.rst
4465 F:      include/linux/cgroup*
4466 F:      kernel/cgroup/
4467
4468 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4469 M:      Tejun Heo <tj@kernel.org>
4470 M:      Jens Axboe <axboe@kernel.dk>
4471 L:      cgroups@vger.kernel.org
4472 L:      linux-block@vger.kernel.org
4473 T:      git git://git.kernel.dk/linux-block
4474 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4475 F:      block/bfq-cgroup.c
4476 F:      block/blk-cgroup.c
4477 F:      block/blk-iolatency.c
4478 F:      block/blk-throttle.c
4479 F:      include/linux/blk-cgroup.h
4480
4481 CONTROL GROUP - CPUSET
4482 M:      Li Zefan <lizefan@huawei.com>
4483 L:      cgroups@vger.kernel.org
4484 S:      Maintained
4485 W:      http://www.bullopensource.org/cpuset/
4486 W:      http://oss.sgi.com/projects/cpusets/
4487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4488 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4489 F:      include/linux/cpuset.h
4490 F:      kernel/cgroup/cpuset.c
4491
4492 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4493 M:      Johannes Weiner <hannes@cmpxchg.org>
4494 M:      Michal Hocko <mhocko@kernel.org>
4495 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4496 L:      cgroups@vger.kernel.org
4497 L:      linux-mm@kvack.org
4498 S:      Maintained
4499 F:      mm/memcontrol.c
4500 F:      mm/swap_cgroup.c
4501
4502 CORETEMP HARDWARE MONITORING DRIVER
4503 M:      Fenghua Yu <fenghua.yu@intel.com>
4504 L:      linux-hwmon@vger.kernel.org
4505 S:      Maintained
4506 F:      Documentation/hwmon/coretemp.rst
4507 F:      drivers/hwmon/coretemp.c
4508
4509 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4510 M:      Marius Zachmann <mail@mariuszachmann.de>
4511 L:      linux-hwmon@vger.kernel.org
4512 S:      Maintained
4513 F:      drivers/hwmon/corsair-cpro.c
4514
4515 CORSAIR-PSU HARDWARE MONITOR DRIVER
4516 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4517 L:      linux-hwmon@vger.kernel.org
4518 S:      Maintained
4519 F:      Documentation/hwmon/corsair-psu.rst
4520 F:      drivers/hwmon/corsair-psu.c
4521
4522 COSA/SRP SYNC SERIAL DRIVER
4523 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4524 S:      Maintained
4525 W:      http://www.fi.muni.cz/~kas/cosa/
4526 F:      drivers/net/wan/cosa*
4527
4528 COUNTER SUBSYSTEM
4529 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4530 L:      linux-iio@vger.kernel.org
4531 S:      Maintained
4532 F:      Documentation/ABI/testing/sysfs-bus-counter*
4533 F:      Documentation/driver-api/generic-counter.rst
4534 F:      drivers/counter/
4535 F:      include/linux/counter.h
4536 F:      include/linux/counter_enum.h
4537
4538 CPMAC ETHERNET DRIVER
4539 M:      Florian Fainelli <f.fainelli@gmail.com>
4540 L:      netdev@vger.kernel.org
4541 S:      Maintained
4542 F:      drivers/net/ethernet/ti/cpmac.c
4543
4544 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4545 M:      Viresh Kumar <viresh.kumar@linaro.org>
4546 M:      Sudeep Holla <sudeep.holla@arm.com>
4547 L:      linux-pm@vger.kernel.org
4548 S:      Maintained
4549 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4550 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4551
4552 CPU FREQUENCY SCALING FRAMEWORK
4553 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4554 M:      Viresh Kumar <viresh.kumar@linaro.org>
4555 L:      linux-pm@vger.kernel.org
4556 S:      Maintained
4557 B:      https://bugzilla.kernel.org
4558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4560 F:      Documentation/admin-guide/pm/cpufreq.rst
4561 F:      Documentation/admin-guide/pm/intel_pstate.rst
4562 F:      Documentation/cpu-freq/
4563 F:      Documentation/devicetree/bindings/cpufreq/
4564 F:      drivers/cpufreq/
4565 F:      include/linux/cpufreq.h
4566 F:      include/linux/sched/cpufreq.h
4567 F:      kernel/sched/cpufreq*.c
4568 F:      tools/testing/selftests/cpufreq/
4569
4570 CPU IDLE TIME MANAGEMENT FRAMEWORK
4571 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4572 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4573 L:      linux-pm@vger.kernel.org
4574 S:      Maintained
4575 B:      https://bugzilla.kernel.org
4576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4577 F:      Documentation/admin-guide/pm/cpuidle.rst
4578 F:      Documentation/driver-api/pm/cpuidle.rst
4579 F:      drivers/cpuidle/*
4580 F:      include/linux/cpuidle.h
4581
4582 CPU POWER MONITORING SUBSYSTEM
4583 M:      Thomas Renninger <trenn@suse.com>
4584 M:      Shuah Khan <shuah@kernel.org>
4585 M:      Shuah Khan <skhan@linuxfoundation.org>
4586 L:      linux-pm@vger.kernel.org
4587 S:      Maintained
4588 F:      tools/power/cpupower/
4589
4590 CPUID/MSR DRIVER
4591 M:      "H. Peter Anvin" <hpa@zytor.com>
4592 S:      Maintained
4593 F:      arch/x86/kernel/cpuid.c
4594 F:      arch/x86/kernel/msr.c
4595
4596 CPUIDLE DRIVER - ARM BIG LITTLE
4597 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4598 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4599 L:      linux-pm@vger.kernel.org
4600 L:      linux-arm-kernel@lists.infradead.org
4601 S:      Maintained
4602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4603 F:      drivers/cpuidle/cpuidle-big_little.c
4604
4605 CPUIDLE DRIVER - ARM EXYNOS
4606 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4607 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4608 M:      Kukjin Kim <kgene@kernel.org>
4609 L:      linux-pm@vger.kernel.org
4610 L:      linux-samsung-soc@vger.kernel.org
4611 S:      Supported
4612 F:      arch/arm/mach-exynos/pm.c
4613 F:      drivers/cpuidle/cpuidle-exynos.c
4614
4615 CPUIDLE DRIVER - ARM PSCI
4616 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4617 M:      Sudeep Holla <sudeep.holla@arm.com>
4618 L:      linux-pm@vger.kernel.org
4619 L:      linux-arm-kernel@lists.infradead.org
4620 S:      Supported
4621 F:      drivers/cpuidle/cpuidle-psci.c
4622
4623 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4624 M:      Ulf Hansson <ulf.hansson@linaro.org>
4625 L:      linux-pm@vger.kernel.org
4626 L:      linux-arm-kernel@lists.infradead.org
4627 S:      Supported
4628 F:      drivers/cpuidle/cpuidle-psci.h
4629 F:      drivers/cpuidle/cpuidle-psci-domain.c
4630
4631 CRAMFS FILESYSTEM
4632 M:      Nicolas Pitre <nico@fluxnic.net>
4633 S:      Maintained
4634 F:      Documentation/filesystems/cramfs.rst
4635 F:      fs/cramfs/
4636
4637 CREATIVE SB0540
4638 M:      Bastien Nocera <hadess@hadess.net>
4639 L:      linux-input@vger.kernel.org
4640 S:      Maintained
4641 F:      drivers/hid/hid-creative-sb0540.c
4642
4643 CRYPTO API
4644 M:      Herbert Xu <herbert@gondor.apana.org.au>
4645 M:      "David S. Miller" <davem@davemloft.net>
4646 L:      linux-crypto@vger.kernel.org
4647 S:      Maintained
4648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4650 F:      Documentation/crypto/
4651 F:      Documentation/devicetree/bindings/crypto/
4652 F:      arch/*/crypto/
4653 F:      crypto/
4654 F:      drivers/crypto/
4655 F:      include/crypto/
4656 F:      include/linux/crypto*
4657 F:      lib/crypto/
4658
4659 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4660 M:      Neil Horman <nhorman@tuxdriver.com>
4661 L:      linux-crypto@vger.kernel.org
4662 S:      Maintained
4663 F:      crypto/ansi_cprng.c
4664 F:      crypto/rng.c
4665
4666 CS3308 MEDIA DRIVER
4667 M:      Hans Verkuil <hverkuil@xs4all.nl>
4668 L:      linux-media@vger.kernel.org
4669 S:      Odd Fixes
4670 W:      http://linuxtv.org
4671 T:      git git://linuxtv.org/media_tree.git
4672 F:      drivers/media/i2c/cs3308.c
4673
4674 CS5535 Audio ALSA driver
4675 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4676 S:      Maintained
4677 F:      sound/pci/cs5535audio/
4678
4679 CSI DRIVERS FOR ALLWINNER V3s
4680 M:      Yong Deng <yong.deng@magewell.com>
4681 L:      linux-media@vger.kernel.org
4682 S:      Maintained
4683 T:      git git://linuxtv.org/media_tree.git
4684 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4685 F:      drivers/media/platform/sunxi/sun6i-csi/
4686
4687 CW1200 WLAN driver
4688 M:      Solomon Peachy <pizza@shaftnet.org>
4689 S:      Maintained
4690 F:      drivers/net/wireless/st/cw1200/
4691
4692 CX18 VIDEO4LINUX DRIVER
4693 M:      Andy Walls <awalls@md.metrocast.net>
4694 L:      linux-media@vger.kernel.org
4695 S:      Maintained
4696 W:      https://linuxtv.org
4697 T:      git git://linuxtv.org/media_tree.git
4698 F:      drivers/media/pci/cx18/
4699 F:      include/uapi/linux/ivtv*
4700
4701 CX2341X MPEG ENCODER HELPER MODULE
4702 M:      Hans Verkuil <hverkuil@xs4all.nl>
4703 L:      linux-media@vger.kernel.org
4704 S:      Maintained
4705 W:      https://linuxtv.org
4706 T:      git git://linuxtv.org/media_tree.git
4707 F:      drivers/media/common/cx2341x*
4708 F:      include/media/drv-intf/cx2341x.h
4709
4710 CX24120 MEDIA DRIVER
4711 M:      Jemma Denson <jdenson@gmail.com>
4712 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4713 L:      linux-media@vger.kernel.org
4714 S:      Maintained
4715 W:      https://linuxtv.org
4716 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4717 F:      drivers/media/dvb-frontends/cx24120*
4718
4719 CX88 VIDEO4LINUX DRIVER
4720 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4721 L:      linux-media@vger.kernel.org
4722 S:      Odd fixes
4723 W:      https://linuxtv.org
4724 T:      git git://linuxtv.org/media_tree.git
4725 F:      Documentation/driver-api/media/drivers/cx88*
4726 F:      drivers/media/pci/cx88/
4727
4728 CXD2820R MEDIA DRIVER
4729 M:      Antti Palosaari <crope@iki.fi>
4730 L:      linux-media@vger.kernel.org
4731 S:      Maintained
4732 W:      https://linuxtv.org
4733 W:      http://palosaari.fi/linux/
4734 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4735 T:      git git://linuxtv.org/anttip/media_tree.git
4736 F:      drivers/media/dvb-frontends/cxd2820r*
4737
4738 CXGB3 ETHERNET DRIVER (CXGB3)
4739 M:      Raju Rangoju <rajur@chelsio.com>
4740 L:      netdev@vger.kernel.org
4741 S:      Supported
4742 W:      http://www.chelsio.com
4743 F:      drivers/net/ethernet/chelsio/cxgb3/
4744
4745 CXGB3 ISCSI DRIVER (CXGB3I)
4746 M:      Karen Xie <kxie@chelsio.com>
4747 L:      linux-scsi@vger.kernel.org
4748 S:      Supported
4749 W:      http://www.chelsio.com
4750 F:      drivers/scsi/cxgbi/cxgb3i
4751
4752 CXGB4 CRYPTO DRIVER (chcr)
4753 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4754 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4755 M:      Rohit Maheshwari <rohitm@chelsio.com>
4756 L:      linux-crypto@vger.kernel.org
4757 S:      Supported
4758 W:      http://www.chelsio.com
4759 F:      drivers/crypto/chelsio
4760
4761 CXGB4 INLINE CRYPTO DRIVER
4762 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4763 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4764 M:      Rohit Maheshwari <rohitm@chelsio.com>
4765 L:      netdev@vger.kernel.org
4766 S:      Supported
4767 W:      http://www.chelsio.com
4768 F:      drivers/net/ethernet/chelsio/inline_crypto/
4769
4770 CXGB4 ETHERNET DRIVER (CXGB4)
4771 M:      Raju Rangoju <rajur@chelsio.com>
4772 L:      netdev@vger.kernel.org
4773 S:      Supported
4774 W:      http://www.chelsio.com
4775 F:      drivers/net/ethernet/chelsio/cxgb4/
4776
4777 CXGB4 ISCSI DRIVER (CXGB4I)
4778 M:      Karen Xie <kxie@chelsio.com>
4779 L:      linux-scsi@vger.kernel.org
4780 S:      Supported
4781 W:      http://www.chelsio.com
4782 F:      drivers/scsi/cxgbi/cxgb4i
4783
4784 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4785 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4786 L:      linux-rdma@vger.kernel.org
4787 S:      Supported
4788 W:      http://www.openfabrics.org
4789 F:      drivers/infiniband/hw/cxgb4/
4790 F:      include/uapi/rdma/cxgb4-abi.h
4791
4792 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4793 M:      Raju Rangoju <rajur@chelsio.com>
4794 L:      netdev@vger.kernel.org
4795 S:      Supported
4796 W:      http://www.chelsio.com
4797 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4798
4799 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4800 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4801 M:      Andrew Donnellan <ajd@linux.ibm.com>
4802 L:      linuxppc-dev@lists.ozlabs.org
4803 S:      Supported
4804 F:      Documentation/ABI/testing/sysfs-class-cxl
4805 F:      Documentation/powerpc/cxl.rst
4806 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4807 F:      drivers/misc/cxl/
4808 F:      include/misc/cxl*
4809 F:      include/uapi/misc/cxl.h
4810
4811 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4812 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4813 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4814 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4815 L:      linux-scsi@vger.kernel.org
4816 S:      Supported
4817 F:      Documentation/powerpc/cxlflash.rst
4818 F:      drivers/scsi/cxlflash/
4819 F:      include/uapi/scsi/cxlflash_ioctl.h
4820
4821 CYBERPRO FB DRIVER
4822 M:      Russell King <linux@armlinux.org.uk>
4823 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4824 S:      Maintained
4825 W:      http://www.armlinux.org.uk/
4826 F:      drivers/video/fbdev/cyber2000fb.*
4827
4828 CYCLADES ASYNC MUX DRIVER
4829 S:      Orphan
4830 W:      http://www.cyclades.com/
4831 F:      drivers/tty/cyclades.c
4832 F:      include/linux/cyclades.h
4833 F:      include/uapi/linux/cyclades.h
4834
4835 CYCLADES PC300 DRIVER
4836 S:      Orphan
4837 W:      http://www.cyclades.com/
4838 F:      drivers/net/wan/pc300*
4839
4840 CYPRESS_FIRMWARE MEDIA DRIVER
4841 M:      Antti Palosaari <crope@iki.fi>
4842 L:      linux-media@vger.kernel.org
4843 S:      Maintained
4844 W:      https://linuxtv.org
4845 W:      http://palosaari.fi/linux/
4846 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4847 T:      git git://linuxtv.org/anttip/media_tree.git
4848 F:      drivers/media/common/cypress_firmware*
4849
4850 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
4851 M:      Linus Walleij <linus.walleij@linaro.org>
4852 L:      linux-input@vger.kernel.org
4853 S:      Maintained
4854 F:      drivers/input/touchscreen/cy8ctma140.c
4855
4856 CYTTSP TOUCHSCREEN DRIVER
4857 M:      Ferruh Yigit <fery@cypress.com>
4858 L:      linux-input@vger.kernel.org
4859 S:      Supported
4860 F:      drivers/input/touchscreen/cyttsp*
4861 F:      include/linux/input/cyttsp.h
4862
4863 D-LINK DIR-685 TOUCHKEYS DRIVER
4864 M:      Linus Walleij <linus.walleij@linaro.org>
4865 L:      linux-input@vger.kernel.org
4866 S:      Supported
4867 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4868
4869 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4870 M:      Joshua Kinard <kumba@gentoo.org>
4871 S:      Maintained
4872 F:      drivers/rtc/rtc-ds1685.c
4873 F:      include/linux/rtc/ds1685.h
4874
4875 DAMA SLAVE for AX.25
4876 M:      Joerg Reuter <jreuter@yaina.de>
4877 L:      linux-hams@vger.kernel.org
4878 S:      Maintained
4879 W:      http://yaina.de/jreuter/
4880 W:      http://www.qsl.net/dl1bke/
4881 F:      net/ax25/af_ax25.c
4882 F:      net/ax25/ax25_dev.c
4883 F:      net/ax25/ax25_ds_*
4884 F:      net/ax25/ax25_in.c
4885 F:      net/ax25/ax25_out.c
4886 F:      net/ax25/ax25_timer.c
4887 F:      net/ax25/sysctl_net_ax25.c
4888
4889 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4890 L:      netdev@vger.kernel.org
4891 S:      Orphan
4892 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
4893 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4894
4895 DC390/AM53C974 SCSI driver
4896 M:      Hannes Reinecke <hare@suse.com>
4897 L:      linux-scsi@vger.kernel.org
4898 S:      Maintained
4899 F:      drivers/scsi/am53c974.c
4900
4901 DC395x SCSI driver
4902 M:      Oliver Neukum <oliver@neukum.org>
4903 M:      Ali Akcaagac <aliakc@web.de>
4904 M:      Jamie Lenehan <lenehan@twibble.org>
4905 L:      dc395x@twibble.org
4906 S:      Maintained
4907 W:      http://twibble.org/dist/dc395x/
4908 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4909 F:      Documentation/scsi/dc395x.rst
4910 F:      drivers/scsi/dc395x.*
4911
4912 DCCP PROTOCOL
4913 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4914 L:      dccp@vger.kernel.org
4915 S:      Maintained
4916 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4917 F:      include/linux/dccp.h
4918 F:      include/linux/tfrc.h
4919 F:      include/uapi/linux/dccp.h
4920 F:      net/dccp/
4921
4922 DECnet NETWORK LAYER
4923 L:      linux-decnet-user@lists.sourceforge.net
4924 S:      Orphan
4925 W:      http://linux-decnet.sourceforge.net
4926 F:      Documentation/networking/decnet.rst
4927 F:      net/decnet/
4928
4929 DECSTATION PLATFORM SUPPORT
4930 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4931 L:      linux-mips@vger.kernel.org
4932 S:      Maintained
4933 W:      http://www.linux-mips.org/wiki/DECstation
4934 F:      arch/mips/dec/
4935 F:      arch/mips/include/asm/dec/
4936 F:      arch/mips/include/asm/mach-dec/
4937
4938 DEFXX FDDI NETWORK DRIVER
4939 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4940 S:      Maintained
4941 F:      drivers/net/fddi/defxx.*
4942
4943 DEFZA FDDI NETWORK DRIVER
4944 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4945 S:      Maintained
4946 F:      drivers/net/fddi/defza.*
4947
4948 DEINTERLACE DRIVERS FOR ALLWINNER H3
4949 M:      Jernej Skrabec <jernej.skrabec@siol.net>
4950 L:      linux-media@vger.kernel.org
4951 S:      Maintained
4952 T:      git git://linuxtv.org/media_tree.git
4953 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4954 F:      drivers/media/platform/sunxi/sun8i-di/
4955
4956 DELL LAPTOP DRIVER
4957 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4958 M:      Pali Rohár <pali@kernel.org>
4959 L:      platform-driver-x86@vger.kernel.org
4960 S:      Maintained
4961 F:      drivers/platform/x86/dell-laptop.c
4962
4963 DELL LAPTOP FREEFALL DRIVER
4964 M:      Pali Rohár <pali@kernel.org>
4965 S:      Maintained
4966 F:      drivers/platform/x86/dell-smo8800.c
4967
4968 DELL LAPTOP RBTN DRIVER
4969 M:      Pali Rohár <pali@kernel.org>
4970 S:      Maintained
4971 F:      drivers/platform/x86/dell-rbtn.*
4972
4973 DELL LAPTOP SMM DRIVER
4974 M:      Pali Rohár <pali@kernel.org>
4975 S:      Maintained
4976 F:      drivers/hwmon/dell-smm-hwmon.c
4977 F:      include/uapi/linux/i8k.h
4978
4979 DELL REMOTE BIOS UPDATE DRIVER
4980 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4981 L:      platform-driver-x86@vger.kernel.org
4982 S:      Maintained
4983 F:      drivers/platform/x86/dell_rbu.c
4984
4985 DELL SMBIOS DRIVER
4986 M:      Pali Rohár <pali@kernel.org>
4987 M:      Mario Limonciello <mario.limonciello@dell.com>
4988 L:      platform-driver-x86@vger.kernel.org
4989 S:      Maintained
4990 F:      drivers/platform/x86/dell-smbios.*
4991
4992 DELL SMBIOS SMM DRIVER
4993 M:      Mario Limonciello <mario.limonciello@dell.com>
4994 L:      platform-driver-x86@vger.kernel.org
4995 S:      Maintained
4996 F:      drivers/platform/x86/dell-smbios-smm.c
4997
4998 DELL SMBIOS WMI DRIVER
4999 M:      Mario Limonciello <mario.limonciello@dell.com>
5000 L:      platform-driver-x86@vger.kernel.org
5001 S:      Maintained
5002 F:      drivers/platform/x86/dell-smbios-wmi.c
5003 F:      tools/wmi/dell-smbios-example.c
5004
5005 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5006 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5007 L:      platform-driver-x86@vger.kernel.org
5008 S:      Maintained
5009 F:      Documentation/driver-api/dcdbas.rst
5010 F:      drivers/platform/x86/dcdbas.*
5011
5012 DELL WMI DESCRIPTOR DRIVER
5013 M:      Mario Limonciello <mario.limonciello@dell.com>
5014 S:      Maintained
5015 F:      drivers/platform/x86/dell-wmi-descriptor.c
5016
5017 DELL WMI SYSMAN DRIVER
5018 M:      Divya Bharathi <divya.bharathi@dell.com>
5019 M:      Mario Limonciello <mario.limonciello@dell.com>
5020 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5021 L:      platform-driver-x86@vger.kernel.org
5022 S:      Maintained
5023 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5024 F:      drivers/platform/x86/dell-wmi-sysman/
5025
5026 DELL WMI NOTIFICATIONS DRIVER
5027 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5028 M:      Pali Rohár <pali@kernel.org>
5029 S:      Maintained
5030 F:      drivers/platform/x86/dell-wmi.c
5031
5032 DELTA ST MEDIA DRIVER
5033 M:      Hugues Fruchet <hugues.fruchet@st.com>
5034 L:      linux-media@vger.kernel.org
5035 S:      Supported
5036 W:      https://linuxtv.org
5037 T:      git git://linuxtv.org/media_tree.git
5038 F:      drivers/media/platform/sti/delta
5039
5040 DENALI NAND DRIVER
5041 L:      linux-mtd@lists.infradead.org
5042 S:      Orphan
5043 F:      drivers/mtd/nand/raw/denali*
5044
5045 DESIGNWARE EDMA CORE IP DRIVER
5046 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5047 L:      dmaengine@vger.kernel.org
5048 S:      Maintained
5049 F:      drivers/dma/dw-edma/
5050 F:      include/linux/dma/edma.h
5051
5052 DESIGNWARE USB2 DRD IP DRIVER
5053 M:      Minas Harutyunyan <hminas@synopsys.com>
5054 L:      linux-usb@vger.kernel.org
5055 S:      Maintained
5056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5057 F:      drivers/usb/dwc2/
5058
5059 DESIGNWARE USB3 DRD IP DRIVER
5060 M:      Felipe Balbi <balbi@kernel.org>
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/dwc3/
5065
5066 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5067 M:      Andreas Klinger <ak@it-klinger.de>
5068 L:      linux-iio@vger.kernel.org
5069 S:      Maintained
5070 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5071 F:      drivers/iio/proximity/srf*.c
5072
5073 DEVICE COREDUMP (DEV_COREDUMP)
5074 M:      Johannes Berg <johannes@sipsolutions.net>
5075 L:      linux-kernel@vger.kernel.org
5076 S:      Maintained
5077 F:      drivers/base/devcoredump.c
5078 F:      include/linux/devcoredump.h
5079
5080 DEVICE DEPENDENCY HELPER SCRIPT
5081 M:      Saravana Kannan <saravanak@google.com>
5082 L:      linux-kernel@vger.kernel.org
5083 S:      Maintained
5084 F:      scripts/dev-needs.sh
5085
5086 DEVICE DIRECT ACCESS (DAX)
5087 M:      Dan Williams <dan.j.williams@intel.com>
5088 M:      Vishal Verma <vishal.l.verma@intel.com>
5089 M:      Dave Jiang <dave.jiang@intel.com>
5090 L:      linux-nvdimm@lists.01.org
5091 S:      Supported
5092 F:      drivers/dax/
5093
5094 DEVICE FREQUENCY (DEVFREQ)
5095 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5096 M:      Kyungmin Park <kyungmin.park@samsung.com>
5097 M:      Chanwoo Choi <cw00.choi@samsung.com>
5098 L:      linux-pm@vger.kernel.org
5099 S:      Maintained
5100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5101 F:      Documentation/devicetree/bindings/devfreq/
5102 F:      drivers/devfreq/
5103 F:      include/linux/devfreq.h
5104 F:      include/trace/events/devfreq.h
5105
5106 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5107 M:      Chanwoo Choi <cw00.choi@samsung.com>
5108 L:      linux-pm@vger.kernel.org
5109 S:      Supported
5110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5111 F:      Documentation/devicetree/bindings/devfreq/event/
5112 F:      drivers/devfreq/devfreq-event.c
5113 F:      drivers/devfreq/event/
5114 F:      include/dt-bindings/pmu/exynos_ppmu.h
5115 F:      include/linux/devfreq-event.h
5116
5117 DEVICE NUMBER REGISTRY
5118 M:      Torben Mathiasen <device@lanana.org>
5119 S:      Maintained
5120 W:      http://lanana.org/docs/device-list/index.html
5121
5122 DEVICE-MAPPER  (LVM)
5123 M:      Alasdair Kergon <agk@redhat.com>
5124 M:      Mike Snitzer <snitzer@redhat.com>
5125 M:      dm-devel@redhat.com
5126 L:      dm-devel@redhat.com
5127 S:      Maintained
5128 W:      http://sources.redhat.com/dm
5129 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5131 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5132 F:      Documentation/admin-guide/device-mapper/
5133 F:      drivers/md/Kconfig
5134 F:      drivers/md/Makefile
5135 F:      drivers/md/dm*
5136 F:      drivers/md/persistent-data/
5137 F:      include/linux/device-mapper.h
5138 F:      include/linux/dm-*.h
5139 F:      include/uapi/linux/dm-*.h
5140
5141 DEVLINK
5142 M:      Jiri Pirko <jiri@nvidia.com>
5143 L:      netdev@vger.kernel.org
5144 S:      Supported
5145 F:      Documentation/networking/devlink
5146 F:      include/net/devlink.h
5147 F:      include/uapi/linux/devlink.h
5148 F:      net/core/devlink.c
5149
5150 DIALOG SEMICONDUCTOR DRIVERS
5151 M:      Support Opensource <support.opensource@diasemi.com>
5152 S:      Supported
5153 W:      http://www.dialog-semiconductor.com/products
5154 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5155 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5156 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5157 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5158 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5159 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5160 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5161 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5162 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5163 F:      Documentation/hwmon/da90??.rst
5164 F:      drivers/gpio/gpio-da90??.c
5165 F:      drivers/hwmon/da90??-hwmon.c
5166 F:      drivers/iio/adc/da91??-*.c
5167 F:      drivers/input/misc/da72??.[ch]
5168 F:      drivers/input/misc/da90??_onkey.c
5169 F:      drivers/input/touchscreen/da9052_tsi.c
5170 F:      drivers/leds/leds-da90??.c
5171 F:      drivers/mfd/da903x.c
5172 F:      drivers/mfd/da90??-*.c
5173 F:      drivers/mfd/da91??-*.c
5174 F:      drivers/pinctrl/pinctrl-da90??.c
5175 F:      drivers/power/supply/da9052-battery.c
5176 F:      drivers/power/supply/da91??-*.c
5177 F:      drivers/regulator/da9???-regulator.[ch]
5178 F:      drivers/regulator/slg51000-regulator.[ch]
5179 F:      drivers/rtc/rtc-da90??.c
5180 F:      drivers/thermal/da90??-thermal.c
5181 F:      drivers/video/backlight/da90??_bl.c
5182 F:      drivers/watchdog/da90??_wdt.c
5183 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5184 F:      include/linux/mfd/da903x.h
5185 F:      include/linux/mfd/da9052/
5186 F:      include/linux/mfd/da9055/
5187 F:      include/linux/mfd/da9062/
5188 F:      include/linux/mfd/da9063/
5189 F:      include/linux/mfd/da9150/
5190 F:      include/linux/regulator/da9211.h
5191 F:      include/sound/da[79]*.h
5192 F:      sound/soc/codecs/da[79]*.[ch]
5193
5194 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5195 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5196 L:      linux-gpio@vger.kernel.org
5197 S:      Maintained
5198 F:      drivers/gpio/gpio-gpio-mm.c
5199
5200 DIOLAN U2C-12 I2C DRIVER
5201 M:      Guenter Roeck <linux@roeck-us.net>
5202 L:      linux-i2c@vger.kernel.org
5203 S:      Maintained
5204 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5205
5206 DIRECTORY NOTIFICATION (DNOTIFY)
5207 M:      Jan Kara <jack@suse.cz>
5208 R:      Amir Goldstein <amir73il@gmail.com>
5209 L:      linux-fsdevel@vger.kernel.org
5210 S:      Maintained
5211 F:      Documentation/filesystems/dnotify.rst
5212 F:      fs/notify/dnotify/
5213 F:      include/linux/dnotify.h
5214
5215 DISK GEOMETRY AND PARTITION HANDLING
5216 M:      Andries Brouwer <aeb@cwi.nl>
5217 S:      Maintained
5218 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5219 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5220 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5221
5222 DISKQUOTA
5223 M:      Jan Kara <jack@suse.com>
5224 S:      Maintained
5225 F:      Documentation/filesystems/quota.rst
5226 F:      fs/quota/
5227 F:      include/linux/quota*.h
5228 F:      include/uapi/linux/quota*.h
5229
5230 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5231 M:      Bernie Thompson <bernie@plugable.com>
5232 L:      linux-fbdev@vger.kernel.org
5233 S:      Maintained
5234 W:      http://plugable.com/category/projects/udlfb/
5235 F:      Documentation/fb/udlfb.rst
5236 F:      drivers/video/fbdev/udlfb.c
5237 F:      include/video/udlfb.h
5238
5239 DISTRIBUTED LOCK MANAGER (DLM)
5240 M:      Christine Caulfield <ccaulfie@redhat.com>
5241 M:      David Teigland <teigland@redhat.com>
5242 L:      cluster-devel@redhat.com
5243 S:      Supported
5244 W:      http://sources.redhat.com/cluster/
5245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5246 F:      fs/dlm/
5247
5248 DMA BUFFER SHARING FRAMEWORK
5249 M:      Sumit Semwal <sumit.semwal@linaro.org>
5250 M:      Christian König <christian.koenig@amd.com>
5251 L:      linux-media@vger.kernel.org
5252 L:      dri-devel@lists.freedesktop.org
5253 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5254 S:      Maintained
5255 T:      git git://anongit.freedesktop.org/drm/drm-misc
5256 F:      Documentation/driver-api/dma-buf.rst
5257 F:      drivers/dma-buf/
5258 F:      include/linux/*fence.h
5259 F:      include/linux/dma-buf*
5260 F:      include/linux/dma-resv.h
5261 K:      \bdma_(?:buf|fence|resv)\b
5262
5263 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5264 M:      Vinod Koul <vkoul@kernel.org>
5265 L:      dmaengine@vger.kernel.org
5266 S:      Maintained
5267 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5269 F:      Documentation/devicetree/bindings/dma/
5270 F:      Documentation/driver-api/dmaengine/
5271 F:      drivers/dma/
5272 F:      include/linux/dmaengine.h
5273 F:      include/linux/of_dma.h
5274
5275 DMA MAPPING HELPERS
5276 M:      Christoph Hellwig <hch@lst.de>
5277 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5278 R:      Robin Murphy <robin.murphy@arm.com>
5279 L:      iommu@lists.linux-foundation.org
5280 S:      Supported
5281 W:      http://git.infradead.org/users/hch/dma-mapping.git
5282 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5283 F:      include/asm-generic/dma-mapping.h
5284 F:      include/linux/dma-direct.h
5285 F:      include/linux/dma-mapping.h
5286 F:      include/linux/dma-map-ops.h
5287 F:      kernel/dma/
5288
5289 DMA-BUF HEAPS FRAMEWORK
5290 M:      Sumit Semwal <sumit.semwal@linaro.org>
5291 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5292 R:      Liam Mark <lmark@codeaurora.org>
5293 R:      Laura Abbott <labbott@redhat.com>
5294 R:      Brian Starkey <Brian.Starkey@arm.com>
5295 R:      John Stultz <john.stultz@linaro.org>
5296 L:      linux-media@vger.kernel.org
5297 L:      dri-devel@lists.freedesktop.org
5298 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5299 S:      Maintained
5300 T:      git git://anongit.freedesktop.org/drm/drm-misc
5301 F:      drivers/dma-buf/dma-heap.c
5302 F:      drivers/dma-buf/heaps/*
5303 F:      include/linux/dma-heap.h
5304 F:      include/uapi/linux/dma-heap.h
5305
5306 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5307 M:      Lukasz Luba <lukasz.luba@arm.com>
5308 L:      linux-pm@vger.kernel.org
5309 L:      linux-samsung-soc@vger.kernel.org
5310 S:      Maintained
5311 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5312 F:      drivers/memory/samsung/exynos5422-dmc.c
5313
5314 DME1737 HARDWARE MONITOR DRIVER
5315 M:      Juerg Haefliger <juergh@gmail.com>
5316 L:      linux-hwmon@vger.kernel.org
5317 S:      Maintained
5318 F:      Documentation/hwmon/dme1737.rst
5319 F:      drivers/hwmon/dme1737.c
5320
5321 DMI/SMBIOS SUPPORT
5322 M:      Jean Delvare <jdelvare@suse.com>
5323 S:      Maintained
5324 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5325 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5326 F:      drivers/firmware/dmi-id.c
5327 F:      drivers/firmware/dmi_scan.c
5328 F:      include/linux/dmi.h
5329
5330 DOCUMENTATION
5331 M:      Jonathan Corbet <corbet@lwn.net>
5332 L:      linux-doc@vger.kernel.org
5333 S:      Maintained
5334 P:      Documentation/doc-guide/maintainer-profile.rst
5335 T:      git git://git.lwn.net/linux.git docs-next
5336 F:      Documentation/
5337 F:      scripts/documentation-file-ref-check
5338 F:      scripts/kernel-doc
5339 F:      scripts/sphinx-pre-install
5340 X:      Documentation/ABI/
5341 X:      Documentation/admin-guide/media/
5342 X:      Documentation/devicetree/
5343 X:      Documentation/driver-api/media/
5344 X:      Documentation/firmware-guide/acpi/
5345 X:      Documentation/i2c/
5346 X:      Documentation/power/
5347 X:      Documentation/spi/
5348 X:      Documentation/userspace-api/media/
5349
5350 DOCUMENTATION SCRIPTS
5351 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5352 L:      linux-doc@vger.kernel.org
5353 S:      Maintained
5354 F:      Documentation/sphinx/parse-headers.pl
5355 F:      scripts/documentation-file-ref-check
5356 F:      scripts/sphinx-pre-install
5357
5358 DOCUMENTATION/ITALIAN
5359 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5360 L:      linux-doc@vger.kernel.org
5361 S:      Maintained
5362 F:      Documentation/translations/it_IT
5363
5364 DONGWOON DW9714 LENS VOICE COIL DRIVER
5365 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5366 L:      linux-media@vger.kernel.org
5367 S:      Maintained
5368 T:      git git://linuxtv.org/media_tree.git
5369 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5370 F:      drivers/media/i2c/dw9714.c
5371
5372 DONGWOON DW9768 LENS VOICE COIL DRIVER
5373 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5374 L:      linux-media@vger.kernel.org
5375 S:      Maintained
5376 T:      git git://linuxtv.org/media_tree.git
5377 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5378 F:      drivers/media/i2c/dw9768.c
5379
5380 DONGWOON DW9807 LENS VOICE COIL DRIVER
5381 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5382 L:      linux-media@vger.kernel.org
5383 S:      Maintained
5384 T:      git git://linuxtv.org/media_tree.git
5385 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5386 F:      drivers/media/i2c/dw9807-vcm.c
5387
5388 DOUBLETALK DRIVER
5389 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5390 L:      blinux-list@redhat.com
5391 S:      Maintained
5392 F:      drivers/char/dtlk.c
5393 F:      include/linux/dtlk.h
5394
5395 DPAA2 DATAPATH I/O (DPIO) DRIVER
5396 M:      Roy Pledge <Roy.Pledge@nxp.com>
5397 L:      linux-kernel@vger.kernel.org
5398 S:      Maintained
5399 F:      drivers/soc/fsl/dpio
5400
5401 DPAA2 ETHERNET DRIVER
5402 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5403 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5404 L:      netdev@vger.kernel.org
5405 S:      Maintained
5406 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5407 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5408 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5409 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5410 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5411 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5412 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5413 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5414 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5415
5416 DPAA2 ETHERNET SWITCH DRIVER
5417 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5418 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5419 L:      linux-kernel@vger.kernel.org
5420 S:      Maintained
5421 F:      drivers/staging/fsl-dpaa2/ethsw
5422
5423 DPT_I2O SCSI RAID DRIVER
5424 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5425 L:      linux-scsi@vger.kernel.org
5426 S:      Maintained
5427 W:      http://www.adaptec.com/
5428 F:      drivers/scsi/dpt*
5429 F:      drivers/scsi/dpt/
5430
5431 DRBD DRIVER
5432 M:      Philipp Reisner <philipp.reisner@linbit.com>
5433 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5434 L:      drbd-dev@lists.linbit.com
5435 S:      Supported
5436 W:      http://www.drbd.org
5437 T:      git git://git.linbit.com/linux-drbd.git
5438 T:      git git://git.linbit.com/drbd-8.4.git
5439 F:      Documentation/admin-guide/blockdev/
5440 F:      drivers/block/drbd/
5441 F:      lib/lru_cache.c
5442
5443 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5444 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5445 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5446 S:      Supported
5447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5448 F:      Documentation/core-api/kobject.rst
5449 F:      drivers/base/
5450 F:      fs/debugfs/
5451 F:      fs/sysfs/
5452 F:      include/linux/debugfs.h
5453 F:      include/linux/kobj*
5454 F:      lib/kobj*
5455
5456 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5457 M:      Nishanth Menon <nm@ti.com>
5458 L:      linux-pm@vger.kernel.org
5459 S:      Maintained
5460 F:      drivers/soc/ti/smartreflex.c
5461 F:      include/linux/power/smartreflex.h
5462
5463 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5464 M:      Maxime Ripard <mripard@kernel.org>
5465 M:      Chen-Yu Tsai <wens@csie.org>
5466 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5467 L:      dri-devel@lists.freedesktop.org
5468 S:      Supported
5469 T:      git git://anongit.freedesktop.org/drm/drm-misc
5470 F:      drivers/gpu/drm/sun4i/sun8i*
5471
5472 DRM DRIVER FOR ARM PL111 CLCD
5473 M:      Eric Anholt <eric@anholt.net>
5474 S:      Supported
5475 T:      git git://anongit.freedesktop.org/drm/drm-misc
5476 F:      drivers/gpu/drm/pl111/
5477
5478 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5479 M:      Linus Walleij <linus.walleij@linaro.org>
5480 S:      Maintained
5481 T:      git git://anongit.freedesktop.org/drm/drm-misc
5482 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5483 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5484
5485 DRM DRIVER FOR ASPEED BMC GFX
5486 M:      Joel Stanley <joel@jms.id.au>
5487 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5488 S:      Supported
5489 T:      git git://anongit.freedesktop.org/drm/drm-misc
5490 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5491 F:      drivers/gpu/drm/aspeed/
5492
5493 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5494 M:      Dave Airlie <airlied@redhat.com>
5495 R:      Thomas Zimmermann <tzimmermann@suse.de>
5496 L:      dri-devel@lists.freedesktop.org
5497 S:      Supported
5498 T:      git git://anongit.freedesktop.org/drm/drm-misc
5499 F:      drivers/gpu/drm/ast/
5500
5501 DRM DRIVER FOR BOCHS VIRTUAL GPU
5502 M:      Gerd Hoffmann <kraxel@redhat.com>
5503 L:      virtualization@lists.linux-foundation.org
5504 S:      Maintained
5505 T:      git git://anongit.freedesktop.org/drm/drm-misc
5506 F:      drivers/gpu/drm/bochs/
5507
5508 DRM DRIVER FOR BOE HIMAX8279D PANELS
5509 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5510 S:      Maintained
5511 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5512 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5513
5514 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5515 M:      Linus Walleij <linus.walleij@linaro.org>
5516 S:      Maintained
5517 T:      git git://anongit.freedesktop.org/drm/drm-misc
5518 F:      drivers/gpu/drm/tve200/
5519
5520 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5521 M:      Icenowy Zheng <icenowy@aosc.io>
5522 S:      Maintained
5523 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5524 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5525
5526 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5527 M:      Jagan Teki <jagan@amarulasolutions.com>
5528 S:      Maintained
5529 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5530 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5531
5532 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5533 M:      Hans de Goede <hdegoede@redhat.com>
5534 S:      Maintained
5535 T:      git git://anongit.freedesktop.org/drm/drm-misc
5536 F:      drivers/gpu/drm/tiny/gm12u320.c
5537
5538 DRM DRIVER FOR HX8357D PANELS
5539 M:      Eric Anholt <eric@anholt.net>
5540 S:      Maintained
5541 T:      git git://anongit.freedesktop.org/drm/drm-misc
5542 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5543 F:      drivers/gpu/drm/tiny/hx8357d.c
5544
5545 DRM DRIVER FOR ILITEK ILI9225 PANELS
5546 M:      David Lechner <david@lechnology.com>
5547 S:      Maintained
5548 T:      git git://anongit.freedesktop.org/drm/drm-misc
5549 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5550 F:      drivers/gpu/drm/tiny/ili9225.c
5551
5552 DRM DRIVER FOR ILITEK ILI9486 PANELS
5553 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5554 S:      Maintained
5555 T:      git git://anongit.freedesktop.org/drm/drm-misc
5556 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5557 F:      drivers/gpu/drm/tiny/ili9486.c
5558
5559 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5560 S:      Orphan / Obsolete
5561 F:      drivers/gpu/drm/i810/
5562 F:      include/uapi/drm/i810_drm.h
5563
5564 DRM DRIVER FOR LVDS PANELS
5565 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5566 L:      dri-devel@lists.freedesktop.org
5567 T:      git git://anongit.freedesktop.org/drm/drm-misc
5568 S:      Maintained
5569 F:      drivers/gpu/drm/panel/panel-lvds.c
5570 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5571
5572 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5573 M:      Guido Günther <agx@sigxcpu.org>
5574 R:      Purism Kernel Team <kernel@puri.sm>
5575 S:      Maintained
5576 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5577 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5578
5579 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5580 S:      Orphan / Obsolete
5581 F:      drivers/gpu/drm/mga/
5582 F:      include/uapi/drm/mga_drm.h
5583
5584 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5585 M:      Dave Airlie <airlied@redhat.com>
5586 R:      Thomas Zimmermann <tzimmermann@suse.de>
5587 L:      dri-devel@lists.freedesktop.org
5588 S:      Supported
5589 T:      git git://anongit.freedesktop.org/drm/drm-misc
5590 F:      drivers/gpu/drm/mgag200/
5591
5592 DRM DRIVER FOR MI0283QT
5593 M:      Noralf Trønnes <noralf@tronnes.org>
5594 S:      Maintained
5595 T:      git git://anongit.freedesktop.org/drm/drm-misc
5596 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5597 F:      drivers/gpu/drm/tiny/mi0283qt.c
5598
5599 DRM DRIVER FOR MSM ADRENO GPU
5600 M:      Rob Clark <robdclark@gmail.com>
5601 M:      Sean Paul <sean@poorly.run>
5602 L:      linux-arm-msm@vger.kernel.org
5603 L:      dri-devel@lists.freedesktop.org
5604 L:      freedreno@lists.freedesktop.org
5605 S:      Maintained
5606 T:      git https://gitlab.freedesktop.org/drm/msm.git
5607 F:      Documentation/devicetree/bindings/display/msm/
5608 F:      drivers/gpu/drm/msm/
5609 F:      include/uapi/drm/msm_drm.h
5610
5611 DRM DRIVER FOR NOVATEK NT35510 PANELS
5612 M:      Linus Walleij <linus.walleij@linaro.org>
5613 S:      Maintained
5614 T:      git git://anongit.freedesktop.org/drm/drm-misc
5615 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5616 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5617
5618 DRM DRIVER FOR NOVATEK NT36672A PANELS
5619 M:      Sumit Semwal <sumit.semwal@linaro.org>
5620 S:      Maintained
5621 T:      git git://anongit.freedesktop.org/drm/drm-misc
5622 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
5623 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
5624
5625 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5626 M:      Ben Skeggs <bskeggs@redhat.com>
5627 L:      dri-devel@lists.freedesktop.org
5628 L:      nouveau@lists.freedesktop.org
5629 S:      Supported
5630 T:      git git://github.com/skeggsb/linux
5631 F:      drivers/gpu/drm/nouveau/
5632 F:      include/uapi/drm/nouveau_drm.h
5633
5634 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5635 M:      Stefan Mavrodiev <stefan@olimex.com>
5636 S:      Maintained
5637 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5638 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5639
5640 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5641 M:      Noralf Trønnes <noralf@tronnes.org>
5642 S:      Maintained
5643 T:      git git://anongit.freedesktop.org/drm/drm-misc
5644 F:      Documentation/devicetree/bindings/display/repaper.txt
5645 F:      drivers/gpu/drm/tiny/repaper.c
5646
5647 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5648 M:      Dave Airlie <airlied@redhat.com>
5649 M:      Gerd Hoffmann <kraxel@redhat.com>
5650 L:      virtualization@lists.linux-foundation.org
5651 S:      Obsolete
5652 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5653 T:      git git://anongit.freedesktop.org/drm/drm-misc
5654 F:      drivers/gpu/drm/tiny/cirrus.c
5655
5656 DRM DRIVER FOR QXL VIRTUAL GPU
5657 M:      Dave Airlie <airlied@redhat.com>
5658 M:      Gerd Hoffmann <kraxel@redhat.com>
5659 L:      virtualization@lists.linux-foundation.org
5660 L:      spice-devel@lists.freedesktop.org
5661 S:      Maintained
5662 T:      git git://anongit.freedesktop.org/drm/drm-misc
5663 F:      drivers/gpu/drm/qxl/
5664 F:      include/uapi/drm/qxl_drm.h
5665
5666 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5667 S:      Orphan / Obsolete
5668 F:      drivers/gpu/drm/r128/
5669 F:      include/uapi/drm/r128_drm.h
5670
5671 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5672 M:      Robert Chiras <robert.chiras@nxp.com>
5673 S:      Maintained
5674 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5675 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5676
5677 DRM DRIVER FOR SITRONIX ST7703 PANELS
5678 M:      Guido Günther <agx@sigxcpu.org>
5679 R:      Purism Kernel Team <kernel@puri.sm>
5680 R:      Ondrej Jirman <megous@megous.com>
5681 S:      Maintained
5682 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
5683 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
5684
5685 DRM DRIVER FOR SAVAGE VIDEO CARDS
5686 S:      Orphan / Obsolete
5687 F:      drivers/gpu/drm/savage/
5688 F:      include/uapi/drm/savage_drm.h
5689
5690 DRM DRIVER FOR SIS VIDEO CARDS
5691 S:      Orphan / Obsolete
5692 F:      drivers/gpu/drm/sis/
5693 F:      include/uapi/drm/sis_drm.h
5694
5695 DRM DRIVER FOR SITRONIX ST7586 PANELS
5696 M:      David Lechner <david@lechnology.com>
5697 S:      Maintained
5698 T:      git git://anongit.freedesktop.org/drm/drm-misc
5699 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5700 F:      drivers/gpu/drm/tiny/st7586.c
5701
5702 DRM DRIVER FOR SITRONIX ST7701 PANELS
5703 M:      Jagan Teki <jagan@amarulasolutions.com>
5704 S:      Maintained
5705 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5706 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5707
5708 DRM DRIVER FOR SITRONIX ST7735R PANELS
5709 M:      David Lechner <david@lechnology.com>
5710 S:      Maintained
5711 T:      git git://anongit.freedesktop.org/drm/drm-misc
5712 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5713 F:      drivers/gpu/drm/tiny/st7735r.c
5714
5715 DRM DRIVER FOR SONY ACX424AKP PANELS
5716 M:      Linus Walleij <linus.walleij@linaro.org>
5717 S:      Maintained
5718 T:      git git://anongit.freedesktop.org/drm/drm-misc
5719 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5720
5721 DRM DRIVER FOR ST-ERICSSON MCDE
5722 M:      Linus Walleij <linus.walleij@linaro.org>
5723 S:      Maintained
5724 T:      git git://anongit.freedesktop.org/drm/drm-misc
5725 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5726 F:      drivers/gpu/drm/mcde/
5727
5728 DRM DRIVER FOR TDFX VIDEO CARDS
5729 S:      Orphan / Obsolete
5730 F:      drivers/gpu/drm/tdfx/
5731
5732 DRM DRIVER FOR TPO TPG110 PANELS
5733 M:      Linus Walleij <linus.walleij@linaro.org>
5734 S:      Maintained
5735 T:      git git://anongit.freedesktop.org/drm/drm-misc
5736 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5737 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5738
5739 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5740 M:      Dave Airlie <airlied@redhat.com>
5741 R:      Sean Paul <sean@poorly.run>
5742 R:      Thomas Zimmermann <tzimmermann@suse.de>
5743 L:      dri-devel@lists.freedesktop.org
5744 S:      Supported
5745 T:      git git://anongit.freedesktop.org/drm/drm-misc
5746 F:      drivers/gpu/drm/udl/
5747
5748 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5749 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5750 M:      Melissa Wen <melissa.srw@gmail.com>
5751 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5752 R:      Daniel Vetter <daniel@ffwll.ch>
5753 L:      dri-devel@lists.freedesktop.org
5754 S:      Maintained
5755 T:      git git://anongit.freedesktop.org/drm/drm-misc
5756 F:      Documentation/gpu/vkms.rst
5757 F:      drivers/gpu/drm/vkms/
5758
5759 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5760 M:      Hans de Goede <hdegoede@redhat.com>
5761 L:      dri-devel@lists.freedesktop.org
5762 S:      Maintained
5763 T:      git git://anongit.freedesktop.org/drm/drm-misc
5764 F:      drivers/gpu/drm/vboxvideo/
5765
5766 DRM DRIVER FOR VMWARE VIRTUAL GPU
5767 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5768 M:      Roland Scheidegger <sroland@vmware.com>
5769 L:      dri-devel@lists.freedesktop.org
5770 S:      Supported
5771 T:      git git://people.freedesktop.org/~sroland/linux
5772 F:      drivers/gpu/drm/vmwgfx/
5773 F:      include/uapi/drm/vmwgfx_drm.h
5774
5775 DRM DRIVERS
5776 M:      David Airlie <airlied@linux.ie>
5777 M:      Daniel Vetter <daniel@ffwll.ch>
5778 L:      dri-devel@lists.freedesktop.org
5779 S:      Maintained
5780 B:      https://bugs.freedesktop.org/
5781 C:      irc://chat.freenode.net/dri-devel
5782 T:      git git://anongit.freedesktop.org/drm/drm
5783 F:      Documentation/devicetree/bindings/display/
5784 F:      Documentation/devicetree/bindings/gpu/
5785 F:      Documentation/gpu/
5786 F:      drivers/gpu/drm/
5787 F:      drivers/gpu/vga/
5788 F:      include/drm/
5789 F:      include/linux/vga*
5790 F:      include/uapi/drm/
5791
5792 DRM DRIVERS AND MISC GPU PATCHES
5793 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5794 M:      Maxime Ripard <mripard@kernel.org>
5795 M:      Thomas Zimmermann <tzimmermann@suse.de>
5796 S:      Maintained
5797 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5798 T:      git git://anongit.freedesktop.org/drm/drm-misc
5799 F:      Documentation/gpu/
5800 F:      drivers/gpu/drm/*
5801 F:      drivers/gpu/vga/
5802 F:      include/drm/drm*
5803 F:      include/linux/vga*
5804 F:      include/uapi/drm/drm*
5805
5806 DRM DRIVERS FOR ALLWINNER A10
5807 M:      Maxime Ripard <mripard@kernel.org>
5808 M:      Chen-Yu Tsai <wens@csie.org>
5809 L:      dri-devel@lists.freedesktop.org
5810 S:      Supported
5811 T:      git git://anongit.freedesktop.org/drm/drm-misc
5812 F:      Documentation/devicetree/bindings/display/allwinner*
5813 F:      drivers/gpu/drm/sun4i/
5814
5815 DRM DRIVERS FOR AMLOGIC SOCS
5816 M:      Neil Armstrong <narmstrong@baylibre.com>
5817 L:      dri-devel@lists.freedesktop.org
5818 L:      linux-amlogic@lists.infradead.org
5819 S:      Supported
5820 W:      http://linux-meson.com/
5821 T:      git git://anongit.freedesktop.org/drm/drm-misc
5822 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5823 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5824 F:      Documentation/gpu/meson.rst
5825 F:      drivers/gpu/drm/meson/
5826
5827 DRM DRIVERS FOR ATMEL HLCDC
5828 M:      Sam Ravnborg <sam@ravnborg.org>
5829 M:      Boris Brezillon <bbrezillon@kernel.org>
5830 L:      dri-devel@lists.freedesktop.org
5831 S:      Supported
5832 T:      git git://anongit.freedesktop.org/drm/drm-misc
5833 F:      Documentation/devicetree/bindings/display/atmel/
5834 F:      drivers/gpu/drm/atmel-hlcdc/
5835
5836 DRM DRIVERS FOR BRIDGE CHIPS
5837 M:      Andrzej Hajda <a.hajda@samsung.com>
5838 M:      Neil Armstrong <narmstrong@baylibre.com>
5839 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5840 R:      Jonas Karlman <jonas@kwiboo.se>
5841 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5842 S:      Maintained
5843 T:      git git://anongit.freedesktop.org/drm/drm-misc
5844 F:      drivers/gpu/drm/bridge/
5845
5846 DRM DRIVERS FOR EXYNOS
5847 M:      Inki Dae <inki.dae@samsung.com>
5848 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5849 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5850 M:      Kyungmin Park <kyungmin.park@samsung.com>
5851 L:      dri-devel@lists.freedesktop.org
5852 S:      Supported
5853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5854 F:      Documentation/devicetree/bindings/display/exynos/
5855 F:      drivers/gpu/drm/exynos/
5856 F:      include/uapi/drm/exynos_drm.h
5857
5858 DRM DRIVERS FOR FREESCALE DCU
5859 M:      Stefan Agner <stefan@agner.ch>
5860 M:      Alison Wang <alison.wang@nxp.com>
5861 L:      dri-devel@lists.freedesktop.org
5862 S:      Supported
5863 T:      git git://anongit.freedesktop.org/drm/drm-misc
5864 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5865 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5866 F:      drivers/gpu/drm/fsl-dcu/
5867
5868 DRM DRIVERS FOR FREESCALE IMX
5869 M:      Philipp Zabel <p.zabel@pengutronix.de>
5870 L:      dri-devel@lists.freedesktop.org
5871 S:      Maintained
5872 F:      Documentation/devicetree/bindings/display/imx/
5873 F:      drivers/gpu/drm/imx/
5874 F:      drivers/gpu/ipu-v3/
5875
5876 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5877 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5878 L:      dri-devel@lists.freedesktop.org
5879 S:      Maintained
5880 T:      git git://github.com/patjak/drm-gma500
5881 F:      drivers/gpu/drm/gma500/
5882
5883 DRM DRIVERS FOR HISILICON
5884 M:      Xinliang Liu <xinliang.liu@linaro.org>
5885 M:      Tian Tao  <tiantao6@hisilicon.com>
5886 R:      John Stultz <john.stultz@linaro.org>
5887 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5888 R:      Chen Feng <puck.chen@hisilicon.com>
5889 L:      dri-devel@lists.freedesktop.org
5890 S:      Maintained
5891 T:      git git://anongit.freedesktop.org/drm/drm-misc
5892 F:      Documentation/devicetree/bindings/display/hisilicon/
5893 F:      drivers/gpu/drm/hisilicon/
5894
5895 DRM DRIVERS FOR LIMA
5896 M:      Qiang Yu <yuq825@gmail.com>
5897 L:      dri-devel@lists.freedesktop.org
5898 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5899 S:      Maintained
5900 T:      git git://anongit.freedesktop.org/drm/drm-misc
5901 F:      drivers/gpu/drm/lima/
5902 F:      include/uapi/drm/lima_drm.h
5903
5904 DRM DRIVERS FOR MEDIATEK
5905 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
5906 M:      Philipp Zabel <p.zabel@pengutronix.de>
5907 L:      dri-devel@lists.freedesktop.org
5908 S:      Supported
5909 F:      Documentation/devicetree/bindings/display/mediatek/
5910 F:      drivers/gpu/drm/mediatek/
5911 F:      drivers/phy/mediatek/phy-mtk-hdmi*
5912 F:      drivers/phy/mediatek/phy-mtk-mipi*
5913
5914 DRM DRIVERS FOR NVIDIA TEGRA
5915 M:      Thierry Reding <thierry.reding@gmail.com>
5916 L:      dri-devel@lists.freedesktop.org
5917 L:      linux-tegra@vger.kernel.org
5918 S:      Supported
5919 T:      git git://anongit.freedesktop.org/tegra/linux.git
5920 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5921 F:      drivers/gpu/drm/tegra/
5922 F:      drivers/gpu/host1x/
5923 F:      include/linux/host1x.h
5924 F:      include/uapi/drm/tegra_drm.h
5925
5926 DRM DRIVERS FOR RENESAS
5927 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5928 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5929 L:      dri-devel@lists.freedesktop.org
5930 L:      linux-renesas-soc@vger.kernel.org
5931 S:      Supported
5932 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5933 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5934 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
5935 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5936 F:      drivers/gpu/drm/rcar-du/
5937 F:      drivers/gpu/drm/shmobile/
5938 F:      include/linux/platform_data/shmob_drm.h
5939
5940 DRM DRIVERS FOR ROCKCHIP
5941 M:      Sandy Huang <hjc@rock-chips.com>
5942 M:      Heiko Stübner <heiko@sntech.de>
5943 L:      dri-devel@lists.freedesktop.org
5944 S:      Maintained
5945 T:      git git://anongit.freedesktop.org/drm/drm-misc
5946 F:      Documentation/devicetree/bindings/display/rockchip/
5947 F:      drivers/gpu/drm/rockchip/
5948
5949 DRM DRIVERS FOR STI
5950 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5951 M:      Vincent Abriou <vincent.abriou@st.com>
5952 L:      dri-devel@lists.freedesktop.org
5953 S:      Maintained
5954 T:      git git://anongit.freedesktop.org/drm/drm-misc
5955 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5956 F:      drivers/gpu/drm/sti
5957
5958 DRM DRIVERS FOR STM
5959 M:      Yannick Fertre <yannick.fertre@st.com>
5960 M:      Philippe Cornu <philippe.cornu@st.com>
5961 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5962 M:      Vincent Abriou <vincent.abriou@st.com>
5963 L:      dri-devel@lists.freedesktop.org
5964 S:      Maintained
5965 T:      git git://anongit.freedesktop.org/drm/drm-misc
5966 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5967 F:      drivers/gpu/drm/stm
5968
5969 DRM DRIVERS FOR TI KEYSTONE
5970 M:      Jyri Sarha <jsarha@ti.com>
5971 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5972 L:      dri-devel@lists.freedesktop.org
5973 S:      Maintained
5974 T:      git git://anongit.freedesktop.org/drm/drm-misc
5975 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5976 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5977 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5978 F:      drivers/gpu/drm/tidss/
5979
5980 DRM DRIVERS FOR TI LCDC
5981 M:      Jyri Sarha <jsarha@ti.com>
5982 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5983 L:      dri-devel@lists.freedesktop.org
5984 S:      Maintained
5985 F:      Documentation/devicetree/bindings/display/tilcdc/
5986 F:      drivers/gpu/drm/tilcdc/
5987
5988 DRM DRIVERS FOR TI OMAP
5989 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5990 L:      dri-devel@lists.freedesktop.org
5991 S:      Maintained
5992 F:      Documentation/devicetree/bindings/display/ti/
5993 F:      drivers/gpu/drm/omapdrm/
5994
5995 DRM DRIVERS FOR V3D
5996 M:      Eric Anholt <eric@anholt.net>
5997 S:      Supported
5998 T:      git git://anongit.freedesktop.org/drm/drm-misc
5999 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
6000 F:      drivers/gpu/drm/v3d/
6001 F:      include/uapi/drm/v3d_drm.h
6002
6003 DRM DRIVERS FOR VC4
6004 M:      Eric Anholt <eric@anholt.net>
6005 M:      Maxime Ripard <mripard@kernel.org>
6006 S:      Supported
6007 T:      git git://github.com/anholt/linux
6008 T:      git git://anongit.freedesktop.org/drm/drm-misc
6009 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6010 F:      drivers/gpu/drm/vc4/
6011 F:      include/uapi/drm/vc4_drm.h
6012
6013 DRM DRIVERS FOR VIVANTE GPU IP
6014 M:      Lucas Stach <l.stach@pengutronix.de>
6015 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6016 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6017 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6018 L:      dri-devel@lists.freedesktop.org
6019 S:      Maintained
6020 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6021 F:      drivers/gpu/drm/etnaviv/
6022 F:      include/uapi/drm/etnaviv_drm.h
6023
6024 DRM DRIVERS FOR XEN
6025 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6026 L:      dri-devel@lists.freedesktop.org
6027 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6028 S:      Supported
6029 T:      git git://anongit.freedesktop.org/drm/drm-misc
6030 F:      Documentation/gpu/xen-front.rst
6031 F:      drivers/gpu/drm/xen/
6032
6033 DRM DRIVERS FOR XILINX
6034 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6035 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6036 L:      dri-devel@lists.freedesktop.org
6037 S:      Maintained
6038 T:      git git://anongit.freedesktop.org/drm/drm-misc
6039 F:      Documentation/devicetree/bindings/display/xlnx/
6040 F:      drivers/gpu/drm/xlnx/
6041
6042 DRM DRIVERS FOR ZTE ZX
6043 M:      Shawn Guo <shawnguo@kernel.org>
6044 L:      dri-devel@lists.freedesktop.org
6045 S:      Maintained
6046 T:      git git://anongit.freedesktop.org/drm/drm-misc
6047 F:      Documentation/devicetree/bindings/display/zte,vou.txt
6048 F:      drivers/gpu/drm/zte/
6049
6050 DRM PANEL DRIVERS
6051 M:      Thierry Reding <thierry.reding@gmail.com>
6052 R:      Sam Ravnborg <sam@ravnborg.org>
6053 L:      dri-devel@lists.freedesktop.org
6054 S:      Maintained
6055 T:      git git://anongit.freedesktop.org/drm/drm-misc
6056 F:      Documentation/devicetree/bindings/display/panel/
6057 F:      drivers/gpu/drm/drm_panel.c
6058 F:      drivers/gpu/drm/panel/
6059 F:      include/drm/drm_panel.h
6060
6061 DRM TTM SUBSYSTEM
6062 M:      Christian Koenig <christian.koenig@amd.com>
6063 M:      Huang Rui <ray.huang@amd.com>
6064 L:      dri-devel@lists.freedesktop.org
6065 S:      Maintained
6066 T:      git git://people.freedesktop.org/~agd5f/linux
6067 F:      drivers/gpu/drm/ttm/
6068 F:      include/drm/ttm/
6069
6070 DSBR100 USB FM RADIO DRIVER
6071 M:      Alexey Klimov <klimov.linux@gmail.com>
6072 L:      linux-media@vger.kernel.org
6073 S:      Maintained
6074 T:      git git://linuxtv.org/media_tree.git
6075 F:      drivers/media/radio/dsbr100.c
6076
6077 DT3155 MEDIA DRIVER
6078 M:      Hans Verkuil <hverkuil@xs4all.nl>
6079 L:      linux-media@vger.kernel.org
6080 S:      Odd Fixes
6081 W:      https://linuxtv.org
6082 T:      git git://linuxtv.org/media_tree.git
6083 F:      drivers/media/pci/dt3155/
6084
6085 DVB_USB_AF9015 MEDIA DRIVER
6086 M:      Antti Palosaari <crope@iki.fi>
6087 L:      linux-media@vger.kernel.org
6088 S:      Maintained
6089 W:      https://linuxtv.org
6090 W:      http://palosaari.fi/linux/
6091 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6092 T:      git git://linuxtv.org/anttip/media_tree.git
6093 F:      drivers/media/usb/dvb-usb-v2/af9015*
6094
6095 DVB_USB_AF9035 MEDIA DRIVER
6096 M:      Antti Palosaari <crope@iki.fi>
6097 L:      linux-media@vger.kernel.org
6098 S:      Maintained
6099 W:      https://linuxtv.org
6100 W:      http://palosaari.fi/linux/
6101 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6102 T:      git git://linuxtv.org/anttip/media_tree.git
6103 F:      drivers/media/usb/dvb-usb-v2/af9035*
6104
6105 DVB_USB_ANYSEE MEDIA DRIVER
6106 M:      Antti Palosaari <crope@iki.fi>
6107 L:      linux-media@vger.kernel.org
6108 S:      Maintained
6109 W:      https://linuxtv.org
6110 W:      http://palosaari.fi/linux/
6111 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6112 T:      git git://linuxtv.org/anttip/media_tree.git
6113 F:      drivers/media/usb/dvb-usb-v2/anysee*
6114
6115 DVB_USB_AU6610 MEDIA DRIVER
6116 M:      Antti Palosaari <crope@iki.fi>
6117 L:      linux-media@vger.kernel.org
6118 S:      Maintained
6119 W:      https://linuxtv.org
6120 W:      http://palosaari.fi/linux/
6121 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6122 T:      git git://linuxtv.org/anttip/media_tree.git
6123 F:      drivers/media/usb/dvb-usb-v2/au6610*
6124
6125 DVB_USB_CE6230 MEDIA DRIVER
6126 M:      Antti Palosaari <crope@iki.fi>
6127 L:      linux-media@vger.kernel.org
6128 S:      Maintained
6129 W:      https://linuxtv.org
6130 W:      http://palosaari.fi/linux/
6131 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6132 T:      git git://linuxtv.org/anttip/media_tree.git
6133 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6134
6135 DVB_USB_CXUSB MEDIA DRIVER
6136 M:      Michael Krufky <mkrufky@linuxtv.org>
6137 L:      linux-media@vger.kernel.org
6138 S:      Maintained
6139 W:      https://linuxtv.org
6140 W:      http://github.com/mkrufky
6141 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6142 T:      git git://linuxtv.org/media_tree.git
6143 F:      drivers/media/usb/dvb-usb/cxusb*
6144
6145 DVB_USB_EC168 MEDIA DRIVER
6146 M:      Antti Palosaari <crope@iki.fi>
6147 L:      linux-media@vger.kernel.org
6148 S:      Maintained
6149 W:      https://linuxtv.org
6150 W:      http://palosaari.fi/linux/
6151 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6152 T:      git git://linuxtv.org/anttip/media_tree.git
6153 F:      drivers/media/usb/dvb-usb-v2/ec168*
6154
6155 DVB_USB_GL861 MEDIA DRIVER
6156 M:      Antti Palosaari <crope@iki.fi>
6157 L:      linux-media@vger.kernel.org
6158 S:      Maintained
6159 W:      https://linuxtv.org
6160 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6161 T:      git git://linuxtv.org/anttip/media_tree.git
6162 F:      drivers/media/usb/dvb-usb-v2/gl861*
6163
6164 DVB_USB_MXL111SF MEDIA DRIVER
6165 M:      Michael Krufky <mkrufky@linuxtv.org>
6166 L:      linux-media@vger.kernel.org
6167 S:      Maintained
6168 W:      https://linuxtv.org
6169 W:      http://github.com/mkrufky
6170 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6171 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6172 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6173
6174 DVB_USB_RTL28XXU MEDIA DRIVER
6175 M:      Antti Palosaari <crope@iki.fi>
6176 L:      linux-media@vger.kernel.org
6177 S:      Maintained
6178 W:      https://linuxtv.org
6179 W:      http://palosaari.fi/linux/
6180 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6181 T:      git git://linuxtv.org/anttip/media_tree.git
6182 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6183
6184 DVB_USB_V2 MEDIA DRIVER
6185 M:      Antti Palosaari <crope@iki.fi>
6186 L:      linux-media@vger.kernel.org
6187 S:      Maintained
6188 W:      https://linuxtv.org
6189 W:      http://palosaari.fi/linux/
6190 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6191 T:      git git://linuxtv.org/anttip/media_tree.git
6192 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6193 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6194
6195 DYNAMIC DEBUG
6196 M:      Jason Baron <jbaron@akamai.com>
6197 S:      Maintained
6198 F:      include/linux/dynamic_debug.h
6199 F:      lib/dynamic_debug.c
6200
6201 DYNAMIC INTERRUPT MODERATION
6202 M:      Tal Gilboa <talgi@nvidia.com>
6203 S:      Maintained
6204 F:      Documentation/networking/net_dim.rst
6205 F:      include/linux/dim.h
6206 F:      lib/dim/
6207
6208 DZ DECSTATION DZ11 SERIAL DRIVER
6209 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
6210 S:      Maintained
6211 F:      drivers/tty/serial/dz.*
6212
6213 E3X0 POWER BUTTON DRIVER
6214 M:      Moritz Fischer <moritz.fischer@ettus.com>
6215 L:      usrp-users@lists.ettus.com
6216 S:      Supported
6217 W:      http://www.ettus.com
6218 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6219 F:      drivers/input/misc/e3x0-button.c
6220
6221 E4000 MEDIA DRIVER
6222 M:      Antti Palosaari <crope@iki.fi>
6223 L:      linux-media@vger.kernel.org
6224 S:      Maintained
6225 W:      https://linuxtv.org
6226 W:      http://palosaari.fi/linux/
6227 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6228 T:      git git://linuxtv.org/anttip/media_tree.git
6229 F:      drivers/media/tuners/e4000*
6230
6231 EARTH_PT1 MEDIA DRIVER
6232 M:      Akihiro Tsukada <tskd08@gmail.com>
6233 L:      linux-media@vger.kernel.org
6234 S:      Odd Fixes
6235 F:      drivers/media/pci/pt1/
6236
6237 EARTH_PT3 MEDIA DRIVER
6238 M:      Akihiro Tsukada <tskd08@gmail.com>
6239 L:      linux-media@vger.kernel.org
6240 S:      Odd Fixes
6241 F:      drivers/media/pci/pt3/
6242
6243 EC100 MEDIA DRIVER
6244 M:      Antti Palosaari <crope@iki.fi>
6245 L:      linux-media@vger.kernel.org
6246 S:      Maintained
6247 W:      https://linuxtv.org
6248 W:      http://palosaari.fi/linux/
6249 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6250 T:      git git://linuxtv.org/anttip/media_tree.git
6251 F:      drivers/media/dvb-frontends/ec100*
6252
6253 ECRYPT FILE SYSTEM
6254 M:      Tyler Hicks <code@tyhicks.com>
6255 L:      ecryptfs@vger.kernel.org
6256 S:      Odd Fixes
6257 W:      http://ecryptfs.org
6258 W:      https://launchpad.net/ecryptfs
6259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6260 F:      Documentation/filesystems/ecryptfs.rst
6261 F:      fs/ecryptfs/
6262
6263 EDAC-AMD64
6264 M:      Borislav Petkov <bp@alien8.de>
6265 L:      linux-edac@vger.kernel.org
6266 S:      Maintained
6267 F:      drivers/edac/amd64_edac*
6268
6269 EDAC-ARMADA
6270 M:      Jan Luebbe <jlu@pengutronix.de>
6271 L:      linux-edac@vger.kernel.org
6272 S:      Maintained
6273 F:      drivers/edac/armada_xp_*
6274
6275 EDAC-AST2500
6276 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6277 S:      Supported
6278 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6279 F:      drivers/edac/aspeed_edac.c
6280
6281 EDAC-BLUEFIELD
6282 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6283 S:      Supported
6284 F:      drivers/edac/bluefield_edac.c
6285
6286 EDAC-CALXEDA
6287 M:      Andre Przywara <andre.przywara@arm.com>
6288 L:      linux-edac@vger.kernel.org
6289 S:      Maintained
6290 F:      drivers/edac/highbank*
6291
6292 EDAC-CAVIUM OCTEON
6293 M:      Ralf Baechle <ralf@linux-mips.org>
6294 L:      linux-edac@vger.kernel.org
6295 L:      linux-mips@vger.kernel.org
6296 S:      Supported
6297 F:      drivers/edac/octeon_edac*
6298
6299 EDAC-CAVIUM THUNDERX
6300 M:      Robert Richter <rric@kernel.org>
6301 L:      linux-edac@vger.kernel.org
6302 S:      Odd Fixes
6303 F:      drivers/edac/thunderx_edac*
6304
6305 EDAC-CORE
6306 M:      Borislav Petkov <bp@alien8.de>
6307 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6308 M:      Tony Luck <tony.luck@intel.com>
6309 R:      James Morse <james.morse@arm.com>
6310 R:      Robert Richter <rric@kernel.org>
6311 L:      linux-edac@vger.kernel.org
6312 S:      Supported
6313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6314 F:      Documentation/admin-guide/ras.rst
6315 F:      Documentation/driver-api/edac.rst
6316 F:      drivers/edac/
6317 F:      include/linux/edac.h
6318
6319 EDAC-DMC520
6320 M:      Lei Wang <lewan@microsoft.com>
6321 L:      linux-edac@vger.kernel.org
6322 S:      Supported
6323 F:      drivers/edac/dmc520_edac.c
6324
6325 EDAC-E752X
6326 M:      Mark Gross <mark.gross@intel.com>
6327 L:      linux-edac@vger.kernel.org
6328 S:      Maintained
6329 F:      drivers/edac/e752x_edac.c
6330
6331 EDAC-E7XXX
6332 L:      linux-edac@vger.kernel.org
6333 S:      Maintained
6334 F:      drivers/edac/e7xxx_edac.c
6335
6336 EDAC-FSL_DDR
6337 M:      York Sun <york.sun@nxp.com>
6338 L:      linux-edac@vger.kernel.org
6339 S:      Maintained
6340 F:      drivers/edac/fsl_ddr_edac.*
6341
6342 EDAC-GHES
6343 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6344 L:      linux-edac@vger.kernel.org
6345 S:      Maintained
6346 F:      drivers/edac/ghes_edac.c
6347
6348 EDAC-I10NM
6349 M:      Tony Luck <tony.luck@intel.com>
6350 L:      linux-edac@vger.kernel.org
6351 S:      Maintained
6352 F:      drivers/edac/i10nm_base.c
6353
6354 EDAC-I3000
6355 L:      linux-edac@vger.kernel.org
6356 S:      Orphan
6357 F:      drivers/edac/i3000_edac.c
6358
6359 EDAC-I5000
6360 L:      linux-edac@vger.kernel.org
6361 S:      Maintained
6362 F:      drivers/edac/i5000_edac.c
6363
6364 EDAC-I5400
6365 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6366 L:      linux-edac@vger.kernel.org
6367 S:      Maintained
6368 F:      drivers/edac/i5400_edac.c
6369
6370 EDAC-I7300
6371 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6372 L:      linux-edac@vger.kernel.org
6373 S:      Maintained
6374 F:      drivers/edac/i7300_edac.c
6375
6376 EDAC-I7CORE
6377 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6378 L:      linux-edac@vger.kernel.org
6379 S:      Maintained
6380 F:      drivers/edac/i7core_edac.c
6381
6382 EDAC-I82443BXGX
6383 M:      Tim Small <tim@buttersideup.com>
6384 L:      linux-edac@vger.kernel.org
6385 S:      Maintained
6386 F:      drivers/edac/i82443bxgx_edac.c
6387
6388 EDAC-I82975X
6389 M:      "Arvind R." <arvino55@gmail.com>
6390 L:      linux-edac@vger.kernel.org
6391 S:      Maintained
6392 F:      drivers/edac/i82975x_edac.c
6393
6394 EDAC-IE31200
6395 M:      Jason Baron <jbaron@akamai.com>
6396 L:      linux-edac@vger.kernel.org
6397 S:      Maintained
6398 F:      drivers/edac/ie31200_edac.c
6399
6400 EDAC-IGEN6
6401 M:      Tony Luck <tony.luck@intel.com>
6402 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6403 L:      linux-edac@vger.kernel.org
6404 S:      Maintained
6405 F:      drivers/edac/igen6_edac.c
6406
6407 EDAC-MPC85XX
6408 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6409 L:      linux-edac@vger.kernel.org
6410 S:      Maintained
6411 F:      drivers/edac/mpc85xx_edac.[ch]
6412
6413 EDAC-PASEMI
6414 M:      Egor Martovetsky <egor@pasemi.com>
6415 L:      linux-edac@vger.kernel.org
6416 S:      Maintained
6417 F:      drivers/edac/pasemi_edac.c
6418
6419 EDAC-PND2
6420 M:      Tony Luck <tony.luck@intel.com>
6421 L:      linux-edac@vger.kernel.org
6422 S:      Maintained
6423 F:      drivers/edac/pnd2_edac.[ch]
6424
6425 EDAC-QCOM
6426 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6427 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6428 L:      linux-arm-msm@vger.kernel.org
6429 L:      linux-edac@vger.kernel.org
6430 S:      Maintained
6431 F:      drivers/edac/qcom_edac.c
6432
6433 EDAC-R82600
6434 M:      Tim Small <tim@buttersideup.com>
6435 L:      linux-edac@vger.kernel.org
6436 S:      Maintained
6437 F:      drivers/edac/r82600_edac.c
6438
6439 EDAC-SBRIDGE
6440 M:      Tony Luck <tony.luck@intel.com>
6441 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6442 L:      linux-edac@vger.kernel.org
6443 S:      Maintained
6444 F:      drivers/edac/sb_edac.c
6445
6446 EDAC-SIFIVE
6447 M:      Yash Shah <yash.shah@sifive.com>
6448 L:      linux-edac@vger.kernel.org
6449 S:      Supported
6450 F:      drivers/edac/sifive_edac.c
6451
6452 EDAC-SKYLAKE
6453 M:      Tony Luck <tony.luck@intel.com>
6454 L:      linux-edac@vger.kernel.org
6455 S:      Maintained
6456 F:      drivers/edac/skx_*.[ch]
6457
6458 EDAC-TI
6459 M:      Tero Kristo <t-kristo@ti.com>
6460 L:      linux-edac@vger.kernel.org
6461 S:      Maintained
6462 F:      drivers/edac/ti_edac.c
6463
6464 EDIROL UA-101/UA-1000 DRIVER
6465 M:      Clemens Ladisch <clemens@ladisch.de>
6466 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6467 S:      Maintained
6468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6469 F:      sound/usb/misc/ua101.c
6470
6471 EFI TEST DRIVER
6472 M:      Ivan Hu <ivan.hu@canonical.com>
6473 M:      Ard Biesheuvel <ardb@kernel.org>
6474 L:      linux-efi@vger.kernel.org
6475 S:      Maintained
6476 F:      drivers/firmware/efi/test/
6477
6478 EFI VARIABLE FILESYSTEM
6479 M:      Matthew Garrett <matthew.garrett@nebula.com>
6480 M:      Jeremy Kerr <jk@ozlabs.org>
6481 M:      Ard Biesheuvel <ardb@kernel.org>
6482 L:      linux-efi@vger.kernel.org
6483 S:      Maintained
6484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6485 F:      fs/efivarfs/
6486
6487 EFIFB FRAMEBUFFER DRIVER
6488 M:      Peter Jones <pjones@redhat.com>
6489 L:      linux-fbdev@vger.kernel.org
6490 S:      Maintained
6491 F:      drivers/video/fbdev/efifb.c
6492
6493 EFS FILESYSTEM
6494 S:      Orphan
6495 W:      http://aeschi.ch.eu.org/efs/
6496 F:      fs/efs/
6497
6498 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6499 M:      Douglas Miller <dougmill@linux.ibm.com>
6500 L:      netdev@vger.kernel.org
6501 S:      Maintained
6502 F:      drivers/net/ethernet/ibm/ehea/
6503
6504 EM28XX VIDEO4LINUX DRIVER
6505 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6506 L:      linux-media@vger.kernel.org
6507 S:      Maintained
6508 W:      https://linuxtv.org
6509 T:      git git://linuxtv.org/media_tree.git
6510 F:      Documentation/admin-guide/media/em28xx*
6511 F:      drivers/media/usb/em28xx/
6512
6513 EMBEDDED LINUX
6514 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6515 M:      Matt Mackall <mpm@selenic.com>
6516 M:      David Woodhouse <dwmw2@infradead.org>
6517 L:      linux-embedded@vger.kernel.org
6518 S:      Maintained
6519
6520 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6521 M:      Adrian Hunter <adrian.hunter@intel.com>
6522 M:      Ritesh Harjani <riteshh@codeaurora.org>
6523 M:      Asutosh Das <asutoshd@codeaurora.org>
6524 L:      linux-mmc@vger.kernel.org
6525 S:      Maintained
6526 F:      drivers/mmc/host/cqhci*
6527
6528 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6529 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6530 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6531 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6532 L:      linux-scsi@vger.kernel.org
6533 S:      Supported
6534 W:      http://www.broadcom.com
6535 F:      drivers/scsi/be2iscsi/
6536
6537 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6538 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6539 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6540 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6541 L:      netdev@vger.kernel.org
6542 S:      Supported
6543 W:      http://www.emulex.com
6544 F:      drivers/net/ethernet/emulex/benet/
6545
6546 EMULEX ONECONNECT ROCE DRIVER
6547 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6548 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6549 L:      linux-rdma@vger.kernel.org
6550 S:      Odd Fixes
6551 W:      http://www.broadcom.com
6552 F:      drivers/infiniband/hw/ocrdma/
6553 F:      include/uapi/rdma/ocrdma-abi.h
6554
6555 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6556 M:      James Smart <james.smart@broadcom.com>
6557 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6558 L:      linux-scsi@vger.kernel.org
6559 S:      Supported
6560 W:      http://www.broadcom.com
6561 F:      drivers/scsi/lpfc/
6562
6563 ENE CB710 FLASH CARD READER DRIVER
6564 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6565 S:      Maintained
6566 F:      drivers/misc/cb710/
6567 F:      drivers/mmc/host/cb710-mmc.*
6568 F:      include/linux/cb710.h
6569
6570 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6571 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6572 S:      Maintained
6573 F:      drivers/media/rc/ene_ir.*
6574
6575 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6576 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6577 L:      linuxppc-dev@lists.ozlabs.org
6578 S:      Maintained
6579 F:      drivers/tty/ehv_bytechan.c
6580
6581 EPSON S1D13XXX FRAMEBUFFER DRIVER
6582 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6583 S:      Maintained
6584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6585 F:      drivers/video/fbdev/s1d13xxxfb.c
6586 F:      include/video/s1d13xxxfb.h
6587
6588 EROFS FILE SYSTEM
6589 M:      Gao Xiang <xiang@kernel.org>
6590 M:      Chao Yu <yuchao0@huawei.com>
6591 L:      linux-erofs@lists.ozlabs.org
6592 S:      Maintained
6593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6594 F:      Documentation/filesystems/erofs.rst
6595 F:      fs/erofs/
6596 F:      include/trace/events/erofs.h
6597
6598 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6599 M:      Jeff Layton <jlayton@kernel.org>
6600 S:      Maintained
6601 F:      include/linux/errseq.h
6602 F:      lib/errseq.c
6603
6604 ET131X NETWORK DRIVER
6605 M:      Mark Einon <mark.einon@gmail.com>
6606 S:      Odd Fixes
6607 F:      drivers/net/ethernet/agere/
6608
6609 ETHERNET BRIDGE
6610 M:      Roopa Prabhu <roopa@nvidia.com>
6611 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
6612 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6613 L:      netdev@vger.kernel.org
6614 S:      Maintained
6615 W:      http://www.linuxfoundation.org/en/Net:Bridge
6616 F:      include/linux/netfilter_bridge/
6617 F:      net/bridge/
6618
6619 ETHERNET PHY LIBRARY
6620 M:      Andrew Lunn <andrew@lunn.ch>
6621 M:      Heiner Kallweit <hkallweit1@gmail.com>
6622 R:      Russell King <linux@armlinux.org.uk>
6623 L:      netdev@vger.kernel.org
6624 S:      Maintained
6625 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6626 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6627 F:      Documentation/devicetree/bindings/net/mdio*
6628 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6629 F:      Documentation/networking/phy.rst
6630 F:      drivers/net/mdio/
6631 F:      drivers/net/mdio/of_mdio.c
6632 F:      drivers/net/pcs/
6633 F:      drivers/net/phy/
6634 F:      drivers/of/of_net.c
6635 F:      include/dt-bindings/net/qca-ar803x.h
6636 F:      include/linux/*mdio*.h
6637 F:      include/linux/mdio/*.h
6638 F:      include/linux/of_net.h
6639 F:      include/linux/phy.h
6640 F:      include/linux/phy_fixed.h
6641 F:      include/linux/platform_data/mdio-bcm-unimac.h
6642 F:      include/linux/platform_data/mdio-gpio.h
6643 F:      include/trace/events/mdio.h
6644 F:      include/uapi/linux/mdio.h
6645 F:      include/uapi/linux/mii.h
6646
6647 EXFAT FILE SYSTEM
6648 M:      Namjae Jeon <namjae.jeon@samsung.com>
6649 M:      Sungjong Seo <sj1557.seo@samsung.com>
6650 L:      linux-fsdevel@vger.kernel.org
6651 S:      Maintained
6652 F:      fs/exfat/
6653
6654 EXT2 FILE SYSTEM
6655 M:      Jan Kara <jack@suse.com>
6656 L:      linux-ext4@vger.kernel.org
6657 S:      Maintained
6658 F:      Documentation/filesystems/ext2.rst
6659 F:      fs/ext2/
6660 F:      include/linux/ext2*
6661
6662 EXT4 FILE SYSTEM
6663 M:      "Theodore Ts'o" <tytso@mit.edu>
6664 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6665 L:      linux-ext4@vger.kernel.org
6666 S:      Maintained
6667 W:      http://ext4.wiki.kernel.org
6668 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6670 F:      Documentation/filesystems/ext4/
6671 F:      fs/ext4/
6672 F:      include/trace/events/ext4.h
6673
6674 Extended Verification Module (EVM)
6675 M:      Mimi Zohar <zohar@linux.ibm.com>
6676 L:      linux-integrity@vger.kernel.org
6677 S:      Supported
6678 F:      security/integrity/evm/
6679
6680 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6681 M:      Ard Biesheuvel <ardb@kernel.org>
6682 L:      linux-efi@vger.kernel.org
6683 S:      Maintained
6684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6685 F:      Documentation/admin-guide/efi-stub.rst
6686 F:      arch/*/include/asm/efi.h
6687 F:      arch/*/kernel/efi.c
6688 F:      arch/arm/boot/compressed/efi-header.S
6689 F:      arch/arm64/kernel/efi-entry.S
6690 F:      arch/x86/platform/efi/
6691 F:      drivers/firmware/efi/
6692 F:      include/linux/efi*.h
6693
6694 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6695 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6696 M:      Chanwoo Choi <cw00.choi@samsung.com>
6697 L:      linux-kernel@vger.kernel.org
6698 S:      Maintained
6699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6700 F:      Documentation/devicetree/bindings/extcon/
6701 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6702 F:      drivers/extcon/
6703 F:      include/linux/extcon.h
6704 F:      include/linux/extcon/
6705
6706 EXTRA BOOT CONFIG
6707 M:      Masami Hiramatsu <mhiramat@kernel.org>
6708 S:      Maintained
6709 F:      Documentation/admin-guide/bootconfig.rst
6710 F:      fs/proc/bootconfig.c
6711 F:      include/linux/bootconfig.h
6712 F:      lib/bootconfig.c
6713 F:      tools/bootconfig/*
6714 F:      tools/bootconfig/scripts/*
6715
6716 EXYNOS DP DRIVER
6717 M:      Jingoo Han <jingoohan1@gmail.com>
6718 L:      dri-devel@lists.freedesktop.org
6719 S:      Maintained
6720 F:      drivers/gpu/drm/exynos/exynos_dp*
6721
6722 EXYNOS SYSMMU (IOMMU) driver
6723 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6724 L:      iommu@lists.linux-foundation.org
6725 S:      Maintained
6726 F:      drivers/iommu/exynos-iommu.c
6727
6728 F2FS FILE SYSTEM
6729 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6730 M:      Chao Yu <yuchao0@huawei.com>
6731 L:      linux-f2fs-devel@lists.sourceforge.net
6732 S:      Maintained
6733 W:      https://f2fs.wiki.kernel.org/
6734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6735 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6736 F:      Documentation/filesystems/f2fs.rst
6737 F:      fs/f2fs/
6738 F:      include/linux/f2fs_fs.h
6739 F:      include/trace/events/f2fs.h
6740
6741 F71805F HARDWARE MONITORING DRIVER
6742 M:      Jean Delvare <jdelvare@suse.com>
6743 L:      linux-hwmon@vger.kernel.org
6744 S:      Maintained
6745 F:      Documentation/hwmon/f71805f.rst
6746 F:      drivers/hwmon/f71805f.c
6747
6748 FADDR2LINE
6749 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6750 S:      Maintained
6751 F:      scripts/faddr2line
6752
6753 FAILOVER MODULE
6754 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6755 L:      netdev@vger.kernel.org
6756 S:      Supported
6757 F:      Documentation/networking/failover.rst
6758 F:      include/net/failover.h
6759 F:      net/core/failover.c
6760
6761 FANOTIFY
6762 M:      Jan Kara <jack@suse.cz>
6763 R:      Amir Goldstein <amir73il@gmail.com>
6764 L:      linux-fsdevel@vger.kernel.org
6765 S:      Maintained
6766 F:      fs/notify/fanotify/
6767 F:      include/linux/fanotify.h
6768 F:      include/uapi/linux/fanotify.h
6769
6770 FARSYNC SYNCHRONOUS DRIVER
6771 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6772 S:      Supported
6773 W:      http://www.farsite.co.uk/
6774 F:      drivers/net/wan/farsync.*
6775
6776 FAULT INJECTION SUPPORT
6777 M:      Akinobu Mita <akinobu.mita@gmail.com>
6778 S:      Supported
6779 F:      Documentation/fault-injection/
6780 F:      lib/fault-inject.c
6781
6782 FBTFT Framebuffer drivers
6783 L:      dri-devel@lists.freedesktop.org
6784 L:      linux-fbdev@vger.kernel.org
6785 S:      Orphan
6786 F:      drivers/staging/fbtft/
6787
6788 FC0011 TUNER DRIVER
6789 M:      Michael Buesch <m@bues.ch>
6790 L:      linux-media@vger.kernel.org
6791 S:      Maintained
6792 F:      drivers/media/tuners/fc0011.c
6793 F:      drivers/media/tuners/fc0011.h
6794
6795 FC2580 MEDIA DRIVER
6796 M:      Antti Palosaari <crope@iki.fi>
6797 L:      linux-media@vger.kernel.org
6798 S:      Maintained
6799 W:      https://linuxtv.org
6800 W:      http://palosaari.fi/linux/
6801 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6802 T:      git git://linuxtv.org/anttip/media_tree.git
6803 F:      drivers/media/tuners/fc2580*
6804
6805 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6806 M:      Hannes Reinecke <hare@suse.de>
6807 L:      linux-scsi@vger.kernel.org
6808 S:      Supported
6809 W:      www.Open-FCoE.org
6810 F:      drivers/scsi/fcoe/
6811 F:      drivers/scsi/libfc/
6812 F:      include/scsi/fc/
6813 F:      include/scsi/libfc.h
6814 F:      include/scsi/libfcoe.h
6815 F:      include/uapi/scsi/fc/
6816
6817 FILE LOCKING (flock() and fcntl()/lockf())
6818 M:      Jeff Layton <jlayton@kernel.org>
6819 M:      "J. Bruce Fields" <bfields@fieldses.org>
6820 L:      linux-fsdevel@vger.kernel.org
6821 S:      Maintained
6822 F:      fs/fcntl.c
6823 F:      fs/locks.c
6824 F:      include/linux/fcntl.h
6825 F:      include/uapi/linux/fcntl.h
6826
6827 FILESYSTEM DIRECT ACCESS (DAX)
6828 M:      Dan Williams <dan.j.williams@intel.com>
6829 R:      Matthew Wilcox <willy@infradead.org>
6830 R:      Jan Kara <jack@suse.cz>
6831 L:      linux-fsdevel@vger.kernel.org
6832 L:      linux-nvdimm@lists.01.org
6833 S:      Supported
6834 F:      fs/dax.c
6835 F:      include/linux/dax.h
6836 F:      include/trace/events/fs_dax.h
6837
6838 FILESYSTEMS (VFS and infrastructure)
6839 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6840 L:      linux-fsdevel@vger.kernel.org
6841 S:      Maintained
6842 F:      fs/*
6843 F:      include/linux/fs.h
6844 F:      include/linux/fs_types.h
6845 F:      include/uapi/linux/fs.h
6846 F:      include/uapi/linux/openat2.h
6847
6848 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6849 M:      Riku Voipio <riku.voipio@iki.fi>
6850 L:      linux-hwmon@vger.kernel.org
6851 S:      Maintained
6852 F:      drivers/hwmon/f75375s.c
6853 F:      include/linux/f75375s.h
6854
6855 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6856 M:      Clemens Ladisch <clemens@ladisch.de>
6857 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
6858 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6859 S:      Maintained
6860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6861 F:      include/uapi/sound/firewire.h
6862 F:      sound/firewire/
6863
6864 FIREWIRE MEDIA DRIVERS (firedtv)
6865 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6866 L:      linux-media@vger.kernel.org
6867 L:      linux1394-devel@lists.sourceforge.net
6868 S:      Maintained
6869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6870 F:      drivers/media/firewire/
6871
6872 FIREWIRE SBP-2 TARGET
6873 M:      Chris Boot <bootc@bootc.net>
6874 L:      linux-scsi@vger.kernel.org
6875 L:      target-devel@vger.kernel.org
6876 L:      linux1394-devel@lists.sourceforge.net
6877 S:      Maintained
6878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6879 F:      drivers/target/sbp/
6880
6881 FIREWIRE SUBSYSTEM
6882 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6883 L:      linux1394-devel@lists.sourceforge.net
6884 S:      Maintained
6885 W:      http://ieee1394.wiki.kernel.org/
6886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6887 F:      drivers/firewire/
6888 F:      include/linux/firewire.h
6889 F:      include/uapi/linux/firewire*.h
6890 F:      tools/firewire/
6891
6892 FIRMWARE LOADER (request_firmware)
6893 M:      Luis Chamberlain <mcgrof@kernel.org>
6894 L:      linux-kernel@vger.kernel.org
6895 S:      Maintained
6896 F:      Documentation/firmware_class/
6897 F:      drivers/base/firmware_loader/
6898 F:      include/linux/firmware.h
6899
6900 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6901 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6902 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6903 S:      Maintained
6904 F:      drivers/block/rsxx/
6905
6906 FLEXTIMER FTM-QUADDEC DRIVER
6907 M:      Patrick Havelange <patrick.havelange@essensium.com>
6908 L:      linux-iio@vger.kernel.org
6909 S:      Maintained
6910 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6911 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6912 F:      drivers/counter/ftm-quaddec.c
6913
6914 FLOPPY DRIVER
6915 M:      Denis Efremov <efremov@linux.com>
6916 L:      linux-block@vger.kernel.org
6917 S:      Odd Fixes
6918 F:      drivers/block/floppy.c
6919
6920 FLYSKY FSIA6B RC RECEIVER
6921 M:      Markus Koch <markus@notsyncing.net>
6922 L:      linux-input@vger.kernel.org
6923 S:      Maintained
6924 F:      drivers/input/joystick/fsia6b.c
6925
6926 FORCEDETH GIGABIT ETHERNET DRIVER
6927 M:      Rain River <rain.1986.08.12@gmail.com>
6928 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
6929 L:      netdev@vger.kernel.org
6930 S:      Maintained
6931 F:      drivers/net/ethernet/nvidia/*
6932
6933 FPGA DFL DRIVERS
6934 M:      Wu Hao <hao.wu@intel.com>
6935 R:      Tom Rix <trix@redhat.com>
6936 L:      linux-fpga@vger.kernel.org
6937 S:      Maintained
6938 F:      Documentation/ABI/testing/sysfs-bus-dfl
6939 F:      Documentation/fpga/dfl.rst
6940 F:      drivers/fpga/dfl*
6941 F:      include/uapi/linux/fpga-dfl.h
6942
6943 FPGA MANAGER FRAMEWORK
6944 M:      Moritz Fischer <mdf@kernel.org>
6945 R:      Tom Rix <trix@redhat.com>
6946 L:      linux-fpga@vger.kernel.org
6947 S:      Maintained
6948 W:      http://www.rocketboards.org
6949 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6951 F:      Documentation/devicetree/bindings/fpga/
6952 F:      Documentation/driver-api/fpga/
6953 F:      Documentation/fpga/
6954 F:      drivers/fpga/
6955 F:      include/linux/fpga/
6956
6957 FPU EMULATOR
6958 M:      Bill Metzenthen <billm@melbpc.org.au>
6959 S:      Maintained
6960 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6961 F:      arch/x86/math-emu/
6962
6963 FRAMEBUFFER LAYER
6964 L:      dri-devel@lists.freedesktop.org
6965 L:      linux-fbdev@vger.kernel.org
6966 S:      Orphan
6967 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6968 T:      git git://anongit.freedesktop.org/drm/drm-misc
6969 F:      Documentation/fb/
6970 F:      drivers/video/
6971 F:      include/linux/fb.h
6972 F:      include/uapi/linux/fb.h
6973 F:      include/uapi/video/
6974 F:      include/video/
6975
6976 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6977 M:      Horia Geantă <horia.geanta@nxp.com>
6978 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6979 L:      linux-crypto@vger.kernel.org
6980 S:      Maintained
6981 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6982 F:      drivers/crypto/caam/
6983
6984 FREESCALE COLDFIRE M5441X MMC DRIVER
6985 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
6986 L:      linux-mmc@vger.kernel.org
6987 S:      Maintained
6988 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
6989 F:      include/linux/platform_data/mmc-esdhc-mcf.h
6990
6991 FREESCALE DIU FRAMEBUFFER DRIVER
6992 M:      Timur Tabi <timur@kernel.org>
6993 L:      linux-fbdev@vger.kernel.org
6994 S:      Maintained
6995 F:      drivers/video/fbdev/fsl-diu-fb.*
6996
6997 FREESCALE DMA DRIVER
6998 M:      Li Yang <leoyang.li@nxp.com>
6999 M:      Zhang Wei <zw@zh-kernel.org>
7000 L:      linuxppc-dev@lists.ozlabs.org
7001 S:      Maintained
7002 F:      drivers/dma/fsldma.*
7003
7004 FREESCALE DSPI DRIVER
7005 M:      Vladimir Oltean <olteanv@gmail.com>
7006 L:      linux-spi@vger.kernel.org
7007 S:      Maintained
7008 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7009 F:      drivers/spi/spi-fsl-dspi.c
7010 F:      include/linux/spi/spi-fsl-dspi.h
7011
7012 FREESCALE ENETC ETHERNET DRIVERS
7013 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7014 L:      netdev@vger.kernel.org
7015 S:      Maintained
7016 F:      drivers/net/ethernet/freescale/enetc/
7017
7018 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7019 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7020 L:      netdev@vger.kernel.org
7021 S:      Maintained
7022 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7023 F:      drivers/net/ethernet/freescale/gianfar*
7024
7025 FREESCALE GPMI NAND DRIVER
7026 M:      Han Xu <han.xu@nxp.com>
7027 L:      linux-mtd@lists.infradead.org
7028 S:      Maintained
7029 F:      drivers/mtd/nand/raw/gpmi-nand/*
7030
7031 FREESCALE I2C CPM DRIVER
7032 M:      Jochen Friedrich <jochen@scram.de>
7033 L:      linuxppc-dev@lists.ozlabs.org
7034 L:      linux-i2c@vger.kernel.org
7035 S:      Maintained
7036 F:      drivers/i2c/busses/i2c-cpm.c
7037
7038 FREESCALE IMX / MXC FEC DRIVER
7039 M:      Fugang Duan <fugang.duan@nxp.com>
7040 L:      netdev@vger.kernel.org
7041 S:      Maintained
7042 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
7043 F:      drivers/net/ethernet/freescale/fec.h
7044 F:      drivers/net/ethernet/freescale/fec_main.c
7045 F:      drivers/net/ethernet/freescale/fec_ptp.c
7046
7047 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7048 M:      Sascha Hauer <s.hauer@pengutronix.de>
7049 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7050 L:      linux-fbdev@vger.kernel.org
7051 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7052 S:      Maintained
7053 F:      drivers/video/fbdev/imxfb.c
7054 F:      include/linux/platform_data/video-imxfb.h
7055
7056 FREESCALE IMX DDR PMU DRIVER
7057 M:      Frank Li <Frank.li@nxp.com>
7058 L:      linux-arm-kernel@lists.infradead.org
7059 S:      Maintained
7060 F:      Documentation/admin-guide/perf/imx-ddr.rst
7061 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7062 F:      drivers/perf/fsl_imx8_ddr_perf.c
7063
7064 FREESCALE IMX I2C DRIVER
7065 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7066 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7067 L:      linux-i2c@vger.kernel.org
7068 S:      Maintained
7069 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7070 F:      drivers/i2c/busses/i2c-imx.c
7071
7072 FREESCALE IMX LPI2C DRIVER
7073 M:      Dong Aisheng <aisheng.dong@nxp.com>
7074 L:      linux-i2c@vger.kernel.org
7075 L:      linux-imx@nxp.com
7076 S:      Maintained
7077 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7078 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7079
7080 FREESCALE QORIQ DPAA ETHERNET DRIVER
7081 M:      Madalin Bucur <madalin.bucur@nxp.com>
7082 L:      netdev@vger.kernel.org
7083 S:      Maintained
7084 F:      drivers/net/ethernet/freescale/dpaa
7085
7086 FREESCALE QORIQ DPAA FMAN DRIVER
7087 M:      Madalin Bucur <madalin.bucur@nxp.com>
7088 L:      netdev@vger.kernel.org
7089 S:      Maintained
7090 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7091 F:      drivers/net/ethernet/freescale/fman
7092
7093 FREESCALE QORIQ PTP CLOCK DRIVER
7094 M:      Yangbo Lu <yangbo.lu@nxp.com>
7095 L:      netdev@vger.kernel.org
7096 S:      Maintained
7097 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7098 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7099 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7100 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7101 F:      drivers/ptp/ptp_qoriq.c
7102 F:      drivers/ptp/ptp_qoriq_debugfs.c
7103 F:      include/linux/fsl/ptp_qoriq.h
7104
7105 FREESCALE QUAD SPI DRIVER
7106 M:      Han Xu <han.xu@nxp.com>
7107 L:      linux-spi@vger.kernel.org
7108 S:      Maintained
7109 F:      drivers/spi/spi-fsl-qspi.c
7110
7111 FREESCALE QUICC ENGINE LIBRARY
7112 M:      Qiang Zhao <qiang.zhao@nxp.com>
7113 L:      linuxppc-dev@lists.ozlabs.org
7114 S:      Maintained
7115 F:      drivers/soc/fsl/qe/
7116 F:      include/soc/fsl/*qe*.h
7117 F:      include/soc/fsl/*ucc*.h
7118
7119 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7120 M:      Li Yang <leoyang.li@nxp.com>
7121 L:      netdev@vger.kernel.org
7122 L:      linuxppc-dev@lists.ozlabs.org
7123 S:      Maintained
7124 F:      drivers/net/ethernet/freescale/ucc_geth*
7125
7126 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7127 M:      Zhao Qiang <qiang.zhao@nxp.com>
7128 L:      netdev@vger.kernel.org
7129 L:      linuxppc-dev@lists.ozlabs.org
7130 S:      Maintained
7131 F:      drivers/net/wan/fsl_ucc_hdlc*
7132
7133 FREESCALE QUICC ENGINE UCC UART DRIVER
7134 M:      Timur Tabi <timur@kernel.org>
7135 L:      linuxppc-dev@lists.ozlabs.org
7136 S:      Maintained
7137 F:      drivers/tty/serial/ucc_uart.c
7138
7139 FREESCALE SOC DRIVERS
7140 M:      Li Yang <leoyang.li@nxp.com>
7141 L:      linuxppc-dev@lists.ozlabs.org
7142 L:      linux-arm-kernel@lists.infradead.org
7143 S:      Maintained
7144 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
7145 F:      Documentation/devicetree/bindings/soc/fsl/
7146 F:      drivers/soc/fsl/
7147 F:      include/linux/fsl/
7148
7149 FREESCALE SOC FS_ENET DRIVER
7150 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7151 L:      linuxppc-dev@lists.ozlabs.org
7152 L:      netdev@vger.kernel.org
7153 S:      Maintained
7154 F:      drivers/net/ethernet/freescale/fs_enet/
7155 F:      include/linux/fs_enet_pd.h
7156
7157 FREESCALE SOC SOUND DRIVERS
7158 M:      Timur Tabi <timur@kernel.org>
7159 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7160 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7161 R:      Fabio Estevam <festevam@gmail.com>
7162 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7163 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7164 L:      linuxppc-dev@lists.ozlabs.org
7165 S:      Maintained
7166 F:      sound/soc/fsl/fsl*
7167 F:      sound/soc/fsl/imx*
7168 F:      sound/soc/fsl/mpc8610_hpcd.c
7169
7170 FREESCALE USB PERIPHERAL DRIVERS
7171 M:      Li Yang <leoyang.li@nxp.com>
7172 L:      linux-usb@vger.kernel.org
7173 L:      linuxppc-dev@lists.ozlabs.org
7174 S:      Maintained
7175 F:      drivers/usb/gadget/udc/fsl*
7176
7177 FREESCALE USB PHY DRIVER
7178 M:      Ran Wang <ran.wang_1@nxp.com>
7179 L:      linux-usb@vger.kernel.org
7180 L:      linuxppc-dev@lists.ozlabs.org
7181 S:      Maintained
7182 F:      drivers/usb/phy/phy-fsl-usb*
7183
7184 FREEVXFS FILESYSTEM
7185 M:      Christoph Hellwig <hch@infradead.org>
7186 S:      Maintained
7187 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7188 F:      fs/freevxfs/
7189
7190 FREEZER
7191 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7192 M:      Pavel Machek <pavel@ucw.cz>
7193 L:      linux-pm@vger.kernel.org
7194 S:      Supported
7195 F:      Documentation/power/freezing-of-tasks.rst
7196 F:      include/linux/freezer.h
7197 F:      kernel/freezer.c
7198
7199 FRONTSWAP API
7200 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7201 L:      linux-kernel@vger.kernel.org
7202 S:      Maintained
7203 F:      include/linux/frontswap.h
7204 F:      mm/frontswap.c
7205
7206 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7207 M:      David Howells <dhowells@redhat.com>
7208 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7209 S:      Supported
7210 F:      Documentation/filesystems/caching/
7211 F:      fs/fscache/
7212 F:      include/linux/fscache*.h
7213
7214 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7215 M:      Theodore Y. Ts'o <tytso@mit.edu>
7216 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7217 M:      Eric Biggers <ebiggers@kernel.org>
7218 L:      linux-fscrypt@vger.kernel.org
7219 S:      Supported
7220 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7221 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7222 F:      Documentation/filesystems/fscrypt.rst
7223 F:      fs/crypto/
7224 F:      include/linux/fscrypt*.h
7225 F:      include/uapi/linux/fscrypt.h
7226
7227 FSI SUBSYSTEM
7228 M:      Jeremy Kerr <jk@ozlabs.org>
7229 M:      Joel Stanley <joel@jms.id.au>
7230 R:      Alistar Popple <alistair@popple.id.au>
7231 R:      Eddie James <eajames@linux.ibm.com>
7232 L:      linux-fsi@lists.ozlabs.org
7233 S:      Supported
7234 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7236 F:      drivers/fsi/
7237 F:      include/linux/fsi*.h
7238 F:      include/trace/events/fsi*.h
7239
7240 FSI-ATTACHED I2C DRIVER
7241 M:      Eddie James <eajames@linux.ibm.com>
7242 L:      linux-i2c@vger.kernel.org
7243 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7244 S:      Maintained
7245 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7246 F:      drivers/i2c/busses/i2c-fsi.c
7247
7248 FSI-ATTACHED SPI DRIVER
7249 M:      Eddie James <eajames@linux.ibm.com>
7250 L:      linux-spi@vger.kernel.org
7251 S:      Maintained
7252 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7253 F:      drivers/spi/spi-fsi.c
7254
7255 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7256 M:      Jan Kara <jack@suse.cz>
7257 R:      Amir Goldstein <amir73il@gmail.com>
7258 L:      linux-fsdevel@vger.kernel.org
7259 S:      Maintained
7260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7261 F:      fs/notify/
7262 F:      include/linux/fsnotify*.h
7263
7264 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7265 M:      Eric Biggers <ebiggers@kernel.org>
7266 M:      Theodore Y. Ts'o <tytso@mit.edu>
7267 L:      linux-fscrypt@vger.kernel.org
7268 S:      Supported
7269 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7270 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7271 F:      Documentation/filesystems/fsverity.rst
7272 F:      fs/verity/
7273 F:      include/linux/fsverity.h
7274 F:      include/uapi/linux/fsverity.h
7275
7276 FUJITSU LAPTOP EXTRAS
7277 M:      Jonathan Woithe <jwoithe@just42.net>
7278 L:      platform-driver-x86@vger.kernel.org
7279 S:      Maintained
7280 F:      drivers/platform/x86/fujitsu-laptop.c
7281
7282 FUJITSU M-5MO LS CAMERA ISP DRIVER
7283 M:      Kyungmin Park <kyungmin.park@samsung.com>
7284 M:      Heungjun Kim <riverful.kim@samsung.com>
7285 L:      linux-media@vger.kernel.org
7286 S:      Maintained
7287 F:      drivers/media/i2c/m5mols/
7288 F:      include/media/i2c/m5mols.h
7289
7290 FUJITSU TABLET EXTRAS
7291 M:      Robert Gerlach <khnz@gmx.de>
7292 L:      platform-driver-x86@vger.kernel.org
7293 S:      Maintained
7294 F:      drivers/platform/x86/fujitsu-tablet.c
7295
7296 FUSE: FILESYSTEM IN USERSPACE
7297 M:      Miklos Szeredi <miklos@szeredi.hu>
7298 L:      linux-fsdevel@vger.kernel.org
7299 S:      Maintained
7300 W:      https://github.com/libfuse/
7301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7302 F:      Documentation/filesystems/fuse.rst
7303 F:      fs/fuse/
7304 F:      include/uapi/linux/fuse.h
7305
7306 FUTEX SUBSYSTEM
7307 M:      Thomas Gleixner <tglx@linutronix.de>
7308 M:      Ingo Molnar <mingo@redhat.com>
7309 R:      Peter Zijlstra <peterz@infradead.org>
7310 R:      Darren Hart <dvhart@infradead.org>
7311 L:      linux-kernel@vger.kernel.org
7312 S:      Maintained
7313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7314 F:      Documentation/locking/*futex*
7315 F:      include/asm-generic/futex.h
7316 F:      include/linux/futex.h
7317 F:      include/uapi/linux/futex.h
7318 F:      kernel/futex.c
7319 F:      tools/perf/bench/futex*
7320 F:      tools/testing/selftests/futex/
7321
7322 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7323 M:      Tim Harvey <tharvey@gateworks.com>
7324 M:      Robert Jones <rjones@gateworks.com>
7325 S:      Maintained
7326 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7327 F:      drivers/mfd/gateworks-gsc.c
7328 F:      include/linux/mfd/gsc.h
7329 F:      Documentation/hwmon/gsc-hwmon.rst
7330 F:      drivers/hwmon/gsc-hwmon.c
7331 F:      include/linux/platform_data/gsc_hwmon.h
7332
7333 GASKET DRIVER FRAMEWORK
7334 M:      Rob Springer <rspringer@google.com>
7335 M:      Todd Poynor <toddpoynor@google.com>
7336 M:      Ben Chan <benchan@chromium.org>
7337 M:      Richard Yeh <rcy@google.com>
7338 S:      Maintained
7339 F:      drivers/staging/gasket/
7340
7341 GCC PLUGINS
7342 M:      Kees Cook <keescook@chromium.org>
7343 L:      linux-hardening@vger.kernel.org
7344 S:      Maintained
7345 F:      Documentation/kbuild/gcc-plugins.rst
7346 F:      scripts/Makefile.gcc-plugins
7347 F:      scripts/gcc-plugin.sh
7348 F:      scripts/gcc-plugins/
7349
7350 GCOV BASED KERNEL PROFILING
7351 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7352 S:      Maintained
7353 F:      Documentation/dev-tools/gcov.rst
7354 F:      kernel/gcov/
7355
7356 GDB KERNEL DEBUGGING HELPER SCRIPTS
7357 M:      Jan Kiszka <jan.kiszka@siemens.com>
7358 M:      Kieran Bingham <kbingham@kernel.org>
7359 S:      Supported
7360 F:      scripts/gdb/
7361
7362 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7363 M:      Achim Leubner <achim_leubner@adaptec.com>
7364 L:      linux-scsi@vger.kernel.org
7365 S:      Supported
7366 W:      http://www.icp-vortex.com/
7367 F:      drivers/scsi/gdt*
7368
7369 GEMTEK FM RADIO RECEIVER DRIVER
7370 M:      Hans Verkuil <hverkuil@xs4all.nl>
7371 L:      linux-media@vger.kernel.org
7372 S:      Maintained
7373 W:      https://linuxtv.org
7374 T:      git git://linuxtv.org/media_tree.git
7375 F:      drivers/media/radio/radio-gemtek*
7376
7377 GENERIC ARCHITECTURE TOPOLOGY
7378 M:      Sudeep Holla <sudeep.holla@arm.com>
7379 L:      linux-kernel@vger.kernel.org
7380 S:      Maintained
7381 F:      drivers/base/arch_topology.c
7382 F:      include/linux/arch_topology.h
7383
7384 GENERIC ENTRY CODE
7385 M:      Thomas Gleixner <tglx@linutronix.de>
7386 M:      Peter Zijlstra <peterz@infradead.org>
7387 M:      Andy Lutomirski <luto@kernel.org>
7388 L:      linux-kernel@vger.kernel.org
7389 S:      Maintained
7390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7391 F:      include/linux/entry-common.h
7392 F:      include/linux/entry-kvm.h
7393 F:      kernel/entry/
7394
7395 GENERIC GPIO I2C DRIVER
7396 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7397 S:      Supported
7398 F:      drivers/i2c/busses/i2c-gpio.c
7399 F:      include/linux/platform_data/i2c-gpio.h
7400
7401 GENERIC GPIO I2C MULTIPLEXER DRIVER
7402 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7403 L:      linux-i2c@vger.kernel.org
7404 S:      Supported
7405 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7406 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7407 F:      include/linux/platform_data/i2c-mux-gpio.h
7408
7409 GENERIC HDLC (WAN) DRIVERS
7410 M:      Krzysztof Halasa <khc@pm.waw.pl>
7411 S:      Maintained
7412 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7413 F:      drivers/net/wan/c101.c
7414 F:      drivers/net/wan/hd6457*
7415 F:      drivers/net/wan/hdlc*
7416 F:      drivers/net/wan/n2.c
7417 F:      drivers/net/wan/pc300too.c
7418 F:      drivers/net/wan/pci200syn.c
7419 F:      drivers/net/wan/wanxl*
7420
7421 GENERIC INCLUDE/ASM HEADER FILES
7422 M:      Arnd Bergmann <arnd@arndb.de>
7423 L:      linux-arch@vger.kernel.org
7424 S:      Maintained
7425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7426 F:      include/asm-generic/
7427 F:      include/uapi/asm-generic/
7428
7429 GENERIC PHY FRAMEWORK
7430 M:      Kishon Vijay Abraham I <kishon@ti.com>
7431 M:      Vinod Koul <vkoul@kernel.org>
7432 L:      linux-kernel@vger.kernel.org
7433 S:      Supported
7434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7435 F:      Documentation/devicetree/bindings/phy/
7436 F:      drivers/phy/
7437 F:      include/linux/phy/
7438
7439 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7440 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7441 S:      Supported
7442 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7443
7444 GENERIC PM DOMAINS
7445 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7446 M:      Kevin Hilman <khilman@kernel.org>
7447 M:      Ulf Hansson <ulf.hansson@linaro.org>
7448 L:      linux-pm@vger.kernel.org
7449 S:      Supported
7450 F:      Documentation/devicetree/bindings/power/power?domain*
7451 F:      drivers/base/power/domain*.c
7452 F:      include/linux/pm_domain.h
7453
7454 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7455 M:      Eugen Hristev <eugen.hristev@microchip.com>
7456 L:      linux-input@vger.kernel.org
7457 S:      Maintained
7458 F:      drivers/input/touchscreen/resistive-adc-touch.c
7459
7460 GENERIC UIO DRIVER FOR PCI DEVICES
7461 M:      "Michael S. Tsirkin" <mst@redhat.com>
7462 L:      kvm@vger.kernel.org
7463 S:      Supported
7464 F:      drivers/uio/uio_pci_generic.c
7465
7466 GENERIC VDSO LIBRARY
7467 M:      Andy Lutomirski <luto@kernel.org>
7468 M:      Thomas Gleixner <tglx@linutronix.de>
7469 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7470 L:      linux-kernel@vger.kernel.org
7471 S:      Maintained
7472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7473 F:      include/asm-generic/vdso/vsyscall.h
7474 F:      include/vdso/
7475 F:      kernel/time/vsyscall.c
7476 F:      lib/vdso/
7477
7478 GENWQE (IBM Generic Workqueue Card)
7479 M:      Frank Haverkamp <haver@linux.ibm.com>
7480 S:      Supported
7481 F:      drivers/misc/genwqe/
7482
7483 GET_MAINTAINER SCRIPT
7484 M:      Joe Perches <joe@perches.com>
7485 S:      Maintained
7486 F:      scripts/get_maintainer.pl
7487
7488 GFS2 FILE SYSTEM
7489 M:      Bob Peterson <rpeterso@redhat.com>
7490 M:      Andreas Gruenbacher <agruenba@redhat.com>
7491 L:      cluster-devel@redhat.com
7492 S:      Supported
7493 W:      http://sources.redhat.com/cluster/
7494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7495 F:      Documentation/filesystems/gfs2*
7496 F:      fs/gfs2/
7497 F:      include/uapi/linux/gfs2_ondisk.h
7498
7499 GNSS SUBSYSTEM
7500 M:      Johan Hovold <johan@kernel.org>
7501 S:      Maintained
7502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7503 F:      Documentation/ABI/testing/sysfs-class-gnss
7504 F:      Documentation/devicetree/bindings/gnss/
7505 F:      drivers/gnss/
7506 F:      include/linux/gnss.h
7507
7508 GO7007 MPEG CODEC
7509 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7510 L:      linux-media@vger.kernel.org
7511 S:      Maintained
7512 F:      drivers/media/usb/go7007/
7513
7514 GOODIX TOUCHSCREEN
7515 M:      Bastien Nocera <hadess@hadess.net>
7516 L:      linux-input@vger.kernel.org
7517 S:      Maintained
7518 F:      drivers/input/touchscreen/goodix.c
7519
7520 GOOGLE ETHERNET DRIVERS
7521 M:      Catherine Sullivan <csully@google.com>
7522 R:      Sagi Shahar <sagis@google.com>
7523 R:      Jon Olson <jonolson@google.com>
7524 L:      netdev@vger.kernel.org
7525 S:      Supported
7526 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7527 F:      drivers/net/ethernet/google
7528
7529 GPD POCKET FAN DRIVER
7530 M:      Hans de Goede <hdegoede@redhat.com>
7531 L:      platform-driver-x86@vger.kernel.org
7532 S:      Maintained
7533 F:      drivers/platform/x86/gpd-pocket-fan.c
7534
7535 GPIO ACPI SUPPORT
7536 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7537 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7538 L:      linux-gpio@vger.kernel.org
7539 L:      linux-acpi@vger.kernel.org
7540 S:      Maintained
7541 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7542 F:      drivers/gpio/gpiolib-acpi.c
7543 F:      drivers/gpio/gpiolib-acpi.h
7544
7545 GPIO AGGREGATOR
7546 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7547 L:      linux-gpio@vger.kernel.org
7548 S:      Supported
7549 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7550 F:      drivers/gpio/gpio-aggregator.c
7551
7552 GPIO IR Transmitter
7553 M:      Sean Young <sean@mess.org>
7554 L:      linux-media@vger.kernel.org
7555 S:      Maintained
7556 F:      drivers/media/rc/gpio-ir-tx.c
7557
7558 GPIO MOCKUP DRIVER
7559 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7560 L:      linux-gpio@vger.kernel.org
7561 S:      Maintained
7562 F:      drivers/gpio/gpio-mockup.c
7563 F:      tools/testing/selftests/gpio/
7564
7565 GPIO REGMAP
7566 R:      Michael Walle <michael@walle.cc>
7567 S:      Maintained
7568 F:      drivers/gpio/gpio-regmap.c
7569 F:      include/linux/gpio/regmap.h
7570
7571 GPIO SUBSYSTEM
7572 M:      Linus Walleij <linus.walleij@linaro.org>
7573 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7574 L:      linux-gpio@vger.kernel.org
7575 S:      Maintained
7576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7577 F:      Documentation/ABI/obsolete/sysfs-gpio
7578 F:      Documentation/ABI/testing/gpio-cdev
7579 F:      Documentation/admin-guide/gpio/
7580 F:      Documentation/devicetree/bindings/gpio/
7581 F:      Documentation/driver-api/gpio/
7582 F:      drivers/gpio/
7583 F:      include/asm-generic/gpio.h
7584 F:      include/linux/gpio.h
7585 F:      include/linux/gpio/
7586 F:      include/linux/of_gpio.h
7587 F:      include/uapi/linux/gpio.h
7588 F:      tools/gpio/
7589
7590 GRE DEMULTIPLEXER DRIVER
7591 M:      Dmitry Kozlov <xeb@mail.ru>
7592 L:      netdev@vger.kernel.org
7593 S:      Maintained
7594 F:      include/net/gre.h
7595 F:      net/ipv4/gre_demux.c
7596 F:      net/ipv4/gre_offload.c
7597
7598 GRETH 10/100/1G Ethernet MAC device driver
7599 M:      Andreas Larsson <andreas@gaisler.com>
7600 L:      netdev@vger.kernel.org
7601 S:      Maintained
7602 F:      drivers/net/ethernet/aeroflex/
7603
7604 GREYBUS AUDIO PROTOCOLS DRIVERS
7605 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7606 M:      Mark Greer <mgreer@animalcreek.com>
7607 S:      Maintained
7608 F:      drivers/staging/greybus/audio_apbridgea.c
7609 F:      drivers/staging/greybus/audio_apbridgea.h
7610 F:      drivers/staging/greybus/audio_codec.c
7611 F:      drivers/staging/greybus/audio_codec.h
7612 F:      drivers/staging/greybus/audio_gb.c
7613 F:      drivers/staging/greybus/audio_manager.c
7614 F:      drivers/staging/greybus/audio_manager.h
7615 F:      drivers/staging/greybus/audio_manager_module.c
7616 F:      drivers/staging/greybus/audio_manager_private.h
7617 F:      drivers/staging/greybus/audio_manager_sysfs.c
7618 F:      drivers/staging/greybus/audio_module.c
7619 F:      drivers/staging/greybus/audio_topology.c
7620
7621 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7622 M:      Viresh Kumar <vireshk@kernel.org>
7623 S:      Maintained
7624 F:      drivers/staging/greybus/authentication.c
7625 F:      drivers/staging/greybus/bootrom.c
7626 F:      drivers/staging/greybus/firmware.h
7627 F:      drivers/staging/greybus/fw-core.c
7628 F:      drivers/staging/greybus/fw-download.c
7629 F:      drivers/staging/greybus/fw-management.c
7630 F:      drivers/staging/greybus/greybus_authentication.h
7631 F:      drivers/staging/greybus/greybus_firmware.h
7632 F:      drivers/staging/greybus/hid.c
7633 F:      drivers/staging/greybus/i2c.c
7634 F:      drivers/staging/greybus/spi.c
7635 F:      drivers/staging/greybus/spilib.c
7636 F:      drivers/staging/greybus/spilib.h
7637
7638 GREYBUS LOOPBACK DRIVER
7639 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7640 S:      Maintained
7641 F:      drivers/staging/greybus/loopback.c
7642
7643 GREYBUS PLATFORM DRIVERS
7644 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7645 S:      Maintained
7646 F:      drivers/staging/greybus/arche-apb-ctrl.c
7647 F:      drivers/staging/greybus/arche-platform.c
7648 F:      drivers/staging/greybus/arche_platform.h
7649
7650 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7651 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7652 S:      Maintained
7653 F:      drivers/staging/greybus/gpio.c
7654 F:      drivers/staging/greybus/light.c
7655 F:      drivers/staging/greybus/power_supply.c
7656 F:      drivers/staging/greybus/sdio.c
7657 F:      drivers/staging/greybus/spi.c
7658 F:      drivers/staging/greybus/spilib.c
7659
7660 GREYBUS SUBSYSTEM
7661 M:      Johan Hovold <johan@kernel.org>
7662 M:      Alex Elder <elder@kernel.org>
7663 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7664 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7665 S:      Maintained
7666 F:      drivers/greybus/
7667 F:      drivers/staging/greybus/
7668 F:      include/linux/greybus.h
7669 F:      include/linux/greybus/
7670
7671 GREYBUS UART PROTOCOLS DRIVERS
7672 M:      David Lin <dtwlin@gmail.com>
7673 S:      Maintained
7674 F:      drivers/staging/greybus/log.c
7675 F:      drivers/staging/greybus/uart.c
7676
7677 GS1662 VIDEO SERIALIZER
7678 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7679 L:      linux-media@vger.kernel.org
7680 S:      Maintained
7681 T:      git git://linuxtv.org/media_tree.git
7682 F:      drivers/media/spi/gs1662.c
7683
7684 GSPCA FINEPIX SUBDRIVER
7685 M:      Frank Zago <frank@zago.net>
7686 L:      linux-media@vger.kernel.org
7687 S:      Maintained
7688 T:      git git://linuxtv.org/media_tree.git
7689 F:      drivers/media/usb/gspca/finepix.c
7690
7691 GSPCA GL860 SUBDRIVER
7692 M:      Olivier Lorin <o.lorin@laposte.net>
7693 L:      linux-media@vger.kernel.org
7694 S:      Maintained
7695 T:      git git://linuxtv.org/media_tree.git
7696 F:      drivers/media/usb/gspca/gl860/
7697
7698 GSPCA M5602 SUBDRIVER
7699 M:      Erik Andren <erik.andren@gmail.com>
7700 L:      linux-media@vger.kernel.org
7701 S:      Maintained
7702 T:      git git://linuxtv.org/media_tree.git
7703 F:      drivers/media/usb/gspca/m5602/
7704
7705 GSPCA PAC207 SONIXB SUBDRIVER
7706 M:      Hans Verkuil <hverkuil@xs4all.nl>
7707 L:      linux-media@vger.kernel.org
7708 S:      Odd Fixes
7709 T:      git git://linuxtv.org/media_tree.git
7710 F:      drivers/media/usb/gspca/pac207.c
7711
7712 GSPCA SN9C20X SUBDRIVER
7713 M:      Brian Johnson <brijohn@gmail.com>
7714 L:      linux-media@vger.kernel.org
7715 S:      Maintained
7716 T:      git git://linuxtv.org/media_tree.git
7717 F:      drivers/media/usb/gspca/sn9c20x.c
7718
7719 GSPCA T613 SUBDRIVER
7720 M:      Leandro Costantino <lcostantino@gmail.com>
7721 L:      linux-media@vger.kernel.org
7722 S:      Maintained
7723 T:      git git://linuxtv.org/media_tree.git
7724 F:      drivers/media/usb/gspca/t613.c
7725
7726 GSPCA USB WEBCAM DRIVER
7727 M:      Hans Verkuil <hverkuil@xs4all.nl>
7728 L:      linux-media@vger.kernel.org
7729 S:      Odd Fixes
7730 T:      git git://linuxtv.org/media_tree.git
7731 F:      drivers/media/usb/gspca/
7732
7733 GTP (GPRS Tunneling Protocol)
7734 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7735 M:      Harald Welte <laforge@gnumonks.org>
7736 L:      osmocom-net-gprs@lists.osmocom.org
7737 S:      Maintained
7738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7739 F:      drivers/net/gtp.c
7740
7741 GUID PARTITION TABLE (GPT)
7742 M:      Davidlohr Bueso <dave@stgolabs.net>
7743 L:      linux-efi@vger.kernel.org
7744 S:      Maintained
7745 F:      block/partitions/efi.*
7746
7747 H8/300 ARCHITECTURE
7748 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7749 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7750 S:      Maintained
7751 W:      http://uclinux-h8.sourceforge.jp
7752 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7753 F:      arch/h8300/
7754 F:      drivers/clk/h8300/
7755 F:      drivers/clocksource/h8300_*.c
7756 F:      drivers/irqchip/irq-renesas-h8*.c
7757
7758 HABANALABS PCI DRIVER
7759 M:      Oded Gabbay <ogabbay@kernel.org>
7760 S:      Supported
7761 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
7762 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7763 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7764 F:      drivers/misc/habanalabs/
7765 F:      include/uapi/misc/habanalabs.h
7766
7767 HACKRF MEDIA DRIVER
7768 M:      Antti Palosaari <crope@iki.fi>
7769 L:      linux-media@vger.kernel.org
7770 S:      Maintained
7771 W:      https://linuxtv.org
7772 W:      http://palosaari.fi/linux/
7773 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7774 T:      git git://linuxtv.org/anttip/media_tree.git
7775 F:      drivers/media/usb/hackrf/
7776
7777 HANTRO VPU CODEC DRIVER
7778 M:      Ezequiel Garcia <ezequiel@collabora.com>
7779 M:      Philipp Zabel <p.zabel@pengutronix.de>
7780 L:      linux-media@vger.kernel.org
7781 L:      linux-rockchip@lists.infradead.org
7782 S:      Maintained
7783 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7784 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7785 F:      drivers/staging/media/hantro/
7786
7787 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7788 M:      Frank Seidel <frank@f-seidel.de>
7789 L:      platform-driver-x86@vger.kernel.org
7790 S:      Maintained
7791 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7792 F:      drivers/platform/x86/hdaps.c
7793
7794 HARDWARE MONITORING
7795 M:      Jean Delvare <jdelvare@suse.com>
7796 M:      Guenter Roeck <linux@roeck-us.net>
7797 L:      linux-hwmon@vger.kernel.org
7798 S:      Maintained
7799 W:      http://hwmon.wiki.kernel.org/
7800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7801 F:      Documentation/devicetree/bindings/hwmon/
7802 F:      Documentation/hwmon/
7803 F:      drivers/hwmon/
7804 F:      include/linux/hwmon*.h
7805 F:      include/trace/events/hwmon*.h
7806
7807 HARDWARE RANDOM NUMBER GENERATOR CORE
7808 M:      Matt Mackall <mpm@selenic.com>
7809 M:      Herbert Xu <herbert@gondor.apana.org.au>
7810 L:      linux-crypto@vger.kernel.org
7811 S:      Odd fixes
7812 F:      Documentation/admin-guide/hw_random.rst
7813 F:      Documentation/devicetree/bindings/rng/
7814 F:      drivers/char/hw_random/
7815 F:      include/linux/hw_random.h
7816
7817 HARDWARE SPINLOCK CORE
7818 M:      Ohad Ben-Cohen <ohad@wizery.com>
7819 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7820 R:      Baolin Wang <baolin.wang7@gmail.com>
7821 L:      linux-remoteproc@vger.kernel.org
7822 S:      Maintained
7823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7824 F:      Documentation/devicetree/bindings/hwlock/
7825 F:      Documentation/locking/hwspinlock.rst
7826 F:      drivers/hwspinlock/
7827 F:      include/linux/hwspinlock.h
7828
7829 HARDWARE TRACING FACILITIES
7830 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7831 S:      Maintained
7832 F:      drivers/hwtracing/
7833
7834 HARMONY SOUND DRIVER
7835 L:      linux-parisc@vger.kernel.org
7836 S:      Maintained
7837 F:      sound/parisc/harmony.*
7838
7839 HDPVR USB VIDEO ENCODER DRIVER
7840 M:      Hans Verkuil <hverkuil@xs4all.nl>
7841 L:      linux-media@vger.kernel.org
7842 S:      Odd Fixes
7843 W:      https://linuxtv.org
7844 T:      git git://linuxtv.org/media_tree.git
7845 F:      drivers/media/usb/hdpvr/
7846
7847 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7848 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
7849 S:      Supported
7850 F:      Documentation/watchdog/hpwdt.rst
7851 F:      drivers/watchdog/hpwdt.c
7852
7853 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7854 M:      Don Brace <don.brace@microchip.com>
7855 L:      storagedev@microchip.com
7856 L:      linux-scsi@vger.kernel.org
7857 S:      Supported
7858 F:      Documentation/scsi/hpsa.rst
7859 F:      drivers/scsi/hpsa*.[ch]
7860 F:      include/linux/cciss*.h
7861 F:      include/uapi/linux/cciss*.h
7862
7863 HFI1 DRIVER
7864 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
7865 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
7866 L:      linux-rdma@vger.kernel.org
7867 S:      Supported
7868 F:      drivers/infiniband/hw/hfi1
7869
7870 HFS FILESYSTEM
7871 L:      linux-fsdevel@vger.kernel.org
7872 S:      Orphan
7873 F:      Documentation/filesystems/hfs.rst
7874 F:      fs/hfs/
7875
7876 HFSPLUS FILESYSTEM
7877 L:      linux-fsdevel@vger.kernel.org
7878 S:      Orphan
7879 F:      Documentation/filesystems/hfsplus.rst
7880 F:      fs/hfsplus/
7881
7882 HGA FRAMEBUFFER DRIVER
7883 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7884 L:      linux-nvidia@lists.surfsouth.com
7885 S:      Maintained
7886 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7887 F:      drivers/video/fbdev/hgafb.c
7888
7889 HIBERNATION (aka Software Suspend, aka swsusp)
7890 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7891 M:      Pavel Machek <pavel@ucw.cz>
7892 L:      linux-pm@vger.kernel.org
7893 S:      Supported
7894 B:      https://bugzilla.kernel.org
7895 F:      arch/*/include/asm/suspend*.h
7896 F:      arch/x86/power/
7897 F:      drivers/base/power/
7898 F:      include/linux/freezer.h
7899 F:      include/linux/pm.h
7900 F:      include/linux/suspend.h
7901 F:      kernel/power/
7902
7903 HID CORE LAYER
7904 M:      Jiri Kosina <jikos@kernel.org>
7905 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7906 L:      linux-input@vger.kernel.org
7907 S:      Maintained
7908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7909 F:      drivers/hid/
7910 F:      include/linux/hid*
7911 F:      include/uapi/linux/hid*
7912
7913 HID SENSOR HUB DRIVERS
7914 M:      Jiri Kosina <jikos@kernel.org>
7915 M:      Jonathan Cameron <jic23@kernel.org>
7916 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7917 L:      linux-input@vger.kernel.org
7918 L:      linux-iio@vger.kernel.org
7919 S:      Maintained
7920 F:      Documentation/hid/hid-sensor*
7921 F:      drivers/hid/hid-sensor-*
7922 F:      drivers/iio/*/hid-*
7923 F:      include/linux/hid-sensor-*
7924
7925 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7926 M:      Thomas Gleixner <tglx@linutronix.de>
7927 L:      linux-kernel@vger.kernel.org
7928 S:      Maintained
7929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7930 F:      Documentation/timers/
7931 F:      include/linux/clockchips.h
7932 F:      include/linux/hrtimer.h
7933 F:      kernel/time/clockevents.c
7934 F:      kernel/time/hrtimer.c
7935 F:      kernel/time/timer_*.c
7936
7937 HIGH-SPEED SCC DRIVER FOR AX.25
7938 L:      linux-hams@vger.kernel.org
7939 S:      Orphan
7940 F:      drivers/net/hamradio/dmascc.c
7941 F:      drivers/net/hamradio/scc.c
7942
7943 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7944 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7945 S:      Supported
7946 W:      http://www.highpoint-tech.com
7947 F:      Documentation/scsi/hptiop.rst
7948 F:      drivers/scsi/hptiop.c
7949
7950 HIPPI
7951 M:      Jes Sorensen <jes@trained-monkey.org>
7952 L:      linux-hippi@sunsite.dk
7953 S:      Maintained
7954 F:      drivers/net/hippi/
7955 F:      include/linux/hippidevice.h
7956 F:      include/uapi/linux/if_hippi.h
7957 F:      net/802/hippi.c
7958
7959 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
7960 M:      Kurt Kanzenbach <kurt@linutronix.de>
7961 L:      netdev@vger.kernel.org
7962 S:      Maintained
7963 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
7964 F:      drivers/net/dsa/hirschmann/*
7965 F:      include/linux/platform_data/hirschmann-hellcreek.h
7966 F:      net/dsa/tag_hellcreek.c
7967
7968 HISILICON DMA DRIVER
7969 M:      Zhou Wang <wangzhou1@hisilicon.com>
7970 L:      dmaengine@vger.kernel.org
7971 S:      Maintained
7972 F:      drivers/dma/hisi_dma.c
7973
7974 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7975 M:      Zaibo Xu <xuzaibo@huawei.com>
7976 L:      linux-crypto@vger.kernel.org
7977 S:      Maintained
7978 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7979 F:      drivers/crypto/hisilicon/hpre/hpre.h
7980 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7981 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7982
7983 HISILICON LPC BUS DRIVER
7984 M:      john.garry@huawei.com
7985 S:      Maintained
7986 W:      http://www.hisilicon.com
7987 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
7988 F:      drivers/bus/hisi_lpc.c
7989
7990 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7991 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7992 M:      Salil Mehta <salil.mehta@huawei.com>
7993 L:      netdev@vger.kernel.org
7994 S:      Maintained
7995 W:      http://www.hisilicon.com
7996 F:      drivers/net/ethernet/hisilicon/hns3/
7997
7998 HISILICON NETWORK SUBSYSTEM DRIVER
7999 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8000 M:      Salil Mehta <salil.mehta@huawei.com>
8001 L:      netdev@vger.kernel.org
8002 S:      Maintained
8003 W:      http://www.hisilicon.com
8004 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8005 F:      drivers/net/ethernet/hisilicon/
8006
8007 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8008 M:      John Stultz <john.stultz@linaro.org>
8009 L:      linux-kernel@vger.kernel.org
8010 S:      Maintained
8011 F:      drivers/misc/hisi_hikey_usb.c
8012 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8013
8014 HISILICON PMU DRIVER
8015 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8016 S:      Supported
8017 W:      http://www.hisilicon.com
8018 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8019 F:      drivers/perf/hisilicon
8020
8021 HISILICON QM AND ZIP Controller DRIVER
8022 M:      Zhou Wang <wangzhou1@hisilicon.com>
8023 L:      linux-crypto@vger.kernel.org
8024 S:      Maintained
8025 F:      Documentation/ABI/testing/debugfs-hisi-zip
8026 F:      drivers/crypto/hisilicon/qm.c
8027 F:      drivers/crypto/hisilicon/qm.h
8028 F:      drivers/crypto/hisilicon/sgl.c
8029 F:      drivers/crypto/hisilicon/zip/
8030
8031 HISILICON ROCE DRIVER
8032 M:      Lijun Ou <oulijun@huawei.com>
8033 M:      Wei Hu(Xavier) <huwei87@hisilicon.com>
8034 M:      Weihang Li <liweihang@huawei.com>
8035 L:      linux-rdma@vger.kernel.org
8036 S:      Maintained
8037 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8038 F:      drivers/infiniband/hw/hns/
8039
8040 HISILICON SAS Controller
8041 M:      John Garry <john.garry@huawei.com>
8042 S:      Supported
8043 W:      http://www.hisilicon.com
8044 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8045 F:      drivers/scsi/hisi_sas/
8046
8047 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8048 M:      Zaibo Xu <xuzaibo@huawei.com>
8049 L:      linux-crypto@vger.kernel.org
8050 S:      Maintained
8051 F:      Documentation/ABI/testing/debugfs-hisi-sec
8052 F:      drivers/crypto/hisilicon/sec2/sec.h
8053 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8054 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8055 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8056
8057 HISILICON STAGING DRIVERS FOR HIKEY 960/970
8058 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8059 L:      devel@driverdev.osuosl.org
8060 S:      Maintained
8061 F:      drivers/staging/hikey9xx/
8062
8063 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8064 M:      Zaibo Xu <xuzaibo@huawei.com>
8065 S:      Maintained
8066 F:      drivers/crypto/hisilicon/trng/trng.c
8067
8068 HISILICON V3XX SPI NOR FLASH Controller Driver
8069 M:      John Garry <john.garry@huawei.com>
8070 S:      Maintained
8071 W:      http://www.hisilicon.com
8072 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8073
8074 HMM - Heterogeneous Memory Management
8075 M:      Jérôme Glisse <jglisse@redhat.com>
8076 L:      linux-mm@kvack.org
8077 S:      Maintained
8078 F:      Documentation/vm/hmm.rst
8079 F:      include/linux/hmm*
8080 F:      lib/test_hmm*
8081 F:      mm/hmm*
8082 F:      tools/testing/selftests/vm/*hmm*
8083
8084 HOST AP DRIVER
8085 M:      Jouni Malinen <j@w1.fi>
8086 L:      linux-wireless@vger.kernel.org
8087 S:      Obsolete
8088 W:      http://w1.fi/hostap-driver.html
8089 F:      drivers/net/wireless/intersil/hostap/
8090
8091 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8092 L:      platform-driver-x86@vger.kernel.org
8093 S:      Orphan
8094 F:      drivers/platform/x86/tc1100-wmi.c
8095
8096 HPET:   High Precision Event Timers driver
8097 M:      Clemens Ladisch <clemens@ladisch.de>
8098 S:      Maintained
8099 F:      Documentation/timers/hpet.rst
8100 F:      drivers/char/hpet.c
8101 F:      include/linux/hpet.h
8102 F:      include/uapi/linux/hpet.h
8103
8104 HPET:   x86
8105 S:      Orphan
8106 F:      arch/x86/include/asm/hpet.h
8107 F:      arch/x86/kernel/hpet.c
8108
8109 HPFS FILESYSTEM
8110 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8111 S:      Maintained
8112 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8113 F:      fs/hpfs/
8114
8115 HSI SUBSYSTEM
8116 M:      Sebastian Reichel <sre@kernel.org>
8117 S:      Maintained
8118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8119 F:      Documentation/ABI/testing/sysfs-bus-hsi
8120 F:      Documentation/driver-api/hsi.rst
8121 F:      drivers/hsi/
8122 F:      include/linux/hsi/
8123 F:      include/uapi/linux/hsi/
8124
8125 HSO 3G MODEM DRIVER
8126 L:      linux-usb@vger.kernel.org
8127 S:      Orphan
8128 F:      drivers/net/usb/hso.c
8129
8130 HSR NETWORK PROTOCOL
8131 L:      netdev@vger.kernel.org
8132 S:      Orphan
8133 F:      net/hsr/
8134
8135 HT16K33 LED CONTROLLER DRIVER
8136 M:      Robin van der Gracht <robin@protonic.nl>
8137 S:      Maintained
8138 F:      Documentation/devicetree/bindings/display/ht16k33.txt
8139 F:      drivers/auxdisplay/ht16k33.c
8140
8141 HTCPEN TOUCHSCREEN DRIVER
8142 M:      Pau Oliva Fora <pof@eslack.org>
8143 L:      linux-input@vger.kernel.org
8144 S:      Maintained
8145 F:      drivers/input/touchscreen/htcpen.c
8146
8147 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8148 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8149 L:      linux-iio@vger.kernel.org
8150 S:      Maintained
8151 W:      http://www.st.com/
8152 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
8153 F:      drivers/iio/humidity/hts221*
8154
8155 HUAWEI ETHERNET DRIVER
8156 M:      Bin Luo <luobin9@huawei.com>
8157 L:      netdev@vger.kernel.org
8158 S:      Supported
8159 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8160 F:      drivers/net/ethernet/huawei/hinic/
8161
8162 HUGETLB FILESYSTEM
8163 M:      Mike Kravetz <mike.kravetz@oracle.com>
8164 L:      linux-mm@kvack.org
8165 S:      Maintained
8166 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8167 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8168 F:      Documentation/vm/hugetlbfs_reserv.rst
8169 F:      fs/hugetlbfs/
8170 F:      include/linux/hugetlb.h
8171 F:      mm/hugetlb.c
8172
8173 HVA ST MEDIA DRIVER
8174 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
8175 L:      linux-media@vger.kernel.org
8176 S:      Supported
8177 W:      https://linuxtv.org
8178 T:      git git://linuxtv.org/media_tree.git
8179 F:      drivers/media/platform/sti/hva
8180
8181 HWPOISON MEMORY FAILURE HANDLING
8182 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8183 L:      linux-mm@kvack.org
8184 S:      Maintained
8185 F:      mm/hwpoison-inject.c
8186 F:      mm/memory-failure.c
8187
8188 HYGON PROCESSOR SUPPORT
8189 M:      Pu Wen <puwen@hygon.cn>
8190 L:      linux-kernel@vger.kernel.org
8191 S:      Maintained
8192 F:      arch/x86/kernel/cpu/hygon.c
8193
8194 HYNIX HI556 SENSOR DRIVER
8195 M:      Shawn Tu <shawnx.tu@intel.com>
8196 L:      linux-media@vger.kernel.org
8197 S:      Maintained
8198 T:      git git://linuxtv.org/media_tree.git
8199 F:      drivers/media/i2c/hi556.c
8200
8201 Hyper-V CORE AND DRIVERS
8202 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8203 M:      Haiyang Zhang <haiyangz@microsoft.com>
8204 M:      Stephen Hemminger <sthemmin@microsoft.com>
8205 M:      Wei Liu <wei.liu@kernel.org>
8206 L:      linux-hyperv@vger.kernel.org
8207 S:      Supported
8208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8209 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8210 F:      Documentation/ABI/testing/debugfs-hyperv
8211 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8212 F:      arch/x86/hyperv
8213 F:      arch/x86/include/asm/hyperv-tlfs.h
8214 F:      arch/x86/include/asm/mshyperv.h
8215 F:      arch/x86/include/asm/trace/hyperv.h
8216 F:      arch/x86/kernel/cpu/mshyperv.c
8217 F:      drivers/clocksource/hyperv_timer.c
8218 F:      drivers/hid/hid-hyperv.c
8219 F:      drivers/hv/
8220 F:      drivers/input/serio/hyperv-keyboard.c
8221 F:      drivers/iommu/hyperv-iommu.c
8222 F:      drivers/net/hyperv/
8223 F:      drivers/pci/controller/pci-hyperv-intf.c
8224 F:      drivers/pci/controller/pci-hyperv.c
8225 F:      drivers/scsi/storvsc_drv.c
8226 F:      drivers/uio/uio_hv_generic.c
8227 F:      drivers/video/fbdev/hyperv_fb.c
8228 F:      include/asm-generic/hyperv-tlfs.h
8229 F:      include/asm-generic/mshyperv.h
8230 F:      include/clocksource/hyperv_timer.h
8231 F:      include/linux/hyperv.h
8232 F:      include/uapi/linux/hyperv.h
8233 F:      net/vmw_vsock/hyperv_transport.c
8234 F:      tools/hv/
8235
8236 HYPERBUS SUPPORT
8237 M:      Vignesh Raghavendra <vigneshr@ti.com>
8238 L:      linux-mtd@lists.infradead.org
8239 S:      Supported
8240 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8241 C:      irc://irc.oftc.net/mtd
8242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8243 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8244 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8245 F:      drivers/mtd/hyperbus/
8246 F:      include/linux/mtd/hyperbus.h
8247
8248 HYPERVISOR VIRTUAL CONSOLE DRIVER
8249 L:      linuxppc-dev@lists.ozlabs.org
8250 S:      Odd Fixes
8251 F:      drivers/tty/hvc/
8252
8253 I2C ACPI SUPPORT
8254 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8255 L:      linux-i2c@vger.kernel.org
8256 L:      linux-acpi@vger.kernel.org
8257 S:      Maintained
8258 F:      drivers/i2c/i2c-core-acpi.c
8259
8260 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8261 M:      Ajay Gupta <ajayg@nvidia.com>
8262 L:      linux-i2c@vger.kernel.org
8263 S:      Maintained
8264 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8265 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8266
8267 I2C MUXES
8268 M:      Peter Rosin <peda@axentia.se>
8269 L:      linux-i2c@vger.kernel.org
8270 S:      Maintained
8271 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8272 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8273 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8274 F:      Documentation/i2c/i2c-topology.rst
8275 F:      Documentation/i2c/muxes/
8276 F:      drivers/i2c/i2c-mux.c
8277 F:      drivers/i2c/muxes/
8278 F:      include/linux/i2c-mux.h
8279
8280 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8281 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8282 L:      linux-i2c@vger.kernel.org
8283 S:      Maintained
8284 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8285 F:      drivers/i2c/busses/i2c-mv64xxx.c
8286
8287 I2C OVER PARALLEL PORT
8288 M:      Jean Delvare <jdelvare@suse.com>
8289 L:      linux-i2c@vger.kernel.org
8290 S:      Maintained
8291 F:      Documentation/i2c/busses/i2c-parport.rst
8292 F:      drivers/i2c/busses/i2c-parport.c
8293
8294 I2C SUBSYSTEM
8295 M:      Wolfram Sang <wsa@kernel.org>
8296 L:      linux-i2c@vger.kernel.org
8297 S:      Maintained
8298 W:      https://i2c.wiki.kernel.org/
8299 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8301 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8302 F:      Documentation/i2c/
8303 F:      drivers/i2c/*
8304 F:      include/linux/i2c-dev.h
8305 F:      include/linux/i2c-smbus.h
8306 F:      include/linux/i2c.h
8307 F:      include/uapi/linux/i2c-*.h
8308 F:      include/uapi/linux/i2c.h
8309
8310 I2C SUBSYSTEM HOST DRIVERS
8311 L:      linux-i2c@vger.kernel.org
8312 S:      Odd Fixes
8313 W:      https://i2c.wiki.kernel.org/
8314 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8316 F:      Documentation/devicetree/bindings/i2c/
8317 F:      drivers/i2c/algos/
8318 F:      drivers/i2c/busses/
8319
8320 I2C-TAOS-EVM DRIVER
8321 M:      Jean Delvare <jdelvare@suse.com>
8322 L:      linux-i2c@vger.kernel.org
8323 S:      Maintained
8324 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8325 F:      drivers/i2c/busses/i2c-taos-evm.c
8326
8327 I2C-TINY-USB DRIVER
8328 M:      Till Harbaum <till@harbaum.org>
8329 L:      linux-i2c@vger.kernel.org
8330 S:      Maintained
8331 W:      http://www.harbaum.org/till/i2c_tiny_usb
8332 F:      drivers/i2c/busses/i2c-tiny-usb.c
8333
8334 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8335 M:      Jean Delvare <jdelvare@suse.com>
8336 L:      linux-i2c@vger.kernel.org
8337 S:      Maintained
8338 F:      Documentation/i2c/busses/i2c-ali1535.rst
8339 F:      Documentation/i2c/busses/i2c-ali1563.rst
8340 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8341 F:      Documentation/i2c/busses/i2c-amd756.rst
8342 F:      Documentation/i2c/busses/i2c-amd8111.rst
8343 F:      Documentation/i2c/busses/i2c-i801.rst
8344 F:      Documentation/i2c/busses/i2c-nforce2.rst
8345 F:      Documentation/i2c/busses/i2c-piix4.rst
8346 F:      Documentation/i2c/busses/i2c-sis5595.rst
8347 F:      Documentation/i2c/busses/i2c-sis630.rst
8348 F:      Documentation/i2c/busses/i2c-sis96x.rst
8349 F:      Documentation/i2c/busses/i2c-via.rst
8350 F:      Documentation/i2c/busses/i2c-viapro.rst
8351 F:      drivers/i2c/busses/i2c-ali1535.c
8352 F:      drivers/i2c/busses/i2c-ali1563.c
8353 F:      drivers/i2c/busses/i2c-ali15x3.c
8354 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8355 F:      drivers/i2c/busses/i2c-amd756.c
8356 F:      drivers/i2c/busses/i2c-amd8111.c
8357 F:      drivers/i2c/busses/i2c-i801.c
8358 F:      drivers/i2c/busses/i2c-isch.c
8359 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8360 F:      drivers/i2c/busses/i2c-nforce2.c
8361 F:      drivers/i2c/busses/i2c-piix4.c
8362 F:      drivers/i2c/busses/i2c-sis5595.c
8363 F:      drivers/i2c/busses/i2c-sis630.c
8364 F:      drivers/i2c/busses/i2c-sis96x.c
8365 F:      drivers/i2c/busses/i2c-via.c
8366 F:      drivers/i2c/busses/i2c-viapro.c
8367
8368 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8369 M:      Hans de Goede <hdegoede@redhat.com>
8370 L:      linux-i2c@vger.kernel.org
8371 S:      Maintained
8372 F:      drivers/i2c/busses/i2c-cht-wc.c
8373
8374 I2C/SMBUS ISMT DRIVER
8375 M:      Seth Heasley <seth.heasley@intel.com>
8376 M:      Neil Horman <nhorman@tuxdriver.com>
8377 L:      linux-i2c@vger.kernel.org
8378 F:      Documentation/i2c/busses/i2c-ismt.rst
8379 F:      drivers/i2c/busses/i2c-ismt.c
8380
8381 I2C/SMBUS STUB DRIVER
8382 M:      Jean Delvare <jdelvare@suse.com>
8383 L:      linux-i2c@vger.kernel.org
8384 S:      Maintained
8385 F:      drivers/i2c/i2c-stub.c
8386
8387 I3C DRIVER FOR CADENCE I3C MASTER IP
8388 M:      Przemysław Gaj <pgaj@cadence.com>
8389 S:      Maintained
8390 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8391 F:      drivers/i3c/master/i3c-master-cdns.c
8392
8393 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8394 M:      Vitor Soares <vitor.soares@synopsys.com>
8395 S:      Maintained
8396 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8397 F:      drivers/i3c/master/dw*
8398
8399 I3C SUBSYSTEM
8400 M:      Boris Brezillon <bbrezillon@kernel.org>
8401 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8402 S:      Maintained
8403 C:      irc://chat.freenode.net/linux-i3c
8404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8405 F:      Documentation/ABI/testing/sysfs-bus-i3c
8406 F:      Documentation/devicetree/bindings/i3c/
8407 F:      Documentation/driver-api/i3c
8408 F:      drivers/i3c/
8409 F:      include/linux/i3c/
8410
8411 IA64 (Itanium) PLATFORM
8412 M:      Tony Luck <tony.luck@intel.com>
8413 M:      Fenghua Yu <fenghua.yu@intel.com>
8414 L:      linux-ia64@vger.kernel.org
8415 S:      Odd Fixes
8416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8417 F:      Documentation/ia64/
8418 F:      arch/ia64/
8419
8420 IBM Power 842 compression accelerator
8421 M:      Haren Myneni <haren@us.ibm.com>
8422 S:      Supported
8423 F:      crypto/842.c
8424 F:      drivers/crypto/nx/Kconfig
8425 F:      drivers/crypto/nx/Makefile
8426 F:      drivers/crypto/nx/nx-842*
8427 F:      include/linux/sw842.h
8428 F:      lib/842/
8429
8430 IBM Power in-Nest Crypto Acceleration
8431 M:      Breno Leitão <leitao@debian.org>
8432 M:      Nayna Jain <nayna@linux.ibm.com>
8433 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8434 L:      linux-crypto@vger.kernel.org
8435 S:      Supported
8436 F:      drivers/crypto/nx/Kconfig
8437 F:      drivers/crypto/nx/Makefile
8438 F:      drivers/crypto/nx/nx-aes*
8439 F:      drivers/crypto/nx/nx-sha*
8440 F:      drivers/crypto/nx/nx.*
8441 F:      drivers/crypto/nx/nx_csbcpb.h
8442 F:      drivers/crypto/nx/nx_debugfs.c
8443
8444 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8445 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8446 L:      linux-pci@vger.kernel.org
8447 L:      linuxppc-dev@lists.ozlabs.org
8448 S:      Supported
8449 F:      drivers/pci/hotplug/rpadlpar*
8450
8451 IBM Power Linux RAID adapter
8452 M:      Brian King <brking@us.ibm.com>
8453 S:      Supported
8454 F:      drivers/scsi/ipr.*
8455
8456 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8457 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8458 L:      linux-pci@vger.kernel.org
8459 L:      linuxppc-dev@lists.ozlabs.org
8460 S:      Supported
8461 F:      drivers/pci/hotplug/rpaphp*
8462
8463 IBM Power SRIOV Virtual NIC Device Driver
8464 M:      Dany Madden <drt@linux.ibm.com>
8465 M:      Lijun Pan <ljp@linux.ibm.com>
8466 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8467 L:      netdev@vger.kernel.org
8468 S:      Supported
8469 F:      drivers/net/ethernet/ibm/ibmvnic.*
8470
8471 IBM Power Virtual Accelerator Switchboard
8472 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8473 L:      linuxppc-dev@lists.ozlabs.org
8474 S:      Supported
8475 F:      arch/powerpc/include/asm/vas.h
8476 F:      arch/powerpc/platforms/powernv/copy-paste.h
8477 F:      arch/powerpc/platforms/powernv/vas*
8478
8479 IBM Power Virtual Ethernet Device Driver
8480 M:      Cristobal Forno <cforno12@linux.ibm.com>
8481 L:      netdev@vger.kernel.org
8482 S:      Supported
8483 F:      drivers/net/ethernet/ibm/ibmveth.*
8484
8485 IBM Power Virtual FC Device Drivers
8486 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8487 L:      linux-scsi@vger.kernel.org
8488 S:      Supported
8489 F:      drivers/scsi/ibmvscsi/ibmvfc*
8490
8491 IBM Power Virtual Management Channel Driver
8492 M:      Steven Royer <seroyer@linux.ibm.com>
8493 S:      Supported
8494 F:      drivers/misc/ibmvmc.*
8495
8496 IBM Power Virtual SCSI Device Drivers
8497 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8498 L:      linux-scsi@vger.kernel.org
8499 S:      Supported
8500 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8501 F:      include/scsi/viosrp.h
8502
8503 IBM Power Virtual SCSI Device Target Driver
8504 M:      Michael Cyr <mikecyr@linux.ibm.com>
8505 L:      linux-scsi@vger.kernel.org
8506 L:      target-devel@vger.kernel.org
8507 S:      Supported
8508 F:      drivers/scsi/ibmvscsi_tgt/
8509
8510 IBM Power VMX Cryptographic instructions
8511 M:      Breno Leitão <leitao@debian.org>
8512 M:      Nayna Jain <nayna@linux.ibm.com>
8513 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8514 L:      linux-crypto@vger.kernel.org
8515 S:      Supported
8516 F:      drivers/crypto/vmx/Kconfig
8517 F:      drivers/crypto/vmx/Makefile
8518 F:      drivers/crypto/vmx/aes*
8519 F:      drivers/crypto/vmx/ghash*
8520 F:      drivers/crypto/vmx/ppc-xlate.pl
8521 F:      drivers/crypto/vmx/vmx.c
8522
8523 IBM ServeRAID RAID DRIVER
8524 S:      Orphan
8525 F:      drivers/scsi/ips.*
8526
8527 ICH LPC AND GPIO DRIVER
8528 M:      Peter Tyser <ptyser@xes-inc.com>
8529 S:      Maintained
8530 F:      drivers/gpio/gpio-ich.c
8531 F:      drivers/mfd/lpc_ich.c
8532
8533 ICY I2C DRIVER
8534 M:      Max Staudt <max@enpas.org>
8535 L:      linux-i2c@vger.kernel.org
8536 S:      Maintained
8537 F:      drivers/i2c/busses/i2c-icy.c
8538
8539 IDE SUBSYSTEM
8540 M:      "David S. Miller" <davem@davemloft.net>
8541 L:      linux-ide@vger.kernel.org
8542 S:      Maintained
8543 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8545 F:      Documentation/ide/
8546 F:      drivers/ide/
8547 F:      include/linux/ide.h
8548
8549 IDE/ATAPI DRIVERS
8550 M:      Borislav Petkov <bp@alien8.de>
8551 L:      linux-ide@vger.kernel.org
8552 S:      Maintained
8553 F:      Documentation/cdrom/ide-cd.rst
8554 F:      drivers/ide/ide-cd*
8555
8556 IDEAPAD LAPTOP EXTRAS DRIVER
8557 M:      Ike Panhc <ike.pan@canonical.com>
8558 L:      platform-driver-x86@vger.kernel.org
8559 S:      Maintained
8560 W:      http://launchpad.net/ideapad-laptop
8561 F:      drivers/platform/x86/ideapad-laptop.c
8562
8563 IDEAPAD LAPTOP SLIDEBAR DRIVER
8564 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8565 L:      linux-input@vger.kernel.org
8566 S:      Maintained
8567 W:      https://github.com/o2genum/ideapad-slidebar
8568 F:      drivers/input/misc/ideapad_slidebar.c
8569
8570 IDT VersaClock 5 CLOCK DRIVER
8571 M:      Luca Ceresoli <luca@lucaceresoli.net>
8572 S:      Maintained
8573 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
8574 F:      drivers/clk/clk-versaclock5.c
8575
8576 IEEE 802.15.4 SUBSYSTEM
8577 M:      Alexander Aring <alex.aring@gmail.com>
8578 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8579 L:      linux-wpan@vger.kernel.org
8580 S:      Maintained
8581 W:      https://linux-wpan.org/
8582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8584 F:      Documentation/networking/ieee802154.rst
8585 F:      drivers/net/ieee802154/
8586 F:      include/linux/ieee802154.h
8587 F:      include/linux/nl802154.h
8588 F:      include/net/af_ieee802154.h
8589 F:      include/net/cfg802154.h
8590 F:      include/net/ieee802154_netdev.h
8591 F:      include/net/mac802154.h
8592 F:      include/net/nl802154.h
8593 F:      net/ieee802154/
8594 F:      net/mac802154/
8595
8596 IFE PROTOCOL
8597 M:      Yotam Gigi <yotam.gi@gmail.com>
8598 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8599 F:      include/net/ife.h
8600 F:      include/uapi/linux/ife.h
8601 F:      net/ife
8602
8603 IGORPLUG-USB IR RECEIVER
8604 M:      Sean Young <sean@mess.org>
8605 L:      linux-media@vger.kernel.org
8606 S:      Maintained
8607 F:      drivers/media/rc/igorplugusb.c
8608
8609 IGUANAWORKS USB IR TRANSCEIVER
8610 M:      Sean Young <sean@mess.org>
8611 L:      linux-media@vger.kernel.org
8612 S:      Maintained
8613 F:      drivers/media/rc/iguanair.c
8614
8615 IIO DIGITAL POTENTIOMETER DAC
8616 M:      Peter Rosin <peda@axentia.se>
8617 L:      linux-iio@vger.kernel.org
8618 S:      Maintained
8619 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8620 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8621 F:      drivers/iio/dac/dpot-dac.c
8622
8623 IIO ENVELOPE DETECTOR
8624 M:      Peter Rosin <peda@axentia.se>
8625 L:      linux-iio@vger.kernel.org
8626 S:      Maintained
8627 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8628 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8629 F:      drivers/iio/adc/envelope-detector.c
8630
8631 IIO MULTIPLEXER
8632 M:      Peter Rosin <peda@axentia.se>
8633 L:      linux-iio@vger.kernel.org
8634 S:      Maintained
8635 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8636 F:      drivers/iio/multiplexer/iio-mux.c
8637
8638 IIO SUBSYSTEM AND DRIVERS
8639 M:      Jonathan Cameron <jic23@kernel.org>
8640 R:      Lars-Peter Clausen <lars@metafoo.de>
8641 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
8642 L:      linux-iio@vger.kernel.org
8643 S:      Maintained
8644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8645 F:      Documentation/ABI/testing/configfs-iio*
8646 F:      Documentation/ABI/testing/sysfs-bus-iio*
8647 F:      Documentation/devicetree/bindings/iio/
8648 F:      drivers/iio/
8649 F:      drivers/staging/iio/
8650 F:      include/linux/iio/
8651 F:      tools/iio/
8652
8653 IIO UNIT CONVERTER
8654 M:      Peter Rosin <peda@axentia.se>
8655 L:      linux-iio@vger.kernel.org
8656 S:      Maintained
8657 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8658 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8659 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8660 F:      drivers/iio/afe/iio-rescale.c
8661
8662 IKANOS/ADI EAGLE ADSL USB DRIVER
8663 M:      Matthieu Castet <castet.matthieu@free.fr>
8664 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8665 S:      Maintained
8666 F:      drivers/usb/atm/ueagle-atm.c
8667
8668 IMGTEC ASCII LCD DRIVER
8669 M:      Paul Burton <paulburton@kernel.org>
8670 S:      Maintained
8671 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8672 F:      drivers/auxdisplay/img-ascii-lcd.c
8673
8674 IMGTEC IR DECODER DRIVER
8675 S:      Orphan
8676 F:      drivers/media/rc/img-ir/
8677
8678 IMON SOUNDGRAPH USB IR RECEIVER
8679 M:      Sean Young <sean@mess.org>
8680 L:      linux-media@vger.kernel.org
8681 S:      Maintained
8682 F:      drivers/media/rc/imon.c
8683 F:      drivers/media/rc/imon_raw.c
8684
8685 IMS TWINTURBO FRAMEBUFFER DRIVER
8686 L:      linux-fbdev@vger.kernel.org
8687 S:      Orphan
8688 F:      drivers/video/fbdev/imsttfb.c
8689
8690 INA209 HARDWARE MONITOR DRIVER
8691 M:      Guenter Roeck <linux@roeck-us.net>
8692 L:      linux-hwmon@vger.kernel.org
8693 S:      Maintained
8694 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
8695 F:      Documentation/hwmon/ina209.rst
8696 F:      drivers/hwmon/ina209.c
8697
8698 INA2XX HARDWARE MONITOR DRIVER
8699 M:      Guenter Roeck <linux@roeck-us.net>
8700 L:      linux-hwmon@vger.kernel.org
8701 S:      Maintained
8702 F:      Documentation/hwmon/ina2xx.rst
8703 F:      drivers/hwmon/ina2xx.c
8704 F:      include/linux/platform_data/ina2xx.h
8705
8706 INDUSTRY PACK SUBSYSTEM (IPACK)
8707 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8708 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8709 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8710 L:      industrypack-devel@lists.sourceforge.net
8711 S:      Maintained
8712 W:      http://industrypack.sourceforge.net
8713 F:      drivers/ipack/
8714
8715 INFINEON DPS310 Driver
8716 M:      Eddie James <eajames@linux.ibm.com>
8717 L:      linux-iio@vger.kernel.org
8718 S:      Maintained
8719 F:      drivers/iio/pressure/dps310.c
8720
8721 INFINIBAND SUBSYSTEM
8722 M:      Doug Ledford <dledford@redhat.com>
8723 M:      Jason Gunthorpe <jgg@nvidia.com>
8724 L:      linux-rdma@vger.kernel.org
8725 S:      Supported
8726 W:      https://github.com/linux-rdma/rdma-core
8727 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8729 F:      Documentation/devicetree/bindings/infiniband/
8730 F:      Documentation/infiniband/
8731 F:      drivers/infiniband/
8732 F:      include/rdma/
8733 F:      include/trace/events/ib_mad.h
8734 F:      include/trace/events/ib_umad.h
8735 F:      include/uapi/linux/if_infiniband.h
8736 F:      include/uapi/rdma/
8737 F:      samples/bpf/ibumad_kern.c
8738 F:      samples/bpf/ibumad_user.c
8739
8740 INGENIC JZ4780 NAND DRIVER
8741 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8742 L:      linux-mtd@lists.infradead.org
8743 L:      linux-mips@vger.kernel.org
8744 S:      Maintained
8745 F:      drivers/mtd/nand/raw/ingenic/
8746
8747 INGENIC JZ47xx SoCs
8748 M:      Paul Cercueil <paul@crapouillou.net>
8749 L:      linux-mips@vger.kernel.org
8750 S:      Maintained
8751 F:      arch/mips/boot/dts/ingenic/
8752 F:      arch/mips/generic/board-ingenic.c
8753 F:      arch/mips/include/asm/mach-ingenic/
8754 F:      arch/mips/ingenic/Kconfig
8755 F:      drivers/clk/ingenic/
8756 F:      drivers/dma/dma-jz4780.c
8757 F:      drivers/gpu/drm/ingenic/
8758 F:      drivers/i2c/busses/i2c-jz4780.c
8759 F:      drivers/iio/adc/ingenic-adc.c
8760 F:      drivers/irqchip/irq-ingenic.c
8761 F:      drivers/memory/jz4780-nemc.c
8762 F:      drivers/mmc/host/jz4740_mmc.c
8763 F:      drivers/mtd/nand/raw/ingenic/
8764 F:      drivers/pinctrl/pinctrl-ingenic.c
8765 F:      drivers/power/supply/ingenic-battery.c
8766 F:      drivers/pwm/pwm-jz4740.c
8767 F:      drivers/remoteproc/ingenic_rproc.c
8768 F:      drivers/rtc/rtc-jz4740.c
8769 F:      drivers/tty/serial/8250/8250_ingenic.c
8770 F:      drivers/usb/musb/jz4740.c
8771 F:      drivers/watchdog/jz4740_wdt.c
8772 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8773 F:      include/linux/mfd/ingenic-tcu.h
8774 F:      sound/soc/codecs/jz47*
8775 F:      sound/soc/jz4740/
8776
8777 INOTIFY
8778 M:      Jan Kara <jack@suse.cz>
8779 R:      Amir Goldstein <amir73il@gmail.com>
8780 L:      linux-fsdevel@vger.kernel.org
8781 S:      Maintained
8782 F:      Documentation/filesystems/inotify.rst
8783 F:      fs/notify/inotify/
8784 F:      include/linux/inotify.h
8785 F:      include/uapi/linux/inotify.h
8786
8787 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8788 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8789 L:      linux-input@vger.kernel.org
8790 S:      Maintained
8791 Q:      http://patchwork.kernel.org/project/linux-input/list/
8792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8793 F:      Documentation/devicetree/bindings/input/
8794 F:      Documentation/devicetree/bindings/serio/
8795 F:      Documentation/input/
8796 F:      drivers/input/
8797 F:      include/linux/input.h
8798 F:      include/linux/input/
8799 F:      include/uapi/linux/input-event-codes.h
8800 F:      include/uapi/linux/input.h
8801
8802 INPUT MULTITOUCH (MT) PROTOCOL
8803 M:      Henrik Rydberg <rydberg@bitmath.org>
8804 L:      linux-input@vger.kernel.org
8805 S:      Odd fixes
8806 F:      Documentation/input/multi-touch-protocol.rst
8807 F:      drivers/input/input-mt.c
8808 K:      \b(ABS|SYN)_MT_
8809
8810 INSIDE SECURE CRYPTO DRIVER
8811 M:      Antoine Tenart <atenart@kernel.org>
8812 L:      linux-crypto@vger.kernel.org
8813 S:      Maintained
8814 F:      drivers/crypto/inside-secure/
8815
8816 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8817 M:      Mimi Zohar <zohar@linux.ibm.com>
8818 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8819 L:      linux-integrity@vger.kernel.org
8820 S:      Supported
8821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8822 F:      security/integrity/ima/
8823
8824 INTEL 810/815 FRAMEBUFFER DRIVER
8825 M:      Antonino Daplas <adaplas@gmail.com>
8826 L:      linux-fbdev@vger.kernel.org
8827 S:      Maintained
8828 F:      drivers/video/fbdev/i810/
8829
8830 INTEL ASoC DRIVERS
8831 M:      Cezary Rojewski <cezary.rojewski@intel.com>
8832 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8833 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
8834 M:      Jie Yang <yang.jie@linux.intel.com>
8835 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8836 S:      Supported
8837 F:      sound/soc/intel/
8838
8839 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8840 M:      Hans de Goede <hdegoede@redhat.com>
8841 L:      platform-driver-x86@vger.kernel.org
8842 S:      Maintained
8843 F:      drivers/platform/x86/intel_atomisp2_pm.c
8844
8845 INTEL ATOMISP2 LED DRIVER
8846 M:      Hans de Goede <hdegoede@redhat.com>
8847 L:      platform-driver-x86@vger.kernel.org
8848 S:      Maintained
8849 F:      drivers/platform/x86/intel_atomisp2_led.c
8850
8851 INTEL BROXTON PMC DRIVER
8852 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8853 M:      Zha Qipeng <qipeng.zha@intel.com>
8854 S:      Maintained
8855 F:      drivers/mfd/intel_pmc_bxt.c
8856 F:      include/linux/mfd/intel_pmc_bxt.h
8857
8858 INTEL C600 SERIES SAS CONTROLLER DRIVER
8859 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
8860 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8861 L:      linux-scsi@vger.kernel.org
8862 S:      Supported
8863 T:      git git://git.code.sf.net/p/intel-sas/isci
8864 F:      drivers/scsi/isci/
8865
8866 INTEL CPU family model numbers
8867 M:      Tony Luck <tony.luck@intel.com>
8868 M:      x86@kernel.org
8869 L:      linux-kernel@vger.kernel.org
8870 S:      Supported
8871 F:      arch/x86/include/asm/intel-family.h
8872
8873 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8874 M:      Jani Nikula <jani.nikula@linux.intel.com>
8875 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8876 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
8877 L:      intel-gfx@lists.freedesktop.org
8878 S:      Supported
8879 W:      https://01.org/linuxgraphics/
8880 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8881 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8882 C:      irc://chat.freenode.net/intel-gfx
8883 T:      git git://anongit.freedesktop.org/drm-intel
8884 F:      Documentation/gpu/i915.rst
8885 F:      drivers/gpu/drm/i915/
8886 F:      include/drm/i915*
8887 F:      include/uapi/drm/i915_drm.h
8888
8889 INTEL ETHERNET DRIVERS
8890 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
8891 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
8892 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8893 S:      Supported
8894 W:      http://www.intel.com/support/feedback.htm
8895 W:      http://e1000.sourceforge.net/
8896 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
8898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
8899 F:      Documentation/networking/device_drivers/ethernet/intel/
8900 F:      drivers/net/ethernet/intel/
8901 F:      drivers/net/ethernet/intel/*/
8902 F:      include/linux/avf/virtchnl.h
8903
8904 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8905 M:      Maik Broemme <mbroemme@libmpq.org>
8906 L:      linux-fbdev@vger.kernel.org
8907 S:      Maintained
8908 F:      Documentation/fb/intelfb.rst
8909 F:      drivers/video/fbdev/intelfb/
8910
8911 INTEL GPIO DRIVERS
8912 M:      Andy Shevchenko <andy@kernel.org>
8913 L:      linux-gpio@vger.kernel.org
8914 S:      Maintained
8915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8916 F:      drivers/gpio/gpio-ich.c
8917 F:      drivers/gpio/gpio-intel-mid.c
8918 F:      drivers/gpio/gpio-merrifield.c
8919 F:      drivers/gpio/gpio-ml-ioh.c
8920 F:      drivers/gpio/gpio-pch.c
8921 F:      drivers/gpio/gpio-sch.c
8922 F:      drivers/gpio/gpio-sodaville.c
8923
8924 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8925 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
8926 M:      Zhi Wang <zhi.a.wang@intel.com>
8927 L:      intel-gvt-dev@lists.freedesktop.org
8928 L:      intel-gfx@lists.freedesktop.org
8929 S:      Supported
8930 W:      https://01.org/igvt-g
8931 T:      git https://github.com/intel/gvt-linux.git
8932 F:      drivers/gpu/drm/i915/gvt/
8933
8934 INTEL HID EVENT DRIVER
8935 M:      Alex Hung <alex.hung@canonical.com>
8936 L:      platform-driver-x86@vger.kernel.org
8937 S:      Maintained
8938 F:      drivers/platform/x86/intel-hid.c
8939
8940 INTEL I/OAT DMA DRIVER
8941 M:      Dave Jiang <dave.jiang@intel.com>
8942 R:      Dan Williams <dan.j.williams@intel.com>
8943 L:      dmaengine@vger.kernel.org
8944 S:      Supported
8945 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8946 F:      drivers/dma/ioat*
8947
8948 INTEL IADX DRIVER
8949 M:      Dave Jiang <dave.jiang@intel.com>
8950 L:      dmaengine@vger.kernel.org
8951 S:      Supported
8952 F:      drivers/dma/idxd/*
8953 F:      include/uapi/linux/idxd.h
8954
8955 INTEL IDLE DRIVER
8956 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
8957 M:      Len Brown <lenb@kernel.org>
8958 L:      linux-pm@vger.kernel.org
8959 S:      Supported
8960 B:      https://bugzilla.kernel.org
8961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8962 F:      drivers/idle/intel_idle.c
8963
8964 INTEL INTEGRATED SENSOR HUB DRIVER
8965 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8966 M:      Jiri Kosina <jikos@kernel.org>
8967 L:      linux-input@vger.kernel.org
8968 S:      Maintained
8969 F:      drivers/hid/intel-ish-hid/
8970
8971 INTEL IOMMU (VT-d)
8972 M:      David Woodhouse <dwmw2@infradead.org>
8973 M:      Lu Baolu <baolu.lu@linux.intel.com>
8974 L:      iommu@lists.linux-foundation.org
8975 S:      Supported
8976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8977 F:      drivers/iommu/intel/
8978 F:      include/linux/intel-iommu.h
8979 F:      include/linux/intel-svm.h
8980
8981 INTEL IOP-ADMA DMA DRIVER
8982 R:      Dan Williams <dan.j.williams@intel.com>
8983 S:      Odd fixes
8984 F:      drivers/dma/iop-adma.c
8985
8986 INTEL IPU3 CSI-2 CIO2 DRIVER
8987 M:      Yong Zhi <yong.zhi@intel.com>
8988 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8989 M:      Bingbu Cao <bingbu.cao@intel.com>
8990 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
8991 L:      linux-media@vger.kernel.org
8992 S:      Maintained
8993 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
8994 F:      drivers/media/pci/intel/ipu3/
8995
8996 INTEL IPU3 CSI-2 IMGU DRIVER
8997 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8998 R:      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/admin-guide/media/ipu3.rst
9003 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9004 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9005 F:      drivers/staging/media/ipu3/
9006
9007 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9008 M:      Krzysztof Halasa <khalasa@piap.pl>
9009 S:      Maintained
9010 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9011 F:      drivers/net/wan/ixp4xx_hss.c
9012 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9013 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9014 F:      include/linux/soc/ixp4xx/npe.h
9015 F:      include/linux/soc/ixp4xx/qmgr.h
9016
9017 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9018 M:      Deepak Saxena <dsaxena@plexity.net>
9019 S:      Maintained
9020 F:      drivers/char/hw_random/ixp4xx-rng.c
9021
9022 INTEL KEEM BAY DRM DRIVER
9023 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9024 M:      Edmund Dea <edmund.j.dea@intel.com>
9025 S:      Maintained
9026 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9027 F:      drivers/gpu/drm/kmb/
9028
9029 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9030 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9031 S:      Maintained
9032 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9033 F:      drivers/crypto/keembay/Kconfig
9034 F:      drivers/crypto/keembay/Makefile
9035 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9036 F:      drivers/crypto/keembay/ocs-aes.c
9037 F:      drivers/crypto/keembay/ocs-aes.h
9038
9039 INTEL MANAGEMENT ENGINE (mei)
9040 M:      Tomas Winkler <tomas.winkler@intel.com>
9041 L:      linux-kernel@vger.kernel.org
9042 S:      Supported
9043 F:      Documentation/driver-api/mei/*
9044 F:      drivers/misc/mei/
9045 F:      drivers/watchdog/mei_wdt.c
9046 F:      include/linux/mei_cl_bus.h
9047 F:      include/uapi/linux/mei.h
9048 F:      samples/mei/*
9049
9050 INTEL MENLOW THERMAL DRIVER
9051 M:      Sujith Thomas <sujith.thomas@intel.com>
9052 L:      platform-driver-x86@vger.kernel.org
9053 S:      Supported
9054 W:      https://01.org/linux-acpi
9055 F:      drivers/platform/x86/intel_menlow.c
9056
9057 INTEL P-Unit IPC DRIVER
9058 M:      Zha Qipeng <qipeng.zha@intel.com>
9059 L:      platform-driver-x86@vger.kernel.org
9060 S:      Maintained
9061 F:      arch/x86/include/asm/intel_punit_ipc.h
9062 F:      drivers/platform/x86/intel_punit_ipc.c
9063
9064 INTEL PMC CORE DRIVER
9065 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9066 M:      David E Box <david.e.box@intel.com>
9067 L:      platform-driver-x86@vger.kernel.org
9068 S:      Maintained
9069 F:      drivers/platform/x86/intel_pmc_core*
9070
9071 INTEL PMIC GPIO DRIVERS
9072 M:      Andy Shevchenko <andy@kernel.org>
9073 S:      Maintained
9074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9075 F:      drivers/gpio/gpio-*cove.c
9076 F:      drivers/gpio/gpio-msic.c
9077
9078 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9079 M:      Andy Shevchenko <andy@kernel.org>
9080 S:      Maintained
9081 F:      drivers/mfd/intel_msic.c
9082 F:      drivers/mfd/intel_soc_pmic*
9083 F:      include/linux/mfd/intel_msic.h
9084 F:      include/linux/mfd/intel_soc_pmic*
9085
9086 INTEL PMT DRIVER
9087 M:      "David E. Box" <david.e.box@linux.intel.com>
9088 S:      Maintained
9089 F:      drivers/mfd/intel_pmt.c
9090 F:      drivers/platform/x86/intel_pmt_*
9091
9092 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9093 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9094 L:      linux-wireless@vger.kernel.org
9095 S:      Maintained
9096 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9097 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9098 F:      drivers/net/wireless/intel/ipw2x00/
9099
9100 INTEL PSTATE DRIVER
9101 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9102 M:      Len Brown <lenb@kernel.org>
9103 L:      linux-pm@vger.kernel.org
9104 S:      Supported
9105 F:      drivers/cpufreq/intel_pstate.c
9106
9107 INTEL RDMA RNIC DRIVER
9108 M:      Faisal Latif <faisal.latif@intel.com>
9109 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9110 L:      linux-rdma@vger.kernel.org
9111 S:      Supported
9112 F:      drivers/infiniband/hw/i40iw/
9113 F:      include/uapi/rdma/i40iw-abi.h
9114
9115 INTEL SCU DRIVERS
9116 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9117 S:      Maintained
9118 F:      arch/x86/include/asm/intel_scu_ipc.h
9119 F:      drivers/platform/x86/intel_scu_*
9120
9121 INTEL SPEED SELECT TECHNOLOGY
9122 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9123 L:      platform-driver-x86@vger.kernel.org
9124 S:      Maintained
9125 F:      drivers/platform/x86/intel_speed_select_if/
9126 F:      include/uapi/linux/isst_if.h
9127 F:      tools/power/x86/intel-speed-select/
9128
9129 INTEL STRATIX10 FIRMWARE DRIVERS
9130 M:      Richard Gong <richard.gong@linux.intel.com>
9131 L:      linux-kernel@vger.kernel.org
9132 S:      Maintained
9133 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9134 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9135 F:      drivers/firmware/stratix10-rsu.c
9136 F:      drivers/firmware/stratix10-svc.c
9137 F:      include/linux/firmware/intel/stratix10-smc.h
9138 F:      include/linux/firmware/intel/stratix10-svc-client.h
9139
9140 INTEL TELEMETRY DRIVER
9141 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
9142 M:      "David E. Box" <david.e.box@linux.intel.com>
9143 L:      platform-driver-x86@vger.kernel.org
9144 S:      Maintained
9145 F:      arch/x86/include/asm/intel_telemetry.h
9146 F:      drivers/platform/x86/intel_telemetry*
9147
9148 INTEL UNCORE FREQUENCY CONTROL
9149 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9150 L:      platform-driver-x86@vger.kernel.org
9151 S:      Maintained
9152 F:      drivers/platform/x86/intel-uncore-frequency.c
9153
9154 INTEL VIRTUAL BUTTON DRIVER
9155 M:      AceLan Kao <acelan.kao@canonical.com>
9156 L:      platform-driver-x86@vger.kernel.org
9157 S:      Maintained
9158 F:      drivers/platform/x86/intel-vbtn.c
9159
9160 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9161 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9162 L:      linux-wireless@vger.kernel.org
9163 S:      Supported
9164 F:      drivers/net/wireless/intel/iwlegacy/
9165
9166 INTEL WIRELESS WIFI LINK (iwlwifi)
9167 M:      Luca Coelho <luciano.coelho@intel.com>
9168 L:      linux-wireless@vger.kernel.org
9169 S:      Supported
9170 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9172 F:      drivers/net/wireless/intel/iwlwifi/
9173
9174 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9175 M:      Jithu Joseph <jithu.joseph@intel.com>
9176 R:      Maurice Ma <maurice.ma@intel.com>
9177 S:      Maintained
9178 W:      https://slimbootloader.github.io/security/firmware-update.html
9179 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
9180
9181 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9182 M:      Mario Limonciello <mario.limonciello@dell.com>
9183 S:      Maintained
9184 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
9185
9186 INTEL(R) TRACE HUB
9187 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9188 S:      Supported
9189 F:      Documentation/trace/intel_th.rst
9190 F:      drivers/hwtracing/intel_th/
9191 F:      include/linux/intel_th.h
9192
9193 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9194 M:      Ning Sun <ning.sun@intel.com>
9195 L:      tboot-devel@lists.sourceforge.net
9196 S:      Supported
9197 W:      http://tboot.sourceforge.net
9198 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9199 F:      Documentation/x86/intel_txt.rst
9200 F:      arch/x86/kernel/tboot.c
9201 F:      include/linux/tboot.h
9202
9203 INTEL SGX
9204 M:      Jarkko Sakkinen <jarkko@kernel.org>
9205 L:      linux-sgx@vger.kernel.org
9206 S:      Supported
9207 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-sgx.git
9209 F:      Documentation/x86/sgx.rst
9210 F:      arch/x86/entry/vdso/vsgx.S
9211 F:      arch/x86/include/uapi/asm/sgx.h
9212 F:      arch/x86/kernel/cpu/sgx/*
9213 F:      tools/testing/selftests/sgx/*
9214 K:      \bSGX_
9215
9216 INTERCONNECT API
9217 M:      Georgi Djakov <georgi.djakov@linaro.org>
9218 L:      linux-pm@vger.kernel.org
9219 S:      Maintained
9220 F:      Documentation/devicetree/bindings/interconnect/
9221 F:      Documentation/driver-api/interconnect.rst
9222 F:      drivers/interconnect/
9223 F:      include/dt-bindings/interconnect/
9224 F:      include/linux/interconnect-provider.h
9225 F:      include/linux/interconnect.h
9226
9227 INVENSENSE ICM-426xx IMU DRIVER
9228 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9229 L:      linux-iio@vger.kernel.org
9230 S:      Maintained
9231 W:      https://invensense.tdk.com/
9232 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9233 F:      drivers/iio/imu/inv_icm42600/
9234
9235 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9236 M:      Linus Walleij <linus.walleij@linaro.org>
9237 L:      linux-iio@vger.kernel.org
9238 S:      Maintained
9239 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
9240 F:      drivers/iio/gyro/mpu3050*
9241
9242 IOC3 ETHERNET DRIVER
9243 M:      Ralf Baechle <ralf@linux-mips.org>
9244 L:      linux-mips@vger.kernel.org
9245 S:      Maintained
9246 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9247
9248 IOMAP FILESYSTEM LIBRARY
9249 M:      Christoph Hellwig <hch@infradead.org>
9250 M:      Darrick J. Wong <darrick.wong@oracle.com>
9251 M:      linux-xfs@vger.kernel.org
9252 M:      linux-fsdevel@vger.kernel.org
9253 L:      linux-xfs@vger.kernel.org
9254 L:      linux-fsdevel@vger.kernel.org
9255 S:      Supported
9256 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9257 F:      fs/iomap/
9258 F:      include/linux/iomap.h
9259
9260 IOMMU DRIVERS
9261 M:      Joerg Roedel <joro@8bytes.org>
9262 M:      Will Deacon <will@kernel.org>
9263 L:      iommu@lists.linux-foundation.org
9264 S:      Maintained
9265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9266 F:      Documentation/devicetree/bindings/iommu/
9267 F:      Documentation/userspace-api/iommu.rst
9268 F:      drivers/iommu/
9269 F:      include/linux/iommu.h
9270 F:      include/linux/iova.h
9271 F:      include/linux/of_iommu.h
9272 F:      include/uapi/linux/iommu.h
9273
9274 IO_URING
9275 M:      Jens Axboe <axboe@kernel.dk>
9276 L:      io-uring@vger.kernel.org
9277 S:      Maintained
9278 T:      git git://git.kernel.dk/linux-block
9279 T:      git git://git.kernel.dk/liburing
9280 F:      fs/io-wq.c
9281 F:      fs/io-wq.h
9282 F:      fs/io_uring.c
9283 F:      include/uapi/linux/io_uring.h
9284
9285 IPMI SUBSYSTEM
9286 M:      Corey Minyard <minyard@acm.org>
9287 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9288 S:      Supported
9289 W:      http://openipmi.sourceforge.net/
9290 F:      Documentation/driver-api/ipmi.rst
9291 F:      Documentation/devicetree/bindings/ipmi/
9292 F:      drivers/char/ipmi/
9293 F:      include/linux/ipmi*
9294 F:      include/uapi/linux/ipmi*
9295
9296 IPS SCSI RAID DRIVER
9297 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9298 L:      linux-scsi@vger.kernel.org
9299 S:      Maintained
9300 W:      http://www.adaptec.com/
9301 F:      drivers/scsi/ips*
9302
9303 IPVS
9304 M:      Wensong Zhang <wensong@linux-vs.org>
9305 M:      Simon Horman <horms@verge.net.au>
9306 M:      Julian Anastasov <ja@ssi.bg>
9307 L:      netdev@vger.kernel.org
9308 L:      lvs-devel@vger.kernel.org
9309 S:      Maintained
9310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9312 F:      Documentation/networking/ipvs-sysctl.rst
9313 F:      include/net/ip_vs.h
9314 F:      include/uapi/linux/ip_vs.h
9315 F:      net/netfilter/ipvs/
9316
9317 IPWIRELESS DRIVER
9318 M:      Jiri Kosina <jikos@kernel.org>
9319 M:      David Sterba <dsterba@suse.com>
9320 S:      Odd Fixes
9321 F:      drivers/tty/ipwireless/
9322
9323 IPX NETWORK LAYER
9324 L:      netdev@vger.kernel.org
9325 S:      Obsolete
9326 F:      include/uapi/linux/ipx.h
9327
9328 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9329 M:      Marc Zyngier <maz@kernel.org>
9330 S:      Maintained
9331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9332 F:      Documentation/core-api/irq/irq-domain.rst
9333 F:      include/linux/irqdomain.h
9334 F:      kernel/irq/irqdomain.c
9335 F:      kernel/irq/msi.c
9336
9337 IRQ SUBSYSTEM
9338 M:      Thomas Gleixner <tglx@linutronix.de>
9339 L:      linux-kernel@vger.kernel.org
9340 S:      Maintained
9341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9342 F:      kernel/irq/
9343
9344 IRQCHIP DRIVERS
9345 M:      Thomas Gleixner <tglx@linutronix.de>
9346 M:      Marc Zyngier <maz@kernel.org>
9347 L:      linux-kernel@vger.kernel.org
9348 S:      Maintained
9349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9350 F:      Documentation/devicetree/bindings/interrupt-controller/
9351 F:      drivers/irqchip/
9352
9353 ISA
9354 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9355 S:      Maintained
9356 F:      Documentation/driver-api/isa.rst
9357 F:      drivers/base/isa.c
9358 F:      include/linux/isa.h
9359
9360 ISA RADIO MODULE
9361 M:      Hans Verkuil <hverkuil@xs4all.nl>
9362 L:      linux-media@vger.kernel.org
9363 S:      Maintained
9364 W:      https://linuxtv.org
9365 T:      git git://linuxtv.org/media_tree.git
9366 F:      drivers/media/radio/radio-isa*
9367
9368 ISAPNP
9369 M:      Jaroslav Kysela <perex@perex.cz>
9370 S:      Maintained
9371 F:      Documentation/driver-api/isapnp.rst
9372 F:      drivers/pnp/isapnp/
9373 F:      include/linux/isapnp.h
9374
9375 ISCSI
9376 M:      Lee Duncan <lduncan@suse.com>
9377 M:      Chris Leech <cleech@redhat.com>
9378 L:      open-iscsi@googlegroups.com
9379 L:      linux-scsi@vger.kernel.org
9380 S:      Maintained
9381 W:      www.open-iscsi.com
9382 F:      drivers/scsi/*iscsi*
9383 F:      include/scsi/*iscsi*
9384
9385 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9386 M:      Peter Jones <pjones@redhat.com>
9387 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9388 S:      Maintained
9389 F:      drivers/firmware/iscsi_ibft*
9390
9391 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9392 M:      Sagi Grimberg <sagi@grimberg.me>
9393 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
9394 L:      linux-rdma@vger.kernel.org
9395 S:      Supported
9396 W:      http://www.openfabrics.org
9397 W:      www.open-iscsi.org
9398 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9399 F:      drivers/infiniband/ulp/iser/
9400
9401 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9402 M:      Sagi Grimberg <sagi@grimberg.me>
9403 L:      linux-rdma@vger.kernel.org
9404 L:      target-devel@vger.kernel.org
9405 S:      Supported
9406 W:      http://www.linux-iscsi.org
9407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9408 F:      drivers/infiniband/ulp/isert
9409
9410 ISDN/CMTP OVER BLUETOOTH
9411 M:      Karsten Keil <isdn@linux-pingi.de>
9412 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9413 L:      netdev@vger.kernel.org
9414 S:      Odd Fixes
9415 W:      http://www.isdn4linux.de
9416 F:      Documentation/isdn/
9417 F:      drivers/isdn/capi/
9418 F:      include/linux/isdn/
9419 F:      include/uapi/linux/isdn/
9420 F:      net/bluetooth/cmtp/
9421
9422 ISDN/mISDN SUBSYSTEM
9423 M:      Karsten Keil <isdn@linux-pingi.de>
9424 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9425 L:      netdev@vger.kernel.org
9426 S:      Maintained
9427 W:      http://www.isdn4linux.de
9428 F:      drivers/isdn/Kconfig
9429 F:      drivers/isdn/Makefile
9430 F:      drivers/isdn/hardware/
9431 F:      drivers/isdn/mISDN/
9432
9433 IT87 HARDWARE MONITORING DRIVER
9434 M:      Jean Delvare <jdelvare@suse.com>
9435 L:      linux-hwmon@vger.kernel.org
9436 S:      Maintained
9437 F:      Documentation/hwmon/it87.rst
9438 F:      drivers/hwmon/it87.c
9439
9440 IT913X MEDIA DRIVER
9441 M:      Antti Palosaari <crope@iki.fi>
9442 L:      linux-media@vger.kernel.org
9443 S:      Maintained
9444 W:      https://linuxtv.org
9445 W:      http://palosaari.fi/linux/
9446 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9447 T:      git git://linuxtv.org/anttip/media_tree.git
9448 F:      drivers/media/tuners/it913x*
9449
9450 IVTV VIDEO4LINUX DRIVER
9451 M:      Andy Walls <awalls@md.metrocast.net>
9452 L:      linux-media@vger.kernel.org
9453 S:      Maintained
9454 W:      https://linuxtv.org
9455 T:      git git://linuxtv.org/media_tree.git
9456 F:      Documentation/admin-guide/media/ivtv*
9457 F:      drivers/media/pci/ivtv/
9458 F:      include/uapi/linux/ivtv*
9459
9460 IX2505V MEDIA DRIVER
9461 M:      Malcolm Priestley <tvboxspy@gmail.com>
9462 L:      linux-media@vger.kernel.org
9463 S:      Maintained
9464 W:      https://linuxtv.org
9465 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9466 F:      drivers/media/dvb-frontends/ix2505v*
9467
9468 JAILHOUSE HYPERVISOR INTERFACE
9469 M:      Jan Kiszka <jan.kiszka@siemens.com>
9470 L:      jailhouse-dev@googlegroups.com
9471 S:      Maintained
9472 F:      arch/x86/include/asm/jailhouse_para.h
9473 F:      arch/x86/kernel/jailhouse.c
9474
9475 JC42.4 TEMPERATURE SENSOR DRIVER
9476 M:      Guenter Roeck <linux@roeck-us.net>
9477 L:      linux-hwmon@vger.kernel.org
9478 S:      Maintained
9479 F:      Documentation/hwmon/jc42.rst
9480 F:      drivers/hwmon/jc42.c
9481
9482 JFS FILESYSTEM
9483 M:      Dave Kleikamp <shaggy@kernel.org>
9484 L:      jfs-discussion@lists.sourceforge.net
9485 S:      Maintained
9486 W:      http://jfs.sourceforge.net/
9487 T:      git git://github.com/kleikamp/linux-shaggy.git
9488 F:      Documentation/admin-guide/jfs.rst
9489 F:      fs/jfs/
9490
9491 JME NETWORK DRIVER
9492 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9493 L:      netdev@vger.kernel.org
9494 S:      Maintained
9495 F:      drivers/net/ethernet/jme.*
9496
9497 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9498 M:      David Woodhouse <dwmw2@infradead.org>
9499 M:      Richard Weinberger <richard@nod.at>
9500 L:      linux-mtd@lists.infradead.org
9501 S:      Odd Fixes
9502 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9503 T:      git git://git.infradead.org/ubifs-2.6.git
9504 F:      fs/jffs2/
9505 F:      include/uapi/linux/jffs2.h
9506
9507 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9508 M:      "Theodore Ts'o" <tytso@mit.edu>
9509 M:      Jan Kara <jack@suse.com>
9510 L:      linux-ext4@vger.kernel.org
9511 S:      Maintained
9512 F:      fs/jbd2/
9513 F:      include/linux/jbd2.h
9514
9515 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9516 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9517 L:      linux-media@vger.kernel.org
9518 S:      Maintained
9519 F:      drivers/media/platform/rcar_jpu.c
9520
9521 JSM Neo PCI based serial card
9522 L:      linux-serial@vger.kernel.org
9523 S:      Orphan
9524 F:      drivers/tty/serial/jsm/
9525
9526 K10TEMP HARDWARE MONITORING DRIVER
9527 M:      Clemens Ladisch <clemens@ladisch.de>
9528 L:      linux-hwmon@vger.kernel.org
9529 S:      Maintained
9530 F:      Documentation/hwmon/k10temp.rst
9531 F:      drivers/hwmon/k10temp.c
9532
9533 K8TEMP HARDWARE MONITORING DRIVER
9534 M:      Rudolf Marek <r.marek@assembler.cz>
9535 L:      linux-hwmon@vger.kernel.org
9536 S:      Maintained
9537 F:      Documentation/hwmon/k8temp.rst
9538 F:      drivers/hwmon/k8temp.c
9539
9540 KASAN
9541 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
9542 R:      Alexander Potapenko <glider@google.com>
9543 R:      Dmitry Vyukov <dvyukov@google.com>
9544 L:      kasan-dev@googlegroups.com
9545 S:      Maintained
9546 F:      Documentation/dev-tools/kasan.rst
9547 F:      arch/*/include/asm/kasan.h
9548 F:      arch/*/mm/kasan_init*
9549 F:      include/linux/kasan*.h
9550 F:      lib/test_kasan.c
9551 F:      mm/kasan/
9552 F:      scripts/Makefile.kasan
9553
9554 KCONFIG
9555 M:      Masahiro Yamada <masahiroy@kernel.org>
9556 L:      linux-kbuild@vger.kernel.org
9557 S:      Maintained
9558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9559 F:      Documentation/kbuild/kconfig*
9560 F:      scripts/Kconfig.include
9561 F:      scripts/kconfig/
9562
9563 KCOV
9564 R:      Dmitry Vyukov <dvyukov@google.com>
9565 R:      Andrey Konovalov <andreyknvl@google.com>
9566 L:      kasan-dev@googlegroups.com
9567 S:      Maintained
9568 F:      Documentation/dev-tools/kcov.rst
9569 F:      include/linux/kcov.h
9570 F:      include/uapi/linux/kcov.h
9571 F:      kernel/kcov.c
9572 F:      scripts/Makefile.kcov
9573
9574 KCSAN
9575 M:      Marco Elver <elver@google.com>
9576 R:      Dmitry Vyukov <dvyukov@google.com>
9577 L:      kasan-dev@googlegroups.com
9578 S:      Maintained
9579 F:      Documentation/dev-tools/kcsan.rst
9580 F:      include/linux/kcsan*.h
9581 F:      kernel/kcsan/
9582 F:      lib/Kconfig.kcsan
9583 F:      scripts/Makefile.kcsan
9584
9585 KDUMP
9586 M:      Dave Young <dyoung@redhat.com>
9587 M:      Baoquan He <bhe@redhat.com>
9588 R:      Vivek Goyal <vgoyal@redhat.com>
9589 L:      kexec@lists.infradead.org
9590 S:      Maintained
9591 W:      http://lse.sourceforge.net/kdump/
9592 F:      Documentation/admin-guide/kdump/
9593 F:      fs/proc/vmcore.c
9594 F:      include/linux/crash_core.h
9595 F:      include/linux/crash_dump.h
9596 F:      include/uapi/linux/vmcore.h
9597 F:      kernel/crash_*.c
9598
9599 KEENE FM RADIO TRANSMITTER DRIVER
9600 M:      Hans Verkuil <hverkuil@xs4all.nl>
9601 L:      linux-media@vger.kernel.org
9602 S:      Maintained
9603 W:      https://linuxtv.org
9604 T:      git git://linuxtv.org/media_tree.git
9605 F:      drivers/media/radio/radio-keene*
9606
9607 KERNEL AUTOMOUNTER
9608 M:      Ian Kent <raven@themaw.net>
9609 L:      autofs@vger.kernel.org
9610 S:      Maintained
9611 F:      fs/autofs/
9612
9613 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9614 M:      Masahiro Yamada <masahiroy@kernel.org>
9615 M:      Michal Marek <michal.lkml@markovi.net>
9616 L:      linux-kbuild@vger.kernel.org
9617 S:      Maintained
9618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9619 F:      Documentation/kbuild/
9620 F:      Makefile
9621 F:      scripts/*vmlinux*
9622 F:      scripts/Kbuild*
9623 F:      scripts/Makefile*
9624 F:      scripts/basic/
9625 F:      scripts/mk*
9626 F:      scripts/mod/
9627 F:      scripts/package/
9628
9629 KERNEL JANITORS
9630 L:      kernel-janitors@vger.kernel.org
9631 S:      Odd Fixes
9632 W:      http://kernelnewbies.org/KernelJanitors
9633
9634 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9635 M:      "J. Bruce Fields" <bfields@fieldses.org>
9636 M:      Chuck Lever <chuck.lever@oracle.com>
9637 L:      linux-nfs@vger.kernel.org
9638 S:      Supported
9639 W:      http://nfs.sourceforge.net/
9640 T:      git git://linux-nfs.org/~bfields/linux.git
9641 F:      fs/lockd/
9642 F:      fs/nfs_common/
9643 F:      fs/nfsd/
9644 F:      include/linux/lockd/
9645 F:      include/linux/sunrpc/
9646 F:      include/uapi/linux/nfsd/
9647 F:      include/uapi/linux/sunrpc/
9648 F:      net/sunrpc/
9649 F:      Documentation/filesystems/nfs/
9650
9651 KERNEL SELFTEST FRAMEWORK
9652 M:      Shuah Khan <shuah@kernel.org>
9653 M:      Shuah Khan <skhan@linuxfoundation.org>
9654 L:      linux-kselftest@vger.kernel.org
9655 S:      Maintained
9656 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9658 F:      Documentation/dev-tools/kselftest*
9659 F:      tools/testing/selftests/
9660
9661 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9662 M:      Brendan Higgins <brendanhiggins@google.com>
9663 L:      linux-kselftest@vger.kernel.org
9664 L:      kunit-dev@googlegroups.com
9665 S:      Maintained
9666 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9667 F:      Documentation/dev-tools/kunit/
9668 F:      include/kunit/
9669 F:      lib/kunit/
9670 F:      tools/testing/kunit/
9671
9672 KERNEL USERMODE HELPER
9673 M:      Luis Chamberlain <mcgrof@kernel.org>
9674 L:      linux-kernel@vger.kernel.org
9675 S:      Maintained
9676 F:      include/linux/umh.h
9677 F:      kernel/umh.c
9678
9679 KERNEL VIRTUAL MACHINE (KVM)
9680 M:      Paolo Bonzini <pbonzini@redhat.com>
9681 L:      kvm@vger.kernel.org
9682 S:      Supported
9683 W:      http://www.linux-kvm.org
9684 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9685 F:      Documentation/virt/kvm/
9686 F:      include/asm-generic/kvm*
9687 F:      include/kvm/iodev.h
9688 F:      include/linux/kvm*
9689 F:      include/trace/events/kvm.h
9690 F:      include/uapi/asm-generic/kvm*
9691 F:      include/uapi/linux/kvm*
9692 F:      tools/kvm/
9693 F:      tools/testing/selftests/kvm/
9694 F:      virt/kvm/*
9695
9696 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9697 M:      Marc Zyngier <maz@kernel.org>
9698 R:      James Morse <james.morse@arm.com>
9699 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
9700 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
9701 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9702 L:      kvmarm@lists.cs.columbia.edu
9703 S:      Maintained
9704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9705 F:      arch/arm64/include/asm/kvm*
9706 F:      arch/arm64/include/uapi/asm/kvm*
9707 F:      arch/arm64/kvm/
9708 F:      include/kvm/arm_*
9709
9710 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9711 M:      Huacai Chen <chenhuacai@kernel.org>
9712 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
9713 L:      linux-mips@vger.kernel.org
9714 L:      kvm@vger.kernel.org
9715 S:      Maintained
9716 F:      arch/mips/include/asm/kvm*
9717 F:      arch/mips/include/uapi/asm/kvm*
9718 F:      arch/mips/kvm/
9719
9720 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9721 M:      Paul Mackerras <paulus@ozlabs.org>
9722 L:      kvm-ppc@vger.kernel.org
9723 S:      Supported
9724 W:      http://www.linux-kvm.org/
9725 T:      git git://github.com/agraf/linux-2.6.git
9726 F:      arch/powerpc/include/asm/kvm*
9727 F:      arch/powerpc/include/uapi/asm/kvm*
9728 F:      arch/powerpc/kernel/kvm*
9729 F:      arch/powerpc/kvm/
9730
9731 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9732 M:      Christian Borntraeger <borntraeger@de.ibm.com>
9733 M:      Janosch Frank <frankja@linux.ibm.com>
9734 R:      David Hildenbrand <david@redhat.com>
9735 R:      Cornelia Huck <cohuck@redhat.com>
9736 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
9737 L:      kvm@vger.kernel.org
9738 S:      Supported
9739 W:      http://www.ibm.com/developerworks/linux/linux390/
9740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9741 F:      Documentation/virt/kvm/s390*
9742 F:      arch/s390/include/asm/gmap.h
9743 F:      arch/s390/include/asm/kvm*
9744 F:      arch/s390/include/uapi/asm/kvm*
9745 F:      arch/s390/kernel/uv.c
9746 F:      arch/s390/kvm/
9747 F:      arch/s390/mm/gmap.c
9748 F:      tools/testing/selftests/kvm/*/s390x/
9749 F:      tools/testing/selftests/kvm/s390x/
9750
9751 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9752 M:      Paolo Bonzini <pbonzini@redhat.com>
9753 R:      Sean Christopherson <sean.j.christopherson@intel.com>
9754 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
9755 R:      Wanpeng Li <wanpengli@tencent.com>
9756 R:      Jim Mattson <jmattson@google.com>
9757 R:      Joerg Roedel <joro@8bytes.org>
9758 L:      kvm@vger.kernel.org
9759 S:      Supported
9760 W:      http://www.linux-kvm.org
9761 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9762 F:      arch/x86/include/asm/kvm*
9763 F:      arch/x86/include/asm/pvclock-abi.h
9764 F:      arch/x86/include/asm/svm.h
9765 F:      arch/x86/include/asm/vmx*.h
9766 F:      arch/x86/include/uapi/asm/kvm*
9767 F:      arch/x86/include/uapi/asm/svm.h
9768 F:      arch/x86/include/uapi/asm/vmx.h
9769 F:      arch/x86/kernel/kvm.c
9770 F:      arch/x86/kernel/kvmclock.c
9771 F:      arch/x86/kvm/
9772 F:      arch/x86/kvm/*/
9773
9774 KERNFS
9775 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9776 M:      Tejun Heo <tj@kernel.org>
9777 S:      Supported
9778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9779 F:      fs/kernfs/
9780 F:      include/linux/kernfs.h
9781
9782 KEXEC
9783 M:      Eric Biederman <ebiederm@xmission.com>
9784 L:      kexec@lists.infradead.org
9785 S:      Maintained
9786 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9787 F:      include/linux/kexec.h
9788 F:      include/uapi/linux/kexec.h
9789 F:      kernel/kexec*
9790
9791 KEYS-ENCRYPTED
9792 M:      Mimi Zohar <zohar@linux.ibm.com>
9793 L:      linux-integrity@vger.kernel.org
9794 L:      keyrings@vger.kernel.org
9795 S:      Supported
9796 F:      Documentation/security/keys/trusted-encrypted.rst
9797 F:      include/keys/encrypted-type.h
9798 F:      security/keys/encrypted-keys/
9799
9800 KEYS-TRUSTED
9801 M:      James Bottomley <jejb@linux.ibm.com>
9802 M:      Jarkko Sakkinen <jarkko@kernel.org>
9803 M:      Mimi Zohar <zohar@linux.ibm.com>
9804 L:      linux-integrity@vger.kernel.org
9805 L:      keyrings@vger.kernel.org
9806 S:      Supported
9807 F:      Documentation/security/keys/trusted-encrypted.rst
9808 F:      include/keys/trusted-type.h
9809 F:      include/keys/trusted_tpm.h
9810 F:      security/keys/trusted-keys/
9811
9812 KEYS/KEYRINGS
9813 M:      David Howells <dhowells@redhat.com>
9814 M:      Jarkko Sakkinen <jarkko@kernel.org>
9815 L:      keyrings@vger.kernel.org
9816 S:      Maintained
9817 F:      Documentation/security/keys/core.rst
9818 F:      include/keys/
9819 F:      include/linux/key-type.h
9820 F:      include/linux/key.h
9821 F:      include/linux/keyctl.h
9822 F:      include/uapi/linux/keyctl.h
9823 F:      security/keys/
9824
9825 KFIFO
9826 M:      Stefani Seibold <stefani@seibold.net>
9827 S:      Maintained
9828 F:      include/linux/kfifo.h
9829 F:      lib/kfifo.c
9830 F:      samples/kfifo/
9831
9832 KGDB / KDB /debug_core
9833 M:      Jason Wessel <jason.wessel@windriver.com>
9834 M:      Daniel Thompson <daniel.thompson@linaro.org>
9835 R:      Douglas Anderson <dianders@chromium.org>
9836 L:      kgdb-bugreport@lists.sourceforge.net
9837 S:      Maintained
9838 W:      http://kgdb.wiki.kernel.org/
9839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9840 F:      Documentation/dev-tools/kgdb.rst
9841 F:      drivers/misc/kgdbts.c
9842 F:      drivers/tty/serial/kgdboc.c
9843 F:      include/linux/kdb.h
9844 F:      include/linux/kgdb.h
9845 F:      kernel/debug/
9846
9847 KHADAS MCU MFD DRIVER
9848 M:      Neil Armstrong <narmstrong@baylibre.com>
9849 L:      linux-amlogic@lists.infradead.org
9850 S:      Maintained
9851 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
9852 F:      drivers/mfd/khadas-mcu.c
9853 F:      include/linux/mfd/khadas-mcu.h
9854 F:      drivers/thermal/khadas_mcu_fan.c
9855
9856 KMEMLEAK
9857 M:      Catalin Marinas <catalin.marinas@arm.com>
9858 S:      Maintained
9859 F:      Documentation/dev-tools/kmemleak.rst
9860 F:      include/linux/kmemleak.h
9861 F:      mm/kmemleak.c
9862 F:      samples/kmemleak/kmemleak-test.c
9863
9864 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9865 M:      Luis Chamberlain <mcgrof@kernel.org>
9866 L:      linux-kernel@vger.kernel.org
9867 S:      Maintained
9868 F:      include/linux/kmod.h
9869 F:      kernel/kmod.c
9870 F:      lib/test_kmod.c
9871 F:      tools/testing/selftests/kmod/
9872
9873 KPROBES
9874 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9875 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9876 M:      "David S. Miller" <davem@davemloft.net>
9877 M:      Masami Hiramatsu <mhiramat@kernel.org>
9878 S:      Maintained
9879 F:      Documentation/trace/kprobes.rst
9880 F:      include/asm-generic/kprobes.h
9881 F:      include/linux/kprobes.h
9882 F:      kernel/kprobes.c
9883
9884 KS0108 LCD CONTROLLER DRIVER
9885 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9886 S:      Maintained
9887 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9888 F:      drivers/auxdisplay/ks0108.c
9889 F:      include/linux/ks0108.h
9890
9891 KTD253 BACKLIGHT DRIVER
9892 M:      Linus Walleij <linus.walleij@linaro.org>
9893 S:      Maintained
9894 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
9895 F:      drivers/video/backlight/ktd253-backlight.c
9896
9897 L3MDEV
9898 M:      David Ahern <dsahern@kernel.org>
9899 L:      netdev@vger.kernel.org
9900 S:      Maintained
9901 F:      include/net/l3mdev.h
9902 F:      net/l3mdev
9903
9904 L7 BPF FRAMEWORK
9905 M:      John Fastabend <john.fastabend@gmail.com>
9906 M:      Daniel Borkmann <daniel@iogearbox.net>
9907 M:      Jakub Sitnicki <jakub@cloudflare.com>
9908 M:      Lorenz Bauer <lmb@cloudflare.com>
9909 L:      netdev@vger.kernel.org
9910 L:      bpf@vger.kernel.org
9911 S:      Maintained
9912 F:      include/linux/skmsg.h
9913 F:      net/core/skmsg.c
9914 F:      net/core/sock_map.c
9915 F:      net/ipv4/tcp_bpf.c
9916 F:      net/ipv4/udp_bpf.c
9917
9918 LANTIQ / INTEL Ethernet drivers
9919 M:      Hauke Mehrtens <hauke@hauke-m.de>
9920 L:      netdev@vger.kernel.org
9921 S:      Maintained
9922 F:      drivers/net/dsa/lantiq_gswip.c
9923 F:      drivers/net/dsa/lantiq_pce.h
9924 F:      drivers/net/ethernet/lantiq_xrx200.c
9925 F:      net/dsa/tag_gswip.c
9926
9927 LANTIQ MIPS ARCHITECTURE
9928 M:      John Crispin <john@phrozen.org>
9929 L:      linux-mips@vger.kernel.org
9930 S:      Maintained
9931 F:      arch/mips/lantiq
9932 F:      drivers/soc/lantiq
9933
9934 LASI 53c700 driver for PARISC
9935 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9936 L:      linux-scsi@vger.kernel.org
9937 S:      Maintained
9938 F:      Documentation/scsi/53c700.rst
9939 F:      drivers/scsi/53c700*
9940
9941 LEAKING_ADDRESSES
9942 M:      Tobin C. Harding <me@tobin.cc>
9943 M:      Tycho Andersen <tycho@tycho.pizza>
9944 L:      linux-hardening@vger.kernel.org
9945 S:      Maintained
9946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9947 F:      scripts/leaking_addresses.pl
9948
9949 LED SUBSYSTEM
9950 M:      Pavel Machek <pavel@ucw.cz>
9951 R:      Dan Murphy <dmurphy@ti.com>
9952 L:      linux-leds@vger.kernel.org
9953 S:      Maintained
9954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9955 F:      Documentation/devicetree/bindings/leds/
9956 F:      drivers/leds/
9957 F:      include/linux/leds.h
9958
9959 LEGACY EEPROM DRIVER
9960 M:      Jean Delvare <jdelvare@suse.com>
9961 S:      Maintained
9962 F:      Documentation/misc-devices/eeprom.rst
9963 F:      drivers/misc/eeprom/eeprom.c
9964
9965 LEGO MINDSTORMS EV3
9966 R:      David Lechner <david@lechnology.com>
9967 S:      Maintained
9968 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9969 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9970 F:      drivers/power/supply/lego_ev3_battery.c
9971
9972 LEGO USB Tower driver
9973 M:      Juergen Stuber <starblue@users.sourceforge.net>
9974 L:      legousb-devel@lists.sourceforge.net
9975 S:      Maintained
9976 W:      http://legousb.sourceforge.net/
9977 F:      drivers/usb/misc/legousbtower.c
9978
9979 LG LAPTOP EXTRAS
9980 M:      Matan Ziv-Av <matan@svgalib.org>
9981 L:      platform-driver-x86@vger.kernel.org
9982 S:      Maintained
9983 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9984 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9985 F:      drivers/platform/x86/lg-laptop.c
9986
9987 LG2160 MEDIA DRIVER
9988 M:      Michael Krufky <mkrufky@linuxtv.org>
9989 L:      linux-media@vger.kernel.org
9990 S:      Maintained
9991 W:      https://linuxtv.org
9992 W:      http://github.com/mkrufky
9993 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9994 T:      git git://linuxtv.org/mkrufky/tuners.git
9995 F:      drivers/media/dvb-frontends/lg2160.*
9996
9997 LGDT3305 MEDIA DRIVER
9998 M:      Michael Krufky <mkrufky@linuxtv.org>
9999 L:      linux-media@vger.kernel.org
10000 S:      Maintained
10001 W:      https://linuxtv.org
10002 W:      http://github.com/mkrufky
10003 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10004 T:      git git://linuxtv.org/mkrufky/tuners.git
10005 F:      drivers/media/dvb-frontends/lgdt3305.*
10006
10007 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10008 M:      Viresh Kumar <vireshk@kernel.org>
10009 L:      linux-ide@vger.kernel.org
10010 S:      Maintained
10011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10012 F:      drivers/ata/pata_arasan_cf.c
10013 F:      include/linux/pata_arasan_cf_data.h
10014
10015 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10016 M:      Linus Walleij <linus.walleij@linaro.org>
10017 L:      linux-ide@vger.kernel.org
10018 S:      Maintained
10019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10020 F:      drivers/ata/pata_ftide010.c
10021 F:      drivers/ata/sata_gemini.c
10022 F:      drivers/ata/sata_gemini.h
10023
10024 LIBATA SATA AHCI PLATFORM devices support
10025 M:      Hans de Goede <hdegoede@redhat.com>
10026 M:      Jens Axboe <axboe@kernel.dk>
10027 L:      linux-ide@vger.kernel.org
10028 S:      Maintained
10029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10030 F:      drivers/ata/ahci_platform.c
10031 F:      drivers/ata/libahci_platform.c
10032 F:      include/linux/ahci_platform.h
10033
10034 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10035 M:      Mikael Pettersson <mikpelinux@gmail.com>
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/sata_promise.*
10040
10041 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10042 M:      Jens Axboe <axboe@kernel.dk>
10043 L:      linux-ide@vger.kernel.org
10044 S:      Maintained
10045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10046 F:      Documentation/devicetree/bindings/ata/
10047 F:      drivers/ata/
10048 F:      include/linux/ata.h
10049 F:      include/linux/libata.h
10050
10051 LIBLOCKDEP
10052 M:      Sasha Levin <alexander.levin@microsoft.com>
10053 S:      Maintained
10054 F:      tools/lib/lockdep/
10055
10056 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10057 M:      Dan Williams <dan.j.williams@intel.com>
10058 M:      Vishal Verma <vishal.l.verma@intel.com>
10059 M:      Dave Jiang <dave.jiang@intel.com>
10060 L:      linux-nvdimm@lists.01.org
10061 S:      Supported
10062 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10063 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10064 F:      drivers/nvdimm/blk.c
10065 F:      drivers/nvdimm/region_devs.c
10066
10067 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10068 M:      Vishal Verma <vishal.l.verma@intel.com>
10069 M:      Dan Williams <dan.j.williams@intel.com>
10070 M:      Dave Jiang <dave.jiang@intel.com>
10071 L:      linux-nvdimm@lists.01.org
10072 S:      Supported
10073 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10074 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10075 F:      drivers/nvdimm/btt*
10076
10077 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10078 M:      Dan Williams <dan.j.williams@intel.com>
10079 M:      Vishal Verma <vishal.l.verma@intel.com>
10080 M:      Dave Jiang <dave.jiang@intel.com>
10081 L:      linux-nvdimm@lists.01.org
10082 S:      Supported
10083 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10084 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10085 F:      drivers/nvdimm/pmem*
10086
10087 LIBNVDIMM: DEVICETREE BINDINGS
10088 M:      Oliver O'Halloran <oohall@gmail.com>
10089 L:      linux-nvdimm@lists.01.org
10090 S:      Supported
10091 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10092 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10093 F:      drivers/nvdimm/of_pmem.c
10094
10095 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10096 M:      Dan Williams <dan.j.williams@intel.com>
10097 M:      Vishal Verma <vishal.l.verma@intel.com>
10098 M:      Dave Jiang <dave.jiang@intel.com>
10099 M:      Ira Weiny <ira.weiny@intel.com>
10100 L:      linux-nvdimm@lists.01.org
10101 S:      Supported
10102 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10103 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10105 F:      drivers/acpi/nfit/*
10106 F:      drivers/nvdimm/*
10107 F:      include/linux/libnvdimm.h
10108 F:      include/linux/nd.h
10109 F:      include/uapi/linux/ndctl.h
10110 F:      tools/testing/nvdimm/
10111
10112 LICENSES and SPDX stuff
10113 M:      Thomas Gleixner <tglx@linutronix.de>
10114 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10115 L:      linux-spdx@vger.kernel.org
10116 S:      Maintained
10117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10118 F:      COPYING
10119 F:      Documentation/process/license-rules.rst
10120 F:      LICENSES/
10121 F:      scripts/spdxcheck-test.sh
10122 F:      scripts/spdxcheck.py
10123
10124 LIGHTNVM PLATFORM SUPPORT
10125 M:      Matias Bjorling <mb@lightnvm.io>
10126 L:      linux-block@vger.kernel.org
10127 S:      Maintained
10128 W:      http://github/OpenChannelSSD
10129 F:      drivers/lightnvm/
10130 F:      include/linux/lightnvm.h
10131 F:      include/uapi/linux/lightnvm.h
10132
10133 LINEAR RANGES HELPERS
10134 M:      Mark Brown <broonie@kernel.org>
10135 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10136 F:      lib/linear_ranges.c
10137 F:      lib/test_linear_ranges.c
10138 F:      include/linux/linear_range.h
10139
10140 LINUX FOR POWER MACINTOSH
10141 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10142 L:      linuxppc-dev@lists.ozlabs.org
10143 S:      Odd Fixes
10144 F:      arch/powerpc/platforms/powermac/
10145 F:      drivers/macintosh/
10146
10147 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10148 M:      Michael Ellerman <mpe@ellerman.id.au>
10149 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10150 R:      Paul Mackerras <paulus@samba.org>
10151 L:      linuxppc-dev@lists.ozlabs.org
10152 S:      Supported
10153 W:      https://github.com/linuxppc/wiki/wiki
10154 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10156 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10157 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10158 F:      Documentation/devicetree/bindings/powerpc/
10159 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10160 F:      Documentation/powerpc/
10161 F:      arch/powerpc/
10162 F:      drivers/*/*/*pasemi*
10163 F:      drivers/*/*pasemi*
10164 F:      drivers/char/tpm/tpm_ibmvtpm*
10165 F:      drivers/crypto/nx/
10166 F:      drivers/crypto/vmx/
10167 F:      drivers/i2c/busses/i2c-opal.c
10168 F:      drivers/net/ethernet/ibm/ibmveth.*
10169 F:      drivers/net/ethernet/ibm/ibmvnic.*
10170 F:      drivers/pci/hotplug/pnv_php.c
10171 F:      drivers/pci/hotplug/rpa*
10172 F:      drivers/rtc/rtc-opal.c
10173 F:      drivers/scsi/ibmvscsi/
10174 F:      drivers/tty/hvc/hvc_opal.c
10175 F:      drivers/watchdog/wdrtas.c
10176 F:      tools/testing/selftests/powerpc
10177 N:      /pmac
10178 N:      powermac
10179 N:      powernv
10180 N:      [^a-z0-9]ps3
10181 N:      pseries
10182
10183 LINUX FOR POWERPC EMBEDDED MPC5XXX
10184 M:      Anatolij Gustschin <agust@denx.de>
10185 L:      linuxppc-dev@lists.ozlabs.org
10186 S:      Odd Fixes
10187 F:      arch/powerpc/platforms/512x/
10188 F:      arch/powerpc/platforms/52xx/
10189
10190 LINUX FOR POWERPC EMBEDDED PPC4XX
10191 L:      linuxppc-dev@lists.ozlabs.org
10192 S:      Orphan
10193 F:      arch/powerpc/platforms/40x/
10194 F:      arch/powerpc/platforms/44x/
10195
10196 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10197 M:      Scott Wood <oss@buserror.net>
10198 L:      linuxppc-dev@lists.ozlabs.org
10199 S:      Odd fixes
10200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10201 F:      Documentation/devicetree/bindings/powerpc/fsl/
10202 F:      arch/powerpc/platforms/83xx/
10203 F:      arch/powerpc/platforms/85xx/
10204
10205 LINUX FOR POWERPC EMBEDDED PPC8XX
10206 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10207 L:      linuxppc-dev@lists.ozlabs.org
10208 S:      Maintained
10209 F:      arch/powerpc/platforms/8xx/
10210
10211 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10212 M:      Kees Cook <keescook@chromium.org>
10213 S:      Maintained
10214 F:      drivers/misc/lkdtm/*
10215 F:      tools/testing/selftests/lkdtm/*
10216
10217 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10218 M:      Alan Stern <stern@rowland.harvard.edu>
10219 M:      Andrea Parri <parri.andrea@gmail.com>
10220 M:      Will Deacon <will@kernel.org>
10221 M:      Peter Zijlstra <peterz@infradead.org>
10222 M:      Boqun Feng <boqun.feng@gmail.com>
10223 M:      Nicholas Piggin <npiggin@gmail.com>
10224 M:      David Howells <dhowells@redhat.com>
10225 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10226 M:      Luc Maranget <luc.maranget@inria.fr>
10227 M:      "Paul E. McKenney" <paulmck@kernel.org>
10228 R:      Akira Yokosawa <akiyks@gmail.com>
10229 R:      Daniel Lustig <dlustig@nvidia.com>
10230 R:      Joel Fernandes <joel@joelfernandes.org>
10231 L:      linux-kernel@vger.kernel.org
10232 L:      linux-arch@vger.kernel.org
10233 S:      Supported
10234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10235 F:      Documentation/atomic_bitops.txt
10236 F:      Documentation/atomic_t.txt
10237 F:      Documentation/core-api/atomic_ops.rst
10238 F:      Documentation/core-api/refcount-vs-atomic.rst
10239 F:      Documentation/litmus-tests/
10240 F:      Documentation/memory-barriers.txt
10241 F:      tools/memory-model/
10242
10243 LIS3LV02D ACCELEROMETER DRIVER
10244 M:      Eric Piel <eric.piel@tremplin-utc.net>
10245 S:      Maintained
10246 F:      Documentation/misc-devices/lis3lv02d.rst
10247 F:      drivers/misc/lis3lv02d/
10248 F:      drivers/platform/x86/hp_accel.c
10249
10250 LIST KUNIT TEST
10251 M:      David Gow <davidgow@google.com>
10252 L:      linux-kselftest@vger.kernel.org
10253 L:      kunit-dev@googlegroups.com
10254 S:      Maintained
10255 F:      lib/list-test.c
10256
10257 LIVE PATCHING
10258 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10259 M:      Jiri Kosina <jikos@kernel.org>
10260 M:      Miroslav Benes <mbenes@suse.cz>
10261 M:      Petr Mladek <pmladek@suse.com>
10262 R:      Joe Lawrence <joe.lawrence@redhat.com>
10263 L:      live-patching@vger.kernel.org
10264 S:      Maintained
10265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10266 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10267 F:      Documentation/livepatch/
10268 F:      arch/powerpc/include/asm/livepatch.h
10269 F:      arch/s390/include/asm/livepatch.h
10270 F:      arch/x86/include/asm/livepatch.h
10271 F:      include/linux/livepatch.h
10272 F:      kernel/livepatch/
10273 F:      lib/livepatch/
10274 F:      samples/livepatch/
10275 F:      tools/testing/selftests/livepatch/
10276
10277 LLC (802.2)
10278 L:      netdev@vger.kernel.org
10279 S:      Odd fixes
10280 F:      include/linux/llc.h
10281 F:      include/net/llc*
10282 F:      include/uapi/linux/llc.h
10283 F:      net/llc/
10284
10285 LM73 HARDWARE MONITOR DRIVER
10286 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10287 L:      linux-hwmon@vger.kernel.org
10288 S:      Maintained
10289 F:      drivers/hwmon/lm73.c
10290
10291 LM78 HARDWARE MONITOR DRIVER
10292 M:      Jean Delvare <jdelvare@suse.com>
10293 L:      linux-hwmon@vger.kernel.org
10294 S:      Maintained
10295 F:      Documentation/hwmon/lm78.rst
10296 F:      drivers/hwmon/lm78.c
10297
10298 LM83 HARDWARE MONITOR DRIVER
10299 M:      Jean Delvare <jdelvare@suse.com>
10300 L:      linux-hwmon@vger.kernel.org
10301 S:      Maintained
10302 F:      Documentation/hwmon/lm83.rst
10303 F:      drivers/hwmon/lm83.c
10304
10305 LM90 HARDWARE MONITOR DRIVER
10306 M:      Jean Delvare <jdelvare@suse.com>
10307 L:      linux-hwmon@vger.kernel.org
10308 S:      Maintained
10309 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10310 F:      Documentation/hwmon/lm90.rst
10311 F:      drivers/hwmon/lm90.c
10312 F:      include/dt-bindings/thermal/lm90.h
10313
10314 LM95234 HARDWARE MONITOR DRIVER
10315 M:      Guenter Roeck <linux@roeck-us.net>
10316 L:      linux-hwmon@vger.kernel.org
10317 S:      Maintained
10318 F:      Documentation/hwmon/lm95234.rst
10319 F:      drivers/hwmon/lm95234.c
10320
10321 LME2510 MEDIA DRIVER
10322 M:      Malcolm Priestley <tvboxspy@gmail.com>
10323 L:      linux-media@vger.kernel.org
10324 S:      Maintained
10325 W:      https://linuxtv.org
10326 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10327 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10328
10329 LOADPIN SECURITY MODULE
10330 M:      Kees Cook <keescook@chromium.org>
10331 S:      Supported
10332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10333 F:      Documentation/admin-guide/LSM/LoadPin.rst
10334 F:      security/loadpin/
10335
10336 LOCKING PRIMITIVES
10337 M:      Peter Zijlstra <peterz@infradead.org>
10338 M:      Ingo Molnar <mingo@redhat.com>
10339 M:      Will Deacon <will@kernel.org>
10340 L:      linux-kernel@vger.kernel.org
10341 S:      Maintained
10342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10343 F:      Documentation/locking/
10344 F:      arch/*/include/asm/spinlock*.h
10345 F:      include/linux/lockdep.h
10346 F:      include/linux/mutex*.h
10347 F:      include/linux/rwlock*.h
10348 F:      include/linux/rwsem*.h
10349 F:      include/linux/seqlock.h
10350 F:      include/linux/spinlock*.h
10351 F:      kernel/locking/
10352 F:      lib/locking*.[ch]
10353 X:      kernel/locking/locktorture.c
10354
10355 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10356 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
10357 L:      linux-ntfs-dev@lists.sourceforge.net
10358 S:      Maintained
10359 W:      http://www.linux-ntfs.org/content/view/19/37/
10360 F:      Documentation/admin-guide/ldm.rst
10361 F:      block/partitions/ldm.*
10362
10363 LOGITECH HID GAMING KEYBOARDS
10364 M:      Hans de Goede <hdegoede@redhat.com>
10365 L:      linux-input@vger.kernel.org
10366 S:      Maintained
10367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10368 F:      drivers/hid/hid-lg-g15.c
10369
10370 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10371 M:      Sathya Prakash <sathya.prakash@broadcom.com>
10372 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10373 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10374 L:      MPT-FusionLinux.pdl@broadcom.com
10375 L:      linux-scsi@vger.kernel.org
10376 S:      Supported
10377 W:      http://www.avagotech.com/support/
10378 F:      drivers/message/fusion/
10379 F:      drivers/scsi/mpt3sas/
10380
10381 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10382 M:      Matthew Wilcox <willy@infradead.org>
10383 L:      linux-scsi@vger.kernel.org
10384 S:      Maintained
10385 F:      drivers/scsi/sym53c8xx_2/
10386
10387 LTC1660 DAC DRIVER
10388 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10389 L:      linux-iio@vger.kernel.org
10390 S:      Maintained
10391 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10392 F:      drivers/iio/dac/ltc1660.c
10393
10394 LTC2947 HARDWARE MONITOR DRIVER
10395 M:      Nuno Sá <nuno.sa@analog.com>
10396 L:      linux-hwmon@vger.kernel.org
10397 S:      Supported
10398 W:      http://ez.analog.com/community/linux-device-drivers
10399 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10400 F:      drivers/hwmon/ltc2947-core.c
10401 F:      drivers/hwmon/ltc2947-i2c.c
10402 F:      drivers/hwmon/ltc2947-spi.c
10403 F:      drivers/hwmon/ltc2947.h
10404
10405 LTC2983 IIO TEMPERATURE DRIVER
10406 M:      Nuno Sá <nuno.sa@analog.com>
10407 L:      linux-iio@vger.kernel.org
10408 S:      Supported
10409 W:      http://ez.analog.com/community/linux-device-drivers
10410 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10411 F:      drivers/iio/temperature/ltc2983.c
10412
10413 LTC4261 HARDWARE MONITOR DRIVER
10414 M:      Guenter Roeck <linux@roeck-us.net>
10415 L:      linux-hwmon@vger.kernel.org
10416 S:      Maintained
10417 F:      Documentation/hwmon/ltc4261.rst
10418 F:      drivers/hwmon/ltc4261.c
10419
10420 LTC4306 I2C MULTIPLEXER DRIVER
10421 M:      Michael Hennerich <michael.hennerich@analog.com>
10422 L:      linux-i2c@vger.kernel.org
10423 S:      Supported
10424 W:      http://ez.analog.com/community/linux-device-drivers
10425 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10426 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10427
10428 LTP (Linux Test Project)
10429 M:      Mike Frysinger <vapier@gentoo.org>
10430 M:      Cyril Hrubis <chrubis@suse.cz>
10431 M:      Wanlong Gao <wanlong.gao@gmail.com>
10432 M:      Jan Stancek <jstancek@redhat.com>
10433 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10434 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
10435 L:      ltp@lists.linux.it (subscribers-only)
10436 S:      Maintained
10437 W:      http://linux-test-project.github.io/
10438 T:      git git://github.com/linux-test-project/ltp.git
10439
10440 LYNX PCS MODULE
10441 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
10442 L:      netdev@vger.kernel.org
10443 S:      Supported
10444 F:      drivers/net/pcs/pcs-lynx.c
10445 F:      include/linux/pcs-lynx.h
10446
10447 M68K ARCHITECTURE
10448 M:      Geert Uytterhoeven <geert@linux-m68k.org>
10449 L:      linux-m68k@lists.linux-m68k.org
10450 S:      Maintained
10451 W:      http://www.linux-m68k.org/
10452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10453 F:      arch/m68k/
10454 F:      drivers/zorro/
10455
10456 M68K ON APPLE MACINTOSH
10457 M:      Joshua Thompson <funaho@jurai.org>
10458 L:      linux-m68k@lists.linux-m68k.org
10459 S:      Maintained
10460 W:      http://www.mac.linux-m68k.org/
10461 F:      arch/m68k/mac/
10462 F:      drivers/macintosh/adb-iop.c
10463 F:      drivers/macintosh/via-macii.c
10464
10465 M68K ON HP9000/300
10466 M:      Philip Blundell <philb@gnu.org>
10467 S:      Maintained
10468 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10469 F:      arch/m68k/hp300/
10470
10471 M88DS3103 MEDIA DRIVER
10472 M:      Antti Palosaari <crope@iki.fi>
10473 L:      linux-media@vger.kernel.org
10474 S:      Maintained
10475 W:      https://linuxtv.org
10476 W:      http://palosaari.fi/linux/
10477 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10478 T:      git git://linuxtv.org/anttip/media_tree.git
10479 F:      drivers/media/dvb-frontends/m88ds3103*
10480
10481 M88RS2000 MEDIA DRIVER
10482 M:      Malcolm Priestley <tvboxspy@gmail.com>
10483 L:      linux-media@vger.kernel.org
10484 S:      Maintained
10485 W:      https://linuxtv.org
10486 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10487 F:      drivers/media/dvb-frontends/m88rs2000*
10488
10489 MA901 MASTERKIT USB FM RADIO DRIVER
10490 M:      Alexey Klimov <klimov.linux@gmail.com>
10491 L:      linux-media@vger.kernel.org
10492 S:      Maintained
10493 T:      git git://linuxtv.org/media_tree.git
10494 F:      drivers/media/radio/radio-ma901.c
10495
10496 MAC80211
10497 M:      Johannes Berg <johannes@sipsolutions.net>
10498 L:      linux-wireless@vger.kernel.org
10499 S:      Maintained
10500 W:      https://wireless.wiki.kernel.org/
10501 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10503 F:      Documentation/networking/mac80211-injection.rst
10504 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10505 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10506 F:      include/net/mac80211.h
10507 F:      net/mac80211/
10508
10509 MAILBOX API
10510 M:      Jassi Brar <jassisinghbrar@gmail.com>
10511 L:      linux-kernel@vger.kernel.org
10512 S:      Maintained
10513 F:      drivers/mailbox/
10514 F:      include/linux/mailbox_client.h
10515 F:      include/linux/mailbox_controller.h
10516
10517 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10518 M:      Michael Kerrisk <mtk.manpages@gmail.com>
10519 L:      linux-man@vger.kernel.org
10520 S:      Maintained
10521 W:      http://www.kernel.org/doc/man-pages
10522
10523 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10524 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
10525 L:      linux-mips@vger.kernel.org
10526 S:      Maintained
10527 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10528
10529 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10530 M:      Andrew Lunn <andrew@lunn.ch>
10531 M:      Vivien Didelot <vivien.didelot@gmail.com>
10532 L:      netdev@vger.kernel.org
10533 S:      Maintained
10534 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10535 F:      Documentation/networking/devlink/mv88e6xxx.rst
10536 F:      drivers/net/dsa/mv88e6xxx/
10537 F:      include/linux/platform_data/mv88e6xxx.h
10538
10539 MARVELL ARMADA 3700 PHY DRIVERS
10540 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10541 S:      Maintained
10542 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10543 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10544 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10545 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10546
10547 MARVELL ARMADA DRM SUPPORT
10548 M:      Russell King <linux@armlinux.org.uk>
10549 S:      Maintained
10550 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10551 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10552 F:      Documentation/devicetree/bindings/display/armada/
10553 F:      drivers/gpu/drm/armada/
10554 F:      include/uapi/drm/armada_drm.h
10555
10556 MARVELL CRYPTO DRIVER
10557 M:      Boris Brezillon <bbrezillon@kernel.org>
10558 M:      Arnaud Ebalard <arno@natisbad.org>
10559 M:      Srujana Challa <schalla@marvell.com>
10560 L:      linux-crypto@vger.kernel.org
10561 S:      Maintained
10562 F:      drivers/crypto/marvell/
10563 F:      include/linux/soc/marvell/octeontx2/
10564
10565 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10566 M:      Mirko Lindner <mlindner@marvell.com>
10567 M:      Stephen Hemminger <stephen@networkplumber.org>
10568 L:      netdev@vger.kernel.org
10569 S:      Maintained
10570 F:      drivers/net/ethernet/marvell/sk*
10571
10572 MARVELL LIBERTAS WIRELESS DRIVER
10573 L:      libertas-dev@lists.infradead.org
10574 S:      Orphan
10575 F:      drivers/net/wireless/marvell/libertas/
10576
10577 MARVELL MACCHIATOBIN SUPPORT
10578 M:      Russell King <linux@armlinux.org.uk>
10579 L:      linux-arm-kernel@lists.infradead.org
10580 S:      Maintained
10581 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10582
10583 MARVELL MV643XX ETHERNET DRIVER
10584 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
10585 L:      netdev@vger.kernel.org
10586 S:      Maintained
10587 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10588 F:      include/linux/mv643xx.h
10589
10590 MARVELL MV88X3310 PHY DRIVER
10591 M:      Russell King <linux@armlinux.org.uk>
10592 L:      netdev@vger.kernel.org
10593 S:      Maintained
10594 F:      drivers/net/phy/marvell10g.c
10595
10596 MARVELL MVEBU THERMAL DRIVER
10597 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10598 S:      Maintained
10599 F:      drivers/thermal/armada_thermal.c
10600
10601 MARVELL MVNETA ETHERNET DRIVER
10602 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10603 L:      netdev@vger.kernel.org
10604 S:      Maintained
10605 F:      drivers/net/ethernet/marvell/mvneta.*
10606
10607 MARVELL MVPP2 ETHERNET DRIVER
10608 M:      Marcin Wojtas <mw@semihalf.com>
10609 M:      Russell King <linux@armlinux.org.uk>
10610 L:      netdev@vger.kernel.org
10611 S:      Maintained
10612 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
10613 F:      drivers/net/ethernet/marvell/mvpp2/
10614
10615 MARVELL MWIFIEX WIRELESS DRIVER
10616 M:      Amitkumar Karwar <amitkarwar@gmail.com>
10617 M:      Ganapathi Bhat <ganapathi.bhat@nxp.com>
10618 M:      Xinming Hu <huxinming820@gmail.com>
10619 L:      linux-wireless@vger.kernel.org
10620 S:      Maintained
10621 F:      drivers/net/wireless/marvell/mwifiex/
10622
10623 MARVELL MWL8K WIRELESS DRIVER
10624 M:      Lennert Buytenhek <buytenh@wantstofly.org>
10625 L:      linux-wireless@vger.kernel.org
10626 S:      Odd Fixes
10627 F:      drivers/net/wireless/marvell/mwl8k.c
10628
10629 MARVELL NAND CONTROLLER DRIVER
10630 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10631 L:      linux-mtd@lists.infradead.org
10632 S:      Maintained
10633 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10634 F:      drivers/mtd/nand/raw/marvell_nand.c
10635
10636 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10637 M:      Sunil Goutham <sgoutham@marvell.com>
10638 M:      Geetha sowjanya <gakula@marvell.com>
10639 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10640 M:      hariprasad <hkelam@marvell.com>
10641 L:      netdev@vger.kernel.org
10642 S:      Supported
10643 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10644 F:      include/linux/soc/marvell/octeontx2/
10645
10646 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10647 M:      Sunil Goutham <sgoutham@marvell.com>
10648 M:      Linu Cherian <lcherian@marvell.com>
10649 M:      Geetha sowjanya <gakula@marvell.com>
10650 M:      Jerin Jacob <jerinj@marvell.com>
10651 L:      netdev@vger.kernel.org
10652 S:      Supported
10653 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
10654 F:      drivers/net/ethernet/marvell/octeontx2/af/
10655
10656 MARVELL PRESTERA ETHERNET SWITCH DRIVER
10657 M:      Vadym Kochan <vkochan@marvell.com>
10658 M:      Taras Chornyi <tchornyi@marvell.com>
10659 S:      Supported
10660 W:      https://github.com/Marvell-switching/switchdev-prestera
10661 F:      drivers/net/ethernet/marvell/prestera/
10662
10663 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10664 M:      Nicolas Pitre <nico@fluxnic.net>
10665 S:      Odd Fixes
10666 F:      drivers/mmc/host/mvsdio.*
10667
10668 MARVELL USB MDIO CONTROLLER DRIVER
10669 M:      Tobias Waldekranz <tobias@waldekranz.com>
10670 L:      netdev@vger.kernel.org
10671 S:      Maintained
10672 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10673 F:      drivers/net/mdio/mdio-mvusb.c
10674
10675 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10676 M:      Hu Ziji <huziji@marvell.com>
10677 L:      linux-mmc@vger.kernel.org
10678 S:      Supported
10679 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10680 F:      drivers/mmc/host/sdhci-xenon*
10681
10682 MATROX FRAMEBUFFER DRIVER
10683 L:      linux-fbdev@vger.kernel.org
10684 S:      Orphan
10685 F:      drivers/video/fbdev/matrox/matroxfb_*
10686 F:      include/uapi/linux/matroxfb.h
10687
10688 MAX16065 HARDWARE MONITOR DRIVER
10689 M:      Guenter Roeck <linux@roeck-us.net>
10690 L:      linux-hwmon@vger.kernel.org
10691 S:      Maintained
10692 F:      Documentation/hwmon/max16065.rst
10693 F:      drivers/hwmon/max16065.c
10694
10695 MAX2175 SDR TUNER DRIVER
10696 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10697 L:      linux-media@vger.kernel.org
10698 S:      Maintained
10699 T:      git git://linuxtv.org/media_tree.git
10700 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10701 F:      Documentation/userspace-api/media/drivers/max2175.rst
10702 F:      drivers/media/i2c/max2175*
10703 F:      include/uapi/linux/max2175.h
10704
10705 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10706 L:      linux-hwmon@vger.kernel.org
10707 S:      Orphan
10708 F:      Documentation/hwmon/max6650.rst
10709 F:      drivers/hwmon/max6650.c
10710
10711 MAX6697 HARDWARE MONITOR DRIVER
10712 M:      Guenter Roeck <linux@roeck-us.net>
10713 L:      linux-hwmon@vger.kernel.org
10714 S:      Maintained
10715 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10716 F:      Documentation/hwmon/max6697.rst
10717 F:      drivers/hwmon/max6697.c
10718 F:      include/linux/platform_data/max6697.h
10719
10720 MAX9286 QUAD GMSL DESERIALIZER DRIVER
10721 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
10722 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10723 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
10724 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
10725 L:      linux-media@vger.kernel.org
10726 S:      Maintained
10727 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
10728 F:      drivers/media/i2c/max9286.c
10729
10730 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10731 M:      Peter Rosin <peda@axentia.se>
10732 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10733 S:      Maintained
10734 F:      Documentation/devicetree/bindings/sound/max9860.txt
10735 F:      sound/soc/codecs/max9860.*
10736
10737 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10738 M:      Andreas Klinger <ak@it-klinger.de>
10739 L:      linux-iio@vger.kernel.org
10740 S:      Maintained
10741 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10742 F:      drivers/iio/proximity/mb1232.c
10743
10744 MAXIM MAX77650 PMIC MFD DRIVER
10745 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
10746 L:      linux-kernel@vger.kernel.org
10747 S:      Maintained
10748 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10749 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10750 F:      drivers/gpio/gpio-max77650.c
10751 F:      drivers/input/misc/max77650-onkey.c
10752 F:      drivers/leds/leds-max77650.c
10753 F:      drivers/mfd/max77650.c
10754 F:      drivers/power/supply/max77650-charger.c
10755 F:      drivers/regulator/max77650-regulator.c
10756 F:      include/linux/mfd/max77650.h
10757
10758 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10759 M:      Javier Martinez Canillas <javier@dowhile0.org>
10760 L:      linux-kernel@vger.kernel.org
10761 S:      Supported
10762 F:      Documentation/devicetree/bindings/*/*max77802.txt
10763 F:      drivers/regulator/max77802-regulator.c
10764 F:      include/dt-bindings/*/*max77802.h
10765
10766 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10767 M:      Krzysztof Kozlowski <krzk@kernel.org>
10768 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10769 L:      linux-pm@vger.kernel.org
10770 S:      Supported
10771 F:      drivers/power/supply/max14577_charger.c
10772 F:      drivers/power/supply/max77693_charger.c
10773
10774 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10775 M:      Chanwoo Choi <cw00.choi@samsung.com>
10776 M:      Krzysztof Kozlowski <krzk@kernel.org>
10777 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10778 L:      linux-kernel@vger.kernel.org
10779 S:      Supported
10780 F:      Documentation/devicetree/bindings/*/max77686.txt
10781 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10782 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10783 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10784 F:      drivers/*/max14577*.c
10785 F:      drivers/*/max77686*.c
10786 F:      drivers/*/max77693*.c
10787 F:      drivers/clk/clk-max77686.c
10788 F:      drivers/extcon/extcon-max14577.c
10789 F:      drivers/extcon/extcon-max77693.c
10790 F:      drivers/rtc/rtc-max77686.c
10791 F:      include/linux/mfd/max14577*.h
10792 F:      include/linux/mfd/max77686*.h
10793 F:      include/linux/mfd/max77693*.h
10794
10795 MAXIRADIO FM RADIO RECEIVER DRIVER
10796 M:      Hans Verkuil <hverkuil@xs4all.nl>
10797 L:      linux-media@vger.kernel.org
10798 S:      Maintained
10799 W:      https://linuxtv.org
10800 T:      git git://linuxtv.org/media_tree.git
10801 F:      drivers/media/radio/radio-maxiradio*
10802
10803 MCAN MMIO DEVICE DRIVER
10804 M:      Dan Murphy <dmurphy@ti.com>
10805 M:      Sriram Dash <sriram.dash@samsung.com>
10806 L:      linux-can@vger.kernel.org
10807 S:      Maintained
10808 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10809 F:      drivers/net/can/m_can/m_can.c
10810 F:      drivers/net/can/m_can/m_can.h
10811 F:      drivers/net/can/m_can/m_can_platform.c
10812
10813 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10814 M:      Rishi Gupta <gupt21@gmail.com>
10815 L:      linux-i2c@vger.kernel.org
10816 L:      linux-input@vger.kernel.org
10817 S:      Maintained
10818 F:      drivers/hid/hid-mcp2221.c
10819
10820 MCP251XFD SPI-CAN NETWORK DRIVER
10821 M:      Marc Kleine-Budde <mkl@pengutronix.de>
10822 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
10823 R:      Thomas Kopp <thomas.kopp@microchip.com>
10824 L:      linux-can@vger.kernel.org
10825 S:      Maintained
10826 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
10827 F:      drivers/net/can/spi/mcp251xfd/
10828
10829 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10830 M:      Peter Rosin <peda@axentia.se>
10831 L:      linux-iio@vger.kernel.org
10832 S:      Maintained
10833 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10834 F:      drivers/iio/potentiometer/mcp4018.c
10835 F:      drivers/iio/potentiometer/mcp4531.c
10836
10837 MCR20A IEEE-802.15.4 RADIO DRIVER
10838 M:      Xue Liu <liuxuenetmail@gmail.com>
10839 L:      linux-wpan@vger.kernel.org
10840 S:      Maintained
10841 W:      https://github.com/xueliu/mcr20a-linux
10842 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10843 F:      drivers/net/ieee802154/mcr20a.c
10844 F:      drivers/net/ieee802154/mcr20a.h
10845
10846 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10847 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10848 L:      linux-iio@vger.kernel.org
10849 S:      Maintained
10850 F:      drivers/iio/dac/cio-dac.c
10851
10852 MEDIA CONTROLLER FRAMEWORK
10853 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10854 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10855 L:      linux-media@vger.kernel.org
10856 S:      Supported
10857 W:      https://www.linuxtv.org
10858 T:      git git://linuxtv.org/media_tree.git
10859 F:      drivers/media/mc/
10860 F:      include/media/media-*.h
10861 F:      include/uapi/linux/media.h
10862
10863 MEDIA DRIVER FOR FREESCALE IMX PXP
10864 M:      Philipp Zabel <p.zabel@pengutronix.de>
10865 L:      linux-media@vger.kernel.org
10866 S:      Maintained
10867 T:      git git://linuxtv.org/media_tree.git
10868 F:      drivers/media/platform/imx-pxp.[ch]
10869
10870 MEDIA DRIVERS FOR ASCOT2E
10871 M:      Sergey Kozlov <serjk@netup.ru>
10872 M:      Abylay Ospan <aospan@netup.ru>
10873 L:      linux-media@vger.kernel.org
10874 S:      Supported
10875 W:      https://linuxtv.org
10876 W:      http://netup.tv/
10877 T:      git git://linuxtv.org/media_tree.git
10878 F:      drivers/media/dvb-frontends/ascot2e*
10879
10880 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10881 M:      Jasmin Jessich <jasmin@anw.at>
10882 L:      linux-media@vger.kernel.org
10883 S:      Maintained
10884 W:      https://linuxtv.org
10885 T:      git git://linuxtv.org/media_tree.git
10886 F:      drivers/media/dvb-frontends/cxd2099*
10887
10888 MEDIA DRIVERS FOR CXD2841ER
10889 M:      Sergey Kozlov <serjk@netup.ru>
10890 M:      Abylay Ospan <aospan@netup.ru>
10891 L:      linux-media@vger.kernel.org
10892 S:      Supported
10893 W:      https://linuxtv.org
10894 W:      http://netup.tv/
10895 T:      git git://linuxtv.org/media_tree.git
10896 F:      drivers/media/dvb-frontends/cxd2841er*
10897
10898 MEDIA DRIVERS FOR CXD2880
10899 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10900 L:      linux-media@vger.kernel.org
10901 S:      Supported
10902 W:      http://linuxtv.org/
10903 T:      git git://linuxtv.org/media_tree.git
10904 F:      drivers/media/dvb-frontends/cxd2880/*
10905 F:      drivers/media/spi/cxd2880*
10906
10907 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10908 L:      linux-media@vger.kernel.org
10909 S:      Orphan
10910 W:      https://linuxtv.org
10911 T:      git git://linuxtv.org/media_tree.git
10912 F:      drivers/media/pci/ddbridge/*
10913
10914 MEDIA DRIVERS FOR FREESCALE IMX
10915 M:      Steve Longerbeam <slongerbeam@gmail.com>
10916 M:      Philipp Zabel <p.zabel@pengutronix.de>
10917 L:      linux-media@vger.kernel.org
10918 S:      Maintained
10919 T:      git git://linuxtv.org/media_tree.git
10920 F:      Documentation/admin-guide/media/imx.rst
10921 F:      Documentation/devicetree/bindings/media/imx.txt
10922 F:      drivers/staging/media/imx/
10923 F:      include/linux/imx-media.h
10924 F:      include/media/imx.h
10925
10926 MEDIA DRIVERS FOR FREESCALE IMX7
10927 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10928 L:      linux-media@vger.kernel.org
10929 S:      Maintained
10930 T:      git git://linuxtv.org/media_tree.git
10931 F:      Documentation/admin-guide/media/imx7.rst
10932 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
10933 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
10934 F:      drivers/staging/media/imx/imx7-media-csi.c
10935 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10936
10937 MEDIA DRIVERS FOR HELENE
10938 M:      Abylay Ospan <aospan@netup.ru>
10939 L:      linux-media@vger.kernel.org
10940 S:      Supported
10941 W:      https://linuxtv.org
10942 W:      http://netup.tv/
10943 T:      git git://linuxtv.org/media_tree.git
10944 F:      drivers/media/dvb-frontends/helene*
10945
10946 MEDIA DRIVERS FOR HORUS3A
10947 M:      Sergey Kozlov <serjk@netup.ru>
10948 M:      Abylay Ospan <aospan@netup.ru>
10949 L:      linux-media@vger.kernel.org
10950 S:      Supported
10951 W:      https://linuxtv.org
10952 W:      http://netup.tv/
10953 T:      git git://linuxtv.org/media_tree.git
10954 F:      drivers/media/dvb-frontends/horus3a*
10955
10956 MEDIA DRIVERS FOR LNBH25
10957 M:      Sergey Kozlov <serjk@netup.ru>
10958 M:      Abylay Ospan <aospan@netup.ru>
10959 L:      linux-media@vger.kernel.org
10960 S:      Supported
10961 W:      https://linuxtv.org
10962 W:      http://netup.tv/
10963 T:      git git://linuxtv.org/media_tree.git
10964 F:      drivers/media/dvb-frontends/lnbh25*
10965
10966 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10967 L:      linux-media@vger.kernel.org
10968 S:      Orphan
10969 W:      https://linuxtv.org
10970 T:      git git://linuxtv.org/media_tree.git
10971 F:      drivers/media/dvb-frontends/mxl5xx*
10972
10973 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10974 M:      Sergey Kozlov <serjk@netup.ru>
10975 M:      Abylay Ospan <aospan@netup.ru>
10976 L:      linux-media@vger.kernel.org
10977 S:      Supported
10978 W:      https://linuxtv.org
10979 W:      http://netup.tv/
10980 T:      git git://linuxtv.org/media_tree.git
10981 F:      drivers/media/pci/netup_unidvb/*
10982
10983 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10984 M:      Dmitry Osipenko <digetx@gmail.com>
10985 L:      linux-media@vger.kernel.org
10986 L:      linux-tegra@vger.kernel.org
10987 S:      Maintained
10988 T:      git git://linuxtv.org/media_tree.git
10989 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10990 F:      drivers/staging/media/tegra-vde/
10991
10992 MEDIA DRIVERS FOR RENESAS - CEU
10993 M:      Jacopo Mondi <jacopo@jmondi.org>
10994 L:      linux-media@vger.kernel.org
10995 L:      linux-renesas-soc@vger.kernel.org
10996 S:      Supported
10997 T:      git git://linuxtv.org/media_tree.git
10998 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
10999 F:      drivers/media/platform/renesas-ceu.c
11000 F:      include/media/drv-intf/renesas-ceu.h
11001
11002 MEDIA DRIVERS FOR RENESAS - DRIF
11003 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11004 L:      linux-media@vger.kernel.org
11005 L:      linux-renesas-soc@vger.kernel.org
11006 S:      Supported
11007 T:      git git://linuxtv.org/media_tree.git
11008 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
11009 F:      drivers/media/platform/rcar_drif.c
11010
11011 MEDIA DRIVERS FOR RENESAS - FCP
11012 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.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,fcp.yaml
11018 F:      drivers/media/platform/rcar-fcp.c
11019 F:      include/media/rcar-fcp.h
11020
11021 MEDIA DRIVERS FOR RENESAS - FDP1
11022 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11023 L:      linux-media@vger.kernel.org
11024 L:      linux-renesas-soc@vger.kernel.org
11025 S:      Supported
11026 T:      git git://linuxtv.org/media_tree.git
11027 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11028 F:      drivers/media/platform/rcar_fdp1.c
11029
11030 MEDIA DRIVERS FOR RENESAS - VIN
11031 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
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,csi2.yaml
11037 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11038 F:      drivers/media/platform/rcar-vin/
11039
11040 MEDIA DRIVERS FOR RENESAS - VSP1
11041 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11042 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11043 L:      linux-media@vger.kernel.org
11044 L:      linux-renesas-soc@vger.kernel.org
11045 S:      Supported
11046 T:      git git://linuxtv.org/media_tree.git
11047 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11048 F:      drivers/media/platform/vsp1/
11049
11050 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11051 L:      linux-media@vger.kernel.org
11052 S:      Orphan
11053 W:      https://linuxtv.org
11054 T:      git git://linuxtv.org/media_tree.git
11055 F:      drivers/media/dvb-frontends/stv0910*
11056
11057 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11058 L:      linux-media@vger.kernel.org
11059 S:      Orphan
11060 W:      https://linuxtv.org
11061 T:      git git://linuxtv.org/media_tree.git
11062 F:      drivers/media/dvb-frontends/stv6111*
11063
11064 MEDIA DRIVERS FOR STM32 - DCMI
11065 M:      Hugues Fruchet <hugues.fruchet@st.com>
11066 L:      linux-media@vger.kernel.org
11067 S:      Supported
11068 T:      git git://linuxtv.org/media_tree.git
11069 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11070 F:      drivers/media/platform/stm32/stm32-dcmi.c
11071
11072 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11073 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11074 L:      linux-media@vger.kernel.org
11075 S:      Maintained
11076 W:      https://linuxtv.org
11077 Q:      http://patchwork.kernel.org/project/linux-media/list/
11078 T:      git git://linuxtv.org/media_tree.git
11079 F:      Documentation/admin-guide/media/
11080 F:      Documentation/devicetree/bindings/media/
11081 F:      Documentation/driver-api/media/
11082 F:      Documentation/userspace-api/media/
11083 F:      drivers/media/
11084 F:      drivers/staging/media/
11085 F:      include/linux/platform_data/media/
11086 F:      include/media/
11087 F:      include/uapi/linux/dvb/
11088 F:      include/uapi/linux/ivtv*
11089 F:      include/uapi/linux/media.h
11090 F:      include/uapi/linux/meye.h
11091 F:      include/uapi/linux/uvcvideo.h
11092 F:      include/uapi/linux/v4l2-*
11093 F:      include/uapi/linux/videodev2.h
11094
11095 MEDIATEK BLUETOOTH DRIVER
11096 M:      Sean Wang <sean.wang@mediatek.com>
11097 L:      linux-bluetooth@vger.kernel.org
11098 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11099 S:      Maintained
11100 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11101 F:      drivers/bluetooth/btmtkuart.c
11102
11103 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11104 M:      Sean Wang <sean.wang@mediatek.com>
11105 L:      linux-pm@vger.kernel.org
11106 S:      Maintained
11107 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11108 F:      drivers/power/reset/mt6323-poweroff.c
11109
11110 MEDIATEK CIR DRIVER
11111 M:      Sean Wang <sean.wang@mediatek.com>
11112 S:      Maintained
11113 F:      drivers/media/rc/mtk-cir.c
11114
11115 MEDIATEK DMA DRIVER
11116 M:      Sean Wang <sean.wang@mediatek.com>
11117 L:      dmaengine@vger.kernel.org
11118 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11119 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11120 S:      Maintained
11121 F:      Documentation/devicetree/bindings/dma/mtk-*
11122 F:      drivers/dma/mediatek/
11123
11124 MEDIATEK ETHERNET DRIVER
11125 M:      Felix Fietkau <nbd@nbd.name>
11126 M:      John Crispin <john@phrozen.org>
11127 M:      Sean Wang <sean.wang@mediatek.com>
11128 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11129 L:      netdev@vger.kernel.org
11130 S:      Maintained
11131 F:      drivers/net/ethernet/mediatek/
11132
11133 MEDIATEK I2C CONTROLLER DRIVER
11134 M:      Qii Wang <qii.wang@mediatek.com>
11135 L:      linux-i2c@vger.kernel.org
11136 S:      Maintained
11137 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11138 F:      drivers/i2c/busses/i2c-mt65xx.c
11139
11140 MEDIATEK JPEG DRIVER
11141 M:      Rick Chang <rick.chang@mediatek.com>
11142 M:      Bin Liu <bin.liu@mediatek.com>
11143 S:      Supported
11144 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11145 F:      drivers/media/platform/mtk-jpeg/
11146
11147 MEDIATEK MDP DRIVER
11148 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11149 M:      Houlong Wei <houlong.wei@mediatek.com>
11150 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11151 S:      Supported
11152 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11153 F:      drivers/media/platform/mtk-mdp/
11154 F:      drivers/media/platform/mtk-vpu/
11155
11156 MEDIATEK MEDIA DRIVER
11157 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11158 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11159 S:      Supported
11160 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11161 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11162 F:      drivers/media/platform/mtk-vcodec/
11163 F:      drivers/media/platform/mtk-vpu/
11164
11165 MEDIATEK MMC/SD/SDIO DRIVER
11166 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11167 S:      Maintained
11168 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
11169 F:      drivers/mmc/host/mtk-sd.c
11170
11171 MEDIATEK MT76 WIRELESS LAN DRIVER
11172 M:      Felix Fietkau <nbd@nbd.name>
11173 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11174 R:      Ryder Lee <ryder.lee@mediatek.com>
11175 L:      linux-wireless@vger.kernel.org
11176 S:      Maintained
11177 F:      drivers/net/wireless/mediatek/mt76/
11178
11179 MEDIATEK MT7601U WIRELESS LAN DRIVER
11180 M:      Jakub Kicinski <kubakici@wp.pl>
11181 L:      linux-wireless@vger.kernel.org
11182 S:      Maintained
11183 F:      drivers/net/wireless/mediatek/mt7601u/
11184
11185 MEDIATEK MT7621/28/88 I2C DRIVER
11186 M:      Stefan Roese <sr@denx.de>
11187 L:      linux-i2c@vger.kernel.org
11188 S:      Maintained
11189 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11190 F:      drivers/i2c/busses/i2c-mt7621.c
11191
11192 MEDIATEK MT7621 PHY PCI DRIVER
11193 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11194 S:      Maintained
11195 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11196 F:      drivers/phy/ralink/phy-mt7621-pci.c
11197
11198 MEDIATEK NAND CONTROLLER DRIVER
11199 L:      linux-mtd@lists.infradead.org
11200 S:      Orphan
11201 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11202 F:      drivers/mtd/nand/raw/mtk_*
11203
11204 MEDIATEK PMIC LED DRIVER
11205 M:      Sean Wang <sean.wang@mediatek.com>
11206 S:      Maintained
11207 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11208 F:      drivers/leds/leds-mt6323.c
11209
11210 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11211 M:      Sean Wang <sean.wang@mediatek.com>
11212 S:      Maintained
11213 F:      drivers/char/hw_random/mtk-rng.c
11214
11215 MEDIATEK SWITCH DRIVER
11216 M:      Sean Wang <sean.wang@mediatek.com>
11217 M:      Landen Chao <Landen.Chao@mediatek.com>
11218 L:      netdev@vger.kernel.org
11219 S:      Maintained
11220 F:      drivers/net/dsa/mt7530.*
11221 F:      net/dsa/tag_mtk.c
11222
11223 MEDIATEK USB3 DRD IP DRIVER
11224 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
11225 L:      linux-usb@vger.kernel.org
11226 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11227 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11228 S:      Maintained
11229 F:      drivers/usb/mtu3/
11230
11231 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11232 M:      Peter Senna Tschudin <peter.senna@gmail.com>
11233 M:      Martin Donnelly <martin.donnelly@ge.com>
11234 M:      Martyn Welch <martyn.welch@collabora.co.uk>
11235 S:      Maintained
11236 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11237 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11238
11239 MEGARAID SCSI/SAS DRIVERS
11240 M:      Kashyap Desai <kashyap.desai@broadcom.com>
11241 M:      Sumit Saxena <sumit.saxena@broadcom.com>
11242 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11243 L:      megaraidlinux.pdl@broadcom.com
11244 L:      linux-scsi@vger.kernel.org
11245 S:      Maintained
11246 W:      http://www.avagotech.com/support/
11247 F:      Documentation/scsi/megaraid.rst
11248 F:      drivers/scsi/megaraid.*
11249 F:      drivers/scsi/megaraid/
11250
11251 MELEXIS MLX90614 DRIVER
11252 M:      Crt Mori <cmo@melexis.com>
11253 L:      linux-iio@vger.kernel.org
11254 S:      Supported
11255 W:      http://www.melexis.com
11256 F:      drivers/iio/temperature/mlx90614.c
11257
11258 MELEXIS MLX90632 DRIVER
11259 M:      Crt Mori <cmo@melexis.com>
11260 L:      linux-iio@vger.kernel.org
11261 S:      Supported
11262 W:      http://www.melexis.com
11263 F:      drivers/iio/temperature/mlx90632.c
11264
11265 MELFAS MIP4 TOUCHSCREEN DRIVER
11266 M:      Sangwon Jee <jeesw@melfas.com>
11267 S:      Supported
11268 W:      http://www.melfas.com
11269 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11270 F:      drivers/input/touchscreen/melfas_mip4.c
11271
11272 MELLANOX BLUEFIELD I2C DRIVER
11273 M:      Khalil Blaiech <kblaiech@nvidia.com>
11274 L:      linux-i2c@vger.kernel.org
11275 S:      Supported
11276 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
11277 F:      drivers/i2c/busses/i2c-mlxbf.c
11278
11279 MELLANOX ETHERNET DRIVER (mlx4_en)
11280 M:      Tariq Toukan <tariqt@nvidia.com>
11281 L:      netdev@vger.kernel.org
11282 S:      Supported
11283 W:      http://www.mellanox.com
11284 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11285 F:      drivers/net/ethernet/mellanox/mlx4/en_*
11286
11287 MELLANOX ETHERNET DRIVER (mlx5e)
11288 M:      Saeed Mahameed <saeedm@nvidia.com>
11289 L:      netdev@vger.kernel.org
11290 S:      Supported
11291 W:      http://www.mellanox.com
11292 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11293 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
11294
11295 MELLANOX ETHERNET INNOVA DRIVERS
11296 R:      Boris Pismenny <borisp@nvidia.com>
11297 L:      netdev@vger.kernel.org
11298 S:      Supported
11299 W:      http://www.mellanox.com
11300 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11301 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
11302 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11303 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11304 F:      include/linux/mlx5/mlx5_ifc_fpga.h
11305
11306 MELLANOX ETHERNET SWITCH DRIVERS
11307 M:      Jiri Pirko <jiri@nvidia.com>
11308 M:      Ido Schimmel <idosch@nvidia.com>
11309 L:      netdev@vger.kernel.org
11310 S:      Supported
11311 W:      http://www.mellanox.com
11312 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11313 F:      drivers/net/ethernet/mellanox/mlxsw/
11314 F:      tools/testing/selftests/drivers/net/mlxsw/
11315
11316 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11317 M:      mlxsw@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/mlxfw/
11323
11324 MELLANOX HARDWARE PLATFORM SUPPORT
11325 M:      Andy Shevchenko <andy@infradead.org>
11326 M:      Darren Hart <dvhart@infradead.org>
11327 M:      Vadim Pasternak <vadimp@nvidia.com>
11328 L:      platform-driver-x86@vger.kernel.org
11329 S:      Supported
11330 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11331 F:      drivers/platform/mellanox/
11332 F:      include/linux/platform_data/mlxreg.h
11333
11334 MELLANOX MLX4 core VPI driver
11335 M:      Tariq Toukan <tariqt@nvidia.com>
11336 L:      netdev@vger.kernel.org
11337 L:      linux-rdma@vger.kernel.org
11338 S:      Supported
11339 W:      http://www.mellanox.com
11340 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11341 F:      drivers/net/ethernet/mellanox/mlx4/
11342 F:      include/linux/mlx4/
11343
11344 MELLANOX MLX4 IB driver
11345 M:      Yishai Hadas <yishaih@nvidia.com>
11346 L:      linux-rdma@vger.kernel.org
11347 S:      Supported
11348 W:      http://www.mellanox.com
11349 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11350 F:      drivers/infiniband/hw/mlx4/
11351 F:      include/linux/mlx4/
11352 F:      include/uapi/rdma/mlx4-abi.h
11353
11354 MELLANOX MLX5 core VPI driver
11355 M:      Saeed Mahameed <saeedm@nvidia.com>
11356 M:      Leon Romanovsky <leonro@nvidia.com>
11357 L:      netdev@vger.kernel.org
11358 L:      linux-rdma@vger.kernel.org
11359 S:      Supported
11360 W:      http://www.mellanox.com
11361 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11362 F:      Documentation/networking/device_drivers/ethernet/mellanox/
11363 F:      drivers/net/ethernet/mellanox/mlx5/core/
11364 F:      include/linux/mlx5/
11365
11366 MELLANOX MLX5 IB driver
11367 M:      Leon Romanovsky <leonro@nvidia.com>
11368 L:      linux-rdma@vger.kernel.org
11369 S:      Supported
11370 W:      http://www.mellanox.com
11371 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11372 F:      drivers/infiniband/hw/mlx5/
11373 F:      include/linux/mlx5/
11374 F:      include/uapi/rdma/mlx5-abi.h
11375
11376 MELLANOX MLXCPLD I2C AND MUX DRIVER
11377 M:      Vadim Pasternak <vadimp@nvidia.com>
11378 M:      Michael Shych <michaelsh@nvidia.com>
11379 L:      linux-i2c@vger.kernel.org
11380 S:      Supported
11381 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11382 F:      drivers/i2c/busses/i2c-mlxcpld.c
11383 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11384
11385 MELLANOX MLXCPLD LED DRIVER
11386 M:      Vadim Pasternak <vadimp@nvidia.com>
11387 L:      linux-leds@vger.kernel.org
11388 S:      Supported
11389 F:      Documentation/leds/leds-mlxcpld.rst
11390 F:      drivers/leds/leds-mlxcpld.c
11391 F:      drivers/leds/leds-mlxreg.c
11392
11393 MELLANOX PLATFORM DRIVER
11394 M:      Vadim Pasternak <vadimp@nvidia.com>
11395 L:      platform-driver-x86@vger.kernel.org
11396 S:      Supported
11397 F:      drivers/platform/x86/mlx-platform.c
11398
11399 MEMBARRIER SUPPORT
11400 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11401 M:      "Paul E. McKenney" <paulmck@kernel.org>
11402 L:      linux-kernel@vger.kernel.org
11403 S:      Supported
11404 F:      arch/powerpc/include/asm/membarrier.h
11405 F:      include/uapi/linux/membarrier.h
11406 F:      kernel/sched/membarrier.c
11407
11408 MEMBLOCK
11409 M:      Mike Rapoport <rppt@linux.ibm.com>
11410 L:      linux-mm@kvack.org
11411 S:      Maintained
11412 F:      Documentation/core-api/boot-time-mm.rst
11413 F:      include/linux/memblock.h
11414 F:      mm/memblock.c
11415
11416 MEMORY CONTROLLER DRIVERS
11417 M:      Krzysztof Kozlowski <krzk@kernel.org>
11418 L:      linux-kernel@vger.kernel.org
11419 S:      Maintained
11420 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
11421 F:      Documentation/devicetree/bindings/memory-controllers/
11422 F:      drivers/memory/
11423
11424 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
11425 M:      Dmitry Osipenko <digetx@gmail.com>
11426 L:      linux-pm@vger.kernel.org
11427 L:      linux-tegra@vger.kernel.org
11428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
11429 S:      Maintained
11430 F:      drivers/devfreq/tegra30-devfreq.c
11431
11432 MEMORY MANAGEMENT
11433 M:      Andrew Morton <akpm@linux-foundation.org>
11434 L:      linux-mm@kvack.org
11435 S:      Maintained
11436 W:      http://www.linux-mm.org
11437 T:      quilt https://ozlabs.org/~akpm/mmotm/
11438 T:      quilt https://ozlabs.org/~akpm/mmots/
11439 T:      git git://github.com/hnaz/linux-mm.git
11440 F:      include/linux/gfp.h
11441 F:      include/linux/memory_hotplug.h
11442 F:      include/linux/mm.h
11443 F:      include/linux/mmzone.h
11444 F:      include/linux/vmalloc.h
11445 F:      mm/
11446
11447 MEMORY TECHNOLOGY DEVICES (MTD)
11448 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11449 M:      Richard Weinberger <richard@nod.at>
11450 M:      Vignesh Raghavendra <vigneshr@ti.com>
11451 L:      linux-mtd@lists.infradead.org
11452 S:      Maintained
11453 W:      http://www.linux-mtd.infradead.org/
11454 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11455 C:      irc://irc.oftc.net/mtd
11456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11458 F:      Documentation/devicetree/bindings/mtd/
11459 F:      drivers/mtd/
11460 F:      include/linux/mtd/
11461 F:      include/uapi/mtd/
11462
11463 MEN A21 WATCHDOG DRIVER
11464 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11465 L:      linux-watchdog@vger.kernel.org
11466 S:      Maintained
11467 F:      drivers/watchdog/mena21_wdt.c
11468
11469 MEN CHAMELEON BUS (mcb)
11470 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11471 S:      Maintained
11472 F:      Documentation/driver-api/men-chameleon-bus.rst
11473 F:      drivers/mcb/
11474 F:      include/linux/mcb.h
11475
11476 MEN F21BMC (Board Management Controller)
11477 M:      Andreas Werner <andreas.werner@men.de>
11478 S:      Supported
11479 F:      Documentation/hwmon/menf21bmc.rst
11480 F:      drivers/hwmon/menf21bmc_hwmon.c
11481 F:      drivers/leds/leds-menf21bmc.c
11482 F:      drivers/mfd/menf21bmc.c
11483 F:      drivers/watchdog/menf21bmc_wdt.c
11484
11485 MEN Z069 WATCHDOG DRIVER
11486 M:      Johannes Thumshirn <jth@kernel.org>
11487 L:      linux-watchdog@vger.kernel.org
11488 S:      Maintained
11489 F:      drivers/watchdog/menz69_wdt.c
11490
11491 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11492 M:      Neil Armstrong <narmstrong@baylibre.com>
11493 L:      linux-media@vger.kernel.org
11494 L:      linux-amlogic@lists.infradead.org
11495 S:      Supported
11496 W:      http://linux-meson.com/
11497 T:      git git://linuxtv.org/media_tree.git
11498 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11499 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
11500 F:      drivers/media/cec/platform/meson/ao-cec.c
11501
11502 MESON GE2D DRIVER FOR AMLOGIC SOCS
11503 M:      Neil Armstrong <narmstrong@baylibre.com>
11504 L:      linux-media@vger.kernel.org
11505 L:      linux-amlogic@lists.infradead.org
11506 S:      Supported
11507 T:      git git://linuxtv.org/media_tree.git
11508 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
11509 F:      drivers/media/meson/ge2d/
11510
11511 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11512 M:      Liang Yang <liang.yang@amlogic.com>
11513 L:      linux-mtd@lists.infradead.org
11514 S:      Maintained
11515 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11516 F:      drivers/mtd/nand/raw/meson_*
11517
11518 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11519 M:      Neil Armstrong <narmstrong@baylibre.com>
11520 L:      linux-media@vger.kernel.org
11521 L:      linux-amlogic@lists.infradead.org
11522 S:      Supported
11523 T:      git git://linuxtv.org/media_tree.git
11524 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11525 F:      drivers/staging/media/meson/vdec/
11526
11527 METHODE UDPU SUPPORT
11528 M:      Vladimir Vid <vladimir.vid@sartura.hr>
11529 S:      Maintained
11530 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11531
11532 MHI BUS
11533 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11534 M:      Hemant Kumar <hemantk@codeaurora.org>
11535 L:      linux-arm-msm@vger.kernel.org
11536 S:      Maintained
11537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11538 F:      Documentation/ABI/stable/sysfs-bus-mhi
11539 F:      Documentation/mhi/
11540 F:      drivers/bus/mhi/
11541 F:      include/linux/mhi.h
11542
11543 MICROBLAZE ARCHITECTURE
11544 M:      Michal Simek <monstr@monstr.eu>
11545 S:      Supported
11546 W:      http://www.monstr.eu/fdt/
11547 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11548 F:      arch/microblaze/
11549
11550 MICROCHIP AT91 DMA DRIVERS
11551 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11552 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11553 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11554 L:      dmaengine@vger.kernel.org
11555 S:      Supported
11556 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11557 F:      drivers/dma/at_hdmac.c
11558 F:      drivers/dma/at_hdmac_regs.h
11559 F:      drivers/dma/at_xdmac.c
11560 F:      include/dt-bindings/dma/at91.h
11561 F:      include/linux/platform_data/dma-atmel.h
11562
11563 MICROCHIP AT91 SERIAL DRIVER
11564 M:      Richard Genoud <richard.genoud@gmail.com>
11565 S:      Maintained
11566 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11567 F:      drivers/tty/serial/atmel_serial.c
11568 F:      drivers/tty/serial/atmel_serial.h
11569
11570 MICROCHIP AT91 USART MFD DRIVER
11571 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11572 L:      linux-kernel@vger.kernel.org
11573 S:      Supported
11574 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11575 F:      drivers/mfd/at91-usart.c
11576 F:      include/dt-bindings/mfd/at91-usart.h
11577
11578 MICROCHIP AT91 USART SPI DRIVER
11579 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11580 L:      linux-spi@vger.kernel.org
11581 S:      Supported
11582 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11583 F:      drivers/spi/spi-at91-usart.c
11584
11585 MICROCHIP AUDIO ASOC DRIVERS
11586 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11587 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11588 S:      Supported
11589 F:      sound/soc/atmel
11590
11591 MICROCHIP ECC DRIVER
11592 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11593 L:      linux-crypto@vger.kernel.org
11594 S:      Maintained
11595 F:      drivers/crypto/atmel-ecc.*
11596
11597 MICROCHIP I2C DRIVER
11598 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11599 L:      linux-i2c@vger.kernel.org
11600 S:      Supported
11601 F:      drivers/i2c/busses/i2c-at91-*.c
11602 F:      drivers/i2c/busses/i2c-at91.h
11603
11604 MICROCHIP ISC DRIVER
11605 M:      Eugen Hristev <eugen.hristev@microchip.com>
11606 L:      linux-media@vger.kernel.org
11607 S:      Supported
11608 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11609 F:      drivers/media/platform/atmel/atmel-isc-base.c
11610 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11611 F:      drivers/media/platform/atmel/atmel-isc.h
11612 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11613 F:      include/linux/atmel-isc-media.h
11614
11615 MICROCHIP ISI DRIVER
11616 M:      Eugen Hristev <eugen.hristev@microchip.com>
11617 L:      linux-media@vger.kernel.org
11618 S:      Supported
11619 F:      drivers/media/platform/atmel/atmel-isi.c
11620 F:      drivers/media/platform/atmel/atmel-isi.h
11621
11622 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11623 M:      Woojung Huh <woojung.huh@microchip.com>
11624 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11625 L:      netdev@vger.kernel.org
11626 S:      Maintained
11627 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
11628 F:      drivers/net/dsa/microchip/*
11629 F:      include/linux/platform_data/microchip-ksz.h
11630 F:      net/dsa/tag_ksz.c
11631
11632 MICROCHIP LAN743X ETHERNET DRIVER
11633 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
11634 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11635 L:      netdev@vger.kernel.org
11636 S:      Maintained
11637 F:      drivers/net/ethernet/microchip/lan743x_*
11638
11639 MICROCHIP LCDFB DRIVER
11640 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11641 L:      linux-fbdev@vger.kernel.org
11642 S:      Maintained
11643 F:      drivers/video/fbdev/atmel_lcdfb.c
11644 F:      include/video/atmel_lcdc.h
11645
11646 MICROCHIP MCP16502 PMIC DRIVER
11647 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
11648 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11649 S:      Maintained
11650 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11651 F:      drivers/regulator/mcp16502.c
11652
11653 MICROCHIP MCP3911 ADC DRIVER
11654 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11655 M:      Kent Gustavsson <kent@minoris.se>
11656 L:      linux-iio@vger.kernel.org
11657 S:      Supported
11658 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11659 F:      drivers/iio/adc/mcp3911.c
11660
11661 MICROCHIP MMC/SD/SDIO MCI DRIVER
11662 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11663 S:      Maintained
11664 F:      drivers/mmc/host/atmel-mci.c
11665
11666 MICROCHIP NAND DRIVER
11667 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11668 L:      linux-mtd@lists.infradead.org
11669 S:      Supported
11670 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11671 F:      drivers/mtd/nand/raw/atmel/*
11672
11673 MICROCHIP PWM DRIVER
11674 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11675 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11676 L:      linux-pwm@vger.kernel.org
11677 S:      Supported
11678 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11679 F:      drivers/pwm/pwm-atmel.c
11680
11681 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11682 M:      Eugen Hristev <eugen.hristev@microchip.com>
11683 L:      linux-iio@vger.kernel.org
11684 S:      Supported
11685 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11686 F:      drivers/iio/adc/at91-sama5d2_adc.c
11687 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11688
11689 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11690 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11691 S:      Supported
11692 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11693
11694 MICROCHIP SPI DRIVER
11695 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11696 S:      Supported
11697 F:      drivers/spi/spi-atmel.*
11698
11699 MICROCHIP SSC DRIVER
11700 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11701 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11702 S:      Supported
11703 F:      drivers/misc/atmel-ssc.c
11704 F:      include/linux/atmel-ssc.h
11705
11706 MICROCHIP USB251XB DRIVER
11707 M:      Richard Leitner <richard.leitner@skidata.com>
11708 L:      linux-usb@vger.kernel.org
11709 S:      Maintained
11710 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11711 F:      drivers/usb/misc/usb251xb.c
11712
11713 MICROCHIP USBA UDC DRIVER
11714 M:      Cristian Birsan <cristian.birsan@microchip.com>
11715 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11716 S:      Supported
11717 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11718
11719 MICROCHIP WILC1000 WIFI DRIVER
11720 M:      Ajay Singh <ajay.kathat@microchip.com>
11721 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11722 L:      linux-wireless@vger.kernel.org
11723 S:      Supported
11724 F:      drivers/net/wireless/microchip/wilc1000/
11725
11726 MICROSEMI MIPS SOCS
11727 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11728 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11729 L:      linux-mips@vger.kernel.org
11730 S:      Supported
11731 F:      Documentation/devicetree/bindings/mips/mscc.txt
11732 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
11733 F:      arch/mips/boot/dts/mscc/
11734 F:      arch/mips/configs/generic/board-ocelot.config
11735 F:      arch/mips/generic/board-ocelot.c
11736
11737 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11738 M:      Don Brace <don.brace@microchip.com>
11739 L:      storagedev@microchip.com
11740 L:      linux-scsi@vger.kernel.org
11741 S:      Supported
11742 F:      Documentation/scsi/smartpqi.rst
11743 F:      drivers/scsi/smartpqi/Kconfig
11744 F:      drivers/scsi/smartpqi/Makefile
11745 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11746 F:      include/linux/cciss*.h
11747 F:      include/uapi/linux/cciss*.h
11748
11749 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
11750 M:      Maximilian Luz <luzmaximilian@gmail.com>
11751 L:      platform-driver-x86@vger.kernel.org
11752 S:      Maintained
11753 F:      drivers/platform/surface/surface_gpe.c
11754
11755 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
11756 M:      Hans de Goede <hdegoede@redhat.com>
11757 M:      Mark Gross <mgross@linux.intel.com>
11758 M:      Maximilian Luz <luzmaximilian@gmail.com>
11759 L:      platform-driver-x86@vger.kernel.org
11760 S:      Maintained
11761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
11762 F:      drivers/platform/surface/
11763
11764 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11765 M:      Chen Yu <yu.c.chen@intel.com>
11766 L:      platform-driver-x86@vger.kernel.org
11767 S:      Supported
11768 F:      drivers/platform/surface/surfacepro3_button.c
11769
11770 MICROTEK X6 SCANNER
11771 M:      Oliver Neukum <oliver@neukum.org>
11772 S:      Maintained
11773 F:      drivers/usb/image/microtek.*
11774
11775 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
11776 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11777 L:      linux-media@vger.kernel.org
11778 S:      Maintained
11779 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
11780 F:      Documentation/driver-api/media/drivers/ccs/
11781 F:      drivers/media/i2c/ccs-pll.c
11782 F:      drivers/media/i2c/ccs-pll.h
11783 F:      drivers/media/i2c/ccs/
11784 F:      include/uapi/linux/smiapp.h
11785
11786 MIPS
11787 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11788 L:      linux-mips@vger.kernel.org
11789 S:      Maintained
11790 W:      http://www.linux-mips.org/
11791 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11793 F:      Documentation/devicetree/bindings/mips/
11794 F:      Documentation/mips/
11795 F:      arch/mips/
11796 F:      drivers/platform/mips/
11797
11798 MIPS BOSTON DEVELOPMENT BOARD
11799 M:      Paul Burton <paulburton@kernel.org>
11800 L:      linux-mips@vger.kernel.org
11801 S:      Maintained
11802 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11803 F:      arch/mips/boot/dts/img/boston.dts
11804 F:      arch/mips/configs/generic/board-boston.config
11805 F:      drivers/clk/imgtec/clk-boston.c
11806 F:      include/dt-bindings/clock/boston-clock.h
11807
11808 MIPS CORE DRIVERS
11809 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11810 M:      Serge Semin <fancer.lancer@gmail.com>
11811 L:      linux-mips@vger.kernel.org
11812 S:      Supported
11813 F:      drivers/bus/mips_cdmm.c
11814 F:      drivers/clocksource/mips-gic-timer.c
11815 F:      drivers/cpuidle/cpuidle-cps.c
11816 F:      drivers/irqchip/irq-mips-cpu.c
11817 F:      drivers/irqchip/irq-mips-gic.c
11818
11819 MIPS GENERIC PLATFORM
11820 M:      Paul Burton <paulburton@kernel.org>
11821 L:      linux-mips@vger.kernel.org
11822 S:      Supported
11823 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
11824 F:      arch/mips/generic/
11825 F:      arch/mips/tools/generic-board-config.sh
11826
11827 MIPS RINT INSTRUCTION EMULATION
11828 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
11829 L:      linux-mips@vger.kernel.org
11830 S:      Supported
11831 F:      arch/mips/math-emu/dp_rint.c
11832 F:      arch/mips/math-emu/sp_rint.c
11833
11834 MIPS/LOONGSON1 ARCHITECTURE
11835 M:      Keguang Zhang <keguang.zhang@gmail.com>
11836 L:      linux-mips@vger.kernel.org
11837 S:      Maintained
11838 F:      arch/mips/include/asm/mach-loongson32/
11839 F:      arch/mips/loongson32/
11840 F:      drivers/*/*/*loongson1*
11841 F:      drivers/*/*loongson1*
11842
11843 MIPS/LOONGSON2EF ARCHITECTURE
11844 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11845 L:      linux-mips@vger.kernel.org
11846 S:      Maintained
11847 F:      arch/mips/include/asm/mach-loongson2ef/
11848 F:      arch/mips/loongson2ef/
11849 F:      drivers/*/*/*loongson2*
11850 F:      drivers/*/*loongson2*
11851
11852 MIPS/LOONGSON64 ARCHITECTURE
11853 M:      Huacai Chen <chenhuacai@kernel.org>
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-loongson64/
11858 F:      arch/mips/loongson64/
11859 F:      drivers/*/*/*loongson3*
11860 F:      drivers/*/*loongson3*
11861 F:      drivers/irqchip/irq-loongson*
11862 F:      drivers/platform/mips/cpu_hwmon.c
11863
11864 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11865 M:      Hans Verkuil <hverkuil@xs4all.nl>
11866 L:      linux-media@vger.kernel.org
11867 S:      Odd Fixes
11868 W:      https://linuxtv.org
11869 T:      git git://linuxtv.org/media_tree.git
11870 F:      drivers/media/radio/radio-miropcm20*
11871
11872 MMP SUPPORT
11873 R:      Lubomir Rintel <lkundrak@v3.sk>
11874 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11875 S:      Odd Fixes
11876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11877 F:      arch/arm/boot/dts/mmp*
11878 F:      arch/arm/mach-mmp/
11879 F:      include/linux/soc/mmp/
11880
11881 MMP USB PHY DRIVERS
11882 R:      Lubomir Rintel <lkundrak@v3.sk>
11883 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11884 S:      Maintained
11885 F:      drivers/phy/marvell/phy-mmp3-usb.c
11886 F:      drivers/phy/marvell/phy-pxa-usb.c
11887
11888 MMU GATHER AND TLB INVALIDATION
11889 M:      Will Deacon <will@kernel.org>
11890 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
11891 M:      Andrew Morton <akpm@linux-foundation.org>
11892 M:      Nick Piggin <npiggin@gmail.com>
11893 M:      Peter Zijlstra <peterz@infradead.org>
11894 L:      linux-arch@vger.kernel.org
11895 L:      linux-mm@kvack.org
11896 S:      Maintained
11897 F:      arch/*/include/asm/tlb.h
11898 F:      include/asm-generic/tlb.h
11899 F:      mm/mmu_gather.c
11900
11901 MN88472 MEDIA DRIVER
11902 M:      Antti Palosaari <crope@iki.fi>
11903 L:      linux-media@vger.kernel.org
11904 S:      Maintained
11905 W:      https://linuxtv.org
11906 W:      http://palosaari.fi/linux/
11907 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11908 F:      drivers/media/dvb-frontends/mn88472*
11909
11910 MN88473 MEDIA DRIVER
11911 M:      Antti Palosaari <crope@iki.fi>
11912 L:      linux-media@vger.kernel.org
11913 S:      Maintained
11914 W:      https://linuxtv.org
11915 W:      http://palosaari.fi/linux/
11916 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11917 F:      drivers/media/dvb-frontends/mn88473*
11918
11919 MODULE SUPPORT
11920 M:      Jessica Yu <jeyu@kernel.org>
11921 S:      Maintained
11922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11923 F:      include/linux/module.h
11924 F:      kernel/module.c
11925
11926 MONOLITHIC POWER SYSTEM PMIC DRIVER
11927 M:      Saravanan Sekar <sravanhome@gmail.com>
11928 S:      Maintained
11929 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
11930 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11931 F:      drivers/iio/adc/mp2629_adc.c
11932 F:      drivers/mfd/mp2629.c
11933 F:      drivers/power/supply/mp2629_charger.c
11934 F:      drivers/regulator/mp5416.c
11935 F:      drivers/regulator/mpq7920.c
11936 F:      drivers/regulator/mpq7920.h
11937 F:      include/linux/mfd/mp2629.h
11938
11939 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11940 S:      Orphan
11941 W:      http://popies.net/meye/
11942 F:      Documentation/userspace-api/media/drivers/meye*
11943 F:      drivers/media/pci/meye/
11944 F:      include/uapi/linux/meye.h
11945
11946 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11947 M:      Jiri Slaby <jirislaby@kernel.org>
11948 S:      Maintained
11949 F:      Documentation/driver-api/serial/moxa-smartio.rst
11950 F:      drivers/tty/mxser.*
11951
11952 MR800 AVERMEDIA USB FM RADIO DRIVER
11953 M:      Alexey Klimov <klimov.linux@gmail.com>
11954 L:      linux-media@vger.kernel.org
11955 S:      Maintained
11956 T:      git git://linuxtv.org/media_tree.git
11957 F:      drivers/media/radio/radio-mr800.c
11958
11959 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11960 M:      Alan Ott <alan@signal11.us>
11961 L:      linux-wpan@vger.kernel.org
11962 S:      Maintained
11963 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11964 F:      drivers/net/ieee802154/mrf24j40.c
11965
11966 MSI LAPTOP SUPPORT
11967 M:      "Lee, Chun-Yi" <jlee@suse.com>
11968 L:      platform-driver-x86@vger.kernel.org
11969 S:      Maintained
11970 F:      drivers/platform/x86/msi-laptop.c
11971
11972 MSI WMI SUPPORT
11973 L:      platform-driver-x86@vger.kernel.org
11974 S:      Orphan
11975 F:      drivers/platform/x86/msi-wmi.c
11976
11977 MSI001 MEDIA DRIVER
11978 M:      Antti Palosaari <crope@iki.fi>
11979 L:      linux-media@vger.kernel.org
11980 S:      Maintained
11981 W:      https://linuxtv.org
11982 W:      http://palosaari.fi/linux/
11983 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11984 T:      git git://linuxtv.org/anttip/media_tree.git
11985 F:      drivers/media/tuners/msi001*
11986
11987 MSI2500 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/usb/msi2500/
11996
11997 MSTAR INTERRUPT CONTROLLER DRIVER
11998 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
11999 M:      Daniel Palmer <daniel@thingy.jp>
12000 S:      Maintained
12001 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12002 F:      drivers/irqchip/irq-mst-intc.c
12003
12004 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12005 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12006 L:      linux-mtd@lists.infradead.org
12007 S:      Maintained
12008 F:      drivers/mtd/devices/docg3*
12009
12010 MT9M032 APTINA SENSOR DRIVER
12011 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12012 L:      linux-media@vger.kernel.org
12013 S:      Maintained
12014 T:      git git://linuxtv.org/media_tree.git
12015 F:      drivers/media/i2c/mt9m032.c
12016 F:      include/media/i2c/mt9m032.h
12017
12018 MT9P031 APTINA CAMERA SENSOR
12019 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12020 L:      linux-media@vger.kernel.org
12021 S:      Maintained
12022 T:      git git://linuxtv.org/media_tree.git
12023 F:      drivers/media/i2c/mt9p031.c
12024 F:      include/media/i2c/mt9p031.h
12025
12026 MT9T001 APTINA CAMERA SENSOR
12027 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12028 L:      linux-media@vger.kernel.org
12029 S:      Maintained
12030 T:      git git://linuxtv.org/media_tree.git
12031 F:      drivers/media/i2c/mt9t001.c
12032 F:      include/media/i2c/mt9t001.h
12033
12034 MT9T112 APTINA CAMERA SENSOR
12035 M:      Jacopo Mondi <jacopo@jmondi.org>
12036 L:      linux-media@vger.kernel.org
12037 S:      Odd Fixes
12038 T:      git git://linuxtv.org/media_tree.git
12039 F:      drivers/media/i2c/mt9t112.c
12040 F:      include/media/i2c/mt9t112.h
12041
12042 MT9V032 APTINA CAMERA SENSOR
12043 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12044 L:      linux-media@vger.kernel.org
12045 S:      Maintained
12046 T:      git git://linuxtv.org/media_tree.git
12047 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12048 F:      drivers/media/i2c/mt9v032.c
12049 F:      include/media/i2c/mt9v032.h
12050
12051 MT9V111 APTINA CAMERA SENSOR
12052 M:      Jacopo Mondi <jacopo@jmondi.org>
12053 L:      linux-media@vger.kernel.org
12054 S:      Maintained
12055 T:      git git://linuxtv.org/media_tree.git
12056 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12057 F:      drivers/media/i2c/mt9v111.c
12058
12059 MULTIFUNCTION DEVICES (MFD)
12060 M:      Lee Jones <lee.jones@linaro.org>
12061 S:      Supported
12062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12063 F:      Documentation/devicetree/bindings/mfd/
12064 F:      drivers/mfd/
12065 F:      include/dt-bindings/mfd/
12066 F:      include/linux/mfd/
12067
12068 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12069 S:      Orphan
12070 F:      drivers/mmc/host/mmc_spi.c
12071 F:      include/linux/spi/mmc_spi.h
12072
12073 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12074 M:      Ulf Hansson <ulf.hansson@linaro.org>
12075 L:      linux-mmc@vger.kernel.org
12076 S:      Maintained
12077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12078 F:      Documentation/devicetree/bindings/mmc/
12079 F:      drivers/mmc/
12080 F:      include/linux/mmc/
12081 F:      include/uapi/linux/mmc/
12082
12083 MULTIPLEXER SUBSYSTEM
12084 M:      Peter Rosin <peda@axentia.se>
12085 S:      Maintained
12086 F:      Documentation/ABI/testing/sysfs-class-mux*
12087 F:      Documentation/devicetree/bindings/mux/
12088 F:      drivers/mux/
12089 F:      include/dt-bindings/mux/
12090 F:      include/linux/mux/
12091
12092 MULTITECH MULTIPORT CARD (ISICOM)
12093 S:      Orphan
12094 F:      drivers/tty/isicom.c
12095 F:      include/linux/isicom.h
12096
12097 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12098 M:      Bin Liu <b-liu@ti.com>
12099 L:      linux-usb@vger.kernel.org
12100 S:      Maintained
12101 F:      drivers/usb/musb/
12102
12103 MXL301RF MEDIA DRIVER
12104 M:      Akihiro Tsukada <tskd08@gmail.com>
12105 L:      linux-media@vger.kernel.org
12106 S:      Odd Fixes
12107 F:      drivers/media/tuners/mxl301rf*
12108
12109 MXL5007T MEDIA DRIVER
12110 M:      Michael Krufky <mkrufky@linuxtv.org>
12111 L:      linux-media@vger.kernel.org
12112 S:      Maintained
12113 W:      https://linuxtv.org
12114 W:      http://github.com/mkrufky
12115 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12116 T:      git git://linuxtv.org/mkrufky/tuners.git
12117 F:      drivers/media/tuners/mxl5007t.*
12118
12119 MXSFB DRM DRIVER
12120 M:      Marek Vasut <marex@denx.de>
12121 M:      Stefan Agner <stefan@agner.ch>
12122 L:      dri-devel@lists.freedesktop.org
12123 S:      Supported
12124 T:      git git://anongit.freedesktop.org/drm/drm-misc
12125 F:      Documentation/devicetree/bindings/display/mxsfb.txt
12126 F:      drivers/gpu/drm/mxsfb/
12127
12128 MYLEX DAC960 PCI RAID Controller
12129 M:      Hannes Reinecke <hare@kernel.org>
12130 L:      linux-scsi@vger.kernel.org
12131 S:      Supported
12132 F:      drivers/scsi/myrb.*
12133 F:      drivers/scsi/myrs.*
12134
12135 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12136 M:      Chris Lee <christopher.lee@cspi.com>
12137 L:      netdev@vger.kernel.org
12138 S:      Supported
12139 W:      https://www.cspi.com/ethernet-products/support/downloads/
12140 F:      drivers/net/ethernet/myricom/myri10ge/
12141
12142 NAND FLASH SUBSYSTEM
12143 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12144 R:      Richard Weinberger <richard@nod.at>
12145 L:      linux-mtd@lists.infradead.org
12146 S:      Maintained
12147 W:      http://www.linux-mtd.infradead.org/
12148 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12149 C:      irc://irc.oftc.net/mtd
12150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12151 F:      drivers/mtd/nand/
12152 F:      include/linux/mtd/*nand*.h
12153
12154 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12155 M:      Daniel Mack <zonque@gmail.com>
12156 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12157 S:      Maintained
12158 W:      http://www.native-instruments.com
12159 F:      sound/usb/caiaq/
12160
12161 NATSEMI ETHERNET DRIVER (DP8381x)
12162 S:      Orphan
12163 F:      drivers/net/ethernet/natsemi/natsemi.c
12164
12165 NCR 5380 SCSI DRIVERS
12166 M:      Finn Thain <fthain@telegraphics.com.au>
12167 M:      Michael Schmitz <schmitzmic@gmail.com>
12168 L:      linux-scsi@vger.kernel.org
12169 S:      Maintained
12170 F:      Documentation/scsi/g_NCR5380.rst
12171 F:      drivers/scsi/NCR5380.*
12172 F:      drivers/scsi/arm/cumana_1.c
12173 F:      drivers/scsi/arm/oak.c
12174 F:      drivers/scsi/atari_scsi.*
12175 F:      drivers/scsi/dmx3191d.c
12176 F:      drivers/scsi/g_NCR5380.*
12177 F:      drivers/scsi/mac_scsi.*
12178 F:      drivers/scsi/sun3_scsi.*
12179 F:      drivers/scsi/sun3_scsi_vme.c
12180
12181 NCSI LIBRARY
12182 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
12183 S:      Maintained
12184 F:      net/ncsi/
12185
12186 NCT6775 HARDWARE MONITOR DRIVER
12187 M:      Guenter Roeck <linux@roeck-us.net>
12188 L:      linux-hwmon@vger.kernel.org
12189 S:      Maintained
12190 F:      Documentation/hwmon/nct6775.rst
12191 F:      drivers/hwmon/nct6775.c
12192
12193 NETDEVSIM
12194 M:      Jakub Kicinski <kuba@kernel.org>
12195 S:      Maintained
12196 F:      drivers/net/netdevsim/*
12197
12198 NETEM NETWORK EMULATOR
12199 M:      Stephen Hemminger <stephen@networkplumber.org>
12200 L:      netdev@vger.kernel.org
12201 S:      Maintained
12202 F:      net/sched/sch_netem.c
12203
12204 NETERION 10GbE DRIVERS (s2io/vxge)
12205 M:      Jon Mason <jdmason@kudzu.us>
12206 L:      netdev@vger.kernel.org
12207 S:      Supported
12208 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12209 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12210 F:      drivers/net/ethernet/neterion/
12211
12212 NETFILTER
12213 M:      Pablo Neira Ayuso <pablo@netfilter.org>
12214 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
12215 M:      Florian Westphal <fw@strlen.de>
12216 L:      netfilter-devel@vger.kernel.org
12217 L:      coreteam@netfilter.org
12218 S:      Maintained
12219 W:      http://www.netfilter.org/
12220 W:      http://www.iptables.org/
12221 W:      http://www.nftables.org/
12222 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
12223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12225 F:      include/linux/netfilter*
12226 F:      include/linux/netfilter/
12227 F:      include/net/netfilter/
12228 F:      include/uapi/linux/netfilter*
12229 F:      include/uapi/linux/netfilter/
12230 F:      net/*/netfilter.c
12231 F:      net/*/netfilter/
12232 F:      net/bridge/br_netfilter*.c
12233 F:      net/netfilter/
12234
12235 NETROM NETWORK LAYER
12236 M:      Ralf Baechle <ralf@linux-mips.org>
12237 L:      linux-hams@vger.kernel.org
12238 S:      Maintained
12239 W:      http://www.linux-ax25.org/
12240 F:      include/net/netrom.h
12241 F:      include/uapi/linux/netrom.h
12242 F:      net/netrom/
12243
12244 NETRONOME ETHERNET DRIVERS
12245 M:      Simon Horman <simon.horman@netronome.com>
12246 R:      Jakub Kicinski <kuba@kernel.org>
12247 L:      oss-drivers@netronome.com
12248 S:      Maintained
12249 F:      drivers/net/ethernet/netronome/
12250
12251 NETWORK BLOCK DEVICE (NBD)
12252 M:      Josef Bacik <josef@toxicpanda.com>
12253 L:      linux-block@vger.kernel.org
12254 L:      nbd@other.debian.org
12255 S:      Maintained
12256 F:      Documentation/admin-guide/blockdev/nbd.rst
12257 F:      drivers/block/nbd.c
12258 F:      include/trace/events/nbd.h
12259 F:      include/uapi/linux/nbd.h
12260
12261 NETWORK DROP MONITOR
12262 M:      Neil Horman <nhorman@tuxdriver.com>
12263 L:      netdev@vger.kernel.org
12264 S:      Maintained
12265 W:      https://fedorahosted.org/dropwatch/
12266 F:      include/uapi/linux/net_dropmon.h
12267 F:      net/core/drop_monitor.c
12268
12269 NETWORKING DRIVERS
12270 M:      "David S. Miller" <davem@davemloft.net>
12271 M:      Jakub Kicinski <kuba@kernel.org>
12272 L:      netdev@vger.kernel.org
12273 S:      Maintained
12274 W:      http://www.linuxfoundation.org/en/Net
12275 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12278 F:      Documentation/devicetree/bindings/net/
12279 F:      drivers/connector/
12280 F:      drivers/net/
12281 F:      include/linux/etherdevice.h
12282 F:      include/linux/fcdevice.h
12283 F:      include/linux/fddidevice.h
12284 F:      include/linux/hippidevice.h
12285 F:      include/linux/if_*
12286 F:      include/linux/inetdevice.h
12287 F:      include/linux/netdevice.h
12288 F:      include/uapi/linux/if_*
12289 F:      include/uapi/linux/netdevice.h
12290
12291 NETWORKING DRIVERS (WIRELESS)
12292 M:      Kalle Valo <kvalo@codeaurora.org>
12293 L:      linux-wireless@vger.kernel.org
12294 S:      Maintained
12295 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
12297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
12298 F:      Documentation/devicetree/bindings/net/wireless/
12299 F:      drivers/net/wireless/
12300
12301 NETWORKING [DSA]
12302 M:      Andrew Lunn <andrew@lunn.ch>
12303 M:      Vivien Didelot <vivien.didelot@gmail.com>
12304 M:      Florian Fainelli <f.fainelli@gmail.com>
12305 M:      Vladimir Oltean <olteanv@gmail.com>
12306 S:      Maintained
12307 F:      Documentation/devicetree/bindings/net/dsa/
12308 F:      drivers/net/dsa/
12309 F:      include/linux/dsa/
12310 F:      include/linux/platform_data/dsa.h
12311 F:      include/net/dsa.h
12312 F:      net/dsa/
12313
12314 NETWORKING [GENERAL]
12315 M:      "David S. Miller" <davem@davemloft.net>
12316 M:      Jakub Kicinski <kuba@kernel.org>
12317 L:      netdev@vger.kernel.org
12318 S:      Maintained
12319 W:      http://www.linuxfoundation.org/en/Net
12320 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12321 B:      mailto:netdev@vger.kernel.org
12322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12324 F:      Documentation/networking/
12325 F:      include/linux/in.h
12326 F:      include/linux/net.h
12327 F:      include/linux/netdevice.h
12328 F:      include/net/
12329 F:      include/uapi/linux/in.h
12330 F:      include/uapi/linux/net.h
12331 F:      include/uapi/linux/net_namespace.h
12332 F:      include/uapi/linux/netdevice.h
12333 F:      lib/net_utils.c
12334 F:      lib/random32.c
12335 F:      net/
12336 F:      tools/testing/selftests/net/
12337
12338 NETWORKING [IPSEC]
12339 M:      Steffen Klassert <steffen.klassert@secunet.com>
12340 M:      Herbert Xu <herbert@gondor.apana.org.au>
12341 M:      "David S. Miller" <davem@davemloft.net>
12342 L:      netdev@vger.kernel.org
12343 S:      Maintained
12344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
12345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
12346 F:      include/net/xfrm.h
12347 F:      include/uapi/linux/xfrm.h
12348 F:      net/ipv4/ah4.c
12349 F:      net/ipv4/esp4*
12350 F:      net/ipv4/ip_vti.c
12351 F:      net/ipv4/ipcomp.c
12352 F:      net/ipv4/xfrm*
12353 F:      net/ipv6/ah6.c
12354 F:      net/ipv6/esp6*
12355 F:      net/ipv6/ip6_vti.c
12356 F:      net/ipv6/ipcomp6.c
12357 F:      net/ipv6/xfrm*
12358 F:      net/key/
12359 F:      net/xfrm/
12360 F:      tools/testing/selftests/net/ipsec.c
12361
12362 NETWORKING [IPv4/IPv6]
12363 M:      "David S. Miller" <davem@davemloft.net>
12364 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
12365 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
12366 L:      netdev@vger.kernel.org
12367 S:      Maintained
12368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12369 F:      arch/x86/net/*
12370 F:      include/net/ip*
12371 F:      net/ipv4/
12372 F:      net/ipv6/
12373
12374 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
12375 M:      Paul Moore <paul@paul-moore.com>
12376 L:      netdev@vger.kernel.org
12377 L:      linux-security-module@vger.kernel.org
12378 S:      Maintained
12379 W:      https://github.com/netlabel
12380 F:      Documentation/netlabel/
12381 F:      include/net/calipso.h
12382 F:      include/net/cipso_ipv4.h
12383 F:      include/net/netlabel.h
12384 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
12385 F:      include/uapi/linux/netfilter/xt_SECMARK.h
12386 F:      net/ipv4/cipso_ipv4.c
12387 F:      net/ipv6/calipso.c
12388 F:      net/netfilter/xt_CONNSECMARK.c
12389 F:      net/netfilter/xt_SECMARK.c
12390 F:      net/netlabel/
12391
12392 NETWORKING [MPTCP]
12393 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
12394 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
12395 L:      netdev@vger.kernel.org
12396 L:      mptcp@lists.01.org
12397 S:      Maintained
12398 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
12399 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
12400 F:      Documentation/networking/mptcp-sysctl.rst
12401 F:      include/net/mptcp.h
12402 F:      include/uapi/linux/mptcp.h
12403 F:      net/mptcp/
12404 F:      tools/testing/selftests/net/mptcp/
12405
12406 NETWORKING [TCP]
12407 M:      Eric Dumazet <edumazet@google.com>
12408 L:      netdev@vger.kernel.org
12409 S:      Maintained
12410 F:      include/linux/tcp.h
12411 F:      include/net/tcp.h
12412 F:      include/trace/events/tcp.h
12413 F:      include/uapi/linux/tcp.h
12414 F:      net/ipv4/syncookies.c
12415 F:      net/ipv4/tcp*.c
12416 F:      net/ipv6/syncookies.c
12417 F:      net/ipv6/tcp*.c
12418
12419 NETWORKING [TLS]
12420 M:      Boris Pismenny <borisp@nvidia.com>
12421 M:      Aviad Yehezkel <aviadye@nvidia.com>
12422 M:      John Fastabend <john.fastabend@gmail.com>
12423 M:      Daniel Borkmann <daniel@iogearbox.net>
12424 M:      Jakub Kicinski <kuba@kernel.org>
12425 L:      netdev@vger.kernel.org
12426 S:      Maintained
12427 F:      include/net/tls.h
12428 F:      include/uapi/linux/tls.h
12429 F:      net/tls/*
12430
12431 NETWORKING [WIRELESS]
12432 L:      linux-wireless@vger.kernel.org
12433 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12434
12435 NETXEN (1/10) GbE SUPPORT
12436 M:      Manish Chopra <manishc@marvell.com>
12437 M:      Rahul Verma <rahulv@marvell.com>
12438 M:      GR-Linux-NIC-Dev@marvell.com
12439 L:      netdev@vger.kernel.org
12440 S:      Supported
12441 F:      drivers/net/ethernet/qlogic/netxen/
12442
12443 NET_FAILOVER MODULE
12444 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
12445 L:      netdev@vger.kernel.org
12446 S:      Supported
12447 F:      Documentation/networking/net_failover.rst
12448 F:      drivers/net/net_failover.c
12449 F:      include/net/net_failover.h
12450
12451 NEXTHOP
12452 M:      David Ahern <dsahern@kernel.org>
12453 L:      netdev@vger.kernel.org
12454 S:      Maintained
12455 F:      include/net/netns/nexthop.h
12456 F:      include/net/nexthop.h
12457 F:      include/uapi/linux/nexthop.h
12458 F:      net/ipv4/nexthop.c
12459
12460 NFC SUBSYSTEM
12461 L:      netdev@vger.kernel.org
12462 S:      Orphan
12463 F:      Documentation/devicetree/bindings/net/nfc/
12464 F:      drivers/nfc/
12465 F:      include/linux/platform_data/nfcmrvl.h
12466 F:      include/net/nfc/
12467 F:      include/uapi/linux/nfc.h
12468 F:      net/nfc/
12469
12470 NFS, SUNRPC, AND LOCKD CLIENTS
12471 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
12472 M:      Anna Schumaker <anna.schumaker@netapp.com>
12473 L:      linux-nfs@vger.kernel.org
12474 S:      Maintained
12475 W:      http://client.linux-nfs.org
12476 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12477 F:      fs/lockd/
12478 F:      fs/nfs/
12479 F:      fs/nfs_common/
12480 F:      include/linux/lockd/
12481 F:      include/linux/nfs*
12482 F:      include/linux/sunrpc/
12483 F:      include/uapi/linux/nfs*
12484 F:      include/uapi/linux/sunrpc/
12485 F:      net/sunrpc/
12486 F:      Documentation/filesystems/nfs/
12487
12488 NILFS2 FILESYSTEM
12489 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
12490 L:      linux-nilfs@vger.kernel.org
12491 S:      Supported
12492 W:      https://nilfs.sourceforge.io/
12493 W:      https://nilfs.osdn.jp/
12494 T:      git git://github.com/konis/nilfs2.git
12495 F:      Documentation/filesystems/nilfs2.rst
12496 F:      fs/nilfs2/
12497 F:      include/trace/events/nilfs2.h
12498 F:      include/uapi/linux/nilfs2_api.h
12499 F:      include/uapi/linux/nilfs2_ondisk.h
12500
12501 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
12502 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12503 S:      Maintained
12504 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12505 F:      Documentation/scsi/NinjaSCSI.rst
12506 F:      drivers/scsi/pcmcia/nsp_*
12507
12508 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12509 M:      GOTO Masanori <gotom@debian.or.jp>
12510 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12511 S:      Maintained
12512 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12513 F:      Documentation/scsi/NinjaSCSI.rst
12514 F:      drivers/scsi/nsp32*
12515
12516 NIOS2 ARCHITECTURE
12517 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12518 S:      Maintained
12519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12520 F:      arch/nios2/
12521
12522 NITRO ENCLAVES (NE)
12523 M:      Andra Paraschiv <andraprs@amazon.com>
12524 M:      Alexandru Vasile <lexnv@amazon.com>
12525 M:      Alexandru Ciobotaru <alcioa@amazon.com>
12526 L:      linux-kernel@vger.kernel.org
12527 S:      Supported
12528 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
12529 F:      Documentation/virt/ne_overview.rst
12530 F:      drivers/virt/nitro_enclaves/
12531 F:      include/linux/nitro_enclaves.h
12532 F:      include/uapi/linux/nitro_enclaves.h
12533 F:      samples/nitro_enclaves/
12534
12535 NOHZ, DYNTICKS SUPPORT
12536 M:      Frederic Weisbecker <fweisbec@gmail.com>
12537 M:      Thomas Gleixner <tglx@linutronix.de>
12538 M:      Ingo Molnar <mingo@kernel.org>
12539 L:      linux-kernel@vger.kernel.org
12540 S:      Maintained
12541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12542 F:      include/linux/sched/nohz.h
12543 F:      include/linux/tick.h
12544 F:      kernel/time/tick*.*
12545
12546 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12547 M:      Pavel Machek <pavel@ucw.cz>
12548 M:      Sakari Ailus <sakari.ailus@iki.fi>
12549 L:      linux-media@vger.kernel.org
12550 S:      Maintained
12551 F:      drivers/media/i2c/ad5820.c
12552 F:      drivers/media/i2c/et8ek8
12553
12554 NOKIA N900 POWER SUPPLY DRIVERS
12555 R:      Pali Rohár <pali@kernel.org>
12556 F:      drivers/power/supply/bq2415x_charger.c
12557 F:      drivers/power/supply/bq27xxx_battery.c
12558 F:      drivers/power/supply/bq27xxx_battery_i2c.c
12559 F:      drivers/power/supply/isp1704_charger.c
12560 F:      drivers/power/supply/rx51_battery.c
12561 F:      include/linux/power/bq2415x_charger.h
12562 F:      include/linux/power/bq27xxx_battery.h
12563
12564 NOLIBC HEADER FILE
12565 M:      Willy Tarreau <w@1wt.eu>
12566 S:      Maintained
12567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12568 F:      tools/include/nolibc/
12569
12570 NSDEPS
12571 M:      Matthias Maennich <maennich@google.com>
12572 S:      Maintained
12573 F:      Documentation/core-api/symbol-namespaces.rst
12574 F:      scripts/nsdeps
12575
12576 NTB AMD DRIVER
12577 M:      Sanjay R Mehta <sanju.mehta@amd.com>
12578 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
12579 L:      linux-ntb@googlegroups.com
12580 S:      Supported
12581 F:      drivers/ntb/hw/amd/
12582
12583 NTB DRIVER CORE
12584 M:      Jon Mason <jdmason@kudzu.us>
12585 M:      Dave Jiang <dave.jiang@intel.com>
12586 M:      Allen Hubbe <allenbh@gmail.com>
12587 L:      linux-ntb@googlegroups.com
12588 S:      Supported
12589 W:      https://github.com/jonmason/ntb/wiki
12590 T:      git git://github.com/jonmason/ntb.git
12591 F:      drivers/net/ntb_netdev.c
12592 F:      drivers/ntb/
12593 F:      include/linux/ntb.h
12594 F:      include/linux/ntb_transport.h
12595 F:      tools/testing/selftests/ntb/
12596
12597 NTB IDT DRIVER
12598 M:      Serge Semin <fancer.lancer@gmail.com>
12599 L:      linux-ntb@googlegroups.com
12600 S:      Supported
12601 F:      drivers/ntb/hw/idt/
12602
12603 NTB INTEL DRIVER
12604 M:      Dave Jiang <dave.jiang@intel.com>
12605 L:      linux-ntb@googlegroups.com
12606 S:      Supported
12607 W:      https://github.com/davejiang/linux/wiki
12608 T:      git https://github.com/davejiang/linux.git
12609 F:      drivers/ntb/hw/intel/
12610
12611 NTFS FILESYSTEM
12612 M:      Anton Altaparmakov <anton@tuxera.com>
12613 L:      linux-ntfs-dev@lists.sourceforge.net
12614 S:      Supported
12615 W:      http://www.tuxera.com/
12616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12617 F:      Documentation/filesystems/ntfs.rst
12618 F:      fs/ntfs/
12619
12620 NUBUS SUBSYSTEM
12621 M:      Finn Thain <fthain@telegraphics.com.au>
12622 L:      linux-m68k@lists.linux-m68k.org
12623 S:      Maintained
12624 F:      arch/*/include/asm/nubus.h
12625 F:      drivers/nubus/
12626 F:      include/linux/nubus.h
12627 F:      include/uapi/linux/nubus.h
12628
12629 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12630 M:      Antonino Daplas <adaplas@gmail.com>
12631 L:      linux-fbdev@vger.kernel.org
12632 S:      Maintained
12633 F:      drivers/video/fbdev/nvidia/
12634 F:      drivers/video/fbdev/riva/
12635
12636 NVM EXPRESS DRIVER
12637 M:      Keith Busch <kbusch@kernel.org>
12638 M:      Jens Axboe <axboe@fb.com>
12639 M:      Christoph Hellwig <hch@lst.de>
12640 M:      Sagi Grimberg <sagi@grimberg.me>
12641 L:      linux-nvme@lists.infradead.org
12642 S:      Supported
12643 W:      http://git.infradead.org/nvme.git
12644 T:      git://git.infradead.org/nvme.git
12645 F:      drivers/nvme/host/
12646 F:      include/linux/nvme.h
12647 F:      include/uapi/linux/nvme_ioctl.h
12648
12649 NVM EXPRESS FC TRANSPORT DRIVERS
12650 M:      James Smart <james.smart@broadcom.com>
12651 L:      linux-nvme@lists.infradead.org
12652 S:      Supported
12653 F:      drivers/nvme/host/fc.c
12654 F:      drivers/nvme/target/fc.c
12655 F:      drivers/nvme/target/fcloop.c
12656 F:      include/linux/nvme-fc-driver.h
12657 F:      include/linux/nvme-fc.h
12658
12659 NVM EXPRESS TARGET DRIVER
12660 M:      Christoph Hellwig <hch@lst.de>
12661 M:      Sagi Grimberg <sagi@grimberg.me>
12662 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
12663 L:      linux-nvme@lists.infradead.org
12664 S:      Supported
12665 W:      http://git.infradead.org/nvme.git
12666 T:      git://git.infradead.org/nvme.git
12667 F:      drivers/nvme/target/
12668
12669 NVMEM FRAMEWORK
12670 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12671 S:      Maintained
12672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
12673 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12674 F:      Documentation/devicetree/bindings/nvmem/
12675 F:      drivers/nvmem/
12676 F:      include/linux/nvmem-consumer.h
12677 F:      include/linux/nvmem-provider.h
12678
12679 NXP FSPI DRIVER
12680 M:      Ashish Kumar <ashish.kumar@nxp.com>
12681 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
12682 L:      linux-spi@vger.kernel.org
12683 S:      Maintained
12684 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12685 F:      drivers/spi/spi-nxp-fspi.c
12686
12687 NXP FXAS21002C DRIVER
12688 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12689 L:      linux-iio@vger.kernel.org
12690 S:      Maintained
12691 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
12692 F:      drivers/iio/gyro/fxas21002c.h
12693 F:      drivers/iio/gyro/fxas21002c_core.c
12694 F:      drivers/iio/gyro/fxas21002c_i2c.c
12695 F:      drivers/iio/gyro/fxas21002c_spi.c
12696
12697 NXP i.MX 8MQ DCSS DRIVER
12698 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
12699 R:      Lucas Stach <l.stach@pengutronix.de>
12700 L:      dri-devel@lists.freedesktop.org
12701 S:      Maintained
12702 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
12703 F:      drivers/gpu/drm/imx/dcss/
12704
12705 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
12706 M:      Jagan Teki <jagan@amarulasolutions.com>
12707 S:      Maintained
12708 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
12709 F:      drivers/regulator/pf8x00-regulator.c
12710
12711 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
12712 M:      Krzysztof Kozlowski <krzk@kernel.org>
12713 L:      linux-kernel@vger.kernel.org
12714 S:      Maintained
12715 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
12716 F:      drivers/extcon/extcon-ptn5150.c
12717
12718 NXP SGTL5000 DRIVER
12719 M:      Fabio Estevam <festevam@gmail.com>
12720 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12721 S:      Maintained
12722 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
12723 F:      sound/soc/codecs/sgtl5000*
12724
12725 NXP SJA1105 ETHERNET SWITCH DRIVER
12726 M:      Vladimir Oltean <olteanv@gmail.com>
12727 L:      linux-kernel@vger.kernel.org
12728 S:      Maintained
12729 F:      drivers/net/dsa/sja1105
12730
12731 NXP TDA998X DRM DRIVER
12732 M:      Russell King <linux@armlinux.org.uk>
12733 S:      Maintained
12734 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12735 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12736 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12737 F:      include/drm/i2c/tda998x.h
12738 F:      include/dt-bindings/display/tda998x.h
12739 K:      "nxp,tda998x"
12740
12741 NXP TFA9879 DRIVER
12742 M:      Peter Rosin <peda@axentia.se>
12743 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12744 S:      Maintained
12745 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12746 F:      sound/soc/codecs/tfa9879*
12747
12748 NXP-NCI NFC DRIVER
12749 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
12750 R:      Charles Gorand <charles.gorand@effinnov.com>
12751 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12752 S:      Supported
12753 F:      drivers/nfc/nxp-nci
12754
12755 OBJAGG
12756 M:      Jiri Pirko <jiri@nvidia.com>
12757 L:      netdev@vger.kernel.org
12758 S:      Supported
12759 F:      include/linux/objagg.h
12760 F:      lib/objagg.c
12761 F:      lib/test_objagg.c
12762
12763 OBJTOOL
12764 M:      Josh Poimboeuf <jpoimboe@redhat.com>
12765 M:      Peter Zijlstra <peterz@infradead.org>
12766 S:      Supported
12767 F:      tools/objtool/
12768 F:      include/linux/objtool.h
12769
12770 OCELOT ETHERNET SWITCH DRIVER
12771 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
12772 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
12773 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
12774 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12775 L:      netdev@vger.kernel.org
12776 S:      Supported
12777 F:      drivers/net/dsa/ocelot/*
12778 F:      drivers/net/ethernet/mscc/
12779 F:      include/soc/mscc/ocelot*
12780 F:      net/dsa/tag_ocelot.c
12781 F:      tools/testing/selftests/drivers/net/ocelot/*
12782
12783 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12784 M:      Frederic Barrat <fbarrat@linux.ibm.com>
12785 M:      Andrew Donnellan <ajd@linux.ibm.com>
12786 L:      linuxppc-dev@lists.ozlabs.org
12787 S:      Supported
12788 F:      Documentation/userspace-api/accelerators/ocxl.rst
12789 F:      arch/powerpc/include/asm/pnv-ocxl.h
12790 F:      arch/powerpc/platforms/powernv/ocxl.c
12791 F:      drivers/misc/ocxl/
12792 F:      include/misc/ocxl*
12793 F:      include/uapi/misc/ocxl.h
12794
12795 OMAP AUDIO SUPPORT
12796 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
12797 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
12798 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12799 L:      linux-omap@vger.kernel.org
12800 S:      Maintained
12801 F:      sound/soc/ti/n810.c
12802 F:      sound/soc/ti/omap*
12803 F:      sound/soc/ti/rx51.c
12804 F:      sound/soc/ti/sdma-pcm.*
12805
12806 OMAP CLOCK FRAMEWORK SUPPORT
12807 M:      Paul Walmsley <paul@pwsan.com>
12808 L:      linux-omap@vger.kernel.org
12809 S:      Maintained
12810 F:      arch/arm/*omap*/*clock*
12811
12812 OMAP DEVICE TREE SUPPORT
12813 M:      Benoît Cousson <bcousson@baylibre.com>
12814 M:      Tony Lindgren <tony@atomide.com>
12815 L:      linux-omap@vger.kernel.org
12816 L:      devicetree@vger.kernel.org
12817 S:      Maintained
12818 F:      arch/arm/boot/dts/*am3*
12819 F:      arch/arm/boot/dts/*am4*
12820 F:      arch/arm/boot/dts/*am5*
12821 F:      arch/arm/boot/dts/*dra7*
12822 F:      arch/arm/boot/dts/*omap*
12823 F:      arch/arm/boot/dts/logicpd-som-lv*
12824 F:      arch/arm/boot/dts/logicpd-torpedo*
12825
12826 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12827 L:      linux-omap@vger.kernel.org
12828 L:      linux-fbdev@vger.kernel.org
12829 S:      Orphan
12830 F:      Documentation/arm/omap/dss.rst
12831 F:      drivers/video/fbdev/omap2/
12832
12833 OMAP FRAMEBUFFER SUPPORT
12834 L:      linux-fbdev@vger.kernel.org
12835 L:      linux-omap@vger.kernel.org
12836 S:      Orphan
12837 F:      drivers/video/fbdev/omap/
12838
12839 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12840 M:      Roger Quadros <rogerq@ti.com>
12841 M:      Tony Lindgren <tony@atomide.com>
12842 L:      linux-omap@vger.kernel.org
12843 S:      Maintained
12844 F:      arch/arm/mach-omap2/*gpmc*
12845 F:      drivers/memory/omap-gpmc.c
12846
12847 OMAP GPIO DRIVER
12848 M:      Grygorii Strashko <grygorii.strashko@ti.com>
12849 M:      Santosh Shilimkar <ssantosh@kernel.org>
12850 M:      Kevin Hilman <khilman@kernel.org>
12851 L:      linux-omap@vger.kernel.org
12852 S:      Maintained
12853 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12854 F:      drivers/gpio/gpio-omap.c
12855
12856 OMAP HARDWARE SPINLOCK SUPPORT
12857 M:      Ohad Ben-Cohen <ohad@wizery.com>
12858 L:      linux-omap@vger.kernel.org
12859 S:      Maintained
12860 F:      drivers/hwspinlock/omap_hwspinlock.c
12861
12862 OMAP HS MMC SUPPORT
12863 L:      linux-mmc@vger.kernel.org
12864 L:      linux-omap@vger.kernel.org
12865 S:      Orphan
12866 F:      drivers/mmc/host/omap_hsmmc.c
12867
12868 OMAP HWMOD DATA
12869 M:      Paul Walmsley <paul@pwsan.com>
12870 L:      linux-omap@vger.kernel.org
12871 S:      Maintained
12872 F:      arch/arm/mach-omap2/omap_hwmod*data*
12873
12874 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12875 M:      Benoît Cousson <bcousson@baylibre.com>
12876 L:      linux-omap@vger.kernel.org
12877 S:      Maintained
12878 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12879
12880 OMAP HWMOD SUPPORT
12881 M:      Benoît Cousson <bcousson@baylibre.com>
12882 M:      Paul Walmsley <paul@pwsan.com>
12883 L:      linux-omap@vger.kernel.org
12884 S:      Maintained
12885 F:      arch/arm/mach-omap2/omap_hwmod.*
12886
12887 OMAP I2C DRIVER
12888 M:      Vignesh R <vigneshr@ti.com>
12889 L:      linux-omap@vger.kernel.org
12890 L:      linux-i2c@vger.kernel.org
12891 S:      Maintained
12892 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12893 F:      drivers/i2c/busses/i2c-omap.c
12894
12895 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12896 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12897 L:      linux-media@vger.kernel.org
12898 S:      Maintained
12899 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12900 F:      drivers/media/platform/omap3isp/
12901 F:      drivers/staging/media/omap4iss/
12902
12903 OMAP MMC SUPPORT
12904 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12905 L:      linux-omap@vger.kernel.org
12906 S:      Odd Fixes
12907 F:      drivers/mmc/host/omap.c
12908
12909 OMAP POWER MANAGEMENT SUPPORT
12910 M:      Kevin Hilman <khilman@kernel.org>
12911 L:      linux-omap@vger.kernel.org
12912 S:      Maintained
12913 F:      arch/arm/*omap*/*pm*
12914 F:      drivers/cpufreq/omap-cpufreq.c
12915
12916 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12917 M:      Rajendra Nayak <rnayak@codeaurora.org>
12918 M:      Paul Walmsley <paul@pwsan.com>
12919 L:      linux-omap@vger.kernel.org
12920 S:      Maintained
12921 F:      arch/arm/mach-omap2/prm*
12922
12923 OMAP RANDOM NUMBER GENERATOR SUPPORT
12924 M:      Deepak Saxena <dsaxena@plexity.net>
12925 S:      Maintained
12926 F:      drivers/char/hw_random/omap-rng.c
12927
12928 OMAP USB SUPPORT
12929 L:      linux-usb@vger.kernel.org
12930 L:      linux-omap@vger.kernel.org
12931 S:      Orphan
12932 F:      arch/arm/*omap*/usb*
12933 F:      drivers/usb/*/*omap*
12934
12935 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12936 M:      Mark Jackson <mpfj@newflow.co.uk>
12937 L:      linux-omap@vger.kernel.org
12938 S:      Maintained
12939 F:      arch/arm/boot/dts/am335x-nano.dts
12940
12941 OMAP1 SUPPORT
12942 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12943 M:      Tony Lindgren <tony@atomide.com>
12944 L:      linux-omap@vger.kernel.org
12945 S:      Maintained
12946 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12948 F:      arch/arm/configs/omap1_defconfig
12949 F:      arch/arm/mach-omap1/
12950 F:      arch/arm/plat-omap/
12951 F:      drivers/i2c/busses/i2c-omap.c
12952 F:      include/linux/platform_data/ams-delta-fiq.h
12953 F:      include/linux/platform_data/i2c-omap.h
12954
12955 OMAP2+ SUPPORT
12956 M:      Tony Lindgren <tony@atomide.com>
12957 L:      linux-omap@vger.kernel.org
12958 S:      Maintained
12959 W:      http://www.muru.com/linux/omap/
12960 W:      http://linux.omap.com/
12961 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12963 F:      arch/arm/configs/omap2plus_defconfig
12964 F:      arch/arm/mach-omap2/
12965 F:      arch/arm/plat-omap/
12966 F:      drivers/bus/ti-sysc.c
12967 F:      drivers/i2c/busses/i2c-omap.c
12968 F:      drivers/irqchip/irq-omap-intc.c
12969 F:      drivers/mfd/*omap*.c
12970 F:      drivers/mfd/menelaus.c
12971 F:      drivers/mfd/palmas.c
12972 F:      drivers/mfd/tps65217.c
12973 F:      drivers/mfd/tps65218.c
12974 F:      drivers/mfd/tps65910.c
12975 F:      drivers/mfd/twl-core.[ch]
12976 F:      drivers/mfd/twl4030*.c
12977 F:      drivers/mfd/twl6030*.c
12978 F:      drivers/mfd/twl6040*.c
12979 F:      drivers/regulator/palmas-regulator*.c
12980 F:      drivers/regulator/pbias-regulator.c
12981 F:      drivers/regulator/tps65217-regulator.c
12982 F:      drivers/regulator/tps65218-regulator.c
12983 F:      drivers/regulator/tps65910-regulator.c
12984 F:      drivers/regulator/twl-regulator.c
12985 F:      drivers/regulator/twl6030-regulator.c
12986 F:      include/linux/platform_data/i2c-omap.h
12987 F:      include/linux/platform_data/ti-sysc.h
12988
12989 OMFS FILESYSTEM
12990 M:      Bob Copeland <me@bobcopeland.com>
12991 L:      linux-karma-devel@lists.sourceforge.net
12992 S:      Maintained
12993 F:      Documentation/filesystems/omfs.rst
12994 F:      fs/omfs/
12995
12996 OMNIKEY CARDMAN 4000 DRIVER
12997 M:      Harald Welte <laforge@gnumonks.org>
12998 S:      Maintained
12999 F:      drivers/char/pcmcia/cm4000_cs.c
13000 F:      include/linux/cm4000_cs.h
13001 F:      include/uapi/linux/cm4000_cs.h
13002
13003 OMNIKEY CARDMAN 4040 DRIVER
13004 M:      Harald Welte <laforge@gnumonks.org>
13005 S:      Maintained
13006 F:      drivers/char/pcmcia/cm4040_cs.*
13007
13008 OMNIVISION OV02A10 SENSOR DRIVER
13009 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13010 L:      linux-media@vger.kernel.org
13011 S:      Maintained
13012 T:      git git://linuxtv.org/media_tree.git
13013 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13014 F:      drivers/media/i2c/ov02a10.c
13015
13016 OMNIVISION OV13858 SENSOR DRIVER
13017 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13018 L:      linux-media@vger.kernel.org
13019 S:      Maintained
13020 T:      git git://linuxtv.org/media_tree.git
13021 F:      drivers/media/i2c/ov13858.c
13022
13023 OMNIVISION OV2680 SENSOR DRIVER
13024 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13025 L:      linux-media@vger.kernel.org
13026 S:      Maintained
13027 T:      git git://linuxtv.org/media_tree.git
13028 F:      Documentation/devicetree/bindings/media/i2c/ov2680.yaml
13029 F:      drivers/media/i2c/ov2680.c
13030
13031 OMNIVISION OV2685 SENSOR DRIVER
13032 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13033 L:      linux-media@vger.kernel.org
13034 S:      Maintained
13035 T:      git git://linuxtv.org/media_tree.git
13036 F:      drivers/media/i2c/ov2685.c
13037
13038 OMNIVISION OV2740 SENSOR DRIVER
13039 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13040 R:      Shawn Tu <shawnx.tu@intel.com>
13041 R:      Bingbu Cao <bingbu.cao@intel.com>
13042 L:      linux-media@vger.kernel.org
13043 S:      Maintained
13044 T:      git git://linuxtv.org/media_tree.git
13045 F:      drivers/media/i2c/ov2740.c
13046
13047 OMNIVISION OV5640 SENSOR DRIVER
13048 M:      Steve Longerbeam <slongerbeam@gmail.com>
13049 L:      linux-media@vger.kernel.org
13050 S:      Maintained
13051 T:      git git://linuxtv.org/media_tree.git
13052 F:      drivers/media/i2c/ov5640.c
13053
13054 OMNIVISION OV5647 SENSOR DRIVER
13055 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
13056 M:      Jacopo Mondi <jacopo@jmondi.org>
13057 L:      linux-media@vger.kernel.org
13058 S:      Maintained
13059 T:      git git://linuxtv.org/media_tree.git
13060 F:      Documentation/devicetree/bindings/media/i2c/ov5647.yaml
13061 F:      drivers/media/i2c/ov5647.c
13062
13063 OMNIVISION OV5670 SENSOR DRIVER
13064 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13065 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
13066 L:      linux-media@vger.kernel.org
13067 S:      Maintained
13068 T:      git git://linuxtv.org/media_tree.git
13069 F:      drivers/media/i2c/ov5670.c
13070
13071 OMNIVISION OV5675 SENSOR DRIVER
13072 M:      Shawn Tu <shawnx.tu@intel.com>
13073 L:      linux-media@vger.kernel.org
13074 S:      Maintained
13075 T:      git git://linuxtv.org/media_tree.git
13076 F:      drivers/media/i2c/ov5675.c
13077
13078 OMNIVISION OV5695 SENSOR DRIVER
13079 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13080 L:      linux-media@vger.kernel.org
13081 S:      Maintained
13082 T:      git git://linuxtv.org/media_tree.git
13083 F:      drivers/media/i2c/ov5695.c
13084
13085 OMNIVISION OV7670 SENSOR DRIVER
13086 L:      linux-media@vger.kernel.org
13087 S:      Orphan
13088 T:      git git://linuxtv.org/media_tree.git
13089 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
13090 F:      drivers/media/i2c/ov7670.c
13091
13092 OMNIVISION OV772x SENSOR DRIVER
13093 M:      Jacopo Mondi <jacopo@jmondi.org>
13094 L:      linux-media@vger.kernel.org
13095 S:      Odd fixes
13096 T:      git git://linuxtv.org/media_tree.git
13097 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13098 F:      drivers/media/i2c/ov772x.c
13099 F:      include/media/i2c/ov772x.h
13100
13101 OMNIVISION OV7740 SENSOR DRIVER
13102 M:      Wenyou Yang <wenyou.yang@microchip.com>
13103 L:      linux-media@vger.kernel.org
13104 S:      Maintained
13105 T:      git git://linuxtv.org/media_tree.git
13106 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
13107 F:      drivers/media/i2c/ov7740.c
13108
13109 OMNIVISION OV8856 SENSOR DRIVER
13110 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13111 L:      linux-media@vger.kernel.org
13112 S:      Maintained
13113 T:      git git://linuxtv.org/media_tree.git
13114 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13115 F:      drivers/media/i2c/ov8856.c
13116
13117 OMNIVISION OV9640 SENSOR DRIVER
13118 M:      Petr Cvek <petrcvekcz@gmail.com>
13119 L:      linux-media@vger.kernel.org
13120 S:      Maintained
13121 F:      drivers/media/i2c/ov9640.*
13122
13123 OMNIVISION OV9650 SENSOR DRIVER
13124 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13125 R:      Akinobu Mita <akinobu.mita@gmail.com>
13126 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13127 L:      linux-media@vger.kernel.org
13128 S:      Maintained
13129 T:      git git://linuxtv.org/media_tree.git
13130 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
13131 F:      drivers/media/i2c/ov9650.c
13132
13133 OMNIVISION OV9734 SENSOR DRIVER
13134 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13135 R:      Bingbu Cao <bingbu.cao@intel.com>
13136 L:      linux-media@vger.kernel.org
13137 S:      Maintained
13138 T:      git git://linuxtv.org/media_tree.git
13139 F:      drivers/media/i2c/ov9734.c
13140
13141 ONENAND FLASH DRIVER
13142 M:      Kyungmin Park <kyungmin.park@samsung.com>
13143 L:      linux-mtd@lists.infradead.org
13144 S:      Maintained
13145 F:      drivers/mtd/nand/onenand/
13146 F:      include/linux/mtd/onenand*.h
13147
13148 ONION OMEGA2+ BOARD
13149 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
13150 L:      linux-mips@vger.kernel.org
13151 S:      Maintained
13152 F:      arch/mips/boot/dts/ralink/omega2p.dts
13153
13154 OP-TEE DRIVER
13155 M:      Jens Wiklander <jens.wiklander@linaro.org>
13156 L:      op-tee@lists.trustedfirmware.org
13157 S:      Maintained
13158 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
13159 F:      drivers/tee/optee/
13160
13161 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
13162 M:      Sumit Garg <sumit.garg@linaro.org>
13163 L:      op-tee@lists.trustedfirmware.org
13164 S:      Maintained
13165 F:      drivers/char/hw_random/optee-rng.c
13166
13167 OPA-VNIC DRIVER
13168 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
13169 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
13170 L:      linux-rdma@vger.kernel.org
13171 S:      Supported
13172 F:      drivers/infiniband/ulp/opa_vnic
13173
13174 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
13175 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
13176 M:      Frank Rowand <frowand.list@gmail.com>
13177 L:      devicetree@vger.kernel.org
13178 S:      Maintained
13179 F:      Documentation/devicetree/dynamic-resolution-notes.rst
13180 F:      Documentation/devicetree/overlay-notes.rst
13181 F:      drivers/of/overlay.c
13182 F:      drivers/of/resolver.c
13183 K:      of_overlay_notifier_
13184
13185 OPEN FIRMWARE AND FLATTENED DEVICE TREE
13186 M:      Rob Herring <robh+dt@kernel.org>
13187 M:      Frank Rowand <frowand.list@gmail.com>
13188 L:      devicetree@vger.kernel.org
13189 S:      Maintained
13190 W:      http://www.devicetree.org/
13191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13192 F:      Documentation/ABI/testing/sysfs-firmware-ofw
13193 F:      drivers/of/
13194 F:      include/linux/of*.h
13195 F:      scripts/dtc/
13196
13197 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
13198 M:      Rob Herring <robh+dt@kernel.org>
13199 L:      devicetree@vger.kernel.org
13200 S:      Maintained
13201 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
13202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13203 F:      Documentation/devicetree/
13204 F:      arch/*/boot/dts/
13205 F:      include/dt-bindings/
13206
13207 OPENCORES I2C BUS DRIVER
13208 M:      Peter Korsgaard <peter@korsgaard.com>
13209 M:      Andrew Lunn <andrew@lunn.ch>
13210 L:      linux-i2c@vger.kernel.org
13211 S:      Maintained
13212 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
13213 F:      Documentation/i2c/busses/i2c-ocores.rst
13214 F:      drivers/i2c/busses/i2c-ocores.c
13215 F:      include/linux/platform_data/i2c-ocores.h
13216
13217 OPENRISC ARCHITECTURE
13218 M:      Jonas Bonn <jonas@southpole.se>
13219 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
13220 M:      Stafford Horne <shorne@gmail.com>
13221 L:      openrisc@lists.librecores.org
13222 S:      Maintained
13223 W:      http://openrisc.io
13224 T:      git git://github.com/openrisc/linux.git
13225 F:      Documentation/devicetree/bindings/openrisc/
13226 F:      Documentation/openrisc/
13227 F:      arch/openrisc/
13228 F:      drivers/irqchip/irq-ompic.c
13229 F:      drivers/irqchip/irq-or1k-*
13230
13231 OPENVSWITCH
13232 M:      Pravin B Shelar <pshelar@ovn.org>
13233 L:      netdev@vger.kernel.org
13234 L:      dev@openvswitch.org
13235 S:      Maintained
13236 W:      http://openvswitch.org
13237 F:      include/uapi/linux/openvswitch.h
13238 F:      net/openvswitch/
13239
13240 OPERATING PERFORMANCE POINTS (OPP)
13241 M:      Viresh Kumar <vireshk@kernel.org>
13242 M:      Nishanth Menon <nm@ti.com>
13243 M:      Stephen Boyd <sboyd@kernel.org>
13244 L:      linux-pm@vger.kernel.org
13245 S:      Maintained
13246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
13247 F:      Documentation/devicetree/bindings/opp/
13248 F:      Documentation/power/opp.rst
13249 F:      drivers/opp/
13250 F:      include/linux/pm_opp.h
13251
13252 OPL4 DRIVER
13253 M:      Clemens Ladisch <clemens@ladisch.de>
13254 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13255 S:      Maintained
13256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13257 F:      sound/drivers/opl4/
13258
13259 OPROFILE
13260 M:      Robert Richter <rric@kernel.org>
13261 L:      oprofile-list@lists.sf.net
13262 S:      Maintained
13263 F:      arch/*/include/asm/oprofile*.h
13264 F:      arch/*/oprofile/
13265 F:      drivers/oprofile/
13266 F:      include/linux/oprofile.h
13267
13268 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
13269 M:      Mark Fasheh <mark@fasheh.com>
13270 M:      Joel Becker <jlbec@evilplan.org>
13271 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
13272 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
13273 S:      Supported
13274 W:      http://ocfs2.wiki.kernel.org
13275 F:      Documentation/filesystems/dlmfs.rst
13276 F:      Documentation/filesystems/ocfs2.rst
13277 F:      fs/ocfs2/
13278
13279 ORANGEFS FILESYSTEM
13280 M:      Mike Marshall <hubcap@omnibond.com>
13281 R:      Martin Brandenburg <martin@omnibond.com>
13282 L:      devel@lists.orangefs.org
13283 S:      Supported
13284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
13285 F:      Documentation/filesystems/orangefs.rst
13286 F:      fs/orangefs/
13287
13288 ORINOCO DRIVER
13289 L:      linux-wireless@vger.kernel.org
13290 S:      Orphan
13291 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
13292 W:      http://www.nongnu.org/orinoco/
13293 F:      drivers/net/wireless/intersil/orinoco/
13294
13295 OV2659 OMNIVISION SENSOR DRIVER
13296 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13297 L:      linux-media@vger.kernel.org
13298 S:      Maintained
13299 W:      https://linuxtv.org
13300 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13301 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13302 F:      drivers/media/i2c/ov2659.c
13303 F:      include/media/i2c/ov2659.h
13304
13305 OVERLAY FILESYSTEM
13306 M:      Miklos Szeredi <miklos@szeredi.hu>
13307 L:      linux-unionfs@vger.kernel.org
13308 S:      Supported
13309 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
13310 F:      Documentation/filesystems/overlayfs.rst
13311 F:      fs/overlayfs/
13312
13313 P54 WIRELESS DRIVER
13314 M:      Christian Lamparter <chunkeey@googlemail.com>
13315 L:      linux-wireless@vger.kernel.org
13316 S:      Maintained
13317 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13318 F:      drivers/net/wireless/intersil/p54/
13319
13320 PACKING
13321 M:      Vladimir Oltean <olteanv@gmail.com>
13322 L:      netdev@vger.kernel.org
13323 S:      Supported
13324 F:      Documentation/core-api/packing.rst
13325 F:      include/linux/packing.h
13326 F:      lib/packing.c
13327
13328 PADATA PARALLEL EXECUTION MECHANISM
13329 M:      Steffen Klassert <steffen.klassert@secunet.com>
13330 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
13331 L:      linux-crypto@vger.kernel.org
13332 L:      linux-kernel@vger.kernel.org
13333 S:      Maintained
13334 F:      Documentation/core-api/padata.rst
13335 F:      include/linux/padata.h
13336 F:      kernel/padata.c
13337
13338 PAGE POOL
13339 M:      Jesper Dangaard Brouer <hawk@kernel.org>
13340 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
13341 L:      netdev@vger.kernel.org
13342 S:      Supported
13343 F:      Documentation/networking/page_pool.rst
13344 F:      include/net/page_pool.h
13345 F:      include/trace/events/page_pool.h
13346 F:      net/core/page_pool.c
13347
13348 PANASONIC LAPTOP ACPI EXTRAS DRIVER
13349 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
13350 L:      platform-driver-x86@vger.kernel.org
13351 S:      Maintained
13352 F:      drivers/platform/x86/panasonic-laptop.c
13353
13354 PARALLAX PING IIO SENSOR DRIVER
13355 M:      Andreas Klinger <ak@it-klinger.de>
13356 L:      linux-iio@vger.kernel.org
13357 S:      Maintained
13358 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
13359 F:      drivers/iio/proximity/ping.c
13360
13361 PARALLEL LCD/KEYPAD PANEL DRIVER
13362 M:      Willy Tarreau <willy@haproxy.com>
13363 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
13364 S:      Odd Fixes
13365 F:      Documentation/admin-guide/lcd-panel-cgram.rst
13366 F:      drivers/auxdisplay/panel.c
13367
13368 PARALLEL PORT SUBSYSTEM
13369 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
13370 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
13371 L:      linux-parport@lists.infradead.org (subscribers-only)
13372 S:      Maintained
13373 F:      Documentation/driver-api/parport*.rst
13374 F:      drivers/char/ppdev.c
13375 F:      drivers/parport/
13376 F:      include/linux/parport*.h
13377 F:      include/uapi/linux/ppdev.h
13378
13379 PARAVIRT_OPS INTERFACE
13380 M:      Juergen Gross <jgross@suse.com>
13381 M:      Deep Shah <sdeep@vmware.com>
13382 M:      "VMware, Inc." <pv-drivers@vmware.com>
13383 L:      virtualization@lists.linux-foundation.org
13384 S:      Supported
13385 F:      Documentation/virt/paravirt_ops.rst
13386 F:      arch/*/include/asm/paravirt*.h
13387 F:      arch/*/kernel/paravirt*
13388 F:      include/linux/hypervisor.h
13389
13390 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
13391 M:      Tim Waugh <tim@cyberelk.net>
13392 L:      linux-parport@lists.infradead.org (subscribers-only)
13393 S:      Maintained
13394 F:      Documentation/admin-guide/blockdev/paride.rst
13395 F:      drivers/block/paride/
13396
13397 PARISC ARCHITECTURE
13398 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
13399 M:      Helge Deller <deller@gmx.de>
13400 L:      linux-parisc@vger.kernel.org
13401 S:      Maintained
13402 W:      https://parisc.wiki.kernel.org
13403 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
13404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
13405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
13406 F:      Documentation/parisc/
13407 F:      arch/parisc/
13408 F:      drivers/char/agp/parisc-agp.c
13409 F:      drivers/input/misc/hp_sdc_rtc.c
13410 F:      drivers/input/serio/gscps2.c
13411 F:      drivers/input/serio/hp_sdc*
13412 F:      drivers/parisc/
13413 F:      drivers/parport/parport_gsc.*
13414 F:      drivers/tty/serial/8250/8250_gsc.c
13415 F:      drivers/video/console/sti*
13416 F:      drivers/video/fbdev/sti*
13417 F:      drivers/video/logo/logo_parisc*
13418 F:      include/linux/hp_sdc.h
13419
13420 PARMAN
13421 M:      Jiri Pirko <jiri@nvidia.com>
13422 L:      netdev@vger.kernel.org
13423 S:      Supported
13424 F:      include/linux/parman.h
13425 F:      lib/parman.c
13426 F:      lib/test_parman.c
13427
13428 PC ENGINES APU BOARD DRIVER
13429 M:      Enrico Weigelt, metux IT consult <info@metux.net>
13430 S:      Maintained
13431 F:      drivers/platform/x86/pcengines-apuv2.c
13432
13433 PC87360 HARDWARE MONITORING DRIVER
13434 M:      Jim Cromie <jim.cromie@gmail.com>
13435 L:      linux-hwmon@vger.kernel.org
13436 S:      Maintained
13437 F:      Documentation/hwmon/pc87360.rst
13438 F:      drivers/hwmon/pc87360.c
13439
13440 PC8736x GPIO DRIVER
13441 M:      Jim Cromie <jim.cromie@gmail.com>
13442 S:      Maintained
13443 F:      drivers/char/pc8736x_gpio.c
13444
13445 PC87427 HARDWARE MONITORING DRIVER
13446 M:      Jean Delvare <jdelvare@suse.com>
13447 L:      linux-hwmon@vger.kernel.org
13448 S:      Maintained
13449 F:      Documentation/hwmon/pc87427.rst
13450 F:      drivers/hwmon/pc87427.c
13451
13452 PCA9532 LED DRIVER
13453 M:      Riku Voipio <riku.voipio@iki.fi>
13454 S:      Maintained
13455 F:      drivers/leds/leds-pca9532.c
13456 F:      include/linux/leds-pca9532.h
13457
13458 PCA9541 I2C BUS MASTER SELECTOR DRIVER
13459 M:      Guenter Roeck <linux@roeck-us.net>
13460 L:      linux-i2c@vger.kernel.org
13461 S:      Maintained
13462 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
13463
13464 PCDP - PRIMARY CONSOLE AND DEBUG PORT
13465 M:      Khalid Aziz <khalid@gonehiking.org>
13466 S:      Maintained
13467 F:      drivers/firmware/pcdp.*
13468
13469 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
13470 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13471 M:      Pali Rohár <pali@kernel.org>
13472 L:      linux-pci@vger.kernel.org
13473 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13474 S:      Maintained
13475 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
13476 F:      drivers/pci/controller/pci-aardvark.c
13477
13478 PCI DRIVER FOR ALTERA PCIE IP
13479 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13480 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13481 L:      linux-pci@vger.kernel.org
13482 S:      Supported
13483 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
13484 F:      drivers/pci/controller/pcie-altera.c
13485
13486 PCI DRIVER FOR APPLIEDMICRO XGENE
13487 M:      Toan Le <toan@os.amperecomputing.com>
13488 L:      linux-pci@vger.kernel.org
13489 L:      linux-arm-kernel@lists.infradead.org
13490 S:      Maintained
13491 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
13492 F:      drivers/pci/controller/pci-xgene.c
13493
13494 PCI DRIVER FOR ARM VERSATILE PLATFORM
13495 M:      Rob Herring <robh@kernel.org>
13496 L:      linux-pci@vger.kernel.org
13497 L:      linux-arm-kernel@lists.infradead.org
13498 S:      Maintained
13499 F:      Documentation/devicetree/bindings/pci/versatile.yaml
13500 F:      drivers/pci/controller/pci-versatile.c
13501
13502 PCI DRIVER FOR ARMADA 8K
13503 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13504 L:      linux-pci@vger.kernel.org
13505 L:      linux-arm-kernel@lists.infradead.org
13506 S:      Maintained
13507 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
13508 F:      drivers/pci/controller/dwc/pcie-armada8k.c
13509
13510 PCI DRIVER FOR CADENCE PCIE IP
13511 M:      Tom Joseph <tjoseph@cadence.com>
13512 L:      linux-pci@vger.kernel.org
13513 S:      Maintained
13514 F:      Documentation/devicetree/bindings/pci/cdns,*
13515 F:      drivers/pci/controller/cadence/
13516
13517 PCI DRIVER FOR FREESCALE LAYERSCAPE
13518 M:      Minghuan Lian <minghuan.Lian@nxp.com>
13519 M:      Mingkai Hu <mingkai.hu@nxp.com>
13520 M:      Roy Zang <roy.zang@nxp.com>
13521 L:      linuxppc-dev@lists.ozlabs.org
13522 L:      linux-pci@vger.kernel.org
13523 L:      linux-arm-kernel@lists.infradead.org
13524 S:      Maintained
13525 F:      drivers/pci/controller/dwc/*layerscape*
13526
13527 PCI DRIVER FOR GENERIC OF HOSTS
13528 M:      Will Deacon <will@kernel.org>
13529 L:      linux-pci@vger.kernel.org
13530 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13531 S:      Maintained
13532 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13533 F:      drivers/pci/controller/pci-host-common.c
13534 F:      drivers/pci/controller/pci-host-generic.c
13535
13536 PCI DRIVER FOR IMX6
13537 M:      Richard Zhu <hongxing.zhu@nxp.com>
13538 M:      Lucas Stach <l.stach@pengutronix.de>
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/fsl,imx6q-pcie.txt
13543 F:      drivers/pci/controller/dwc/*imx6*
13544
13545 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13546 M:      Jonathan Derrick <jonathan.derrick@intel.com>
13547 L:      linux-pci@vger.kernel.org
13548 S:      Supported
13549 F:      drivers/pci/controller/vmd.c
13550
13551 PCI DRIVER FOR MICROSEMI SWITCHTEC
13552 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
13553 M:      Logan Gunthorpe <logang@deltatee.com>
13554 L:      linux-pci@vger.kernel.org
13555 S:      Maintained
13556 F:      Documentation/ABI/testing/sysfs-class-switchtec
13557 F:      Documentation/driver-api/switchtec.rst
13558 F:      drivers/ntb/hw/mscc/
13559 F:      drivers/pci/switch/switchtec*
13560 F:      include/linux/switchtec.h
13561 F:      include/uapi/linux/switchtec_ioctl.h
13562
13563 PCI DRIVER FOR MOBIVEIL PCIE IP
13564 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
13565 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13566 L:      linux-pci@vger.kernel.org
13567 S:      Supported
13568 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
13569 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
13570
13571 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
13572 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13573 L:      linux-pci@vger.kernel.org
13574 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13575 S:      Maintained
13576 F:      drivers/pci/controller/*mvebu*
13577
13578 PCI DRIVER FOR NVIDIA TEGRA
13579 M:      Thierry Reding <thierry.reding@gmail.com>
13580 L:      linux-tegra@vger.kernel.org
13581 L:      linux-pci@vger.kernel.org
13582 S:      Supported
13583 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
13584 F:      drivers/pci/controller/pci-tegra.c
13585
13586 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13587 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13588 L:      linux-pci@vger.kernel.org
13589 L:      linux-arm-kernel@lists.infradead.org
13590 S:      Maintained
13591 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13592 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
13593
13594 PCI DRIVER FOR RENESAS R-CAR
13595 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
13596 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13597 L:      linux-pci@vger.kernel.org
13598 L:      linux-renesas-soc@vger.kernel.org
13599 S:      Maintained
13600 F:      Documentation/devicetree/bindings/pci/*rcar*
13601 F:      drivers/pci/controller/*rcar*
13602
13603 PCI DRIVER FOR SAMSUNG EXYNOS
13604 M:      Jingoo Han <jingoohan1@gmail.com>
13605 L:      linux-pci@vger.kernel.org
13606 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13607 L:      linux-samsung-soc@vger.kernel.org
13608 S:      Maintained
13609 F:      drivers/pci/controller/dwc/pci-exynos.c
13610
13611 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13612 M:      Jingoo Han <jingoohan1@gmail.com>
13613 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
13614 L:      linux-pci@vger.kernel.org
13615 S:      Maintained
13616 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
13617 F:      drivers/pci/controller/dwc/*designware*
13618
13619 PCI DRIVER FOR TI DRA7XX/J721E
13620 M:      Kishon Vijay Abraham I <kishon@ti.com>
13621 L:      linux-omap@vger.kernel.org
13622 L:      linux-pci@vger.kernel.org
13623 L:      linux-arm-kernel@lists.infradead.org
13624 S:      Supported
13625 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
13626 F:      drivers/pci/controller/cadence/pci-j721e.c
13627 F:      drivers/pci/controller/dwc/pci-dra7xx.c
13628
13629 PCI DRIVER FOR TI KEYSTONE
13630 M:      Murali Karicheri <m-karicheri2@ti.com>
13631 L:      linux-pci@vger.kernel.org
13632 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13633 S:      Maintained
13634 F:      drivers/pci/controller/dwc/pci-keystone.c
13635
13636 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13637 M:      Linus Walleij <linus.walleij@linaro.org>
13638 L:      linux-pci@vger.kernel.org
13639 S:      Maintained
13640 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13641 F:      drivers/pci/controller/pci-v3-semi.c
13642
13643 PCI ENDPOINT SUBSYSTEM
13644 M:      Kishon Vijay Abraham I <kishon@ti.com>
13645 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13646 L:      linux-pci@vger.kernel.org
13647 S:      Supported
13648 F:      Documentation/PCI/endpoint/*
13649 F:      Documentation/misc-devices/pci-endpoint-test.rst
13650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13651 F:      drivers/misc/pci_endpoint_test.c
13652 F:      drivers/pci/endpoint/
13653 F:      tools/pci/
13654
13655 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13656 M:      Russell Currey <ruscur@russell.cc>
13657 M:      Oliver O'Halloran <oohall@gmail.com>
13658 L:      linuxppc-dev@lists.ozlabs.org
13659 S:      Supported
13660 F:      Documentation/PCI/pci-error-recovery.rst
13661 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
13662 F:      arch/powerpc/include/*/eeh*.h
13663 F:      arch/powerpc/kernel/eeh*.c
13664 F:      arch/powerpc/platforms/*/eeh*.c
13665 F:      drivers/pci/pcie/aer.c
13666 F:      drivers/pci/pcie/dpc.c
13667 F:      drivers/pci/pcie/err.c
13668
13669 PCI ERROR RECOVERY
13670 M:      Linas Vepstas <linasvepstas@gmail.com>
13671 L:      linux-pci@vger.kernel.org
13672 S:      Supported
13673 F:      Documentation/PCI/pci-error-recovery.rst
13674
13675 PCI MSI DRIVER FOR ALTERA MSI IP
13676 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13677 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13678 L:      linux-pci@vger.kernel.org
13679 S:      Supported
13680 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13681 F:      drivers/pci/controller/pcie-altera-msi.c
13682
13683 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13684 M:      Toan Le <toan@os.amperecomputing.com>
13685 L:      linux-pci@vger.kernel.org
13686 L:      linux-arm-kernel@lists.infradead.org
13687 S:      Maintained
13688 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13689 F:      drivers/pci/controller/pci-xgene-msi.c
13690
13691 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13692 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13693 R:      Rob Herring <robh@kernel.org>
13694 L:      linux-pci@vger.kernel.org
13695 S:      Supported
13696 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13698 F:      drivers/pci/controller/
13699
13700 PCI SUBSYSTEM
13701 M:      Bjorn Helgaas <bhelgaas@google.com>
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/helgaas/pci.git
13706 F:      Documentation/PCI/
13707 F:      Documentation/devicetree/bindings/pci/
13708 F:      arch/x86/kernel/early-quirks.c
13709 F:      arch/x86/kernel/quirks.c
13710 F:      arch/x86/pci/
13711 F:      drivers/acpi/pci*
13712 F:      drivers/pci/
13713 F:      include/asm-generic/pci*
13714 F:      include/linux/of_pci.h
13715 F:      include/linux/pci*
13716 F:      include/uapi/linux/pci*
13717 F:      lib/pci*
13718
13719 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13720 M:      Jonathan Chocron <jonnyc@amazon.com>
13721 L:      linux-pci@vger.kernel.org
13722 S:      Maintained
13723 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13724 F:      drivers/pci/controller/dwc/pcie-al.c
13725
13726 PCIE DRIVER FOR AMLOGIC MESON
13727 M:      Yue Wang <yue.wang@Amlogic.com>
13728 L:      linux-pci@vger.kernel.org
13729 L:      linux-amlogic@lists.infradead.org
13730 S:      Maintained
13731 F:      drivers/pci/controller/dwc/pci-meson.c
13732
13733 PCIE DRIVER FOR AXIS ARTPEC
13734 M:      Jesper Nilsson <jesper.nilsson@axis.com>
13735 L:      linux-arm-kernel@axis.com
13736 L:      linux-pci@vger.kernel.org
13737 S:      Maintained
13738 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13739 F:      drivers/pci/controller/dwc/*artpec*
13740
13741 PCIE DRIVER FOR CAVIUM THUNDERX
13742 M:      Robert Richter <rric@kernel.org>
13743 L:      linux-pci@vger.kernel.org
13744 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13745 S:      Odd Fixes
13746 F:      drivers/pci/controller/pci-thunder-*
13747
13748 PCIE DRIVER FOR HISILICON
13749 M:      Zhou Wang <wangzhou1@hisilicon.com>
13750 L:      linux-pci@vger.kernel.org
13751 S:      Maintained
13752 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13753 F:      drivers/pci/controller/dwc/pcie-hisi.c
13754
13755 PCIE DRIVER FOR HISILICON KIRIN
13756 M:      Xiaowei Song <songxiaowei@hisilicon.com>
13757 M:      Binghui Wang <wangbinghui@hisilicon.com>
13758 L:      linux-pci@vger.kernel.org
13759 S:      Maintained
13760 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13761 F:      drivers/pci/controller/dwc/pcie-kirin.c
13762
13763 PCIE DRIVER FOR HISILICON STB
13764 M:      Shawn Guo <shawn.guo@linaro.org>
13765 L:      linux-pci@vger.kernel.org
13766 S:      Maintained
13767 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13768 F:      drivers/pci/controller/dwc/pcie-histb.c
13769
13770 PCIE DRIVER FOR MEDIATEK
13771 M:      Ryder Lee <ryder.lee@mediatek.com>
13772 L:      linux-pci@vger.kernel.org
13773 L:      linux-mediatek@lists.infradead.org
13774 S:      Supported
13775 F:      Documentation/devicetree/bindings/pci/mediatek*
13776 F:      drivers/pci/controller/*mediatek*
13777
13778 PCIE DRIVER FOR QUALCOMM MSM
13779 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
13780 L:      linux-pci@vger.kernel.org
13781 L:      linux-arm-msm@vger.kernel.org
13782 S:      Maintained
13783 F:      drivers/pci/controller/dwc/*qcom*
13784
13785 PCIE DRIVER FOR ROCKCHIP
13786 M:      Shawn Lin <shawn.lin@rock-chips.com>
13787 L:      linux-pci@vger.kernel.org
13788 L:      linux-rockchip@lists.infradead.org
13789 S:      Maintained
13790 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13791 F:      drivers/pci/controller/pcie-rockchip*
13792
13793 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13794 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
13795 L:      linux-pci@vger.kernel.org
13796 S:      Maintained
13797 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
13798 F:      drivers/pci/controller/dwc/pcie-uniphier*
13799
13800 PCIE DRIVER FOR ST SPEAR13XX
13801 M:      Pratyush Anand <pratyush.anand@gmail.com>
13802 L:      linux-pci@vger.kernel.org
13803 S:      Maintained
13804 F:      drivers/pci/controller/dwc/*spear*
13805
13806 PCMCIA SUBSYSTEM
13807 M:      Dominik Brodowski <linux@dominikbrodowski.net>
13808 S:      Odd Fixes
13809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13810 F:      Documentation/pcmcia/
13811 F:      drivers/pcmcia/
13812 F:      include/pcmcia/
13813 F:      tools/pcmcia/
13814
13815 PCNET32 NETWORK DRIVER
13816 M:      Don Fry <pcnet32@frontier.com>
13817 L:      netdev@vger.kernel.org
13818 S:      Maintained
13819 F:      drivers/net/ethernet/amd/pcnet32.c
13820
13821 PCRYPT PARALLEL CRYPTO ENGINE
13822 M:      Steffen Klassert <steffen.klassert@secunet.com>
13823 L:      linux-crypto@vger.kernel.org
13824 S:      Maintained
13825 F:      crypto/pcrypt.c
13826 F:      include/crypto/pcrypt.h
13827
13828 PEAQ WMI HOTKEYS DRIVER
13829 M:      Hans de Goede <hdegoede@redhat.com>
13830 L:      platform-driver-x86@vger.kernel.org
13831 S:      Maintained
13832 F:      drivers/platform/x86/peaq-wmi.c
13833
13834 PENSANDO ETHERNET DRIVERS
13835 M:      Shannon Nelson <snelson@pensando.io>
13836 M:      Pensando Drivers <drivers@pensando.io>
13837 L:      netdev@vger.kernel.org
13838 S:      Supported
13839 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
13840 F:      drivers/net/ethernet/pensando/
13841
13842 PER-CPU MEMORY ALLOCATOR
13843 M:      Dennis Zhou <dennis@kernel.org>
13844 M:      Tejun Heo <tj@kernel.org>
13845 M:      Christoph Lameter <cl@linux.com>
13846 S:      Maintained
13847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13848 F:      arch/*/include/asm/percpu.h
13849 F:      include/linux/percpu*.h
13850 F:      mm/percpu*.c
13851
13852 PER-TASK DELAY ACCOUNTING
13853 M:      Balbir Singh <bsingharora@gmail.com>
13854 S:      Maintained
13855 F:      include/linux/delayacct.h
13856 F:      kernel/delayacct.c
13857
13858 PERFORMANCE EVENTS SUBSYSTEM
13859 M:      Peter Zijlstra <peterz@infradead.org>
13860 M:      Ingo Molnar <mingo@redhat.com>
13861 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
13862 R:      Mark Rutland <mark.rutland@arm.com>
13863 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
13864 R:      Jiri Olsa <jolsa@redhat.com>
13865 R:      Namhyung Kim <namhyung@kernel.org>
13866 L:      linux-kernel@vger.kernel.org
13867 S:      Supported
13868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13869 F:      arch/*/events/*
13870 F:      arch/*/events/*/*
13871 F:      arch/*/include/asm/perf_event.h
13872 F:      arch/*/kernel/*/*/perf_event*.c
13873 F:      arch/*/kernel/*/perf_event*.c
13874 F:      arch/*/kernel/perf_callchain.c
13875 F:      arch/*/kernel/perf_event*.c
13876 F:      include/linux/perf_event.h
13877 F:      include/uapi/linux/perf_event.h
13878 F:      kernel/events/*
13879 F:      tools/lib/perf/
13880 F:      tools/perf/
13881
13882 PERFORMANCE EVENTS TOOLING ARM64
13883 R:      John Garry <john.garry@huawei.com>
13884 R:      Will Deacon <will@kernel.org>
13885 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
13886 R:      Leo Yan <leo.yan@linaro.org>
13887 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13888 S:      Supported
13889 F:      tools/build/feature/test-libopencsd.c
13890 F:      tools/perf/arch/arm*/
13891 F:      tools/perf/pmu-events/arch/arm64/
13892 F:      tools/perf/util/arm-spe*
13893 F:      tools/perf/util/cs-etm*
13894
13895 PERSONALITY HANDLING
13896 M:      Christoph Hellwig <hch@infradead.org>
13897 L:      linux-abi-devel@lists.sourceforge.net
13898 S:      Maintained
13899 F:      include/linux/personality.h
13900 F:      include/uapi/linux/personality.h
13901
13902 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13903 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13904 L:      linux-input@vger.kernel.org
13905 S:      Maintained
13906 F:      Documentation/input/devices/pxrc.rst
13907 F:      drivers/input/joystick/pxrc.c
13908
13909 PHONET PROTOCOL
13910 M:      Remi Denis-Courmont <courmisch@gmail.com>
13911 S:      Supported
13912 F:      Documentation/networking/phonet.rst
13913 F:      include/linux/phonet.h
13914 F:      include/net/phonet/
13915 F:      include/uapi/linux/phonet.h
13916 F:      net/phonet/
13917
13918 PHRAM MTD DRIVER
13919 M:      Joern Engel <joern@lazybastard.org>
13920 L:      linux-mtd@lists.infradead.org
13921 S:      Maintained
13922 F:      drivers/mtd/devices/phram.c
13923
13924 PICOLCD HID DRIVER
13925 M:      Bruno Prémont <bonbons@linux-vserver.org>
13926 L:      linux-input@vger.kernel.org
13927 S:      Maintained
13928 F:      drivers/hid/hid-picolcd*
13929
13930 PICOXCELL SUPPORT
13931 M:      Jamie Iles <jamie@jamieiles.com>
13932 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13933 S:      Supported
13934 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13935 F:      arch/arm/boot/dts/picoxcell*
13936 F:      arch/arm/mach-picoxcell/
13937 F:      drivers/crypto/picoxcell*
13938
13939 PIDFD API
13940 M:      Christian Brauner <christian@brauner.io>
13941 L:      linux-kernel@vger.kernel.org
13942 S:      Maintained
13943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13944 F:      samples/pidfd/
13945 F:      tools/testing/selftests/clone3/
13946 F:      tools/testing/selftests/pid_namespace/
13947 F:      tools/testing/selftests/pidfd/
13948 K:      (?i)pidfd
13949 K:      (?i)clone3
13950 K:      \b(clone_args|kernel_clone_args)\b
13951
13952 PIN CONTROL SUBSYSTEM
13953 M:      Linus Walleij <linus.walleij@linaro.org>
13954 L:      linux-gpio@vger.kernel.org
13955 S:      Maintained
13956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13957 F:      Documentation/devicetree/bindings/pinctrl/
13958 F:      Documentation/driver-api/pinctl.rst
13959 F:      drivers/pinctrl/
13960 F:      include/linux/pinctrl/
13961
13962 PIN CONTROLLER - FREESCALE
13963 M:      Dong Aisheng <aisheng.dong@nxp.com>
13964 M:      Fabio Estevam <festevam@gmail.com>
13965 M:      Shawn Guo <shawnguo@kernel.org>
13966 M:      Stefan Agner <stefan@agner.ch>
13967 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
13968 L:      linux-gpio@vger.kernel.org
13969 S:      Maintained
13970 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13971 F:      drivers/pinctrl/freescale/
13972
13973 PIN CONTROLLER - INTEL
13974 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13975 M:      Andy Shevchenko <andy@kernel.org>
13976 S:      Maintained
13977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13978 F:      drivers/pinctrl/intel/
13979
13980 PIN CONTROLLER - MEDIATEK
13981 M:      Sean Wang <sean.wang@kernel.org>
13982 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13983 S:      Maintained
13984 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13985 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13986 F:      drivers/pinctrl/mediatek/
13987
13988 PIN CONTROLLER - MICROCHIP AT91
13989 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13990 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13991 L:      linux-gpio@vger.kernel.org
13992 S:      Supported
13993 F:      drivers/gpio/gpio-sama5d2-piobu.c
13994 F:      drivers/pinctrl/pinctrl-at91*
13995
13996 PIN CONTROLLER - QUALCOMM
13997 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13998 L:      linux-arm-msm@vger.kernel.org
13999 S:      Maintained
14000 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14001 F:      drivers/pinctrl/qcom/
14002
14003 PIN CONTROLLER - RENESAS
14004 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14005 L:      linux-renesas-soc@vger.kernel.org
14006 S:      Supported
14007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14008 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
14009 F:      drivers/pinctrl/renesas/
14010
14011 PIN CONTROLLER - SAMSUNG
14012 M:      Tomasz Figa <tomasz.figa@gmail.com>
14013 M:      Krzysztof Kozlowski <krzk@kernel.org>
14014 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14015 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14016 L:      linux-samsung-soc@vger.kernel.org
14017 S:      Maintained
14018 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
14019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14020 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14021 F:      drivers/pinctrl/samsung/
14022 F:      include/dt-bindings/pinctrl/samsung.h
14023
14024 PIN CONTROLLER - SINGLE
14025 M:      Tony Lindgren <tony@atomide.com>
14026 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
14027 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14028 L:      linux-omap@vger.kernel.org
14029 S:      Maintained
14030 F:      drivers/pinctrl/pinctrl-single.c
14031
14032 PIN CONTROLLER - ST SPEAR
14033 M:      Viresh Kumar <vireshk@kernel.org>
14034 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14035 S:      Maintained
14036 W:      http://www.st.com/spear
14037 F:      drivers/pinctrl/spear/
14038
14039 PISTACHIO SOC SUPPORT
14040 M:      James Hartley <james.hartley@sondrel.com>
14041 L:      linux-mips@vger.kernel.org
14042 S:      Odd Fixes
14043 F:      arch/mips/boot/dts/img/pistachio*
14044 F:      arch/mips/configs/pistachio*_defconfig
14045 F:      arch/mips/include/asm/mach-pistachio/
14046 F:      arch/mips/pistachio/
14047
14048 PKTCDVD DRIVER
14049 M:      linux-block@vger.kernel.org
14050 S:      Orphan
14051 F:      drivers/block/pktcdvd.c
14052 F:      include/linux/pktcdvd.h
14053 F:      include/uapi/linux/pktcdvd.h
14054
14055 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14056 M:      Tomasz Duszynski <tduszyns@gmail.com>
14057 S:      Maintained
14058 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14059 F:      drivers/iio/chemical/pms7003.c
14060
14061 PLDMFW LIBRARY
14062 M:      Jacob Keller <jacob.e.keller@intel.com>
14063 S:      Maintained
14064 F:      Documentation/driver-api/pldmfw/
14065 F:      include/linux/pldmfw.h
14066 F:      lib/pldmfw/
14067
14068 PLX DMA DRIVER
14069 M:      Logan Gunthorpe <logang@deltatee.com>
14070 S:      Maintained
14071 F:      drivers/dma/plx_dma.c
14072
14073 PM6764TR DRIVER
14074 M:      Charles Hsu     <hsu.yungteng@gmail.com>
14075 L:      linux-hwmon@vger.kernel.org
14076 S:      Maintained
14077 F:      Documentation/hwmon/pm6764tr.rst
14078 F:      drivers/hwmon/pmbus/pm6764tr.c
14079
14080 PM-GRAPH UTILITY
14081 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14082 L:      linux-pm@vger.kernel.org
14083 S:      Supported
14084 W:      https://01.org/pm-graph
14085 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14086 T:      git git://github.com/intel/pm-graph
14087 F:      tools/power/pm-graph
14088
14089 PMBUS HARDWARE MONITORING DRIVERS
14090 M:      Guenter Roeck <linux@roeck-us.net>
14091 L:      linux-hwmon@vger.kernel.org
14092 S:      Maintained
14093 W:      http://hwmon.wiki.kernel.org/
14094 W:      http://www.roeck-us.net/linux/drivers/
14095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14096 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14097 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
14098 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
14099 F:      Documentation/hwmon/adm1275.rst
14100 F:      Documentation/hwmon/ibm-cffps.rst
14101 F:      Documentation/hwmon/ir35221.rst
14102 F:      Documentation/hwmon/lm25066.rst
14103 F:      Documentation/hwmon/ltc2978.rst
14104 F:      Documentation/hwmon/ltc3815.rst
14105 F:      Documentation/hwmon/max16064.rst
14106 F:      Documentation/hwmon/max20751.rst
14107 F:      Documentation/hwmon/max31785.rst
14108 F:      Documentation/hwmon/max34440.rst
14109 F:      Documentation/hwmon/max8688.rst
14110 F:      Documentation/hwmon/pmbus-core.rst
14111 F:      Documentation/hwmon/pmbus.rst
14112 F:      Documentation/hwmon/tps40422.rst
14113 F:      Documentation/hwmon/ucd9000.rst
14114 F:      Documentation/hwmon/ucd9200.rst
14115 F:      Documentation/hwmon/zl6100.rst
14116 F:      drivers/hwmon/pmbus/
14117 F:      include/linux/pmbus.h
14118
14119 PMC SIERRA MaxRAID DRIVER
14120 L:      linux-scsi@vger.kernel.org
14121 S:      Orphan
14122 W:      http://www.pmc-sierra.com/
14123 F:      drivers/scsi/pmcraid.*
14124
14125 PMC SIERRA PM8001 DRIVER
14126 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14127 L:      linux-scsi@vger.kernel.org
14128 S:      Supported
14129 F:      drivers/scsi/pm8001/
14130
14131 PNI RM3100 IIO DRIVER
14132 M:      Song Qiang <songqiang1304521@gmail.com>
14133 L:      linux-iio@vger.kernel.org
14134 S:      Maintained
14135 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
14136 F:      drivers/iio/magnetometer/rm3100*
14137
14138 PNP SUPPORT
14139 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
14140 L:      linux-acpi@vger.kernel.org
14141 S:      Maintained
14142 F:      drivers/pnp/
14143 F:      include/linux/pnp.h
14144
14145 POSIX CLOCKS and TIMERS
14146 M:      Thomas Gleixner <tglx@linutronix.de>
14147 L:      linux-kernel@vger.kernel.org
14148 S:      Maintained
14149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
14150 F:      fs/timerfd.c
14151 F:      include/linux/time_namespace.h
14152 F:      include/linux/timer*
14153 F:      kernel/time/*timer*
14154 F:      kernel/time/namespace.c
14155
14156 POWER MANAGEMENT CORE
14157 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
14158 L:      linux-pm@vger.kernel.org
14159 S:      Supported
14160 B:      https://bugzilla.kernel.org
14161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14162 F:      drivers/base/power/
14163 F:      drivers/powercap/
14164 F:      include/linux/intel_rapl.h
14165 F:      include/linux/pm.h
14166 F:      include/linux/pm_*
14167 F:      include/linux/powercap.h
14168 F:      kernel/configs/nopm.config
14169
14170 POWER STATE COORDINATION INTERFACE (PSCI)
14171 M:      Mark Rutland <mark.rutland@arm.com>
14172 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14173 L:      linux-arm-kernel@lists.infradead.org
14174 S:      Maintained
14175 F:      drivers/firmware/psci/
14176 F:      include/linux/psci.h
14177 F:      include/uapi/linux/psci.h
14178
14179 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
14180 M:      Sebastian Reichel <sre@kernel.org>
14181 L:      linux-pm@vger.kernel.org
14182 S:      Maintained
14183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
14184 F:      Documentation/ABI/testing/sysfs-class-power
14185 F:      Documentation/devicetree/bindings/power/supply/
14186 F:      drivers/power/supply/
14187 F:      include/linux/power_supply.h
14188
14189 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
14190 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
14191 L:      linuxppc-dev@lists.ozlabs.org
14192 S:      Maintained
14193 F:      drivers/char/powernv-op-panel.c
14194
14195 PPP OVER ATM (RFC 2364)
14196 M:      Mitchell Blank Jr <mitch@sfgoth.com>
14197 S:      Maintained
14198 F:      include/uapi/linux/atmppp.h
14199 F:      net/atm/pppoatm.c
14200
14201 PPP OVER ETHERNET
14202 M:      Michal Ostrowski <mostrows@earthlink.net>
14203 S:      Maintained
14204 F:      drivers/net/ppp/pppoe.c
14205 F:      drivers/net/ppp/pppox.c
14206
14207 PPP OVER L2TP
14208 M:      James Chapman <jchapman@katalix.com>
14209 S:      Maintained
14210 F:      include/linux/if_pppol2tp.h
14211 F:      include/uapi/linux/if_pppol2tp.h
14212 F:      net/l2tp/l2tp_ppp.c
14213
14214 PPP PROTOCOL DRIVERS AND COMPRESSORS
14215 M:      Paul Mackerras <paulus@samba.org>
14216 L:      linux-ppp@vger.kernel.org
14217 S:      Maintained
14218 F:      drivers/net/ppp/ppp_*
14219
14220 PPS SUPPORT
14221 M:      Rodolfo Giometti <giometti@enneenne.com>
14222 L:      linuxpps@ml.enneenne.com (subscribers-only)
14223 S:      Maintained
14224 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
14225 F:      Documentation/ABI/testing/sysfs-pps
14226 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
14227 F:      Documentation/driver-api/pps.rst
14228 F:      drivers/pps/
14229 F:      include/linux/pps*.h
14230 F:      include/uapi/linux/pps.h
14231
14232 PPTP DRIVER
14233 M:      Dmitry Kozlov <xeb@mail.ru>
14234 L:      netdev@vger.kernel.org
14235 S:      Maintained
14236 W:      http://sourceforge.net/projects/accel-pptp
14237 F:      drivers/net/ppp/pptp.c
14238
14239 PRESSURE STALL INFORMATION (PSI)
14240 M:      Johannes Weiner <hannes@cmpxchg.org>
14241 S:      Maintained
14242 F:      include/linux/psi*
14243 F:      kernel/sched/psi.c
14244
14245 PRINTK
14246 M:      Petr Mladek <pmladek@suse.com>
14247 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
14248 R:      Steven Rostedt <rostedt@goodmis.org>
14249 R:      John Ogness <john.ogness@linutronix.de>
14250 S:      Maintained
14251 F:      include/linux/printk.h
14252 F:      kernel/printk/
14253
14254 PRISM54 WIRELESS DRIVER
14255 M:      Luis Chamberlain <mcgrof@kernel.org>
14256 L:      linux-wireless@vger.kernel.org
14257 S:      Obsolete
14258 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14259 F:      drivers/net/wireless/intersil/prism54/
14260
14261 PROC FILESYSTEM
14262 R:      Alexey Dobriyan <adobriyan@gmail.com>
14263 L:      linux-kernel@vger.kernel.org
14264 L:      linux-fsdevel@vger.kernel.org
14265 S:      Maintained
14266 F:      Documentation/filesystems/proc.rst
14267 F:      fs/proc/
14268 F:      include/linux/proc_fs.h
14269 F:      tools/testing/selftests/proc/
14270
14271 PROC SYSCTL
14272 M:      Luis Chamberlain <mcgrof@kernel.org>
14273 M:      Kees Cook <keescook@chromium.org>
14274 M:      Iurii Zaikin <yzaikin@google.com>
14275 L:      linux-kernel@vger.kernel.org
14276 L:      linux-fsdevel@vger.kernel.org
14277 S:      Maintained
14278 F:      fs/proc/proc_sysctl.c
14279 F:      include/linux/sysctl.h
14280 F:      kernel/sysctl-test.c
14281 F:      kernel/sysctl.c
14282 F:      tools/testing/selftests/sysctl/
14283
14284 PS3 NETWORK SUPPORT
14285 M:      Geoff Levand <geoff@infradead.org>
14286 L:      netdev@vger.kernel.org
14287 L:      linuxppc-dev@lists.ozlabs.org
14288 S:      Maintained
14289 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
14290
14291 PS3 PLATFORM SUPPORT
14292 M:      Geoff Levand <geoff@infradead.org>
14293 L:      linuxppc-dev@lists.ozlabs.org
14294 S:      Maintained
14295 F:      arch/powerpc/boot/ps3*
14296 F:      arch/powerpc/include/asm/lv1call.h
14297 F:      arch/powerpc/include/asm/ps3*.h
14298 F:      arch/powerpc/platforms/ps3/
14299 F:      drivers/*/ps3*
14300 F:      drivers/ps3/
14301 F:      drivers/rtc/rtc-ps3.c
14302 F:      drivers/usb/host/*ps3.c
14303 F:      sound/ppc/snd_ps3*
14304
14305 PS3VRAM DRIVER
14306 M:      Jim Paris <jim@jtan.com>
14307 M:      Geoff Levand <geoff@infradead.org>
14308 L:      linuxppc-dev@lists.ozlabs.org
14309 S:      Maintained
14310 F:      drivers/block/ps3vram.c
14311
14312 PSAMPLE PACKET SAMPLING SUPPORT
14313 M:      Yotam Gigi <yotam.gi@gmail.com>
14314 S:      Maintained
14315 F:      include/net/psample.h
14316 F:      include/uapi/linux/psample.h
14317 F:      net/psample
14318
14319 PSTORE FILESYSTEM
14320 M:      Kees Cook <keescook@chromium.org>
14321 M:      Anton Vorontsov <anton@enomsg.org>
14322 M:      Colin Cross <ccross@android.com>
14323 M:      Tony Luck <tony.luck@intel.com>
14324 S:      Maintained
14325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
14326 F:      Documentation/admin-guide/ramoops.rst
14327 F:      Documentation/admin-guide/pstore-blk.rst
14328 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
14329 F:      drivers/acpi/apei/erst.c
14330 F:      drivers/firmware/efi/efi-pstore.c
14331 F:      fs/pstore/
14332 F:      include/linux/pstore*
14333 K:      \b(pstore|ramoops)
14334
14335 PTP HARDWARE CLOCK SUPPORT
14336 M:      Richard Cochran <richardcochran@gmail.com>
14337 L:      netdev@vger.kernel.org
14338 S:      Maintained
14339 W:      http://linuxptp.sourceforge.net/
14340 F:      Documentation/ABI/testing/sysfs-ptp
14341 F:      Documentation/driver-api/ptp.rst
14342 F:      drivers/net/phy/dp83640*
14343 F:      drivers/ptp/*
14344 F:      include/linux/ptp_cl*
14345
14346 PTRACE SUPPORT
14347 M:      Oleg Nesterov <oleg@redhat.com>
14348 S:      Maintained
14349 F:      arch/*/*/ptrace*.c
14350 F:      arch/*/include/asm/ptrace*.h
14351 F:      arch/*/ptrace*.c
14352 F:      include/asm-generic/syscall.h
14353 F:      include/linux/ptrace.h
14354 F:      include/linux/regset.h
14355 F:      include/linux/tracehook.h
14356 F:      include/uapi/linux/ptrace.h
14357 F:      include/uapi/linux/ptrace.h
14358 F:      kernel/ptrace.c
14359
14360 PULSE8-CEC DRIVER
14361 M:      Hans Verkuil <hverkuil@xs4all.nl>
14362 L:      linux-media@vger.kernel.org
14363 S:      Maintained
14364 T:      git git://linuxtv.org/media_tree.git
14365 F:      Documentation/admin-guide/media/pulse8-cec.rst
14366 F:      drivers/media/cec/usb/pulse8/
14367
14368 PVRUSB2 VIDEO4LINUX DRIVER
14369 M:      Mike Isely <isely@pobox.com>
14370 L:      pvrusb2@isely.net       (subscribers-only)
14371 L:      linux-media@vger.kernel.org
14372 S:      Maintained
14373 W:      http://www.isely.net/pvrusb2/
14374 T:      git git://linuxtv.org/media_tree.git
14375 F:      Documentation/driver-api/media/drivers/pvrusb2*
14376 F:      drivers/media/usb/pvrusb2/
14377
14378 PWC WEBCAM DRIVER
14379 M:      Hans Verkuil <hverkuil@xs4all.nl>
14380 L:      linux-media@vger.kernel.org
14381 S:      Odd Fixes
14382 T:      git git://linuxtv.org/media_tree.git
14383 F:      drivers/media/usb/pwc/*
14384 F:      include/trace/events/pwc.h
14385
14386 PWM FAN DRIVER
14387 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14388 L:      linux-hwmon@vger.kernel.org
14389 S:      Supported
14390 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
14391 F:      Documentation/hwmon/pwm-fan.rst
14392 F:      drivers/hwmon/pwm-fan.c
14393
14394 PWM IR Transmitter
14395 M:      Sean Young <sean@mess.org>
14396 L:      linux-media@vger.kernel.org
14397 S:      Maintained
14398 F:      drivers/media/rc/pwm-ir-tx.c
14399
14400 PWM SUBSYSTEM
14401 M:      Thierry Reding <thierry.reding@gmail.com>
14402 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
14403 M:      Lee Jones <lee.jones@linaro.org>
14404 L:      linux-pwm@vger.kernel.org
14405 S:      Maintained
14406 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
14407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
14408 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
14409 F:      Documentation/devicetree/bindings/pwm/
14410 F:      Documentation/driver-api/pwm.rst
14411 F:      drivers/gpio/gpio-mvebu.c
14412 F:      drivers/pwm/
14413 F:      drivers/video/backlight/pwm_bl.c
14414 F:      include/linux/pwm.h
14415 F:      include/linux/pwm_backlight.h
14416 K:      pwm_(config|apply_state|ops)
14417
14418 PXA GPIO DRIVER
14419 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14420 L:      linux-gpio@vger.kernel.org
14421 S:      Maintained
14422 F:      drivers/gpio/gpio-pxa.c
14423
14424 PXA MMCI DRIVER
14425 S:      Orphan
14426
14427 PXA RTC DRIVER
14428 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14429 L:      linux-rtc@vger.kernel.org
14430 S:      Maintained
14431
14432 PXA2xx/PXA3xx SUPPORT
14433 M:      Daniel Mack <daniel@zonque.org>
14434 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
14435 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14436 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14437 S:      Maintained
14438 T:      git git://github.com/hzhuang1/linux.git
14439 T:      git git://github.com/rjarzmik/linux.git
14440 F:      arch/arm/boot/dts/pxa*
14441 F:      arch/arm/mach-pxa/
14442 F:      drivers/dma/pxa*
14443 F:      drivers/pcmcia/pxa2xx*
14444 F:      drivers/pinctrl/pxa/
14445 F:      drivers/spi/spi-pxa2xx*
14446 F:      drivers/usb/gadget/udc/pxa2*
14447 F:      include/sound/pxa2xx-lib.h
14448 F:      sound/arm/pxa*
14449 F:      sound/soc/pxa/
14450
14451 QAT DRIVER
14452 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
14453 L:      qat-linux@intel.com
14454 S:      Supported
14455 F:      drivers/crypto/qat/
14456
14457 QCOM AUDIO (ASoC) DRIVERS
14458 M:      Patrick Lai <plai@codeaurora.org>
14459 M:      Banajit Goswami <bgoswami@codeaurora.org>
14460 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14461 S:      Supported
14462 F:      sound/soc/qcom/
14463
14464 QCOM IPA DRIVER
14465 M:      Alex Elder <elder@kernel.org>
14466 L:      netdev@vger.kernel.org
14467 S:      Supported
14468 F:      drivers/net/ipa/
14469
14470 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
14471 M:      Gabriel Somlo <somlo@cmu.edu>
14472 M:      "Michael S. Tsirkin" <mst@redhat.com>
14473 L:      qemu-devel@nongnu.org
14474 S:      Maintained
14475 F:      drivers/firmware/qemu_fw_cfg.c
14476 F:      include/uapi/linux/qemu_fw_cfg.h
14477
14478 QIB DRIVER
14479 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14480 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14481 L:      linux-rdma@vger.kernel.org
14482 S:      Supported
14483 F:      drivers/infiniband/hw/qib/
14484
14485 QLOGIC QL41xxx FCOE DRIVER
14486 M:      Saurav Kashyap <skashyap@marvell.com>
14487 M:      Javed Hasan <jhasan@marvell.com>
14488 M:      GR-QLogic-Storage-Upstream@marvell.com
14489 L:      linux-scsi@vger.kernel.org
14490 S:      Supported
14491 F:      drivers/scsi/qedf/
14492
14493 QLOGIC QL41xxx ISCSI DRIVER
14494 M:      Nilesh Javali <njavali@marvell.com>
14495 M:      Manish Rangankar <mrangankar@marvell.com>
14496 M:      GR-QLogic-Storage-Upstream@marvell.com
14497 L:      linux-scsi@vger.kernel.org
14498 S:      Supported
14499 F:      drivers/scsi/qedi/
14500
14501 QLOGIC QL4xxx ETHERNET DRIVER
14502 M:      Ariel Elior <aelior@marvell.com>
14503 M:      GR-everest-linux-l2@marvell.com
14504 L:      netdev@vger.kernel.org
14505 S:      Supported
14506 F:      drivers/net/ethernet/qlogic/qed/
14507 F:      drivers/net/ethernet/qlogic/qede/
14508 F:      include/linux/qed/
14509
14510 QLOGIC QL4xxx RDMA DRIVER
14511 M:      Michal Kalderon <mkalderon@marvell.com>
14512 M:      Ariel Elior <aelior@marvell.com>
14513 L:      linux-rdma@vger.kernel.org
14514 S:      Supported
14515 F:      drivers/infiniband/hw/qedr/
14516 F:      include/uapi/rdma/qedr-abi.h
14517
14518 QLOGIC QLA1280 SCSI DRIVER
14519 M:      Michael Reed <mdr@sgi.com>
14520 L:      linux-scsi@vger.kernel.org
14521 S:      Maintained
14522 F:      drivers/scsi/qla1280.[ch]
14523
14524 QLOGIC QLA2XXX FC-SCSI DRIVER
14525 M:      Nilesh Javali <njavali@marvell.com>
14526 M:      GR-QLogic-Storage-Upstream@marvell.com
14527 L:      linux-scsi@vger.kernel.org
14528 S:      Supported
14529 F:      drivers/scsi/qla2xxx/
14530
14531 QLOGIC QLA3XXX NETWORK DRIVER
14532 M:      GR-Linux-NIC-Dev@marvell.com
14533 L:      netdev@vger.kernel.org
14534 S:      Supported
14535 F:      drivers/net/ethernet/qlogic/qla3xxx.*
14536
14537 QLOGIC QLA4XXX iSCSI DRIVER
14538 M:      Nilesh Javali <njavali@marvell.com>
14539 M:      Manish Rangankar <mrangankar@marvell.com>
14540 M:      GR-QLogic-Storage-Upstream@marvell.com
14541 L:      linux-scsi@vger.kernel.org
14542 S:      Supported
14543 F:      drivers/scsi/qla4xxx/
14544
14545 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14546 M:      Shahed Shaikh <shshaikh@marvell.com>
14547 M:      Manish Chopra <manishc@marvell.com>
14548 M:      GR-Linux-NIC-Dev@marvell.com
14549 L:      netdev@vger.kernel.org
14550 S:      Supported
14551 F:      drivers/net/ethernet/qlogic/qlcnic/
14552
14553 QLOGIC QLGE 10Gb ETHERNET DRIVER
14554 M:      Manish Chopra <manishc@marvell.com>
14555 M:      GR-Linux-NIC-Dev@marvell.com
14556 L:      netdev@vger.kernel.org
14557 S:      Supported
14558 F:      drivers/staging/qlge/
14559
14560 QM1D1B0004 MEDIA DRIVER
14561 M:      Akihiro Tsukada <tskd08@gmail.com>
14562 L:      linux-media@vger.kernel.org
14563 S:      Odd Fixes
14564 F:      drivers/media/tuners/qm1d1b0004*
14565
14566 QM1D1C0042 MEDIA DRIVER
14567 M:      Akihiro Tsukada <tskd08@gmail.com>
14568 L:      linux-media@vger.kernel.org
14569 S:      Odd Fixes
14570 F:      drivers/media/tuners/qm1d1c0042*
14571
14572 QNX4 FILESYSTEM
14573 M:      Anders Larsen <al@alarsen.net>
14574 S:      Maintained
14575 W:      http://www.alarsen.net/linux/qnx4fs/
14576 F:      fs/qnx4/
14577 F:      include/uapi/linux/qnx4_fs.h
14578 F:      include/uapi/linux/qnxtypes.h
14579
14580 QORIQ DPAA2 FSL-MC BUS DRIVER
14581 M:      Stuart Yoder <stuyoder@gmail.com>
14582 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
14583 L:      linux-kernel@vger.kernel.org
14584 S:      Maintained
14585 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
14586 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
14587 F:      drivers/bus/fsl-mc/
14588
14589 QT1010 MEDIA DRIVER
14590 M:      Antti Palosaari <crope@iki.fi>
14591 L:      linux-media@vger.kernel.org
14592 S:      Maintained
14593 W:      https://linuxtv.org
14594 W:      http://palosaari.fi/linux/
14595 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14596 T:      git git://linuxtv.org/anttip/media_tree.git
14597 F:      drivers/media/tuners/qt1010*
14598
14599 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
14600 M:      Kalle Valo <kvalo@codeaurora.org>
14601 L:      ath10k@lists.infradead.org
14602 S:      Supported
14603 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
14604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14605 F:      drivers/net/wireless/ath/ath10k/
14606
14607 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
14608 M:      Kalle Valo <kvalo@codeaurora.org>
14609 L:      ath11k@lists.infradead.org
14610 S:      Supported
14611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14612 F:      drivers/net/wireless/ath/ath11k/
14613
14614 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
14615 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
14616 L:      linux-wireless@vger.kernel.org
14617 S:      Supported
14618 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
14619 F:      drivers/net/wireless/ath/ath9k/
14620
14621 QUALCOMM CAMERA SUBSYSTEM DRIVER
14622 M:      Robert Foss <robert.foss@linaro.org>
14623 M:      Todor Tomov <todor.too@gmail.com>
14624 L:      linux-media@vger.kernel.org
14625 S:      Maintained
14626 F:      Documentation/admin-guide/media/qcom_camss.rst
14627 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
14628 F:      drivers/media/platform/qcom/camss/
14629
14630 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
14631 M:      Niklas Cassel <nks@flawful.org>
14632 L:      linux-pm@vger.kernel.org
14633 L:      linux-arm-msm@vger.kernel.org
14634 S:      Maintained
14635 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
14636 F:      drivers/soc/qcom/cpr.c
14637
14638 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
14639 M:      Ilia Lin <ilia.lin@kernel.org>
14640 L:      linux-pm@vger.kernel.org
14641 S:      Maintained
14642 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
14643 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
14644
14645 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
14646 M:      Timur Tabi <timur@kernel.org>
14647 L:      netdev@vger.kernel.org
14648 S:      Maintained
14649 F:      drivers/net/ethernet/qualcomm/emac/
14650
14651 QUALCOMM ETHQOS ETHERNET DRIVER
14652 M:      Vinod Koul <vkoul@kernel.org>
14653 L:      netdev@vger.kernel.org
14654 S:      Maintained
14655 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
14656 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
14657
14658 QUALCOMM GENERIC INTERFACE I2C DRIVER
14659 M:      Akash Asthana <akashast@codeaurora.org>
14660 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
14661 L:      linux-i2c@vger.kernel.org
14662 L:      linux-arm-msm@vger.kernel.org
14663 S:      Supported
14664 F:      drivers/i2c/busses/i2c-qcom-geni.c
14665
14666 QUALCOMM HEXAGON ARCHITECTURE
14667 M:      Brian Cain <bcain@codeaurora.org>
14668 L:      linux-hexagon@vger.kernel.org
14669 S:      Supported
14670 F:      arch/hexagon/
14671
14672 QUALCOMM HIDMA DRIVER
14673 M:      Sinan Kaya <okaya@kernel.org>
14674 L:      linux-arm-kernel@lists.infradead.org
14675 L:      linux-arm-msm@vger.kernel.org
14676 L:      dmaengine@vger.kernel.org
14677 S:      Supported
14678 F:      drivers/dma/qcom/hidma*
14679
14680 QUALCOMM I2C CCI DRIVER
14681 M:      Loic Poulain <loic.poulain@linaro.org>
14682 M:      Robert Foss <robert.foss@linaro.org>
14683 L:      linux-i2c@vger.kernel.org
14684 L:      linux-arm-msm@vger.kernel.org
14685 S:      Maintained
14686 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
14687 F:      drivers/i2c/busses/i2c-qcom-cci.c
14688
14689 QUALCOMM IOMMU
14690 M:      Rob Clark <robdclark@gmail.com>
14691 L:      iommu@lists.linux-foundation.org
14692 L:      linux-arm-msm@vger.kernel.org
14693 S:      Maintained
14694 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
14695
14696 QUALCOMM IPCC MAILBOX DRIVER
14697 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
14698 L:      linux-arm-msm@vger.kernel.org
14699 S:      Supported
14700 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
14701 F:      drivers/mailbox/qcom-ipcc.c
14702 F:      include/dt-bindings/mailbox/qcom-ipcc.h
14703
14704 QUALCOMM IPQ4019 USB PHY DRIVER
14705 M:      Robert Marko <robert.marko@sartura.hr>
14706 M:      Luka Perkov <luka.perkov@sartura.hr>
14707 L:      linux-arm-msm@vger.kernel.org
14708 S:      Maintained
14709 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
14710 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
14711
14712 QUALCOMM IPQ4019 VQMMC REGULATOR 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/regulator/vqmmc-ipq4019-regulator.yaml
14718 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
14719
14720 QUALCOMM RMNET DRIVER
14721 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
14722 M:      Sean Tranchetti <stranche@codeaurora.org>
14723 L:      netdev@vger.kernel.org
14724 S:      Maintained
14725 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
14726 F:      drivers/net/ethernet/qualcomm/rmnet/
14727 F:      include/linux/if_rmnet.h
14728
14729 QUALCOMM TSENS THERMAL DRIVER
14730 M:      Amit Kucheria <amitk@kernel.org>
14731 L:      linux-pm@vger.kernel.org
14732 L:      linux-arm-msm@vger.kernel.org
14733 S:      Maintained
14734 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14735 F:      drivers/thermal/qcom/
14736
14737 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14738 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
14739 L:      linux-media@vger.kernel.org
14740 L:      linux-arm-msm@vger.kernel.org
14741 S:      Maintained
14742 T:      git git://linuxtv.org/media_tree.git
14743 F:      Documentation/devicetree/bindings/media/*venus*
14744 F:      drivers/media/platform/qcom/venus/
14745
14746 QUALCOMM WCN36XX WIRELESS DRIVER
14747 M:      Kalle Valo <kvalo@codeaurora.org>
14748 L:      wcn36xx@lists.infradead.org
14749 S:      Supported
14750 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
14751 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14752 F:      drivers/net/wireless/ath/wcn36xx/
14753
14754 QUANTENNA QTNFMAC WIRELESS DRIVER
14755 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
14756 R:      Sergey Matyukevich <geomatsi@gmail.com>
14757 L:      linux-wireless@vger.kernel.org
14758 S:      Maintained
14759 F:      drivers/net/wireless/quantenna
14760
14761 RADEON and AMDGPU DRM DRIVERS
14762 M:      Alex Deucher <alexander.deucher@amd.com>
14763 M:      Christian König <christian.koenig@amd.com>
14764 L:      amd-gfx@lists.freedesktop.org
14765 S:      Supported
14766 T:      git git://people.freedesktop.org/~agd5f/linux
14767 F:      drivers/gpu/drm/amd/
14768 F:      drivers/gpu/drm/radeon/
14769 F:      include/uapi/drm/amdgpu_drm.h
14770 F:      include/uapi/drm/radeon_drm.h
14771
14772 RADEON FRAMEBUFFER DISPLAY DRIVER
14773 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
14774 L:      linux-fbdev@vger.kernel.org
14775 S:      Maintained
14776 F:      drivers/video/fbdev/aty/radeon*
14777 F:      include/uapi/linux/radeonfb.h
14778
14779 RADIOSHARK RADIO DRIVER
14780 M:      Hans Verkuil <hverkuil@xs4all.nl>
14781 L:      linux-media@vger.kernel.org
14782 S:      Maintained
14783 T:      git git://linuxtv.org/media_tree.git
14784 F:      drivers/media/radio/radio-shark.c
14785
14786 RADIOSHARK2 RADIO DRIVER
14787 M:      Hans Verkuil <hverkuil@xs4all.nl>
14788 L:      linux-media@vger.kernel.org
14789 S:      Maintained
14790 T:      git git://linuxtv.org/media_tree.git
14791 F:      drivers/media/radio/radio-shark2.c
14792 F:      drivers/media/radio/radio-tea5777.c
14793
14794 RADOS BLOCK DEVICE (RBD)
14795 M:      Ilya Dryomov <idryomov@gmail.com>
14796 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
14797 L:      ceph-devel@vger.kernel.org
14798 S:      Supported
14799 W:      http://ceph.com/
14800 T:      git git://github.com/ceph/ceph-client.git
14801 F:      Documentation/ABI/testing/sysfs-bus-rbd
14802 F:      drivers/block/rbd.c
14803 F:      drivers/block/rbd_types.h
14804
14805 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14806 M:      Paul Mackerras <paulus@samba.org>
14807 L:      linux-fbdev@vger.kernel.org
14808 S:      Maintained
14809 F:      drivers/video/fbdev/aty/aty128fb.c
14810
14811 RAINSHADOW-CEC DRIVER
14812 M:      Hans Verkuil <hverkuil@xs4all.nl>
14813 L:      linux-media@vger.kernel.org
14814 S:      Maintained
14815 T:      git git://linuxtv.org/media_tree.git
14816 F:      drivers/media/cec/usb/rainshadow/
14817
14818 RALINK MIPS ARCHITECTURE
14819 M:      John Crispin <john@phrozen.org>
14820 L:      linux-mips@vger.kernel.org
14821 S:      Maintained
14822 F:      arch/mips/ralink
14823
14824 RALINK RT2X00 WIRELESS LAN DRIVER
14825 M:      Stanislaw Gruszka <stf_xl@wp.pl>
14826 M:      Helmut Schaa <helmut.schaa@googlemail.com>
14827 L:      linux-wireless@vger.kernel.org
14828 S:      Maintained
14829 F:      drivers/net/wireless/ralink/rt2x00/
14830
14831 RAMDISK RAM BLOCK DEVICE DRIVER
14832 M:      Jens Axboe <axboe@kernel.dk>
14833 S:      Maintained
14834 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14835 F:      drivers/block/brd.c
14836
14837 RANCHU VIRTUAL BOARD FOR MIPS
14838 M:      Miodrag Dinic <miodrag.dinic@mips.com>
14839 L:      linux-mips@vger.kernel.org
14840 S:      Supported
14841 F:      arch/mips/configs/generic/board-ranchu.config
14842 F:      arch/mips/generic/board-ranchu.c
14843
14844 RANDOM NUMBER DRIVER
14845 M:      "Theodore Ts'o" <tytso@mit.edu>
14846 S:      Maintained
14847 F:      drivers/char/random.c
14848
14849 RAPIDIO SUBSYSTEM
14850 M:      Matt Porter <mporter@kernel.crashing.org>
14851 M:      Alexandre Bounine <alex.bou9@gmail.com>
14852 S:      Maintained
14853 F:      drivers/rapidio/
14854
14855 RAS INFRASTRUCTURE
14856 M:      Tony Luck <tony.luck@intel.com>
14857 M:      Borislav Petkov <bp@alien8.de>
14858 L:      linux-edac@vger.kernel.org
14859 S:      Maintained
14860 F:      Documentation/admin-guide/ras.rst
14861 F:      drivers/ras/
14862 F:      include/linux/ras.h
14863 F:      include/ras/ras_event.h
14864
14865 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14866 L:      linux-wireless@vger.kernel.org
14867 S:      Orphan
14868 F:      drivers/net/wireless/ray*
14869
14870 RC-CORE / LIRC FRAMEWORK
14871 M:      Sean Young <sean@mess.org>
14872 L:      linux-media@vger.kernel.org
14873 S:      Maintained
14874 W:      http://linuxtv.org
14875 T:      git git://linuxtv.org/media_tree.git
14876 F:      Documentation/driver-api/media/rc-core.rst
14877 F:      Documentation/userspace-api/media/rc/
14878 F:      drivers/media/rc/
14879 F:      include/media/rc-map.h
14880 F:      include/media/rc-core.h
14881 F:      include/uapi/linux/lirc.h
14882
14883 RCMM REMOTE CONTROLS DECODER
14884 M:      Patrick Lerda <patrick9876@free.fr>
14885 S:      Maintained
14886 F:      drivers/media/rc/ir-rcmm-decoder.c
14887
14888 RCUTORTURE TEST FRAMEWORK
14889 M:      "Paul E. McKenney" <paulmck@kernel.org>
14890 M:      Josh Triplett <josh@joshtriplett.org>
14891 R:      Steven Rostedt <rostedt@goodmis.org>
14892 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14893 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14894 L:      rcu@vger.kernel.org
14895 S:      Supported
14896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14897 F:      tools/testing/selftests/rcutorture
14898
14899 RDACM20 Camera Sensor
14900 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
14901 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
14902 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
14903 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
14904 L:      linux-media@vger.kernel.org
14905 S:      Maintained
14906 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
14907 F:      drivers/media/i2c/max9271.c
14908 F:      drivers/media/i2c/max9271.h
14909 F:      drivers/media/i2c/rdacm20.c
14910
14911 RDC R-321X SoC
14912 M:      Florian Fainelli <florian@openwrt.org>
14913 S:      Maintained
14914
14915 RDC R6040 FAST ETHERNET DRIVER
14916 M:      Florian Fainelli <f.fainelli@gmail.com>
14917 L:      netdev@vger.kernel.org
14918 S:      Maintained
14919 F:      drivers/net/ethernet/rdc/r6040.c
14920
14921 RDMAVT - RDMA verbs software
14922 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14923 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14924 L:      linux-rdma@vger.kernel.org
14925 S:      Supported
14926 F:      drivers/infiniband/sw/rdmavt
14927
14928 RDS - RELIABLE DATAGRAM SOCKETS
14929 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
14930 L:      netdev@vger.kernel.org
14931 L:      linux-rdma@vger.kernel.org
14932 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
14933 S:      Supported
14934 W:      https://oss.oracle.com/projects/rds/
14935 F:      Documentation/networking/rds.rst
14936 F:      net/rds/
14937
14938 RDT - RESOURCE ALLOCATION
14939 M:      Fenghua Yu <fenghua.yu@intel.com>
14940 M:      Reinette Chatre <reinette.chatre@intel.com>
14941 L:      linux-kernel@vger.kernel.org
14942 S:      Supported
14943 F:      Documentation/x86/resctrl*
14944 F:      arch/x86/include/asm/resctrl.h
14945 F:      arch/x86/kernel/cpu/resctrl/
14946 F:      tools/testing/selftests/resctrl/
14947
14948 READ-COPY UPDATE (RCU)
14949 M:      "Paul E. McKenney" <paulmck@kernel.org>
14950 M:      Josh Triplett <josh@joshtriplett.org>
14951 R:      Steven Rostedt <rostedt@goodmis.org>
14952 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14953 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14954 R:      Joel Fernandes <joel@joelfernandes.org>
14955 L:      rcu@vger.kernel.org
14956 S:      Supported
14957 W:      http://www.rdrop.com/users/paulmck/RCU/
14958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14959 F:      Documentation/RCU/
14960 F:      include/linux/rcu*
14961 F:      kernel/rcu/
14962 X:      Documentation/RCU/torture.rst
14963 X:      include/linux/srcu*.h
14964 X:      kernel/rcu/srcu*.c
14965
14966 REAL TIME CLOCK (RTC) SUBSYSTEM
14967 M:      Alessandro Zummo <a.zummo@towertech.it>
14968 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14969 L:      linux-rtc@vger.kernel.org
14970 S:      Maintained
14971 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14973 F:      Documentation/admin-guide/rtc.rst
14974 F:      Documentation/devicetree/bindings/rtc/
14975 F:      drivers/rtc/
14976 F:      include/linux/platform_data/rtc-*
14977 F:      include/linux/rtc.h
14978 F:      include/linux/rtc/
14979 F:      include/uapi/linux/rtc.h
14980 F:      tools/testing/selftests/rtc/
14981
14982 REALTEK AUDIO CODECS
14983 M:      Oder Chiou <oder_chiou@realtek.com>
14984 S:      Maintained
14985 F:      include/sound/rt*.h
14986 F:      sound/soc/codecs/rt*
14987
14988 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14989 M:      Linus Walleij <linus.walleij@linaro.org>
14990 S:      Maintained
14991 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14992 F:      drivers/net/dsa/realtek-smi*
14993 F:      drivers/net/dsa/rtl83*
14994
14995 REALTEK WIRELESS DRIVER (rtlwifi family)
14996 M:      Ping-Ke Shih <pkshih@realtek.com>
14997 L:      linux-wireless@vger.kernel.org
14998 S:      Maintained
14999 W:      https://wireless.wiki.kernel.org/
15000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15001 F:      drivers/net/wireless/realtek/rtlwifi/
15002
15003 REALTEK WIRELESS DRIVER (rtw88)
15004 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
15005 L:      linux-wireless@vger.kernel.org
15006 S:      Maintained
15007 F:      drivers/net/wireless/realtek/rtw88/
15008
15009 REDPINE WIRELESS DRIVER
15010 M:      Amitkumar Karwar <amitkarwar@gmail.com>
15011 M:      Siva Rebbagondla <siva8118@gmail.com>
15012 L:      linux-wireless@vger.kernel.org
15013 S:      Maintained
15014 F:      drivers/net/wireless/rsi/
15015
15016 REGISTER MAP ABSTRACTION
15017 M:      Mark Brown <broonie@kernel.org>
15018 L:      linux-kernel@vger.kernel.org
15019 S:      Supported
15020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15021 F:      Documentation/devicetree/bindings/regmap/
15022 F:      drivers/base/regmap/
15023 F:      include/linux/regmap.h
15024
15025 REISERFS FILE SYSTEM
15026 L:      reiserfs-devel@vger.kernel.org
15027 S:      Supported
15028 F:      fs/reiserfs/
15029
15030 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15031 M:      Ohad Ben-Cohen <ohad@wizery.com>
15032 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15033 L:      linux-remoteproc@vger.kernel.org
15034 S:      Maintained
15035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15036 F:      Documentation/ABI/testing/sysfs-class-remoteproc
15037 F:      Documentation/devicetree/bindings/remoteproc/
15038 F:      Documentation/staging/remoteproc.rst
15039 F:      drivers/remoteproc/
15040 F:      include/linux/remoteproc.h
15041 F:      include/linux/remoteproc/
15042
15043 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15044 M:      Ohad Ben-Cohen <ohad@wizery.com>
15045 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15046 L:      linux-remoteproc@vger.kernel.org
15047 S:      Maintained
15048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15049 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
15050 F:      Documentation/staging/rpmsg.rst
15051 F:      drivers/rpmsg/
15052 F:      include/linux/rpmsg.h
15053 F:      include/linux/rpmsg/
15054 F:      include/uapi/linux/rpmsg.h
15055 F:      samples/rpmsg/
15056
15057 RENESAS CLOCK DRIVERS
15058 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15059 L:      linux-renesas-soc@vger.kernel.org
15060 S:      Supported
15061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
15062 F:      Documentation/devicetree/bindings/clock/renesas,*
15063 F:      drivers/clk/renesas/
15064
15065 RENESAS EMEV2 I2C DRIVER
15066 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15067 S:      Supported
15068 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
15069 F:      drivers/i2c/busses/i2c-emev2.c
15070
15071 RENESAS ETHERNET DRIVERS
15072 R:      Sergei Shtylyov <sergei.shtylyov@gmail.com>
15073 L:      netdev@vger.kernel.org
15074 L:      linux-renesas-soc@vger.kernel.org
15075 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
15076 F:      drivers/net/ethernet/renesas/
15077 F:      include/linux/sh_eth.h
15078
15079 RENESAS R-CAR GYROADC DRIVER
15080 M:      Marek Vasut <marek.vasut@gmail.com>
15081 L:      linux-iio@vger.kernel.org
15082 S:      Supported
15083 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
15084 F:      drivers/iio/adc/rcar-gyroadc.c
15085
15086 RENESAS R-CAR I2C DRIVERS
15087 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15088 S:      Supported
15089 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
15090 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
15091 F:      drivers/i2c/busses/i2c-rcar.c
15092 F:      drivers/i2c/busses/i2c-sh_mobile.c
15093
15094 RENESAS R-CAR THERMAL DRIVERS
15095 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
15096 L:      linux-renesas-soc@vger.kernel.org
15097 S:      Supported
15098 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
15099 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
15100 F:      drivers/thermal/rcar_gen3_thermal.c
15101 F:      drivers/thermal/rcar_thermal.c
15102
15103 RENESAS RIIC DRIVER
15104 M:      Chris Brandt <chris.brandt@renesas.com>
15105 S:      Supported
15106 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
15107 F:      drivers/i2c/busses/i2c-riic.c
15108
15109 RENESAS USB PHY DRIVER
15110 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15111 L:      linux-renesas-soc@vger.kernel.org
15112 S:      Maintained
15113 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
15114
15115 RESET CONTROLLER FRAMEWORK
15116 M:      Philipp Zabel <p.zabel@pengutronix.de>
15117 S:      Maintained
15118 T:      git git://git.pengutronix.de/git/pza/linux
15119 F:      Documentation/devicetree/bindings/reset/
15120 F:      Documentation/driver-api/reset.rst
15121 F:      drivers/reset/
15122 F:      include/dt-bindings/reset/
15123 F:      include/linux/reset-controller.h
15124 F:      include/linux/reset.h
15125 F:      include/linux/reset/
15126 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
15127
15128 RESTARTABLE SEQUENCES SUPPORT
15129 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15130 M:      Peter Zijlstra <peterz@infradead.org>
15131 M:      "Paul E. McKenney" <paulmck@kernel.org>
15132 M:      Boqun Feng <boqun.feng@gmail.com>
15133 L:      linux-kernel@vger.kernel.org
15134 S:      Supported
15135 F:      include/trace/events/rseq.h
15136 F:      include/uapi/linux/rseq.h
15137 F:      kernel/rseq.c
15138 F:      tools/testing/selftests/rseq/
15139
15140 RFKILL
15141 M:      Johannes Berg <johannes@sipsolutions.net>
15142 L:      linux-wireless@vger.kernel.org
15143 S:      Maintained
15144 W:      https://wireless.wiki.kernel.org/
15145 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
15146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
15147 F:      Documentation/ABI/stable/sysfs-class-rfkill
15148 F:      Documentation/driver-api/rfkill.rst
15149 F:      include/linux/rfkill.h
15150 F:      include/uapi/linux/rfkill.h
15151 F:      net/rfkill/
15152
15153 RHASHTABLE
15154 M:      Thomas Graf <tgraf@suug.ch>
15155 M:      Herbert Xu <herbert@gondor.apana.org.au>
15156 L:      netdev@vger.kernel.org
15157 S:      Maintained
15158 F:      include/linux/rhashtable-types.h
15159 F:      include/linux/rhashtable.h
15160 F:      lib/rhashtable.c
15161 F:      lib/test_rhashtable.c
15162
15163 RICOH R5C592 MEMORYSTICK DRIVER
15164 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15165 S:      Maintained
15166 F:      drivers/memstick/host/r592.*
15167
15168 RICOH SMARTMEDIA/XD DRIVER
15169 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15170 S:      Maintained
15171 F:      drivers/mtd/nand/raw/r852.c
15172 F:      drivers/mtd/nand/raw/r852.h
15173
15174 RISC-V ARCHITECTURE
15175 M:      Paul Walmsley <paul.walmsley@sifive.com>
15176 M:      Palmer Dabbelt <palmer@dabbelt.com>
15177 M:      Albert Ou <aou@eecs.berkeley.edu>
15178 L:      linux-riscv@lists.infradead.org
15179 S:      Supported
15180 P:      Documentation/riscv/patch-acceptance.rst
15181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
15182 F:      arch/riscv/
15183 N:      riscv
15184 K:      riscv
15185
15186 RNBD BLOCK DRIVERS
15187 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
15188 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15189 L:      linux-block@vger.kernel.org
15190 S:      Maintained
15191 F:      drivers/block/rnbd/
15192
15193 ROCCAT DRIVERS
15194 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
15195 S:      Maintained
15196 W:      http://sourceforge.net/projects/roccat/
15197 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
15198 F:      drivers/hid/hid-roccat*
15199 F:      include/linux/hid-roccat*
15200
15201 ROCKCHIP ISP V1 DRIVER
15202 M:      Helen Koike <helen.koike@collabora.com>
15203 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
15204 L:      linux-media@vger.kernel.org
15205 L:      linux-rockchip@lists.infradead.org
15206 S:      Maintained
15207 F:      Documentation/admin-guide/media/rkisp1.rst
15208 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
15209 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
15210 F:      drivers/media/platform/rockchip/rkisp1
15211 F:      include/uapi/linux/rkisp1-config.h
15212
15213 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
15214 M:      Jacob Chen <jacob-chen@iotwrt.com>
15215 M:      Ezequiel Garcia <ezequiel@collabora.com>
15216 L:      linux-media@vger.kernel.org
15217 L:      linux-rockchip@lists.infradead.org
15218 S:      Maintained
15219 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
15220 F:      drivers/media/platform/rockchip/rga/
15221
15222 ROCKCHIP VIDEO DECODER DRIVER
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,vdec.yaml
15228 F:      drivers/staging/media/rkvdec/
15229
15230 ROCKER DRIVER
15231 M:      Jiri Pirko <jiri@resnulli.us>
15232 L:      netdev@vger.kernel.org
15233 S:      Supported
15234 F:      drivers/net/ethernet/rocker/
15235
15236 ROCKETPORT DRIVER
15237 S:      Maintained
15238 W:      http://www.comtrol.com
15239 F:      Documentation/driver-api/serial/rocket.rst
15240 F:      drivers/tty/rocket*
15241
15242 ROCKETPORT EXPRESS/INFINITY DRIVER
15243 M:      Kevin Cernekee <cernekee@gmail.com>
15244 L:      linux-serial@vger.kernel.org
15245 S:      Odd Fixes
15246 F:      drivers/tty/serial/rp2.*
15247
15248 ROHM BD99954 CHARGER IC
15249 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15250 L:      linux-power@fi.rohmeurope.com
15251 S:      Supported
15252 F:      drivers/power/supply/bd99954-charger.c
15253 F:      drivers/power/supply/bd99954-charger.h
15254
15255 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
15256 M:      Tomasz Duszynski <tduszyns@gmail.com>
15257 S:      Maintained
15258 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
15259 F:      drivers/iio/light/bh1750.c
15260
15261 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
15262 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15263 L:      linux-kernel@vger.kernel.org
15264 L:      linux-renesas-soc@vger.kernel.org
15265 S:      Supported
15266 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
15267 F:      drivers/gpio/gpio-bd9571mwv.c
15268 F:      drivers/mfd/bd9571mwv.c
15269 F:      drivers/regulator/bd9571mwv-regulator.c
15270 F:      include/linux/mfd/bd9571mwv.h
15271
15272 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
15273 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15274 L:      linux-power@fi.rohmeurope.com
15275 S:      Supported
15276 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
15277 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
15278 F:      drivers/clk/clk-bd718x7.c
15279 F:      drivers/gpio/gpio-bd70528.c
15280 F:      drivers/gpio/gpio-bd71828.c
15281 F:      drivers/mfd/rohm-bd70528.c
15282 F:      drivers/mfd/rohm-bd71828.c
15283 F:      drivers/mfd/rohm-bd718x7.c
15284 F:      drivers/power/supply/bd70528-charger.c
15285 F:      drivers/regulator/bd70528-regulator.c
15286 F:      drivers/regulator/bd71828-regulator.c
15287 F:      drivers/regulator/bd718x7-regulator.c
15288 F:      drivers/regulator/rohm-regulator.c
15289 F:      drivers/rtc/rtc-bd70528.c
15290 F:      drivers/watchdog/bd70528_wdt.c
15291 F:      include/linux/mfd/rohm-bd70528.h
15292 F:      include/linux/mfd/rohm-bd71828.h
15293 F:      include/linux/mfd/rohm-bd718x7.h
15294 F:      include/linux/mfd/rohm-generic.h
15295 F:      include/linux/mfd/rohm-shared.h
15296
15297 ROSE NETWORK LAYER
15298 M:      Ralf Baechle <ralf@linux-mips.org>
15299 L:      linux-hams@vger.kernel.org
15300 S:      Maintained
15301 W:      http://www.linux-ax25.org/
15302 F:      include/net/rose.h
15303 F:      include/uapi/linux/rose.h
15304 F:      net/rose/
15305
15306 ROTATION DRIVER FOR ALLWINNER A83T
15307 M:      Jernej Skrabec <jernej.skrabec@siol.net>
15308 L:      linux-media@vger.kernel.org
15309 S:      Maintained
15310 T:      git git://linuxtv.org/media_tree.git
15311 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
15312 F:      drivers/media/platform/sunxi/sun8i-rotate/
15313
15314 RTL2830 MEDIA DRIVER
15315 M:      Antti Palosaari <crope@iki.fi>
15316 L:      linux-media@vger.kernel.org
15317 S:      Maintained
15318 W:      https://linuxtv.org
15319 W:      http://palosaari.fi/linux/
15320 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15321 T:      git git://linuxtv.org/anttip/media_tree.git
15322 F:      drivers/media/dvb-frontends/rtl2830*
15323
15324 RTL2832 MEDIA DRIVER
15325 M:      Antti Palosaari <crope@iki.fi>
15326 L:      linux-media@vger.kernel.org
15327 S:      Maintained
15328 W:      https://linuxtv.org
15329 W:      http://palosaari.fi/linux/
15330 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15331 T:      git git://linuxtv.org/anttip/media_tree.git
15332 F:      drivers/media/dvb-frontends/rtl2832*
15333
15334 RTL2832_SDR MEDIA DRIVER
15335 M:      Antti Palosaari <crope@iki.fi>
15336 L:      linux-media@vger.kernel.org
15337 S:      Maintained
15338 W:      https://linuxtv.org
15339 W:      http://palosaari.fi/linux/
15340 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15341 T:      git git://linuxtv.org/anttip/media_tree.git
15342 F:      drivers/media/dvb-frontends/rtl2832_sdr*
15343
15344 RTL8180 WIRELESS DRIVER
15345 L:      linux-wireless@vger.kernel.org
15346 S:      Orphan
15347 W:      https://wireless.wiki.kernel.org/
15348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15349 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
15350
15351 RTL8187 WIRELESS DRIVER
15352 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
15353 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
15354 M:      Larry Finger <Larry.Finger@lwfinger.net>
15355 L:      linux-wireless@vger.kernel.org
15356 S:      Maintained
15357 W:      https://wireless.wiki.kernel.org/
15358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15359 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
15360
15361 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
15362 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
15363 L:      linux-wireless@vger.kernel.org
15364 S:      Maintained
15365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
15366 F:      drivers/net/wireless/realtek/rtl8xxxu/
15367
15368 RTRS TRANSPORT DRIVERS
15369 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
15370 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15371 L:      linux-rdma@vger.kernel.org
15372 S:      Maintained
15373 F:      drivers/infiniband/ulp/rtrs/
15374
15375 RXRPC SOCKETS (AF_RXRPC)
15376 M:      David Howells <dhowells@redhat.com>
15377 L:      linux-afs@lists.infradead.org
15378 S:      Supported
15379 W:      https://www.infradead.org/~dhowells/kafs/
15380 F:      Documentation/networking/rxrpc.rst
15381 F:      include/keys/rxrpc-type.h
15382 F:      include/net/af_rxrpc.h
15383 F:      include/trace/events/rxrpc.h
15384 F:      include/uapi/linux/rxrpc.h
15385 F:      net/rxrpc/
15386
15387 S3 SAVAGE FRAMEBUFFER DRIVER
15388 M:      Antonino Daplas <adaplas@gmail.com>
15389 L:      linux-fbdev@vger.kernel.org
15390 S:      Maintained
15391 F:      drivers/video/fbdev/savage/
15392
15393 S390
15394 M:      Heiko Carstens <hca@linux.ibm.com>
15395 M:      Vasily Gorbik <gor@linux.ibm.com>
15396 M:      Christian Borntraeger <borntraeger@de.ibm.com>
15397 L:      linux-s390@vger.kernel.org
15398 S:      Supported
15399 W:      http://www.ibm.com/developerworks/linux/linux390/
15400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
15401 F:      Documentation/driver-api/s390-drivers.rst
15402 F:      Documentation/s390/
15403 F:      arch/s390/
15404 F:      drivers/s390/
15405
15406 S390 COMMON I/O LAYER
15407 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
15408 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
15409 L:      linux-s390@vger.kernel.org
15410 S:      Supported
15411 W:      http://www.ibm.com/developerworks/linux/linux390/
15412 F:      drivers/s390/cio/
15413
15414 S390 DASD DRIVER
15415 M:      Stefan Haberland <sth@linux.ibm.com>
15416 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
15417 L:      linux-s390@vger.kernel.org
15418 S:      Supported
15419 W:      http://www.ibm.com/developerworks/linux/linux390/
15420 F:      block/partitions/ibm.c
15421 F:      drivers/s390/block/dasd*
15422 F:      include/linux/dasd_mod.h
15423
15424 S390 IOMMU (PCI)
15425 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15426 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15427 L:      linux-s390@vger.kernel.org
15428 S:      Supported
15429 W:      http://www.ibm.com/developerworks/linux/linux390/
15430 F:      drivers/iommu/s390-iommu.c
15431
15432 S390 IUCV NETWORK LAYER
15433 M:      Julian Wiedmann <jwi@linux.ibm.com>
15434 M:      Karsten Graul <kgraul@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/s390/net/*iucv*
15439 F:      include/net/iucv/
15440 F:      net/iucv/
15441
15442 S390 NETWORK DRIVERS
15443 M:      Julian Wiedmann <jwi@linux.ibm.com>
15444 M:      Karsten Graul <kgraul@linux.ibm.com>
15445 L:      linux-s390@vger.kernel.org
15446 S:      Supported
15447 W:      http://www.ibm.com/developerworks/linux/linux390/
15448 F:      drivers/s390/net/
15449
15450 S390 PCI SUBSYSTEM
15451 M:      Niklas Schnelle <schnelle@linux.ibm.com>
15452 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15453 L:      linux-s390@vger.kernel.org
15454 S:      Supported
15455 W:      http://www.ibm.com/developerworks/linux/linux390/
15456 F:      arch/s390/pci/
15457 F:      drivers/pci/hotplug/s390_pci_hpc.c
15458 F:      Documentation/s390/pci.rst
15459
15460 S390 VFIO AP DRIVER
15461 M:      Tony Krowiak <akrowiak@linux.ibm.com>
15462 M:      Pierre Morel <pmorel@linux.ibm.com>
15463 M:      Halil Pasic <pasic@linux.ibm.com>
15464 L:      linux-s390@vger.kernel.org
15465 S:      Supported
15466 W:      http://www.ibm.com/developerworks/linux/linux390/
15467 F:      Documentation/s390/vfio-ap.rst
15468 F:      drivers/s390/crypto/vfio_ap_drv.c
15469 F:      drivers/s390/crypto/vfio_ap_ops.c
15470 F:      drivers/s390/crypto/vfio_ap_private.h
15471
15472 S390 VFIO-CCW DRIVER
15473 M:      Cornelia Huck <cohuck@redhat.com>
15474 M:      Eric Farman <farman@linux.ibm.com>
15475 R:      Halil Pasic <pasic@linux.ibm.com>
15476 L:      linux-s390@vger.kernel.org
15477 L:      kvm@vger.kernel.org
15478 S:      Supported
15479 F:      Documentation/s390/vfio-ccw.rst
15480 F:      drivers/s390/cio/vfio_ccw*
15481 F:      include/uapi/linux/vfio_ccw.h
15482
15483 S390 VFIO-PCI DRIVER
15484 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15485 L:      linux-s390@vger.kernel.org
15486 L:      kvm@vger.kernel.org
15487 S:      Supported
15488 F:      drivers/vfio/pci/vfio_pci_zdev.c
15489 F:      include/uapi/linux/vfio_zdev.h
15490
15491 S390 ZCRYPT DRIVER
15492 M:      Harald Freudenberger <freude@linux.ibm.com>
15493 L:      linux-s390@vger.kernel.org
15494 S:      Supported
15495 W:      http://www.ibm.com/developerworks/linux/linux390/
15496 F:      drivers/s390/crypto/
15497
15498 S390 ZFCP DRIVER
15499 M:      Steffen Maier <maier@linux.ibm.com>
15500 M:      Benjamin Block <bblock@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/scsi/zfcp_*
15505
15506 S3C24XX SD/MMC Driver
15507 M:      Ben Dooks <ben-linux@fluff.org>
15508 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15509 S:      Supported
15510 F:      drivers/mmc/host/s3cmci.*
15511
15512 SAA6588 RDS RECEIVER DRIVER
15513 M:      Hans Verkuil <hverkuil@xs4all.nl>
15514 L:      linux-media@vger.kernel.org
15515 S:      Odd Fixes
15516 W:      https://linuxtv.org
15517 T:      git git://linuxtv.org/media_tree.git
15518 F:      drivers/media/i2c/saa6588*
15519
15520 SAA7134 VIDEO4LINUX DRIVER
15521 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
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:      Documentation/driver-api/media/drivers/saa7134*
15527 F:      drivers/media/pci/saa7134/
15528
15529 SAA7146 VIDEO4LINUX-2 DRIVER
15530 M:      Hans Verkuil <hverkuil@xs4all.nl>
15531 L:      linux-media@vger.kernel.org
15532 S:      Maintained
15533 T:      git git://linuxtv.org/media_tree.git
15534 F:      drivers/media/common/saa7146/
15535 F:      drivers/media/pci/saa7146/
15536 F:      include/media/drv-intf/saa7146*
15537
15538 SAFESETID SECURITY MODULE
15539 M:      Micah Morton <mortonm@chromium.org>
15540 S:      Supported
15541 F:      Documentation/admin-guide/LSM/SafeSetID.rst
15542 F:      security/safesetid/
15543
15544 SAMSUNG AUDIO (ASoC) DRIVERS
15545 M:      Krzysztof Kozlowski <krzk@kernel.org>
15546 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15547 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15548 S:      Supported
15549 F:      Documentation/devicetree/bindings/sound/samsung*
15550 F:      sound/soc/samsung/
15551
15552 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
15553 M:      Krzysztof Kozlowski <krzk@kernel.org>
15554 L:      linux-crypto@vger.kernel.org
15555 L:      linux-samsung-soc@vger.kernel.org
15556 S:      Maintained
15557 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
15558 F:      drivers/crypto/exynos-rng.c
15559
15560 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
15561 M:      Łukasz Stelmach <l.stelmach@samsung.com>
15562 L:      linux-samsung-soc@vger.kernel.org
15563 S:      Maintained
15564 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
15565 F:      drivers/char/hw_random/exynos-trng.c
15566
15567 SAMSUNG FRAMEBUFFER DRIVER
15568 M:      Jingoo Han <jingoohan1@gmail.com>
15569 L:      linux-fbdev@vger.kernel.org
15570 S:      Maintained
15571 F:      drivers/video/fbdev/s3c-fb.c
15572
15573 SAMSUNG INTERCONNECT DRIVERS
15574 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15575 M:      Artur Świgoń <a.swigon@samsung.com>
15576 L:      linux-pm@vger.kernel.org
15577 L:      linux-samsung-soc@vger.kernel.org
15578 S:      Supported
15579 F:      drivers/interconnect/samsung/
15580
15581 SAMSUNG LAPTOP DRIVER
15582 M:      Corentin Chary <corentin.chary@gmail.com>
15583 L:      platform-driver-x86@vger.kernel.org
15584 S:      Maintained
15585 F:      drivers/platform/x86/samsung-laptop.c
15586
15587 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
15588 M:      Krzysztof Kozlowski <krzk@kernel.org>
15589 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15590 L:      linux-kernel@vger.kernel.org
15591 L:      linux-samsung-soc@vger.kernel.org
15592 S:      Supported
15593 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
15594 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
15595 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
15596 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
15597 F:      drivers/clk/clk-s2mps11.c
15598 F:      drivers/mfd/sec*.c
15599 F:      drivers/regulator/s2m*.c
15600 F:      drivers/regulator/s5m*.c
15601 F:      drivers/rtc/rtc-s5m.c
15602 F:      include/linux/mfd/samsung/
15603
15604 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
15605 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
15606 L:      linux-media@vger.kernel.org
15607 L:      linux-samsung-soc@vger.kernel.org
15608 S:      Maintained
15609 F:      drivers/media/platform/s3c-camif/
15610 F:      include/media/drv-intf/s3c_camif.h
15611
15612 SAMSUNG S3FWRN5 NFC DRIVER
15613 M:      Krzysztof Kozlowski <krzk@kernel.org>
15614 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
15615 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
15616 S:      Maintained
15617 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
15618 F:      drivers/nfc/s3fwrn5
15619
15620 SAMSUNG S5C73M3 CAMERA DRIVER
15621 M:      Andrzej Hajda <a.hajda@samsung.com>
15622 L:      linux-media@vger.kernel.org
15623 S:      Supported
15624 F:      drivers/media/i2c/s5c73m3/*
15625
15626 SAMSUNG S5K5BAF CAMERA DRIVER
15627 M:      Andrzej Hajda <a.hajda@samsung.com>
15628 L:      linux-media@vger.kernel.org
15629 S:      Supported
15630 F:      drivers/media/i2c/s5k5baf.c
15631
15632 SAMSUNG S5P Security SubSystem (SSS) DRIVER
15633 M:      Krzysztof Kozlowski <krzk@kernel.org>
15634 M:      Vladimir Zapolskiy <vz@mleia.com>
15635 M:      Kamil Konieczny <k.konieczny@samsung.com>
15636 L:      linux-crypto@vger.kernel.org
15637 L:      linux-samsung-soc@vger.kernel.org
15638 S:      Maintained
15639 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
15640 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
15641 F:      drivers/crypto/s5p-sss.c
15642
15643 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
15644 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15645 L:      linux-media@vger.kernel.org
15646 S:      Supported
15647 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15648 F:      drivers/media/platform/exynos4-is/
15649
15650 SAMSUNG SOC CLOCK DRIVERS
15651 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15652 M:      Tomasz Figa <tomasz.figa@gmail.com>
15653 M:      Chanwoo Choi <cw00.choi@samsung.com>
15654 L:      linux-samsung-soc@vger.kernel.org
15655 S:      Supported
15656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
15657 F:      Documentation/devicetree/bindings/clock/exynos*.txt
15658 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
15659 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
15660 F:      drivers/clk/samsung/
15661 F:      include/dt-bindings/clock/exynos*.h
15662 F:      include/linux/clk/samsung.h
15663 F:      include/linux/platform_data/clk-s3c2410.h
15664
15665 SAMSUNG SPI DRIVERS
15666 M:      Krzysztof Kozlowski <krzk@kernel.org>
15667 M:      Andi Shyti <andi@etezian.org>
15668 L:      linux-spi@vger.kernel.org
15669 L:      linux-samsung-soc@vger.kernel.org
15670 S:      Maintained
15671 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
15672 F:      drivers/spi/spi-s3c*
15673 F:      include/linux/platform_data/spi-s3c64xx.h
15674 F:      include/linux/spi/s3c24xx-fiq.h
15675
15676 SAMSUNG SXGBE DRIVERS
15677 M:      Byungho An <bh74.an@samsung.com>
15678 L:      netdev@vger.kernel.org
15679 S:      Supported
15680 F:      drivers/net/ethernet/samsung/sxgbe/
15681
15682 SAMSUNG THERMAL DRIVER
15683 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15684 L:      linux-pm@vger.kernel.org
15685 L:      linux-samsung-soc@vger.kernel.org
15686 S:      Supported
15687 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
15688 F:      drivers/thermal/samsung/
15689
15690 SAMSUNG USB2 PHY DRIVER
15691 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15692 L:      linux-kernel@vger.kernel.org
15693 S:      Supported
15694 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
15695 F:      Documentation/driver-api/phy/samsung-usb2.rst
15696 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
15697 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
15698 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
15699 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
15700 F:      drivers/phy/samsung/phy-samsung-usb2.c
15701 F:      drivers/phy/samsung/phy-samsung-usb2.h
15702
15703 SC1200 WDT DRIVER
15704 M:      Zwane Mwaikambo <zwanem@gmail.com>
15705 S:      Maintained
15706 F:      drivers/watchdog/sc1200wdt.c
15707
15708 SCHEDULER
15709 M:      Ingo Molnar <mingo@redhat.com>
15710 M:      Peter Zijlstra <peterz@infradead.org>
15711 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
15712 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
15713 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
15714 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
15715 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
15716 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
15717 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
15718 L:      linux-kernel@vger.kernel.org
15719 S:      Maintained
15720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
15721 F:      include/linux/preempt.h
15722 F:      include/linux/sched.h
15723 F:      include/linux/wait.h
15724 F:      include/uapi/linux/sched.h
15725 F:      kernel/sched/
15726
15727 SCR24X CHIP CARD INTERFACE DRIVER
15728 M:      Lubomir Rintel <lkundrak@v3.sk>
15729 S:      Supported
15730 F:      drivers/char/pcmcia/scr24x_cs.c
15731
15732 SCSI CDROM DRIVER
15733 M:      Jens Axboe <axboe@kernel.dk>
15734 L:      linux-scsi@vger.kernel.org
15735 S:      Maintained
15736 W:      http://www.kernel.dk
15737 F:      drivers/scsi/sr*
15738
15739 SCSI RDMA PROTOCOL (SRP) INITIATOR
15740 M:      Bart Van Assche <bvanassche@acm.org>
15741 L:      linux-rdma@vger.kernel.org
15742 S:      Supported
15743 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15744 F:      drivers/infiniband/ulp/srp/
15745 F:      include/scsi/srp.h
15746
15747 SCSI RDMA PROTOCOL (SRP) TARGET
15748 M:      Bart Van Assche <bvanassche@acm.org>
15749 L:      linux-rdma@vger.kernel.org
15750 L:      target-devel@vger.kernel.org
15751 S:      Supported
15752 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15753 F:      drivers/infiniband/ulp/srpt/
15754
15755 SCSI SG DRIVER
15756 M:      Doug Gilbert <dgilbert@interlog.com>
15757 L:      linux-scsi@vger.kernel.org
15758 S:      Maintained
15759 W:      http://sg.danny.cz/sg
15760 F:      Documentation/scsi/scsi-generic.rst
15761 F:      drivers/scsi/sg.c
15762 F:      include/scsi/sg.h
15763
15764 SCSI SUBSYSTEM
15765 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
15766 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15767 L:      linux-scsi@vger.kernel.org
15768 S:      Maintained
15769 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
15770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
15771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15772 F:      Documentation/devicetree/bindings/scsi/
15773 F:      drivers/scsi/
15774 F:      include/scsi/
15775
15776 SCSI TAPE DRIVER
15777 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
15778 L:      linux-scsi@vger.kernel.org
15779 S:      Maintained
15780 F:      Documentation/scsi/st.rst
15781 F:      drivers/scsi/st.*
15782 F:      drivers/scsi/st_*.h
15783
15784 SCSI TARGET CORE USER DRIVER
15785 M:      Bodo Stroesser <bostroesser@gmail.com>
15786 L:      linux-scsi@vger.kernel.org
15787 L:      target-devel@vger.kernel.org
15788 S:      Supported
15789 F:      Documentation/target/tcmu-design.rst
15790 F:      drivers/target/target_core_user.c
15791 F:      include/uapi/linux/target_core_user.h
15792
15793 SCSI TARGET SUBSYSTEM
15794 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15795 L:      linux-scsi@vger.kernel.org
15796 L:      target-devel@vger.kernel.org
15797 S:      Supported
15798 W:      http://www.linux-iscsi.org
15799 Q:      https://patchwork.kernel.org/project/target-devel/list/
15800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15801 F:      Documentation/target/
15802 F:      drivers/target/
15803 F:      include/target/
15804
15805 SCTP PROTOCOL
15806 M:      Vlad Yasevich <vyasevich@gmail.com>
15807 M:      Neil Horman <nhorman@tuxdriver.com>
15808 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
15809 L:      linux-sctp@vger.kernel.org
15810 S:      Maintained
15811 W:      http://lksctp.sourceforge.net
15812 F:      Documentation/networking/sctp.rst
15813 F:      include/linux/sctp.h
15814 F:      include/net/sctp/
15815 F:      include/uapi/linux/sctp.h
15816 F:      net/sctp/
15817
15818 SCx200 CPU SUPPORT
15819 M:      Jim Cromie <jim.cromie@gmail.com>
15820 S:      Odd Fixes
15821 F:      Documentation/i2c/busses/scx200_acb.rst
15822 F:      arch/x86/platform/scx200/
15823 F:      drivers/i2c/busses/scx200*
15824 F:      drivers/mtd/maps/scx200_docflash.c
15825 F:      drivers/watchdog/scx200_wdt.c
15826 F:      include/linux/scx200.h
15827
15828 SCx200 GPIO DRIVER
15829 M:      Jim Cromie <jim.cromie@gmail.com>
15830 S:      Maintained
15831 F:      drivers/char/scx200_gpio.c
15832 F:      include/linux/scx200_gpio.h
15833
15834 SCx200 HRT CLOCKSOURCE DRIVER
15835 M:      Jim Cromie <jim.cromie@gmail.com>
15836 S:      Maintained
15837 F:      drivers/clocksource/scx200_hrt.c
15838
15839 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15840 M:      Sascha Sommer <saschasommer@freenet.de>
15841 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
15842 S:      Maintained
15843 F:      drivers/mmc/host/sdricoh_cs.c
15844
15845 SECO BOARDS CEC DRIVER
15846 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
15847 S:      Maintained
15848 F:      drivers/media/cec/platform/seco/seco-cec.c
15849 F:      drivers/media/cec/platform/seco/seco-cec.h
15850
15851 SECURE COMPUTING
15852 M:      Kees Cook <keescook@chromium.org>
15853 R:      Andy Lutomirski <luto@amacapital.net>
15854 R:      Will Drewry <wad@chromium.org>
15855 S:      Supported
15856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15857 F:      Documentation/userspace-api/seccomp_filter.rst
15858 F:      include/linux/seccomp.h
15859 F:      include/uapi/linux/seccomp.h
15860 F:      kernel/seccomp.c
15861 F:      tools/testing/selftests/kselftest_harness.h
15862 F:      tools/testing/selftests/seccomp/*
15863 K:      \bsecure_computing
15864 K:      \bTIF_SECCOMP\b
15865
15866 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15867 M:      Al Cooper <alcooperx@gmail.com>
15868 L:      linux-mmc@vger.kernel.org
15869 L:      bcm-kernel-feedback-list@broadcom.com
15870 S:      Maintained
15871 F:      drivers/mmc/host/sdhci-brcmstb*
15872
15873 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15874 M:      Adrian Hunter <adrian.hunter@intel.com>
15875 L:      linux-mmc@vger.kernel.org
15876 S:      Maintained
15877 F:      drivers/mmc/host/sdhci*
15878 F:      include/linux/mmc/sdhci*
15879
15880 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15881 M:      Eugen Hristev <eugen.hristev@microchip.com>
15882 L:      linux-mmc@vger.kernel.org
15883 S:      Supported
15884 F:      drivers/mmc/host/sdhci-of-at91.c
15885
15886 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15887 M:      Ben Dooks <ben-linux@fluff.org>
15888 M:      Jaehoon Chung <jh80.chung@samsung.com>
15889 L:      linux-mmc@vger.kernel.org
15890 S:      Maintained
15891 F:      drivers/mmc/host/sdhci-s3c*
15892
15893 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15894 M:      Viresh Kumar <vireshk@kernel.org>
15895 L:      linux-mmc@vger.kernel.org
15896 S:      Maintained
15897 F:      drivers/mmc/host/sdhci-spear.c
15898
15899 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15900 M:      Kishon Vijay Abraham I <kishon@ti.com>
15901 L:      linux-mmc@vger.kernel.org
15902 S:      Maintained
15903 F:      drivers/mmc/host/sdhci-omap.c
15904
15905 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15906 M:      Jonathan Derrick <jonathan.derrick@intel.com>
15907 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
15908 L:      linux-block@vger.kernel.org
15909 S:      Supported
15910 F:      block/opal_proto.h
15911 F:      block/sed*
15912 F:      include/linux/sed*
15913 F:      include/uapi/linux/sed*
15914
15915 SECURITY CONTACT
15916 M:      Security Officers <security@kernel.org>
15917 S:      Supported
15918 F:      Documentation/admin-guide/security-bugs.rst
15919
15920 SECURITY SUBSYSTEM
15921 M:      James Morris <jmorris@namei.org>
15922 M:      "Serge E. Hallyn" <serge@hallyn.com>
15923 L:      linux-security-module@vger.kernel.org (suggested Cc:)
15924 S:      Supported
15925 W:      http://kernsec.org/
15926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15927 F:      security/
15928 X:      security/selinux/
15929
15930 SELINUX SECURITY MODULE
15931 M:      Paul Moore <paul@paul-moore.com>
15932 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
15933 M:      Eric Paris <eparis@parisplace.org>
15934 L:      selinux@vger.kernel.org
15935 S:      Supported
15936 W:      https://selinuxproject.org
15937 W:      https://github.com/SELinuxProject
15938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15939 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15940 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15941 F:      Documentation/admin-guide/LSM/SELinux.rst
15942 F:      include/trace/events/avc.h
15943 F:      include/uapi/linux/selinux_netlink.h
15944 F:      scripts/selinux/
15945 F:      security/selinux/
15946
15947 SENSABLE PHANTOM
15948 M:      Jiri Slaby <jirislaby@kernel.org>
15949 S:      Maintained
15950 F:      drivers/misc/phantom.c
15951 F:      include/uapi/linux/phantom.h
15952
15953 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
15954 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
15955 S:      Maintained
15956 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
15957 F:      drivers/iio/chemical/scd30.h
15958 F:      drivers/iio/chemical/scd30_core.c
15959 F:      drivers/iio/chemical/scd30_i2c.c
15960 F:      drivers/iio/chemical/scd30_serial.c
15961
15962 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15963 M:      Tomasz Duszynski <tduszyns@gmail.com>
15964 S:      Maintained
15965 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15966 F:      drivers/iio/chemical/sps30.c
15967
15968 SERIAL DEVICE BUS
15969 M:      Rob Herring <robh@kernel.org>
15970 L:      linux-serial@vger.kernel.org
15971 S:      Maintained
15972 F:      Documentation/devicetree/bindings/serial/serial.yaml
15973 F:      drivers/tty/serdev/
15974 F:      include/linux/serdev.h
15975
15976 SERIAL DRIVERS
15977 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15978 L:      linux-serial@vger.kernel.org
15979 S:      Maintained
15980 F:      Documentation/devicetree/bindings/serial/
15981 F:      drivers/tty/serial/
15982
15983 SERIAL IR RECEIVER
15984 M:      Sean Young <sean@mess.org>
15985 L:      linux-media@vger.kernel.org
15986 S:      Maintained
15987 F:      drivers/media/rc/serial_ir.c
15988
15989 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15990 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15991 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15992 S:      Maintained
15993 F:      Documentation/devicetree/bindings/slimbus/
15994 F:      drivers/slimbus/
15995 F:      include/linux/slimbus.h
15996
15997 SFC NETWORK DRIVER
15998 M:      Edward Cree <ecree.xilinx@gmail.com>
15999 M:      Martin Habets <habetsm.xilinx@gmail.com>
16000 L:      netdev@vger.kernel.org
16001 S:      Supported
16002 F:      drivers/net/ethernet/sfc/
16003
16004 SFF/SFP/SFP+ MODULE SUPPORT
16005 M:      Russell King <linux@armlinux.org.uk>
16006 L:      netdev@vger.kernel.org
16007 S:      Maintained
16008 F:      drivers/net/phy/phylink.c
16009 F:      drivers/net/phy/sfp*
16010 F:      include/linux/mdio/mdio-i2c.h
16011 F:      include/linux/phylink.h
16012 F:      include/linux/sfp.h
16013 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)
16014
16015 SGI GRU DRIVER
16016 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
16017 S:      Maintained
16018 F:      drivers/misc/sgi-gru/
16019
16020 SGI XP/XPC/XPNET DRIVER
16021 M:      Robin Holt <robinmholt@gmail.com>
16022 M:      Steve Wahl <steve.wahl@hpe.com>
16023 R:      Mike Travis <mike.travis@hpe.com>
16024 S:      Maintained
16025 F:      drivers/misc/sgi-xp/
16026
16027 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
16028 M:      Karsten Graul <kgraul@linux.ibm.com>
16029 L:      linux-s390@vger.kernel.org
16030 S:      Supported
16031 W:      http://www.ibm.com/developerworks/linux/linux390/
16032 F:      net/smc/
16033
16034 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
16035 M:      Linus Walleij <linus.walleij@linaro.org>
16036 L:      linux-iio@vger.kernel.org
16037 S:      Maintained
16038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
16039 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
16040 F:      drivers/iio/light/gp2ap002.c
16041
16042 SHARP RJ54N1CB0C SENSOR DRIVER
16043 M:      Jacopo Mondi <jacopo@jmondi.org>
16044 L:      linux-media@vger.kernel.org
16045 S:      Odd fixes
16046 T:      git git://linuxtv.org/media_tree.git
16047 F:      drivers/media/i2c/rj54n1cb0c.c
16048 F:      include/media/i2c/rj54n1cb0c.h
16049
16050 SH_VOU V4L2 OUTPUT DRIVER
16051 L:      linux-media@vger.kernel.org
16052 S:      Orphan
16053 F:      drivers/media/platform/sh_vou.c
16054 F:      include/media/drv-intf/sh_vou.h
16055
16056 SI2157 MEDIA DRIVER
16057 M:      Antti Palosaari <crope@iki.fi>
16058 L:      linux-media@vger.kernel.org
16059 S:      Maintained
16060 W:      https://linuxtv.org
16061 W:      http://palosaari.fi/linux/
16062 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16063 T:      git git://linuxtv.org/anttip/media_tree.git
16064 F:      drivers/media/tuners/si2157*
16065
16066 SI2165 MEDIA DRIVER
16067 M:      Matthias Schwarzott <zzam@gentoo.org>
16068 L:      linux-media@vger.kernel.org
16069 S:      Maintained
16070 W:      https://linuxtv.org
16071 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16072 F:      drivers/media/dvb-frontends/si2165*
16073
16074 SI2168 MEDIA DRIVER
16075 M:      Antti Palosaari <crope@iki.fi>
16076 L:      linux-media@vger.kernel.org
16077 S:      Maintained
16078 W:      https://linuxtv.org
16079 W:      http://palosaari.fi/linux/
16080 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16081 T:      git git://linuxtv.org/anttip/media_tree.git
16082 F:      drivers/media/dvb-frontends/si2168*
16083
16084 SI470X FM RADIO RECEIVER I2C DRIVER
16085 M:      Hans Verkuil <hverkuil@xs4all.nl>
16086 L:      linux-media@vger.kernel.org
16087 S:      Odd Fixes
16088 W:      https://linuxtv.org
16089 T:      git git://linuxtv.org/media_tree.git
16090 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
16091
16092 SI470X FM RADIO RECEIVER USB DRIVER
16093 M:      Hans Verkuil <hverkuil@xs4all.nl>
16094 L:      linux-media@vger.kernel.org
16095 S:      Maintained
16096 W:      https://linuxtv.org
16097 T:      git git://linuxtv.org/media_tree.git
16098 F:      drivers/media/radio/si470x/radio-si470x-common.c
16099 F:      drivers/media/radio/si470x/radio-si470x-usb.c
16100 F:      drivers/media/radio/si470x/radio-si470x.h
16101
16102 SI4713 FM RADIO TRANSMITTER I2C DRIVER
16103 M:      Eduardo Valentin <edubezval@gmail.com>
16104 L:      linux-media@vger.kernel.org
16105 S:      Odd Fixes
16106 W:      https://linuxtv.org
16107 T:      git git://linuxtv.org/media_tree.git
16108 F:      drivers/media/radio/si4713/si4713.?
16109
16110 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
16111 M:      Eduardo Valentin <edubezval@gmail.com>
16112 L:      linux-media@vger.kernel.org
16113 S:      Odd Fixes
16114 W:      https://linuxtv.org
16115 T:      git git://linuxtv.org/media_tree.git
16116 F:      drivers/media/radio/si4713/radio-platform-si4713.c
16117
16118 SI4713 FM RADIO TRANSMITTER USB DRIVER
16119 M:      Hans Verkuil <hverkuil@xs4all.nl>
16120 L:      linux-media@vger.kernel.org
16121 S:      Maintained
16122 W:      https://linuxtv.org
16123 T:      git git://linuxtv.org/media_tree.git
16124 F:      drivers/media/radio/si4713/radio-usb-si4713.c
16125
16126 SIANO DVB DRIVER
16127 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16128 L:      linux-media@vger.kernel.org
16129 S:      Odd fixes
16130 W:      https://linuxtv.org
16131 T:      git git://linuxtv.org/media_tree.git
16132 F:      drivers/media/common/siano/
16133 F:      drivers/media/mmc/siano/
16134 F:      drivers/media/usb/siano/
16135 F:      drivers/media/usb/siano/
16136
16137 SIFIVE DRIVERS
16138 M:      Palmer Dabbelt <palmer@dabbelt.com>
16139 M:      Paul Walmsley <paul.walmsley@sifive.com>
16140 L:      linux-riscv@lists.infradead.org
16141 S:      Supported
16142 T:      git git://github.com/sifive/riscv-linux.git
16143 N:      sifive
16144 K:      [^@]sifive
16145
16146 SIFIVE FU540 SYSTEM-ON-CHIP
16147 M:      Paul Walmsley <paul.walmsley@sifive.com>
16148 M:      Palmer Dabbelt <palmer@dabbelt.com>
16149 L:      linux-riscv@lists.infradead.org
16150 S:      Supported
16151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
16152 N:      fu540
16153 K:      fu540
16154
16155 SIFIVE PDMA DRIVER
16156 M:      Green Wan <green.wan@sifive.com>
16157 S:      Maintained
16158 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
16159 F:      drivers/dma/sf-pdma/
16160
16161 SILEAD TOUCHSCREEN DRIVER
16162 M:      Hans de Goede <hdegoede@redhat.com>
16163 L:      linux-input@vger.kernel.org
16164 L:      platform-driver-x86@vger.kernel.org
16165 S:      Maintained
16166 F:      drivers/input/touchscreen/silead.c
16167 F:      drivers/platform/x86/touchscreen_dmi.c
16168
16169 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
16170 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
16171 S:      Supported
16172 F:      drivers/staging/wfx/
16173
16174 SILICON MOTION SM712 FRAME BUFFER DRIVER
16175 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16176 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16177 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16178 L:      linux-fbdev@vger.kernel.org
16179 S:      Maintained
16180 F:      Documentation/fb/sm712fb.rst
16181 F:      drivers/video/fbdev/sm712*
16182
16183 SIMPLE FIRMWARE INTERFACE (SFI)
16184 S:      Obsolete
16185 W:      http://simplefirmware.org/
16186 F:      arch/x86/platform/sfi/
16187 F:      drivers/sfi/
16188 F:      include/linux/sfi*.h
16189
16190 SIMPLEFB FB DRIVER
16191 M:      Hans de Goede <hdegoede@redhat.com>
16192 L:      linux-fbdev@vger.kernel.org
16193 S:      Maintained
16194 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
16195 F:      drivers/video/fbdev/simplefb.c
16196 F:      include/linux/platform_data/simplefb.h
16197
16198 SIMTEC EB110ATX (Chalice CATS)
16199 M:      Simtec Linux Team <linux@simtec.co.uk>
16200 S:      Supported
16201 W:      http://www.simtec.co.uk/products/EB110ATX/
16202
16203 SIMTEC EB2410ITX (BAST)
16204 M:      Simtec Linux Team <linux@simtec.co.uk>
16205 S:      Supported
16206 W:      http://www.simtec.co.uk/products/EB2410ITX/
16207 F:      arch/arm/mach-s3c/bast-ide.c
16208 F:      arch/arm/mach-s3c/bast-irq.c
16209 F:      arch/arm/mach-s3c/mach-bast.c
16210
16211 SIOX
16212 M:      Thorsten Scherer <t.scherer@eckelmann.de>
16213 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16214 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16215 S:      Supported
16216 F:      drivers/gpio/gpio-siox.c
16217 F:      drivers/siox/*
16218 F:      include/trace/events/siox.h
16219
16220 SIPHASH PRF ROUTINES
16221 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16222 S:      Maintained
16223 F:      include/linux/siphash.h
16224 F:      lib/siphash.c
16225 F:      lib/test_siphash.c
16226
16227 SIS 190 ETHERNET DRIVER
16228 M:      Francois Romieu <romieu@fr.zoreil.com>
16229 L:      netdev@vger.kernel.org
16230 S:      Maintained
16231 F:      drivers/net/ethernet/sis/sis190.c
16232
16233 SIS 900/7016 FAST ETHERNET DRIVER
16234 M:      Daniele Venzano <venza@brownhat.org>
16235 L:      netdev@vger.kernel.org
16236 S:      Maintained
16237 W:      http://www.brownhat.org/sis900.html
16238 F:      drivers/net/ethernet/sis/sis900.*
16239
16240 SIS FRAMEBUFFER DRIVER
16241 M:      Thomas Winischhofer <thomas@winischhofer.net>
16242 S:      Maintained
16243 W:      http://www.winischhofer.net/linuxsisvga.shtml
16244 F:      Documentation/fb/sisfb.rst
16245 F:      drivers/video/fbdev/sis/
16246 F:      include/video/sisfb.h
16247
16248 SIS I2C TOUCHSCREEN DRIVER
16249 M:      Mika Penttilä <mika.penttila@nextfour.com>
16250 L:      linux-input@vger.kernel.org
16251 S:      Maintained
16252 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
16253 F:      drivers/input/touchscreen/sis_i2c.c
16254
16255 SIS USB2VGA DRIVER
16256 M:      Thomas Winischhofer <thomas@winischhofer.net>
16257 S:      Maintained
16258 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
16259 F:      drivers/usb/misc/sisusbvga/
16260
16261 SLAB ALLOCATOR
16262 M:      Christoph Lameter <cl@linux.com>
16263 M:      Pekka Enberg <penberg@kernel.org>
16264 M:      David Rientjes <rientjes@google.com>
16265 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
16266 M:      Andrew Morton <akpm@linux-foundation.org>
16267 L:      linux-mm@kvack.org
16268 S:      Maintained
16269 F:      include/linux/sl?b*.h
16270 F:      mm/sl?b*
16271
16272 SLEEPABLE READ-COPY UPDATE (SRCU)
16273 M:      Lai Jiangshan <jiangshanlai@gmail.com>
16274 M:      "Paul E. McKenney" <paulmck@kernel.org>
16275 M:      Josh Triplett <josh@joshtriplett.org>
16276 R:      Steven Rostedt <rostedt@goodmis.org>
16277 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16278 L:      rcu@vger.kernel.org
16279 S:      Supported
16280 W:      http://www.rdrop.com/users/paulmck/RCU/
16281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16282 F:      include/linux/srcu*.h
16283 F:      kernel/rcu/srcu*.c
16284
16285 SMACK SECURITY MODULE
16286 M:      Casey Schaufler <casey@schaufler-ca.com>
16287 L:      linux-security-module@vger.kernel.org
16288 S:      Maintained
16289 W:      http://schaufler-ca.com
16290 T:      git git://github.com/cschaufler/smack-next
16291 F:      Documentation/admin-guide/LSM/Smack.rst
16292 F:      security/smack/
16293
16294 SMC91x ETHERNET DRIVER
16295 M:      Nicolas Pitre <nico@fluxnic.net>
16296 S:      Odd Fixes
16297 F:      drivers/net/ethernet/smsc/smc91x.*
16298
16299 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
16300 M:      Mark Rutland <mark.rutland@arm.com>
16301 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
16302 M:      Sudeep Holla <sudeep.holla@arm.com>
16303 L:      linux-arm-kernel@lists.infradead.org
16304 S:      Maintained
16305 F:      drivers/firmware/smccc/
16306 F:      include/linux/arm-smccc.h
16307
16308 SMM665 HARDWARE MONITOR DRIVER
16309 M:      Guenter Roeck <linux@roeck-us.net>
16310 L:      linux-hwmon@vger.kernel.org
16311 S:      Maintained
16312 F:      Documentation/hwmon/smm665.rst
16313 F:      drivers/hwmon/smm665.c
16314
16315 SMSC EMC2103 HARDWARE MONITOR DRIVER
16316 M:      Steve Glendinning <steve.glendinning@shawell.net>
16317 L:      linux-hwmon@vger.kernel.org
16318 S:      Maintained
16319 F:      Documentation/hwmon/emc2103.rst
16320 F:      drivers/hwmon/emc2103.c
16321
16322 SMSC SCH5627 HARDWARE MONITOR DRIVER
16323 M:      Hans de Goede <hdegoede@redhat.com>
16324 L:      linux-hwmon@vger.kernel.org
16325 S:      Supported
16326 F:      Documentation/hwmon/sch5627.rst
16327 F:      drivers/hwmon/sch5627.c
16328
16329 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
16330 M:      Steve Glendinning <steve.glendinning@shawell.net>
16331 L:      linux-fbdev@vger.kernel.org
16332 S:      Maintained
16333 F:      drivers/video/fbdev/smscufx.c
16334
16335 SMSC47B397 HARDWARE MONITOR DRIVER
16336 M:      Jean Delvare <jdelvare@suse.com>
16337 L:      linux-hwmon@vger.kernel.org
16338 S:      Maintained
16339 F:      Documentation/hwmon/smsc47b397.rst
16340 F:      drivers/hwmon/smsc47b397.c
16341
16342 SMSC911x ETHERNET DRIVER
16343 M:      Steve Glendinning <steve.glendinning@shawell.net>
16344 L:      netdev@vger.kernel.org
16345 S:      Maintained
16346 F:      drivers/net/ethernet/smsc/smsc911x.*
16347 F:      include/linux/smsc911x.h
16348
16349 SMSC9420 PCI ETHERNET DRIVER
16350 M:      Steve Glendinning <steve.glendinning@shawell.net>
16351 L:      netdev@vger.kernel.org
16352 S:      Maintained
16353 F:      drivers/net/ethernet/smsc/smsc9420.*
16354
16355 SOCIONEXT (SNI) AVE NETWORK DRIVER
16356 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
16357 L:      netdev@vger.kernel.org
16358 S:      Maintained
16359 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
16360 F:      drivers/net/ethernet/socionext/sni_ave.c
16361
16362 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
16363 M:      Jassi Brar <jaswinder.singh@linaro.org>
16364 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
16365 L:      netdev@vger.kernel.org
16366 S:      Maintained
16367 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
16368 F:      drivers/net/ethernet/socionext/netsec.c
16369
16370 SOCIONEXT (SNI) Synquacer SPI DRIVER
16371 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
16372 M:      Jassi Brar <jaswinder.singh@linaro.org>
16373 L:      linux-spi@vger.kernel.org
16374 S:      Maintained
16375 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
16376 F:      drivers/spi/spi-synquacer.c
16377
16378 SOCIONEXT SYNQUACER I2C DRIVER
16379 M:      Ard Biesheuvel <ardb@kernel.org>
16380 L:      linux-i2c@vger.kernel.org
16381 S:      Maintained
16382 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
16383 F:      drivers/i2c/busses/i2c-synquacer.c
16384
16385 SOCIONEXT UNIPHIER SOUND DRIVER
16386 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16387 S:      Orphan
16388 F:      sound/soc/uniphier/
16389
16390 SOEKRIS NET48XX LED SUPPORT
16391 M:      Chris Boot <bootc@bootc.net>
16392 S:      Maintained
16393 F:      drivers/leds/leds-net48xx.c
16394
16395 SOFT-IWARP DRIVER (siw)
16396 M:      Bernard Metzler <bmt@zurich.ibm.com>
16397 L:      linux-rdma@vger.kernel.org
16398 S:      Supported
16399 F:      drivers/infiniband/sw/siw/
16400 F:      include/uapi/rdma/siw-abi.h
16401
16402 SOFT-ROCE DRIVER (rxe)
16403 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
16404 L:      linux-rdma@vger.kernel.org
16405 S:      Supported
16406 F:      drivers/infiniband/sw/rxe/
16407 F:      include/uapi/rdma/rdma_user_rxe.h
16408
16409 SOFTLOGIC 6x10 MPEG CODEC
16410 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
16411 M:      Anton Sviridenko <anton@corp.bluecherry.net>
16412 M:      Andrey Utkin <andrey_utkin@fastmail.com>
16413 M:      Ismael Luceno <ismael@iodev.co.uk>
16414 L:      linux-media@vger.kernel.org
16415 S:      Supported
16416 F:      drivers/media/pci/solo6x10/
16417
16418 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
16419 M:      James Morse <james.morse@arm.com>
16420 L:      linux-arm-kernel@lists.infradead.org
16421 S:      Maintained
16422 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
16423 F:      drivers/firmware/arm_sdei.c
16424 F:      include/linux/arm_sdei.h
16425 F:      include/uapi/linux/arm_sdei.h
16426
16427 SOFTWARE RAID (Multiple Disks) SUPPORT
16428 M:      Song Liu <song@kernel.org>
16429 L:      linux-raid@vger.kernel.org
16430 S:      Supported
16431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
16432 F:      drivers/md/Kconfig
16433 F:      drivers/md/Makefile
16434 F:      drivers/md/md*
16435 F:      drivers/md/raid*
16436 F:      include/linux/raid/
16437 F:      include/uapi/linux/raid/
16438
16439 SOLIDRUN CLEARFOG SUPPORT
16440 M:      Russell King <linux@armlinux.org.uk>
16441 S:      Maintained
16442 F:      arch/arm/boot/dts/armada-388-clearfog*
16443 F:      arch/arm/boot/dts/armada-38x-solidrun-*
16444
16445 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
16446 M:      Russell King <linux@armlinux.org.uk>
16447 S:      Maintained
16448 F:      arch/arm/boot/dts/imx6*-cubox-i*
16449 F:      arch/arm/boot/dts/imx6*-hummingboard*
16450 F:      arch/arm/boot/dts/imx6*-sr-*
16451
16452 SONIC NETWORK DRIVER
16453 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
16454 L:      netdev@vger.kernel.org
16455 S:      Maintained
16456 F:      drivers/net/ethernet/natsemi/sonic.*
16457
16458 SONICS SILICON BACKPLANE DRIVER (SSB)
16459 M:      Michael Buesch <m@bues.ch>
16460 L:      linux-wireless@vger.kernel.org
16461 S:      Maintained
16462 F:      drivers/ssb/
16463 F:      include/linux/ssb/
16464
16465 SONY IMX214 SENSOR DRIVER
16466 M:      Ricardo Ribalda <ribalda@kernel.org>
16467 L:      linux-media@vger.kernel.org
16468 S:      Maintained
16469 T:      git git://linuxtv.org/media_tree.git
16470 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
16471 F:      drivers/media/i2c/imx214.c
16472
16473 SONY IMX219 SENSOR DRIVER
16474 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
16475 L:      linux-media@vger.kernel.org
16476 S:      Maintained
16477 T:      git git://linuxtv.org/media_tree.git
16478 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
16479 F:      drivers/media/i2c/imx219.c
16480
16481 SONY IMX258 SENSOR DRIVER
16482 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
16483 L:      linux-media@vger.kernel.org
16484 S:      Maintained
16485 T:      git git://linuxtv.org/media_tree.git
16486 F:      drivers/media/i2c/imx258.c
16487
16488 SONY IMX274 SENSOR DRIVER
16489 M:      Leon Luo <leonl@leopardimaging.com>
16490 L:      linux-media@vger.kernel.org
16491 S:      Maintained
16492 T:      git git://linuxtv.org/media_tree.git
16493 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
16494 F:      drivers/media/i2c/imx274.c
16495
16496 SONY IMX290 SENSOR DRIVER
16497 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16498 L:      linux-media@vger.kernel.org
16499 S:      Maintained
16500 T:      git git://linuxtv.org/media_tree.git
16501 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
16502 F:      drivers/media/i2c/imx290.c
16503
16504 SONY IMX319 SENSOR DRIVER
16505 M:      Bingbu Cao <bingbu.cao@intel.com>
16506 L:      linux-media@vger.kernel.org
16507 S:      Maintained
16508 T:      git git://linuxtv.org/media_tree.git
16509 F:      drivers/media/i2c/imx319.c
16510
16511 SONY IMX355 SENSOR DRIVER
16512 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
16513 L:      linux-media@vger.kernel.org
16514 S:      Maintained
16515 T:      git git://linuxtv.org/media_tree.git
16516 F:      drivers/media/i2c/imx355.c
16517
16518 SONY MEMORYSTICK SUBSYSTEM
16519 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16520 M:      Alex Dubov <oakad@yahoo.com>
16521 M:      Ulf Hansson <ulf.hansson@linaro.org>
16522 L:      linux-mmc@vger.kernel.org
16523 S:      Maintained
16524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
16525 F:      drivers/memstick/
16526 F:      include/linux/memstick.h
16527
16528 SONY VAIO CONTROL DEVICE DRIVER
16529 M:      Mattia Dongili <malattia@linux.it>
16530 L:      platform-driver-x86@vger.kernel.org
16531 S:      Maintained
16532 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
16533 F:      Documentation/admin-guide/laptops/sony-laptop.rst
16534 F:      drivers/char/sonypi.c
16535 F:      drivers/platform/x86/sony-laptop.c
16536 F:      include/linux/sony-laptop.h
16537
16538 SOUND
16539 M:      Jaroslav Kysela <perex@perex.cz>
16540 M:      Takashi Iwai <tiwai@suse.com>
16541 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16542 S:      Maintained
16543 W:      http://www.alsa-project.org/
16544 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
16545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16546 F:      Documentation/sound/
16547 F:      include/sound/
16548 F:      include/uapi/sound/
16549 F:      sound/
16550
16551 SOUND - COMPRESSED AUDIO
16552 M:      Vinod Koul <vkoul@kernel.org>
16553 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16554 S:      Supported
16555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16556 F:      Documentation/sound/designs/compress-offload.rst
16557 F:      include/sound/compress_driver.h
16558 F:      include/uapi/sound/compress_*
16559 F:      sound/core/compress_offload.c
16560 F:      sound/soc/soc-compress.c
16561
16562 SOUND - DMAENGINE HELPERS
16563 M:      Lars-Peter Clausen <lars@metafoo.de>
16564 S:      Supported
16565 F:      include/sound/dmaengine_pcm.h
16566 F:      sound/core/pcm_dmaengine.c
16567 F:      sound/soc/soc-generic-dmaengine-pcm.c
16568
16569 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
16570 M:      Liam Girdwood <lgirdwood@gmail.com>
16571 M:      Mark Brown <broonie@kernel.org>
16572 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16573 S:      Supported
16574 W:      http://alsa-project.org/main/index.php/ASoC
16575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
16576 F:      Documentation/devicetree/bindings/sound/
16577 F:      Documentation/sound/soc/
16578 F:      include/dt-bindings/sound/
16579 F:      include/sound/soc*
16580 F:      sound/soc/
16581
16582 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
16583 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16584 M:      Liam Girdwood <lgirdwood@gmail.com>
16585 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
16586 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
16587 M:      Daniel Baluta <daniel.baluta@nxp.com>
16588 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
16589 S:      Supported
16590 W:      https://github.com/thesofproject/linux/
16591 F:      sound/soc/sof/
16592
16593 SOUNDWIRE SUBSYSTEM
16594 M:      Vinod Koul <vkoul@kernel.org>
16595 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
16596 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16597 R:      Sanyog Kale <sanyog.r.kale@intel.com>
16598 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16599 S:      Supported
16600 F:      Documentation/driver-api/soundwire/
16601 F:      drivers/soundwire/
16602 F:      include/linux/soundwire/
16603
16604 SP2 MEDIA DRIVER
16605 M:      Olli Salonen <olli.salonen@iki.fi>
16606 L:      linux-media@vger.kernel.org
16607 S:      Maintained
16608 W:      https://linuxtv.org
16609 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16610 F:      drivers/media/dvb-frontends/sp2*
16611
16612 SPARC + UltraSPARC (sparc/sparc64)
16613 M:      "David S. Miller" <davem@davemloft.net>
16614 L:      sparclinux@vger.kernel.org
16615 S:      Maintained
16616 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
16617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16619 F:      arch/sparc/
16620 F:      drivers/sbus/
16621
16622 SPARC SERIAL DRIVERS
16623 M:      "David S. Miller" <davem@davemloft.net>
16624 L:      sparclinux@vger.kernel.org
16625 S:      Maintained
16626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16628 F:      drivers/tty/serial/suncore.c
16629 F:      drivers/tty/serial/sunhv.c
16630 F:      drivers/tty/serial/sunsab.c
16631 F:      drivers/tty/serial/sunsab.h
16632 F:      drivers/tty/serial/sunsu.c
16633 F:      drivers/tty/serial/sunzilog.c
16634 F:      drivers/tty/serial/sunzilog.h
16635 F:      drivers/tty/vcc.c
16636 F:      include/linux/sunserialcore.h
16637
16638 SPARSE CHECKER
16639 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
16640 L:      linux-sparse@vger.kernel.org
16641 S:      Maintained
16642 W:      https://sparse.docs.kernel.org/
16643 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
16644 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
16645 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
16646 F:      include/linux/compiler.h
16647
16648 SPEAKUP CONSOLE SPEECH DRIVER
16649 M:      William Hubbs <w.d.hubbs@gmail.com>
16650 M:      Chris Brannon <chris@the-brannons.com>
16651 M:      Kirk Reiser <kirk@reisers.ca>
16652 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
16653 L:      speakup@linux-speakup.org
16654 S:      Odd Fixes
16655 W:      http://www.linux-speakup.org/
16656 F:      drivers/accessibility/speakup/
16657
16658 SPEAR CLOCK FRAMEWORK SUPPORT
16659 M:      Viresh Kumar <vireshk@kernel.org>
16660 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16661 S:      Maintained
16662 W:      http://www.st.com/spear
16663 F:      drivers/clk/spear/
16664
16665 SPEAR PLATFORM SUPPORT
16666 M:      Viresh Kumar <vireshk@kernel.org>
16667 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
16668 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16669 S:      Maintained
16670 W:      http://www.st.com/spear
16671 F:      arch/arm/boot/dts/spear*
16672 F:      arch/arm/mach-spear/
16673
16674 SPI NOR SUBSYSTEM
16675 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
16676 L:      linux-mtd@lists.infradead.org
16677 S:      Maintained
16678 W:      http://www.linux-mtd.infradead.org/
16679 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
16680 C:      irc://irc.oftc.net/mtd
16681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
16682 F:      drivers/mtd/spi-nor/
16683 F:      include/linux/mtd/spi-nor.h
16684
16685 SPI SUBSYSTEM
16686 M:      Mark Brown <broonie@kernel.org>
16687 L:      linux-spi@vger.kernel.org
16688 S:      Maintained
16689 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
16690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
16691 F:      Documentation/devicetree/bindings/spi/
16692 F:      Documentation/spi/
16693 F:      drivers/spi/
16694 F:      include/linux/spi/
16695 F:      include/uapi/linux/spi/
16696 F:      tools/spi/
16697
16698 SPIDERNET NETWORK DRIVER for CELL
16699 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
16700 L:      netdev@vger.kernel.org
16701 S:      Supported
16702 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
16703 F:      drivers/net/ethernet/toshiba/spider_net*
16704
16705 SPMI SUBSYSTEM
16706 M:      Stephen Boyd <sboyd@kernel.org>
16707 L:      linux-kernel@vger.kernel.org
16708 S:      Maintained
16709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
16710 F:      Documentation/devicetree/bindings/spmi/
16711 F:      drivers/spmi/
16712 F:      include/dt-bindings/spmi/spmi.h
16713 F:      include/linux/spmi.h
16714 F:      include/trace/events/spmi.h
16715
16716 SPU FILE SYSTEM
16717 M:      Jeremy Kerr <jk@ozlabs.org>
16718 L:      linuxppc-dev@lists.ozlabs.org
16719 S:      Supported
16720 W:      http://www.ibm.com/developerworks/power/cell/
16721 F:      Documentation/filesystems/spufs/spufs.rst
16722 F:      arch/powerpc/platforms/cell/spufs/
16723
16724 SQUASHFS FILE SYSTEM
16725 M:      Phillip Lougher <phillip@squashfs.org.uk>
16726 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
16727 S:      Maintained
16728 W:      http://squashfs.org.uk
16729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
16730 F:      Documentation/filesystems/squashfs.rst
16731 F:      fs/squashfs/
16732
16733 SRM (Alpha) environment access
16734 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
16735 S:      Maintained
16736 F:      arch/alpha/kernel/srm_env.c
16737
16738 ST LSM6DSx IMU IIO DRIVER
16739 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
16740 L:      linux-iio@vger.kernel.org
16741 S:      Maintained
16742 W:      http://www.st.com/
16743 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
16744 F:      drivers/iio/imu/st_lsm6dsx/
16745
16746 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
16747 M:      Mickael Guene <mickael.guene@st.com>
16748 L:      linux-media@vger.kernel.org
16749 S:      Maintained
16750 T:      git git://linuxtv.org/media_tree.git
16751 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
16752 F:      drivers/media/i2c/st-mipid02.c
16753
16754 ST STM32 I2C/SMBUS DRIVER
16755 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
16756 L:      linux-i2c@vger.kernel.org
16757 S:      Maintained
16758 F:      drivers/i2c/busses/i2c-stm32*
16759
16760 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
16761 M:      Song Qiang <songqiang1304521@gmail.com>
16762 L:      linux-iio@vger.kernel.org
16763 S:      Maintained
16764 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
16765 F:      drivers/iio/proximity/vl53l0x-i2c.c
16766
16767 STABLE BRANCH
16768 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16769 M:      Sasha Levin <sashal@kernel.org>
16770 L:      stable@vger.kernel.org
16771 S:      Supported
16772 F:      Documentation/process/stable-kernel-rules.rst
16773
16774 STAGING - ATOMISP DRIVER
16775 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16776 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
16777 L:      linux-media@vger.kernel.org
16778 S:      Maintained
16779 F:      drivers/staging/media/atomisp/
16780
16781 STAGING - COMEDI
16782 M:      Ian Abbott <abbotti@mev.co.uk>
16783 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
16784 S:      Odd Fixes
16785 F:      drivers/staging/comedi/
16786
16787 STAGING - FIELDBUS SUBSYSTEM
16788 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16789 S:      Maintained
16790 F:      drivers/staging/fieldbus/*
16791 F:      drivers/staging/fieldbus/Documentation/
16792
16793 STAGING - HMS ANYBUS-S BUS
16794 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16795 S:      Maintained
16796 F:      drivers/staging/fieldbus/anybuss/
16797
16798 STAGING - INDUSTRIAL IO
16799 M:      Jonathan Cameron <jic23@kernel.org>
16800 L:      linux-iio@vger.kernel.org
16801 S:      Odd Fixes
16802 F:      Documentation/devicetree/bindings/staging/iio/
16803 F:      drivers/staging/iio/
16804
16805 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
16806 M:      Marc Dietrich <marvin24@gmx.de>
16807 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
16808 L:      linux-tegra@vger.kernel.org
16809 S:      Maintained
16810 F:      drivers/staging/nvec/
16811
16812 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
16813 M:      Jens Frederich <jfrederich@gmail.com>
16814 M:      Daniel Drake <dsd@laptop.org>
16815 M:      Jon Nettleton <jon.nettleton@gmail.com>
16816 S:      Maintained
16817 W:      http://wiki.laptop.org/go/DCON
16818 F:      drivers/staging/olpc_dcon/
16819
16820 STAGING - REALTEK RTL8188EU DRIVERS
16821 M:      Larry Finger <Larry.Finger@lwfinger.net>
16822 S:      Odd Fixes
16823 F:      drivers/staging/rtl8188eu/
16824
16825 STAGING - REALTEK RTL8712U DRIVERS
16826 M:      Larry Finger <Larry.Finger@lwfinger.net>
16827 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
16828 S:      Odd Fixes
16829 F:      drivers/staging/rtl8712/
16830
16831 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16832 M:      Michael Hennerich <michael.hennerich@analog.com>
16833 L:      linux-fbdev@vger.kernel.org
16834 S:      Supported
16835 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16836 F:      drivers/staging/fbtft/fb_seps525.c
16837
16838 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16839 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16840 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16841 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16842 L:      linux-fbdev@vger.kernel.org
16843 S:      Maintained
16844 F:      drivers/staging/sm750fb/
16845
16846 STAGING - VIA VT665X DRIVERS
16847 M:      Forest Bond <forest@alittletooquiet.net>
16848 S:      Odd Fixes
16849 F:      drivers/staging/vt665?/
16850
16851 STAGING SUBSYSTEM
16852 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16853 L:      devel@driverdev.osuosl.org
16854 S:      Supported
16855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16856 F:      drivers/staging/
16857
16858 STARFIRE/DURALAN NETWORK DRIVER
16859 M:      Ion Badulescu <ionut@badula.org>
16860 S:      Odd Fixes
16861 F:      drivers/net/ethernet/adaptec/starfire*
16862
16863 STEC S1220 SKD DRIVER
16864 M:      Damien Le Moal <Damien.LeMoal@wdc.com>
16865 L:      linux-block@vger.kernel.org
16866 S:      Maintained
16867 F:      drivers/block/skd*[ch]
16868
16869 STI AUDIO (ASoC) DRIVERS
16870 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16871 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16872 S:      Maintained
16873 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16874 F:      sound/soc/sti/
16875
16876 STI CEC DRIVER
16877 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
16878 S:      Maintained
16879 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16880 F:      drivers/media/cec/platform/sti/
16881
16882 STK1160 USB VIDEO CAPTURE DRIVER
16883 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16884 L:      linux-media@vger.kernel.org
16885 S:      Maintained
16886 T:      git git://linuxtv.org/media_tree.git
16887 F:      drivers/media/usb/stk1160/
16888
16889 STM32 AUDIO (ASoC) DRIVERS
16890 M:      Olivier Moysan <olivier.moysan@st.com>
16891 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16892 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16893 S:      Maintained
16894 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
16895 F:      sound/soc/stm/
16896
16897 STM32 TIMER/LPTIMER DRIVERS
16898 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
16899 S:      Maintained
16900 F:      Documentation/ABI/testing/*timer-stm32
16901 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16902 F:      drivers/*/stm32-*timer*
16903 F:      drivers/pwm/pwm-stm32*
16904 F:      include/linux/*/stm32-*tim*
16905
16906 STMMAC ETHERNET DRIVER
16907 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
16908 M:      Alexandre Torgue <alexandre.torgue@st.com>
16909 M:      Jose Abreu <joabreu@synopsys.com>
16910 L:      netdev@vger.kernel.org
16911 S:      Supported
16912 W:      http://www.stlinux.com
16913 F:      Documentation/networking/device_drivers/ethernet/stmicro/
16914 F:      drivers/net/ethernet/stmicro/stmmac/
16915
16916 SUN3/3X
16917 M:      Sam Creasey <sammy@sammy.net>
16918 S:      Maintained
16919 W:      http://sammy.net/sun3/
16920 F:      arch/m68k/include/asm/sun3*
16921 F:      arch/m68k/kernel/*sun3*
16922 F:      arch/m68k/sun3*/
16923 F:      drivers/net/ethernet/i825xx/sun3*
16924
16925 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16926 M:      Hans de Goede <hdegoede@redhat.com>
16927 L:      linux-input@vger.kernel.org
16928 S:      Maintained
16929 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16930 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16931
16932 SUNDANCE NETWORK DRIVER
16933 M:      Denis Kirjanov <kda@linux-powerpc.org>
16934 L:      netdev@vger.kernel.org
16935 S:      Maintained
16936 F:      drivers/net/ethernet/dlink/sundance.c
16937
16938 SUPERH
16939 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
16940 M:      Rich Felker <dalias@libc.org>
16941 L:      linux-sh@vger.kernel.org
16942 S:      Maintained
16943 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16944 F:      Documentation/sh/
16945 F:      arch/sh/
16946 F:      drivers/sh/
16947
16948 SUSPEND TO RAM
16949 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
16950 M:      Len Brown <len.brown@intel.com>
16951 M:      Pavel Machek <pavel@ucw.cz>
16952 L:      linux-pm@vger.kernel.org
16953 S:      Supported
16954 B:      https://bugzilla.kernel.org
16955 F:      Documentation/power/
16956 F:      arch/x86/kernel/acpi/
16957 F:      drivers/base/power/
16958 F:      include/linux/freezer.h
16959 F:      include/linux/pm.h
16960 F:      include/linux/suspend.h
16961 F:      kernel/power/
16962
16963 SVGA HANDLING
16964 M:      Martin Mares <mj@ucw.cz>
16965 L:      linux-video@atrey.karlin.mff.cuni.cz
16966 S:      Maintained
16967 F:      Documentation/admin-guide/svga.rst
16968 F:      arch/x86/boot/video*
16969
16970 SWIOTLB SUBSYSTEM
16971 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
16972 L:      iommu@lists.linux-foundation.org
16973 S:      Supported
16974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16975 F:      arch/*/kernel/pci-swiotlb.c
16976 F:      include/linux/swiotlb.h
16977 F:      kernel/dma/swiotlb.c
16978
16979 SWITCHDEV
16980 M:      Jiri Pirko <jiri@resnulli.us>
16981 M:      Ivan Vecera <ivecera@redhat.com>
16982 L:      netdev@vger.kernel.org
16983 S:      Supported
16984 F:      include/net/switchdev.h
16985 F:      net/switchdev/
16986
16987 SY8106A REGULATOR DRIVER
16988 M:      Icenowy Zheng <icenowy@aosc.io>
16989 S:      Maintained
16990 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16991 F:      drivers/regulator/sy8106a-regulator.c
16992
16993 SYNC FILE FRAMEWORK
16994 M:      Sumit Semwal <sumit.semwal@linaro.org>
16995 R:      Gustavo Padovan <gustavo@padovan.org>
16996 L:      linux-media@vger.kernel.org
16997 L:      dri-devel@lists.freedesktop.org
16998 S:      Maintained
16999 T:      git git://anongit.freedesktop.org/drm/drm-misc
17000 F:      Documentation/driver-api/sync_file.rst
17001 F:      drivers/dma-buf/dma-fence*
17002 F:      drivers/dma-buf/sw_sync.c
17003 F:      drivers/dma-buf/sync_*
17004 F:      include/linux/sync_file.h
17005 F:      include/uapi/linux/sync_file.h
17006
17007 SYNOPSYS ARC ARCHITECTURE
17008 M:      Vineet Gupta <vgupta@synopsys.com>
17009 L:      linux-snps-arc@lists.infradead.org
17010 S:      Supported
17011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
17012 F:      Documentation/devicetree/bindings/arc/*
17013 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
17014 F:      arch/arc/
17015 F:      drivers/clocksource/arc_timer.c
17016 F:      drivers/tty/serial/arc_uart.c
17017
17018 SYNOPSYS ARC HSDK SDP pll clock driver
17019 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17020 S:      Supported
17021 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
17022 F:      drivers/clk/clk-hsdk-pll.c
17023
17024 SYNOPSYS ARC SDP clock driver
17025 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17026 S:      Supported
17027 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
17028 F:      drivers/clk/axs10x/*
17029
17030 SYNOPSYS ARC SDP platform support
17031 M:      Alexey Brodkin <abrodkin@synopsys.com>
17032 S:      Supported
17033 F:      Documentation/devicetree/bindings/arc/axs10*
17034 F:      arch/arc/boot/dts/ax*
17035 F:      arch/arc/plat-axs10x
17036
17037 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
17038 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17039 S:      Supported
17040 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
17041 F:      drivers/reset/reset-axs10x.c
17042
17043 SYNOPSYS CREG GPIO DRIVER
17044 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17045 S:      Maintained
17046 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
17047 F:      drivers/gpio/gpio-creg-snps.c
17048
17049 SYNOPSYS DESIGNWARE 8250 UART DRIVER
17050 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17051 S:      Maintained
17052 F:      drivers/tty/serial/8250/8250_dw.c
17053 F:      drivers/tty/serial/8250/8250_dwlib.*
17054 F:      drivers/tty/serial/8250/8250_lpss.c
17055
17056 SYNOPSYS DESIGNWARE APB GPIO DRIVER
17057 M:      Hoan Tran <hoan@os.amperecomputing.com>
17058 M:      Serge Semin <fancer.lancer@gmail.com>
17059 L:      linux-gpio@vger.kernel.org
17060 S:      Maintained
17061 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
17062 F:      drivers/gpio/gpio-dwapb.c
17063
17064 SYNOPSYS DESIGNWARE APB SSI DRIVER
17065 M:      Serge Semin <fancer.lancer@gmail.com>
17066 L:      linux-spi@vger.kernel.org
17067 S:      Supported
17068 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
17069 F:      drivers/spi/spi-dw*
17070
17071 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
17072 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17073 S:      Maintained
17074 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
17075 F:      drivers/dma/dw-axi-dmac/
17076
17077 SYNOPSYS DESIGNWARE DMAC DRIVER
17078 M:      Viresh Kumar <vireshk@kernel.org>
17079 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17080 S:      Maintained
17081 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
17082 F:      drivers/dma/dw/
17083 F:      include/dt-bindings/dma/dw-dmac.h
17084 F:      include/linux/dma/dw.h
17085 F:      include/linux/platform_data/dma-dw.h
17086
17087 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
17088 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17089 L:      netdev@vger.kernel.org
17090 S:      Supported
17091 F:      drivers/net/ethernet/synopsys/
17092
17093 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
17094 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17095 L:      netdev@vger.kernel.org
17096 S:      Supported
17097 F:      drivers/net/pcs/pcs-xpcs.c
17098 F:      include/linux/pcs/pcs-xpcs.h
17099
17100 SYNOPSYS DESIGNWARE I2C DRIVER
17101 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
17102 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17103 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
17104 L:      linux-i2c@vger.kernel.org
17105 S:      Maintained
17106 F:      drivers/i2c/busses/i2c-designware-*
17107 F:      include/linux/platform_data/i2c-designware.h
17108
17109 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
17110 M:      Jaehoon Chung <jh80.chung@samsung.com>
17111 L:      linux-mmc@vger.kernel.org
17112 S:      Maintained
17113 F:      drivers/mmc/host/dw_mmc*
17114
17115 SYNOPSYS HSDK RESET CONTROLLER DRIVER
17116 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17117 S:      Supported
17118 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
17119 F:      drivers/reset/reset-hsdk.c
17120 F:      include/dt-bindings/reset/snps,hsdk-reset.h
17121
17122 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
17123 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
17124 M:      Manjunath M B <manjumb@synopsys.com>
17125 L:      linux-mmc@vger.kernel.org
17126 S:      Maintained
17127 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
17128
17129 SYSTEM CONFIGURATION (SYSCON)
17130 M:      Lee Jones <lee.jones@linaro.org>
17131 M:      Arnd Bergmann <arnd@arndb.de>
17132 S:      Supported
17133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
17134 F:      drivers/mfd/syscon.c
17135
17136 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
17137 M:      Sudeep Holla <sudeep.holla@arm.com>
17138 L:      linux-arm-kernel@lists.infradead.org
17139 S:      Maintained
17140 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
17141 F:      drivers/clk/clk-sc[mp]i.c
17142 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
17143 F:      drivers/firmware/arm_scmi/
17144 F:      drivers/firmware/arm_scpi.c
17145 F:      drivers/reset/reset-scmi.c
17146 F:      include/linux/sc[mp]i_protocol.h
17147 F:      include/trace/events/scmi.h
17148
17149 SYSTEM RESET/SHUTDOWN DRIVERS
17150 M:      Sebastian Reichel <sre@kernel.org>
17151 L:      linux-pm@vger.kernel.org
17152 S:      Maintained
17153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
17154 F:      Documentation/devicetree/bindings/power/reset/
17155 F:      drivers/power/reset/
17156
17157 SYSTEM TRACE MODULE CLASS
17158 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
17159 S:      Maintained
17160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
17161 F:      Documentation/trace/stm.rst
17162 F:      drivers/hwtracing/stm/
17163 F:      include/linux/stm.h
17164 F:      include/uapi/linux/stm.h
17165
17166 SYSTEM76 ACPI DRIVER
17167 M:      Jeremy Soller <jeremy@system76.com>
17168 M:      System76 Product Development <productdev@system76.com>
17169 L:      platform-driver-x86@vger.kernel.org
17170 S:      Maintained
17171 F:      drivers/platform/x86/system76_acpi.c
17172
17173 SYSV FILESYSTEM
17174 M:      Christoph Hellwig <hch@infradead.org>
17175 S:      Maintained
17176 F:      Documentation/filesystems/sysv-fs.rst
17177 F:      fs/sysv/
17178 F:      include/linux/sysv_fs.h
17179
17180 TASKSTATS STATISTICS INTERFACE
17181 M:      Balbir Singh <bsingharora@gmail.com>
17182 S:      Maintained
17183 F:      Documentation/accounting/taskstats*
17184 F:      include/linux/taskstats*
17185 F:      kernel/taskstats.c
17186
17187 TC subsystem
17188 M:      Jamal Hadi Salim <jhs@mojatatu.com>
17189 M:      Cong Wang <xiyou.wangcong@gmail.com>
17190 M:      Jiri Pirko <jiri@resnulli.us>
17191 L:      netdev@vger.kernel.org
17192 S:      Maintained
17193 F:      include/net/pkt_cls.h
17194 F:      include/net/pkt_sched.h
17195 F:      include/net/tc_act/
17196 F:      include/uapi/linux/pkt_cls.h
17197 F:      include/uapi/linux/pkt_sched.h
17198 F:      include/uapi/linux/tc_act/
17199 F:      include/uapi/linux/tc_ematch/
17200 F:      net/sched/
17201
17202 TC90522 MEDIA DRIVER
17203 M:      Akihiro Tsukada <tskd08@gmail.com>
17204 L:      linux-media@vger.kernel.org
17205 S:      Odd Fixes
17206 F:      drivers/media/dvb-frontends/tc90522*
17207
17208 TCP LOW PRIORITY MODULE
17209 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
17210 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
17211 S:      Maintained
17212 W:      http://tcp-lp-mod.sourceforge.net/
17213 F:      net/ipv4/tcp_lp.c
17214
17215 TDA10071 MEDIA DRIVER
17216 M:      Antti Palosaari <crope@iki.fi>
17217 L:      linux-media@vger.kernel.org
17218 S:      Maintained
17219 W:      https://linuxtv.org
17220 W:      http://palosaari.fi/linux/
17221 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17222 T:      git git://linuxtv.org/anttip/media_tree.git
17223 F:      drivers/media/dvb-frontends/tda10071*
17224
17225 TDA18212 MEDIA DRIVER
17226 M:      Antti Palosaari <crope@iki.fi>
17227 L:      linux-media@vger.kernel.org
17228 S:      Maintained
17229 W:      https://linuxtv.org
17230 W:      http://palosaari.fi/linux/
17231 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17232 T:      git git://linuxtv.org/anttip/media_tree.git
17233 F:      drivers/media/tuners/tda18212*
17234
17235 TDA18218 MEDIA DRIVER
17236 M:      Antti Palosaari <crope@iki.fi>
17237 L:      linux-media@vger.kernel.org
17238 S:      Maintained
17239 W:      https://linuxtv.org
17240 W:      http://palosaari.fi/linux/
17241 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17242 T:      git git://linuxtv.org/anttip/media_tree.git
17243 F:      drivers/media/tuners/tda18218*
17244
17245 TDA18250 MEDIA DRIVER
17246 M:      Olli Salonen <olli.salonen@iki.fi>
17247 L:      linux-media@vger.kernel.org
17248 S:      Maintained
17249 W:      https://linuxtv.org
17250 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17251 T:      git git://linuxtv.org/media_tree.git
17252 F:      drivers/media/tuners/tda18250*
17253
17254 TDA18271 MEDIA DRIVER
17255 M:      Michael Krufky <mkrufky@linuxtv.org>
17256 L:      linux-media@vger.kernel.org
17257 S:      Maintained
17258 W:      https://linuxtv.org
17259 W:      http://github.com/mkrufky
17260 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17261 T:      git git://linuxtv.org/mkrufky/tuners.git
17262 F:      drivers/media/tuners/tda18271*
17263
17264 TDA1997x MEDIA DRIVER
17265 M:      Tim Harvey <tharvey@gateworks.com>
17266 L:      linux-media@vger.kernel.org
17267 S:      Maintained
17268 W:      https://linuxtv.org
17269 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17270 F:      drivers/media/i2c/tda1997x.*
17271
17272 TDA827x MEDIA DRIVER
17273 M:      Michael Krufky <mkrufky@linuxtv.org>
17274 L:      linux-media@vger.kernel.org
17275 S:      Maintained
17276 W:      https://linuxtv.org
17277 W:      http://github.com/mkrufky
17278 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17279 T:      git git://linuxtv.org/mkrufky/tuners.git
17280 F:      drivers/media/tuners/tda8290.*
17281
17282 TDA8290 MEDIA DRIVER
17283 M:      Michael Krufky <mkrufky@linuxtv.org>
17284 L:      linux-media@vger.kernel.org
17285 S:      Maintained
17286 W:      https://linuxtv.org
17287 W:      http://github.com/mkrufky
17288 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17289 T:      git git://linuxtv.org/mkrufky/tuners.git
17290 F:      drivers/media/tuners/tda8290.*
17291
17292 TDA9840 MEDIA DRIVER
17293 M:      Hans Verkuil <hverkuil@xs4all.nl>
17294 L:      linux-media@vger.kernel.org
17295 S:      Maintained
17296 W:      https://linuxtv.org
17297 T:      git git://linuxtv.org/media_tree.git
17298 F:      drivers/media/i2c/tda9840*
17299
17300 TEA5761 TUNER DRIVER
17301 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17302 L:      linux-media@vger.kernel.org
17303 S:      Odd fixes
17304 W:      https://linuxtv.org
17305 T:      git git://linuxtv.org/media_tree.git
17306 F:      drivers/media/tuners/tea5761.*
17307
17308 TEA5767 TUNER DRIVER
17309 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17310 L:      linux-media@vger.kernel.org
17311 S:      Maintained
17312 W:      https://linuxtv.org
17313 T:      git git://linuxtv.org/media_tree.git
17314 F:      drivers/media/tuners/tea5767.*
17315
17316 TEA6415C MEDIA DRIVER
17317 M:      Hans Verkuil <hverkuil@xs4all.nl>
17318 L:      linux-media@vger.kernel.org
17319 S:      Maintained
17320 W:      https://linuxtv.org
17321 T:      git git://linuxtv.org/media_tree.git
17322 F:      drivers/media/i2c/tea6415c*
17323
17324 TEA6420 MEDIA DRIVER
17325 M:      Hans Verkuil <hverkuil@xs4all.nl>
17326 L:      linux-media@vger.kernel.org
17327 S:      Maintained
17328 W:      https://linuxtv.org
17329 T:      git git://linuxtv.org/media_tree.git
17330 F:      drivers/media/i2c/tea6420*
17331
17332 TEAM DRIVER
17333 M:      Jiri Pirko <jiri@resnulli.us>
17334 L:      netdev@vger.kernel.org
17335 S:      Supported
17336 F:      drivers/net/team/
17337 F:      include/linux/if_team.h
17338 F:      include/uapi/linux/if_team.h
17339
17340 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
17341 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
17342 S:      Maintained
17343 F:      arch/x86/platform/ts5500/
17344
17345 TECHNOTREND USB IR RECEIVER
17346 M:      Sean Young <sean@mess.org>
17347 L:      linux-media@vger.kernel.org
17348 S:      Maintained
17349 F:      drivers/media/rc/ttusbir.c
17350
17351 TECHWELL TW9910 VIDEO DECODER
17352 L:      linux-media@vger.kernel.org
17353 S:      Orphan
17354 F:      drivers/media/i2c/tw9910.c
17355 F:      include/media/i2c/tw9910.h
17356
17357 TEE SUBSYSTEM
17358 M:      Jens Wiklander <jens.wiklander@linaro.org>
17359 L:      op-tee@lists.trustedfirmware.org
17360 S:      Maintained
17361 F:      Documentation/staging/tee.rst
17362 F:      drivers/tee/
17363 F:      include/linux/tee_drv.h
17364 F:      include/uapi/linux/tee.h
17365
17366 TEGRA ARCHITECTURE SUPPORT
17367 M:      Thierry Reding <thierry.reding@gmail.com>
17368 M:      Jonathan Hunter <jonathanh@nvidia.com>
17369 L:      linux-tegra@vger.kernel.org
17370 S:      Supported
17371 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
17372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
17373 N:      [^a-z]tegra
17374
17375 TEGRA CLOCK DRIVER
17376 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
17377 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
17378 S:      Supported
17379 F:      drivers/clk/tegra/
17380
17381 TEGRA DMA DRIVERS
17382 M:      Laxman Dewangan <ldewangan@nvidia.com>
17383 M:      Jon Hunter <jonathanh@nvidia.com>
17384 S:      Supported
17385 F:      drivers/dma/tegra*
17386
17387 TEGRA I2C DRIVER
17388 M:      Laxman Dewangan <ldewangan@nvidia.com>
17389 R:      Dmitry Osipenko <digetx@gmail.com>
17390 S:      Supported
17391 F:      drivers/i2c/busses/i2c-tegra.c
17392
17393 TEGRA IOMMU DRIVERS
17394 M:      Thierry Reding <thierry.reding@gmail.com>
17395 R:      Krishna Reddy <vdumpa@nvidia.com>
17396 L:      linux-tegra@vger.kernel.org
17397 S:      Supported
17398 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
17399 F:      drivers/iommu/tegra*
17400
17401 TEGRA KBC DRIVER
17402 M:      Laxman Dewangan <ldewangan@nvidia.com>
17403 S:      Supported
17404 F:      drivers/input/keyboard/tegra-kbc.c
17405
17406 TEGRA NAND DRIVER
17407 M:      Stefan Agner <stefan@agner.ch>
17408 M:      Lucas Stach <dev@lynxeye.de>
17409 S:      Maintained
17410 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
17411 F:      drivers/mtd/nand/raw/tegra_nand.c
17412
17413 TEGRA PWM DRIVER
17414 M:      Thierry Reding <thierry.reding@gmail.com>
17415 S:      Supported
17416 F:      drivers/pwm/pwm-tegra.c
17417
17418 TEGRA SERIAL DRIVER
17419 M:      Laxman Dewangan <ldewangan@nvidia.com>
17420 S:      Supported
17421 F:      drivers/tty/serial/serial-tegra.c
17422
17423 TEGRA SPI DRIVER
17424 M:      Laxman Dewangan <ldewangan@nvidia.com>
17425 S:      Supported
17426 F:      drivers/spi/spi-tegra*
17427
17428 TEGRA VIDEO DRIVER
17429 M:      Thierry Reding <thierry.reding@gmail.com>
17430 M:      Jonathan Hunter <jonathanh@nvidia.com>
17431 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
17432 L:      linux-media@vger.kernel.org
17433 L:      linux-tegra@vger.kernel.org
17434 S:      Maintained
17435 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
17436 F:      drivers/staging/media/tegra-video/
17437
17438 TEGRA XUSB PADCTL DRIVER
17439 M:      JC Kuo <jckuo@nvidia.com>
17440 S:      Supported
17441 F:      drivers/phy/tegra/xusb*
17442
17443 TEHUTI ETHERNET DRIVER
17444 M:      Andy Gospodarek <andy@greyhouse.net>
17445 L:      netdev@vger.kernel.org
17446 S:      Supported
17447 F:      drivers/net/ethernet/tehuti/*
17448
17449 TELECOM CLOCK DRIVER FOR MCPL0010
17450 M:      Mark Gross <mark.gross@intel.com>
17451 S:      Supported
17452 F:      drivers/char/tlclk.c
17453
17454 TEMPO SEMICONDUCTOR DRIVERS
17455 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
17456 S:      Maintained
17457 F:      Documentation/devicetree/bindings/sound/tscs*.txt
17458 F:      sound/soc/codecs/tscs*.c
17459 F:      sound/soc/codecs/tscs*.h
17460
17461 TENSILICA XTENSA PORT (xtensa)
17462 M:      Chris Zankel <chris@zankel.net>
17463 M:      Max Filippov <jcmvbkbc@gmail.com>
17464 L:      linux-xtensa@linux-xtensa.org
17465 S:      Maintained
17466 T:      git git://github.com/czankel/xtensa-linux.git
17467 F:      arch/xtensa/
17468 F:      drivers/irqchip/irq-xtensa-*
17469
17470 TEXAS INSTRUMENTS ASoC DRIVERS
17471 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
17472 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17473 S:      Maintained
17474 F:      sound/soc/ti/
17475
17476 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
17477 M:      Ricardo Ribalda <ribalda@kernel.org>
17478 L:      linux-iio@vger.kernel.org
17479 S:      Supported
17480 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
17481 F:      drivers/iio/dac/ti-dac7612.c
17482
17483 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
17484 M:      Nishanth Menon <nm@ti.com>
17485 M:      Tero Kristo <t-kristo@ti.com>
17486 M:      Santosh Shilimkar <ssantosh@kernel.org>
17487 L:      linux-arm-kernel@lists.infradead.org
17488 S:      Maintained
17489 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
17490 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
17491 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
17492 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
17493 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
17494 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
17495 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
17496 F:      drivers/clk/keystone/sci-clk.c
17497 F:      drivers/firmware/ti_sci*
17498 F:      drivers/irqchip/irq-ti-sci-inta.c
17499 F:      drivers/irqchip/irq-ti-sci-intr.c
17500 F:      drivers/reset/reset-ti-sci.c
17501 F:      drivers/soc/ti/ti_sci_inta_msi.c
17502 F:      drivers/soc/ti/ti_sci_pm_domains.c
17503 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
17504 F:      include/linux/soc/ti/ti_sci_inta_msi.h
17505 F:      include/linux/soc/ti/ti_sci_protocol.h
17506
17507 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
17508 M:      Hans Verkuil <hverkuil@xs4all.nl>
17509 L:      linux-media@vger.kernel.org
17510 S:      Maintained
17511 W:      https://linuxtv.org
17512 T:      git git://linuxtv.org/media_tree.git
17513 F:      drivers/media/radio/radio-raremono.c
17514
17515 THERMAL
17516 M:      Zhang Rui <rui.zhang@intel.com>
17517 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
17518 R:      Amit Kucheria <amitk@kernel.org>
17519 L:      linux-pm@vger.kernel.org
17520 S:      Supported
17521 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
17523 F:      Documentation/devicetree/bindings/thermal/
17524 F:      drivers/thermal/
17525 F:      include/linux/cpu_cooling.h
17526 F:      include/linux/thermal.h
17527 F:      include/uapi/linux/thermal.h
17528
17529 THERMAL DRIVER FOR AMLOGIC SOCS
17530 M:      Guillaume La Roque <glaroque@baylibre.com>
17531 L:      linux-pm@vger.kernel.org
17532 L:      linux-amlogic@lists.infradead.org
17533 S:      Supported
17534 W:      http://linux-meson.com/
17535 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
17536 F:      drivers/thermal/amlogic_thermal.c
17537
17538 THERMAL/CPU_COOLING
17539 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
17540 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
17541 M:      Viresh Kumar <viresh.kumar@linaro.org>
17542 M:      Javi Merino <javi.merino@kernel.org>
17543 L:      linux-pm@vger.kernel.org
17544 S:      Supported
17545 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
17546 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
17547 F:      drivers/thermal/cpufreq_cooling.c
17548 F:      drivers/thermal/cpuidle_cooling.c
17549 F:      include/linux/cpu_cooling.h
17550
17551 THERMAL/POWER_ALLOCATOR
17552 M:      Lukasz Luba <lukasz.luba@arm.com>
17553 L:      linux-pm@vger.kernel.org
17554 S:      Maintained
17555 F:      Documentation/driver-api/thermal/power_allocator.rst
17556 F:      drivers/thermal/gov_power_allocator.c
17557 F:      include/trace/events/thermal_power_allocator.h
17558
17559 THINKPAD ACPI EXTRAS DRIVER
17560 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
17561 L:      ibm-acpi-devel@lists.sourceforge.net
17562 L:      platform-driver-x86@vger.kernel.org
17563 S:      Maintained
17564 W:      http://ibm-acpi.sourceforge.net
17565 W:      http://thinkwiki.org/wiki/Ibm-acpi
17566 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
17567 F:      drivers/platform/x86/thinkpad_acpi.c
17568
17569 THUNDERBOLT DMA TRAFFIC TEST DRIVER
17570 M:      Isaac Hazan <isaac.hazan@intel.com>
17571 L:      linux-usb@vger.kernel.org
17572 S:      Maintained
17573 F:      drivers/thunderbolt/dma_test.c
17574
17575 THUNDERBOLT DRIVER
17576 M:      Andreas Noever <andreas.noever@gmail.com>
17577 M:      Michael Jamet <michael.jamet@intel.com>
17578 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
17579 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
17580 L:      linux-usb@vger.kernel.org
17581 S:      Maintained
17582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
17583 F:      Documentation/admin-guide/thunderbolt.rst
17584 F:      drivers/thunderbolt/
17585 F:      include/linux/thunderbolt.h
17586
17587 THUNDERBOLT NETWORK DRIVER
17588 M:      Michael Jamet <michael.jamet@intel.com>
17589 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
17590 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
17591 L:      netdev@vger.kernel.org
17592 S:      Maintained
17593 F:      drivers/net/thunderbolt.c
17594
17595 THUNDERX GPIO DRIVER
17596 M:      Robert Richter <rric@kernel.org>
17597 S:      Odd Fixes
17598 F:      drivers/gpio/gpio-thunderx.c
17599
17600 TI AM437X VPFE DRIVER
17601 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17602 L:      linux-media@vger.kernel.org
17603 S:      Maintained
17604 W:      https://linuxtv.org
17605 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17606 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17607 F:      drivers/media/platform/am437x/
17608
17609 TI BANDGAP AND THERMAL DRIVER
17610 M:      Eduardo Valentin <edubezval@gmail.com>
17611 M:      Keerthy <j-keerthy@ti.com>
17612 L:      linux-pm@vger.kernel.org
17613 L:      linux-omap@vger.kernel.org
17614 S:      Maintained
17615 F:      drivers/thermal/ti-soc-thermal/
17616
17617 TI BQ27XXX POWER SUPPLY DRIVER
17618 R:      Dan Murphy <dmurphy@ti.com>
17619 F:      drivers/power/supply/bq27xxx_battery.c
17620 F:      drivers/power/supply/bq27xxx_battery_i2c.c
17621 F:      include/linux/power/bq27xxx_battery.h
17622
17623 TI CDCE706 CLOCK DRIVER
17624 M:      Max Filippov <jcmvbkbc@gmail.com>
17625 S:      Maintained
17626 F:      drivers/clk/clk-cdce706.c
17627
17628 TI CLOCK DRIVER
17629 M:      Tero Kristo <t-kristo@ti.com>
17630 L:      linux-omap@vger.kernel.org
17631 S:      Maintained
17632 F:      drivers/clk/ti/
17633 F:      include/linux/clk/ti.h
17634
17635 TI DAVINCI MACHINE SUPPORT
17636 M:      Sekhar Nori <nsekhar@ti.com>
17637 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
17638 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17639 S:      Supported
17640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
17641 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
17642 F:      arch/arm/boot/dts/da850*
17643 F:      arch/arm/mach-davinci/
17644 F:      drivers/i2c/busses/i2c-davinci.c
17645
17646 TI DAVINCI SERIES CLOCK DRIVER
17647 M:      David Lechner <david@lechnology.com>
17648 R:      Sekhar Nori <nsekhar@ti.com>
17649 S:      Maintained
17650 F:      Documentation/devicetree/bindings/clock/ti/davinci/
17651 F:      drivers/clk/davinci/
17652
17653 TI DAVINCI SERIES GPIO DRIVER
17654 M:      Keerthy <j-keerthy@ti.com>
17655 L:      linux-gpio@vger.kernel.org
17656 S:      Maintained
17657 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
17658 F:      drivers/gpio/gpio-davinci.c
17659
17660 TI DAVINCI SERIES MEDIA DRIVER
17661 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17662 L:      linux-media@vger.kernel.org
17663 S:      Maintained
17664 W:      https://linuxtv.org
17665 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17666 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17667 F:      drivers/media/platform/davinci/
17668 F:      include/media/davinci/
17669
17670 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
17671 R:      David Lechner <david@lechnology.com>
17672 L:      linux-iio@vger.kernel.org
17673 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
17674 F:      drivers/counter/ti-eqep.c
17675
17676 TI ETHERNET SWITCH DRIVER (CPSW)
17677 R:      Grygorii Strashko <grygorii.strashko@ti.com>
17678 L:      linux-omap@vger.kernel.org
17679 L:      netdev@vger.kernel.org
17680 S:      Maintained
17681 F:      drivers/net/ethernet/ti/cpsw*
17682 F:      drivers/net/ethernet/ti/davinci*
17683
17684 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
17685 M:      Alex Dubov <oakad@yahoo.com>
17686 S:      Maintained
17687 W:      http://tifmxx.berlios.de/
17688 F:      drivers/memstick/host/tifm_ms.c
17689 F:      drivers/misc/tifm*
17690 F:      drivers/mmc/host/tifm_sd.c
17691 F:      include/linux/tifm.h
17692
17693 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
17694 M:      Santosh Shilimkar <ssantosh@kernel.org>
17695 L:      linux-kernel@vger.kernel.org
17696 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17697 S:      Maintained
17698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
17699 F:      drivers/soc/ti/*
17700
17701 TI LM49xxx FAMILY ASoC CODEC DRIVERS
17702 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
17703 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
17704 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17705 S:      Maintained
17706 F:      sound/soc/codecs/isabelle*
17707 F:      sound/soc/codecs/lm49453*
17708
17709 TI LP855x BACKLIGHT DRIVER
17710 M:      Milo Kim <milo.kim@ti.com>
17711 S:      Maintained
17712 F:      Documentation/driver-api/backlight/lp855x-driver.rst
17713 F:      drivers/video/backlight/lp855x_bl.c
17714 F:      include/linux/platform_data/lp855x.h
17715
17716 TI LP8727 CHARGER DRIVER
17717 M:      Milo Kim <milo.kim@ti.com>
17718 S:      Maintained
17719 F:      drivers/power/supply/lp8727_charger.c
17720 F:      include/linux/platform_data/lp8727.h
17721
17722 TI LP8788 MFD DRIVER
17723 M:      Milo Kim <milo.kim@ti.com>
17724 S:      Maintained
17725 F:      drivers/iio/adc/lp8788_adc.c
17726 F:      drivers/leds/leds-lp8788.c
17727 F:      drivers/mfd/lp8788*.c
17728 F:      drivers/power/supply/lp8788-charger.c
17729 F:      drivers/regulator/lp8788-*.c
17730 F:      include/linux/mfd/lp8788*.h
17731
17732 TI NETCP ETHERNET DRIVER
17733 M:      Wingman Kwok <w-kwok2@ti.com>
17734 M:      Murali Karicheri <m-karicheri2@ti.com>
17735 L:      netdev@vger.kernel.org
17736 S:      Maintained
17737 F:      drivers/net/ethernet/ti/netcp*
17738
17739 TI PCM3060 ASoC CODEC DRIVER
17740 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
17741 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17742 S:      Maintained
17743 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
17744 F:      sound/soc/codecs/pcm3060*
17745
17746 TI TAS571X FAMILY ASoC CODEC DRIVER
17747 M:      Kevin Cernekee <cernekee@chromium.org>
17748 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17749 S:      Odd Fixes
17750 F:      sound/soc/codecs/tas571x*
17751
17752 TI TCAN4X5X DEVICE DRIVER
17753 M:      Dan Murphy <dmurphy@ti.com>
17754 L:      linux-can@vger.kernel.org
17755 S:      Maintained
17756 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
17757 F:      drivers/net/can/m_can/tcan4x5x.c
17758
17759 TI TRF7970A NFC DRIVER
17760 M:      Mark Greer <mgreer@animalcreek.com>
17761 L:      linux-wireless@vger.kernel.org
17762 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
17763 S:      Supported
17764 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
17765 F:      drivers/nfc/trf7970a.c
17766
17767 TI TWL4030 SERIES SOC CODEC DRIVER
17768 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
17769 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17770 S:      Maintained
17771 F:      sound/soc/codecs/twl4030*
17772
17773 TI VPE/CAL DRIVERS
17774 M:      Benoit Parrot <bparrot@ti.com>
17775 L:      linux-media@vger.kernel.org
17776 S:      Maintained
17777 W:      http://linuxtv.org/
17778 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17779 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
17780 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
17781 F:      drivers/media/platform/ti-vpe/
17782
17783 TI WILINK WIRELESS DRIVERS
17784 L:      linux-wireless@vger.kernel.org
17785 S:      Orphan
17786 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
17787 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
17788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
17789 F:      drivers/net/wireless/ti/
17790 F:      include/linux/wl12xx.h
17791
17792 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
17793 M:      John Stultz <john.stultz@linaro.org>
17794 M:      Thomas Gleixner <tglx@linutronix.de>
17795 R:      Stephen Boyd <sboyd@kernel.org>
17796 L:      linux-kernel@vger.kernel.org
17797 S:      Supported
17798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
17799 F:      include/linux/clocksource.h
17800 F:      include/linux/time.h
17801 F:      include/linux/timex.h
17802 F:      include/uapi/linux/time.h
17803 F:      include/uapi/linux/timex.h
17804 F:      kernel/time/alarmtimer.c
17805 F:      kernel/time/clocksource.c
17806 F:      kernel/time/ntp.c
17807 F:      kernel/time/time*.c
17808 F:      tools/testing/selftests/timers/
17809
17810 TIPC NETWORK LAYER
17811 M:      Jon Maloy <jmaloy@redhat.com>
17812 M:      Ying Xue <ying.xue@windriver.com>
17813 L:      netdev@vger.kernel.org (core kernel code)
17814 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
17815 S:      Maintained
17816 W:      http://tipc.sourceforge.net/
17817 F:      include/uapi/linux/tipc*.h
17818 F:      net/tipc/
17819
17820 TLAN NETWORK DRIVER
17821 M:      Samuel Chessman <chessman@tux.org>
17822 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
17823 S:      Maintained
17824 W:      http://sourceforge.net/projects/tlan/
17825 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
17826 F:      drivers/net/ethernet/ti/tlan.*
17827
17828 TM6000 VIDEO4LINUX DRIVER
17829 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17830 L:      linux-media@vger.kernel.org
17831 S:      Odd fixes
17832 W:      https://linuxtv.org
17833 T:      git git://linuxtv.org/media_tree.git
17834 F:      Documentation/admin-guide/media/tm6000*
17835 F:      drivers/media/usb/tm6000/
17836
17837 TMIO/SDHI MMC DRIVER
17838 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17839 L:      linux-mmc@vger.kernel.org
17840 S:      Supported
17841 F:      drivers/mmc/host/renesas_sdhi*
17842 F:      drivers/mmc/host/tmio_mmc*
17843 F:      include/linux/mfd/tmio.h
17844
17845 TMP401 HARDWARE MONITOR DRIVER
17846 M:      Guenter Roeck <linux@roeck-us.net>
17847 L:      linux-hwmon@vger.kernel.org
17848 S:      Maintained
17849 F:      Documentation/hwmon/tmp401.rst
17850 F:      drivers/hwmon/tmp401.c
17851
17852 TMP513 HARDWARE MONITOR DRIVER
17853 M:      Eric Tremblay <etremblay@distech-controls.com>
17854 L:      linux-hwmon@vger.kernel.org
17855 S:      Maintained
17856 F:      Documentation/hwmon/tmp513.rst
17857 F:      drivers/hwmon/tmp513.c
17858
17859 TMPFS (SHMEM FILESYSTEM)
17860 M:      Hugh Dickins <hughd@google.com>
17861 L:      linux-mm@kvack.org
17862 S:      Maintained
17863 F:      include/linux/shmem_fs.h
17864 F:      mm/shmem.c
17865
17866 TOMOYO SECURITY MODULE
17867 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
17868 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
17869 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
17870 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
17871 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
17872 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
17873 S:      Maintained
17874 W:      https://tomoyo.osdn.jp/
17875 F:      security/tomoyo/
17876
17877 TOPSTAR LAPTOP EXTRAS DRIVER
17878 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17879 L:      platform-driver-x86@vger.kernel.org
17880 S:      Maintained
17881 F:      drivers/platform/x86/topstar-laptop.c
17882
17883 TORTURE-TEST MODULES
17884 M:      Davidlohr Bueso <dave@stgolabs.net>
17885 M:      "Paul E. McKenney" <paulmck@kernel.org>
17886 M:      Josh Triplett <josh@joshtriplett.org>
17887 L:      linux-kernel@vger.kernel.org
17888 S:      Supported
17889 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17890 F:      Documentation/RCU/torture.rst
17891 F:      kernel/locking/locktorture.c
17892 F:      kernel/rcu/rcuscale.c
17893 F:      kernel/rcu/rcutorture.c
17894 F:      kernel/rcu/refscale.c
17895 F:      kernel/torture.c
17896
17897 TOSHIBA ACPI EXTRAS DRIVER
17898 M:      Azael Avalos <coproscefalo@gmail.com>
17899 L:      platform-driver-x86@vger.kernel.org
17900 S:      Maintained
17901 F:      drivers/platform/x86/toshiba_acpi.c
17902
17903 TOSHIBA BLUETOOTH DRIVER
17904 M:      Azael Avalos <coproscefalo@gmail.com>
17905 L:      platform-driver-x86@vger.kernel.org
17906 S:      Maintained
17907 F:      drivers/platform/x86/toshiba_bluetooth.c
17908
17909 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17910 M:      Azael Avalos <coproscefalo@gmail.com>
17911 L:      platform-driver-x86@vger.kernel.org
17912 S:      Maintained
17913 F:      drivers/platform/x86/toshiba_haps.c
17914
17915 TOSHIBA SMM DRIVER
17916 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
17917 S:      Maintained
17918 W:      http://www.buzzard.org.uk/toshiba/
17919 F:      drivers/char/toshiba.c
17920 F:      include/linux/toshiba.h
17921 F:      include/uapi/linux/toshiba.h
17922
17923 TOSHIBA TC358743 DRIVER
17924 M:      Mats Randgaard <matrandg@cisco.com>
17925 L:      linux-media@vger.kernel.org
17926 S:      Maintained
17927 F:      drivers/media/i2c/tc358743*
17928 F:      include/media/i2c/tc358743.h
17929
17930 TOSHIBA WMI HOTKEYS DRIVER
17931 M:      Azael Avalos <coproscefalo@gmail.com>
17932 L:      platform-driver-x86@vger.kernel.org
17933 S:      Maintained
17934 F:      drivers/platform/x86/toshiba-wmi.c
17935
17936 TPM DEVICE DRIVER
17937 M:      Peter Huewe <peterhuewe@gmx.de>
17938 M:      Jarkko Sakkinen <jarkko@kernel.org>
17939 R:      Jason Gunthorpe <jgg@ziepe.ca>
17940 L:      linux-integrity@vger.kernel.org
17941 S:      Maintained
17942 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17943 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
17944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
17945 F:      drivers/char/tpm/
17946
17947 TRACING
17948 M:      Steven Rostedt <rostedt@goodmis.org>
17949 M:      Ingo Molnar <mingo@redhat.com>
17950 S:      Maintained
17951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17952 F:      Documentation/trace/ftrace.rst
17953 F:      arch/*/*/*/ftrace.h
17954 F:      arch/*/kernel/ftrace.c
17955 F:      include/*/ftrace.h
17956 F:      include/linux/trace*.h
17957 F:      include/trace/
17958 F:      kernel/trace/
17959 F:      tools/testing/selftests/ftrace/
17960
17961 TRACING MMIO ACCESSES (MMIOTRACE)
17962 M:      Steven Rostedt <rostedt@goodmis.org>
17963 M:      Ingo Molnar <mingo@kernel.org>
17964 R:      Karol Herbst <karolherbst@gmail.com>
17965 R:      Pekka Paalanen <ppaalanen@gmail.com>
17966 L:      linux-kernel@vger.kernel.org
17967 L:      nouveau@lists.freedesktop.org
17968 S:      Maintained
17969 F:      arch/x86/mm/kmmio.c
17970 F:      arch/x86/mm/mmio-mod.c
17971 F:      arch/x86/mm/testmmiotrace.c
17972 F:      include/linux/mmiotrace.h
17973 F:      kernel/trace/trace_mmiotrace.c
17974
17975 TRIVIAL PATCHES
17976 M:      Jiri Kosina <trivial@kernel.org>
17977 S:      Maintained
17978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17979 K:      ^Subject:.*(?i)trivial
17980
17981 TTY LAYER
17982 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17983 M:      Jiri Slaby <jirislaby@kernel.org>
17984 S:      Supported
17985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17986 F:      Documentation/driver-api/serial/
17987 F:      drivers/tty/
17988 F:      drivers/tty/serial/serial_core.c
17989 F:      include/linux/serial.h
17990 F:      include/linux/serial_core.h
17991 F:      include/linux/tty.h
17992 F:      include/uapi/linux/serial.h
17993 F:      include/uapi/linux/serial_core.h
17994 F:      include/uapi/linux/tty.h
17995
17996 TUA9001 MEDIA DRIVER
17997 M:      Antti Palosaari <crope@iki.fi>
17998 L:      linux-media@vger.kernel.org
17999 S:      Maintained
18000 W:      https://linuxtv.org
18001 W:      http://palosaari.fi/linux/
18002 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18003 T:      git git://linuxtv.org/anttip/media_tree.git
18004 F:      drivers/media/tuners/tua9001*
18005
18006 TULIP NETWORK DRIVERS
18007 L:      netdev@vger.kernel.org
18008 L:      linux-parisc@vger.kernel.org
18009 S:      Orphan
18010 F:      drivers/net/ethernet/dec/tulip/
18011
18012 TUN/TAP driver
18013 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
18014 S:      Maintained
18015 W:      http://vtun.sourceforge.net/tun
18016 F:      Documentation/networking/tuntap.rst
18017 F:      arch/um/os-Linux/drivers/
18018
18019 TURBOCHANNEL SUBSYSTEM
18020 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
18021 M:      Ralf Baechle <ralf@linux-mips.org>
18022 L:      linux-mips@vger.kernel.org
18023 S:      Maintained
18024 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
18025 F:      drivers/tc/
18026 F:      include/linux/tc.h
18027
18028 TURBOSTAT UTILITY
18029 M:      "Len Brown" <lenb@kernel.org>
18030 L:      linux-pm@vger.kernel.org
18031 S:      Supported
18032 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18033 B:      https://bugzilla.kernel.org
18034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
18035 F:      tools/power/x86/turbostat/
18036
18037 TW5864 VIDEO4LINUX DRIVER
18038 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18039 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18040 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
18041 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18042 L:      linux-media@vger.kernel.org
18043 S:      Supported
18044 F:      drivers/media/pci/tw5864/
18045
18046 TW68 VIDEO4LINUX DRIVER
18047 M:      Hans Verkuil <hverkuil@xs4all.nl>
18048 L:      linux-media@vger.kernel.org
18049 S:      Odd Fixes
18050 W:      https://linuxtv.org
18051 T:      git git://linuxtv.org/media_tree.git
18052 F:      drivers/media/pci/tw68/
18053
18054 TW686X VIDEO4LINUX DRIVER
18055 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18056 L:      linux-media@vger.kernel.org
18057 S:      Maintained
18058 W:      http://linuxtv.org
18059 T:      git git://linuxtv.org/media_tree.git
18060 F:      drivers/media/pci/tw686x/
18061
18062 UACCE ACCELERATOR FRAMEWORK
18063 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
18064 M:      Zhou Wang <wangzhou1@hisilicon.com>
18065 L:      linux-accelerators@lists.ozlabs.org
18066 L:      linux-kernel@vger.kernel.org
18067 S:      Maintained
18068 F:      Documentation/ABI/testing/sysfs-driver-uacce
18069 F:      Documentation/misc-devices/uacce.rst
18070 F:      drivers/misc/uacce/
18071 F:      include/linux/uacce.h
18072 F:      include/uapi/misc/uacce/
18073
18074 UBI FILE SYSTEM (UBIFS)
18075 M:      Richard Weinberger <richard@nod.at>
18076 L:      linux-mtd@lists.infradead.org
18077 S:      Supported
18078 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
18079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18081 F:      Documentation/filesystems/ubifs-authentication.rst
18082 F:      Documentation/filesystems/ubifs.rst
18083 F:      fs/ubifs/
18084
18085 UCLINUX (M68KNOMMU AND COLDFIRE)
18086 M:      Greg Ungerer <gerg@linux-m68k.org>
18087 L:      linux-m68k@lists.linux-m68k.org
18088 L:      uclinux-dev@uclinux.org  (subscribers-only)
18089 S:      Maintained
18090 W:      http://www.linux-m68k.org/
18091 W:      http://www.uclinux.org/
18092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
18093 F:      arch/m68k/*/*_no.*
18094 F:      arch/m68k/68*/
18095 F:      arch/m68k/coldfire/
18096 F:      arch/m68k/include/asm/*_no.*
18097
18098 UDF FILESYSTEM
18099 M:      Jan Kara <jack@suse.com>
18100 S:      Maintained
18101 F:      Documentation/filesystems/udf.rst
18102 F:      fs/udf/
18103
18104 UDRAW TABLET
18105 M:      Bastien Nocera <hadess@hadess.net>
18106 L:      linux-input@vger.kernel.org
18107 S:      Maintained
18108 F:      drivers/hid/hid-udraw-ps3.c
18109
18110 UFS FILESYSTEM
18111 M:      Evgeniy Dushistov <dushistov@mail.ru>
18112 S:      Maintained
18113 F:      Documentation/admin-guide/ufs.rst
18114 F:      fs/ufs/
18115
18116 UHID USERSPACE HID IO DRIVER
18117 M:      David Rheinsberg <david.rheinsberg@gmail.com>
18118 L:      linux-input@vger.kernel.org
18119 S:      Maintained
18120 F:      drivers/hid/uhid.c
18121 F:      include/uapi/linux/uhid.h
18122
18123 ULPI BUS
18124 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18125 L:      linux-usb@vger.kernel.org
18126 S:      Maintained
18127 F:      drivers/usb/common/ulpi.c
18128 F:      include/linux/ulpi/
18129
18130 UNICODE SUBSYSTEM
18131 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
18132 L:      linux-fsdevel@vger.kernel.org
18133 S:      Supported
18134 F:      fs/unicode/
18135
18136 UNIFDEF
18137 M:      Tony Finch <dot@dotat.at>
18138 S:      Maintained
18139 W:      http://dotat.at/prog/unifdef
18140 F:      scripts/unifdef.c
18141
18142 UNIFORM CDROM DRIVER
18143 M:      Jens Axboe <axboe@kernel.dk>
18144 S:      Maintained
18145 W:      http://www.kernel.dk
18146 F:      Documentation/cdrom/
18147 F:      drivers/cdrom/cdrom.c
18148 F:      include/linux/cdrom.h
18149 F:      include/uapi/linux/cdrom.h
18150
18151 UNISYS S-PAR DRIVERS
18152 M:      David Kershner <david.kershner@unisys.com>
18153 L:      sparmaintainer@unisys.com (Unisys internal)
18154 S:      Supported
18155 F:      drivers/staging/unisys/
18156 F:      drivers/visorbus/
18157 F:      include/linux/visorbus.h
18158
18159 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
18160 R:      Alim Akhtar <alim.akhtar@samsung.com>
18161 R:      Avri Altman <avri.altman@wdc.com>
18162 L:      linux-scsi@vger.kernel.org
18163 S:      Supported
18164 F:      Documentation/scsi/ufs.rst
18165 F:      drivers/scsi/ufs/
18166
18167 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
18168 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
18169 L:      linux-scsi@vger.kernel.org
18170 S:      Supported
18171 F:      drivers/scsi/ufs/*dwc*
18172
18173 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
18174 M:      Stanley Chu <stanley.chu@mediatek.com>
18175 L:      linux-scsi@vger.kernel.org
18176 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
18177 S:      Maintained
18178 F:      drivers/scsi/ufs/ufs-mediatek*
18179
18180 UNSORTED BLOCK IMAGES (UBI)
18181 M:      Richard Weinberger <richard@nod.at>
18182 L:      linux-mtd@lists.infradead.org
18183 S:      Supported
18184 W:      http://www.linux-mtd.infradead.org/
18185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18187 F:      drivers/mtd/ubi/
18188 F:      include/linux/mtd/ubi.h
18189 F:      include/uapi/mtd/ubi-user.h
18190
18191 USB "USBNET" DRIVER FRAMEWORK
18192 M:      Oliver Neukum <oneukum@suse.com>
18193 L:      netdev@vger.kernel.org
18194 S:      Maintained
18195 W:      http://www.linux-usb.org/usbnet
18196 F:      drivers/net/usb/usbnet.c
18197 F:      include/linux/usb/usbnet.h
18198
18199 USB ACM DRIVER
18200 M:      Oliver Neukum <oneukum@suse.com>
18201 L:      linux-usb@vger.kernel.org
18202 S:      Maintained
18203 F:      Documentation/usb/acm.rst
18204 F:      drivers/usb/class/cdc-acm.*
18205
18206 USB APPLE MFI FASTCHARGE DRIVER
18207 M:      Bastien Nocera <hadess@hadess.net>
18208 L:      linux-usb@vger.kernel.org
18209 S:      Maintained
18210 F:      drivers/usb/misc/apple-mfi-fastcharge.c
18211
18212 USB AR5523 WIRELESS DRIVER
18213 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
18214 L:      linux-wireless@vger.kernel.org
18215 S:      Maintained
18216 F:      drivers/net/wireless/ath/ar5523/
18217
18218 USB ATTACHED SCSI
18219 M:      Oliver Neukum <oneukum@suse.com>
18220 L:      linux-usb@vger.kernel.org
18221 L:      linux-scsi@vger.kernel.org
18222 S:      Maintained
18223 F:      drivers/usb/storage/uas.c
18224
18225 USB CDC ETHERNET DRIVER
18226 M:      Oliver Neukum <oliver@neukum.org>
18227 L:      linux-usb@vger.kernel.org
18228 S:      Maintained
18229 F:      drivers/net/usb/cdc_*.c
18230 F:      include/uapi/linux/usb/cdc.h
18231
18232 USB CHAOSKEY DRIVER
18233 M:      Keith Packard <keithp@keithp.com>
18234 L:      linux-usb@vger.kernel.org
18235 S:      Maintained
18236 F:      drivers/usb/misc/chaoskey.c
18237
18238 USB CYPRESS C67X00 DRIVER
18239 M:      Peter Korsgaard <jacmet@sunsite.dk>
18240 L:      linux-usb@vger.kernel.org
18241 S:      Maintained
18242 F:      drivers/usb/c67x00/
18243
18244 USB DAVICOM DM9601 DRIVER
18245 M:      Peter Korsgaard <jacmet@sunsite.dk>
18246 L:      netdev@vger.kernel.org
18247 S:      Maintained
18248 W:      http://www.linux-usb.org/usbnet
18249 F:      drivers/net/usb/dm9601.c
18250
18251 USB EHCI DRIVER
18252 M:      Alan Stern <stern@rowland.harvard.edu>
18253 L:      linux-usb@vger.kernel.org
18254 S:      Maintained
18255 F:      Documentation/usb/ehci.rst
18256 F:      drivers/usb/host/ehci*
18257
18258 USB GADGET/PERIPHERAL SUBSYSTEM
18259 M:      Felipe Balbi <balbi@kernel.org>
18260 L:      linux-usb@vger.kernel.org
18261 S:      Maintained
18262 W:      http://www.linux-usb.org/gadget
18263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18264 F:      drivers/usb/gadget/
18265 F:      include/linux/usb/gadget*
18266
18267 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
18268 M:      Jiri Kosina <jikos@kernel.org>
18269 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
18270 L:      linux-usb@vger.kernel.org
18271 S:      Maintained
18272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
18273 F:      Documentation/hid/hiddev.rst
18274 F:      drivers/hid/usbhid/
18275
18276 USB INTEL XHCI ROLE MUX DRIVER
18277 M:      Hans de Goede <hdegoede@redhat.com>
18278 L:      linux-usb@vger.kernel.org
18279 S:      Maintained
18280 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
18281
18282 USB IP DRIVER FOR HISILICON KIRIN
18283 M:      Yu Chen <chenyu56@huawei.com>
18284 M:      Binghui Wang <wangbinghui@hisilicon.com>
18285 L:      linux-usb@vger.kernel.org
18286 S:      Maintained
18287 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
18288 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
18289
18290 USB ISP116X DRIVER
18291 M:      Olav Kongas <ok@artecdesign.ee>
18292 L:      linux-usb@vger.kernel.org
18293 S:      Maintained
18294 F:      drivers/usb/host/isp116x*
18295 F:      include/linux/usb/isp116x.h
18296
18297 USB LAN78XX ETHERNET DRIVER
18298 M:      Woojung Huh <woojung.huh@microchip.com>
18299 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
18300 L:      netdev@vger.kernel.org
18301 S:      Maintained
18302 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
18303 F:      drivers/net/usb/lan78xx.*
18304 F:      include/dt-bindings/net/microchip-lan78xx.h
18305
18306 USB MASS STORAGE DRIVER
18307 M:      Alan Stern <stern@rowland.harvard.edu>
18308 L:      linux-usb@vger.kernel.org
18309 L:      usb-storage@lists.one-eyed-alien.net
18310 S:      Maintained
18311 F:      drivers/usb/storage/
18312
18313 USB MIDI DRIVER
18314 M:      Clemens Ladisch <clemens@ladisch.de>
18315 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18316 S:      Maintained
18317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18318 F:      sound/usb/midi.*
18319
18320 USB NETWORKING DRIVERS
18321 L:      linux-usb@vger.kernel.org
18322 S:      Odd Fixes
18323 F:      drivers/net/usb/
18324
18325 USB OHCI DRIVER
18326 M:      Alan Stern <stern@rowland.harvard.edu>
18327 L:      linux-usb@vger.kernel.org
18328 S:      Maintained
18329 F:      Documentation/usb/ohci.rst
18330 F:      drivers/usb/host/ohci*
18331
18332 USB OTG FSM (Finite State Machine)
18333 M:      Peter Chen <Peter.Chen@nxp.com>
18334 L:      linux-usb@vger.kernel.org
18335 S:      Maintained
18336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
18337 F:      drivers/usb/common/usb-otg-fsm.c
18338
18339 USB OVER IP DRIVER
18340 M:      Valentina Manea <valentina.manea.m@gmail.com>
18341 M:      Shuah Khan <shuah@kernel.org>
18342 M:      Shuah Khan <skhan@linuxfoundation.org>
18343 L:      linux-usb@vger.kernel.org
18344 S:      Maintained
18345 F:      Documentation/usb/usbip_protocol.rst
18346 F:      drivers/usb/usbip/
18347 F:      tools/testing/selftests/drivers/usb/usbip/
18348 F:      tools/usb/usbip/
18349
18350 USB PEGASUS DRIVER
18351 M:      Petko Manolov <petkan@nucleusys.com>
18352 L:      linux-usb@vger.kernel.org
18353 L:      netdev@vger.kernel.org
18354 S:      Maintained
18355 W:      https://github.com/petkan/pegasus
18356 T:      git git://github.com/petkan/pegasus.git
18357 F:      drivers/net/usb/pegasus.*
18358
18359 USB PHY LAYER
18360 M:      Felipe Balbi <balbi@kernel.org>
18361 L:      linux-usb@vger.kernel.org
18362 S:      Maintained
18363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18364 F:      drivers/usb/phy/
18365
18366 USB PRINTER DRIVER (usblp)
18367 M:      Pete Zaitcev <zaitcev@redhat.com>
18368 L:      linux-usb@vger.kernel.org
18369 S:      Supported
18370 F:      drivers/usb/class/usblp.c
18371
18372 USB RAW GADGET DRIVER
18373 R:      Andrey Konovalov <andreyknvl@gmail.com>
18374 L:      linux-usb@vger.kernel.org
18375 S:      Maintained
18376 F:      Documentation/usb/raw-gadget.rst
18377 F:      drivers/usb/gadget/legacy/raw_gadget.c
18378 F:      include/uapi/linux/usb/raw_gadget.h
18379
18380 USB QMI WWAN NETWORK DRIVER
18381 M:      Bjørn Mork <bjorn@mork.no>
18382 L:      netdev@vger.kernel.org
18383 S:      Maintained
18384 F:      Documentation/ABI/testing/sysfs-class-net-qmi
18385 F:      drivers/net/usb/qmi_wwan.c
18386
18387 USB RTL8150 DRIVER
18388 M:      Petko Manolov <petkan@nucleusys.com>
18389 L:      linux-usb@vger.kernel.org
18390 L:      netdev@vger.kernel.org
18391 S:      Maintained
18392 W:      https://github.com/petkan/rtl8150
18393 T:      git git://github.com/petkan/rtl8150.git
18394 F:      drivers/net/usb/rtl8150.c
18395
18396 USB SERIAL SUBSYSTEM
18397 M:      Johan Hovold <johan@kernel.org>
18398 L:      linux-usb@vger.kernel.org
18399 S:      Maintained
18400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
18401 F:      Documentation/usb/usb-serial.rst
18402 F:      drivers/usb/serial/
18403 F:      include/linux/usb/serial.h
18404
18405 USB SMSC75XX ETHERNET DRIVER
18406 M:      Steve Glendinning <steve.glendinning@shawell.net>
18407 L:      netdev@vger.kernel.org
18408 S:      Maintained
18409 F:      drivers/net/usb/smsc75xx.*
18410
18411 USB SMSC95XX ETHERNET DRIVER
18412 M:      Steve Glendinning <steve.glendinning@shawell.net>
18413 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
18414 L:      netdev@vger.kernel.org
18415 S:      Maintained
18416 F:      drivers/net/usb/smsc95xx.*
18417
18418 USB SUBSYSTEM
18419 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18420 L:      linux-usb@vger.kernel.org
18421 S:      Supported
18422 W:      http://www.linux-usb.org
18423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
18424 F:      Documentation/devicetree/bindings/usb/
18425 F:      Documentation/usb/
18426 F:      drivers/usb/
18427 F:      include/linux/usb.h
18428 F:      include/linux/usb/
18429
18430 USB TYPEC BUS FOR ALTERNATE MODES
18431 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18432 L:      linux-usb@vger.kernel.org
18433 S:      Maintained
18434 F:      Documentation/ABI/testing/sysfs-bus-typec
18435 F:      Documentation/driver-api/usb/typec_bus.rst
18436 F:      drivers/usb/typec/altmodes/
18437 F:      include/linux/usb/typec_altmode.h
18438
18439 USB TYPEC CLASS
18440 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18441 L:      linux-usb@vger.kernel.org
18442 S:      Maintained
18443 F:      Documentation/ABI/testing/sysfs-class-typec
18444 F:      Documentation/driver-api/usb/typec.rst
18445 F:      drivers/usb/typec/
18446 F:      include/linux/usb/typec.h
18447
18448 USB TYPEC INTEL PMC MUX DRIVER
18449 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18450 L:      linux-usb@vger.kernel.org
18451 S:      Maintained
18452 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
18453 F:      drivers/usb/typec/mux/intel_pmc_mux.c
18454
18455 USB TYPEC PI3USB30532 MUX DRIVER
18456 M:      Hans de Goede <hdegoede@redhat.com>
18457 L:      linux-usb@vger.kernel.org
18458 S:      Maintained
18459 F:      drivers/usb/typec/mux/pi3usb30532.c
18460
18461 USB TYPEC PORT CONTROLLER DRIVERS
18462 M:      Guenter Roeck <linux@roeck-us.net>
18463 L:      linux-usb@vger.kernel.org
18464 S:      Maintained
18465 F:      drivers/usb/typec/tcpm/
18466
18467 USB UHCI DRIVER
18468 M:      Alan Stern <stern@rowland.harvard.edu>
18469 L:      linux-usb@vger.kernel.org
18470 S:      Maintained
18471 F:      drivers/usb/host/uhci*
18472
18473 USB VIDEO CLASS
18474 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18475 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
18476 L:      linux-media@vger.kernel.org
18477 S:      Maintained
18478 W:      http://www.ideasonboard.org/uvc/
18479 T:      git git://linuxtv.org/media_tree.git
18480 F:      drivers/media/usb/uvc/
18481 F:      include/uapi/linux/uvcvideo.h
18482
18483 USB WEBCAM GADGET
18484 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18485 L:      linux-usb@vger.kernel.org
18486 S:      Maintained
18487 F:      drivers/usb/gadget/function/*uvc*
18488 F:      drivers/usb/gadget/legacy/webcam.c
18489 F:      include/uapi/linux/usb/g_uvc.h
18490
18491 USB WIRELESS RNDIS DRIVER (rndis_wlan)
18492 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
18493 L:      linux-wireless@vger.kernel.org
18494 S:      Maintained
18495 F:      drivers/net/wireless/rndis_wlan.c
18496
18497 USB XHCI DRIVER
18498 M:      Mathias Nyman <mathias.nyman@intel.com>
18499 L:      linux-usb@vger.kernel.org
18500 S:      Supported
18501 F:      drivers/usb/host/pci-quirks*
18502 F:      drivers/usb/host/xhci*
18503
18504 USB ZD1201 DRIVER
18505 L:      linux-wireless@vger.kernel.org
18506 S:      Orphan
18507 W:      http://linux-lc100020.sourceforge.net
18508 F:      drivers/net/wireless/zydas/zd1201.*
18509
18510 USB ZR364XX DRIVER
18511 M:      Antoine Jacquet <royale@zerezo.com>
18512 L:      linux-usb@vger.kernel.org
18513 L:      linux-media@vger.kernel.org
18514 S:      Maintained
18515 W:      http://royale.zerezo.com/zr364xx/
18516 T:      git git://linuxtv.org/media_tree.git
18517 F:      Documentation/admin-guide/media/zr364xx*
18518 F:      drivers/media/usb/zr364xx/
18519
18520 USER-MODE LINUX (UML)
18521 M:      Jeff Dike <jdike@addtoit.com>
18522 M:      Richard Weinberger <richard@nod.at>
18523 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
18524 L:      linux-um@lists.infradead.org
18525 S:      Maintained
18526 W:      http://user-mode-linux.sourceforge.net
18527 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
18528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
18529 F:      Documentation/virt/uml/
18530 F:      arch/um/
18531 F:      arch/x86/um/
18532 F:      fs/hostfs/
18533
18534 USERSPACE COPYIN/COPYOUT (UIOVEC)
18535 M:      Alexander Viro <viro@zeniv.linux.org.uk>
18536 S:      Maintained
18537 F:      include/linux/uio.h
18538 F:      lib/iov_iter.c
18539
18540 USERSPACE DMA BUFFER DRIVER
18541 M:      Gerd Hoffmann <kraxel@redhat.com>
18542 L:      dri-devel@lists.freedesktop.org
18543 S:      Maintained
18544 T:      git git://anongit.freedesktop.org/drm/drm-misc
18545 F:      drivers/dma-buf/udmabuf.c
18546 F:      include/uapi/linux/udmabuf.h
18547
18548 USERSPACE I/O (UIO)
18549 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18550 S:      Maintained
18551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18552 F:      Documentation/driver-api/uio-howto.rst
18553 F:      drivers/uio/
18554 F:      include/linux/uio_driver.h
18555
18556 UTIL-LINUX PACKAGE
18557 M:      Karel Zak <kzak@redhat.com>
18558 L:      util-linux@vger.kernel.org
18559 S:      Maintained
18560 W:      http://en.wikipedia.org/wiki/Util-linux
18561 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
18562
18563 UUID HELPERS
18564 M:      Christoph Hellwig <hch@lst.de>
18565 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18566 L:      linux-kernel@vger.kernel.org
18567 S:      Maintained
18568 T:      git git://git.infradead.org/users/hch/uuid.git
18569 F:      include/linux/uuid.h
18570 F:      include/uapi/linux/uuid.h
18571 F:      lib/test_uuid.c
18572 F:      lib/uuid.c
18573
18574 UV SYSFS DRIVER
18575 M:      Justin Ernst <justin.ernst@hpe.com>
18576 L:      platform-driver-x86@vger.kernel.org
18577 S:      Maintained
18578 F:      drivers/platform/x86/uv_sysfs.c
18579
18580 UVESAFB DRIVER
18581 M:      Michal Januszewski <spock@gentoo.org>
18582 L:      linux-fbdev@vger.kernel.org
18583 S:      Maintained
18584 W:      https://github.com/mjanusz/v86d
18585 F:      Documentation/fb/uvesafb.rst
18586 F:      drivers/video/fbdev/uvesafb.*
18587
18588 Ux500 CLOCK DRIVERS
18589 M:      Ulf Hansson <ulf.hansson@linaro.org>
18590 L:      linux-clk@vger.kernel.org
18591 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18592 S:      Maintained
18593 F:      drivers/clk/ux500/
18594
18595 VF610 NAND DRIVER
18596 M:      Stefan Agner <stefan@agner.ch>
18597 L:      linux-mtd@lists.infradead.org
18598 S:      Supported
18599 F:      drivers/mtd/nand/raw/vf610_nfc.c
18600
18601 VFAT/FAT/MSDOS FILESYSTEM
18602 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
18603 S:      Maintained
18604 F:      Documentation/filesystems/vfat.rst
18605 F:      fs/fat/
18606
18607 VFIO DRIVER
18608 M:      Alex Williamson <alex.williamson@redhat.com>
18609 R:      Cornelia Huck <cohuck@redhat.com>
18610 L:      kvm@vger.kernel.org
18611 S:      Maintained
18612 T:      git git://github.com/awilliam/linux-vfio.git
18613 F:      Documentation/driver-api/vfio.rst
18614 F:      drivers/vfio/
18615 F:      include/linux/vfio.h
18616 F:      include/uapi/linux/vfio.h
18617
18618 VFIO FSL-MC DRIVER
18619 M:      Diana Craciun <diana.craciun@oss.nxp.com>
18620 L:      kvm@vger.kernel.org
18621 S:      Maintained
18622 F:      drivers/vfio/fsl-mc/
18623
18624 VFIO MEDIATED DEVICE DRIVERS
18625 M:      Kirti Wankhede <kwankhede@nvidia.com>
18626 L:      kvm@vger.kernel.org
18627 S:      Maintained
18628 F:      Documentation/driver-api/vfio-mediated-device.rst
18629 F:      drivers/vfio/mdev/
18630 F:      include/linux/mdev.h
18631 F:      samples/vfio-mdev/
18632
18633 VFIO PLATFORM DRIVER
18634 M:      Eric Auger <eric.auger@redhat.com>
18635 L:      kvm@vger.kernel.org
18636 S:      Maintained
18637 F:      drivers/vfio/platform/
18638
18639 VGA_SWITCHEROO
18640 R:      Lukas Wunner <lukas@wunner.de>
18641 S:      Maintained
18642 T:      git git://anongit.freedesktop.org/drm/drm-misc
18643 F:      Documentation/gpu/vga-switcheroo.rst
18644 F:      drivers/gpu/vga/vga_switcheroo.c
18645 F:      include/linux/vga_switcheroo.h
18646
18647 VIA RHINE NETWORK DRIVER
18648 S:      Maintained
18649 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
18650 F:      drivers/net/ethernet/via/via-rhine.c
18651
18652 VIA SD/MMC CARD CONTROLLER DRIVER
18653 M:      Bruce Chang <brucechang@via.com.tw>
18654 M:      Harald Welte <HaraldWelte@viatech.com>
18655 S:      Maintained
18656 F:      drivers/mmc/host/via-sdmmc.c
18657
18658 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
18659 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
18660 L:      linux-fbdev@vger.kernel.org
18661 S:      Maintained
18662 F:      drivers/video/fbdev/via/
18663 F:      include/linux/via-core.h
18664 F:      include/linux/via-gpio.h
18665 F:      include/linux/via_i2c.h
18666
18667 VIA VELOCITY NETWORK DRIVER
18668 M:      Francois Romieu <romieu@fr.zoreil.com>
18669 L:      netdev@vger.kernel.org
18670 S:      Maintained
18671 F:      drivers/net/ethernet/via/via-velocity.*
18672
18673 VICODEC VIRTUAL CODEC DRIVER
18674 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
18675 L:      linux-media@vger.kernel.org
18676 S:      Maintained
18677 W:      https://linuxtv.org
18678 T:      git git://linuxtv.org/media_tree.git
18679 F:      drivers/media/test-drivers/vicodec/*
18680
18681 VIDEO I2C POLLING DRIVER
18682 M:      Matt Ranostay <matt.ranostay@konsulko.com>
18683 L:      linux-media@vger.kernel.org
18684 S:      Maintained
18685 F:      drivers/media/i2c/video-i2c.c
18686
18687 VIDEO MULTIPLEXER DRIVER
18688 M:      Philipp Zabel <p.zabel@pengutronix.de>
18689 L:      linux-media@vger.kernel.org
18690 S:      Maintained
18691 F:      drivers/media/platform/video-mux.c
18692
18693 VIDEOBUF2 FRAMEWORK
18694 M:      Tomasz Figa <tfiga@chromium.org>
18695 M:      Marek Szyprowski <m.szyprowski@samsung.com>
18696 L:      linux-media@vger.kernel.org
18697 S:      Maintained
18698 F:      drivers/media/common/videobuf2/*
18699 F:      include/media/videobuf2-*
18700
18701 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
18702 M:      Helen Koike <helen.koike@collabora.com>
18703 R:      Shuah Khan <skhan@linuxfoundation.org>
18704 L:      linux-media@vger.kernel.org
18705 S:      Maintained
18706 W:      https://linuxtv.org
18707 T:      git git://linuxtv.org/media_tree.git
18708 F:      drivers/media/test-drivers/vimc/*
18709
18710 VIRT LIB
18711 M:      Alex Williamson <alex.williamson@redhat.com>
18712 M:      Paolo Bonzini <pbonzini@redhat.com>
18713 L:      kvm@vger.kernel.org
18714 S:      Supported
18715 F:      virt/lib/
18716
18717 VIRTIO AND VHOST VSOCK DRIVER
18718 M:      Stefan Hajnoczi <stefanha@redhat.com>
18719 M:      Stefano Garzarella <sgarzare@redhat.com>
18720 L:      kvm@vger.kernel.org
18721 L:      virtualization@lists.linux-foundation.org
18722 L:      netdev@vger.kernel.org
18723 S:      Maintained
18724 F:      drivers/net/vsockmon.c
18725 F:      drivers/vhost/vsock.c
18726 F:      include/linux/virtio_vsock.h
18727 F:      include/uapi/linux/virtio_vsock.h
18728 F:      include/uapi/linux/vm_sockets_diag.h
18729 F:      include/uapi/linux/vsockmon.h
18730 F:      net/vmw_vsock/af_vsock_tap.c
18731 F:      net/vmw_vsock/diag.c
18732 F:      net/vmw_vsock/virtio_transport.c
18733 F:      net/vmw_vsock/virtio_transport_common.c
18734 F:      net/vmw_vsock/vsock_loopback.c
18735 F:      tools/testing/vsock/
18736
18737 VIRTIO BLOCK AND SCSI DRIVERS
18738 M:      "Michael S. Tsirkin" <mst@redhat.com>
18739 M:      Jason Wang <jasowang@redhat.com>
18740 R:      Paolo Bonzini <pbonzini@redhat.com>
18741 R:      Stefan Hajnoczi <stefanha@redhat.com>
18742 L:      virtualization@lists.linux-foundation.org
18743 S:      Maintained
18744 F:      drivers/block/virtio_blk.c
18745 F:      drivers/scsi/virtio_scsi.c
18746 F:      drivers/vhost/scsi.c
18747 F:      include/uapi/linux/virtio_blk.h
18748 F:      include/uapi/linux/virtio_scsi.h
18749
18750 VIRTIO CONSOLE DRIVER
18751 M:      Amit Shah <amit@kernel.org>
18752 L:      virtualization@lists.linux-foundation.org
18753 S:      Maintained
18754 F:      drivers/char/virtio_console.c
18755 F:      include/linux/virtio_console.h
18756 F:      include/uapi/linux/virtio_console.h
18757
18758 VIRTIO CORE AND NET DRIVERS
18759 M:      "Michael S. Tsirkin" <mst@redhat.com>
18760 M:      Jason Wang <jasowang@redhat.com>
18761 L:      virtualization@lists.linux-foundation.org
18762 S:      Maintained
18763 F:      Documentation/devicetree/bindings/virtio/
18764 F:      drivers/block/virtio_blk.c
18765 F:      drivers/crypto/virtio/
18766 F:      drivers/net/virtio_net.c
18767 F:      drivers/vdpa/
18768 F:      drivers/virtio/
18769 F:      include/linux/vdpa.h
18770 F:      include/linux/virtio*.h
18771 F:      include/uapi/linux/virtio_*.h
18772 F:      tools/virtio/
18773
18774 VIRTIO BALLOON
18775 M:      "Michael S. Tsirkin" <mst@redhat.com>
18776 M:      David Hildenbrand <david@redhat.com>
18777 L:      virtualization@lists.linux-foundation.org
18778 S:      Maintained
18779 F:      drivers/virtio/virtio_balloon.c
18780 F:      include/uapi/linux/virtio_balloon.h
18781 F:      include/linux/balloon_compaction.h
18782 F:      mm/balloon_compaction.c
18783
18784 VIRTIO CRYPTO DRIVER
18785 M:      Gonglei <arei.gonglei@huawei.com>
18786 L:      virtualization@lists.linux-foundation.org
18787 L:      linux-crypto@vger.kernel.org
18788 S:      Maintained
18789 F:      drivers/crypto/virtio/
18790 F:      include/uapi/linux/virtio_crypto.h
18791
18792 VIRTIO DRIVERS FOR S390
18793 M:      Cornelia Huck <cohuck@redhat.com>
18794 M:      Halil Pasic <pasic@linux.ibm.com>
18795 L:      linux-s390@vger.kernel.org
18796 L:      virtualization@lists.linux-foundation.org
18797 L:      kvm@vger.kernel.org
18798 S:      Supported
18799 F:      arch/s390/include/uapi/asm/virtio-ccw.h
18800 F:      drivers/s390/virtio/
18801
18802 VIRTIO FILE SYSTEM
18803 M:      Vivek Goyal <vgoyal@redhat.com>
18804 M:      Stefan Hajnoczi <stefanha@redhat.com>
18805 M:      Miklos Szeredi <miklos@szeredi.hu>
18806 L:      virtualization@lists.linux-foundation.org
18807 L:      linux-fsdevel@vger.kernel.org
18808 S:      Supported
18809 W:      https://virtio-fs.gitlab.io/
18810 F:      Documentation/filesystems/virtiofs.rst
18811 F:      fs/fuse/virtio_fs.c
18812 F:      include/uapi/linux/virtio_fs.h
18813
18814 VIRTIO GPU DRIVER
18815 M:      David Airlie <airlied@linux.ie>
18816 M:      Gerd Hoffmann <kraxel@redhat.com>
18817 L:      dri-devel@lists.freedesktop.org
18818 L:      virtualization@lists.linux-foundation.org
18819 S:      Maintained
18820 T:      git git://anongit.freedesktop.org/drm/drm-misc
18821 F:      drivers/gpu/drm/virtio/
18822 F:      include/uapi/linux/virtio_gpu.h
18823
18824 VIRTIO HOST (VHOST)
18825 M:      "Michael S. Tsirkin" <mst@redhat.com>
18826 M:      Jason Wang <jasowang@redhat.com>
18827 L:      kvm@vger.kernel.org
18828 L:      virtualization@lists.linux-foundation.org
18829 L:      netdev@vger.kernel.org
18830 S:      Maintained
18831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
18832 F:      drivers/vhost/
18833 F:      include/linux/vhost_iotlb.h
18834 F:      include/uapi/linux/vhost.h
18835
18836 VIRTIO INPUT DRIVER
18837 M:      Gerd Hoffmann <kraxel@redhat.com>
18838 S:      Maintained
18839 F:      drivers/virtio/virtio_input.c
18840 F:      include/uapi/linux/virtio_input.h
18841
18842 VIRTIO IOMMU DRIVER
18843 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
18844 L:      virtualization@lists.linux-foundation.org
18845 S:      Maintained
18846 F:      drivers/iommu/virtio-iommu.c
18847 F:      include/uapi/linux/virtio_iommu.h
18848
18849 VIRTIO MEM DRIVER
18850 M:      David Hildenbrand <david@redhat.com>
18851 L:      virtualization@lists.linux-foundation.org
18852 S:      Maintained
18853 W:      https://virtio-mem.gitlab.io/
18854 F:      drivers/virtio/virtio_mem.c
18855 F:      include/uapi/linux/virtio_mem.h
18856
18857 VIRTUAL BOX GUEST DEVICE DRIVER
18858 M:      Hans de Goede <hdegoede@redhat.com>
18859 M:      Arnd Bergmann <arnd@arndb.de>
18860 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18861 S:      Maintained
18862 F:      drivers/virt/vboxguest/
18863 F:      include/linux/vbox_utils.h
18864 F:      include/uapi/linux/vbox*.h
18865
18866 VIRTUAL BOX SHARED FOLDER VFS DRIVER
18867 M:      Hans de Goede <hdegoede@redhat.com>
18868 L:      linux-fsdevel@vger.kernel.org
18869 S:      Maintained
18870 F:      fs/vboxsf/*
18871
18872 VIRTUAL SERIO DEVICE DRIVER
18873 M:      Stephen Chandler Paul <thatslyude@gmail.com>
18874 S:      Maintained
18875 F:      drivers/input/serio/userio.c
18876 F:      include/uapi/linux/userio.h
18877
18878 VIVID VIRTUAL VIDEO DRIVER
18879 M:      Hans Verkuil <hverkuil@xs4all.nl>
18880 L:      linux-media@vger.kernel.org
18881 S:      Maintained
18882 W:      https://linuxtv.org
18883 T:      git git://linuxtv.org/media_tree.git
18884 F:      drivers/media/test-drivers/vivid/*
18885
18886 VIDTV VIRTUAL DIGITAL TV DRIVER
18887 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
18888 L:      linux-media@vger.kernel.org
18889 S:      Maintained
18890 W:      https://linuxtv.org
18891 T:      git git://linuxtv.org/media_tree.git
18892 F:      drivers/media/test-drivers/vidtv/*
18893
18894 VLYNQ BUS
18895 M:      Florian Fainelli <f.fainelli@gmail.com>
18896 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
18897 S:      Maintained
18898 F:      drivers/vlynq/vlynq.c
18899 F:      include/linux/vlynq.h
18900
18901 VME SUBSYSTEM
18902 M:      Martyn Welch <martyn@welchs.me.uk>
18903 M:      Manohar Vanga <manohar.vanga@gmail.com>
18904 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18905 L:      devel@driverdev.osuosl.org
18906 S:      Maintained
18907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18908 F:      Documentation/driver-api/vme.rst
18909 F:      drivers/staging/vme/
18910 F:      drivers/vme/
18911 F:      include/linux/vme*
18912
18913 VMWARE BALLOON DRIVER
18914 M:      Nadav Amit <namit@vmware.com>
18915 M:      "VMware, Inc." <pv-drivers@vmware.com>
18916 L:      linux-kernel@vger.kernel.org
18917 S:      Maintained
18918 F:      drivers/misc/vmw_balloon.c
18919
18920 VMWARE HYPERVISOR INTERFACE
18921 M:      Deep Shah <sdeep@vmware.com>
18922 M:      "VMware, Inc." <pv-drivers@vmware.com>
18923 L:      virtualization@lists.linux-foundation.org
18924 S:      Supported
18925 F:      arch/x86/include/asm/vmware.h
18926 F:      arch/x86/kernel/cpu/vmware.c
18927
18928 VMWARE PVRDMA DRIVER
18929 M:      Adit Ranadive <aditr@vmware.com>
18930 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18931 L:      linux-rdma@vger.kernel.org
18932 S:      Maintained
18933 F:      drivers/infiniband/hw/vmw_pvrdma/
18934
18935 VMware PVSCSI driver
18936 M:      Jim Gill <jgill@vmware.com>
18937 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18938 L:      linux-scsi@vger.kernel.org
18939 S:      Maintained
18940 F:      drivers/scsi/vmw_pvscsi.c
18941 F:      drivers/scsi/vmw_pvscsi.h
18942
18943 VMWARE VIRTUAL PTP CLOCK DRIVER
18944 M:      Vivek Thampi <vithampi@vmware.com>
18945 M:      "VMware, Inc." <pv-drivers@vmware.com>
18946 L:      netdev@vger.kernel.org
18947 S:      Supported
18948 F:      drivers/ptp/ptp_vmw.c
18949
18950 VMWARE VMMOUSE SUBDRIVER
18951 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
18952 M:      "VMware, Inc." <pv-drivers@vmware.com>
18953 L:      linux-input@vger.kernel.org
18954 S:      Maintained
18955 F:      drivers/input/mouse/vmmouse.c
18956 F:      drivers/input/mouse/vmmouse.h
18957
18958 VMWARE VMXNET3 ETHERNET DRIVER
18959 M:      Ronak Doshi <doshir@vmware.com>
18960 M:      "VMware, Inc." <pv-drivers@vmware.com>
18961 L:      netdev@vger.kernel.org
18962 S:      Maintained
18963 F:      drivers/net/vmxnet3/
18964
18965 VOCORE VOCORE2 BOARD
18966 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
18967 L:      linux-mips@vger.kernel.org
18968 S:      Maintained
18969 F:      arch/mips/boot/dts/ralink/vocore2.dts
18970
18971 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18972 M:      Liam Girdwood <lgirdwood@gmail.com>
18973 M:      Mark Brown <broonie@kernel.org>
18974 L:      linux-kernel@vger.kernel.org
18975 S:      Supported
18976 W:      http://www.slimlogic.co.uk/?p=48
18977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18978 F:      Documentation/devicetree/bindings/regulator/
18979 F:      Documentation/power/regulator/
18980 F:      drivers/regulator/
18981 F:      include/dt-bindings/regulator/
18982 F:      include/linux/regulator/
18983 K:      regulator_get_optional
18984
18985 VRF
18986 M:      David Ahern <dsahern@kernel.org>
18987 M:      Shrijeet Mukherjee <shrijeet@gmail.com>
18988 L:      netdev@vger.kernel.org
18989 S:      Maintained
18990 F:      Documentation/networking/vrf.rst
18991 F:      drivers/net/vrf.c
18992
18993 VSPRINTF
18994 M:      Petr Mladek <pmladek@suse.com>
18995 M:      Steven Rostedt <rostedt@goodmis.org>
18996 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
18997 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18998 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
18999 S:      Maintained
19000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
19001 F:      Documentation/core-api/printk-formats.rst
19002 F:      lib/test_printf.c
19003 F:      lib/vsprintf.c
19004
19005 VT1211 HARDWARE MONITOR DRIVER
19006 M:      Juerg Haefliger <juergh@gmail.com>
19007 L:      linux-hwmon@vger.kernel.org
19008 S:      Maintained
19009 F:      Documentation/hwmon/vt1211.rst
19010 F:      drivers/hwmon/vt1211.c
19011
19012 VT8231 HARDWARE MONITOR DRIVER
19013 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
19014 L:      linux-hwmon@vger.kernel.org
19015 S:      Maintained
19016 F:      drivers/hwmon/vt8231.c
19017
19018 VUB300 USB to SDIO/SD/MMC bridge chip
19019 L:      linux-mmc@vger.kernel.org
19020 S:      Orphan
19021 F:      drivers/mmc/host/vub300.c
19022
19023 W1 DALLAS'S 1-WIRE BUS
19024 M:      Evgeniy Polyakov <zbr@ioremap.net>
19025 S:      Maintained
19026 F:      Documentation/devicetree/bindings/w1/
19027 F:      Documentation/w1/
19028 F:      drivers/w1/
19029 F:      include/linux/w1.h
19030
19031 W83791D HARDWARE MONITORING DRIVER
19032 M:      Marc Hulsman <m.hulsman@tudelft.nl>
19033 L:      linux-hwmon@vger.kernel.org
19034 S:      Maintained
19035 F:      Documentation/hwmon/w83791d.rst
19036 F:      drivers/hwmon/w83791d.c
19037
19038 W83793 HARDWARE MONITORING DRIVER
19039 M:      Rudolf Marek <r.marek@assembler.cz>
19040 L:      linux-hwmon@vger.kernel.org
19041 S:      Maintained
19042 F:      Documentation/hwmon/w83793.rst
19043 F:      drivers/hwmon/w83793.c
19044
19045 W83795 HARDWARE MONITORING DRIVER
19046 M:      Jean Delvare <jdelvare@suse.com>
19047 L:      linux-hwmon@vger.kernel.org
19048 S:      Maintained
19049 F:      drivers/hwmon/w83795.c
19050
19051 W83L51xD SD/MMC CARD INTERFACE DRIVER
19052 M:      Pierre Ossman <pierre@ossman.eu>
19053 S:      Maintained
19054 F:      drivers/mmc/host/wbsd.*
19055
19056 WACOM PROTOCOL 4 SERIAL TABLETS
19057 M:      Julian Squires <julian@cipht.net>
19058 M:      Hans de Goede <hdegoede@redhat.com>
19059 L:      linux-input@vger.kernel.org
19060 S:      Maintained
19061 F:      drivers/input/tablet/wacom_serial4.c
19062
19063 WATCHDOG DEVICE DRIVERS
19064 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
19065 M:      Guenter Roeck <linux@roeck-us.net>
19066 L:      linux-watchdog@vger.kernel.org
19067 S:      Maintained
19068 W:      http://www.linux-watchdog.org/
19069 T:      git git://www.linux-watchdog.org/linux-watchdog.git
19070 F:      Documentation/devicetree/bindings/watchdog/
19071 F:      Documentation/watchdog/
19072 F:      drivers/watchdog/
19073 F:      include/linux/watchdog.h
19074 F:      include/uapi/linux/watchdog.h
19075
19076 WHISKEYCOVE PMIC GPIO DRIVER
19077 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
19078 L:      linux-gpio@vger.kernel.org
19079 S:      Maintained
19080 F:      drivers/gpio/gpio-wcove.c
19081
19082 WHWAVE RTC DRIVER
19083 M:      Dianlong Li <long17.cool@163.com>
19084 L:      linux-rtc@vger.kernel.org
19085 S:      Maintained
19086 F:      drivers/rtc/rtc-sd3078.c
19087
19088 WIIMOTE HID DRIVER
19089 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19090 L:      linux-input@vger.kernel.org
19091 S:      Maintained
19092 F:      drivers/hid/hid-wiimote*
19093
19094 WILOCITY WIL6210 WIRELESS DRIVER
19095 M:      Maya Erez <merez@codeaurora.org>
19096 L:      linux-wireless@vger.kernel.org
19097 L:      wil6210@qti.qualcomm.com
19098 S:      Supported
19099 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
19100 F:      drivers/net/wireless/ath/wil6210/
19101
19102 WINBOND CIR DRIVER
19103 M:      David Härdeman <david@hardeman.nu>
19104 S:      Maintained
19105 F:      drivers/media/rc/winbond-cir.c
19106
19107 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
19108 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
19109 L:      linux-watchdog@vger.kernel.org
19110 S:      Maintained
19111 F:      drivers/watchdog/ebc-c384_wdt.c
19112
19113 WINSYSTEMS WS16C48 GPIO DRIVER
19114 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
19115 L:      linux-gpio@vger.kernel.org
19116 S:      Maintained
19117 F:      drivers/gpio/gpio-ws16c48.c
19118
19119 WIREGUARD SECURE NETWORK TUNNEL
19120 M:      Jason A. Donenfeld <Jason@zx2c4.com>
19121 L:      wireguard@lists.zx2c4.com
19122 L:      netdev@vger.kernel.org
19123 S:      Maintained
19124 F:      drivers/net/wireguard/
19125 F:      tools/testing/selftests/wireguard/
19126
19127 WISTRON LAPTOP BUTTON DRIVER
19128 M:      Miloslav Trmac <mitr@volny.cz>
19129 S:      Maintained
19130 F:      drivers/input/misc/wistron_btns.c
19131
19132 WL3501 WIRELESS PCMCIA CARD DRIVER
19133 L:      linux-wireless@vger.kernel.org
19134 S:      Odd fixes
19135 F:      drivers/net/wireless/wl3501*
19136
19137 WOLFSON MICROELECTRONICS DRIVERS
19138 L:      patches@opensource.cirrus.com
19139 S:      Supported
19140 W:      https://github.com/CirrusLogic/linux-drivers/wiki
19141 T:      git https://github.com/CirrusLogic/linux-drivers.git
19142 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
19143 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
19144 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
19145 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
19146 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
19147 F:      Documentation/hwmon/wm83??.rst
19148 F:      arch/arm/mach-s3c/mach-crag6410*
19149 F:      drivers/clk/clk-wm83*.c
19150 F:      drivers/extcon/extcon-arizona.c
19151 F:      drivers/gpio/gpio-*wm*.c
19152 F:      drivers/gpio/gpio-arizona.c
19153 F:      drivers/hwmon/wm83??-hwmon.c
19154 F:      drivers/input/misc/wm831x-on.c
19155 F:      drivers/input/touchscreen/wm831x-ts.c
19156 F:      drivers/input/touchscreen/wm97*.c
19157 F:      drivers/leds/leds-wm83*.c
19158 F:      drivers/mfd/arizona*
19159 F:      drivers/mfd/cs47l24*
19160 F:      drivers/mfd/wm*.c
19161 F:      drivers/power/supply/wm83*.c
19162 F:      drivers/regulator/arizona*
19163 F:      drivers/regulator/wm8*.c
19164 F:      drivers/rtc/rtc-wm83*.c
19165 F:      drivers/video/backlight/wm83*_bl.c
19166 F:      drivers/watchdog/wm83*_wdt.c
19167 F:      include/linux/mfd/arizona/
19168 F:      include/linux/mfd/wm831x/
19169 F:      include/linux/mfd/wm8350/
19170 F:      include/linux/mfd/wm8400*
19171 F:      include/linux/regulator/arizona*
19172 F:      include/linux/wm97xx.h
19173 F:      include/sound/wm????.h
19174 F:      sound/soc/codecs/arizona.?
19175 F:      sound/soc/codecs/cs47l24*
19176 F:      sound/soc/codecs/wm*
19177
19178 WORKQUEUE
19179 M:      Tejun Heo <tj@kernel.org>
19180 R:      Lai Jiangshan <jiangshanlai@gmail.com>
19181 S:      Maintained
19182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
19183 F:      Documentation/core-api/workqueue.rst
19184 F:      include/linux/workqueue.h
19185 F:      kernel/workqueue.c
19186
19187 X-POWERS AXP288 PMIC DRIVERS
19188 M:      Hans de Goede <hdegoede@redhat.com>
19189 S:      Maintained
19190 F:      drivers/acpi/pmic/intel_pmic_xpower.c
19191 N:      axp288
19192
19193 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
19194 M:      Chen-Yu Tsai <wens@csie.org>
19195 L:      linux-kernel@vger.kernel.org
19196 S:      Maintained
19197 N:      axp[128]
19198
19199 X.25 STACK
19200 M:      Martin Schiller <ms@dev.tdt.de>
19201 L:      linux-x25@vger.kernel.org
19202 S:      Maintained
19203 F:      Documentation/networking/lapb-module.rst
19204 F:      Documentation/networking/x25*
19205 F:      drivers/net/wan/hdlc_x25.c
19206 F:      drivers/net/wan/lapbether.c
19207 F:      include/*/lapb.h
19208 F:      include/net/x25*
19209 F:      include/uapi/linux/x25.h
19210 F:      net/lapb/
19211 F:      net/x25/
19212
19213 X86 ARCHITECTURE (32-BIT AND 64-BIT)
19214 M:      Thomas Gleixner <tglx@linutronix.de>
19215 M:      Ingo Molnar <mingo@redhat.com>
19216 M:      Borislav Petkov <bp@alien8.de>
19217 M:      x86@kernel.org
19218 R:      "H. Peter Anvin" <hpa@zytor.com>
19219 L:      linux-kernel@vger.kernel.org
19220 S:      Maintained
19221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19222 F:      Documentation/devicetree/bindings/x86/
19223 F:      Documentation/x86/
19224 F:      arch/x86/
19225
19226 X86 ENTRY CODE
19227 M:      Andy Lutomirski <luto@kernel.org>
19228 L:      linux-kernel@vger.kernel.org
19229 S:      Maintained
19230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
19231 F:      arch/x86/entry/
19232
19233 X86 MCE INFRASTRUCTURE
19234 M:      Tony Luck <tony.luck@intel.com>
19235 M:      Borislav Petkov <bp@alien8.de>
19236 L:      linux-edac@vger.kernel.org
19237 S:      Maintained
19238 F:      arch/x86/kernel/cpu/mce/*
19239
19240 X86 MICROCODE UPDATE SUPPORT
19241 M:      Borislav Petkov <bp@alien8.de>
19242 S:      Maintained
19243 F:      arch/x86/kernel/cpu/microcode/*
19244
19245 X86 MM
19246 M:      Dave Hansen <dave.hansen@linux.intel.com>
19247 M:      Andy Lutomirski <luto@kernel.org>
19248 M:      Peter Zijlstra <peterz@infradead.org>
19249 L:      linux-kernel@vger.kernel.org
19250 S:      Maintained
19251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
19252 F:      arch/x86/mm/
19253
19254 X86 PLATFORM DRIVERS
19255 M:      Hans de Goede <hdegoede@redhat.com>
19256 M:      Mark Gross <mgross@linux.intel.com>
19257 L:      platform-driver-x86@vger.kernel.org
19258 S:      Maintained
19259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
19260 F:      drivers/platform/olpc/
19261 F:      drivers/platform/x86/
19262
19263 X86 PLATFORM DRIVERS - ARCH
19264 R:      Darren Hart <dvhart@infradead.org>
19265 R:      Andy Shevchenko <andy@infradead.org>
19266 L:      platform-driver-x86@vger.kernel.org
19267 L:      x86@kernel.org
19268 S:      Maintained
19269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19270 F:      arch/x86/platform
19271
19272 X86 PLATFORM UV HPE SUPERDOME FLEX
19273 M:      Steve Wahl <steve.wahl@hpe.com>
19274 R:      Mike Travis <mike.travis@hpe.com>
19275 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
19276 R:      Russ Anderson <russ.anderson@hpe.com>
19277 S:      Supported
19278 F:      arch/x86/include/asm/uv/
19279 F:      arch/x86/kernel/apic/x2apic_uv_x.c
19280 F:      arch/x86/platform/uv/
19281
19282 X86 VDSO
19283 M:      Andy Lutomirski <luto@kernel.org>
19284 L:      linux-kernel@vger.kernel.org
19285 S:      Maintained
19286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
19287 F:      arch/x86/entry/vdso/
19288
19289 XARRAY
19290 M:      Matthew Wilcox <willy@infradead.org>
19291 L:      linux-fsdevel@vger.kernel.org
19292 S:      Supported
19293 F:      Documentation/core-api/xarray.rst
19294 F:      include/linux/idr.h
19295 F:      include/linux/xarray.h
19296 F:      lib/idr.c
19297 F:      lib/xarray.c
19298 F:      tools/testing/radix-tree
19299
19300 XBOX DVD IR REMOTE
19301 M:      Benjamin Valentin <benpicco@googlemail.com>
19302 S:      Maintained
19303 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
19304 F:      drivers/media/rc/xbox_remote.c
19305
19306 XC2028/3028 TUNER DRIVER
19307 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19308 L:      linux-media@vger.kernel.org
19309 S:      Maintained
19310 W:      https://linuxtv.org
19311 T:      git git://linuxtv.org/media_tree.git
19312 F:      drivers/media/tuners/tuner-xc2028.*
19313
19314 XDP (eXpress Data Path)
19315 M:      Alexei Starovoitov <ast@kernel.org>
19316 M:      Daniel Borkmann <daniel@iogearbox.net>
19317 M:      David S. Miller <davem@davemloft.net>
19318 M:      Jakub Kicinski <kuba@kernel.org>
19319 M:      Jesper Dangaard Brouer <hawk@kernel.org>
19320 M:      John Fastabend <john.fastabend@gmail.com>
19321 L:      netdev@vger.kernel.org
19322 L:      bpf@vger.kernel.org
19323 S:      Supported
19324 F:      include/net/xdp.h
19325 F:      include/net/xdp_priv.h
19326 F:      include/trace/events/xdp.h
19327 F:      kernel/bpf/cpumap.c
19328 F:      kernel/bpf/devmap.c
19329 F:      net/core/xdp.c
19330 F:      samples/bpf/xdp*
19331 F:      tools/testing/selftests/bpf/*xdp*
19332 F:      tools/testing/selftests/bpf/*/*xdp*
19333 F:      drivers/net/ethernet/*/*/*/*/*xdp*
19334 F:      drivers/net/ethernet/*/*/*xdp*
19335 K:      (?:\b|_)xdp(?:\b|_)
19336
19337 XDP SOCKETS (AF_XDP)
19338 M:      Björn Töpel <bjorn.topel@intel.com>
19339 M:      Magnus Karlsson <magnus.karlsson@intel.com>
19340 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
19341 L:      netdev@vger.kernel.org
19342 L:      bpf@vger.kernel.org
19343 S:      Maintained
19344 F:      Documentation/networking/af_xdp.rst
19345 F:      include/net/xdp_sock*
19346 F:      include/net/xsk_buff_pool.h
19347 F:      include/uapi/linux/if_xdp.h
19348 F:      include/uapi/linux/xdp_diag.h
19349 F:      include/net/netns/xdp.h
19350 F:      net/xdp/
19351 F:      samples/bpf/xdpsock*
19352 F:      tools/lib/bpf/xsk*
19353
19354 XEN BLOCK SUBSYSTEM
19355 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19356 M:      Roger Pau Monné <roger.pau@citrix.com>
19357 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19358 S:      Supported
19359 F:      drivers/block/xen*
19360 F:      drivers/block/xen-blkback/*
19361
19362 XEN HYPERVISOR ARM
19363 M:      Stefano Stabellini <sstabellini@kernel.org>
19364 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19365 S:      Maintained
19366 F:      arch/arm/include/asm/xen/
19367 F:      arch/arm/xen/
19368
19369 XEN HYPERVISOR ARM64
19370 M:      Stefano Stabellini <sstabellini@kernel.org>
19371 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19372 S:      Maintained
19373 F:      arch/arm64/include/asm/xen/
19374 F:      arch/arm64/xen/
19375
19376 XEN HYPERVISOR INTERFACE
19377 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
19378 M:      Juergen Gross <jgross@suse.com>
19379 R:      Stefano Stabellini <sstabellini@kernel.org>
19380 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19381 S:      Supported
19382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
19383 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
19384 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
19385 F:      arch/x86/include/asm/pvclock-abi.h
19386 F:      arch/x86/include/asm/xen/
19387 F:      arch/x86/platform/pvh/
19388 F:      arch/x86/xen/
19389 F:      drivers/*/xen-*front.c
19390 F:      drivers/xen/
19391 F:      include/uapi/xen/
19392 F:      include/xen/
19393
19394 XEN NETWORK BACKEND DRIVER
19395 M:      Wei Liu <wei.liu@kernel.org>
19396 M:      Paul Durrant <paul@xen.org>
19397 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19398 L:      netdev@vger.kernel.org
19399 S:      Supported
19400 F:      drivers/net/xen-netback/*
19401
19402 XEN PCI SUBSYSTEM
19403 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19404 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19405 S:      Supported
19406 F:      arch/x86/pci/*xen*
19407 F:      drivers/pci/*xen*
19408
19409 XEN PVSCSI DRIVERS
19410 M:      Juergen Gross <jgross@suse.com>
19411 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19412 L:      linux-scsi@vger.kernel.org
19413 S:      Supported
19414 F:      drivers/scsi/xen-scsifront.c
19415 F:      drivers/xen/xen-scsiback.c
19416 F:      include/xen/interface/io/vscsiif.h
19417
19418 XEN SOUND FRONTEND DRIVER
19419 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
19420 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19421 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19422 S:      Supported
19423 F:      sound/xen/*
19424
19425 XEN SWIOTLB SUBSYSTEM
19426 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19427 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19428 L:      iommu@lists.linux-foundation.org
19429 S:      Supported
19430 F:      arch/x86/xen/*swiotlb*
19431 F:      drivers/xen/*swiotlb*
19432
19433 XFS FILESYSTEM
19434 M:      Darrick J. Wong <darrick.wong@oracle.com>
19435 M:      linux-xfs@vger.kernel.org
19436 L:      linux-xfs@vger.kernel.org
19437 S:      Supported
19438 W:      http://xfs.org/
19439 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
19440 F:      Documentation/ABI/testing/sysfs-fs-xfs
19441 F:      Documentation/admin-guide/xfs.rst
19442 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
19443 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
19444 F:      fs/xfs/
19445 F:      include/uapi/linux/dqblk_xfs.h
19446 F:      include/uapi/linux/fsmap.h
19447
19448 XILINX AXI ETHERNET DRIVER
19449 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
19450 S:      Maintained
19451 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
19452
19453 XILINX CAN DRIVER
19454 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
19455 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
19456 L:      linux-can@vger.kernel.org
19457 S:      Maintained
19458 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
19459 F:      drivers/net/can/xilinx_can.c
19460
19461 XILINX SD-FEC IP CORES
19462 M:      Derek Kiernan <derek.kiernan@xilinx.com>
19463 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
19464 S:      Maintained
19465 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
19466 F:      Documentation/misc-devices/xilinx_sdfec.rst
19467 F:      drivers/misc/Kconfig
19468 F:      drivers/misc/Makefile
19469 F:      drivers/misc/xilinx_sdfec.c
19470 F:      include/uapi/misc/xilinx_sdfec.h
19471
19472 XILINX UARTLITE SERIAL DRIVER
19473 M:      Peter Korsgaard <jacmet@sunsite.dk>
19474 L:      linux-serial@vger.kernel.org
19475 S:      Maintained
19476 F:      drivers/tty/serial/uartlite.c
19477
19478 XILINX VIDEO IP CORES
19479 M:      Hyun Kwon <hyun.kwon@xilinx.com>
19480 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19481 L:      linux-media@vger.kernel.org
19482 S:      Supported
19483 T:      git git://linuxtv.org/media_tree.git
19484 F:      Documentation/devicetree/bindings/media/xilinx/
19485 F:      drivers/media/platform/xilinx/
19486 F:      include/uapi/linux/xilinx-v4l2-controls.h
19487
19488 XILINX ZYNQMP DPDMA DRIVER
19489 M:      Hyun Kwon <hyun.kwon@xilinx.com>
19490 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19491 L:      dmaengine@vger.kernel.org
19492 S:      Supported
19493 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
19494 F:      drivers/dma/xilinx/xilinx_dpdma.c
19495 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
19496
19497 XILINX ZYNQMP PSGTR PHY DRIVER
19498 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
19499 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19500 L:      linux-kernel@vger.kernel.org
19501 S:      Supported
19502 T:      git https://github.com/Xilinx/linux-xlnx.git
19503 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
19504 F:      drivers/phy/xilinx/phy-zynqmp.c
19505
19506 XILLYBUS DRIVER
19507 M:      Eli Billauer <eli.billauer@gmail.com>
19508 L:      linux-kernel@vger.kernel.org
19509 S:      Supported
19510 F:      drivers/char/xillybus/
19511
19512 XLP9XX I2C DRIVER
19513 M:      George Cherian <gcherian@marvell.com>
19514 L:      linux-i2c@vger.kernel.org
19515 S:      Supported
19516 W:      http://www.marvell.com
19517 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
19518 F:      drivers/i2c/busses/i2c-xlp9xx.c
19519
19520 XRA1403 GPIO EXPANDER
19521 M:      Nandor Han <nandor.han@ge.com>
19522 M:      Semi Malinen <semi.malinen@ge.com>
19523 L:      linux-gpio@vger.kernel.org
19524 S:      Maintained
19525 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
19526 F:      drivers/gpio/gpio-xra1403.c
19527
19528 XTENSA XTFPGA PLATFORM SUPPORT
19529 M:      Max Filippov <jcmvbkbc@gmail.com>
19530 L:      linux-xtensa@linux-xtensa.org
19531 S:      Maintained
19532 F:      drivers/spi/spi-xtensa-xtfpga.c
19533 F:      sound/soc/xtensa/xtfpga-i2s.c
19534
19535 YAM DRIVER FOR AX.25
19536 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
19537 L:      linux-hams@vger.kernel.org
19538 S:      Maintained
19539 F:      drivers/net/hamradio/yam*
19540 F:      include/linux/yam.h
19541
19542 YAMA SECURITY MODULE
19543 M:      Kees Cook <keescook@chromium.org>
19544 S:      Supported
19545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
19546 F:      Documentation/admin-guide/LSM/Yama.rst
19547 F:      security/yama/
19548
19549 YEALINK PHONE DRIVER
19550 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
19551 L:      usbb2k-api-dev@nongnu.org
19552 S:      Maintained
19553 F:      Documentation/input/devices/yealink.rst
19554 F:      drivers/input/misc/yealink.*
19555
19556 Z8530 DRIVER FOR AX.25
19557 M:      Joerg Reuter <jreuter@yaina.de>
19558 L:      linux-hams@vger.kernel.org
19559 S:      Maintained
19560 W:      http://yaina.de/jreuter/
19561 W:      http://www.qsl.net/dl1bke/
19562 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
19563 F:      drivers/net/hamradio/*scc.c
19564 F:      drivers/net/hamradio/z8530.h
19565
19566 ZBUD COMPRESSED PAGE ALLOCATOR
19567 M:      Seth Jennings <sjenning@redhat.com>
19568 M:      Dan Streetman <ddstreet@ieee.org>
19569 L:      linux-mm@kvack.org
19570 S:      Maintained
19571 F:      include/linux/zbud.h
19572 F:      mm/zbud.c
19573
19574 ZD1211RW WIRELESS DRIVER
19575 M:      Daniel Drake <dsd@gentoo.org>
19576 M:      Ulrich Kunitz <kune@deine-taler.de>
19577 L:      linux-wireless@vger.kernel.org
19578 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
19579 S:      Maintained
19580 W:      http://zd1211.ath.cx/wiki/DriverRewrite
19581 F:      drivers/net/wireless/zydas/zd1211rw/
19582
19583 ZD1301 MEDIA DRIVER
19584 M:      Antti Palosaari <crope@iki.fi>
19585 L:      linux-media@vger.kernel.org
19586 S:      Maintained
19587 W:      https://linuxtv.org/
19588 W:      http://palosaari.fi/linux/
19589 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19590 F:      drivers/media/usb/dvb-usb-v2/zd1301*
19591
19592 ZD1301_DEMOD MEDIA DRIVER
19593 M:      Antti Palosaari <crope@iki.fi>
19594 L:      linux-media@vger.kernel.org
19595 S:      Maintained
19596 W:      https://linuxtv.org/
19597 W:      http://palosaari.fi/linux/
19598 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19599 F:      drivers/media/dvb-frontends/zd1301_demod*
19600
19601 ZHAOXIN PROCESSOR SUPPORT
19602 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
19603 L:      linux-kernel@vger.kernel.org
19604 S:      Maintained
19605 F:      arch/x86/kernel/cpu/zhaoxin.c
19606
19607 ZONEFS FILESYSTEM
19608 M:      Damien Le Moal <damien.lemoal@wdc.com>
19609 M:      Naohiro Aota <naohiro.aota@wdc.com>
19610 R:      Johannes Thumshirn <jth@kernel.org>
19611 L:      linux-fsdevel@vger.kernel.org
19612 S:      Maintained
19613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
19614 F:      Documentation/filesystems/zonefs.rst
19615 F:      fs/zonefs/
19616
19617 ZPOOL COMPRESSED PAGE STORAGE API
19618 M:      Dan Streetman <ddstreet@ieee.org>
19619 L:      linux-mm@kvack.org
19620 S:      Maintained
19621 F:      include/linux/zpool.h
19622 F:      mm/zpool.c
19623
19624 ZR36067 VIDEO FOR LINUX DRIVER
19625 M:      Corentin Labbe <clabbe@baylibre.com>
19626 L:      mjpeg-users@lists.sourceforge.net
19627 L:      linux-media@vger.kernel.org
19628 S:      Maintained
19629 W:      http://mjpeg.sourceforge.net/driver-zoran/
19630 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19631 F:      Documentation/driver-api/media/drivers/zoran.rst
19632 F:      drivers/staging/media/zoran/
19633
19634 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
19635 M:      Minchan Kim <minchan@kernel.org>
19636 M:      Nitin Gupta <ngupta@vflare.org>
19637 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19638 L:      linux-kernel@vger.kernel.org
19639 S:      Maintained
19640 F:      Documentation/admin-guide/blockdev/zram.rst
19641 F:      drivers/block/zram/
19642
19643 ZS DECSTATION Z85C30 SERIAL DRIVER
19644 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
19645 S:      Maintained
19646 F:      drivers/tty/serial/zs.*
19647
19648 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
19649 M:      Minchan Kim <minchan@kernel.org>
19650 M:      Nitin Gupta <ngupta@vflare.org>
19651 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19652 L:      linux-mm@kvack.org
19653 S:      Maintained
19654 F:      Documentation/vm/zsmalloc.rst
19655 F:      include/linux/zsmalloc.h
19656 F:      mm/zsmalloc.c
19657
19658 ZSWAP COMPRESSED SWAP CACHING
19659 M:      Seth Jennings <sjenning@redhat.com>
19660 M:      Dan Streetman <ddstreet@ieee.org>
19661 M:      Vitaly Wool <vitaly.wool@konsulko.com>
19662 L:      linux-mm@kvack.org
19663 S:      Maintained
19664 F:      mm/zswap.c
19665
19666 THE REST
19667 M:      Linus Torvalds <torvalds@linux-foundation.org>
19668 L:      linux-kernel@vger.kernel.org
19669 S:      Buried alive in reporters
19670 Q:      http://patchwork.kernel.org/project/LKML/list/
19671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
19672 F:      *
19673 F:      */