tools headers UAPI: Sync drm/i915_drm.h with the kernel sources
[linux-2.6-microblaze.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L:      linux-bluetooth@vger.kernel.org
176 L:      linux-wpan@vger.kernel.org
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L:      linux-hams@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <johannes@sipsolutions.net>
190 L:      linux-wireless@vger.kernel.org
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M:      Heiner Kallweit <hkallweit1@gmail.com>
207 M:      nic_swsd@realtek.com
208 L:      netdev@vger.kernel.org
209 S:      Maintained
210 F:      drivers/net/ethernet/realtek/r8169*
211
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
214 L:      linux-serial@vger.kernel.org
215 S:      Maintained
216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F:      drivers/tty/serial/8250*
218 F:      include/linux/serial_8250.h
219
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L:      netdev@vger.kernel.org
222 S:      Orphan / Obsolete
223 F:      drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M:      Eric Van Hensbergen <ericvh@gmail.com>
227 M:      Latchesar Ionkov <lucho@ionkov.net>
228 M:      Dominique Martinet <asmadeus@codewreck.org>
229 L:      v9fs-developer@lists.sourceforge.net
230 S:      Maintained
231 W:      http://swik.net/v9fs
232 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T:      git git://github.com/martinetd/linux.git
235 F:      Documentation/filesystems/9p.rst
236 F:      fs/9p/
237 F:      include/net/9p/
238 F:      include/trace/events/9p.h
239 F:      include/uapi/linux/virtio_9p.h
240 F:      net/9p/
241
242 A8293 MEDIA DRIVER
243 M:      Antti Palosaari <crope@iki.fi>
244 L:      linux-media@vger.kernel.org
245 S:      Maintained
246 W:      https://linuxtv.org
247 W:      http://palosaari.fi/linux/
248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
249 T:      git git://linuxtv.org/anttip/media_tree.git
250 F:      drivers/media/dvb-frontends/a8293*
251
252 AACRAID SCSI RAID DRIVER
253 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
254 L:      linux-scsi@vger.kernel.org
255 S:      Supported
256 W:      http://www.adaptec.com/
257 F:      Documentation/scsi/aacraid.rst
258 F:      drivers/scsi/aacraid/
259
260 ABI/API
261 L:      linux-api@vger.kernel.org
262 F:      include/linux/syscalls.h
263 F:      kernel/sys_ni.c
264
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:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
703 F:      drivers/media/platform/allegro-dvt/
704
705 ALLWINNER A10 CSI DRIVER
706 M:      Maxime Ripard <mripard@kernel.org>
707 L:      linux-media@vger.kernel.org
708 S:      Maintained
709 T:      git git://linuxtv.org/media_tree.git
710 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
711 F:      drivers/media/platform/sunxi/sun4i-csi/
712
713 ALLWINNER CPUFREQ DRIVER
714 M:      Yangtao Li <tiny.windzz@gmail.com>
715 L:      linux-pm@vger.kernel.org
716 S:      Maintained
717 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
718 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
719
720 ALLWINNER CRYPTO DRIVERS
721 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
722 L:      linux-crypto@vger.kernel.org
723 S:      Maintained
724 F:      drivers/crypto/allwinner/
725
726 ALLWINNER THERMAL DRIVER
727 M:      Vasily Khoruzhick <anarsoul@gmail.com>
728 M:      Yangtao Li <tiny.windzz@gmail.com>
729 L:      linux-pm@vger.kernel.org
730 S:      Maintained
731 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
732 F:      drivers/thermal/sun8i_thermal.c
733
734 ALLWINNER VPU DRIVER
735 M:      Maxime Ripard <mripard@kernel.org>
736 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
737 L:      linux-media@vger.kernel.org
738 S:      Maintained
739 F:      drivers/staging/media/sunxi/cedrus/
740
741 ALPHA PORT
742 M:      Richard Henderson <rth@twiddle.net>
743 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
744 M:      Matt Turner <mattst88@gmail.com>
745 L:      linux-alpha@vger.kernel.org
746 S:      Odd Fixes
747 F:      arch/alpha/
748
749 ALPS PS/2 TOUCHPAD DRIVER
750 R:      Pali Rohár <pali@kernel.org>
751 F:      drivers/input/mouse/alps.*
752
753 ALTERA I2C CONTROLLER DRIVER
754 M:      Thor Thayer <thor.thayer@linux.intel.com>
755 S:      Maintained
756 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
757 F:      drivers/i2c/busses/i2c-altera.c
758
759 ALTERA MAILBOX DRIVER
760 M:      Ley Foon Tan <ley.foon.tan@intel.com>
761 S:      Maintained
762 F:      drivers/mailbox/mailbox-altera.c
763
764 ALTERA PIO DRIVER
765 M:      Joyce Ooi <joyce.ooi@intel.com>
766 L:      linux-gpio@vger.kernel.org
767 S:      Maintained
768 F:      drivers/gpio/gpio-altera.c
769
770 ALTERA SYSTEM MANAGER DRIVER
771 M:      Thor Thayer <thor.thayer@linux.intel.com>
772 S:      Maintained
773 F:      drivers/mfd/altera-sysmgr.c
774 F:      include/linux/mfd/altera-sysmgr.h
775
776 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
777 M:      Thor Thayer <thor.thayer@linux.intel.com>
778 S:      Maintained
779 F:      drivers/gpio/gpio-altera-a10sr.c
780 F:      drivers/mfd/altera-a10sr.c
781 F:      drivers/reset/reset-a10sr.c
782 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
783 F:      include/linux/mfd/altera-a10sr.h
784
785 ALTERA TRIPLE SPEED ETHERNET DRIVER
786 M:      Joyce Ooi <joyce.ooi@intel.com>
787 L:      netdev@vger.kernel.org
788 S:      Maintained
789 F:      drivers/net/ethernet/altera/
790
791 ALTERA UART/JTAG UART SERIAL DRIVERS
792 M:      Tobias Klauser <tklauser@distanz.ch>
793 L:      linux-serial@vger.kernel.org
794 S:      Maintained
795 F:      drivers/tty/serial/altera_jtaguart.c
796 F:      drivers/tty/serial/altera_uart.c
797 F:      include/linux/altera_jtaguart.h
798 F:      include/linux/altera_uart.h
799
800 AMAZON ANNAPURNA LABS FIC DRIVER
801 M:      Talel Shenhar <talel@amazon.com>
802 S:      Maintained
803 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
804 F:      drivers/irqchip/irq-al-fic.c
805
806 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
807 M:      Talel Shenhar <talel@amazon.com>
808 M:      Talel Shenhar <talelshenhar@gmail.com>
809 S:      Maintained
810 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
811 F:      drivers/edac/al_mc_edac.c
812
813 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
814 M:      Talel Shenhar <talel@amazon.com>
815 S:      Maintained
816 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
817 F:      drivers/thermal/thermal_mmio.c
818
819 AMAZON ETHERNET DRIVERS
820 M:      Netanel Belgazal <netanel@amazon.com>
821 M:      Arthur Kiyanovski <akiyano@amazon.com>
822 R:      Guy Tzalik <gtzalik@amazon.com>
823 R:      Saeed Bishara <saeedb@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 https://gitlab.freedesktop.org/agd5f/linux.git
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 AMD SENSOR FUSION HUB DRIVER
960 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
961 M:      Sandeep Singh <sandeep.singh@amd.com>
962 L:      linux-input@vger.kernel.org
963 S:      Maintained
964 F:      Documentation/hid/amd-sfh*
965 F:      drivers/hid/amd-sfh-hid/
966
967 AMS AS73211 DRIVER
968 M:      Christian Eggers <ceggers@arri.de>
969 L:      linux-iio@vger.kernel.org
970 S:      Maintained
971 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
972 F:      drivers/iio/light/as73211.c
973
974 ANALOG DEVICES INC AD7192 DRIVER
975 M:      Alexandru Tachici <alexandru.tachici@analog.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,ad7192.yaml
980 F:      drivers/iio/adc/ad7192.c
981
982 ANALOG DEVICES INC AD7292 DRIVER
983 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.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,ad7292.yaml
988 F:      drivers/iio/adc/ad7292.c
989
990 ANALOG DEVICES INC AD7768-1 DRIVER
991 M:      Michael Hennerich <Michael.Hennerich@analog.com>
992 L:      linux-iio@vger.kernel.org
993 S:      Supported
994 W:      http://ez.analog.com/community/linux-device-drivers
995 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
996 F:      drivers/iio/adc/ad7768-1.c
997
998 ANALOG DEVICES INC AD7780 DRIVER
999 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1000 M:      Renato Lui Geh <renatogeh@gmail.com>
1001 L:      linux-iio@vger.kernel.org
1002 S:      Supported
1003 W:      http://ez.analog.com/community/linux-device-drivers
1004 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1005 F:      drivers/iio/adc/ad7780.c
1006
1007 ANALOG DEVICES INC AD9389B DRIVER
1008 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1009 L:      linux-media@vger.kernel.org
1010 S:      Maintained
1011 F:      drivers/media/i2c/ad9389b*
1012
1013 ANALOG DEVICES INC ADGS1408 DRIVER
1014 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1015 S:      Supported
1016 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1017 F:      drivers/mux/adgs1408.c
1018
1019 ANALOG DEVICES INC ADIN DRIVER
1020 M:      Alexandru Ardelean <alexaundru.ardelean@analog.com>
1021 L:      netdev@vger.kernel.org
1022 S:      Supported
1023 W:      http://ez.analog.com/community/linux-device-drivers
1024 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1025 F:      drivers/net/phy/adin.c
1026
1027 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1028 M:      Alexandru Ardelean <alexandru.ardelean@analog.com>
1029 L:      linux-iio@vger.kernel.org
1030 S:      Supported
1031 F:      drivers/iio/imu/adis.c
1032 F:      include/linux/iio/imu/adis.h
1033
1034 ANALOG DEVICES INC ADIS16460 DRIVER
1035 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1036 L:      linux-iio@vger.kernel.org
1037 S:      Supported
1038 W:      http://ez.analog.com/community/linux-device-drivers
1039 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1040 F:      drivers/iio/imu/adis16460.c
1041
1042 ANALOG DEVICES INC ADIS16475 DRIVER
1043 M:      Nuno Sa <nuno.sa@analog.com>
1044 L:      linux-iio@vger.kernel.org
1045 W:      http://ez.analog.com/community/linux-device-drivers
1046 S:      Supported
1047 F:      drivers/iio/imu/adis16475.c
1048 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1049
1050 ANALOG DEVICES INC ADM1177 DRIVER
1051 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1052 L:      linux-hwmon@vger.kernel.org
1053 S:      Supported
1054 W:      http://ez.analog.com/community/linux-device-drivers
1055 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1056 F:      drivers/hwmon/adm1177.c
1057
1058 ANALOG DEVICES INC ADP5061 DRIVER
1059 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1060 L:      linux-pm@vger.kernel.org
1061 S:      Supported
1062 W:      http://ez.analog.com/community/linux-device-drivers
1063 F:      drivers/power/supply/adp5061.c
1064
1065 ANALOG DEVICES INC ADV7180 DRIVER
1066 M:      Lars-Peter Clausen <lars@metafoo.de>
1067 L:      linux-media@vger.kernel.org
1068 S:      Supported
1069 W:      http://ez.analog.com/community/linux-device-drivers
1070 F:      drivers/media/i2c/adv7180.c
1071 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1072
1073 ANALOG DEVICES INC ADV748X DRIVER
1074 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1075 L:      linux-media@vger.kernel.org
1076 S:      Maintained
1077 F:      drivers/media/i2c/adv748x/*
1078
1079 ANALOG DEVICES INC ADV7511 DRIVER
1080 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1081 L:      linux-media@vger.kernel.org
1082 S:      Maintained
1083 F:      drivers/media/i2c/adv7511*
1084
1085 ANALOG DEVICES INC ADV7604 DRIVER
1086 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1087 L:      linux-media@vger.kernel.org
1088 S:      Maintained
1089 F:      drivers/media/i2c/adv7604*
1090 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1091
1092 ANALOG DEVICES INC ADV7842 DRIVER
1093 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1094 L:      linux-media@vger.kernel.org
1095 S:      Maintained
1096 F:      drivers/media/i2c/adv7842*
1097
1098 ANALOG DEVICES INC ADXRS290 DRIVER
1099 M:      Nishant Malpani <nish.malpani25@gmail.com>
1100 L:      linux-iio@vger.kernel.org
1101 S:      Supported
1102 F:      drivers/iio/gyro/adxrs290.c
1103 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1104
1105 ANALOG DEVICES INC ASOC CODEC DRIVERS
1106 M:      Lars-Peter Clausen <lars@metafoo.de>
1107 M:      Nuno Sá <nuno.sa@analog.com>
1108 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1109 S:      Supported
1110 W:      http://wiki.analog.com/
1111 W:      http://ez.analog.com/community/linux-device-drivers
1112 F:      sound/soc/codecs/ad1*
1113 F:      sound/soc/codecs/ad7*
1114 F:      sound/soc/codecs/adau*
1115 F:      sound/soc/codecs/adav*
1116 F:      sound/soc/codecs/sigmadsp.*
1117 F:      sound/soc/codecs/ssm*
1118
1119 ANALOG DEVICES INC DMA DRIVERS
1120 M:      Lars-Peter Clausen <lars@metafoo.de>
1121 S:      Supported
1122 W:      http://ez.analog.com/community/linux-device-drivers
1123 F:      drivers/dma/dma-axi-dmac.c
1124
1125 ANALOG DEVICES INC IIO DRIVERS
1126 M:      Lars-Peter Clausen <lars@metafoo.de>
1127 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1128 S:      Supported
1129 W:      http://wiki.analog.com/
1130 W:      http://ez.analog.com/community/linux-device-drivers
1131 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1132 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1133 F:      Documentation/devicetree/bindings/iio/*/adi,*
1134 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
1135 F:      drivers/iio/*/ad*
1136 F:      drivers/iio/adc/ltc249*
1137 F:      drivers/iio/amplifiers/hmc425a.c
1138 F:      drivers/staging/iio/*/ad*
1139 X:      drivers/iio/*/adjd*
1140
1141 ANALOGBITS PLL LIBRARIES
1142 M:      Paul Walmsley <paul.walmsley@sifive.com>
1143 S:      Supported
1144 F:      drivers/clk/analogbits/*
1145 F:      include/linux/clk/analogbits*
1146
1147 ANDES ARCHITECTURE
1148 M:      Nick Hu <nickhu@andestech.com>
1149 M:      Greentime Hu <green.hu@gmail.com>
1150 M:      Vincent Chen <deanbo422@gmail.com>
1151 S:      Supported
1152 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1153 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1154 F:      Documentation/devicetree/bindings/nds32/
1155 F:      arch/nds32/
1156 N:      nds32
1157 K:      nds32
1158
1159 ANDROID CONFIG FRAGMENTS
1160 M:      Rob Herring <robh@kernel.org>
1161 S:      Supported
1162 F:      kernel/configs/android*
1163
1164 ANDROID DRIVERS
1165 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1166 M:      Arve Hjønnevåg <arve@android.com>
1167 M:      Todd Kjos <tkjos@android.com>
1168 M:      Martijn Coenen <maco@android.com>
1169 M:      Joel Fernandes <joel@joelfernandes.org>
1170 M:      Christian Brauner <christian@brauner.io>
1171 M:      Hridya Valsaraju <hridya@google.com>
1172 M:      Suren Baghdasaryan <surenb@google.com>
1173 L:      devel@driverdev.osuosl.org
1174 S:      Supported
1175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1176 F:      drivers/android/
1177 F:      drivers/staging/android/
1178
1179 ANDROID GOLDFISH PIC DRIVER
1180 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1181 S:      Supported
1182 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1183 F:      drivers/irqchip/irq-goldfish-pic.c
1184
1185 ANDROID GOLDFISH RTC DRIVER
1186 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1187 S:      Supported
1188 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1189 F:      drivers/rtc/rtc-goldfish.c
1190
1191 AOA (Apple Onboard Audio) ALSA DRIVER
1192 M:      Johannes Berg <johannes@sipsolutions.net>
1193 L:      linuxppc-dev@lists.ozlabs.org
1194 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1195 S:      Maintained
1196 F:      sound/aoa/
1197
1198 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1199 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1200 L:      linux-iio@vger.kernel.org
1201 S:      Maintained
1202 F:      drivers/iio/adc/stx104.c
1203
1204 APM DRIVER
1205 M:      Jiri Kosina <jikos@kernel.org>
1206 S:      Odd fixes
1207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1208 F:      arch/x86/kernel/apm_32.c
1209 F:      drivers/char/apm-emulation.c
1210 F:      include/linux/apm_bios.h
1211 F:      include/uapi/linux/apm_bios.h
1212
1213 APPARMOR SECURITY MODULE
1214 M:      John Johansen <john.johansen@canonical.com>
1215 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1216 S:      Supported
1217 W:      wiki.apparmor.net
1218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1219 F:      Documentation/admin-guide/LSM/apparmor.rst
1220 F:      security/apparmor/
1221
1222 APPLE BCM5974 MULTITOUCH DRIVER
1223 M:      Henrik Rydberg <rydberg@bitmath.org>
1224 L:      linux-input@vger.kernel.org
1225 S:      Odd fixes
1226 F:      drivers/input/mouse/bcm5974.c
1227
1228 APPLE SMC DRIVER
1229 M:      Henrik Rydberg <rydberg@bitmath.org>
1230 L:      linux-hwmon@vger.kernel.org
1231 S:      Odd fixes
1232 F:      drivers/hwmon/applesmc.c
1233
1234 APPLETALK NETWORK LAYER
1235 L:      netdev@vger.kernel.org
1236 S:      Odd fixes
1237 F:      drivers/net/appletalk/
1238 F:      include/linux/atalk.h
1239 F:      include/uapi/linux/atalk.h
1240 F:      net/appletalk/
1241
1242 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1243 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1244 S:      Supported
1245 F:      arch/arm64/boot/dts/apm/
1246
1247 APPLIED MICRO (APM) X-GENE SOC EDAC
1248 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1249 S:      Supported
1250 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1251 F:      drivers/edac/xgene_edac.c
1252
1253 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1254 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1255 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1256 S:      Supported
1257 F:      drivers/net/ethernet/apm/xgene-v2/
1258
1259 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1260 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1261 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1262 M:      Quan Nguyen <quan@os.amperecomputing.com>
1263 S:      Supported
1264 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1265 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1266 F:      drivers/net/ethernet/apm/xgene/
1267 F:      drivers/net/mdio/mdio-xgene.c
1268
1269 APPLIED MICRO (APM) X-GENE SOC PMU
1270 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1271 S:      Supported
1272 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1273 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1274 F:      drivers/perf/xgene_pmu.c
1275
1276 APTINA CAMERA SENSOR PLL
1277 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1278 L:      linux-media@vger.kernel.org
1279 S:      Maintained
1280 F:      drivers/media/i2c/aptina-pll.*
1281
1282 AQUANTIA ETHERNET DRIVER (atlantic)
1283 M:      Igor Russkikh <irusskikh@marvell.com>
1284 L:      netdev@vger.kernel.org
1285 S:      Supported
1286 W:      https://www.marvell.com/
1287 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1288 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1289 F:      drivers/net/ethernet/aquantia/atlantic/
1290
1291 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1292 M:      Egor Pomozov <epomozov@marvell.com>
1293 L:      netdev@vger.kernel.org
1294 S:      Supported
1295 W:      http://www.aquantia.com
1296 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1297
1298 ARASAN NAND CONTROLLER DRIVER
1299 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1300 L:      linux-mtd@lists.infradead.org
1301 S:      Maintained
1302 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1303 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1304
1305 ARC FRAMEBUFFER DRIVER
1306 M:      Jaya Kumar <jayalk@intworks.biz>
1307 S:      Maintained
1308 F:      drivers/video/fbdev/arcfb.c
1309 F:      drivers/video/fbdev/core/fb_defio.c
1310
1311 ARC PGU DRM DRIVER
1312 M:      Alexey Brodkin <abrodkin@synopsys.com>
1313 S:      Supported
1314 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1315 F:      drivers/gpu/drm/arc/
1316
1317 ARCNET NETWORK LAYER
1318 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1319 L:      netdev@vger.kernel.org
1320 S:      Maintained
1321 F:      drivers/net/arcnet/
1322 F:      include/uapi/linux/if_arcnet.h
1323
1324 ARM ARCHITECTED TIMER DRIVER
1325 M:      Mark Rutland <mark.rutland@arm.com>
1326 M:      Marc Zyngier <maz@kernel.org>
1327 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1328 S:      Maintained
1329 F:      arch/arm/include/asm/arch_timer.h
1330 F:      arch/arm64/include/asm/arch_timer.h
1331 F:      drivers/clocksource/arm_arch_timer.c
1332
1333 ARM HDLCD DRM DRIVER
1334 M:      Liviu Dudau <liviu.dudau@arm.com>
1335 S:      Supported
1336 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1337 F:      drivers/gpu/drm/arm/hdlcd_*
1338
1339 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1340 M:      Linus Walleij <linus.walleij@linaro.org>
1341 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1342 S:      Maintained
1343 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1344 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1345 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1346 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1347 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1348 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1349 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1350 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1351 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1352 F:      arch/arm/boot/dts/arm-realview-*
1353 F:      arch/arm/boot/dts/integrator*
1354 F:      arch/arm/boot/dts/versatile*
1355 F:      arch/arm/mach-integrator/
1356 F:      arch/arm/mach-realview/
1357 F:      arch/arm/mach-versatile/
1358 F:      arch/arm/plat-versatile/
1359 F:      drivers/bus/arm-integrator-lm.c
1360 F:      drivers/clk/versatile/
1361 F:      drivers/i2c/busses/i2c-versatile.c
1362 F:      drivers/irqchip/irq-versatile-fpga.c
1363 F:      drivers/mtd/maps/physmap-versatile.*
1364 F:      drivers/power/reset/arm-versatile-reboot.c
1365 F:      drivers/soc/versatile/
1366
1367 ARM KOMEDA DRM-KMS DRIVER
1368 M:      James (Qian) Wang <james.qian.wang@arm.com>
1369 M:      Liviu Dudau <liviu.dudau@arm.com>
1370 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1371 L:      Mali DP Maintainers <malidp@foss.arm.com>
1372 S:      Supported
1373 T:      git git://anongit.freedesktop.org/drm/drm-misc
1374 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1375 F:      Documentation/gpu/komeda-kms.rst
1376 F:      drivers/gpu/drm/arm/display/include/
1377 F:      drivers/gpu/drm/arm/display/komeda/
1378
1379 ARM MALI PANFROST DRM DRIVER
1380 M:      Rob Herring <robh@kernel.org>
1381 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1382 R:      Steven Price <steven.price@arm.com>
1383 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1384 L:      dri-devel@lists.freedesktop.org
1385 S:      Supported
1386 T:      git git://anongit.freedesktop.org/drm/drm-misc
1387 F:      drivers/gpu/drm/panfrost/
1388 F:      include/uapi/drm/panfrost_drm.h
1389
1390 ARM MALI-DP DRM DRIVER
1391 M:      Liviu Dudau <liviu.dudau@arm.com>
1392 M:      Brian Starkey <brian.starkey@arm.com>
1393 L:      Mali DP Maintainers <malidp@foss.arm.com>
1394 S:      Supported
1395 T:      git git://anongit.freedesktop.org/drm/drm-misc
1396 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1397 F:      Documentation/gpu/afbc.rst
1398 F:      drivers/gpu/drm/arm/
1399
1400 ARM MFM AND FLOPPY DRIVERS
1401 M:      Ian Molton <spyro@f2s.com>
1402 S:      Maintained
1403 F:      arch/arm/include/asm/floppy.h
1404 F:      arch/arm/mach-rpc/floppydma.S
1405
1406 ARM PMU PROFILING AND DEBUGGING
1407 M:      Will Deacon <will@kernel.org>
1408 M:      Mark Rutland <mark.rutland@arm.com>
1409 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1410 S:      Maintained
1411 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1412 F:      Documentation/devicetree/bindings/perf/
1413 F:      arch/arm*/include/asm/hw_breakpoint.h
1414 F:      arch/arm*/include/asm/perf_event.h
1415 F:      arch/arm*/kernel/hw_breakpoint.c
1416 F:      arch/arm*/kernel/perf_*
1417 F:      drivers/perf/
1418 F:      include/linux/perf/arm_pmu.h
1419
1420 ARM PORT
1421 M:      Russell King <linux@armlinux.org.uk>
1422 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1423 S:      Odd Fixes
1424 W:      http://www.armlinux.org.uk/
1425 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1426 F:      arch/arm/
1427 X:      arch/arm/boot/dts/
1428
1429 ARM PRIMECELL AACI PL041 DRIVER
1430 M:      Russell King <linux@armlinux.org.uk>
1431 S:      Odd Fixes
1432 F:      sound/arm/aaci.*
1433
1434 ARM PRIMECELL BUS SUPPORT
1435 M:      Russell King <linux@armlinux.org.uk>
1436 S:      Odd Fixes
1437 F:      drivers/amba/
1438 F:      include/linux/amba/bus.h
1439
1440 ARM PRIMECELL CLCD PL110 DRIVER
1441 M:      Russell King <linux@armlinux.org.uk>
1442 S:      Odd Fixes
1443 F:      drivers/video/fbdev/amba-clcd.*
1444
1445 ARM PRIMECELL KMI PL050 DRIVER
1446 M:      Russell King <linux@armlinux.org.uk>
1447 S:      Odd Fixes
1448 F:      drivers/input/serio/ambakmi.*
1449 F:      include/linux/amba/kmi.h
1450
1451 ARM PRIMECELL MMCI PL180/1 DRIVER
1452 M:      Russell King <linux@armlinux.org.uk>
1453 S:      Odd Fixes
1454 F:      drivers/mmc/host/mmci.*
1455 F:      include/linux/amba/mmci.h
1456
1457 ARM PRIMECELL SSP PL022 SPI DRIVER
1458 M:      Linus Walleij <linus.walleij@linaro.org>
1459 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1460 S:      Maintained
1461 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1462 F:      drivers/spi/spi-pl022.c
1463
1464 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1465 M:      Russell King <linux@armlinux.org.uk>
1466 S:      Odd Fixes
1467 F:      drivers/tty/serial/amba-pl01*.c
1468 F:      include/linux/amba/serial.h
1469
1470 ARM PRIMECELL VIC PL190/PL192 DRIVER
1471 M:      Linus Walleij <linus.walleij@linaro.org>
1472 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1473 S:      Maintained
1474 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1475 F:      drivers/irqchip/irq-vic.c
1476
1477 ARM SMC WATCHDOG DRIVER
1478 M:      Julius Werner <jwerner@chromium.org>
1479 R:      Evan Benn <evanbenn@chromium.org>
1480 S:      Maintained
1481 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1482 F:      drivers/watchdog/arm_smc_wdt.c
1483
1484 ARM SMMU DRIVERS
1485 M:      Will Deacon <will@kernel.org>
1486 R:      Robin Murphy <robin.murphy@arm.com>
1487 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1488 S:      Maintained
1489 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1490 F:      drivers/iommu/arm/
1491 F:      drivers/iommu/io-pgtable-arm*
1492
1493 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1494 M:      Arnd Bergmann <arnd@arndb.de>
1495 M:      Olof Johansson <olof@lixom.net>
1496 M:      soc@kernel.org
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/boot/dts/Makefile
1501 F:      arch/arm64/boot/dts/Makefile
1502
1503 ARM SUB-ARCHITECTURES
1504 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1505 S:      Maintained
1506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1507 F:      arch/arm/mach-*/
1508 F:      arch/arm/plat-*/
1509
1510 ARM/ACTIONS SEMI ARCHITECTURE
1511 M:      Andreas Färber <afaerber@suse.de>
1512 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1513 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1514 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1515 S:      Maintained
1516 F:      Documentation/devicetree/bindings/arm/actions.yaml
1517 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1518 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1519 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1520 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1521 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1522 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1523 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1524 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1525 F:      arch/arm/boot/dts/owl-*
1526 F:      arch/arm/mach-actions/
1527 F:      arch/arm64/boot/dts/actions/
1528 F:      drivers/clk/actions/
1529 F:      drivers/clocksource/timer-owl*
1530 F:      drivers/dma/owl-dma.c
1531 F:      drivers/i2c/busses/i2c-owl.c
1532 F:      drivers/irqchip/irq-owl-sirq.c
1533 F:      drivers/mmc/host/owl-mmc.c
1534 F:      drivers/pinctrl/actions/*
1535 F:      drivers/soc/actions/
1536 F:      include/dt-bindings/power/owl-*
1537 F:      include/dt-bindings/reset/actions,*
1538 F:      include/linux/soc/actions/
1539 N:      owl
1540
1541 ARM/ADS SPHERE MACHINE SUPPORT
1542 M:      Lennert Buytenhek <kernel@wantstofly.org>
1543 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1544 S:      Maintained
1545
1546 ARM/AFEB9260 MACHINE SUPPORT
1547 M:      Sergey Lapin <slapin@ossfans.org>
1548 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1549 S:      Maintained
1550
1551 ARM/AJECO 1ARM MACHINE SUPPORT
1552 M:      Lennert Buytenhek <kernel@wantstofly.org>
1553 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1554 S:      Maintained
1555
1556 ARM/Allwinner SoC Clock Support
1557 M:      Emilio López <emilio@elopez.com.ar>
1558 S:      Maintained
1559 F:      drivers/clk/sunxi/
1560
1561 ARM/Allwinner sunXi SoC support
1562 M:      Maxime Ripard <mripard@kernel.org>
1563 M:      Chen-Yu Tsai <wens@csie.org>
1564 R:      Jernej Skrabec <jernej.skrabec@siol.net>
1565 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1566 S:      Maintained
1567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1568 F:      arch/arm/mach-sunxi/
1569 F:      arch/arm64/boot/dts/allwinner/
1570 F:      drivers/clk/sunxi-ng/
1571 F:      drivers/pinctrl/sunxi/
1572 F:      drivers/soc/sunxi/
1573 N:      sun[x456789]i
1574 N:      sun50i
1575
1576 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1577 M:      Neil Armstrong <narmstrong@baylibre.com>
1578 M:      Jerome Brunet <jbrunet@baylibre.com>
1579 L:      linux-amlogic@lists.infradead.org
1580 S:      Maintained
1581 F:      Documentation/devicetree/bindings/clock/amlogic*
1582 F:      drivers/clk/meson/
1583 F:      include/dt-bindings/clock/gxbb*
1584 F:      include/dt-bindings/clock/meson*
1585
1586 ARM/Amlogic Meson SoC Crypto Drivers
1587 M:      Corentin Labbe <clabbe@baylibre.com>
1588 L:      linux-crypto@vger.kernel.org
1589 L:      linux-amlogic@lists.infradead.org
1590 S:      Maintained
1591 F:      Documentation/devicetree/bindings/crypto/amlogic*
1592 F:      drivers/crypto/amlogic/
1593
1594 ARM/Amlogic Meson SoC Sound Drivers
1595 M:      Jerome Brunet <jbrunet@baylibre.com>
1596 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1597 S:      Maintained
1598 F:      Documentation/devicetree/bindings/sound/amlogic*
1599 F:      sound/soc/meson/
1600
1601 ARM/Amlogic Meson SoC support
1602 M:      Kevin Hilman <khilman@baylibre.com>
1603 R:      Neil Armstrong <narmstrong@baylibre.com>
1604 R:      Jerome Brunet <jbrunet@baylibre.com>
1605 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1606 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1607 L:      linux-amlogic@lists.infradead.org
1608 S:      Maintained
1609 W:      http://linux-meson.com/
1610 F:      arch/arm/boot/dts/meson*
1611 F:      arch/arm/mach-meson/
1612 F:      arch/arm64/boot/dts/amlogic/
1613 F:      drivers/mmc/host/meson*
1614 F:      drivers/pinctrl/meson/
1615 F:      drivers/rtc/rtc-meson*
1616 F:      drivers/soc/amlogic/
1617 N:      meson
1618
1619 ARM/Annapurna Labs ALPINE ARCHITECTURE
1620 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1621 M:      Antoine Tenart <atenart@kernel.org>
1622 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1623 S:      Maintained
1624 F:      arch/arm/boot/dts/alpine*
1625 F:      arch/arm/mach-alpine/
1626 F:      arch/arm64/boot/dts/amazon/
1627 F:      drivers/*/*alpine*
1628
1629 ARM/ARTPEC MACHINE SUPPORT
1630 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1631 M:      Lars Persson <lars.persson@axis.com>
1632 L:      linux-arm-kernel@axis.com
1633 S:      Maintained
1634 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1635 F:      arch/arm/boot/dts/artpec6*
1636 F:      arch/arm/mach-artpec
1637 F:      drivers/clk/axis
1638 F:      drivers/crypto/axis
1639 F:      drivers/mmc/host/usdhi6rol0.c
1640 F:      drivers/pinctrl/pinctrl-artpec*
1641
1642 ARM/ASPEED I2C DRIVER
1643 M:      Brendan Higgins <brendanhiggins@google.com>
1644 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1645 R:      Joel Stanley <joel@jms.id.au>
1646 L:      linux-i2c@vger.kernel.org
1647 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1648 S:      Maintained
1649 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1650 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1651 F:      drivers/i2c/busses/i2c-aspeed.c
1652 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1653
1654 ARM/ASPEED MACHINE SUPPORT
1655 M:      Joel Stanley <joel@jms.id.au>
1656 R:      Andrew Jeffery <andrew@aj.id.au>
1657 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1658 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1659 S:      Supported
1660 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1662 F:      arch/arm/boot/dts/aspeed-*
1663 F:      arch/arm/mach-aspeed/
1664 N:      aspeed
1665
1666 ARM/BITMAIN ARCHITECTURE
1667 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1668 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1669 S:      Maintained
1670 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1671 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1672 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1673 F:      arch/arm64/boot/dts/bitmain/
1674 F:      drivers/clk/clk-bm1880.c
1675 F:      drivers/pinctrl/pinctrl-bm1880.c
1676
1677 ARM/CALXEDA HIGHBANK ARCHITECTURE
1678 M:      Andre Przywara <andre.przywara@arm.com>
1679 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1680 S:      Maintained
1681 F:      arch/arm/boot/dts/ecx-*.dts*
1682 F:      arch/arm/boot/dts/highbank.dts
1683 F:      arch/arm/mach-highbank/
1684
1685 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1686 M:      Krzysztof Halasa <khalasa@piap.pl>
1687 S:      Maintained
1688 F:      arch/arm/mach-cns3xxx/
1689
1690 ARM/CAVIUM THUNDER NETWORK DRIVER
1691 M:      Sunil Goutham <sgoutham@marvell.com>
1692 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1693 S:      Supported
1694 F:      drivers/net/ethernet/cavium/thunder/
1695
1696 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1697 M:      Lukasz Majewski <lukma@denx.de>
1698 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1699 S:      Maintained
1700 F:      arch/arm/mach-ep93xx/ts72xx.c
1701
1702 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1703 M:      Alexander Shiyan <shc_work@mail.ru>
1704 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1705 S:      Odd Fixes
1706 N:      clps711x
1707
1708 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1709 M:      Lennert Buytenhek <kernel@wantstofly.org>
1710 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1711 S:      Maintained
1712
1713 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1714 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1715 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1716 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1717 S:      Maintained
1718 F:      arch/arm/mach-ep93xx/
1719 F:      arch/arm/mach-ep93xx/include/mach/
1720
1721 ARM/CLKDEV SUPPORT
1722 M:      Russell King <linux@armlinux.org.uk>
1723 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1724 S:      Maintained
1725 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1726 F:      drivers/clk/clkdev.c
1727
1728 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1729 M:      Baruch Siach <baruch@tkos.co.il>
1730 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1731 S:      Maintained
1732 F:      arch/arm/boot/dts/cx92755*
1733 N:      digicolor
1734
1735 ARM/CONTEC MICRO9 MACHINE SUPPORT
1736 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1737 S:      Maintained
1738 F:      arch/arm/mach-ep93xx/micro9.c
1739
1740 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1741 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1742 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1743 R:      Mike Leach <mike.leach@linaro.org>
1744 R:      Leo Yan <leo.yan@linaro.org>
1745 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1746 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1747 S:      Maintained
1748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1749 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1750 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1751 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1752 F:      Documentation/devicetree/bindings/arm/coresight.txt
1753 F:      Documentation/trace/coresight/*
1754 F:      drivers/hwtracing/coresight/*
1755 F:      include/dt-bindings/arm/coresight-cti-dt.h
1756 F:      tools/perf/arch/arm/util/auxtrace.c
1757 F:      tools/perf/arch/arm/util/cs-etm.c
1758 F:      tools/perf/arch/arm/util/cs-etm.h
1759 F:      tools/perf/arch/arm/util/pmu.c
1760 F:      tools/perf/util/cs-etm-decoder/*
1761 F:      tools/perf/util/cs-etm.*
1762
1763 ARM/CORGI MACHINE SUPPORT
1764 M:      Richard Purdie <rpurdie@rpsys.net>
1765 S:      Maintained
1766
1767 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1768 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1769 M:      Linus Walleij <linus.walleij@linaro.org>
1770 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1771 S:      Maintained
1772 T:      git git://github.com/ulli-kroll/linux.git
1773 F:      Documentation/devicetree/bindings/arm/gemini.txt
1774 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1775 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1776 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1777 F:      arch/arm/mach-gemini/
1778 F:      drivers/net/ethernet/cortina/
1779 F:      drivers/pinctrl/pinctrl-gemini.c
1780 F:      drivers/rtc/rtc-ftrtc010.c
1781
1782 ARM/CZ.NIC TURRIS MOX SUPPORT
1783 M:      Marek Behun <marek.behun@nic.cz>
1784 S:      Maintained
1785 W:      http://mox.turris.cz
1786 F:      Documentation/ABI/testing/debugfs-moxtet
1787 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1788 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1789 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1790 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1791 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1792 F:      drivers/bus/moxtet.c
1793 F:      drivers/firmware/turris-mox-rwtm.c
1794 F:      drivers/gpio/gpio-moxtet.c
1795 F:      include/linux/moxtet.h
1796
1797 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1798 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1799 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1800 S:      Maintained
1801 F:      arch/arm/mach-pxa/ezx.c
1802
1803 ARM/FARADAY FA526 PORT
1804 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1805 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1806 S:      Maintained
1807 T:      git git://git.berlios.de/gemini-board
1808 F:      arch/arm/mm/*-fa*
1809
1810 ARM/FOOTBRIDGE ARCHITECTURE
1811 M:      Russell King <linux@armlinux.org.uk>
1812 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1813 S:      Maintained
1814 W:      http://www.armlinux.org.uk/
1815 F:      arch/arm/include/asm/hardware/dec21285.h
1816 F:      arch/arm/mach-footbridge/
1817
1818 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1819 M:      Shawn Guo <shawnguo@kernel.org>
1820 M:      Sascha Hauer <s.hauer@pengutronix.de>
1821 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1822 R:      Fabio Estevam <festevam@gmail.com>
1823 R:      NXP Linux Team <linux-imx@nxp.com>
1824 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1825 S:      Maintained
1826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1827 X:      drivers/media/i2c/
1828 N:      imx
1829 N:      mxs
1830
1831 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1832 M:      Shawn Guo <shawnguo@kernel.org>
1833 M:      Li Yang <leoyang.li@nxp.com>
1834 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1835 S:      Maintained
1836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1837 F:      arch/arm/boot/dts/ls1021a*
1838 F:      arch/arm64/boot/dts/freescale/fsl-*
1839 F:      arch/arm64/boot/dts/freescale/qoriq-*
1840
1841 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1842 M:      Shawn Guo <shawnguo@kernel.org>
1843 M:      Sascha Hauer <s.hauer@pengutronix.de>
1844 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1845 R:      Stefan Agner <stefan@agner.ch>
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/vf*
1850 F:      arch/arm/mach-imx/*vf610*
1851
1852 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1853 M:      Lennert Buytenhek <kernel@wantstofly.org>
1854 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1855 S:      Maintained
1856
1857 ARM/GUMSTIX MACHINE SUPPORT
1858 M:      Steve Sakoman <sakoman@gmail.com>
1859 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1860 S:      Maintained
1861
1862 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1863 M:      Philipp Zabel <philipp.zabel@gmail.com>
1864 M:      Paul Parsons <lost.distance@yahoo.com>
1865 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1866 S:      Maintained
1867 F:      arch/arm/mach-pxa/hx4700.c
1868 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1869 F:      sound/soc/pxa/hx4700.c
1870
1871 ARM/HISILICON SOC SUPPORT
1872 M:      Wei Xu <xuwei5@hisilicon.com>
1873 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1874 S:      Supported
1875 W:      http://www.hisilicon.com
1876 T:      git git://github.com/hisilicon/linux-hisi.git
1877 F:      arch/arm/boot/dts/hi3*
1878 F:      arch/arm/boot/dts/hip*
1879 F:      arch/arm/boot/dts/hisi*
1880 F:      arch/arm/mach-hisi/
1881 F:      arch/arm64/boot/dts/hisilicon/
1882
1883 ARM/HP JORNADA 7XX MACHINE SUPPORT
1884 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1885 S:      Maintained
1886 W:      www.jlime.com
1887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1888 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1889 F:      arch/arm/mach-sa1100/jornada720.c
1890
1891 ARM/IGEP MACHINE SUPPORT
1892 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1893 M:      Javier Martinez Canillas <javier@dowhile0.org>
1894 L:      linux-omap@vger.kernel.org
1895 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1896 S:      Maintained
1897 F:      arch/arm/boot/dts/omap3-igep*
1898
1899 ARM/INCOME PXA270 SUPPORT
1900 M:      Marek Vasut <marek.vasut@gmail.com>
1901 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1902 S:      Maintained
1903 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1904
1905 ARM/INTEL IOP32X ARM ARCHITECTURE
1906 M:      Lennert Buytenhek <kernel@wantstofly.org>
1907 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1908 S:      Maintained
1909
1910 ARM/INTEL IQ81342EX MACHINE SUPPORT
1911 M:      Lennert Buytenhek <kernel@wantstofly.org>
1912 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1913 S:      Maintained
1914
1915 ARM/INTEL IXDP2850 MACHINE SUPPORT
1916 M:      Lennert Buytenhek <kernel@wantstofly.org>
1917 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1918 S:      Maintained
1919
1920 ARM/INTEL IXP4XX ARM ARCHITECTURE
1921 M:      Linus Walleij <linusw@kernel.org>
1922 M:      Imre Kaloz <kaloz@openwrt.org>
1923 M:      Krzysztof Halasa <khalasa@piap.pl>
1924 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1925 S:      Maintained
1926 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1927 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1928 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1929 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1930 F:      arch/arm/mach-ixp4xx/
1931 F:      drivers/clocksource/timer-ixp4xx.c
1932 F:      drivers/gpio/gpio-ixp4xx.c
1933 F:      drivers/irqchip/irq-ixp4xx.c
1934 F:      include/linux/irqchip/irq-ixp4xx.h
1935 F:      include/linux/platform_data/timer-ixp4xx.h
1936
1937 ARM/INTEL KEEMBAY ARCHITECTURE
1938 M:      Paul J. Murphy <paul.j.murphy@intel.com>
1939 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
1940 S:      Maintained
1941 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
1942 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
1943 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
1944
1945 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1946 M:      Jonathan Cameron <jic23@cam.ac.uk>
1947 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1948 S:      Maintained
1949 F:      arch/arm/mach-pxa/stargate2.c
1950 F:      drivers/pcmcia/pxa2xx_stargate2.c
1951
1952 ARM/INTEL XSC3 (MANZANO) ARM CORE
1953 M:      Lennert Buytenhek <kernel@wantstofly.org>
1954 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1955 S:      Maintained
1956
1957 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1958 M:      Lennert Buytenhek <kernel@wantstofly.org>
1959 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1960 S:      Maintained
1961
1962 ARM/LG1K ARCHITECTURE
1963 M:      Chanho Min <chanho.min@lge.com>
1964 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1965 S:      Maintained
1966 F:      arch/arm64/boot/dts/lg/
1967
1968 ARM/LOGICPD PXA270 MACHINE SUPPORT
1969 M:      Lennert Buytenhek <kernel@wantstofly.org>
1970 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1971 S:      Maintained
1972
1973 ARM/LPC18XX ARCHITECTURE
1974 M:      Vladimir Zapolskiy <vz@mleia.com>
1975 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1976 S:      Maintained
1977 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1978 F:      arch/arm/boot/dts/lpc43*
1979 F:      drivers/i2c/busses/i2c-lpc2k.c
1980 F:      drivers/memory/pl172.c
1981 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
1982 F:      drivers/rtc/rtc-lpc24xx.c
1983 N:      lpc18xx
1984
1985 ARM/LPC32XX SOC SUPPORT
1986 M:      Vladimir Zapolskiy <vz@mleia.com>
1987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1988 S:      Maintained
1989 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1990 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
1991 F:      arch/arm/boot/dts/lpc32*
1992 F:      arch/arm/mach-lpc32xx/
1993 F:      drivers/i2c/busses/i2c-pnx.c
1994 F:      drivers/net/ethernet/nxp/lpc_eth.c
1995 F:      drivers/usb/host/ohci-nxp.c
1996 F:      drivers/watchdog/pnx4008_wdt.c
1997 N:      lpc32xx
1998
1999 ARM/MAGICIAN MACHINE SUPPORT
2000 M:      Philipp Zabel <philipp.zabel@gmail.com>
2001 S:      Maintained
2002
2003 ARM/Marvell Dove/MV78xx0/Orion SOC support
2004 M:      Andrew Lunn <andrew@lunn.ch>
2005 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2006 M:      Gregory Clement <gregory.clement@bootlin.com>
2007 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2008 S:      Maintained
2009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2010 F:      Documentation/devicetree/bindings/soc/dove/
2011 F:      arch/arm/boot/dts/dove*
2012 F:      arch/arm/boot/dts/orion5x*
2013 F:      arch/arm/mach-dove/
2014 F:      arch/arm/mach-mv78xx0/
2015 F:      arch/arm/mach-orion5x/
2016 F:      arch/arm/plat-orion/
2017 F:      drivers/soc/dove/
2018
2019 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2020 M:      Andrew Lunn <andrew@lunn.ch>
2021 M:      Gregory Clement <gregory.clement@bootlin.com>
2022 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2023 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2024 S:      Maintained
2025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2026 F:      arch/arm/boot/dts/armada*
2027 F:      arch/arm/boot/dts/kirkwood*
2028 F:      arch/arm/configs/mvebu_*_defconfig
2029 F:      arch/arm/mach-mvebu/
2030 F:      arch/arm64/boot/dts/marvell/armada*
2031 F:      arch/arm64/boot/dts/marvell/cn913*
2032 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2033 F:      drivers/cpufreq/armada-8k-cpufreq.c
2034 F:      drivers/cpufreq/mvebu-cpufreq.c
2035 F:      drivers/irqchip/irq-armada-370-xp.c
2036 F:      drivers/irqchip/irq-mvebu-*
2037 F:      drivers/pinctrl/mvebu/
2038 F:      drivers/rtc/rtc-armada38x.c
2039
2040 ARM/Mediatek RTC DRIVER
2041 M:      Eddie Huang <eddie.huang@mediatek.com>
2042 M:      Sean Wang <sean.wang@mediatek.com>
2043 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2044 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2045 S:      Maintained
2046 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2047 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2048 F:      drivers/rtc/rtc-mt2712.c
2049 F:      drivers/rtc/rtc-mt6397.c
2050 F:      drivers/rtc/rtc-mt7622.c
2051
2052 ARM/Mediatek SoC support
2053 M:      Matthias Brugger <matthias.bgg@gmail.com>
2054 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2055 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2056 S:      Maintained
2057 W:      https://mtk.wiki.kernel.org/
2058 C:      irc://chat.freenode.net/linux-mediatek
2059 F:      arch/arm/boot/dts/mt6*
2060 F:      arch/arm/boot/dts/mt7*
2061 F:      arch/arm/boot/dts/mt8*
2062 F:      arch/arm/mach-mediatek/
2063 F:      arch/arm64/boot/dts/mediatek/
2064 F:      drivers/soc/mediatek/
2065 N:      mtk
2066 N:      mt[678]
2067 K:      mediatek
2068
2069 ARM/Mediatek USB3 PHY DRIVER
2070 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2071 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2072 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2073 S:      Maintained
2074 F:      Documentation/devicetree/bindings/phy/mediatek,*
2075 F:      drivers/phy/mediatek/
2076
2077 ARM/Microchip (AT91) SoC support
2078 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2079 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2080 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2081 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2082 S:      Supported
2083 W:      http://www.linux4sam.org
2084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2085 F:      arch/arm/boot/dts/at91*.dts
2086 F:      arch/arm/boot/dts/at91*.dtsi
2087 F:      arch/arm/boot/dts/sama*.dts
2088 F:      arch/arm/boot/dts/sama*.dtsi
2089 F:      arch/arm/include/debug/at91.S
2090 F:      arch/arm/mach-at91/
2091 F:      drivers/memory/atmel*
2092 F:      drivers/watchdog/sama5d4_wdt.c
2093 F:      include/soc/at91/
2094 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2095 X:      drivers/net/wireless/atmel/
2096 N:      at91
2097 N:      atmel
2098
2099 ARM/Microchip Sparx5 SoC support
2100 M:      Lars Povlsen <lars.povlsen@microchip.com>
2101 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2102 M:      UNGLinuxDriver@microchip.com
2103 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2104 S:      Supported
2105 T:      git git://github.com/microchip-ung/linux-upstream.git
2106 F:      arch/arm64/boot/dts/microchip/
2107 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2108 N:      sparx5
2109
2110 Microchip Timer Counter Block (TCB) Capture Driver
2111 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2112 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2113 L:      linux-iio@vger.kernel.org
2114 S:      Maintained
2115 F:      drivers/counter/microchip-tcb-capture.c
2116
2117 ARM/MIOA701 MACHINE SUPPORT
2118 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2119 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2120 S:      Maintained
2121 F:      arch/arm/mach-pxa/mioa701.c
2122
2123 ARM/MStar/Sigmastar Armv7 SoC support
2124 M:      Daniel Palmer <daniel@thingy.jp>
2125 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2126 S:      Maintained
2127 W:      http://linux-chenxing.org/
2128 F:      Documentation/devicetree/bindings/arm/mstar/*
2129 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2130 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2131 F:      arch/arm/boot/dts/mstar-*
2132 F:      arch/arm/mach-mstar/
2133 F:      drivers/clk/mstar/
2134 F:      drivers/gpio/gpio-msc313.c
2135 F:      include/dt-bindings/clock/mstar-*
2136 F:      include/dt-bindings/gpio/msc313-gpio.h
2137
2138 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2139 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2140 S:      Maintained
2141
2142 ARM/NOMADIK/Ux500 ARCHITECTURES
2143 M:      Linus Walleij <linus.walleij@linaro.org>
2144 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2145 S:      Maintained
2146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2147 F:      Documentation/devicetree/bindings/arm/ste-*
2148 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2149 F:      Documentation/devicetree/bindings/arm/ux500/
2150 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2151 F:      arch/arm/boot/dts/ste-*
2152 F:      arch/arm/mach-nomadik/
2153 F:      arch/arm/mach-ux500/
2154 F:      drivers/clk/clk-nomadik.c
2155 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2156 F:      drivers/dma/ste_dma40*
2157 F:      drivers/hwspinlock/u8500_hsem.c
2158 F:      drivers/i2c/busses/i2c-nomadik.c
2159 F:      drivers/iio/adc/ab8500-gpadc.c
2160 F:      drivers/mfd/ab8500*
2161 F:      drivers/mfd/abx500*
2162 F:      drivers/mfd/db8500*
2163 F:      drivers/mfd/dbx500*
2164 F:      drivers/pinctrl/nomadik/
2165 F:      drivers/rtc/rtc-ab8500.c
2166 F:      drivers/rtc/rtc-pl031.c
2167 F:      drivers/soc/ux500/
2168
2169 ARM/NUVOTON NPCM ARCHITECTURE
2170 M:      Avi Fishman <avifishman70@gmail.com>
2171 M:      Tomer Maimon <tmaimon77@gmail.com>
2172 M:      Tali Perry <tali.perry1@gmail.com>
2173 R:      Patrick Venture <venture@google.com>
2174 R:      Nancy Yuen <yuenn@google.com>
2175 R:      Benjamin Fair <benjaminfair@google.com>
2176 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2177 S:      Supported
2178 F:      Documentation/devicetree/bindings/*/*/*npcm*
2179 F:      Documentation/devicetree/bindings/*/*npcm*
2180 F:      arch/arm/boot/dts/nuvoton-npcm*
2181 F:      arch/arm/mach-npcm/
2182 F:      drivers/*/*npcm*
2183 F:      drivers/*/*/*npcm*
2184 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2185
2186 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2187 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2188 S:      Orphan
2189 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2190 F:      arch/arm/mach-s3c/gta02.h
2191 F:      arch/arm/mach-s3c/mach-gta02.c
2192
2193 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2194 M:      Alexander Clouter <alex@digriz.org.uk>
2195 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2196 S:      Maintained
2197 W:      http://www.digriz.org.uk/ts78xx/kernel
2198 F:      arch/arm/mach-orion5x/ts78xx-*
2199
2200 ARM/OXNAS platform support
2201 M:      Neil Armstrong <narmstrong@baylibre.com>
2202 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2203 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2204 S:      Maintained
2205 F:      arch/arm/boot/dts/ox8*.dts*
2206 F:      arch/arm/mach-oxnas/
2207 F:      drivers/power/reset/oxnas-restart.c
2208 N:      oxnas
2209
2210 ARM/PALM TREO SUPPORT
2211 M:      Tomas Cech <sleep_walker@suse.com>
2212 L:      linux-arm-kernel@lists.infradead.org
2213 S:      Maintained
2214 W:      http://hackndev.com
2215 F:      arch/arm/mach-pxa/palmtreo.*
2216
2217 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2218 M:      Marek Vasut <marek.vasut@gmail.com>
2219 L:      linux-arm-kernel@lists.infradead.org
2220 S:      Maintained
2221 W:      http://hackndev.com
2222 F:      arch/arm/mach-pxa/include/mach/palmld.h
2223 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2224 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2225 F:      arch/arm/mach-pxa/palmld.c
2226 F:      arch/arm/mach-pxa/palmt5.*
2227 F:      arch/arm/mach-pxa/palmtc.c
2228 F:      arch/arm/mach-pxa/palmte2.*
2229 F:      arch/arm/mach-pxa/palmtx.c
2230
2231 ARM/PALMZ72 SUPPORT
2232 M:      Sergey Lapin <slapin@ossfans.org>
2233 L:      linux-arm-kernel@lists.infradead.org
2234 S:      Maintained
2235 W:      http://hackndev.com
2236 F:      arch/arm/mach-pxa/palmz72.*
2237
2238 ARM/PLEB SUPPORT
2239 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2240 S:      Maintained
2241 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2242
2243 ARM/PT DIGITAL BOARD PORT
2244 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2245 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2246 S:      Maintained
2247 W:      http://www.armlinux.org.uk/
2248
2249 ARM/QUALCOMM SUPPORT
2250 M:      Andy Gross <agross@kernel.org>
2251 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2252 L:      linux-arm-msm@vger.kernel.org
2253 S:      Maintained
2254 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2255 F:      Documentation/devicetree/bindings/*/qcom*
2256 F:      Documentation/devicetree/bindings/soc/qcom/
2257 F:      arch/arm/boot/dts/qcom-*.dts
2258 F:      arch/arm/boot/dts/qcom-*.dtsi
2259 F:      arch/arm/mach-qcom/
2260 F:      arch/arm64/boot/dts/qcom/
2261 F:      drivers/*/*/qcom*
2262 F:      drivers/*/*/qcom/
2263 F:      drivers/*/pm8???-*
2264 F:      drivers/*/qcom*
2265 F:      drivers/*/qcom/
2266 F:      drivers/bluetooth/btqcomsmd.c
2267 F:      drivers/clocksource/timer-qcom.c
2268 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2269 F:      drivers/extcon/extcon-qcom*
2270 F:      drivers/i2c/busses/i2c-qcom-geni.c
2271 F:      drivers/i2c/busses/i2c-qup.c
2272 F:      drivers/iommu/msm*
2273 F:      drivers/mfd/ssbi.c
2274 F:      drivers/mmc/host/mmci_qcom*
2275 F:      drivers/mmc/host/sdhci-msm.c
2276 F:      drivers/pci/controller/dwc/pcie-qcom.c
2277 F:      drivers/phy/qualcomm/
2278 F:      drivers/power/*/msm*
2279 F:      drivers/reset/reset-qcom-*
2280 F:      drivers/scsi/ufs/ufs-qcom*
2281 F:      drivers/spi/spi-geni-qcom.c
2282 F:      drivers/spi/spi-qcom-qspi.c
2283 F:      drivers/spi/spi-qup.c
2284 F:      drivers/tty/serial/msm_serial.c
2285 F:      drivers/usb/dwc3/dwc3-qcom.c
2286 F:      include/dt-bindings/*/qcom*
2287 F:      include/linux/*/qcom*
2288
2289 ARM/RADISYS ENP2611 MACHINE SUPPORT
2290 M:      Lennert Buytenhek <kernel@wantstofly.org>
2291 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2292 S:      Maintained
2293
2294 ARM/RDA MICRO ARCHITECTURE
2295 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2296 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2297 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2298 S:      Maintained
2299 F:      Documentation/devicetree/bindings/arm/rda.yaml
2300 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2301 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2302 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2303 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2304 F:      arch/arm/boot/dts/rda8810pl-*
2305 F:      drivers/clocksource/timer-rda.c
2306 F:      drivers/gpio/gpio-rda.c
2307 F:      drivers/irqchip/irq-rda-intc.c
2308 F:      drivers/tty/serial/rda-uart.c
2309
2310 ARM/REALTEK ARCHITECTURE
2311 M:      Andreas Färber <afaerber@suse.de>
2312 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2313 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2314 S:      Maintained
2315 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2316 F:      arch/arm/boot/dts/rtd*
2317 F:      arch/arm/mach-realtek/
2318 F:      arch/arm64/boot/dts/realtek/
2319
2320 ARM/RENESAS ARM64 ARCHITECTURE
2321 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2322 M:      Magnus Damm <magnus.damm@gmail.com>
2323 L:      linux-renesas-soc@vger.kernel.org
2324 S:      Supported
2325 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2327 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2328 F:      arch/arm64/boot/dts/renesas/
2329 F:      drivers/soc/renesas/
2330 F:      include/linux/soc/renesas/
2331
2332 ARM/RISCPC ARCHITECTURE
2333 M:      Russell King <linux@armlinux.org.uk>
2334 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2335 S:      Maintained
2336 W:      http://www.armlinux.org.uk/
2337 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2338 F:      arch/arm/include/asm/hardware/ioc.h
2339 F:      arch/arm/include/asm/hardware/iomd.h
2340 F:      arch/arm/include/asm/hardware/memc.h
2341 F:      arch/arm/mach-rpc/
2342 F:      drivers/net/ethernet/8390/etherh.c
2343 F:      drivers/net/ethernet/i825xx/ether1*
2344 F:      drivers/net/ethernet/seeq/ether3*
2345 F:      drivers/scsi/arm/
2346
2347 ARM/Rockchip SoC support
2348 M:      Heiko Stuebner <heiko@sntech.de>
2349 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2350 L:      linux-rockchip@lists.infradead.org
2351 S:      Maintained
2352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2353 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2354 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2355 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2356 F:      arch/arm/boot/dts/rk3*
2357 F:      arch/arm/boot/dts/rv1108*
2358 F:      arch/arm/mach-rockchip/
2359 F:      drivers/*/*/*rockchip*
2360 F:      drivers/*/*rockchip*
2361 F:      drivers/clk/rockchip/
2362 F:      drivers/i2c/busses/i2c-rk3x.c
2363 F:      sound/soc/rockchip/
2364 N:      rockchip
2365
2366 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2367 M:      Krzysztof Kozlowski <krzk@kernel.org>
2368 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2369 L:      linux-samsung-soc@vger.kernel.org
2370 S:      Maintained
2371 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2372 F:      Documentation/arm/samsung/
2373 F:      Documentation/devicetree/bindings/arm/samsung/
2374 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2375 F:      arch/arm/boot/dts/exynos*
2376 F:      arch/arm/boot/dts/s3c*
2377 F:      arch/arm/boot/dts/s5p*
2378 F:      arch/arm/mach-exynos*/
2379 F:      arch/arm/mach-s3c/
2380 F:      arch/arm/mach-s5p*/
2381 F:      arch/arm64/boot/dts/exynos/
2382 F:      drivers/*/*/*s3c24*
2383 F:      drivers/*/*s3c24*
2384 F:      drivers/*/*s3c64xx*
2385 F:      drivers/*/*s5pv210*
2386 F:      drivers/memory/samsung/
2387 F:      drivers/soc/samsung/
2388 F:      drivers/tty/serial/samsung*
2389 F:      include/linux/platform_data/*s3c*
2390 F:      include/linux/serial_s3c.h
2391 F:      include/linux/soc/samsung/
2392 N:      exynos
2393 N:      s3c2410
2394 N:      s3c64xx
2395 N:      s5pv210
2396
2397 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2398 M:      Andrzej Hajda <a.hajda@samsung.com>
2399 L:      linux-arm-kernel@lists.infradead.org
2400 L:      linux-media@vger.kernel.org
2401 S:      Maintained
2402 F:      drivers/media/platform/s5p-g2d/
2403
2404 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2405 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2406 L:      linux-samsung-soc@vger.kernel.org
2407 L:      linux-media@vger.kernel.org
2408 S:      Maintained
2409 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2410 F:      drivers/media/cec/platform/s5p/
2411
2412 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2413 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2414 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2415 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2416 L:      linux-arm-kernel@lists.infradead.org
2417 L:      linux-media@vger.kernel.org
2418 S:      Maintained
2419 F:      drivers/media/platform/s5p-jpeg/
2420
2421 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2422 M:      Andrzej Hajda <a.hajda@samsung.com>
2423 L:      linux-arm-kernel@lists.infradead.org
2424 L:      linux-media@vger.kernel.org
2425 S:      Maintained
2426 F:      drivers/media/platform/s5p-mfc/
2427
2428 ARM/SHMOBILE ARM ARCHITECTURE
2429 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2430 M:      Magnus Damm <magnus.damm@gmail.com>
2431 L:      linux-renesas-soc@vger.kernel.org
2432 S:      Supported
2433 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2435 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2436 F:      arch/arm/boot/dts/emev2*
2437 F:      arch/arm/boot/dts/gr-peach*
2438 F:      arch/arm/boot/dts/iwg20d-q7*
2439 F:      arch/arm/boot/dts/r7s*
2440 F:      arch/arm/boot/dts/r8a*
2441 F:      arch/arm/boot/dts/r9a*
2442 F:      arch/arm/boot/dts/sh*
2443 F:      arch/arm/configs/shmobile_defconfig
2444 F:      arch/arm/include/debug/renesas-scif.S
2445 F:      arch/arm/mach-shmobile/
2446 F:      drivers/soc/renesas/
2447 F:      include/linux/soc/renesas/
2448
2449 ARM/SOCFPGA ARCHITECTURE
2450 M:      Dinh Nguyen <dinguyen@kernel.org>
2451 S:      Maintained
2452 W:      http://www.rocketboards.org
2453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2454 F:      arch/arm/boot/dts/socfpga*
2455 F:      arch/arm/configs/socfpga_defconfig
2456 F:      arch/arm/mach-socfpga/
2457 F:      arch/arm64/boot/dts/altera/
2458 F:      arch/arm64/boot/dts/intel/
2459
2460 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2461 M:      Dinh Nguyen <dinguyen@kernel.org>
2462 S:      Maintained
2463 F:      drivers/clk/socfpga/
2464
2465 ARM/SOCFPGA EDAC SUPPORT
2466 M:      Dinh Nguyen <dinguyen@kernel.org>
2467 S:      Maintained
2468 F:      drivers/edac/altera_edac.[ch]
2469
2470 ARM/SPREADTRUM SoC SUPPORT
2471 M:      Orson Zhai <orsonzhai@gmail.com>
2472 M:      Baolin Wang <baolin.wang7@gmail.com>
2473 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2474 S:      Maintained
2475 F:      arch/arm64/boot/dts/sprd
2476 N:      sprd
2477 N:      sc27xx
2478 N:      sc2731
2479
2480 ARM/STI ARCHITECTURE
2481 M:      Patrice Chotard <patrice.chotard@st.com>
2482 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2483 S:      Maintained
2484 W:      http://www.stlinux.com
2485 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2486 F:      arch/arm/boot/dts/sti*
2487 F:      arch/arm/mach-sti/
2488 F:      drivers/ata/ahci_st.c
2489 F:      drivers/char/hw_random/st-rng.c
2490 F:      drivers/clocksource/arm_global_timer.c
2491 F:      drivers/clocksource/clksrc_st_lpc.c
2492 F:      drivers/cpufreq/sti-cpufreq.c
2493 F:      drivers/dma/st_fdma*
2494 F:      drivers/i2c/busses/i2c-st.c
2495 F:      drivers/media/platform/sti/c8sectpfe/
2496 F:      drivers/media/rc/st_rc.c
2497 F:      drivers/mmc/host/sdhci-st.c
2498 F:      drivers/phy/st/phy-miphy28lp.c
2499 F:      drivers/phy/st/phy-stih407-usb.c
2500 F:      drivers/pinctrl/pinctrl-st.c
2501 F:      drivers/remoteproc/st_remoteproc.c
2502 F:      drivers/remoteproc/st_slim_rproc.c
2503 F:      drivers/reset/sti/
2504 F:      drivers/rtc/rtc-st-lpc.c
2505 F:      drivers/tty/serial/st-asc.c
2506 F:      drivers/usb/dwc3/dwc3-st.c
2507 F:      drivers/usb/host/ehci-st.c
2508 F:      drivers/usb/host/ohci-st.c
2509 F:      drivers/watchdog/st_lpc_wdt.c
2510 F:      include/linux/remoteproc/st_slim_rproc.h
2511
2512 ARM/STM32 ARCHITECTURE
2513 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2514 M:      Alexandre Torgue <alexandre.torgue@st.com>
2515 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2516 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2517 S:      Maintained
2518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2519 F:      arch/arm/boot/dts/stm32*
2520 F:      arch/arm/mach-stm32/
2521 F:      drivers/clocksource/armv7m_systick.c
2522 N:      stm32
2523 N:      stm
2524
2525 ARM/Synaptics SoC support
2526 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2527 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2528 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2529 S:      Maintained
2530 F:      arch/arm/boot/dts/berlin*
2531 F:      arch/arm/mach-berlin/
2532 F:      arch/arm64/boot/dts/synaptics/
2533
2534 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2535 M:      Lennert Buytenhek <kernel@wantstofly.org>
2536 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2537 S:      Maintained
2538
2539 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2540 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2541 L:      linux-tegra@vger.kernel.org
2542 L:      linux-media@vger.kernel.org
2543 S:      Maintained
2544 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2545 F:      drivers/media/cec/platform/tegra/
2546
2547 ARM/TETON BGA MACHINE SUPPORT
2548 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2549 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2550 S:      Maintained
2551
2552 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2553 M:      Santosh Shilimkar <ssantosh@kernel.org>
2554 L:      linux-kernel@vger.kernel.org
2555 S:      Maintained
2556 F:      drivers/memory/*emif*
2557
2558 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2559 M:      Santosh Shilimkar <ssantosh@kernel.org>
2560 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2561 S:      Maintained
2562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2563 F:      arch/arm/boot/dts/keystone-*
2564 F:      arch/arm/mach-keystone/
2565
2566 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2567 M:      Santosh Shilimkar <ssantosh@kernel.org>
2568 L:      linux-kernel@vger.kernel.org
2569 S:      Maintained
2570 F:      drivers/clk/keystone/
2571
2572 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2573 M:      Santosh Shilimkar <ssantosh@kernel.org>
2574 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2575 L:      linux-kernel@vger.kernel.org
2576 S:      Maintained
2577 F:      drivers/clocksource/timer-keystone.c
2578
2579 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2580 M:      Santosh Shilimkar <ssantosh@kernel.org>
2581 L:      linux-kernel@vger.kernel.org
2582 S:      Maintained
2583 F:      drivers/power/reset/keystone-reset.c
2584
2585 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2586 M:      Nishanth Menon <nm@ti.com>
2587 M:      Tero Kristo <kristo@kernel.org>
2588 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2589 S:      Supported
2590 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2591 F:      arch/arm64/boot/dts/ti/Makefile
2592 F:      arch/arm64/boot/dts/ti/k3-*
2593 F:      include/dt-bindings/pinctrl/k3.h
2594
2595 ARM/THECUS N2100 MACHINE SUPPORT
2596 M:      Lennert Buytenhek <kernel@wantstofly.org>
2597 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2598 S:      Maintained
2599
2600 ARM/TOSA MACHINE SUPPORT
2601 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2602 M:      Dirk Opfer <dirk@opfer-online.de>
2603 S:      Maintained
2604
2605 ARM/TOSHIBA VISCONTI ARCHITECTURE
2606 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2607 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2608 S:      Supported
2609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2610 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2611 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2612 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2613 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2614 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2615 F:      arch/arm64/boot/dts/toshiba/
2616 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2617 F:      drivers/gpio/gpio-visconti.c
2618 F:      drivers/pinctrl/visconti/
2619 F:      drivers/watchdog/visconti_wdt.c
2620 N:      visconti
2621
2622 ARM/UNIPHIER ARCHITECTURE
2623 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2624 S:      Orphan
2625 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2626 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2627 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2628 F:      arch/arm/boot/dts/uniphier*
2629 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2630 F:      arch/arm/mach-uniphier/
2631 F:      arch/arm/mm/cache-uniphier.c
2632 F:      arch/arm64/boot/dts/socionext/uniphier*
2633 F:      drivers/bus/uniphier-system-bus.c
2634 F:      drivers/clk/uniphier/
2635 F:      drivers/dma/uniphier-mdmac.c
2636 F:      drivers/gpio/gpio-uniphier.c
2637 F:      drivers/i2c/busses/i2c-uniphier*
2638 F:      drivers/irqchip/irq-uniphier-aidet.c
2639 F:      drivers/mmc/host/uniphier-sd.c
2640 F:      drivers/pinctrl/uniphier/
2641 F:      drivers/reset/reset-uniphier.c
2642 F:      drivers/tty/serial/8250/8250_uniphier.c
2643 N:      uniphier
2644
2645 ARM/VERSATILE EXPRESS PLATFORM
2646 M:      Liviu Dudau <liviu.dudau@arm.com>
2647 M:      Sudeep Holla <sudeep.holla@arm.com>
2648 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2649 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2650 S:      Maintained
2651 F:      */*/*/vexpress*
2652 F:      */*/vexpress*
2653 F:      arch/arm/boot/dts/vexpress*
2654 F:      arch/arm/mach-vexpress/
2655 F:      arch/arm64/boot/dts/arm/
2656 F:      drivers/clk/versatile/clk-vexpress-osc.c
2657 F:      drivers/clocksource/timer-versatile.c
2658 N:      mps2
2659
2660 ARM/VFP SUPPORT
2661 M:      Russell King <linux@armlinux.org.uk>
2662 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2663 S:      Maintained
2664 W:      http://www.armlinux.org.uk/
2665 F:      arch/arm/vfp/
2666
2667 ARM/VOIPAC PXA270 SUPPORT
2668 M:      Marek Vasut <marek.vasut@gmail.com>
2669 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2670 S:      Maintained
2671 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2672 F:      arch/arm/mach-pxa/vpac270.c
2673
2674 ARM/VT8500 ARM ARCHITECTURE
2675 M:      Tony Prisk <linux@prisktech.co.nz>
2676 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2677 S:      Maintained
2678 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2679 F:      arch/arm/mach-vt8500/
2680 F:      drivers/clocksource/timer-vt8500.c
2681 F:      drivers/i2c/busses/i2c-wmt.c
2682 F:      drivers/mmc/host/wmt-sdmmc.c
2683 F:      drivers/pwm/pwm-vt8500.c
2684 F:      drivers/rtc/rtc-vt8500.c
2685 F:      drivers/tty/serial/vt8500_serial.c
2686 F:      drivers/usb/host/ehci-platform.c
2687 F:      drivers/usb/host/uhci-platform.c
2688 F:      drivers/video/fbdev/vt8500lcdfb.*
2689 F:      drivers/video/fbdev/wm8505fb*
2690 F:      drivers/video/fbdev/wmt_ge_rops.*
2691
2692 ARM/ZIPIT Z2 SUPPORT
2693 M:      Marek Vasut <marek.vasut@gmail.com>
2694 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2695 S:      Maintained
2696 F:      arch/arm/mach-pxa/include/mach/z2.h
2697 F:      arch/arm/mach-pxa/z2.c
2698
2699 ARM/ZYNQ ARCHITECTURE
2700 M:      Michal Simek <michal.simek@xilinx.com>
2701 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2702 S:      Supported
2703 W:      http://wiki.xilinx.com
2704 T:      git https://github.com/Xilinx/linux-xlnx.git
2705 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2706 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2707 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2708 F:      arch/arm/mach-zynq/
2709 F:      drivers/block/xsysace.c
2710 F:      drivers/clocksource/timer-cadence-ttc.c
2711 F:      drivers/cpuidle/cpuidle-zynq.c
2712 F:      drivers/edac/synopsys_edac.c
2713 F:      drivers/i2c/busses/i2c-cadence.c
2714 F:      drivers/i2c/busses/i2c-xiic.c
2715 F:      drivers/mmc/host/sdhci-of-arasan.c
2716 N:      zynq
2717 N:      xilinx
2718
2719 ARM64 PORT (AARCH64 ARCHITECTURE)
2720 M:      Catalin Marinas <catalin.marinas@arm.com>
2721 M:      Will Deacon <will@kernel.org>
2722 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2723 S:      Maintained
2724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2725 F:      Documentation/arm64/
2726 F:      arch/arm64/
2727 F:      tools/testing/selftests/arm64/
2728 X:      arch/arm64/boot/dts/
2729
2730 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2731 M:      George McCollister <george.mccollister@gmail.com>
2732 L:      netdev@vger.kernel.org
2733 S:      Maintained
2734 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2735 F:      drivers/net/dsa/xrs700x/*
2736 F:      net/dsa/tag_xrs700x.c
2737
2738 AS3645A LED FLASH CONTROLLER DRIVER
2739 M:      Sakari Ailus <sakari.ailus@iki.fi>
2740 L:      linux-leds@vger.kernel.org
2741 S:      Maintained
2742 F:      drivers/leds/leds-as3645a.c
2743
2744 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2745 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2746 L:      linux-media@vger.kernel.org
2747 S:      Maintained
2748 T:      git git://linuxtv.org/media_tree.git
2749 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2750 F:      drivers/media/i2c/ak7375.c
2751
2752 ASAHI KASEI AK8974 DRIVER
2753 M:      Linus Walleij <linus.walleij@linaro.org>
2754 L:      linux-iio@vger.kernel.org
2755 S:      Supported
2756 W:      http://www.akm.com/
2757 F:      drivers/iio/magnetometer/ak8974.c
2758
2759 ASC7621 HARDWARE MONITOR DRIVER
2760 M:      George Joseph <george.joseph@fairview5.com>
2761 L:      linux-hwmon@vger.kernel.org
2762 S:      Maintained
2763 F:      Documentation/hwmon/asc7621.rst
2764 F:      drivers/hwmon/asc7621.c
2765
2766 ASPEED PINCTRL DRIVERS
2767 M:      Andrew Jeffery <andrew@aj.id.au>
2768 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2769 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2770 L:      linux-gpio@vger.kernel.org
2771 S:      Maintained
2772 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2773 F:      drivers/pinctrl/aspeed/
2774
2775 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2776 M:      Eddie James <eajames@linux.ibm.com>
2777 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2778 S:      Maintained
2779 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2780 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2781 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2782
2783 ASPEED SD/MMC DRIVER
2784 M:      Andrew Jeffery <andrew@aj.id.au>
2785 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2786 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2787 L:      linux-mmc@vger.kernel.org
2788 S:      Maintained
2789 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2790 F:      drivers/mmc/host/sdhci-of-aspeed*
2791
2792 ASPEED VIDEO ENGINE DRIVER
2793 M:      Eddie James <eajames@linux.ibm.com>
2794 L:      linux-media@vger.kernel.org
2795 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2796 S:      Maintained
2797 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2798 F:      drivers/media/platform/aspeed-video.c
2799
2800 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2801 M:      Corentin Chary <corentin.chary@gmail.com>
2802 L:      acpi4asus-user@lists.sourceforge.net
2803 L:      platform-driver-x86@vger.kernel.org
2804 S:      Maintained
2805 W:      http://acpi4asus.sf.net
2806 F:      drivers/platform/x86/asus*.c
2807 F:      drivers/platform/x86/eeepc*.c
2808
2809 ASUS WIRELESS RADIO CONTROL DRIVER
2810 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2811 L:      platform-driver-x86@vger.kernel.org
2812 S:      Maintained
2813 F:      drivers/platform/x86/asus-wireless.c
2814
2815 ASYMMETRIC KEYS
2816 M:      David Howells <dhowells@redhat.com>
2817 L:      keyrings@vger.kernel.org
2818 S:      Maintained
2819 F:      Documentation/crypto/asymmetric-keys.rst
2820 F:      crypto/asymmetric_keys/
2821 F:      include/crypto/pkcs7.h
2822 F:      include/crypto/public_key.h
2823 F:      include/linux/verification.h
2824
2825 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2826 R:      Dan Williams <dan.j.williams@intel.com>
2827 S:      Odd fixes
2828 W:      http://sourceforge.net/projects/xscaleiop
2829 F:      Documentation/crypto/async-tx-api.rst
2830 F:      crypto/async_tx/
2831 F:      drivers/dma/
2832 F:      include/linux/async_tx.h
2833 F:      include/linux/dmaengine.h
2834
2835 AT24 EEPROM DRIVER
2836 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2837 L:      linux-i2c@vger.kernel.org
2838 S:      Maintained
2839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2840 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2841 F:      drivers/misc/eeprom/at24.c
2842
2843 ATA OVER ETHERNET (AOE) DRIVER
2844 M:      "Justin Sanders" <justin@coraid.com>
2845 S:      Supported
2846 W:      http://www.openaoe.org/
2847 F:      Documentation/admin-guide/aoe/
2848 F:      drivers/block/aoe/
2849
2850 ATHEROS 71XX/9XXX GPIO DRIVER
2851 M:      Alban Bedel <albeu@free.fr>
2852 S:      Maintained
2853 W:      https://github.com/AlbanBedel/linux
2854 T:      git git://github.com/AlbanBedel/linux
2855 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2856 F:      drivers/gpio/gpio-ath79.c
2857
2858 ATHEROS 71XX/9XXX USB PHY DRIVER
2859 M:      Alban Bedel <albeu@free.fr>
2860 S:      Maintained
2861 W:      https://github.com/AlbanBedel/linux
2862 T:      git git://github.com/AlbanBedel/linux
2863 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2864 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2865
2866 ATHEROS ATH GENERIC UTILITIES
2867 M:      Kalle Valo <kvalo@codeaurora.org>
2868 L:      linux-wireless@vger.kernel.org
2869 S:      Supported
2870 F:      drivers/net/wireless/ath/*
2871
2872 ATHEROS ATH5K WIRELESS DRIVER
2873 M:      Jiri Slaby <jirislaby@kernel.org>
2874 M:      Nick Kossifidis <mickflemm@gmail.com>
2875 M:      Luis Chamberlain <mcgrof@kernel.org>
2876 L:      linux-wireless@vger.kernel.org
2877 S:      Maintained
2878 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2879 F:      drivers/net/wireless/ath/ath5k/
2880
2881 ATHEROS ATH6KL WIRELESS DRIVER
2882 M:      Kalle Valo <kvalo@codeaurora.org>
2883 L:      linux-wireless@vger.kernel.org
2884 S:      Supported
2885 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2887 F:      drivers/net/wireless/ath/ath6kl/
2888
2889 ATI_REMOTE2 DRIVER
2890 M:      Ville Syrjala <syrjala@sci.fi>
2891 S:      Maintained
2892 F:      drivers/input/misc/ati_remote2.c
2893
2894 ATK0110 HWMON DRIVER
2895 M:      Luca Tettamanti <kronos.it@gmail.com>
2896 L:      linux-hwmon@vger.kernel.org
2897 S:      Maintained
2898 F:      drivers/hwmon/asus_atk0110.c
2899
2900 ATLX ETHERNET DRIVERS
2901 M:      Chris Snook <chris.snook@gmail.com>
2902 L:      netdev@vger.kernel.org
2903 S:      Maintained
2904 W:      http://sourceforge.net/projects/atl1
2905 W:      http://atl1.sourceforge.net
2906 F:      drivers/net/ethernet/atheros/
2907
2908 ATM
2909 M:      Chas Williams <3chas3@gmail.com>
2910 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2911 L:      netdev@vger.kernel.org
2912 S:      Maintained
2913 W:      http://linux-atm.sourceforge.net
2914 F:      drivers/atm/
2915 F:      include/linux/atm*
2916 F:      include/uapi/linux/atm*
2917
2918 ATMEL MACB ETHERNET DRIVER
2919 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2920 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2921 S:      Supported
2922 F:      drivers/net/ethernet/cadence/
2923
2924 ATMEL MAXTOUCH DRIVER
2925 M:      Nick Dyer <nick@shmanahar.org>
2926 S:      Maintained
2927 T:      git git://github.com/ndyer/linux.git
2928 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
2929 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2930
2931 ATMEL WIRELESS DRIVER
2932 M:      Simon Kelley <simon@thekelleys.org.uk>
2933 L:      linux-wireless@vger.kernel.org
2934 S:      Maintained
2935 W:      http://www.thekelleys.org.uk/atmel
2936 W:      http://atmelwlandriver.sourceforge.net/
2937 F:      drivers/net/wireless/atmel/atmel*
2938
2939 ATOMIC INFRASTRUCTURE
2940 M:      Will Deacon <will@kernel.org>
2941 M:      Peter Zijlstra <peterz@infradead.org>
2942 R:      Boqun Feng <boqun.feng@gmail.com>
2943 L:      linux-kernel@vger.kernel.org
2944 S:      Maintained
2945 F:      arch/*/include/asm/atomic*.h
2946 F:      include/*/atomic*.h
2947 F:      include/linux/refcount.h
2948 F:      Documentation/atomic_*.txt
2949 F:      scripts/atomic/
2950
2951 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2952 M:      Bradley Grove <linuxdrivers@attotech.com>
2953 L:      linux-scsi@vger.kernel.org
2954 S:      Supported
2955 W:      http://www.attotech.com
2956 F:      drivers/scsi/esas2r
2957
2958 ATUSB IEEE 802.15.4 RADIO DRIVER
2959 M:      Stefan Schmidt <stefan@datenfreihafen.org>
2960 L:      linux-wpan@vger.kernel.org
2961 S:      Maintained
2962 F:      drivers/net/ieee802154/at86rf230.h
2963 F:      drivers/net/ieee802154/atusb.c
2964 F:      drivers/net/ieee802154/atusb.h
2965
2966 AUDIT SUBSYSTEM
2967 M:      Paul Moore <paul@paul-moore.com>
2968 M:      Eric Paris <eparis@redhat.com>
2969 L:      linux-audit@redhat.com (moderated for non-subscribers)
2970 S:      Supported
2971 W:      https://github.com/linux-audit
2972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2973 F:      include/linux/audit.h
2974 F:      include/uapi/linux/audit.h
2975 F:      kernel/audit*
2976
2977 AUXILIARY DISPLAY DRIVERS
2978 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2979 S:      Maintained
2980 F:      drivers/auxdisplay/
2981 F:      include/linux/cfag12864b.h
2982
2983 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2984 M:      Andreas Klinger <ak@it-klinger.de>
2985 L:      linux-iio@vger.kernel.org
2986 S:      Maintained
2987 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
2988 F:      drivers/iio/adc/hx711.c
2989
2990 AX.25 NETWORK LAYER
2991 M:      Ralf Baechle <ralf@linux-mips.org>
2992 L:      linux-hams@vger.kernel.org
2993 S:      Maintained
2994 W:      http://www.linux-ax25.org/
2995 F:      include/net/ax25.h
2996 F:      include/uapi/linux/ax25.h
2997 F:      net/ax25/
2998
2999 AXENTIA ARM DEVICES
3000 M:      Peter Rosin <peda@axentia.se>
3001 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3002 S:      Maintained
3003 F:      arch/arm/boot/dts/at91-linea.dtsi
3004 F:      arch/arm/boot/dts/at91-natte.dtsi
3005 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3006 F:      arch/arm/boot/dts/at91-tse850-3.dts
3007
3008 AXENTIA ASOC DRIVERS
3009 M:      Peter Rosin <peda@axentia.se>
3010 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3011 S:      Maintained
3012 F:      Documentation/devicetree/bindings/sound/axentia,*
3013 F:      sound/soc/atmel/tse850-pcm5142.c
3014
3015 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3016 M:      Nuno Sá <nuno.sa@analog.com>
3017 L:      linux-hwmon@vger.kernel.org
3018 S:      Supported
3019 W:      http://ez.analog.com/community/linux-device-drivers
3020 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3021 F:      drivers/hwmon/axi-fan-control.c
3022
3023 AXXIA I2C CONTROLLER
3024 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3025 L:      linux-i2c@vger.kernel.org
3026 S:      Maintained
3027 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3028 F:      drivers/i2c/busses/i2c-axxia.c
3029
3030 AZ6007 DVB DRIVER
3031 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3032 L:      linux-media@vger.kernel.org
3033 S:      Maintained
3034 W:      https://linuxtv.org
3035 T:      git git://linuxtv.org/media_tree.git
3036 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3037
3038 AZTECH FM RADIO RECEIVER DRIVER
3039 M:      Hans Verkuil <hverkuil@xs4all.nl>
3040 L:      linux-media@vger.kernel.org
3041 S:      Maintained
3042 W:      https://linuxtv.org
3043 T:      git git://linuxtv.org/media_tree.git
3044 F:      drivers/media/radio/radio-aztech*
3045
3046 B43 WIRELESS DRIVER
3047 L:      linux-wireless@vger.kernel.org
3048 L:      b43-dev@lists.infradead.org
3049 S:      Odd Fixes
3050 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3051 F:      drivers/net/wireless/broadcom/b43/
3052
3053 B43LEGACY WIRELESS DRIVER
3054 M:      Larry Finger <Larry.Finger@lwfinger.net>
3055 L:      linux-wireless@vger.kernel.org
3056 L:      b43-dev@lists.infradead.org
3057 S:      Maintained
3058 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3059 F:      drivers/net/wireless/broadcom/b43legacy/
3060
3061 BACKLIGHT CLASS/SUBSYSTEM
3062 M:      Lee Jones <lee.jones@linaro.org>
3063 M:      Daniel Thompson <daniel.thompson@linaro.org>
3064 M:      Jingoo Han <jingoohan1@gmail.com>
3065 L:      dri-devel@lists.freedesktop.org
3066 S:      Maintained
3067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3068 F:      Documentation/ABI/stable/sysfs-class-backlight
3069 F:      Documentation/ABI/testing/sysfs-class-backlight
3070 F:      Documentation/devicetree/bindings/leds/backlight
3071 F:      drivers/video/backlight/
3072 F:      include/linux/backlight.h
3073 F:      include/linux/pwm_backlight.h
3074
3075 BATMAN ADVANCED
3076 M:      Marek Lindner <mareklindner@neomailbox.ch>
3077 M:      Simon Wunderlich <sw@simonwunderlich.de>
3078 M:      Antonio Quartulli <a@unstable.cc>
3079 M:      Sven Eckelmann <sven@narfation.org>
3080 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3081 S:      Maintained
3082 W:      https://www.open-mesh.org/
3083 Q:      https://patchwork.open-mesh.org/project/batman/list/
3084 B:      https://www.open-mesh.org/projects/batman-adv/issues
3085 C:      irc://chat.freenode.net/batman
3086 T:      git https://git.open-mesh.org/linux-merge.git
3087 F:      Documentation/networking/batman-adv.rst
3088 F:      include/uapi/linux/batadv_packet.h
3089 F:      include/uapi/linux/batman_adv.h
3090 F:      net/batman-adv/
3091
3092 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3093 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3094 L:      linux-hams@vger.kernel.org
3095 S:      Maintained
3096 W:      http://www.baycom.org/~tom/ham/ham.html
3097 F:      drivers/net/hamradio/baycom*
3098
3099 BCACHE (BLOCK LAYER CACHE)
3100 M:      Coly Li <colyli@suse.de>
3101 M:      Kent Overstreet <kent.overstreet@gmail.com>
3102 L:      linux-bcache@vger.kernel.org
3103 S:      Maintained
3104 W:      http://bcache.evilpiepirate.org
3105 C:      irc://irc.oftc.net/bcache
3106 F:      drivers/md/bcache/
3107
3108 BDISP ST MEDIA DRIVER
3109 M:      Fabien Dessenne <fabien.dessenne@st.com>
3110 L:      linux-media@vger.kernel.org
3111 S:      Supported
3112 W:      https://linuxtv.org
3113 T:      git git://linuxtv.org/media_tree.git
3114 F:      drivers/media/platform/sti/bdisp
3115
3116 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3117 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3118 L:      netdev@vger.kernel.org
3119 S:      Maintained
3120 F:      drivers/net/ethernet/ec_bhf.c
3121
3122 BEFS FILE SYSTEM
3123 M:      Luis de Bethencourt <luisbg@kernel.org>
3124 M:      Salah Triki <salah.triki@gmail.com>
3125 S:      Maintained
3126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3127 F:      Documentation/filesystems/befs.rst
3128 F:      fs/befs/
3129
3130 BFQ I/O SCHEDULER
3131 M:      Paolo Valente <paolo.valente@linaro.org>
3132 M:      Jens Axboe <axboe@kernel.dk>
3133 L:      linux-block@vger.kernel.org
3134 S:      Maintained
3135 F:      Documentation/block/bfq-iosched.rst
3136 F:      block/bfq-*
3137
3138 BFS FILE SYSTEM
3139 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3140 S:      Maintained
3141 F:      Documentation/filesystems/bfs.rst
3142 F:      fs/bfs/
3143 F:      include/uapi/linux/bfs_fs.h
3144
3145 BLINKM RGB LED DRIVER
3146 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3147 S:      Maintained
3148 F:      drivers/leds/leds-blinkm.c
3149
3150 BLOCK LAYER
3151 M:      Jens Axboe <axboe@kernel.dk>
3152 L:      linux-block@vger.kernel.org
3153 S:      Maintained
3154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3155 F:      block/
3156 F:      drivers/block/
3157 F:      fs/block_dev.c
3158 F:      include/linux/blk*
3159 F:      kernel/trace/blktrace.c
3160 F:      lib/sbitmap.c
3161
3162 BLOCK2MTD DRIVER
3163 M:      Joern Engel <joern@lazybastard.org>
3164 L:      linux-mtd@lists.infradead.org
3165 S:      Maintained
3166 F:      drivers/mtd/devices/block2mtd.c
3167
3168 BLUETOOTH DRIVERS
3169 M:      Marcel Holtmann <marcel@holtmann.org>
3170 M:      Johan Hedberg <johan.hedberg@gmail.com>
3171 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3172 L:      linux-bluetooth@vger.kernel.org
3173 S:      Supported
3174 W:      http://www.bluez.org/
3175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3176 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3177 F:      drivers/bluetooth/
3178
3179 BLUETOOTH SUBSYSTEM
3180 M:      Marcel Holtmann <marcel@holtmann.org>
3181 M:      Johan Hedberg <johan.hedberg@gmail.com>
3182 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3183 L:      linux-bluetooth@vger.kernel.org
3184 S:      Supported
3185 W:      http://www.bluez.org/
3186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3188 F:      include/net/bluetooth/
3189 F:      net/bluetooth/
3190
3191 BONDING DRIVER
3192 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3193 M:      Veaceslav Falico <vfalico@gmail.com>
3194 M:      Andy Gospodarek <andy@greyhouse.net>
3195 L:      netdev@vger.kernel.org
3196 S:      Supported
3197 W:      http://sourceforge.net/projects/bonding/
3198 F:      drivers/net/bonding/
3199 F:      include/net/bonding.h
3200 F:      include/uapi/linux/if_bonding.h
3201
3202 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3203 M:      Dan Robertson <dan@dlrobertson.com>
3204 L:      linux-iio@vger.kernel.org
3205 S:      Maintained
3206 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3207 F:      drivers/iio/accel/bma400*
3208
3209 BPF (Safe dynamic programs and tools)
3210 M:      Alexei Starovoitov <ast@kernel.org>
3211 M:      Daniel Borkmann <daniel@iogearbox.net>
3212 M:      Andrii Nakryiko <andrii@kernel.org>
3213 R:      Martin KaFai Lau <kafai@fb.com>
3214 R:      Song Liu <songliubraving@fb.com>
3215 R:      Yonghong Song <yhs@fb.com>
3216 R:      John Fastabend <john.fastabend@gmail.com>
3217 R:      KP Singh <kpsingh@kernel.org>
3218 L:      netdev@vger.kernel.org
3219 L:      bpf@vger.kernel.org
3220 S:      Supported
3221 W:      https://bpf.io/
3222 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3225 F:      Documentation/bpf/
3226 F:      Documentation/networking/filter.rst
3227 F:      arch/*/net/*
3228 F:      include/linux/bpf*
3229 F:      include/linux/filter.h
3230 F:      include/trace/events/xdp.h
3231 F:      include/uapi/linux/bpf*
3232 F:      include/uapi/linux/filter.h
3233 F:      kernel/bpf/
3234 F:      kernel/trace/bpf_trace.c
3235 F:      lib/test_bpf.c
3236 F:      net/bpf/
3237 F:      net/core/filter.c
3238 F:      net/sched/act_bpf.c
3239 F:      net/sched/cls_bpf.c
3240 F:      samples/bpf/
3241 F:      tools/bpf/
3242 F:      tools/lib/bpf/
3243 F:      tools/testing/selftests/bpf/
3244 N:      bpf
3245 K:      bpf
3246
3247 BPF JIT for ARM
3248 M:      Shubham Bansal <illusionist.neo@gmail.com>
3249 L:      netdev@vger.kernel.org
3250 L:      bpf@vger.kernel.org
3251 S:      Maintained
3252 F:      arch/arm/net/
3253
3254 BPF JIT for ARM64
3255 M:      Daniel Borkmann <daniel@iogearbox.net>
3256 M:      Alexei Starovoitov <ast@kernel.org>
3257 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3258 L:      netdev@vger.kernel.org
3259 L:      bpf@vger.kernel.org
3260 S:      Supported
3261 F:      arch/arm64/net/
3262
3263 BPF JIT for MIPS (32-BIT AND 64-BIT)
3264 M:      Paul Burton <paulburton@kernel.org>
3265 L:      netdev@vger.kernel.org
3266 L:      bpf@vger.kernel.org
3267 S:      Maintained
3268 F:      arch/mips/net/
3269
3270 BPF JIT for NFP NICs
3271 M:      Jakub Kicinski <kuba@kernel.org>
3272 L:      netdev@vger.kernel.org
3273 L:      bpf@vger.kernel.org
3274 S:      Supported
3275 F:      drivers/net/ethernet/netronome/nfp/bpf/
3276
3277 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3278 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3279 M:      Sandipan Das <sandipan@linux.ibm.com>
3280 L:      netdev@vger.kernel.org
3281 L:      bpf@vger.kernel.org
3282 S:      Maintained
3283 F:      arch/powerpc/net/
3284
3285 BPF JIT for RISC-V (32-bit)
3286 M:      Luke Nelson <luke.r.nels@gmail.com>
3287 M:      Xi Wang <xi.wang@gmail.com>
3288 L:      netdev@vger.kernel.org
3289 L:      bpf@vger.kernel.org
3290 S:      Maintained
3291 F:      arch/riscv/net/
3292 X:      arch/riscv/net/bpf_jit_comp64.c
3293
3294 BPF JIT for RISC-V (64-bit)
3295 M:      Björn Töpel <bjorn@kernel.org>
3296 L:      netdev@vger.kernel.org
3297 L:      bpf@vger.kernel.org
3298 S:      Maintained
3299 F:      arch/riscv/net/
3300 X:      arch/riscv/net/bpf_jit_comp32.c
3301
3302 BPF JIT for S390
3303 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3304 M:      Heiko Carstens <hca@linux.ibm.com>
3305 M:      Vasily Gorbik <gor@linux.ibm.com>
3306 L:      netdev@vger.kernel.org
3307 L:      bpf@vger.kernel.org
3308 S:      Maintained
3309 F:      arch/s390/net/
3310 X:      arch/s390/net/pnet.c
3311
3312 BPF JIT for SPARC (32-BIT AND 64-BIT)
3313 M:      David S. Miller <davem@davemloft.net>
3314 L:      netdev@vger.kernel.org
3315 L:      bpf@vger.kernel.org
3316 S:      Maintained
3317 F:      arch/sparc/net/
3318
3319 BPF JIT for X86 32-BIT
3320 M:      Wang YanQing <udknight@gmail.com>
3321 L:      netdev@vger.kernel.org
3322 L:      bpf@vger.kernel.org
3323 S:      Maintained
3324 F:      arch/x86/net/bpf_jit_comp32.c
3325
3326 BPF JIT for X86 64-BIT
3327 M:      Alexei Starovoitov <ast@kernel.org>
3328 M:      Daniel Borkmann <daniel@iogearbox.net>
3329 L:      netdev@vger.kernel.org
3330 L:      bpf@vger.kernel.org
3331 S:      Supported
3332 F:      arch/x86/net/
3333 X:      arch/x86/net/bpf_jit_comp32.c
3334
3335 BPF LSM (Security Audit and Enforcement using BPF)
3336 M:      KP Singh <kpsingh@kernel.org>
3337 R:      Florent Revest <revest@chromium.org>
3338 R:      Brendan Jackman <jackmanb@chromium.org>
3339 L:      bpf@vger.kernel.org
3340 S:      Maintained
3341 F:      Documentation/bpf/bpf_lsm.rst
3342 F:      include/linux/bpf_lsm.h
3343 F:      kernel/bpf/bpf_lsm.c
3344 F:      security/bpf/
3345
3346 BROADCOM B44 10/100 ETHERNET DRIVER
3347 M:      Michael Chan <michael.chan@broadcom.com>
3348 L:      netdev@vger.kernel.org
3349 S:      Supported
3350 F:      drivers/net/ethernet/broadcom/b44.*
3351
3352 BROADCOM B53 ETHERNET SWITCH DRIVER
3353 M:      Florian Fainelli <f.fainelli@gmail.com>
3354 L:      netdev@vger.kernel.org
3355 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3356 S:      Supported
3357 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3358 F:      drivers/net/dsa/b53/*
3359 F:      include/linux/dsa/brcm.h
3360 F:      include/linux/platform_data/b53.h
3361
3362 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3363 M:      Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
3364 L:      bcm-kernel-feedback-list@broadcom.com
3365 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3366 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3367 S:      Maintained
3368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3369 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3370 F:      drivers/pci/controller/pcie-brcmstb.c
3371 F:      drivers/staging/vc04_services
3372 N:      bcm2711
3373 N:      bcm283*
3374
3375 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3376 M:      Florian Fainelli <f.fainelli@gmail.com>
3377 M:      Ray Jui <rjui@broadcom.com>
3378 M:      Scott Branden <sbranden@broadcom.com>
3379 M:      bcm-kernel-feedback-list@broadcom.com
3380 S:      Maintained
3381 T:      git git://github.com/broadcom/mach-bcm
3382 F:      arch/arm/mach-bcm/
3383 N:      bcm281*
3384 N:      bcm113*
3385 N:      bcm216*
3386 N:      kona
3387
3388 BROADCOM BCM47XX MIPS ARCHITECTURE
3389 M:      Hauke Mehrtens <hauke@hauke-m.de>
3390 M:      Rafał Miłecki <zajec5@gmail.com>
3391 L:      linux-mips@vger.kernel.org
3392 S:      Maintained
3393 F:      Documentation/devicetree/bindings/mips/brcm/
3394 F:      arch/mips/bcm47xx/*
3395 F:      arch/mips/include/asm/mach-bcm47xx/*
3396
3397 BROADCOM BCM4908 ETHERNET DRIVER
3398 M:      Rafał Miłecki <rafal@milecki.pl>
3399 M:      bcm-kernel-feedback-list@broadcom.com
3400 L:      netdev@vger.kernel.org
3401 S:      Maintained
3402 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3403 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3404 F:      drivers/net/ethernet/broadcom/unimac.h
3405
3406 BROADCOM BCM5301X ARM ARCHITECTURE
3407 M:      Hauke Mehrtens <hauke@hauke-m.de>
3408 M:      Rafał Miłecki <zajec5@gmail.com>
3409 M:      bcm-kernel-feedback-list@broadcom.com
3410 L:      linux-arm-kernel@lists.infradead.org
3411 S:      Maintained
3412 F:      arch/arm/boot/dts/bcm470*
3413 F:      arch/arm/boot/dts/bcm5301*
3414 F:      arch/arm/boot/dts/bcm953012*
3415 F:      arch/arm/mach-bcm/bcm_5301x.c
3416
3417 BROADCOM BCM53573 ARM ARCHITECTURE
3418 M:      Rafał Miłecki <rafal@milecki.pl>
3419 L:      bcm-kernel-feedback-list@broadcom.com
3420 L:      linux-arm-kernel@lists.infradead.org
3421 S:      Maintained
3422 F:      arch/arm/boot/dts/bcm47189*
3423 F:      arch/arm/boot/dts/bcm53573*
3424
3425 BROADCOM BCM63XX ARM ARCHITECTURE
3426 M:      Florian Fainelli <f.fainelli@gmail.com>
3427 M:      bcm-kernel-feedback-list@broadcom.com
3428 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3429 S:      Maintained
3430 T:      git git://github.com/broadcom/stblinux.git
3431 N:      bcm63xx
3432
3433 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3434 M:      Kevin Cernekee <cernekee@gmail.com>
3435 L:      linux-usb@vger.kernel.org
3436 S:      Maintained
3437 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3438
3439 BROADCOM BCM7XXX ARM ARCHITECTURE
3440 M:      Florian Fainelli <f.fainelli@gmail.com>
3441 M:      bcm-kernel-feedback-list@broadcom.com
3442 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3443 S:      Maintained
3444 T:      git git://github.com/broadcom/stblinux.git
3445 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3446 F:      arch/arm/boot/dts/bcm7*.dts*
3447 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3448 F:      arch/arm/mach-bcm/*brcmstb*
3449 F:      arch/arm/mm/cache-b15-rac.c
3450 F:      drivers/bus/brcmstb_gisb.c
3451 F:      drivers/pci/controller/pcie-brcmstb.c
3452 N:      brcmstb
3453
3454 BROADCOM BDC DRIVER
3455 M:      Al Cooper <alcooperx@gmail.com>
3456 L:      linux-usb@vger.kernel.org
3457 L:      bcm-kernel-feedback-list@broadcom.com
3458 S:      Maintained
3459 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3460 F:      drivers/usb/gadget/udc/bdc/
3461
3462 BROADCOM BMIPS CPUFREQ DRIVER
3463 M:      Markus Mayer <mmayer@broadcom.com>
3464 M:      bcm-kernel-feedback-list@broadcom.com
3465 L:      linux-pm@vger.kernel.org
3466 S:      Maintained
3467 F:      drivers/cpufreq/bmips-cpufreq.c
3468
3469 BROADCOM BMIPS MIPS ARCHITECTURE
3470 M:      Florian Fainelli <f.fainelli@gmail.com>
3471 L:      bcm-kernel-feedback-list@broadcom.com
3472 L:      linux-mips@vger.kernel.org
3473 S:      Maintained
3474 T:      git git://github.com/broadcom/stblinux.git
3475 F:      arch/mips/bmips/*
3476 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3477 F:      arch/mips/include/asm/mach-bmips/*
3478 F:      arch/mips/kernel/*bmips*
3479 F:      drivers/soc/bcm/bcm63xx
3480 F:      drivers/irqchip/irq-bcm63*
3481 F:      drivers/irqchip/irq-bcm7*
3482 F:      drivers/irqchip/irq-brcmstb*
3483 F:      include/linux/bcm963xx_nvram.h
3484 F:      include/linux/bcm963xx_tag.h
3485
3486 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3487 M:      Rasesh Mody <rmody@marvell.com>
3488 M:      GR-Linux-NIC-Dev@marvell.com
3489 L:      netdev@vger.kernel.org
3490 S:      Supported
3491 F:      drivers/net/ethernet/broadcom/bnx2.*
3492 F:      drivers/net/ethernet/broadcom/bnx2_*
3493
3494 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3495 M:      Saurav Kashyap <skashyap@marvell.com>
3496 M:      Javed Hasan <jhasan@marvell.com>
3497 M:      GR-QLogic-Storage-Upstream@marvell.com
3498 L:      linux-scsi@vger.kernel.org
3499 S:      Supported
3500 F:      drivers/scsi/bnx2fc/
3501
3502 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3503 M:      Nilesh Javali <njavali@marvell.com>
3504 M:      Manish Rangankar <mrangankar@marvell.com>
3505 M:      GR-QLogic-Storage-Upstream@marvell.com
3506 L:      linux-scsi@vger.kernel.org
3507 S:      Supported
3508 F:      drivers/scsi/bnx2i/
3509
3510 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3511 M:      Ariel Elior <aelior@marvell.com>
3512 M:      Sudarsana Kalluru <skalluru@marvell.com>
3513 M:      GR-everest-linux-l2@marvell.com
3514 L:      netdev@vger.kernel.org
3515 S:      Supported
3516 F:      drivers/net/ethernet/broadcom/bnx2x/
3517
3518 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3519 M:      Michael Chan <michael.chan@broadcom.com>
3520 L:      netdev@vger.kernel.org
3521 S:      Supported
3522 F:      drivers/net/ethernet/broadcom/bnxt/
3523
3524 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3525 M:      Arend van Spriel <aspriel@gmail.com>
3526 M:      Franky Lin <franky.lin@broadcom.com>
3527 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3528 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3529 M:      Wright Feng <wright.feng@infineon.com>
3530 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3531 L:      linux-wireless@vger.kernel.org
3532 L:      brcm80211-dev-list.pdl@broadcom.com
3533 L:      SHA-cyfmac-dev-list@infineon.com
3534 S:      Supported
3535 F:      drivers/net/wireless/broadcom/brcm80211/
3536
3537 BROADCOM BRCMSTB GPIO DRIVER
3538 M:      Gregory Fong <gregory.0xf0@gmail.com>
3539 L:      bcm-kernel-feedback-list@broadcom.com
3540 S:      Supported
3541 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3542 F:      drivers/gpio/gpio-brcmstb.c
3543
3544 BROADCOM BRCMSTB I2C DRIVER
3545 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3546 L:      linux-i2c@vger.kernel.org
3547 L:      bcm-kernel-feedback-list@broadcom.com
3548 S:      Supported
3549 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3550 F:      drivers/i2c/busses/i2c-brcmstb.c
3551
3552 BROADCOM BRCMSTB USB EHCI DRIVER
3553 M:      Al Cooper <alcooperx@gmail.com>
3554 L:      linux-usb@vger.kernel.org
3555 L:      bcm-kernel-feedback-list@broadcom.com
3556 S:      Maintained
3557 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3558 F:      drivers/usb/host/ehci-brcm.*
3559
3560 BROADCOM BRCMSTB USB PIN MAP DRIVER
3561 M:      Al Cooper <alcooperx@gmail.com>
3562 L:      linux-usb@vger.kernel.org
3563 L:      bcm-kernel-feedback-list@broadcom.com
3564 S:      Maintained
3565 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3566 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3567
3568 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3569 M:      Al Cooper <alcooperx@gmail.com>
3570 L:      linux-kernel@vger.kernel.org
3571 L:      bcm-kernel-feedback-list@broadcom.com
3572 S:      Maintained
3573 F:      drivers/phy/broadcom/phy-brcm-usb*
3574
3575 BROADCOM ETHERNET PHY DRIVERS
3576 M:      Florian Fainelli <f.fainelli@gmail.com>
3577 L:      bcm-kernel-feedback-list@broadcom.com
3578 L:      netdev@vger.kernel.org
3579 S:      Supported
3580 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3581 F:      drivers/net/phy/bcm*.[ch]
3582 F:      drivers/net/phy/broadcom.c
3583 F:      include/linux/brcmphy.h
3584
3585 BROADCOM GENET ETHERNET DRIVER
3586 M:      Doug Berger <opendmb@gmail.com>
3587 M:      Florian Fainelli <f.fainelli@gmail.com>
3588 L:      bcm-kernel-feedback-list@broadcom.com
3589 L:      netdev@vger.kernel.org
3590 S:      Supported
3591 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3592 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3593 F:      drivers/net/ethernet/broadcom/genet/
3594 F:      drivers/net/ethernet/broadcom/unimac.h
3595 F:      drivers/net/mdio/mdio-bcm-unimac.c
3596 F:      include/linux/platform_data/bcmgenet.h
3597 F:      include/linux/platform_data/mdio-bcm-unimac.h
3598
3599 BROADCOM IPROC ARM ARCHITECTURE
3600 M:      Ray Jui <rjui@broadcom.com>
3601 M:      Scott Branden <sbranden@broadcom.com>
3602 M:      bcm-kernel-feedback-list@broadcom.com
3603 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3604 S:      Maintained
3605 T:      git git://github.com/broadcom/cygnus-linux.git
3606 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3607 F:      arch/arm64/boot/dts/broadcom/stingray/*
3608 F:      drivers/clk/bcm/clk-ns*
3609 F:      drivers/clk/bcm/clk-sr*
3610 F:      drivers/pinctrl/bcm/pinctrl-ns*
3611 F:      include/dt-bindings/clock/bcm-sr*
3612 N:      iproc
3613 N:      cygnus
3614 N:      bcm[-_]nsp
3615 N:      bcm9113*
3616 N:      bcm9583*
3617 N:      bcm9585*
3618 N:      bcm9586*
3619 N:      bcm988312
3620 N:      bcm113*
3621 N:      bcm583*
3622 N:      bcm585*
3623 N:      bcm586*
3624 N:      bcm88312
3625 N:      hr2
3626 N:      stingray
3627
3628 BROADCOM IPROC GBIT ETHERNET DRIVER
3629 M:      Rafał Miłecki <rafal@milecki.pl>
3630 M:      bcm-kernel-feedback-list@broadcom.com
3631 L:      netdev@vger.kernel.org
3632 S:      Maintained
3633 F:      Documentation/devicetree/bindings/net/brcm,amac.txt
3634 F:      drivers/net/ethernet/broadcom/bgmac*
3635 F:      drivers/net/ethernet/broadcom/unimac.h
3636
3637 BROADCOM KONA GPIO DRIVER
3638 M:      Ray Jui <rjui@broadcom.com>
3639 L:      bcm-kernel-feedback-list@broadcom.com
3640 S:      Supported
3641 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3642 F:      drivers/gpio/gpio-bcm-kona.c
3643
3644 BROADCOM NETXTREME-E ROCE DRIVER
3645 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3646 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3647 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3648 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3649 M:      Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
3650 L:      linux-rdma@vger.kernel.org
3651 S:      Supported
3652 W:      http://www.broadcom.com
3653 F:      drivers/infiniband/hw/bnxt_re/
3654 F:      include/uapi/rdma/bnxt_re-abi.h
3655
3656 BROADCOM NVRAM DRIVER
3657 M:      Rafał Miłecki <zajec5@gmail.com>
3658 L:      linux-mips@vger.kernel.org
3659 S:      Maintained
3660 F:      drivers/firmware/broadcom/*
3661
3662 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3663 M:      Rafał Miłecki <rafal@milecki.pl>
3664 M:      Florian Fainelli <f.fainelli@gmail.com>
3665 M:      bcm-kernel-feedback-list@broadcom.com
3666 L:      linux-pm@vger.kernel.org
3667 S:      Maintained
3668 T:      git git://github.com/broadcom/stblinux.git
3669 F:      drivers/soc/bcm/bcm-pmb.c
3670 F:      include/dt-bindings/soc/bcm-pmb.h
3671
3672 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3673 M:      Rafał Miłecki <zajec5@gmail.com>
3674 L:      linux-wireless@vger.kernel.org
3675 S:      Maintained
3676 F:      drivers/bcma/
3677 F:      include/linux/bcma/
3678
3679 BROADCOM SPI DRIVER
3680 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3681 M:      bcm-kernel-feedback-list@broadcom.com
3682 S:      Maintained
3683 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3684 F:      drivers/spi/spi-bcm-qspi.*
3685 F:      drivers/spi/spi-brcmstb-qspi.c
3686 F:      drivers/spi/spi-iproc-qspi.c
3687
3688 BROADCOM STB AVS CPUFREQ DRIVER
3689 M:      Markus Mayer <mmayer@broadcom.com>
3690 M:      bcm-kernel-feedback-list@broadcom.com
3691 L:      linux-pm@vger.kernel.org
3692 S:      Maintained
3693 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3694 F:      drivers/cpufreq/brcmstb*
3695
3696 BROADCOM STB AVS TMON DRIVER
3697 M:      Markus Mayer <mmayer@broadcom.com>
3698 M:      bcm-kernel-feedback-list@broadcom.com
3699 L:      linux-pm@vger.kernel.org
3700 S:      Maintained
3701 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3702 F:      drivers/thermal/broadcom/brcmstb*
3703
3704 BROADCOM STB DPFE DRIVER
3705 M:      Markus Mayer <mmayer@broadcom.com>
3706 M:      bcm-kernel-feedback-list@broadcom.com
3707 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3708 S:      Maintained
3709 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3710 F:      drivers/memory/brcmstb_dpfe.c
3711
3712 BROADCOM STB NAND FLASH DRIVER
3713 M:      Brian Norris <computersforpeace@gmail.com>
3714 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3715 L:      linux-mtd@lists.infradead.org
3716 L:      bcm-kernel-feedback-list@broadcom.com
3717 S:      Maintained
3718 F:      drivers/mtd/nand/raw/brcmnand/
3719
3720 BROADCOM SYSTEMPORT ETHERNET DRIVER
3721 M:      Florian Fainelli <f.fainelli@gmail.com>
3722 L:      bcm-kernel-feedback-list@broadcom.com
3723 L:      netdev@vger.kernel.org
3724 S:      Supported
3725 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3726 F:      drivers/net/ethernet/broadcom/unimac.h
3727
3728 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3729 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3730 M:      Prashant Sreedharan <prashant@broadcom.com>
3731 M:      Michael Chan <mchan@broadcom.com>
3732 L:      netdev@vger.kernel.org
3733 S:      Supported
3734 F:      drivers/net/ethernet/broadcom/tg3.*
3735
3736 BROCADE BFA FC SCSI DRIVER
3737 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3738 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3739 L:      linux-scsi@vger.kernel.org
3740 S:      Supported
3741 F:      drivers/scsi/bfa/
3742
3743 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3744 M:      Rasesh Mody <rmody@marvell.com>
3745 M:      Sudarsana Kalluru <skalluru@marvell.com>
3746 M:      GR-Linux-NIC-Dev@marvell.com
3747 L:      netdev@vger.kernel.org
3748 S:      Supported
3749 F:      drivers/net/ethernet/brocade/bna/
3750
3751 BSG (block layer generic sg v4 driver)
3752 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3753 L:      linux-scsi@vger.kernel.org
3754 S:      Supported
3755 F:      block/bsg.c
3756 F:      include/linux/bsg.h
3757 F:      include/uapi/linux/bsg.h
3758
3759 BT87X AUDIO DRIVER
3760 M:      Clemens Ladisch <clemens@ladisch.de>
3761 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3762 S:      Maintained
3763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3764 F:      Documentation/sound/cards/bt87x.rst
3765 F:      sound/pci/bt87x.c
3766
3767 BT8XXGPIO DRIVER
3768 M:      Michael Buesch <m@bues.ch>
3769 S:      Maintained
3770 W:      http://bu3sch.de/btgpio.php
3771 F:      drivers/gpio/gpio-bt8xx.c
3772
3773 BTRFS FILE SYSTEM
3774 M:      Chris Mason <clm@fb.com>
3775 M:      Josef Bacik <josef@toxicpanda.com>
3776 M:      David Sterba <dsterba@suse.com>
3777 L:      linux-btrfs@vger.kernel.org
3778 S:      Maintained
3779 W:      http://btrfs.wiki.kernel.org/
3780 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3782 F:      Documentation/filesystems/btrfs.rst
3783 F:      fs/btrfs/
3784 F:      include/linux/btrfs*
3785 F:      include/uapi/linux/btrfs*
3786
3787 BTTV VIDEO4LINUX DRIVER
3788 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3789 L:      linux-media@vger.kernel.org
3790 S:      Odd fixes
3791 W:      https://linuxtv.org
3792 T:      git git://linuxtv.org/media_tree.git
3793 F:      Documentation/driver-api/media/drivers/bttv*
3794 F:      drivers/media/pci/bt8xx/bttv*
3795
3796 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3797 M:      Chanwoo Choi <cw00.choi@samsung.com>
3798 L:      linux-pm@vger.kernel.org
3799 L:      linux-samsung-soc@vger.kernel.org
3800 S:      Maintained
3801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3802 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3803 F:      drivers/devfreq/exynos-bus.c
3804
3805 BUSLOGIC SCSI DRIVER
3806 M:      Khalid Aziz <khalid@gonehiking.org>
3807 L:      linux-scsi@vger.kernel.org
3808 S:      Maintained
3809 F:      drivers/scsi/BusLogic.*
3810 F:      drivers/scsi/FlashPoint.*
3811
3812 C-MEDIA CMI8788 DRIVER
3813 M:      Clemens Ladisch <clemens@ladisch.de>
3814 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3815 S:      Maintained
3816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3817 F:      sound/pci/oxygen/
3818
3819 C-SKY ARCHITECTURE
3820 M:      Guo Ren <guoren@kernel.org>
3821 L:      linux-csky@vger.kernel.org
3822 S:      Supported
3823 T:      git https://github.com/c-sky/csky-linux.git
3824 F:      Documentation/devicetree/bindings/csky/
3825 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3826 F:      Documentation/devicetree/bindings/timer/csky,*
3827 F:      arch/csky/
3828 F:      drivers/clocksource/timer-gx6605s.c
3829 F:      drivers/clocksource/timer-mp-csky.c
3830 F:      drivers/irqchip/irq-csky-*
3831 N:      csky
3832 K:      csky
3833
3834 CA8210 IEEE-802.15.4 RADIO DRIVER
3835 M:      Harry Morris <h.morris@cascoda.com>
3836 L:      linux-wpan@vger.kernel.org
3837 S:      Maintained
3838 W:      https://github.com/Cascoda/ca8210-linux.git
3839 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3840 F:      drivers/net/ieee802154/ca8210.c
3841
3842 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3843 M:      David Howells <dhowells@redhat.com>
3844 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3845 S:      Supported
3846 F:      Documentation/filesystems/caching/cachefiles.rst
3847 F:      fs/cachefiles/
3848
3849 CADENCE MIPI-CSI2 BRIDGES
3850 M:      Maxime Ripard <mripard@kernel.org>
3851 L:      linux-media@vger.kernel.org
3852 S:      Maintained
3853 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3854 F:      drivers/media/platform/cadence/cdns-csi2*
3855
3856 CADENCE NAND DRIVER
3857 L:      linux-mtd@lists.infradead.org
3858 S:      Orphan
3859 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3860 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3861
3862 CADENCE USB3 DRD IP DRIVER
3863 M:      Peter Chen <peter.chen@kernel.org>
3864 M:      Pawel Laszczak <pawell@cadence.com>
3865 R:      Roger Quadros <rogerq@kernel.org>
3866 R:      Aswath Govindraju <a-govindraju@ti.com>
3867 L:      linux-usb@vger.kernel.org
3868 S:      Maintained
3869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3870 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
3871 F:      drivers/usb/cdns3/
3872 X:      drivers/usb/cdns3/cdnsp*
3873
3874 CADENCE USBSSP DRD IP DRIVER
3875 M:      Pawel Laszczak <pawell@cadence.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:      drivers/usb/cdns3/
3880 X:      drivers/usb/cdns3/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/bittiming.h
3923 F:      include/linux/can/dev.h
3924 F:      include/linux/can/led.h
3925 F:      include/linux/can/length.h
3926 F:      include/linux/can/platform/
3927 F:      include/linux/can/rx-offload.h
3928 F:      include/uapi/linux/can/error.h
3929 F:      include/uapi/linux/can/netlink.h
3930 F:      include/uapi/linux/can/vxcan.h
3931
3932 CAN NETWORK LAYER
3933 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3934 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3935 L:      linux-can@vger.kernel.org
3936 S:      Maintained
3937 W:      https://github.com/linux-can
3938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3940 F:      Documentation/networking/can.rst
3941 F:      include/linux/can/can-ml.h
3942 F:      include/linux/can/core.h
3943 F:      include/linux/can/skb.h
3944 F:      include/net/netns/can.h
3945 F:      include/uapi/linux/can.h
3946 F:      include/uapi/linux/can/bcm.h
3947 F:      include/uapi/linux/can/gw.h
3948 F:      include/uapi/linux/can/isotp.h
3949 F:      include/uapi/linux/can/raw.h
3950 F:      net/can/
3951
3952 CAN-J1939 NETWORK LAYER
3953 M:      Robin van der Gracht <robin@protonic.nl>
3954 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3955 R:      kernel@pengutronix.de
3956 L:      linux-can@vger.kernel.org
3957 S:      Maintained
3958 F:      Documentation/networking/j1939.rst
3959 F:      include/uapi/linux/can/j1939.h
3960 F:      net/can/j1939/
3961
3962 CAPABILITIES
3963 M:      Serge Hallyn <serge@hallyn.com>
3964 L:      linux-security-module@vger.kernel.org
3965 S:      Supported
3966 F:      include/linux/capability.h
3967 F:      include/uapi/linux/capability.h
3968 F:      kernel/capability.c
3969 F:      security/commoncap.c
3970
3971 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3972 M:      Kevin Tsai <ktsai@capellamicro.com>
3973 S:      Maintained
3974 F:      drivers/iio/light/cm*
3975
3976 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3977 M:      Christian Lamparter <chunkeey@googlemail.com>
3978 L:      linux-wireless@vger.kernel.org
3979 S:      Maintained
3980 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
3981 F:      drivers/net/wireless/ath/carl9170/
3982
3983 CAVIUM I2C DRIVER
3984 M:      Robert Richter <rric@kernel.org>
3985 S:      Odd Fixes
3986 W:      http://www.marvell.com
3987 F:      drivers/i2c/busses/i2c-octeon*
3988 F:      drivers/i2c/busses/i2c-thunderx*
3989
3990 CAVIUM LIQUIDIO NETWORK DRIVER
3991 M:      Derek Chickles <dchickles@marvell.com>
3992 M:      Satanand Burla <sburla@marvell.com>
3993 M:      Felix Manlunas <fmanlunas@marvell.com>
3994 L:      netdev@vger.kernel.org
3995 S:      Supported
3996 W:      http://www.marvell.com
3997 F:      drivers/net/ethernet/cavium/liquidio/
3998
3999 CAVIUM MMC DRIVER
4000 M:      Robert Richter <rric@kernel.org>
4001 S:      Odd Fixes
4002 W:      http://www.marvell.com
4003 F:      drivers/mmc/host/cavium*
4004
4005 CAVIUM OCTEON-TX CRYPTO DRIVER
4006 M:      George Cherian <gcherian@marvell.com>
4007 L:      linux-crypto@vger.kernel.org
4008 S:      Supported
4009 W:      http://www.marvell.com
4010 F:      drivers/crypto/cavium/cpt/
4011
4012 CAVIUM THUNDERX2 ARM64 SOC
4013 M:      Robert Richter <rric@kernel.org>
4014 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4015 S:      Odd Fixes
4016 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4017 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4018
4019 CC2520 IEEE-802.15.4 RADIO DRIVER
4020 M:      Varka Bhadram <varkabhadram@gmail.com>
4021 L:      linux-wpan@vger.kernel.org
4022 S:      Maintained
4023 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4024 F:      drivers/net/ieee802154/cc2520.c
4025 F:      include/linux/spi/cc2520.h
4026
4027 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4028 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4029 L:      linux-crypto@vger.kernel.org
4030 S:      Supported
4031 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4032 F:      drivers/crypto/ccree/
4033
4034 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4035 M:      Hadar Gat <hadar.gat@arm.com>
4036 L:      linux-crypto@vger.kernel.org
4037 S:      Supported
4038 F:      drivers/char/hw_random/cctrng.c
4039 F:      drivers/char/hw_random/cctrng.h
4040 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4041 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4042
4043 CEC FRAMEWORK
4044 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4045 L:      linux-media@vger.kernel.org
4046 S:      Supported
4047 W:      http://linuxtv.org
4048 T:      git git://linuxtv.org/media_tree.git
4049 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4050 F:      Documentation/devicetree/bindings/media/cec.txt
4051 F:      Documentation/driver-api/media/cec-core.rst
4052 F:      Documentation/userspace-api/media/cec
4053 F:      drivers/media/cec/
4054 F:      drivers/media/rc/keymaps/rc-cec.c
4055 F:      include/media/cec-notifier.h
4056 F:      include/media/cec.h
4057 F:      include/uapi/linux/cec-funcs.h
4058 F:      include/uapi/linux/cec.h
4059
4060 CEC GPIO DRIVER
4061 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4062 L:      linux-media@vger.kernel.org
4063 S:      Supported
4064 W:      http://linuxtv.org
4065 T:      git git://linuxtv.org/media_tree.git
4066 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4067 F:      drivers/media/cec/platform/cec-gpio/
4068
4069 CELL BROADBAND ENGINE ARCHITECTURE
4070 M:      Arnd Bergmann <arnd@arndb.de>
4071 L:      linuxppc-dev@lists.ozlabs.org
4072 S:      Supported
4073 W:      http://www.ibm.com/developerworks/power/cell/
4074 F:      arch/powerpc/include/asm/cell*.h
4075 F:      arch/powerpc/include/asm/spu*.h
4076 F:      arch/powerpc/include/uapi/asm/spu*.h
4077 F:      arch/powerpc/platforms/cell/
4078
4079 CELLWISE CW2015 BATTERY DRIVER
4080 M:      Tobias Schrammm <t.schramm@manjaro.org>
4081 S:      Maintained
4082 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4083 F:      drivers/power/supply/cw2015_battery.c
4084
4085 CEPH COMMON CODE (LIBCEPH)
4086 M:      Ilya Dryomov <idryomov@gmail.com>
4087 M:      Jeff Layton <jlayton@kernel.org>
4088 L:      ceph-devel@vger.kernel.org
4089 S:      Supported
4090 W:      http://ceph.com/
4091 T:      git git://github.com/ceph/ceph-client.git
4092 F:      include/linux/ceph/
4093 F:      include/linux/crush/
4094 F:      net/ceph/
4095
4096 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4097 M:      Jeff Layton <jlayton@kernel.org>
4098 M:      Ilya Dryomov <idryomov@gmail.com>
4099 L:      ceph-devel@vger.kernel.org
4100 S:      Supported
4101 W:      http://ceph.com/
4102 T:      git git://github.com/ceph/ceph-client.git
4103 F:      Documentation/filesystems/ceph.rst
4104 F:      fs/ceph/
4105
4106 CERTIFICATE HANDLING
4107 M:      David Howells <dhowells@redhat.com>
4108 M:      David Woodhouse <dwmw2@infradead.org>
4109 L:      keyrings@vger.kernel.org
4110 S:      Maintained
4111 F:      Documentation/admin-guide/module-signing.rst
4112 F:      certs/
4113 F:      scripts/extract-cert.c
4114 F:      scripts/sign-file.c
4115
4116 CFAG12864B LCD DRIVER
4117 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4118 S:      Maintained
4119 F:      drivers/auxdisplay/cfag12864b.c
4120 F:      include/linux/cfag12864b.h
4121
4122 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4123 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4124 S:      Maintained
4125 F:      drivers/auxdisplay/cfag12864bfb.c
4126 F:      include/linux/cfag12864b.h
4127
4128 CHAR and MISC DRIVERS
4129 M:      Arnd Bergmann <arnd@arndb.de>
4130 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4131 S:      Supported
4132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4133 F:      drivers/char/
4134 F:      drivers/misc/
4135 F:      include/linux/miscdevice.h
4136 X:      drivers/char/agp/
4137 X:      drivers/char/hw_random/
4138 X:      drivers/char/ipmi/
4139 X:      drivers/char/random.c
4140 X:      drivers/char/tpm/
4141
4142 CHECKPATCH
4143 M:      Andy Whitcroft <apw@canonical.com>
4144 M:      Joe Perches <joe@perches.com>
4145 S:      Maintained
4146 F:      scripts/checkpatch.pl
4147
4148 CHINESE DOCUMENTATION
4149 M:      Harry Wei <harryxiyou@gmail.com>
4150 M:      Alex Shi <alex.shi@linux.alibaba.com>
4151 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
4152 S:      Maintained
4153 F:      Documentation/translations/zh_CN/
4154
4155 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4156 M:      Peter Chen <peter.chen@kernel.org>
4157 L:      linux-usb@vger.kernel.org
4158 S:      Maintained
4159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4160 F:      drivers/usb/chipidea/
4161
4162 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4163 M:      Hans de Goede <hdegoede@redhat.com>
4164 L:      linux-input@vger.kernel.org
4165 S:      Maintained
4166 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4167 F:      drivers/input/touchscreen/chipone_icn8318.c
4168
4169 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4170 M:      Hans de Goede <hdegoede@redhat.com>
4171 L:      linux-input@vger.kernel.org
4172 S:      Maintained
4173 F:      drivers/input/touchscreen/chipone_icn8505.c
4174
4175 CHROME HARDWARE PLATFORM SUPPORT
4176 M:      Benson Leung <bleung@chromium.org>
4177 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4178 S:      Maintained
4179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4180 F:      drivers/platform/chrome/
4181
4182 CHROMEOS EC CODEC DRIVER
4183 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4184 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4185 R:      Guenter Roeck <groeck@chromium.org>
4186 S:      Maintained
4187 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4188 F:      sound/soc/codecs/cros_ec_codec.*
4189
4190 CHROMEOS EC SUBDRIVERS
4191 M:      Benson Leung <bleung@chromium.org>
4192 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4193 R:      Guenter Roeck <groeck@chromium.org>
4194 S:      Maintained
4195 F:      drivers/power/supply/cros_usbpd-charger.c
4196 N:      cros_ec
4197 N:      cros-ec
4198
4199 CHRONTEL CH7322 CEC DRIVER
4200 M:      Jeff Chase <jnchase@google.com>
4201 L:      linux-media@vger.kernel.org
4202 S:      Maintained
4203 T:      git git://linuxtv.org/media_tree.git
4204 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4205 F:      drivers/media/cec/i2c/ch7322.c
4206
4207 CIRRUS LOGIC AUDIO CODEC DRIVERS
4208 M:      James Schulman <james.schulman@cirrus.com>
4209 M:      David Rhodes <david.rhodes@cirrus.com>
4210 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4211 L:      patches@opensource.cirrus.com
4212 S:      Maintained
4213 F:      sound/soc/codecs/cs*
4214
4215 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4216 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4217 L:      netdev@vger.kernel.org
4218 S:      Maintained
4219 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4220
4221 CIRRUS LOGIC LOCHNAGAR DRIVER
4222 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4223 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4224 L:      patches@opensource.cirrus.com
4225 S:      Supported
4226 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4227 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4228 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4229 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4230 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4231 F:      Documentation/hwmon/lochnagar.rst
4232 F:      drivers/clk/clk-lochnagar.c
4233 F:      drivers/hwmon/lochnagar-hwmon.c
4234 F:      drivers/mfd/lochnagar-i2c.c
4235 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4236 F:      drivers/regulator/lochnagar-regulator.c
4237 F:      include/dt-bindings/clk/lochnagar.h
4238 F:      include/dt-bindings/pinctrl/lochnagar.h
4239 F:      include/linux/mfd/lochnagar*
4240 F:      sound/soc/codecs/lochnagar-sc.c
4241
4242 CIRRUS LOGIC MADERA CODEC DRIVERS
4243 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4244 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4245 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4246 L:      patches@opensource.cirrus.com
4247 S:      Supported
4248 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4249 T:      git https://github.com/CirrusLogic/linux-drivers.git
4250 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4251 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4252 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4253 F:      drivers/gpio/gpio-madera*
4254 F:      drivers/irqchip/irq-madera*
4255 F:      drivers/mfd/cs47l*
4256 F:      drivers/mfd/madera*
4257 F:      drivers/pinctrl/cirrus/*
4258 F:      include/dt-bindings/sound/madera*
4259 F:      include/linux/irqchip/irq-madera*
4260 F:      include/linux/mfd/madera/*
4261 F:      include/sound/madera*
4262 F:      sound/soc/codecs/cs47l*
4263 F:      sound/soc/codecs/madera*
4264
4265 CISCO FCOE HBA DRIVER
4266 M:      Satish Kharat <satishkh@cisco.com>
4267 M:      Sesidhar Baddela <sebaddel@cisco.com>
4268 M:      Karan Tilak Kumar <kartilak@cisco.com>
4269 L:      linux-scsi@vger.kernel.org
4270 S:      Supported
4271 F:      drivers/scsi/fnic/
4272
4273 CISCO SCSI HBA DRIVER
4274 M:      Karan Tilak Kumar <kartilak@cisco.com>
4275 M:      Sesidhar Baddela <sebaddel@cisco.com>
4276 L:      linux-scsi@vger.kernel.org
4277 S:      Supported
4278 F:      drivers/scsi/snic/
4279
4280 CISCO VIC ETHERNET NIC DRIVER
4281 M:      Christian Benvenuti <benve@cisco.com>
4282 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4283 S:      Supported
4284 F:      drivers/net/ethernet/cisco/enic/
4285
4286 CISCO VIC LOW LATENCY NIC DRIVER
4287 M:      Christian Benvenuti <benve@cisco.com>
4288 M:      Nelson Escobar <neescoba@cisco.com>
4289 S:      Supported
4290 F:      drivers/infiniband/hw/usnic/
4291
4292 CLANG-FORMAT FILE
4293 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4294 S:      Maintained
4295 F:      .clang-format
4296
4297 CLANG/LLVM BUILD SUPPORT
4298 M:      Nathan Chancellor <nathan@kernel.org>
4299 M:      Nick Desaulniers <ndesaulniers@google.com>
4300 L:      clang-built-linux@googlegroups.com
4301 S:      Supported
4302 W:      https://clangbuiltlinux.github.io/
4303 B:      https://github.com/ClangBuiltLinux/linux/issues
4304 C:      irc://chat.freenode.net/clangbuiltlinux
4305 F:      Documentation/kbuild/llvm.rst
4306 F:      include/linux/compiler-clang.h
4307 F:      scripts/clang-tools/
4308 F:      scripts/clang-version.sh
4309 F:      scripts/lld-version.sh
4310 K:      \b(?i:clang|llvm)\b
4311
4312 CLEANCACHE API
4313 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4314 L:      linux-kernel@vger.kernel.org
4315 S:      Maintained
4316 F:      include/linux/cleancache.h
4317 F:      mm/cleancache.c
4318
4319 CLK API
4320 M:      Russell King <linux@armlinux.org.uk>
4321 L:      linux-clk@vger.kernel.org
4322 S:      Maintained
4323 F:      include/linux/clk.h
4324
4325 CLOCKSOURCE, CLOCKEVENT DRIVERS
4326 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4327 M:      Thomas Gleixner <tglx@linutronix.de>
4328 L:      linux-kernel@vger.kernel.org
4329 S:      Supported
4330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4331 F:      Documentation/devicetree/bindings/timer/
4332 F:      drivers/clocksource/
4333
4334 CMPC ACPI DRIVER
4335 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4336 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4337 L:      platform-driver-x86@vger.kernel.org
4338 S:      Supported
4339 F:      drivers/platform/x86/classmate-laptop.c
4340
4341 COBALT MEDIA DRIVER
4342 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4343 L:      linux-media@vger.kernel.org
4344 S:      Supported
4345 W:      https://linuxtv.org
4346 T:      git git://linuxtv.org/media_tree.git
4347 F:      drivers/media/pci/cobalt/
4348
4349 COCCINELLE/Semantic Patches (SmPL)
4350 M:      Julia Lawall <Julia.Lawall@inria.fr>
4351 M:      Gilles Muller <Gilles.Muller@inria.fr>
4352 M:      Nicolas Palix <nicolas.palix@imag.fr>
4353 M:      Michal Marek <michal.lkml@markovi.net>
4354 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4355 S:      Supported
4356 W:      http://coccinelle.lip6.fr/
4357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4358 F:      Documentation/dev-tools/coccinelle.rst
4359 F:      scripts/coccicheck
4360 F:      scripts/coccinelle/
4361
4362 CODA FILE SYSTEM
4363 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4364 M:      coda@cs.cmu.edu
4365 L:      codalist@coda.cs.cmu.edu
4366 S:      Maintained
4367 W:      http://www.coda.cs.cmu.edu/
4368 F:      Documentation/filesystems/coda.rst
4369 F:      fs/coda/
4370 F:      include/linux/coda*.h
4371 F:      include/uapi/linux/coda*.h
4372
4373 CODA V4L2 MEM2MEM DRIVER
4374 M:      Philipp Zabel <p.zabel@pengutronix.de>
4375 L:      linux-media@vger.kernel.org
4376 S:      Maintained
4377 F:      Documentation/devicetree/bindings/media/coda.yaml
4378 F:      drivers/media/platform/coda/
4379
4380 CODE OF CONDUCT
4381 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4382 S:      Supported
4383 F:      Documentation/process/code-of-conduct-interpretation.rst
4384 F:      Documentation/process/code-of-conduct.rst
4385
4386 COMMON CLK FRAMEWORK
4387 M:      Michael Turquette <mturquette@baylibre.com>
4388 M:      Stephen Boyd <sboyd@kernel.org>
4389 L:      linux-clk@vger.kernel.org
4390 S:      Maintained
4391 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4393 F:      Documentation/devicetree/bindings/clock/
4394 F:      drivers/clk/
4395 F:      include/linux/clk-pr*
4396 F:      include/linux/clk/
4397 F:      include/linux/of_clk.h
4398 X:      drivers/clk/clkdev.c
4399
4400 COMMON INTERNET FILE SYSTEM (CIFS)
4401 M:      Steve French <sfrench@samba.org>
4402 L:      linux-cifs@vger.kernel.org
4403 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4404 S:      Supported
4405 W:      http://linux-cifs.samba.org/
4406 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4407 F:      Documentation/admin-guide/cifs/
4408 F:      fs/cifs/
4409
4410 COMPACTPCI HOTPLUG CORE
4411 M:      Scott Murray <scott@spiteful.org>
4412 L:      linux-pci@vger.kernel.org
4413 S:      Maintained
4414 F:      drivers/pci/hotplug/cpci_hotplug*
4415
4416 COMPACTPCI HOTPLUG GENERIC DRIVER
4417 M:      Scott Murray <scott@spiteful.org>
4418 L:      linux-pci@vger.kernel.org
4419 S:      Maintained
4420 F:      drivers/pci/hotplug/cpcihp_generic.c
4421
4422 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4423 M:      Scott Murray <scott@spiteful.org>
4424 L:      linux-pci@vger.kernel.org
4425 S:      Maintained
4426 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4427
4428 COMPAL LAPTOP SUPPORT
4429 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4430 L:      platform-driver-x86@vger.kernel.org
4431 S:      Maintained
4432 F:      drivers/platform/x86/compal-laptop.c
4433
4434 COMPILER ATTRIBUTES
4435 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4436 S:      Maintained
4437 F:      include/linux/compiler_attributes.h
4438
4439 CONEXANT ACCESSRUNNER USB DRIVER
4440 L:      accessrunner-general@lists.sourceforge.net
4441 S:      Orphan
4442 W:      http://accessrunner.sourceforge.net/
4443 F:      drivers/usb/atm/cxacru.c
4444
4445 CONFIGFS
4446 M:      Joel Becker <jlbec@evilplan.org>
4447 M:      Christoph Hellwig <hch@lst.de>
4448 S:      Supported
4449 T:      git git://git.infradead.org/users/hch/configfs.git
4450 F:      fs/configfs/
4451 F:      include/linux/configfs.h
4452 F:      samples/configfs/
4453
4454 CONSOLE SUBSYSTEM
4455 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4456 S:      Supported
4457 F:      drivers/video/console/
4458 F:      include/linux/console*
4459
4460 CONTROL GROUP (CGROUP)
4461 M:      Tejun Heo <tj@kernel.org>
4462 M:      Zefan Li <lizefan.x@bytedance.com>
4463 M:      Johannes Weiner <hannes@cmpxchg.org>
4464 L:      cgroups@vger.kernel.org
4465 S:      Maintained
4466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4467 F:      Documentation/admin-guide/cgroup-v1/
4468 F:      Documentation/admin-guide/cgroup-v2.rst
4469 F:      include/linux/cgroup*
4470 F:      kernel/cgroup/
4471
4472 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4473 M:      Tejun Heo <tj@kernel.org>
4474 M:      Jens Axboe <axboe@kernel.dk>
4475 L:      cgroups@vger.kernel.org
4476 L:      linux-block@vger.kernel.org
4477 T:      git git://git.kernel.dk/linux-block
4478 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4479 F:      block/bfq-cgroup.c
4480 F:      block/blk-cgroup.c
4481 F:      block/blk-iolatency.c
4482 F:      block/blk-throttle.c
4483 F:      include/linux/blk-cgroup.h
4484
4485 CONTROL GROUP - CPUSET
4486 M:      Zefan Li <lizefan.x@bytedance.com>
4487 L:      cgroups@vger.kernel.org
4488 S:      Maintained
4489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4490 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4491 F:      include/linux/cpuset.h
4492 F:      kernel/cgroup/cpuset.c
4493
4494 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4495 M:      Johannes Weiner <hannes@cmpxchg.org>
4496 M:      Michal Hocko <mhocko@kernel.org>
4497 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4498 L:      cgroups@vger.kernel.org
4499 L:      linux-mm@kvack.org
4500 S:      Maintained
4501 F:      mm/memcontrol.c
4502 F:      mm/swap_cgroup.c
4503
4504 CORETEMP HARDWARE MONITORING DRIVER
4505 M:      Fenghua Yu <fenghua.yu@intel.com>
4506 L:      linux-hwmon@vger.kernel.org
4507 S:      Maintained
4508 F:      Documentation/hwmon/coretemp.rst
4509 F:      drivers/hwmon/coretemp.c
4510
4511 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4512 M:      Marius Zachmann <mail@mariuszachmann.de>
4513 L:      linux-hwmon@vger.kernel.org
4514 S:      Maintained
4515 F:      drivers/hwmon/corsair-cpro.c
4516
4517 CORSAIR-PSU HARDWARE MONITOR DRIVER
4518 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4519 L:      linux-hwmon@vger.kernel.org
4520 S:      Maintained
4521 F:      Documentation/hwmon/corsair-psu.rst
4522 F:      drivers/hwmon/corsair-psu.c
4523
4524 COSA/SRP SYNC SERIAL DRIVER
4525 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4526 S:      Maintained
4527 W:      http://www.fi.muni.cz/~kas/cosa/
4528 F:      drivers/net/wan/cosa*
4529
4530 COUNTER SUBSYSTEM
4531 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4532 L:      linux-iio@vger.kernel.org
4533 S:      Maintained
4534 F:      Documentation/ABI/testing/sysfs-bus-counter*
4535 F:      Documentation/driver-api/generic-counter.rst
4536 F:      drivers/counter/
4537 F:      include/linux/counter.h
4538 F:      include/linux/counter_enum.h
4539
4540 CPMAC ETHERNET DRIVER
4541 M:      Florian Fainelli <f.fainelli@gmail.com>
4542 L:      netdev@vger.kernel.org
4543 S:      Maintained
4544 F:      drivers/net/ethernet/ti/cpmac.c
4545
4546 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4547 M:      Viresh Kumar <viresh.kumar@linaro.org>
4548 M:      Sudeep Holla <sudeep.holla@arm.com>
4549 L:      linux-pm@vger.kernel.org
4550 S:      Maintained
4551 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4552 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4553
4554 CPU FREQUENCY SCALING FRAMEWORK
4555 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4556 M:      Viresh Kumar <viresh.kumar@linaro.org>
4557 L:      linux-pm@vger.kernel.org
4558 S:      Maintained
4559 B:      https://bugzilla.kernel.org
4560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4562 F:      Documentation/admin-guide/pm/cpufreq.rst
4563 F:      Documentation/admin-guide/pm/intel_pstate.rst
4564 F:      Documentation/cpu-freq/
4565 F:      Documentation/devicetree/bindings/cpufreq/
4566 F:      drivers/cpufreq/
4567 F:      include/linux/cpufreq.h
4568 F:      include/linux/sched/cpufreq.h
4569 F:      kernel/sched/cpufreq*.c
4570 F:      tools/testing/selftests/cpufreq/
4571
4572 CPU IDLE TIME MANAGEMENT FRAMEWORK
4573 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4574 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4575 L:      linux-pm@vger.kernel.org
4576 S:      Maintained
4577 B:      https://bugzilla.kernel.org
4578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4579 F:      Documentation/admin-guide/pm/cpuidle.rst
4580 F:      Documentation/driver-api/pm/cpuidle.rst
4581 F:      drivers/cpuidle/
4582 F:      include/linux/cpuidle.h
4583
4584 CPU POWER MONITORING SUBSYSTEM
4585 M:      Thomas Renninger <trenn@suse.com>
4586 M:      Shuah Khan <shuah@kernel.org>
4587 M:      Shuah Khan <skhan@linuxfoundation.org>
4588 L:      linux-pm@vger.kernel.org
4589 S:      Maintained
4590 F:      tools/power/cpupower/
4591
4592 CPUID/MSR DRIVER
4593 M:      "H. Peter Anvin" <hpa@zytor.com>
4594 S:      Maintained
4595 F:      arch/x86/kernel/cpuid.c
4596 F:      arch/x86/kernel/msr.c
4597
4598 CPUIDLE DRIVER - ARM BIG LITTLE
4599 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4600 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4601 L:      linux-pm@vger.kernel.org
4602 L:      linux-arm-kernel@lists.infradead.org
4603 S:      Maintained
4604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4605 F:      drivers/cpuidle/cpuidle-big_little.c
4606
4607 CPUIDLE DRIVER - ARM EXYNOS
4608 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4609 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4610 M:      Kukjin Kim <kgene@kernel.org>
4611 L:      linux-pm@vger.kernel.org
4612 L:      linux-samsung-soc@vger.kernel.org
4613 S:      Supported
4614 F:      arch/arm/mach-exynos/pm.c
4615 F:      drivers/cpuidle/cpuidle-exynos.c
4616 F:      include/linux/platform_data/cpuidle-exynos.h
4617
4618 CPUIDLE DRIVER - ARM PSCI
4619 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4620 M:      Sudeep Holla <sudeep.holla@arm.com>
4621 L:      linux-pm@vger.kernel.org
4622 L:      linux-arm-kernel@lists.infradead.org
4623 S:      Supported
4624 F:      drivers/cpuidle/cpuidle-psci.c
4625
4626 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4627 M:      Ulf Hansson <ulf.hansson@linaro.org>
4628 L:      linux-pm@vger.kernel.org
4629 L:      linux-arm-kernel@lists.infradead.org
4630 S:      Supported
4631 F:      drivers/cpuidle/cpuidle-psci.h
4632 F:      drivers/cpuidle/cpuidle-psci-domain.c
4633
4634 CRAMFS FILESYSTEM
4635 M:      Nicolas Pitre <nico@fluxnic.net>
4636 S:      Maintained
4637 F:      Documentation/filesystems/cramfs.rst
4638 F:      fs/cramfs/
4639
4640 CREATIVE SB0540
4641 M:      Bastien Nocera <hadess@hadess.net>
4642 L:      linux-input@vger.kernel.org
4643 S:      Maintained
4644 F:      drivers/hid/hid-creative-sb0540.c
4645
4646 CRYPTO API
4647 M:      Herbert Xu <herbert@gondor.apana.org.au>
4648 M:      "David S. Miller" <davem@davemloft.net>
4649 L:      linux-crypto@vger.kernel.org
4650 S:      Maintained
4651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4653 F:      Documentation/crypto/
4654 F:      Documentation/devicetree/bindings/crypto/
4655 F:      arch/*/crypto/
4656 F:      crypto/
4657 F:      drivers/crypto/
4658 F:      include/crypto/
4659 F:      include/linux/crypto*
4660 F:      lib/crypto/
4661
4662 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4663 M:      Neil Horman <nhorman@tuxdriver.com>
4664 L:      linux-crypto@vger.kernel.org
4665 S:      Maintained
4666 F:      crypto/ansi_cprng.c
4667 F:      crypto/rng.c
4668
4669 CS3308 MEDIA DRIVER
4670 M:      Hans Verkuil <hverkuil@xs4all.nl>
4671 L:      linux-media@vger.kernel.org
4672 S:      Odd Fixes
4673 W:      http://linuxtv.org
4674 T:      git git://linuxtv.org/media_tree.git
4675 F:      drivers/media/i2c/cs3308.c
4676
4677 CS5535 Audio ALSA driver
4678 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4679 S:      Maintained
4680 F:      sound/pci/cs5535audio/
4681
4682 CSI DRIVERS FOR ALLWINNER V3s
4683 M:      Yong Deng <yong.deng@magewell.com>
4684 L:      linux-media@vger.kernel.org
4685 S:      Maintained
4686 T:      git git://linuxtv.org/media_tree.git
4687 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4688 F:      drivers/media/platform/sunxi/sun6i-csi/
4689
4690 CW1200 WLAN driver
4691 M:      Solomon Peachy <pizza@shaftnet.org>
4692 S:      Maintained
4693 F:      drivers/net/wireless/st/cw1200/
4694
4695 CX18 VIDEO4LINUX DRIVER
4696 M:      Andy Walls <awalls@md.metrocast.net>
4697 L:      linux-media@vger.kernel.org
4698 S:      Maintained
4699 W:      https://linuxtv.org
4700 T:      git git://linuxtv.org/media_tree.git
4701 F:      drivers/media/pci/cx18/
4702 F:      include/uapi/linux/ivtv*
4703
4704 CX2341X MPEG ENCODER HELPER MODULE
4705 M:      Hans Verkuil <hverkuil@xs4all.nl>
4706 L:      linux-media@vger.kernel.org
4707 S:      Maintained
4708 W:      https://linuxtv.org
4709 T:      git git://linuxtv.org/media_tree.git
4710 F:      drivers/media/common/cx2341x*
4711 F:      include/media/drv-intf/cx2341x.h
4712
4713 CX24120 MEDIA DRIVER
4714 M:      Jemma Denson <jdenson@gmail.com>
4715 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4716 L:      linux-media@vger.kernel.org
4717 S:      Maintained
4718 W:      https://linuxtv.org
4719 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4720 F:      drivers/media/dvb-frontends/cx24120*
4721
4722 CX88 VIDEO4LINUX DRIVER
4723 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4724 L:      linux-media@vger.kernel.org
4725 S:      Odd fixes
4726 W:      https://linuxtv.org
4727 T:      git git://linuxtv.org/media_tree.git
4728 F:      Documentation/driver-api/media/drivers/cx88*
4729 F:      drivers/media/pci/cx88/
4730
4731 CXD2820R MEDIA DRIVER
4732 M:      Antti Palosaari <crope@iki.fi>
4733 L:      linux-media@vger.kernel.org
4734 S:      Maintained
4735 W:      https://linuxtv.org
4736 W:      http://palosaari.fi/linux/
4737 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4738 T:      git git://linuxtv.org/anttip/media_tree.git
4739 F:      drivers/media/dvb-frontends/cxd2820r*
4740
4741 CXGB3 ETHERNET DRIVER (CXGB3)
4742 M:      Raju Rangoju <rajur@chelsio.com>
4743 L:      netdev@vger.kernel.org
4744 S:      Supported
4745 W:      http://www.chelsio.com
4746 F:      drivers/net/ethernet/chelsio/cxgb3/
4747
4748 CXGB3 ISCSI DRIVER (CXGB3I)
4749 M:      Karen Xie <kxie@chelsio.com>
4750 L:      linux-scsi@vger.kernel.org
4751 S:      Supported
4752 W:      http://www.chelsio.com
4753 F:      drivers/scsi/cxgbi/cxgb3i
4754
4755 CXGB4 CRYPTO DRIVER (chcr)
4756 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4757 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4758 M:      Rohit Maheshwari <rohitm@chelsio.com>
4759 L:      linux-crypto@vger.kernel.org
4760 S:      Supported
4761 W:      http://www.chelsio.com
4762 F:      drivers/crypto/chelsio
4763
4764 CXGB4 INLINE CRYPTO DRIVER
4765 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4766 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4767 M:      Rohit Maheshwari <rohitm@chelsio.com>
4768 L:      netdev@vger.kernel.org
4769 S:      Supported
4770 W:      http://www.chelsio.com
4771 F:      drivers/net/ethernet/chelsio/inline_crypto/
4772
4773 CXGB4 ETHERNET DRIVER (CXGB4)
4774 M:      Raju Rangoju <rajur@chelsio.com>
4775 L:      netdev@vger.kernel.org
4776 S:      Supported
4777 W:      http://www.chelsio.com
4778 F:      drivers/net/ethernet/chelsio/cxgb4/
4779
4780 CXGB4 ISCSI DRIVER (CXGB4I)
4781 M:      Karen Xie <kxie@chelsio.com>
4782 L:      linux-scsi@vger.kernel.org
4783 S:      Supported
4784 W:      http://www.chelsio.com
4785 F:      drivers/scsi/cxgbi/cxgb4i
4786
4787 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4788 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4789 L:      linux-rdma@vger.kernel.org
4790 S:      Supported
4791 W:      http://www.openfabrics.org
4792 F:      drivers/infiniband/hw/cxgb4/
4793 F:      include/uapi/rdma/cxgb4-abi.h
4794
4795 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4796 M:      Raju Rangoju <rajur@chelsio.com>
4797 L:      netdev@vger.kernel.org
4798 S:      Supported
4799 W:      http://www.chelsio.com
4800 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4801
4802 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4803 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4804 M:      Andrew Donnellan <ajd@linux.ibm.com>
4805 L:      linuxppc-dev@lists.ozlabs.org
4806 S:      Supported
4807 F:      Documentation/ABI/testing/sysfs-class-cxl
4808 F:      Documentation/powerpc/cxl.rst
4809 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4810 F:      drivers/misc/cxl/
4811 F:      include/misc/cxl*
4812 F:      include/uapi/misc/cxl.h
4813
4814 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4815 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4816 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4817 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4818 L:      linux-scsi@vger.kernel.org
4819 S:      Supported
4820 F:      Documentation/powerpc/cxlflash.rst
4821 F:      drivers/scsi/cxlflash/
4822 F:      include/uapi/scsi/cxlflash_ioctl.h
4823
4824 CYBERPRO FB DRIVER
4825 M:      Russell King <linux@armlinux.org.uk>
4826 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4827 S:      Maintained
4828 W:      http://www.armlinux.org.uk/
4829 F:      drivers/video/fbdev/cyber2000fb.*
4830
4831 CYCLADES ASYNC MUX DRIVER
4832 S:      Orphan
4833 W:      http://www.cyclades.com/
4834 F:      drivers/tty/cyclades.c
4835 F:      include/linux/cyclades.h
4836 F:      include/uapi/linux/cyclades.h
4837
4838 CYCLADES PC300 DRIVER
4839 S:      Orphan
4840 W:      http://www.cyclades.com/
4841 F:      drivers/net/wan/pc300*
4842
4843 CYPRESS_FIRMWARE MEDIA DRIVER
4844 M:      Antti Palosaari <crope@iki.fi>
4845 L:      linux-media@vger.kernel.org
4846 S:      Maintained
4847 W:      https://linuxtv.org
4848 W:      http://palosaari.fi/linux/
4849 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4850 T:      git git://linuxtv.org/anttip/media_tree.git
4851 F:      drivers/media/common/cypress_firmware*
4852
4853 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
4854 M:      Linus Walleij <linus.walleij@linaro.org>
4855 L:      linux-input@vger.kernel.org
4856 S:      Maintained
4857 F:      drivers/input/touchscreen/cy8ctma140.c
4858
4859 CYTTSP TOUCHSCREEN DRIVER
4860 M:      Ferruh Yigit <fery@cypress.com>
4861 L:      linux-input@vger.kernel.org
4862 S:      Supported
4863 F:      drivers/input/touchscreen/cyttsp*
4864 F:      include/linux/input/cyttsp.h
4865
4866 D-LINK DIR-685 TOUCHKEYS DRIVER
4867 M:      Linus Walleij <linus.walleij@linaro.org>
4868 L:      linux-input@vger.kernel.org
4869 S:      Supported
4870 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4871
4872 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4873 M:      Joshua Kinard <kumba@gentoo.org>
4874 S:      Maintained
4875 F:      drivers/rtc/rtc-ds1685.c
4876 F:      include/linux/rtc/ds1685.h
4877
4878 DAMA SLAVE for AX.25
4879 M:      Joerg Reuter <jreuter@yaina.de>
4880 L:      linux-hams@vger.kernel.org
4881 S:      Maintained
4882 W:      http://yaina.de/jreuter/
4883 W:      http://www.qsl.net/dl1bke/
4884 F:      net/ax25/af_ax25.c
4885 F:      net/ax25/ax25_dev.c
4886 F:      net/ax25/ax25_ds_*
4887 F:      net/ax25/ax25_in.c
4888 F:      net/ax25/ax25_out.c
4889 F:      net/ax25/ax25_timer.c
4890 F:      net/ax25/sysctl_net_ax25.c
4891
4892 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4893 L:      netdev@vger.kernel.org
4894 S:      Orphan
4895 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
4896 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4897
4898 DC390/AM53C974 SCSI driver
4899 M:      Hannes Reinecke <hare@suse.com>
4900 L:      linux-scsi@vger.kernel.org
4901 S:      Maintained
4902 F:      drivers/scsi/am53c974.c
4903
4904 DC395x SCSI driver
4905 M:      Oliver Neukum <oliver@neukum.org>
4906 M:      Ali Akcaagac <aliakc@web.de>
4907 M:      Jamie Lenehan <lenehan@twibble.org>
4908 L:      dc395x@twibble.org
4909 S:      Maintained
4910 W:      http://twibble.org/dist/dc395x/
4911 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4912 F:      Documentation/scsi/dc395x.rst
4913 F:      drivers/scsi/dc395x.*
4914
4915 DCCP PROTOCOL
4916 L:      dccp@vger.kernel.org
4917 S:      Orphan
4918 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4919 F:      include/linux/dccp.h
4920 F:      include/linux/tfrc.h
4921 F:      include/uapi/linux/dccp.h
4922 F:      net/dccp/
4923
4924 DECnet NETWORK LAYER
4925 L:      linux-decnet-user@lists.sourceforge.net
4926 S:      Orphan
4927 W:      http://linux-decnet.sourceforge.net
4928 F:      Documentation/networking/decnet.rst
4929 F:      net/decnet/
4930
4931 DECSTATION PLATFORM SUPPORT
4932 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
4933 L:      linux-mips@vger.kernel.org
4934 S:      Maintained
4935 W:      http://www.linux-mips.org/wiki/DECstation
4936 F:      arch/mips/dec/
4937 F:      arch/mips/include/asm/dec/
4938 F:      arch/mips/include/asm/mach-dec/
4939
4940 DEFXX FDDI NETWORK DRIVER
4941 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
4942 S:      Maintained
4943 F:      drivers/net/fddi/defxx.*
4944
4945 DEFZA FDDI NETWORK DRIVER
4946 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
4947 S:      Maintained
4948 F:      drivers/net/fddi/defza.*
4949
4950 DEINTERLACE DRIVERS FOR ALLWINNER H3
4951 M:      Jernej Skrabec <jernej.skrabec@siol.net>
4952 L:      linux-media@vger.kernel.org
4953 S:      Maintained
4954 T:      git git://linuxtv.org/media_tree.git
4955 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4956 F:      drivers/media/platform/sunxi/sun8i-di/
4957
4958 DELL LAPTOP DRIVER
4959 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4960 M:      Pali Rohár <pali@kernel.org>
4961 L:      platform-driver-x86@vger.kernel.org
4962 S:      Maintained
4963 F:      drivers/platform/x86/dell/dell-laptop.c
4964
4965 DELL LAPTOP FREEFALL DRIVER
4966 M:      Pali Rohár <pali@kernel.org>
4967 S:      Maintained
4968 F:      drivers/platform/x86/dell/dell-smo8800.c
4969
4970 DELL LAPTOP RBTN DRIVER
4971 M:      Pali Rohár <pali@kernel.org>
4972 S:      Maintained
4973 F:      drivers/platform/x86/dell/dell-rbtn.*
4974
4975 DELL LAPTOP SMM DRIVER
4976 M:      Pali Rohár <pali@kernel.org>
4977 S:      Maintained
4978 F:      drivers/hwmon/dell-smm-hwmon.c
4979 F:      include/uapi/linux/i8k.h
4980
4981 DELL REMOTE BIOS UPDATE DRIVER
4982 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4983 L:      platform-driver-x86@vger.kernel.org
4984 S:      Maintained
4985 F:      drivers/platform/x86/dell/dell_rbu.c
4986
4987 DELL SMBIOS DRIVER
4988 M:      Pali Rohár <pali@kernel.org>
4989 M:      Mario Limonciello <mario.limonciello@dell.com>
4990 L:      platform-driver-x86@vger.kernel.org
4991 S:      Maintained
4992 F:      drivers/platform/x86/dell/dell-smbios.*
4993
4994 DELL SMBIOS SMM DRIVER
4995 M:      Mario Limonciello <mario.limonciello@dell.com>
4996 L:      platform-driver-x86@vger.kernel.org
4997 S:      Maintained
4998 F:      drivers/platform/x86/dell/dell-smbios-smm.c
4999
5000 DELL SMBIOS WMI DRIVER
5001 M:      Mario Limonciello <mario.limonciello@dell.com>
5002 L:      platform-driver-x86@vger.kernel.org
5003 S:      Maintained
5004 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5005 F:      tools/wmi/dell-smbios-example.c
5006
5007 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5008 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5009 L:      platform-driver-x86@vger.kernel.org
5010 S:      Maintained
5011 F:      Documentation/driver-api/dcdbas.rst
5012 F:      drivers/platform/x86/dell/dcdbas.*
5013
5014 DELL WMI DESCRIPTOR DRIVER
5015 M:      Mario Limonciello <mario.limonciello@dell.com>
5016 S:      Maintained
5017 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5018
5019 DELL WMI SYSMAN DRIVER
5020 M:      Divya Bharathi <divya.bharathi@dell.com>
5021 M:      Mario Limonciello <mario.limonciello@dell.com>
5022 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5023 L:      platform-driver-x86@vger.kernel.org
5024 S:      Maintained
5025 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5026 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5027
5028 DELL WMI NOTIFICATIONS DRIVER
5029 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5030 M:      Pali Rohár <pali@kernel.org>
5031 S:      Maintained
5032 F:      drivers/platform/x86/dell/dell-wmi.c
5033
5034 DELTA ST MEDIA DRIVER
5035 M:      Hugues Fruchet <hugues.fruchet@st.com>
5036 L:      linux-media@vger.kernel.org
5037 S:      Supported
5038 W:      https://linuxtv.org
5039 T:      git git://linuxtv.org/media_tree.git
5040 F:      drivers/media/platform/sti/delta
5041
5042 DENALI NAND DRIVER
5043 L:      linux-mtd@lists.infradead.org
5044 S:      Orphan
5045 F:      drivers/mtd/nand/raw/denali*
5046
5047 DESIGNWARE EDMA CORE IP DRIVER
5048 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5049 L:      dmaengine@vger.kernel.org
5050 S:      Maintained
5051 F:      drivers/dma/dw-edma/
5052 F:      include/linux/dma/edma.h
5053
5054 DESIGNWARE USB2 DRD IP DRIVER
5055 M:      Minas Harutyunyan <hminas@synopsys.com>
5056 L:      linux-usb@vger.kernel.org
5057 S:      Maintained
5058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5059 F:      drivers/usb/dwc2/
5060
5061 DESIGNWARE USB3 DRD IP DRIVER
5062 M:      Felipe Balbi <balbi@kernel.org>
5063 L:      linux-usb@vger.kernel.org
5064 S:      Maintained
5065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5066 F:      drivers/usb/dwc3/
5067
5068 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5069 M:      Andreas Klinger <ak@it-klinger.de>
5070 L:      linux-iio@vger.kernel.org
5071 S:      Maintained
5072 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5073 F:      drivers/iio/proximity/srf*.c
5074
5075 DEVICE COREDUMP (DEV_COREDUMP)
5076 M:      Johannes Berg <johannes@sipsolutions.net>
5077 L:      linux-kernel@vger.kernel.org
5078 S:      Maintained
5079 F:      drivers/base/devcoredump.c
5080 F:      include/linux/devcoredump.h
5081
5082 DEVICE DEPENDENCY HELPER SCRIPT
5083 M:      Saravana Kannan <saravanak@google.com>
5084 L:      linux-kernel@vger.kernel.org
5085 S:      Maintained
5086 F:      scripts/dev-needs.sh
5087
5088 DEVICE DIRECT ACCESS (DAX)
5089 M:      Dan Williams <dan.j.williams@intel.com>
5090 M:      Vishal Verma <vishal.l.verma@intel.com>
5091 M:      Dave Jiang <dave.jiang@intel.com>
5092 L:      linux-nvdimm@lists.01.org
5093 S:      Supported
5094 F:      drivers/dax/
5095
5096 DEVICE FREQUENCY (DEVFREQ)
5097 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5098 M:      Kyungmin Park <kyungmin.park@samsung.com>
5099 M:      Chanwoo Choi <cw00.choi@samsung.com>
5100 L:      linux-pm@vger.kernel.org
5101 S:      Maintained
5102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5103 F:      Documentation/devicetree/bindings/devfreq/
5104 F:      drivers/devfreq/
5105 F:      include/linux/devfreq.h
5106 F:      include/trace/events/devfreq.h
5107
5108 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5109 M:      Chanwoo Choi <cw00.choi@samsung.com>
5110 L:      linux-pm@vger.kernel.org
5111 S:      Supported
5112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5113 F:      Documentation/devicetree/bindings/devfreq/event/
5114 F:      drivers/devfreq/devfreq-event.c
5115 F:      drivers/devfreq/event/
5116 F:      include/dt-bindings/pmu/exynos_ppmu.h
5117 F:      include/linux/devfreq-event.h
5118
5119 DEVICE NUMBER REGISTRY
5120 M:      Torben Mathiasen <device@lanana.org>
5121 S:      Maintained
5122 W:      http://lanana.org/docs/device-list/index.html
5123
5124 DEVICE-MAPPER  (LVM)
5125 M:      Alasdair Kergon <agk@redhat.com>
5126 M:      Mike Snitzer <snitzer@redhat.com>
5127 M:      dm-devel@redhat.com
5128 L:      dm-devel@redhat.com
5129 S:      Maintained
5130 W:      http://sources.redhat.com/dm
5131 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5133 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5134 F:      Documentation/admin-guide/device-mapper/
5135 F:      drivers/md/Kconfig
5136 F:      drivers/md/Makefile
5137 F:      drivers/md/dm*
5138 F:      drivers/md/persistent-data/
5139 F:      include/linux/device-mapper.h
5140 F:      include/linux/dm-*.h
5141 F:      include/uapi/linux/dm-*.h
5142
5143 DEVLINK
5144 M:      Jiri Pirko <jiri@nvidia.com>
5145 L:      netdev@vger.kernel.org
5146 S:      Supported
5147 F:      Documentation/networking/devlink
5148 F:      include/net/devlink.h
5149 F:      include/uapi/linux/devlink.h
5150 F:      net/core/devlink.c
5151
5152 DIALOG SEMICONDUCTOR DRIVERS
5153 M:      Support Opensource <support.opensource@diasemi.com>
5154 S:      Supported
5155 W:      http://www.dialog-semiconductor.com/products
5156 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5157 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5158 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5159 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5160 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5161 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5162 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5163 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5164 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5165 F:      Documentation/hwmon/da90??.rst
5166 F:      drivers/gpio/gpio-da90??.c
5167 F:      drivers/hwmon/da90??-hwmon.c
5168 F:      drivers/iio/adc/da91??-*.c
5169 F:      drivers/input/misc/da72??.[ch]
5170 F:      drivers/input/misc/da90??_onkey.c
5171 F:      drivers/input/touchscreen/da9052_tsi.c
5172 F:      drivers/leds/leds-da90??.c
5173 F:      drivers/mfd/da903x.c
5174 F:      drivers/mfd/da90??-*.c
5175 F:      drivers/mfd/da91??-*.c
5176 F:      drivers/pinctrl/pinctrl-da90??.c
5177 F:      drivers/power/supply/da9052-battery.c
5178 F:      drivers/power/supply/da91??-*.c
5179 F:      drivers/regulator/da9???-regulator.[ch]
5180 F:      drivers/regulator/slg51000-regulator.[ch]
5181 F:      drivers/rtc/rtc-da90??.c
5182 F:      drivers/thermal/da90??-thermal.c
5183 F:      drivers/video/backlight/da90??_bl.c
5184 F:      drivers/watchdog/da90??_wdt.c
5185 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5186 F:      include/linux/mfd/da903x.h
5187 F:      include/linux/mfd/da9052/
5188 F:      include/linux/mfd/da9055/
5189 F:      include/linux/mfd/da9062/
5190 F:      include/linux/mfd/da9063/
5191 F:      include/linux/mfd/da9150/
5192 F:      include/linux/regulator/da9211.h
5193 F:      include/sound/da[79]*.h
5194 F:      sound/soc/codecs/da[79]*.[ch]
5195
5196 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5197 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5198 L:      linux-gpio@vger.kernel.org
5199 S:      Maintained
5200 F:      drivers/gpio/gpio-gpio-mm.c
5201
5202 DIOLAN U2C-12 I2C DRIVER
5203 M:      Guenter Roeck <linux@roeck-us.net>
5204 L:      linux-i2c@vger.kernel.org
5205 S:      Maintained
5206 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5207
5208 DIRECTORY NOTIFICATION (DNOTIFY)
5209 M:      Jan Kara <jack@suse.cz>
5210 R:      Amir Goldstein <amir73il@gmail.com>
5211 L:      linux-fsdevel@vger.kernel.org
5212 S:      Maintained
5213 F:      Documentation/filesystems/dnotify.rst
5214 F:      fs/notify/dnotify/
5215 F:      include/linux/dnotify.h
5216
5217 DISK GEOMETRY AND PARTITION HANDLING
5218 M:      Andries Brouwer <aeb@cwi.nl>
5219 S:      Maintained
5220 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5221 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5222 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5223
5224 DISKQUOTA
5225 M:      Jan Kara <jack@suse.com>
5226 S:      Maintained
5227 F:      Documentation/filesystems/quota.rst
5228 F:      fs/quota/
5229 F:      include/linux/quota*.h
5230 F:      include/uapi/linux/quota*.h
5231
5232 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5233 M:      Bernie Thompson <bernie@plugable.com>
5234 L:      linux-fbdev@vger.kernel.org
5235 S:      Maintained
5236 W:      http://plugable.com/category/projects/udlfb/
5237 F:      Documentation/fb/udlfb.rst
5238 F:      drivers/video/fbdev/udlfb.c
5239 F:      include/video/udlfb.h
5240
5241 DISTRIBUTED LOCK MANAGER (DLM)
5242 M:      Christine Caulfield <ccaulfie@redhat.com>
5243 M:      David Teigland <teigland@redhat.com>
5244 L:      cluster-devel@redhat.com
5245 S:      Supported
5246 W:      http://sources.redhat.com/cluster/
5247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5248 F:      fs/dlm/
5249
5250 DMA BUFFER SHARING FRAMEWORK
5251 M:      Sumit Semwal <sumit.semwal@linaro.org>
5252 M:      Christian König <christian.koenig@amd.com>
5253 L:      linux-media@vger.kernel.org
5254 L:      dri-devel@lists.freedesktop.org
5255 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5256 S:      Maintained
5257 T:      git git://anongit.freedesktop.org/drm/drm-misc
5258 F:      Documentation/driver-api/dma-buf.rst
5259 F:      drivers/dma-buf/
5260 F:      include/linux/*fence.h
5261 F:      include/linux/dma-buf*
5262 F:      include/linux/dma-resv.h
5263 K:      \bdma_(?:buf|fence|resv)\b
5264
5265 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5266 M:      Vinod Koul <vkoul@kernel.org>
5267 L:      dmaengine@vger.kernel.org
5268 S:      Maintained
5269 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5271 F:      Documentation/devicetree/bindings/dma/
5272 F:      Documentation/driver-api/dmaengine/
5273 F:      drivers/dma/
5274 F:      include/linux/dmaengine.h
5275 F:      include/linux/of_dma.h
5276
5277 DMA MAPPING HELPERS
5278 M:      Christoph Hellwig <hch@lst.de>
5279 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5280 R:      Robin Murphy <robin.murphy@arm.com>
5281 L:      iommu@lists.linux-foundation.org
5282 S:      Supported
5283 W:      http://git.infradead.org/users/hch/dma-mapping.git
5284 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5285 F:      include/asm-generic/dma-mapping.h
5286 F:      include/linux/dma-direct.h
5287 F:      include/linux/dma-mapping.h
5288 F:      include/linux/dma-map-ops.h
5289 F:      kernel/dma/
5290
5291 DMA MAPPING BENCHMARK
5292 M:      Barry Song <song.bao.hua@hisilicon.com>
5293 L:      iommu@lists.linux-foundation.org
5294 F:      kernel/dma/map_benchmark.c
5295 F:      tools/testing/selftests/dma/
5296
5297 DMA-BUF HEAPS FRAMEWORK
5298 M:      Sumit Semwal <sumit.semwal@linaro.org>
5299 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5300 R:      Liam Mark <lmark@codeaurora.org>
5301 R:      Laura Abbott <labbott@redhat.com>
5302 R:      Brian Starkey <Brian.Starkey@arm.com>
5303 R:      John Stultz <john.stultz@linaro.org>
5304 L:      linux-media@vger.kernel.org
5305 L:      dri-devel@lists.freedesktop.org
5306 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5307 S:      Maintained
5308 T:      git git://anongit.freedesktop.org/drm/drm-misc
5309 F:      drivers/dma-buf/dma-heap.c
5310 F:      drivers/dma-buf/heaps/*
5311 F:      include/linux/dma-heap.h
5312 F:      include/uapi/linux/dma-heap.h
5313
5314 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5315 M:      Lukasz Luba <lukasz.luba@arm.com>
5316 L:      linux-pm@vger.kernel.org
5317 L:      linux-samsung-soc@vger.kernel.org
5318 S:      Maintained
5319 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5320 F:      drivers/memory/samsung/exynos5422-dmc.c
5321
5322 DME1737 HARDWARE MONITOR DRIVER
5323 M:      Juerg Haefliger <juergh@gmail.com>
5324 L:      linux-hwmon@vger.kernel.org
5325 S:      Maintained
5326 F:      Documentation/hwmon/dme1737.rst
5327 F:      drivers/hwmon/dme1737.c
5328
5329 DMI/SMBIOS SUPPORT
5330 M:      Jean Delvare <jdelvare@suse.com>
5331 S:      Maintained
5332 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5333 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5334 F:      drivers/firmware/dmi-id.c
5335 F:      drivers/firmware/dmi_scan.c
5336 F:      include/linux/dmi.h
5337
5338 DOCUMENTATION
5339 M:      Jonathan Corbet <corbet@lwn.net>
5340 L:      linux-doc@vger.kernel.org
5341 S:      Maintained
5342 P:      Documentation/doc-guide/maintainer-profile.rst
5343 T:      git git://git.lwn.net/linux.git docs-next
5344 F:      Documentation/
5345 F:      scripts/documentation-file-ref-check
5346 F:      scripts/kernel-doc
5347 F:      scripts/sphinx-pre-install
5348 X:      Documentation/ABI/
5349 X:      Documentation/admin-guide/media/
5350 X:      Documentation/devicetree/
5351 X:      Documentation/driver-api/media/
5352 X:      Documentation/firmware-guide/acpi/
5353 X:      Documentation/i2c/
5354 X:      Documentation/power/
5355 X:      Documentation/spi/
5356 X:      Documentation/userspace-api/media/
5357
5358 DOCUMENTATION SCRIPTS
5359 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5360 L:      linux-doc@vger.kernel.org
5361 S:      Maintained
5362 F:      Documentation/sphinx/parse-headers.pl
5363 F:      scripts/documentation-file-ref-check
5364 F:      scripts/sphinx-pre-install
5365
5366 DOCUMENTATION/ITALIAN
5367 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5368 L:      linux-doc@vger.kernel.org
5369 S:      Maintained
5370 F:      Documentation/translations/it_IT
5371
5372 DONGWOON DW9714 LENS VOICE COIL DRIVER
5373 M:      Sakari Ailus <sakari.ailus@linux.intel.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,dw9714.txt
5378 F:      drivers/media/i2c/dw9714.c
5379
5380 DONGWOON DW9768 LENS VOICE COIL DRIVER
5381 M:      Dongchun Zhu <dongchun.zhu@mediatek.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,dw9768.yaml
5386 F:      drivers/media/i2c/dw9768.c
5387
5388 DONGWOON DW9807 LENS VOICE COIL DRIVER
5389 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5390 L:      linux-media@vger.kernel.org
5391 S:      Maintained
5392 T:      git git://linuxtv.org/media_tree.git
5393 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5394 F:      drivers/media/i2c/dw9807-vcm.c
5395
5396 DOUBLETALK DRIVER
5397 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5398 L:      blinux-list@redhat.com
5399 S:      Maintained
5400 F:      drivers/char/dtlk.c
5401 F:      include/linux/dtlk.h
5402
5403 DPAA2 DATAPATH I/O (DPIO) DRIVER
5404 M:      Roy Pledge <Roy.Pledge@nxp.com>
5405 L:      linux-kernel@vger.kernel.org
5406 S:      Maintained
5407 F:      drivers/soc/fsl/dpio
5408
5409 DPAA2 ETHERNET DRIVER
5410 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5411 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5412 L:      netdev@vger.kernel.org
5413 S:      Maintained
5414 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5415 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5416 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5417 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5418 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5419 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5420 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5421 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5422 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5423
5424 DPAA2 ETHERNET SWITCH DRIVER
5425 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5426 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5427 L:      linux-kernel@vger.kernel.org
5428 S:      Maintained
5429 F:      drivers/staging/fsl-dpaa2/ethsw
5430
5431 DPT_I2O SCSI RAID DRIVER
5432 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5433 L:      linux-scsi@vger.kernel.org
5434 S:      Maintained
5435 W:      http://www.adaptec.com/
5436 F:      drivers/scsi/dpt*
5437 F:      drivers/scsi/dpt/
5438
5439 DRBD DRIVER
5440 M:      Philipp Reisner <philipp.reisner@linbit.com>
5441 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5442 L:      drbd-dev@lists.linbit.com
5443 S:      Supported
5444 W:      http://www.drbd.org
5445 T:      git git://git.linbit.com/linux-drbd.git
5446 T:      git git://git.linbit.com/drbd-8.4.git
5447 F:      Documentation/admin-guide/blockdev/
5448 F:      drivers/block/drbd/
5449 F:      lib/lru_cache.c
5450
5451 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5452 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5453 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5454 S:      Supported
5455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5456 F:      Documentation/core-api/kobject.rst
5457 F:      drivers/base/
5458 F:      fs/debugfs/
5459 F:      fs/sysfs/
5460 F:      include/linux/debugfs.h
5461 F:      include/linux/kobj*
5462 F:      lib/kobj*
5463
5464 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5465 M:      Nishanth Menon <nm@ti.com>
5466 L:      linux-pm@vger.kernel.org
5467 S:      Maintained
5468 F:      drivers/soc/ti/smartreflex.c
5469 F:      include/linux/power/smartreflex.h
5470
5471 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5472 M:      Maxime Ripard <mripard@kernel.org>
5473 M:      Chen-Yu Tsai <wens@csie.org>
5474 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5475 L:      dri-devel@lists.freedesktop.org
5476 S:      Supported
5477 T:      git git://anongit.freedesktop.org/drm/drm-misc
5478 F:      drivers/gpu/drm/sun4i/sun8i*
5479
5480 DRM DRIVER FOR ARM PL111 CLCD
5481 M:      Eric Anholt <eric@anholt.net>
5482 S:      Supported
5483 T:      git git://anongit.freedesktop.org/drm/drm-misc
5484 F:      drivers/gpu/drm/pl111/
5485
5486 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5487 M:      Linus Walleij <linus.walleij@linaro.org>
5488 S:      Maintained
5489 T:      git git://anongit.freedesktop.org/drm/drm-misc
5490 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5491 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5492
5493 DRM DRIVER FOR ASPEED BMC GFX
5494 M:      Joel Stanley <joel@jms.id.au>
5495 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5496 S:      Supported
5497 T:      git git://anongit.freedesktop.org/drm/drm-misc
5498 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5499 F:      drivers/gpu/drm/aspeed/
5500
5501 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5502 M:      Dave Airlie <airlied@redhat.com>
5503 R:      Thomas Zimmermann <tzimmermann@suse.de>
5504 L:      dri-devel@lists.freedesktop.org
5505 S:      Supported
5506 T:      git git://anongit.freedesktop.org/drm/drm-misc
5507 F:      drivers/gpu/drm/ast/
5508
5509 DRM DRIVER FOR BOCHS VIRTUAL GPU
5510 M:      Gerd Hoffmann <kraxel@redhat.com>
5511 L:      virtualization@lists.linux-foundation.org
5512 S:      Maintained
5513 T:      git git://anongit.freedesktop.org/drm/drm-misc
5514 F:      drivers/gpu/drm/bochs/
5515
5516 DRM DRIVER FOR BOE HIMAX8279D PANELS
5517 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5518 S:      Maintained
5519 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5520 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5521
5522 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5523 M:      Linus Walleij <linus.walleij@linaro.org>
5524 S:      Maintained
5525 T:      git git://anongit.freedesktop.org/drm/drm-misc
5526 F:      drivers/gpu/drm/tve200/
5527
5528 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5529 M:      Icenowy Zheng <icenowy@aosc.io>
5530 S:      Maintained
5531 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5532 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5533
5534 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5535 M:      Jagan Teki <jagan@amarulasolutions.com>
5536 S:      Maintained
5537 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5538 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5539
5540 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5541 M:      Hans de Goede <hdegoede@redhat.com>
5542 S:      Maintained
5543 T:      git git://anongit.freedesktop.org/drm/drm-misc
5544 F:      drivers/gpu/drm/tiny/gm12u320.c
5545
5546 DRM DRIVER FOR HX8357D PANELS
5547 M:      Eric Anholt <eric@anholt.net>
5548 S:      Maintained
5549 T:      git git://anongit.freedesktop.org/drm/drm-misc
5550 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5551 F:      drivers/gpu/drm/tiny/hx8357d.c
5552
5553 DRM DRIVER FOR ILITEK ILI9225 PANELS
5554 M:      David Lechner <david@lechnology.com>
5555 S:      Maintained
5556 T:      git git://anongit.freedesktop.org/drm/drm-misc
5557 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5558 F:      drivers/gpu/drm/tiny/ili9225.c
5559
5560 DRM DRIVER FOR ILITEK ILI9486 PANELS
5561 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5562 S:      Maintained
5563 T:      git git://anongit.freedesktop.org/drm/drm-misc
5564 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5565 F:      drivers/gpu/drm/tiny/ili9486.c
5566
5567 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5568 S:      Orphan / Obsolete
5569 F:      drivers/gpu/drm/i810/
5570 F:      include/uapi/drm/i810_drm.h
5571
5572 DRM DRIVER FOR LVDS PANELS
5573 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5574 L:      dri-devel@lists.freedesktop.org
5575 T:      git git://anongit.freedesktop.org/drm/drm-misc
5576 S:      Maintained
5577 F:      drivers/gpu/drm/panel/panel-lvds.c
5578 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5579
5580 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5581 M:      Guido Günther <agx@sigxcpu.org>
5582 R:      Purism Kernel Team <kernel@puri.sm>
5583 S:      Maintained
5584 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5585 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5586
5587 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5588 S:      Orphan / Obsolete
5589 F:      drivers/gpu/drm/mga/
5590 F:      include/uapi/drm/mga_drm.h
5591
5592 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5593 M:      Dave Airlie <airlied@redhat.com>
5594 R:      Thomas Zimmermann <tzimmermann@suse.de>
5595 L:      dri-devel@lists.freedesktop.org
5596 S:      Supported
5597 T:      git git://anongit.freedesktop.org/drm/drm-misc
5598 F:      drivers/gpu/drm/mgag200/
5599
5600 DRM DRIVER FOR MI0283QT
5601 M:      Noralf Trønnes <noralf@tronnes.org>
5602 S:      Maintained
5603 T:      git git://anongit.freedesktop.org/drm/drm-misc
5604 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5605 F:      drivers/gpu/drm/tiny/mi0283qt.c
5606
5607 DRM DRIVER FOR MSM ADRENO GPU
5608 M:      Rob Clark <robdclark@gmail.com>
5609 M:      Sean Paul <sean@poorly.run>
5610 L:      linux-arm-msm@vger.kernel.org
5611 L:      dri-devel@lists.freedesktop.org
5612 L:      freedreno@lists.freedesktop.org
5613 S:      Maintained
5614 T:      git https://gitlab.freedesktop.org/drm/msm.git
5615 F:      Documentation/devicetree/bindings/display/msm/
5616 F:      drivers/gpu/drm/msm/
5617 F:      include/uapi/drm/msm_drm.h
5618
5619 DRM DRIVER FOR NOVATEK NT35510 PANELS
5620 M:      Linus Walleij <linus.walleij@linaro.org>
5621 S:      Maintained
5622 T:      git git://anongit.freedesktop.org/drm/drm-misc
5623 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5624 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5625
5626 DRM DRIVER FOR NOVATEK NT36672A PANELS
5627 M:      Sumit Semwal <sumit.semwal@linaro.org>
5628 S:      Maintained
5629 T:      git git://anongit.freedesktop.org/drm/drm-misc
5630 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
5631 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
5632
5633 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5634 M:      Ben Skeggs <bskeggs@redhat.com>
5635 L:      dri-devel@lists.freedesktop.org
5636 L:      nouveau@lists.freedesktop.org
5637 S:      Supported
5638 T:      git git://github.com/skeggsb/linux
5639 F:      drivers/gpu/drm/nouveau/
5640 F:      include/uapi/drm/nouveau_drm.h
5641
5642 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5643 M:      Stefan Mavrodiev <stefan@olimex.com>
5644 S:      Maintained
5645 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5646 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5647
5648 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5649 M:      Noralf Trønnes <noralf@tronnes.org>
5650 S:      Maintained
5651 T:      git git://anongit.freedesktop.org/drm/drm-misc
5652 F:      Documentation/devicetree/bindings/display/repaper.txt
5653 F:      drivers/gpu/drm/tiny/repaper.c
5654
5655 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5656 M:      Dave Airlie <airlied@redhat.com>
5657 M:      Gerd Hoffmann <kraxel@redhat.com>
5658 L:      virtualization@lists.linux-foundation.org
5659 S:      Obsolete
5660 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5661 T:      git git://anongit.freedesktop.org/drm/drm-misc
5662 F:      drivers/gpu/drm/tiny/cirrus.c
5663
5664 DRM DRIVER FOR QXL VIRTUAL GPU
5665 M:      Dave Airlie <airlied@redhat.com>
5666 M:      Gerd Hoffmann <kraxel@redhat.com>
5667 L:      virtualization@lists.linux-foundation.org
5668 L:      spice-devel@lists.freedesktop.org
5669 S:      Maintained
5670 T:      git git://anongit.freedesktop.org/drm/drm-misc
5671 F:      drivers/gpu/drm/qxl/
5672 F:      include/uapi/drm/qxl_drm.h
5673
5674 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5675 S:      Orphan / Obsolete
5676 F:      drivers/gpu/drm/r128/
5677 F:      include/uapi/drm/r128_drm.h
5678
5679 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5680 M:      Robert Chiras <robert.chiras@nxp.com>
5681 S:      Maintained
5682 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5683 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5684
5685 DRM DRIVER FOR SITRONIX ST7703 PANELS
5686 M:      Guido Günther <agx@sigxcpu.org>
5687 R:      Purism Kernel Team <kernel@puri.sm>
5688 R:      Ondrej Jirman <megous@megous.com>
5689 S:      Maintained
5690 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
5691 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
5692
5693 DRM DRIVER FOR SAVAGE VIDEO CARDS
5694 S:      Orphan / Obsolete
5695 F:      drivers/gpu/drm/savage/
5696 F:      include/uapi/drm/savage_drm.h
5697
5698 DRM DRIVER FOR SIS VIDEO CARDS
5699 S:      Orphan / Obsolete
5700 F:      drivers/gpu/drm/sis/
5701 F:      include/uapi/drm/sis_drm.h
5702
5703 DRM DRIVER FOR SITRONIX ST7586 PANELS
5704 M:      David Lechner <david@lechnology.com>
5705 S:      Maintained
5706 T:      git git://anongit.freedesktop.org/drm/drm-misc
5707 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5708 F:      drivers/gpu/drm/tiny/st7586.c
5709
5710 DRM DRIVER FOR SITRONIX ST7701 PANELS
5711 M:      Jagan Teki <jagan@amarulasolutions.com>
5712 S:      Maintained
5713 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5714 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5715
5716 DRM DRIVER FOR SITRONIX ST7735R PANELS
5717 M:      David Lechner <david@lechnology.com>
5718 S:      Maintained
5719 T:      git git://anongit.freedesktop.org/drm/drm-misc
5720 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5721 F:      drivers/gpu/drm/tiny/st7735r.c
5722
5723 DRM DRIVER FOR SONY ACX424AKP PANELS
5724 M:      Linus Walleij <linus.walleij@linaro.org>
5725 S:      Maintained
5726 T:      git git://anongit.freedesktop.org/drm/drm-misc
5727 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5728
5729 DRM DRIVER FOR ST-ERICSSON MCDE
5730 M:      Linus Walleij <linus.walleij@linaro.org>
5731 S:      Maintained
5732 T:      git git://anongit.freedesktop.org/drm/drm-misc
5733 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5734 F:      drivers/gpu/drm/mcde/
5735
5736 DRM DRIVER FOR TDFX VIDEO CARDS
5737 S:      Orphan / Obsolete
5738 F:      drivers/gpu/drm/tdfx/
5739
5740 DRM DRIVER FOR TPO TPG110 PANELS
5741 M:      Linus Walleij <linus.walleij@linaro.org>
5742 S:      Maintained
5743 T:      git git://anongit.freedesktop.org/drm/drm-misc
5744 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5745 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5746
5747 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5748 M:      Dave Airlie <airlied@redhat.com>
5749 R:      Sean Paul <sean@poorly.run>
5750 R:      Thomas Zimmermann <tzimmermann@suse.de>
5751 L:      dri-devel@lists.freedesktop.org
5752 S:      Supported
5753 T:      git git://anongit.freedesktop.org/drm/drm-misc
5754 F:      drivers/gpu/drm/udl/
5755
5756 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5757 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5758 M:      Melissa Wen <melissa.srw@gmail.com>
5759 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5760 R:      Daniel Vetter <daniel@ffwll.ch>
5761 L:      dri-devel@lists.freedesktop.org
5762 S:      Maintained
5763 T:      git git://anongit.freedesktop.org/drm/drm-misc
5764 F:      Documentation/gpu/vkms.rst
5765 F:      drivers/gpu/drm/vkms/
5766
5767 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5768 M:      Hans de Goede <hdegoede@redhat.com>
5769 L:      dri-devel@lists.freedesktop.org
5770 S:      Maintained
5771 T:      git git://anongit.freedesktop.org/drm/drm-misc
5772 F:      drivers/gpu/drm/vboxvideo/
5773
5774 DRM DRIVER FOR VMWARE VIRTUAL GPU
5775 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5776 M:      Roland Scheidegger <sroland@vmware.com>
5777 M:      Zack Rusin <zackr@vmware.com>
5778 L:      dri-devel@lists.freedesktop.org
5779 S:      Supported
5780 T:      git git://people.freedesktop.org/~sroland/linux
5781 F:      drivers/gpu/drm/vmwgfx/
5782 F:      include/uapi/drm/vmwgfx_drm.h
5783
5784 DRM DRIVERS
5785 M:      David Airlie <airlied@linux.ie>
5786 M:      Daniel Vetter <daniel@ffwll.ch>
5787 L:      dri-devel@lists.freedesktop.org
5788 S:      Maintained
5789 B:      https://bugs.freedesktop.org/
5790 C:      irc://chat.freenode.net/dri-devel
5791 T:      git git://anongit.freedesktop.org/drm/drm
5792 F:      Documentation/devicetree/bindings/display/
5793 F:      Documentation/devicetree/bindings/gpu/
5794 F:      Documentation/gpu/
5795 F:      drivers/gpu/drm/
5796 F:      drivers/gpu/vga/
5797 F:      include/drm/
5798 F:      include/linux/vga*
5799 F:      include/uapi/drm/
5800
5801 DRM DRIVERS AND MISC GPU PATCHES
5802 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5803 M:      Maxime Ripard <mripard@kernel.org>
5804 M:      Thomas Zimmermann <tzimmermann@suse.de>
5805 S:      Maintained
5806 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5807 T:      git git://anongit.freedesktop.org/drm/drm-misc
5808 F:      Documentation/gpu/
5809 F:      drivers/gpu/drm/*
5810 F:      drivers/gpu/vga/
5811 F:      include/drm/drm*
5812 F:      include/linux/vga*
5813 F:      include/uapi/drm/drm*
5814
5815 DRM DRIVERS FOR ALLWINNER A10
5816 M:      Maxime Ripard <mripard@kernel.org>
5817 M:      Chen-Yu Tsai <wens@csie.org>
5818 L:      dri-devel@lists.freedesktop.org
5819 S:      Supported
5820 T:      git git://anongit.freedesktop.org/drm/drm-misc
5821 F:      Documentation/devicetree/bindings/display/allwinner*
5822 F:      drivers/gpu/drm/sun4i/
5823
5824 DRM DRIVERS FOR AMLOGIC SOCS
5825 M:      Neil Armstrong <narmstrong@baylibre.com>
5826 L:      dri-devel@lists.freedesktop.org
5827 L:      linux-amlogic@lists.infradead.org
5828 S:      Supported
5829 W:      http://linux-meson.com/
5830 T:      git git://anongit.freedesktop.org/drm/drm-misc
5831 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5832 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5833 F:      Documentation/gpu/meson.rst
5834 F:      drivers/gpu/drm/meson/
5835
5836 DRM DRIVERS FOR ATMEL HLCDC
5837 M:      Sam Ravnborg <sam@ravnborg.org>
5838 M:      Boris Brezillon <bbrezillon@kernel.org>
5839 L:      dri-devel@lists.freedesktop.org
5840 S:      Supported
5841 T:      git git://anongit.freedesktop.org/drm/drm-misc
5842 F:      Documentation/devicetree/bindings/display/atmel/
5843 F:      drivers/gpu/drm/atmel-hlcdc/
5844
5845 DRM DRIVERS FOR BRIDGE CHIPS
5846 M:      Andrzej Hajda <a.hajda@samsung.com>
5847 M:      Neil Armstrong <narmstrong@baylibre.com>
5848 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5849 R:      Jonas Karlman <jonas@kwiboo.se>
5850 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5851 S:      Maintained
5852 T:      git git://anongit.freedesktop.org/drm/drm-misc
5853 F:      drivers/gpu/drm/bridge/
5854
5855 DRM DRIVERS FOR EXYNOS
5856 M:      Inki Dae <inki.dae@samsung.com>
5857 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5858 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5859 M:      Kyungmin Park <kyungmin.park@samsung.com>
5860 L:      dri-devel@lists.freedesktop.org
5861 S:      Supported
5862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5863 F:      Documentation/devicetree/bindings/display/exynos/
5864 F:      drivers/gpu/drm/exynos/
5865 F:      include/uapi/drm/exynos_drm.h
5866
5867 DRM DRIVERS FOR FREESCALE DCU
5868 M:      Stefan Agner <stefan@agner.ch>
5869 M:      Alison Wang <alison.wang@nxp.com>
5870 L:      dri-devel@lists.freedesktop.org
5871 S:      Supported
5872 T:      git git://anongit.freedesktop.org/drm/drm-misc
5873 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5874 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5875 F:      drivers/gpu/drm/fsl-dcu/
5876
5877 DRM DRIVERS FOR FREESCALE IMX
5878 M:      Philipp Zabel <p.zabel@pengutronix.de>
5879 L:      dri-devel@lists.freedesktop.org
5880 S:      Maintained
5881 F:      Documentation/devicetree/bindings/display/imx/
5882 F:      drivers/gpu/drm/imx/
5883 F:      drivers/gpu/ipu-v3/
5884
5885 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5886 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5887 L:      dri-devel@lists.freedesktop.org
5888 S:      Maintained
5889 T:      git git://github.com/patjak/drm-gma500
5890 F:      drivers/gpu/drm/gma500/
5891
5892 DRM DRIVERS FOR HISILICON
5893 M:      Xinliang Liu <xinliang.liu@linaro.org>
5894 M:      Tian Tao  <tiantao6@hisilicon.com>
5895 R:      John Stultz <john.stultz@linaro.org>
5896 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5897 R:      Chen Feng <puck.chen@hisilicon.com>
5898 L:      dri-devel@lists.freedesktop.org
5899 S:      Maintained
5900 T:      git git://anongit.freedesktop.org/drm/drm-misc
5901 F:      Documentation/devicetree/bindings/display/hisilicon/
5902 F:      drivers/gpu/drm/hisilicon/
5903
5904 DRM DRIVERS FOR LIMA
5905 M:      Qiang Yu <yuq825@gmail.com>
5906 L:      dri-devel@lists.freedesktop.org
5907 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5908 S:      Maintained
5909 T:      git git://anongit.freedesktop.org/drm/drm-misc
5910 F:      drivers/gpu/drm/lima/
5911 F:      include/uapi/drm/lima_drm.h
5912
5913 DRM DRIVERS FOR MEDIATEK
5914 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
5915 M:      Philipp Zabel <p.zabel@pengutronix.de>
5916 L:      dri-devel@lists.freedesktop.org
5917 S:      Supported
5918 F:      Documentation/devicetree/bindings/display/mediatek/
5919 F:      drivers/gpu/drm/mediatek/
5920 F:      drivers/phy/mediatek/phy-mtk-hdmi*
5921 F:      drivers/phy/mediatek/phy-mtk-mipi*
5922
5923 DRM DRIVERS FOR NVIDIA TEGRA
5924 M:      Thierry Reding <thierry.reding@gmail.com>
5925 L:      dri-devel@lists.freedesktop.org
5926 L:      linux-tegra@vger.kernel.org
5927 S:      Supported
5928 T:      git git://anongit.freedesktop.org/tegra/linux.git
5929 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5930 F:      drivers/gpu/drm/tegra/
5931 F:      drivers/gpu/host1x/
5932 F:      include/linux/host1x.h
5933 F:      include/uapi/drm/tegra_drm.h
5934
5935 DRM DRIVERS FOR RENESAS
5936 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5937 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5938 L:      dri-devel@lists.freedesktop.org
5939 L:      linux-renesas-soc@vger.kernel.org
5940 S:      Supported
5941 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5942 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5943 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
5944 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5945 F:      drivers/gpu/drm/rcar-du/
5946 F:      drivers/gpu/drm/shmobile/
5947 F:      include/linux/platform_data/shmob_drm.h
5948
5949 DRM DRIVERS FOR ROCKCHIP
5950 M:      Sandy Huang <hjc@rock-chips.com>
5951 M:      Heiko Stübner <heiko@sntech.de>
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/rockchip/
5956 F:      drivers/gpu/drm/rockchip/
5957
5958 DRM DRIVERS FOR STI
5959 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5960 M:      Vincent Abriou <vincent.abriou@st.com>
5961 L:      dri-devel@lists.freedesktop.org
5962 S:      Maintained
5963 T:      git git://anongit.freedesktop.org/drm/drm-misc
5964 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5965 F:      drivers/gpu/drm/sti
5966
5967 DRM DRIVERS FOR STM
5968 M:      Yannick Fertre <yannick.fertre@st.com>
5969 M:      Philippe Cornu <philippe.cornu@st.com>
5970 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5971 M:      Vincent Abriou <vincent.abriou@st.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/st,stm32-ltdc.yaml
5976 F:      drivers/gpu/drm/stm
5977
5978 DRM DRIVERS FOR TI KEYSTONE
5979 M:      Jyri Sarha <jyri.sarha@iki.fi>
5980 M:      Tomi Valkeinen <tomba@kernel.org>
5981 L:      dri-devel@lists.freedesktop.org
5982 S:      Maintained
5983 T:      git git://anongit.freedesktop.org/drm/drm-misc
5984 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5985 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5986 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5987 F:      drivers/gpu/drm/tidss/
5988
5989 DRM DRIVERS FOR TI LCDC
5990 M:      Jyri Sarha <jyri.sarha@iki.fi>
5991 R:      Tomi Valkeinen <tomba@kernel.org>
5992 L:      dri-devel@lists.freedesktop.org
5993 S:      Maintained
5994 F:      Documentation/devicetree/bindings/display/tilcdc/
5995 F:      drivers/gpu/drm/tilcdc/
5996
5997 DRM DRIVERS FOR TI OMAP
5998 M:      Tomi Valkeinen <tomba@kernel.org>
5999 L:      dri-devel@lists.freedesktop.org
6000 S:      Maintained
6001 F:      Documentation/devicetree/bindings/display/ti/
6002 F:      drivers/gpu/drm/omapdrm/
6003
6004 DRM DRIVERS FOR V3D
6005 M:      Eric Anholt <eric@anholt.net>
6006 S:      Supported
6007 T:      git git://anongit.freedesktop.org/drm/drm-misc
6008 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
6009 F:      drivers/gpu/drm/v3d/
6010 F:      include/uapi/drm/v3d_drm.h
6011
6012 DRM DRIVERS FOR VC4
6013 M:      Eric Anholt <eric@anholt.net>
6014 M:      Maxime Ripard <mripard@kernel.org>
6015 S:      Supported
6016 T:      git git://github.com/anholt/linux
6017 T:      git git://anongit.freedesktop.org/drm/drm-misc
6018 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6019 F:      drivers/gpu/drm/vc4/
6020 F:      include/uapi/drm/vc4_drm.h
6021
6022 DRM DRIVERS FOR VIVANTE GPU IP
6023 M:      Lucas Stach <l.stach@pengutronix.de>
6024 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6025 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6026 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6027 L:      dri-devel@lists.freedesktop.org
6028 S:      Maintained
6029 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6030 F:      drivers/gpu/drm/etnaviv/
6031 F:      include/uapi/drm/etnaviv_drm.h
6032
6033 DRM DRIVERS FOR XEN
6034 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6035 L:      dri-devel@lists.freedesktop.org
6036 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6037 S:      Supported
6038 T:      git git://anongit.freedesktop.org/drm/drm-misc
6039 F:      Documentation/gpu/xen-front.rst
6040 F:      drivers/gpu/drm/xen/
6041
6042 DRM DRIVERS FOR XILINX
6043 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6044 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6045 L:      dri-devel@lists.freedesktop.org
6046 S:      Maintained
6047 T:      git git://anongit.freedesktop.org/drm/drm-misc
6048 F:      Documentation/devicetree/bindings/display/xlnx/
6049 F:      drivers/gpu/drm/xlnx/
6050
6051 DRM PANEL DRIVERS
6052 M:      Thierry Reding <thierry.reding@gmail.com>
6053 R:      Sam Ravnborg <sam@ravnborg.org>
6054 L:      dri-devel@lists.freedesktop.org
6055 S:      Maintained
6056 T:      git git://anongit.freedesktop.org/drm/drm-misc
6057 F:      Documentation/devicetree/bindings/display/panel/
6058 F:      drivers/gpu/drm/drm_panel.c
6059 F:      drivers/gpu/drm/panel/
6060 F:      include/drm/drm_panel.h
6061
6062 DRM TTM SUBSYSTEM
6063 M:      Christian Koenig <christian.koenig@amd.com>
6064 M:      Huang Rui <ray.huang@amd.com>
6065 L:      dri-devel@lists.freedesktop.org
6066 S:      Maintained
6067 T:      git git://people.freedesktop.org/~agd5f/linux
6068 F:      drivers/gpu/drm/ttm/
6069 F:      include/drm/ttm/
6070
6071 DSBR100 USB FM RADIO DRIVER
6072 M:      Alexey Klimov <klimov.linux@gmail.com>
6073 L:      linux-media@vger.kernel.org
6074 S:      Maintained
6075 T:      git git://linuxtv.org/media_tree.git
6076 F:      drivers/media/radio/dsbr100.c
6077
6078 DT3155 MEDIA DRIVER
6079 M:      Hans Verkuil <hverkuil@xs4all.nl>
6080 L:      linux-media@vger.kernel.org
6081 S:      Odd Fixes
6082 W:      https://linuxtv.org
6083 T:      git git://linuxtv.org/media_tree.git
6084 F:      drivers/media/pci/dt3155/
6085
6086 DVB_USB_AF9015 MEDIA DRIVER
6087 M:      Antti Palosaari <crope@iki.fi>
6088 L:      linux-media@vger.kernel.org
6089 S:      Maintained
6090 W:      https://linuxtv.org
6091 W:      http://palosaari.fi/linux/
6092 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6093 T:      git git://linuxtv.org/anttip/media_tree.git
6094 F:      drivers/media/usb/dvb-usb-v2/af9015*
6095
6096 DVB_USB_AF9035 MEDIA DRIVER
6097 M:      Antti Palosaari <crope@iki.fi>
6098 L:      linux-media@vger.kernel.org
6099 S:      Maintained
6100 W:      https://linuxtv.org
6101 W:      http://palosaari.fi/linux/
6102 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6103 T:      git git://linuxtv.org/anttip/media_tree.git
6104 F:      drivers/media/usb/dvb-usb-v2/af9035*
6105
6106 DVB_USB_ANYSEE MEDIA DRIVER
6107 M:      Antti Palosaari <crope@iki.fi>
6108 L:      linux-media@vger.kernel.org
6109 S:      Maintained
6110 W:      https://linuxtv.org
6111 W:      http://palosaari.fi/linux/
6112 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6113 T:      git git://linuxtv.org/anttip/media_tree.git
6114 F:      drivers/media/usb/dvb-usb-v2/anysee*
6115
6116 DVB_USB_AU6610 MEDIA DRIVER
6117 M:      Antti Palosaari <crope@iki.fi>
6118 L:      linux-media@vger.kernel.org
6119 S:      Maintained
6120 W:      https://linuxtv.org
6121 W:      http://palosaari.fi/linux/
6122 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6123 T:      git git://linuxtv.org/anttip/media_tree.git
6124 F:      drivers/media/usb/dvb-usb-v2/au6610*
6125
6126 DVB_USB_CE6230 MEDIA DRIVER
6127 M:      Antti Palosaari <crope@iki.fi>
6128 L:      linux-media@vger.kernel.org
6129 S:      Maintained
6130 W:      https://linuxtv.org
6131 W:      http://palosaari.fi/linux/
6132 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6133 T:      git git://linuxtv.org/anttip/media_tree.git
6134 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6135
6136 DVB_USB_CXUSB MEDIA DRIVER
6137 M:      Michael Krufky <mkrufky@linuxtv.org>
6138 L:      linux-media@vger.kernel.org
6139 S:      Maintained
6140 W:      https://linuxtv.org
6141 W:      http://github.com/mkrufky
6142 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6143 T:      git git://linuxtv.org/media_tree.git
6144 F:      drivers/media/usb/dvb-usb/cxusb*
6145
6146 DVB_USB_EC168 MEDIA DRIVER
6147 M:      Antti Palosaari <crope@iki.fi>
6148 L:      linux-media@vger.kernel.org
6149 S:      Maintained
6150 W:      https://linuxtv.org
6151 W:      http://palosaari.fi/linux/
6152 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6153 T:      git git://linuxtv.org/anttip/media_tree.git
6154 F:      drivers/media/usb/dvb-usb-v2/ec168*
6155
6156 DVB_USB_GL861 MEDIA DRIVER
6157 M:      Antti Palosaari <crope@iki.fi>
6158 L:      linux-media@vger.kernel.org
6159 S:      Maintained
6160 W:      https://linuxtv.org
6161 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6162 T:      git git://linuxtv.org/anttip/media_tree.git
6163 F:      drivers/media/usb/dvb-usb-v2/gl861*
6164
6165 DVB_USB_MXL111SF MEDIA DRIVER
6166 M:      Michael Krufky <mkrufky@linuxtv.org>
6167 L:      linux-media@vger.kernel.org
6168 S:      Maintained
6169 W:      https://linuxtv.org
6170 W:      http://github.com/mkrufky
6171 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6172 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6173 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6174
6175 DVB_USB_RTL28XXU MEDIA DRIVER
6176 M:      Antti Palosaari <crope@iki.fi>
6177 L:      linux-media@vger.kernel.org
6178 S:      Maintained
6179 W:      https://linuxtv.org
6180 W:      http://palosaari.fi/linux/
6181 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6182 T:      git git://linuxtv.org/anttip/media_tree.git
6183 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6184
6185 DVB_USB_V2 MEDIA DRIVER
6186 M:      Antti Palosaari <crope@iki.fi>
6187 L:      linux-media@vger.kernel.org
6188 S:      Maintained
6189 W:      https://linuxtv.org
6190 W:      http://palosaari.fi/linux/
6191 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6192 T:      git git://linuxtv.org/anttip/media_tree.git
6193 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6194 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6195
6196 DYNAMIC DEBUG
6197 M:      Jason Baron <jbaron@akamai.com>
6198 S:      Maintained
6199 F:      include/linux/dynamic_debug.h
6200 F:      lib/dynamic_debug.c
6201
6202 DYNAMIC INTERRUPT MODERATION
6203 M:      Tal Gilboa <talgi@nvidia.com>
6204 S:      Maintained
6205 F:      Documentation/networking/net_dim.rst
6206 F:      include/linux/dim.h
6207 F:      lib/dim/
6208
6209 DZ DECSTATION DZ11 SERIAL DRIVER
6210 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6211 S:      Maintained
6212 F:      drivers/tty/serial/dz.*
6213
6214 E3X0 POWER BUTTON DRIVER
6215 M:      Moritz Fischer <moritz.fischer@ettus.com>
6216 L:      usrp-users@lists.ettus.com
6217 S:      Supported
6218 W:      http://www.ettus.com
6219 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6220 F:      drivers/input/misc/e3x0-button.c
6221
6222 E4000 MEDIA DRIVER
6223 M:      Antti Palosaari <crope@iki.fi>
6224 L:      linux-media@vger.kernel.org
6225 S:      Maintained
6226 W:      https://linuxtv.org
6227 W:      http://palosaari.fi/linux/
6228 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6229 T:      git git://linuxtv.org/anttip/media_tree.git
6230 F:      drivers/media/tuners/e4000*
6231
6232 EARTH_PT1 MEDIA DRIVER
6233 M:      Akihiro Tsukada <tskd08@gmail.com>
6234 L:      linux-media@vger.kernel.org
6235 S:      Odd Fixes
6236 F:      drivers/media/pci/pt1/
6237
6238 EARTH_PT3 MEDIA DRIVER
6239 M:      Akihiro Tsukada <tskd08@gmail.com>
6240 L:      linux-media@vger.kernel.org
6241 S:      Odd Fixes
6242 F:      drivers/media/pci/pt3/
6243
6244 EC100 MEDIA DRIVER
6245 M:      Antti Palosaari <crope@iki.fi>
6246 L:      linux-media@vger.kernel.org
6247 S:      Maintained
6248 W:      https://linuxtv.org
6249 W:      http://palosaari.fi/linux/
6250 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6251 T:      git git://linuxtv.org/anttip/media_tree.git
6252 F:      drivers/media/dvb-frontends/ec100*
6253
6254 ECRYPT FILE SYSTEM
6255 M:      Tyler Hicks <code@tyhicks.com>
6256 L:      ecryptfs@vger.kernel.org
6257 S:      Odd Fixes
6258 W:      http://ecryptfs.org
6259 W:      https://launchpad.net/ecryptfs
6260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6261 F:      Documentation/filesystems/ecryptfs.rst
6262 F:      fs/ecryptfs/
6263
6264 EDAC-AMD64
6265 M:      Borislav Petkov <bp@alien8.de>
6266 L:      linux-edac@vger.kernel.org
6267 S:      Maintained
6268 F:      drivers/edac/amd64_edac*
6269
6270 EDAC-ARMADA
6271 M:      Jan Luebbe <jlu@pengutronix.de>
6272 L:      linux-edac@vger.kernel.org
6273 S:      Maintained
6274 F:      drivers/edac/armada_xp_*
6275
6276 EDAC-AST2500
6277 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6278 S:      Supported
6279 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6280 F:      drivers/edac/aspeed_edac.c
6281
6282 EDAC-BLUEFIELD
6283 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6284 S:      Supported
6285 F:      drivers/edac/bluefield_edac.c
6286
6287 EDAC-CALXEDA
6288 M:      Andre Przywara <andre.przywara@arm.com>
6289 L:      linux-edac@vger.kernel.org
6290 S:      Maintained
6291 F:      drivers/edac/highbank*
6292
6293 EDAC-CAVIUM OCTEON
6294 M:      Ralf Baechle <ralf@linux-mips.org>
6295 L:      linux-edac@vger.kernel.org
6296 L:      linux-mips@vger.kernel.org
6297 S:      Supported
6298 F:      drivers/edac/octeon_edac*
6299
6300 EDAC-CAVIUM THUNDERX
6301 M:      Robert Richter <rric@kernel.org>
6302 L:      linux-edac@vger.kernel.org
6303 S:      Odd Fixes
6304 F:      drivers/edac/thunderx_edac*
6305
6306 EDAC-CORE
6307 M:      Borislav Petkov <bp@alien8.de>
6308 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6309 M:      Tony Luck <tony.luck@intel.com>
6310 R:      James Morse <james.morse@arm.com>
6311 R:      Robert Richter <rric@kernel.org>
6312 L:      linux-edac@vger.kernel.org
6313 S:      Supported
6314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6315 F:      Documentation/admin-guide/ras.rst
6316 F:      Documentation/driver-api/edac.rst
6317 F:      drivers/edac/
6318 F:      include/linux/edac.h
6319
6320 EDAC-DMC520
6321 M:      Lei Wang <lewan@microsoft.com>
6322 L:      linux-edac@vger.kernel.org
6323 S:      Supported
6324 F:      drivers/edac/dmc520_edac.c
6325
6326 EDAC-E752X
6327 M:      Mark Gross <mark.gross@intel.com>
6328 L:      linux-edac@vger.kernel.org
6329 S:      Maintained
6330 F:      drivers/edac/e752x_edac.c
6331
6332 EDAC-E7XXX
6333 L:      linux-edac@vger.kernel.org
6334 S:      Maintained
6335 F:      drivers/edac/e7xxx_edac.c
6336
6337 EDAC-FSL_DDR
6338 M:      York Sun <york.sun@nxp.com>
6339 L:      linux-edac@vger.kernel.org
6340 S:      Maintained
6341 F:      drivers/edac/fsl_ddr_edac.*
6342
6343 EDAC-GHES
6344 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6345 L:      linux-edac@vger.kernel.org
6346 S:      Maintained
6347 F:      drivers/edac/ghes_edac.c
6348
6349 EDAC-I10NM
6350 M:      Tony Luck <tony.luck@intel.com>
6351 L:      linux-edac@vger.kernel.org
6352 S:      Maintained
6353 F:      drivers/edac/i10nm_base.c
6354
6355 EDAC-I3000
6356 L:      linux-edac@vger.kernel.org
6357 S:      Orphan
6358 F:      drivers/edac/i3000_edac.c
6359
6360 EDAC-I5000
6361 L:      linux-edac@vger.kernel.org
6362 S:      Maintained
6363 F:      drivers/edac/i5000_edac.c
6364
6365 EDAC-I5400
6366 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6367 L:      linux-edac@vger.kernel.org
6368 S:      Maintained
6369 F:      drivers/edac/i5400_edac.c
6370
6371 EDAC-I7300
6372 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6373 L:      linux-edac@vger.kernel.org
6374 S:      Maintained
6375 F:      drivers/edac/i7300_edac.c
6376
6377 EDAC-I7CORE
6378 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6379 L:      linux-edac@vger.kernel.org
6380 S:      Maintained
6381 F:      drivers/edac/i7core_edac.c
6382
6383 EDAC-I82443BXGX
6384 M:      Tim Small <tim@buttersideup.com>
6385 L:      linux-edac@vger.kernel.org
6386 S:      Maintained
6387 F:      drivers/edac/i82443bxgx_edac.c
6388
6389 EDAC-I82975X
6390 M:      "Arvind R." <arvino55@gmail.com>
6391 L:      linux-edac@vger.kernel.org
6392 S:      Maintained
6393 F:      drivers/edac/i82975x_edac.c
6394
6395 EDAC-IE31200
6396 M:      Jason Baron <jbaron@akamai.com>
6397 L:      linux-edac@vger.kernel.org
6398 S:      Maintained
6399 F:      drivers/edac/ie31200_edac.c
6400
6401 EDAC-IGEN6
6402 M:      Tony Luck <tony.luck@intel.com>
6403 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6404 L:      linux-edac@vger.kernel.org
6405 S:      Maintained
6406 F:      drivers/edac/igen6_edac.c
6407
6408 EDAC-MPC85XX
6409 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6410 L:      linux-edac@vger.kernel.org
6411 S:      Maintained
6412 F:      drivers/edac/mpc85xx_edac.[ch]
6413
6414 EDAC-PASEMI
6415 M:      Egor Martovetsky <egor@pasemi.com>
6416 L:      linux-edac@vger.kernel.org
6417 S:      Maintained
6418 F:      drivers/edac/pasemi_edac.c
6419
6420 EDAC-PND2
6421 M:      Tony Luck <tony.luck@intel.com>
6422 L:      linux-edac@vger.kernel.org
6423 S:      Maintained
6424 F:      drivers/edac/pnd2_edac.[ch]
6425
6426 EDAC-QCOM
6427 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6428 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6429 L:      linux-arm-msm@vger.kernel.org
6430 L:      linux-edac@vger.kernel.org
6431 S:      Maintained
6432 F:      drivers/edac/qcom_edac.c
6433
6434 EDAC-R82600
6435 M:      Tim Small <tim@buttersideup.com>
6436 L:      linux-edac@vger.kernel.org
6437 S:      Maintained
6438 F:      drivers/edac/r82600_edac.c
6439
6440 EDAC-SBRIDGE
6441 M:      Tony Luck <tony.luck@intel.com>
6442 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6443 L:      linux-edac@vger.kernel.org
6444 S:      Maintained
6445 F:      drivers/edac/sb_edac.c
6446
6447 EDAC-SIFIVE
6448 M:      Yash Shah <yash.shah@sifive.com>
6449 L:      linux-edac@vger.kernel.org
6450 S:      Supported
6451 F:      drivers/edac/sifive_edac.c
6452
6453 EDAC-SKYLAKE
6454 M:      Tony Luck <tony.luck@intel.com>
6455 L:      linux-edac@vger.kernel.org
6456 S:      Maintained
6457 F:      drivers/edac/skx_*.[ch]
6458
6459 EDAC-TI
6460 M:      Tero Kristo <kristo@kernel.org>
6461 L:      linux-edac@vger.kernel.org
6462 S:      Odd Fixes
6463 F:      drivers/edac/ti_edac.c
6464
6465 EDIROL UA-101/UA-1000 DRIVER
6466 M:      Clemens Ladisch <clemens@ladisch.de>
6467 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6468 S:      Maintained
6469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6470 F:      sound/usb/misc/ua101.c
6471
6472 EFI TEST DRIVER
6473 M:      Ivan Hu <ivan.hu@canonical.com>
6474 M:      Ard Biesheuvel <ardb@kernel.org>
6475 L:      linux-efi@vger.kernel.org
6476 S:      Maintained
6477 F:      drivers/firmware/efi/test/
6478
6479 EFI VARIABLE FILESYSTEM
6480 M:      Matthew Garrett <matthew.garrett@nebula.com>
6481 M:      Jeremy Kerr <jk@ozlabs.org>
6482 M:      Ard Biesheuvel <ardb@kernel.org>
6483 L:      linux-efi@vger.kernel.org
6484 S:      Maintained
6485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6486 F:      fs/efivarfs/
6487
6488 EFIFB FRAMEBUFFER DRIVER
6489 M:      Peter Jones <pjones@redhat.com>
6490 L:      linux-fbdev@vger.kernel.org
6491 S:      Maintained
6492 F:      drivers/video/fbdev/efifb.c
6493
6494 EFS FILESYSTEM
6495 S:      Orphan
6496 W:      http://aeschi.ch.eu.org/efs/
6497 F:      fs/efs/
6498
6499 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6500 M:      Douglas Miller <dougmill@linux.ibm.com>
6501 L:      netdev@vger.kernel.org
6502 S:      Maintained
6503 F:      drivers/net/ethernet/ibm/ehea/
6504
6505 EM28XX VIDEO4LINUX DRIVER
6506 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6507 L:      linux-media@vger.kernel.org
6508 S:      Maintained
6509 W:      https://linuxtv.org
6510 T:      git git://linuxtv.org/media_tree.git
6511 F:      Documentation/admin-guide/media/em28xx*
6512 F:      drivers/media/usb/em28xx/
6513
6514 EMBEDDED LINUX
6515 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6516 M:      Matt Mackall <mpm@selenic.com>
6517 M:      David Woodhouse <dwmw2@infradead.org>
6518 L:      linux-embedded@vger.kernel.org
6519 S:      Maintained
6520
6521 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6522 M:      Adrian Hunter <adrian.hunter@intel.com>
6523 M:      Ritesh Harjani <riteshh@codeaurora.org>
6524 M:      Asutosh Das <asutoshd@codeaurora.org>
6525 L:      linux-mmc@vger.kernel.org
6526 S:      Maintained
6527 F:      drivers/mmc/host/cqhci*
6528
6529 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6530 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6531 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6532 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6533 L:      linux-scsi@vger.kernel.org
6534 S:      Supported
6535 W:      http://www.broadcom.com
6536 F:      drivers/scsi/be2iscsi/
6537
6538 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6539 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6540 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6541 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6542 L:      netdev@vger.kernel.org
6543 S:      Supported
6544 W:      http://www.emulex.com
6545 F:      drivers/net/ethernet/emulex/benet/
6546
6547 EMULEX ONECONNECT ROCE DRIVER
6548 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6549 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6550 L:      linux-rdma@vger.kernel.org
6551 S:      Odd Fixes
6552 W:      http://www.broadcom.com
6553 F:      drivers/infiniband/hw/ocrdma/
6554 F:      include/uapi/rdma/ocrdma-abi.h
6555
6556 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6557 M:      James Smart <james.smart@broadcom.com>
6558 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6559 L:      linux-scsi@vger.kernel.org
6560 S:      Supported
6561 W:      http://www.broadcom.com
6562 F:      drivers/scsi/lpfc/
6563
6564 ENE CB710 FLASH CARD READER DRIVER
6565 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6566 S:      Maintained
6567 F:      drivers/misc/cb710/
6568 F:      drivers/mmc/host/cb710-mmc.*
6569 F:      include/linux/cb710.h
6570
6571 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6572 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6573 S:      Maintained
6574 F:      drivers/media/rc/ene_ir.*
6575
6576 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6577 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6578 L:      linuxppc-dev@lists.ozlabs.org
6579 S:      Maintained
6580 F:      drivers/tty/ehv_bytechan.c
6581
6582 EPSON S1D13XXX FRAMEBUFFER DRIVER
6583 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6584 S:      Maintained
6585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6586 F:      drivers/video/fbdev/s1d13xxxfb.c
6587 F:      include/video/s1d13xxxfb.h
6588
6589 EROFS FILE SYSTEM
6590 M:      Gao Xiang <xiang@kernel.org>
6591 M:      Chao Yu <yuchao0@huawei.com>
6592 L:      linux-erofs@lists.ozlabs.org
6593 S:      Maintained
6594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6595 F:      Documentation/filesystems/erofs.rst
6596 F:      fs/erofs/
6597 F:      include/trace/events/erofs.h
6598
6599 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6600 M:      Jeff Layton <jlayton@kernel.org>
6601 S:      Maintained
6602 F:      include/linux/errseq.h
6603 F:      lib/errseq.c
6604
6605 ET131X NETWORK DRIVER
6606 M:      Mark Einon <mark.einon@gmail.com>
6607 S:      Odd Fixes
6608 F:      drivers/net/ethernet/agere/
6609
6610 ETHERNET BRIDGE
6611 M:      Roopa Prabhu <roopa@nvidia.com>
6612 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
6613 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6614 L:      netdev@vger.kernel.org
6615 S:      Maintained
6616 W:      http://www.linuxfoundation.org/en/Net:Bridge
6617 F:      include/linux/netfilter_bridge/
6618 F:      net/bridge/
6619
6620 ETHERNET PHY LIBRARY
6621 M:      Andrew Lunn <andrew@lunn.ch>
6622 M:      Heiner Kallweit <hkallweit1@gmail.com>
6623 R:      Russell King <linux@armlinux.org.uk>
6624 L:      netdev@vger.kernel.org
6625 S:      Maintained
6626 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6627 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6628 F:      Documentation/devicetree/bindings/net/mdio*
6629 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6630 F:      Documentation/networking/phy.rst
6631 F:      drivers/net/mdio/
6632 F:      drivers/net/mdio/of_mdio.c
6633 F:      drivers/net/pcs/
6634 F:      drivers/net/phy/
6635 F:      drivers/of/of_net.c
6636 F:      include/dt-bindings/net/qca-ar803x.h
6637 F:      include/linux/*mdio*.h
6638 F:      include/linux/mdio/*.h
6639 F:      include/linux/of_net.h
6640 F:      include/linux/phy.h
6641 F:      include/linux/phy_fixed.h
6642 F:      include/linux/platform_data/mdio-bcm-unimac.h
6643 F:      include/linux/platform_data/mdio-gpio.h
6644 F:      include/trace/events/mdio.h
6645 F:      include/uapi/linux/mdio.h
6646 F:      include/uapi/linux/mii.h
6647
6648 EXFAT FILE SYSTEM
6649 M:      Namjae Jeon <namjae.jeon@samsung.com>
6650 M:      Sungjong Seo <sj1557.seo@samsung.com>
6651 L:      linux-fsdevel@vger.kernel.org
6652 S:      Maintained
6653 F:      fs/exfat/
6654
6655 EXT2 FILE SYSTEM
6656 M:      Jan Kara <jack@suse.com>
6657 L:      linux-ext4@vger.kernel.org
6658 S:      Maintained
6659 F:      Documentation/filesystems/ext2.rst
6660 F:      fs/ext2/
6661 F:      include/linux/ext2*
6662
6663 EXT4 FILE SYSTEM
6664 M:      "Theodore Ts'o" <tytso@mit.edu>
6665 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6666 L:      linux-ext4@vger.kernel.org
6667 S:      Maintained
6668 W:      http://ext4.wiki.kernel.org
6669 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6671 F:      Documentation/filesystems/ext4/
6672 F:      fs/ext4/
6673 F:      include/trace/events/ext4.h
6674
6675 Extended Verification Module (EVM)
6676 M:      Mimi Zohar <zohar@linux.ibm.com>
6677 L:      linux-integrity@vger.kernel.org
6678 S:      Supported
6679 F:      security/integrity/evm/
6680
6681 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6682 M:      Ard Biesheuvel <ardb@kernel.org>
6683 L:      linux-efi@vger.kernel.org
6684 S:      Maintained
6685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6686 F:      Documentation/admin-guide/efi-stub.rst
6687 F:      arch/*/include/asm/efi.h
6688 F:      arch/*/kernel/efi.c
6689 F:      arch/arm/boot/compressed/efi-header.S
6690 F:      arch/arm64/kernel/efi-entry.S
6691 F:      arch/x86/platform/efi/
6692 F:      drivers/firmware/efi/
6693 F:      include/linux/efi*.h
6694
6695 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6696 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6697 M:      Chanwoo Choi <cw00.choi@samsung.com>
6698 L:      linux-kernel@vger.kernel.org
6699 S:      Maintained
6700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6701 F:      Documentation/devicetree/bindings/extcon/
6702 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6703 F:      drivers/extcon/
6704 F:      include/linux/extcon.h
6705 F:      include/linux/extcon/
6706
6707 EXTRA BOOT CONFIG
6708 M:      Masami Hiramatsu <mhiramat@kernel.org>
6709 S:      Maintained
6710 F:      Documentation/admin-guide/bootconfig.rst
6711 F:      fs/proc/bootconfig.c
6712 F:      include/linux/bootconfig.h
6713 F:      lib/bootconfig.c
6714 F:      tools/bootconfig/*
6715 F:      tools/bootconfig/scripts/*
6716
6717 EXYNOS DP DRIVER
6718 M:      Jingoo Han <jingoohan1@gmail.com>
6719 L:      dri-devel@lists.freedesktop.org
6720 S:      Maintained
6721 F:      drivers/gpu/drm/exynos/exynos_dp*
6722
6723 EXYNOS SYSMMU (IOMMU) driver
6724 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6725 L:      iommu@lists.linux-foundation.org
6726 S:      Maintained
6727 F:      drivers/iommu/exynos-iommu.c
6728
6729 F2FS FILE SYSTEM
6730 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6731 M:      Chao Yu <yuchao0@huawei.com>
6732 L:      linux-f2fs-devel@lists.sourceforge.net
6733 S:      Maintained
6734 W:      https://f2fs.wiki.kernel.org/
6735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6736 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6737 F:      Documentation/filesystems/f2fs.rst
6738 F:      fs/f2fs/
6739 F:      include/linux/f2fs_fs.h
6740 F:      include/trace/events/f2fs.h
6741 F:      include/uapi/linux/f2fs.h
6742
6743 F71805F HARDWARE MONITORING DRIVER
6744 M:      Jean Delvare <jdelvare@suse.com>
6745 L:      linux-hwmon@vger.kernel.org
6746 S:      Maintained
6747 F:      Documentation/hwmon/f71805f.rst
6748 F:      drivers/hwmon/f71805f.c
6749
6750 FADDR2LINE
6751 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6752 S:      Maintained
6753 F:      scripts/faddr2line
6754
6755 FAILOVER MODULE
6756 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6757 L:      netdev@vger.kernel.org
6758 S:      Supported
6759 F:      Documentation/networking/failover.rst
6760 F:      include/net/failover.h
6761 F:      net/core/failover.c
6762
6763 FANOTIFY
6764 M:      Jan Kara <jack@suse.cz>
6765 R:      Amir Goldstein <amir73il@gmail.com>
6766 L:      linux-fsdevel@vger.kernel.org
6767 S:      Maintained
6768 F:      fs/notify/fanotify/
6769 F:      include/linux/fanotify.h
6770 F:      include/uapi/linux/fanotify.h
6771
6772 FARSYNC SYNCHRONOUS DRIVER
6773 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6774 S:      Supported
6775 W:      http://www.farsite.co.uk/
6776 F:      drivers/net/wan/farsync.*
6777
6778 FAULT INJECTION SUPPORT
6779 M:      Akinobu Mita <akinobu.mita@gmail.com>
6780 S:      Supported
6781 F:      Documentation/fault-injection/
6782 F:      lib/fault-inject.c
6783
6784 FBTFT Framebuffer drivers
6785 L:      dri-devel@lists.freedesktop.org
6786 L:      linux-fbdev@vger.kernel.org
6787 S:      Orphan
6788 F:      drivers/staging/fbtft/
6789
6790 FC0011 TUNER DRIVER
6791 M:      Michael Buesch <m@bues.ch>
6792 L:      linux-media@vger.kernel.org
6793 S:      Maintained
6794 F:      drivers/media/tuners/fc0011.c
6795 F:      drivers/media/tuners/fc0011.h
6796
6797 FC2580 MEDIA DRIVER
6798 M:      Antti Palosaari <crope@iki.fi>
6799 L:      linux-media@vger.kernel.org
6800 S:      Maintained
6801 W:      https://linuxtv.org
6802 W:      http://palosaari.fi/linux/
6803 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6804 T:      git git://linuxtv.org/anttip/media_tree.git
6805 F:      drivers/media/tuners/fc2580*
6806
6807 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6808 M:      Hannes Reinecke <hare@suse.de>
6809 L:      linux-scsi@vger.kernel.org
6810 S:      Supported
6811 W:      www.Open-FCoE.org
6812 F:      drivers/scsi/fcoe/
6813 F:      drivers/scsi/libfc/
6814 F:      include/scsi/fc/
6815 F:      include/scsi/libfc.h
6816 F:      include/scsi/libfcoe.h
6817 F:      include/uapi/scsi/fc/
6818
6819 FILE LOCKING (flock() and fcntl()/lockf())
6820 M:      Jeff Layton <jlayton@kernel.org>
6821 M:      "J. Bruce Fields" <bfields@fieldses.org>
6822 L:      linux-fsdevel@vger.kernel.org
6823 S:      Maintained
6824 F:      fs/fcntl.c
6825 F:      fs/locks.c
6826 F:      include/linux/fcntl.h
6827 F:      include/uapi/linux/fcntl.h
6828
6829 FILESYSTEM DIRECT ACCESS (DAX)
6830 M:      Dan Williams <dan.j.williams@intel.com>
6831 R:      Matthew Wilcox <willy@infradead.org>
6832 R:      Jan Kara <jack@suse.cz>
6833 L:      linux-fsdevel@vger.kernel.org
6834 L:      linux-nvdimm@lists.01.org
6835 S:      Supported
6836 F:      fs/dax.c
6837 F:      include/linux/dax.h
6838 F:      include/trace/events/fs_dax.h
6839
6840 FILESYSTEMS (VFS and infrastructure)
6841 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6842 L:      linux-fsdevel@vger.kernel.org
6843 S:      Maintained
6844 F:      fs/*
6845 F:      include/linux/fs.h
6846 F:      include/linux/fs_types.h
6847 F:      include/uapi/linux/fs.h
6848 F:      include/uapi/linux/openat2.h
6849 X:      fs/io-wq.c
6850 X:      fs/io-wq.h
6851 X:      fs/io_uring.c
6852
6853 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6854 M:      Riku Voipio <riku.voipio@iki.fi>
6855 L:      linux-hwmon@vger.kernel.org
6856 S:      Maintained
6857 F:      drivers/hwmon/f75375s.c
6858 F:      include/linux/f75375s.h
6859
6860 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6861 M:      Clemens Ladisch <clemens@ladisch.de>
6862 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
6863 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6864 S:      Maintained
6865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6866 F:      include/uapi/sound/firewire.h
6867 F:      sound/firewire/
6868
6869 FIREWIRE MEDIA DRIVERS (firedtv)
6870 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6871 L:      linux-media@vger.kernel.org
6872 L:      linux1394-devel@lists.sourceforge.net
6873 S:      Maintained
6874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6875 F:      drivers/media/firewire/
6876
6877 FIREWIRE SBP-2 TARGET
6878 M:      Chris Boot <bootc@bootc.net>
6879 L:      linux-scsi@vger.kernel.org
6880 L:      target-devel@vger.kernel.org
6881 L:      linux1394-devel@lists.sourceforge.net
6882 S:      Maintained
6883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6884 F:      drivers/target/sbp/
6885
6886 FIREWIRE SUBSYSTEM
6887 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6888 L:      linux1394-devel@lists.sourceforge.net
6889 S:      Maintained
6890 W:      http://ieee1394.wiki.kernel.org/
6891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6892 F:      drivers/firewire/
6893 F:      include/linux/firewire.h
6894 F:      include/uapi/linux/firewire*.h
6895 F:      tools/firewire/
6896
6897 FIRMWARE LOADER (request_firmware)
6898 M:      Luis Chamberlain <mcgrof@kernel.org>
6899 L:      linux-kernel@vger.kernel.org
6900 S:      Maintained
6901 F:      Documentation/firmware_class/
6902 F:      drivers/base/firmware_loader/
6903 F:      include/linux/firmware.h
6904
6905 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6906 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6907 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6908 S:      Maintained
6909 F:      drivers/block/rsxx/
6910
6911 FLEXTIMER FTM-QUADDEC DRIVER
6912 M:      Patrick Havelange <patrick.havelange@essensium.com>
6913 L:      linux-iio@vger.kernel.org
6914 S:      Maintained
6915 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6916 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6917 F:      drivers/counter/ftm-quaddec.c
6918
6919 FLOPPY DRIVER
6920 M:      Denis Efremov <efremov@linux.com>
6921 L:      linux-block@vger.kernel.org
6922 S:      Odd Fixes
6923 F:      drivers/block/floppy.c
6924
6925 FLYSKY FSIA6B RC RECEIVER
6926 M:      Markus Koch <markus@notsyncing.net>
6927 L:      linux-input@vger.kernel.org
6928 S:      Maintained
6929 F:      drivers/input/joystick/fsia6b.c
6930
6931 FORCEDETH GIGABIT ETHERNET DRIVER
6932 M:      Rain River <rain.1986.08.12@gmail.com>
6933 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
6934 L:      netdev@vger.kernel.org
6935 S:      Maintained
6936 F:      drivers/net/ethernet/nvidia/*
6937
6938 FPGA DFL DRIVERS
6939 M:      Wu Hao <hao.wu@intel.com>
6940 R:      Tom Rix <trix@redhat.com>
6941 L:      linux-fpga@vger.kernel.org
6942 S:      Maintained
6943 F:      Documentation/ABI/testing/sysfs-bus-dfl
6944 F:      Documentation/fpga/dfl.rst
6945 F:      drivers/fpga/dfl*
6946 F:      include/uapi/linux/fpga-dfl.h
6947
6948 FPGA MANAGER FRAMEWORK
6949 M:      Moritz Fischer <mdf@kernel.org>
6950 R:      Tom Rix <trix@redhat.com>
6951 L:      linux-fpga@vger.kernel.org
6952 S:      Maintained
6953 W:      http://www.rocketboards.org
6954 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6956 F:      Documentation/devicetree/bindings/fpga/
6957 F:      Documentation/driver-api/fpga/
6958 F:      Documentation/fpga/
6959 F:      drivers/fpga/
6960 F:      include/linux/fpga/
6961
6962 FPU EMULATOR
6963 M:      Bill Metzenthen <billm@melbpc.org.au>
6964 S:      Maintained
6965 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6966 F:      arch/x86/math-emu/
6967
6968 FRAMEBUFFER LAYER
6969 L:      dri-devel@lists.freedesktop.org
6970 L:      linux-fbdev@vger.kernel.org
6971 S:      Orphan
6972 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6973 T:      git git://anongit.freedesktop.org/drm/drm-misc
6974 F:      Documentation/fb/
6975 F:      drivers/video/
6976 F:      include/linux/fb.h
6977 F:      include/uapi/linux/fb.h
6978 F:      include/uapi/video/
6979 F:      include/video/
6980
6981 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6982 M:      Horia Geantă <horia.geanta@nxp.com>
6983 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6984 L:      linux-crypto@vger.kernel.org
6985 S:      Maintained
6986 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6987 F:      drivers/crypto/caam/
6988
6989 FREESCALE COLDFIRE M5441X MMC DRIVER
6990 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
6991 L:      linux-mmc@vger.kernel.org
6992 S:      Maintained
6993 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
6994 F:      include/linux/platform_data/mmc-esdhc-mcf.h
6995
6996 FREESCALE DIU FRAMEBUFFER DRIVER
6997 M:      Timur Tabi <timur@kernel.org>
6998 L:      linux-fbdev@vger.kernel.org
6999 S:      Maintained
7000 F:      drivers/video/fbdev/fsl-diu-fb.*
7001
7002 FREESCALE DMA DRIVER
7003 M:      Li Yang <leoyang.li@nxp.com>
7004 M:      Zhang Wei <zw@zh-kernel.org>
7005 L:      linuxppc-dev@lists.ozlabs.org
7006 S:      Maintained
7007 F:      drivers/dma/fsldma.*
7008
7009 FREESCALE DSPI DRIVER
7010 M:      Vladimir Oltean <olteanv@gmail.com>
7011 L:      linux-spi@vger.kernel.org
7012 S:      Maintained
7013 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7014 F:      drivers/spi/spi-fsl-dspi.c
7015 F:      include/linux/spi/spi-fsl-dspi.h
7016
7017 FREESCALE ENETC ETHERNET DRIVERS
7018 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7019 L:      netdev@vger.kernel.org
7020 S:      Maintained
7021 F:      drivers/net/ethernet/freescale/enetc/
7022
7023 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7024 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7025 L:      netdev@vger.kernel.org
7026 S:      Maintained
7027 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7028 F:      drivers/net/ethernet/freescale/gianfar*
7029
7030 FREESCALE GPMI NAND DRIVER
7031 M:      Han Xu <han.xu@nxp.com>
7032 L:      linux-mtd@lists.infradead.org
7033 S:      Maintained
7034 F:      drivers/mtd/nand/raw/gpmi-nand/*
7035
7036 FREESCALE I2C CPM DRIVER
7037 M:      Jochen Friedrich <jochen@scram.de>
7038 L:      linuxppc-dev@lists.ozlabs.org
7039 L:      linux-i2c@vger.kernel.org
7040 S:      Maintained
7041 F:      drivers/i2c/busses/i2c-cpm.c
7042
7043 FREESCALE IMX / MXC FEC DRIVER
7044 M:      Fugang Duan <fugang.duan@nxp.com>
7045 L:      netdev@vger.kernel.org
7046 S:      Maintained
7047 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
7048 F:      drivers/net/ethernet/freescale/fec.h
7049 F:      drivers/net/ethernet/freescale/fec_main.c
7050 F:      drivers/net/ethernet/freescale/fec_ptp.c
7051
7052 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7053 M:      Sascha Hauer <s.hauer@pengutronix.de>
7054 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7055 L:      linux-fbdev@vger.kernel.org
7056 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7057 S:      Maintained
7058 F:      drivers/video/fbdev/imxfb.c
7059 F:      include/linux/platform_data/video-imxfb.h
7060
7061 FREESCALE IMX DDR PMU DRIVER
7062 M:      Frank Li <Frank.li@nxp.com>
7063 L:      linux-arm-kernel@lists.infradead.org
7064 S:      Maintained
7065 F:      Documentation/admin-guide/perf/imx-ddr.rst
7066 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7067 F:      drivers/perf/fsl_imx8_ddr_perf.c
7068
7069 FREESCALE IMX I2C DRIVER
7070 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7071 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7072 L:      linux-i2c@vger.kernel.org
7073 S:      Maintained
7074 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7075 F:      drivers/i2c/busses/i2c-imx.c
7076
7077 FREESCALE IMX LPI2C DRIVER
7078 M:      Dong Aisheng <aisheng.dong@nxp.com>
7079 L:      linux-i2c@vger.kernel.org
7080 L:      linux-imx@nxp.com
7081 S:      Maintained
7082 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7083 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7084
7085 FREESCALE QORIQ DPAA ETHERNET DRIVER
7086 M:      Madalin Bucur <madalin.bucur@nxp.com>
7087 L:      netdev@vger.kernel.org
7088 S:      Maintained
7089 F:      drivers/net/ethernet/freescale/dpaa
7090
7091 FREESCALE QORIQ DPAA FMAN DRIVER
7092 M:      Madalin Bucur <madalin.bucur@nxp.com>
7093 L:      netdev@vger.kernel.org
7094 S:      Maintained
7095 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7096 F:      drivers/net/ethernet/freescale/fman
7097
7098 FREESCALE QORIQ PTP CLOCK DRIVER
7099 M:      Yangbo Lu <yangbo.lu@nxp.com>
7100 L:      netdev@vger.kernel.org
7101 S:      Maintained
7102 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7103 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7104 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7105 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7106 F:      drivers/ptp/ptp_qoriq.c
7107 F:      drivers/ptp/ptp_qoriq_debugfs.c
7108 F:      include/linux/fsl/ptp_qoriq.h
7109
7110 FREESCALE QUAD SPI DRIVER
7111 M:      Han Xu <han.xu@nxp.com>
7112 L:      linux-spi@vger.kernel.org
7113 S:      Maintained
7114 F:      drivers/spi/spi-fsl-qspi.c
7115
7116 FREESCALE QUICC ENGINE LIBRARY
7117 M:      Qiang Zhao <qiang.zhao@nxp.com>
7118 L:      linuxppc-dev@lists.ozlabs.org
7119 S:      Maintained
7120 F:      drivers/soc/fsl/qe/
7121 F:      include/soc/fsl/*qe*.h
7122 F:      include/soc/fsl/*ucc*.h
7123
7124 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7125 M:      Li Yang <leoyang.li@nxp.com>
7126 L:      netdev@vger.kernel.org
7127 L:      linuxppc-dev@lists.ozlabs.org
7128 S:      Maintained
7129 F:      drivers/net/ethernet/freescale/ucc_geth*
7130
7131 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7132 M:      Zhao Qiang <qiang.zhao@nxp.com>
7133 L:      netdev@vger.kernel.org
7134 L:      linuxppc-dev@lists.ozlabs.org
7135 S:      Maintained
7136 F:      drivers/net/wan/fsl_ucc_hdlc*
7137
7138 FREESCALE QUICC ENGINE UCC UART DRIVER
7139 M:      Timur Tabi <timur@kernel.org>
7140 L:      linuxppc-dev@lists.ozlabs.org
7141 S:      Maintained
7142 F:      drivers/tty/serial/ucc_uart.c
7143
7144 FREESCALE SOC DRIVERS
7145 M:      Li Yang <leoyang.li@nxp.com>
7146 L:      linuxppc-dev@lists.ozlabs.org
7147 L:      linux-arm-kernel@lists.infradead.org
7148 S:      Maintained
7149 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
7150 F:      Documentation/devicetree/bindings/soc/fsl/
7151 F:      drivers/soc/fsl/
7152 F:      include/linux/fsl/
7153
7154 FREESCALE SOC FS_ENET DRIVER
7155 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7156 L:      linuxppc-dev@lists.ozlabs.org
7157 L:      netdev@vger.kernel.org
7158 S:      Maintained
7159 F:      drivers/net/ethernet/freescale/fs_enet/
7160 F:      include/linux/fs_enet_pd.h
7161
7162 FREESCALE SOC SOUND DRIVERS
7163 M:      Timur Tabi <timur@kernel.org>
7164 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7165 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7166 R:      Fabio Estevam <festevam@gmail.com>
7167 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7168 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7169 L:      linuxppc-dev@lists.ozlabs.org
7170 S:      Maintained
7171 F:      sound/soc/fsl/fsl*
7172 F:      sound/soc/fsl/imx*
7173 F:      sound/soc/fsl/mpc8610_hpcd.c
7174
7175 FREESCALE USB PERIPHERAL DRIVERS
7176 M:      Li Yang <leoyang.li@nxp.com>
7177 L:      linux-usb@vger.kernel.org
7178 L:      linuxppc-dev@lists.ozlabs.org
7179 S:      Maintained
7180 F:      drivers/usb/gadget/udc/fsl*
7181
7182 FREESCALE USB PHY DRIVER
7183 M:      Ran Wang <ran.wang_1@nxp.com>
7184 L:      linux-usb@vger.kernel.org
7185 L:      linuxppc-dev@lists.ozlabs.org
7186 S:      Maintained
7187 F:      drivers/usb/phy/phy-fsl-usb*
7188
7189 FREEVXFS FILESYSTEM
7190 M:      Christoph Hellwig <hch@infradead.org>
7191 S:      Maintained
7192 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7193 F:      fs/freevxfs/
7194
7195 FREEZER
7196 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7197 M:      Pavel Machek <pavel@ucw.cz>
7198 L:      linux-pm@vger.kernel.org
7199 S:      Supported
7200 F:      Documentation/power/freezing-of-tasks.rst
7201 F:      include/linux/freezer.h
7202 F:      kernel/freezer.c
7203
7204 FRONTSWAP API
7205 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7206 L:      linux-kernel@vger.kernel.org
7207 S:      Maintained
7208 F:      include/linux/frontswap.h
7209 F:      mm/frontswap.c
7210
7211 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7212 M:      David Howells <dhowells@redhat.com>
7213 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7214 S:      Supported
7215 F:      Documentation/filesystems/caching/
7216 F:      fs/fscache/
7217 F:      include/linux/fscache*.h
7218
7219 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7220 M:      Theodore Y. Ts'o <tytso@mit.edu>
7221 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7222 M:      Eric Biggers <ebiggers@kernel.org>
7223 L:      linux-fscrypt@vger.kernel.org
7224 S:      Supported
7225 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7226 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7227 F:      Documentation/filesystems/fscrypt.rst
7228 F:      fs/crypto/
7229 F:      include/linux/fscrypt*.h
7230 F:      include/uapi/linux/fscrypt.h
7231
7232 FSI SUBSYSTEM
7233 M:      Jeremy Kerr <jk@ozlabs.org>
7234 M:      Joel Stanley <joel@jms.id.au>
7235 R:      Alistar Popple <alistair@popple.id.au>
7236 R:      Eddie James <eajames@linux.ibm.com>
7237 L:      linux-fsi@lists.ozlabs.org
7238 S:      Supported
7239 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7241 F:      drivers/fsi/
7242 F:      include/linux/fsi*.h
7243 F:      include/trace/events/fsi*.h
7244
7245 FSI-ATTACHED I2C DRIVER
7246 M:      Eddie James <eajames@linux.ibm.com>
7247 L:      linux-i2c@vger.kernel.org
7248 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7249 S:      Maintained
7250 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7251 F:      drivers/i2c/busses/i2c-fsi.c
7252
7253 FSI-ATTACHED SPI DRIVER
7254 M:      Eddie James <eajames@linux.ibm.com>
7255 L:      linux-spi@vger.kernel.org
7256 S:      Maintained
7257 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7258 F:      drivers/spi/spi-fsi.c
7259
7260 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7261 M:      Jan Kara <jack@suse.cz>
7262 R:      Amir Goldstein <amir73il@gmail.com>
7263 L:      linux-fsdevel@vger.kernel.org
7264 S:      Maintained
7265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7266 F:      fs/notify/
7267 F:      include/linux/fsnotify*.h
7268
7269 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7270 M:      Eric Biggers <ebiggers@kernel.org>
7271 M:      Theodore Y. Ts'o <tytso@mit.edu>
7272 L:      linux-fscrypt@vger.kernel.org
7273 S:      Supported
7274 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7275 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7276 F:      Documentation/filesystems/fsverity.rst
7277 F:      fs/verity/
7278 F:      include/linux/fsverity.h
7279 F:      include/uapi/linux/fsverity.h
7280
7281 FUJITSU LAPTOP EXTRAS
7282 M:      Jonathan Woithe <jwoithe@just42.net>
7283 L:      platform-driver-x86@vger.kernel.org
7284 S:      Maintained
7285 F:      drivers/platform/x86/fujitsu-laptop.c
7286
7287 FUJITSU M-5MO LS CAMERA ISP DRIVER
7288 M:      Kyungmin Park <kyungmin.park@samsung.com>
7289 M:      Heungjun Kim <riverful.kim@samsung.com>
7290 L:      linux-media@vger.kernel.org
7291 S:      Maintained
7292 F:      drivers/media/i2c/m5mols/
7293 F:      include/media/i2c/m5mols.h
7294
7295 FUJITSU TABLET EXTRAS
7296 M:      Robert Gerlach <khnz@gmx.de>
7297 L:      platform-driver-x86@vger.kernel.org
7298 S:      Maintained
7299 F:      drivers/platform/x86/fujitsu-tablet.c
7300
7301 FUSE: FILESYSTEM IN USERSPACE
7302 M:      Miklos Szeredi <miklos@szeredi.hu>
7303 L:      linux-fsdevel@vger.kernel.org
7304 S:      Maintained
7305 W:      https://github.com/libfuse/
7306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7307 F:      Documentation/filesystems/fuse.rst
7308 F:      fs/fuse/
7309 F:      include/uapi/linux/fuse.h
7310
7311 FUTEX SUBSYSTEM
7312 M:      Thomas Gleixner <tglx@linutronix.de>
7313 M:      Ingo Molnar <mingo@redhat.com>
7314 R:      Peter Zijlstra <peterz@infradead.org>
7315 R:      Darren Hart <dvhart@infradead.org>
7316 L:      linux-kernel@vger.kernel.org
7317 S:      Maintained
7318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7319 F:      Documentation/locking/*futex*
7320 F:      include/asm-generic/futex.h
7321 F:      include/linux/futex.h
7322 F:      include/uapi/linux/futex.h
7323 F:      kernel/futex.c
7324 F:      tools/perf/bench/futex*
7325 F:      tools/testing/selftests/futex/
7326
7327 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7328 M:      Tim Harvey <tharvey@gateworks.com>
7329 M:      Robert Jones <rjones@gateworks.com>
7330 S:      Maintained
7331 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7332 F:      drivers/mfd/gateworks-gsc.c
7333 F:      include/linux/mfd/gsc.h
7334 F:      Documentation/hwmon/gsc-hwmon.rst
7335 F:      drivers/hwmon/gsc-hwmon.c
7336 F:      include/linux/platform_data/gsc_hwmon.h
7337
7338 GASKET DRIVER FRAMEWORK
7339 M:      Rob Springer <rspringer@google.com>
7340 M:      Todd Poynor <toddpoynor@google.com>
7341 M:      Ben Chan <benchan@chromium.org>
7342 M:      Richard Yeh <rcy@google.com>
7343 S:      Maintained
7344 F:      drivers/staging/gasket/
7345
7346 GCC PLUGINS
7347 M:      Kees Cook <keescook@chromium.org>
7348 L:      linux-hardening@vger.kernel.org
7349 S:      Maintained
7350 F:      Documentation/kbuild/gcc-plugins.rst
7351 F:      scripts/Makefile.gcc-plugins
7352 F:      scripts/gcc-plugins/
7353
7354 GCOV BASED KERNEL PROFILING
7355 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7356 S:      Maintained
7357 F:      Documentation/dev-tools/gcov.rst
7358 F:      kernel/gcov/
7359
7360 GDB KERNEL DEBUGGING HELPER SCRIPTS
7361 M:      Jan Kiszka <jan.kiszka@siemens.com>
7362 M:      Kieran Bingham <kbingham@kernel.org>
7363 S:      Supported
7364 F:      scripts/gdb/
7365
7366 GEMTEK FM RADIO RECEIVER DRIVER
7367 M:      Hans Verkuil <hverkuil@xs4all.nl>
7368 L:      linux-media@vger.kernel.org
7369 S:      Maintained
7370 W:      https://linuxtv.org
7371 T:      git git://linuxtv.org/media_tree.git
7372 F:      drivers/media/radio/radio-gemtek*
7373
7374 GENERIC ARCHITECTURE TOPOLOGY
7375 M:      Sudeep Holla <sudeep.holla@arm.com>
7376 L:      linux-kernel@vger.kernel.org
7377 S:      Maintained
7378 F:      drivers/base/arch_topology.c
7379 F:      include/linux/arch_topology.h
7380
7381 GENERIC ENTRY CODE
7382 M:      Thomas Gleixner <tglx@linutronix.de>
7383 M:      Peter Zijlstra <peterz@infradead.org>
7384 M:      Andy Lutomirski <luto@kernel.org>
7385 L:      linux-kernel@vger.kernel.org
7386 S:      Maintained
7387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7388 F:      include/linux/entry-common.h
7389 F:      include/linux/entry-kvm.h
7390 F:      kernel/entry/
7391
7392 GENERIC GPIO I2C DRIVER
7393 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7394 S:      Supported
7395 F:      drivers/i2c/busses/i2c-gpio.c
7396 F:      include/linux/platform_data/i2c-gpio.h
7397
7398 GENERIC GPIO I2C MULTIPLEXER DRIVER
7399 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7400 L:      linux-i2c@vger.kernel.org
7401 S:      Supported
7402 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7403 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7404 F:      include/linux/platform_data/i2c-mux-gpio.h
7405
7406 GENERIC HDLC (WAN) DRIVERS
7407 M:      Krzysztof Halasa <khc@pm.waw.pl>
7408 S:      Maintained
7409 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7410 F:      drivers/net/wan/c101.c
7411 F:      drivers/net/wan/hd6457*
7412 F:      drivers/net/wan/hdlc*
7413 F:      drivers/net/wan/n2.c
7414 F:      drivers/net/wan/pc300too.c
7415 F:      drivers/net/wan/pci200syn.c
7416 F:      drivers/net/wan/wanxl*
7417
7418 GENERIC INCLUDE/ASM HEADER FILES
7419 M:      Arnd Bergmann <arnd@arndb.de>
7420 L:      linux-arch@vger.kernel.org
7421 S:      Maintained
7422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7423 F:      include/asm-generic/
7424 F:      include/uapi/asm-generic/
7425
7426 GENERIC PHY FRAMEWORK
7427 M:      Kishon Vijay Abraham I <kishon@ti.com>
7428 M:      Vinod Koul <vkoul@kernel.org>
7429 L:      linux-kernel@vger.kernel.org
7430 S:      Supported
7431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7432 F:      Documentation/devicetree/bindings/phy/
7433 F:      drivers/phy/
7434 F:      include/linux/phy/
7435
7436 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7437 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7438 S:      Supported
7439 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7440
7441 GENERIC PM DOMAINS
7442 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7443 M:      Kevin Hilman <khilman@kernel.org>
7444 M:      Ulf Hansson <ulf.hansson@linaro.org>
7445 L:      linux-pm@vger.kernel.org
7446 S:      Supported
7447 F:      Documentation/devicetree/bindings/power/power?domain*
7448 F:      drivers/base/power/domain*.c
7449 F:      include/linux/pm_domain.h
7450
7451 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7452 M:      Eugen Hristev <eugen.hristev@microchip.com>
7453 L:      linux-input@vger.kernel.org
7454 S:      Maintained
7455 F:      drivers/input/touchscreen/resistive-adc-touch.c
7456
7457 GENERIC UIO DRIVER FOR PCI DEVICES
7458 M:      "Michael S. Tsirkin" <mst@redhat.com>
7459 L:      kvm@vger.kernel.org
7460 S:      Supported
7461 F:      drivers/uio/uio_pci_generic.c
7462
7463 GENERIC VDSO LIBRARY
7464 M:      Andy Lutomirski <luto@kernel.org>
7465 M:      Thomas Gleixner <tglx@linutronix.de>
7466 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7467 L:      linux-kernel@vger.kernel.org
7468 S:      Maintained
7469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7470 F:      include/asm-generic/vdso/vsyscall.h
7471 F:      include/vdso/
7472 F:      kernel/time/vsyscall.c
7473 F:      lib/vdso/
7474
7475 GENWQE (IBM Generic Workqueue Card)
7476 M:      Frank Haverkamp <haver@linux.ibm.com>
7477 S:      Supported
7478 F:      drivers/misc/genwqe/
7479
7480 GET_MAINTAINER SCRIPT
7481 M:      Joe Perches <joe@perches.com>
7482 S:      Maintained
7483 F:      scripts/get_maintainer.pl
7484
7485 GFS2 FILE SYSTEM
7486 M:      Bob Peterson <rpeterso@redhat.com>
7487 M:      Andreas Gruenbacher <agruenba@redhat.com>
7488 L:      cluster-devel@redhat.com
7489 S:      Supported
7490 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7492 F:      Documentation/filesystems/gfs2*
7493 F:      fs/gfs2/
7494 F:      include/uapi/linux/gfs2_ondisk.h
7495
7496 GNSS SUBSYSTEM
7497 M:      Johan Hovold <johan@kernel.org>
7498 S:      Maintained
7499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7500 F:      Documentation/ABI/testing/sysfs-class-gnss
7501 F:      Documentation/devicetree/bindings/gnss/
7502 F:      drivers/gnss/
7503 F:      include/linux/gnss.h
7504
7505 GO7007 MPEG CODEC
7506 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7507 L:      linux-media@vger.kernel.org
7508 S:      Maintained
7509 F:      drivers/media/usb/go7007/
7510
7511 GOODIX TOUCHSCREEN
7512 M:      Bastien Nocera <hadess@hadess.net>
7513 L:      linux-input@vger.kernel.org
7514 S:      Maintained
7515 F:      drivers/input/touchscreen/goodix.c
7516
7517 GOOGLE ETHERNET DRIVERS
7518 M:      Catherine Sullivan <csully@google.com>
7519 R:      Sagi Shahar <sagis@google.com>
7520 R:      Jon Olson <jonolson@google.com>
7521 L:      netdev@vger.kernel.org
7522 S:      Supported
7523 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7524 F:      drivers/net/ethernet/google
7525
7526 GPD POCKET FAN DRIVER
7527 M:      Hans de Goede <hdegoede@redhat.com>
7528 L:      platform-driver-x86@vger.kernel.org
7529 S:      Maintained
7530 F:      drivers/platform/x86/gpd-pocket-fan.c
7531
7532 GPIO ACPI SUPPORT
7533 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7534 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7535 L:      linux-gpio@vger.kernel.org
7536 L:      linux-acpi@vger.kernel.org
7537 S:      Maintained
7538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
7539 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7540 F:      drivers/gpio/gpiolib-acpi.c
7541 F:      drivers/gpio/gpiolib-acpi.h
7542
7543 GPIO AGGREGATOR
7544 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7545 L:      linux-gpio@vger.kernel.org
7546 S:      Supported
7547 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7548 F:      drivers/gpio/gpio-aggregator.c
7549
7550 GPIO IR Transmitter
7551 M:      Sean Young <sean@mess.org>
7552 L:      linux-media@vger.kernel.org
7553 S:      Maintained
7554 F:      drivers/media/rc/gpio-ir-tx.c
7555
7556 GPIO MOCKUP DRIVER
7557 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7558 L:      linux-gpio@vger.kernel.org
7559 S:      Maintained
7560 F:      drivers/gpio/gpio-mockup.c
7561 F:      tools/testing/selftests/gpio/
7562
7563 GPIO REGMAP
7564 R:      Michael Walle <michael@walle.cc>
7565 S:      Maintained
7566 F:      drivers/gpio/gpio-regmap.c
7567 F:      include/linux/gpio/regmap.h
7568
7569 GPIO SUBSYSTEM
7570 M:      Linus Walleij <linus.walleij@linaro.org>
7571 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7572 L:      linux-gpio@vger.kernel.org
7573 S:      Maintained
7574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7575 F:      Documentation/ABI/obsolete/sysfs-gpio
7576 F:      Documentation/ABI/testing/gpio-cdev
7577 F:      Documentation/admin-guide/gpio/
7578 F:      Documentation/devicetree/bindings/gpio/
7579 F:      Documentation/driver-api/gpio/
7580 F:      drivers/gpio/
7581 F:      include/asm-generic/gpio.h
7582 F:      include/linux/gpio.h
7583 F:      include/linux/gpio/
7584 F:      include/linux/of_gpio.h
7585 F:      include/uapi/linux/gpio.h
7586 F:      tools/gpio/
7587
7588 GRE DEMULTIPLEXER DRIVER
7589 M:      Dmitry Kozlov <xeb@mail.ru>
7590 L:      netdev@vger.kernel.org
7591 S:      Maintained
7592 F:      include/net/gre.h
7593 F:      net/ipv4/gre_demux.c
7594 F:      net/ipv4/gre_offload.c
7595
7596 GRETH 10/100/1G Ethernet MAC device driver
7597 M:      Andreas Larsson <andreas@gaisler.com>
7598 L:      netdev@vger.kernel.org
7599 S:      Maintained
7600 F:      drivers/net/ethernet/aeroflex/
7601
7602 GREYBUS AUDIO PROTOCOLS DRIVERS
7603 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7604 M:      Mark Greer <mgreer@animalcreek.com>
7605 S:      Maintained
7606 F:      drivers/staging/greybus/audio_apbridgea.c
7607 F:      drivers/staging/greybus/audio_apbridgea.h
7608 F:      drivers/staging/greybus/audio_codec.c
7609 F:      drivers/staging/greybus/audio_codec.h
7610 F:      drivers/staging/greybus/audio_gb.c
7611 F:      drivers/staging/greybus/audio_manager.c
7612 F:      drivers/staging/greybus/audio_manager.h
7613 F:      drivers/staging/greybus/audio_manager_module.c
7614 F:      drivers/staging/greybus/audio_manager_private.h
7615 F:      drivers/staging/greybus/audio_manager_sysfs.c
7616 F:      drivers/staging/greybus/audio_module.c
7617 F:      drivers/staging/greybus/audio_topology.c
7618
7619 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7620 M:      Viresh Kumar <vireshk@kernel.org>
7621 S:      Maintained
7622 F:      drivers/staging/greybus/authentication.c
7623 F:      drivers/staging/greybus/bootrom.c
7624 F:      drivers/staging/greybus/firmware.h
7625 F:      drivers/staging/greybus/fw-core.c
7626 F:      drivers/staging/greybus/fw-download.c
7627 F:      drivers/staging/greybus/fw-management.c
7628 F:      drivers/staging/greybus/greybus_authentication.h
7629 F:      drivers/staging/greybus/greybus_firmware.h
7630 F:      drivers/staging/greybus/hid.c
7631 F:      drivers/staging/greybus/i2c.c
7632 F:      drivers/staging/greybus/spi.c
7633 F:      drivers/staging/greybus/spilib.c
7634 F:      drivers/staging/greybus/spilib.h
7635
7636 GREYBUS LOOPBACK DRIVER
7637 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7638 S:      Maintained
7639 F:      drivers/staging/greybus/loopback.c
7640
7641 GREYBUS PLATFORM DRIVERS
7642 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7643 S:      Maintained
7644 F:      drivers/staging/greybus/arche-apb-ctrl.c
7645 F:      drivers/staging/greybus/arche-platform.c
7646 F:      drivers/staging/greybus/arche_platform.h
7647
7648 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7649 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7650 S:      Maintained
7651 F:      drivers/staging/greybus/gpio.c
7652 F:      drivers/staging/greybus/light.c
7653 F:      drivers/staging/greybus/power_supply.c
7654 F:      drivers/staging/greybus/sdio.c
7655 F:      drivers/staging/greybus/spi.c
7656 F:      drivers/staging/greybus/spilib.c
7657
7658 GREYBUS SUBSYSTEM
7659 M:      Johan Hovold <johan@kernel.org>
7660 M:      Alex Elder <elder@kernel.org>
7661 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7662 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7663 S:      Maintained
7664 F:      drivers/greybus/
7665 F:      drivers/staging/greybus/
7666 F:      include/linux/greybus.h
7667 F:      include/linux/greybus/
7668
7669 GREYBUS UART PROTOCOLS DRIVERS
7670 M:      David Lin <dtwlin@gmail.com>
7671 S:      Maintained
7672 F:      drivers/staging/greybus/log.c
7673 F:      drivers/staging/greybus/uart.c
7674
7675 GS1662 VIDEO SERIALIZER
7676 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7677 L:      linux-media@vger.kernel.org
7678 S:      Maintained
7679 T:      git git://linuxtv.org/media_tree.git
7680 F:      drivers/media/spi/gs1662.c
7681
7682 GSPCA FINEPIX SUBDRIVER
7683 M:      Frank Zago <frank@zago.net>
7684 L:      linux-media@vger.kernel.org
7685 S:      Maintained
7686 T:      git git://linuxtv.org/media_tree.git
7687 F:      drivers/media/usb/gspca/finepix.c
7688
7689 GSPCA GL860 SUBDRIVER
7690 M:      Olivier Lorin <o.lorin@laposte.net>
7691 L:      linux-media@vger.kernel.org
7692 S:      Maintained
7693 T:      git git://linuxtv.org/media_tree.git
7694 F:      drivers/media/usb/gspca/gl860/
7695
7696 GSPCA M5602 SUBDRIVER
7697 M:      Erik Andren <erik.andren@gmail.com>
7698 L:      linux-media@vger.kernel.org
7699 S:      Maintained
7700 T:      git git://linuxtv.org/media_tree.git
7701 F:      drivers/media/usb/gspca/m5602/
7702
7703 GSPCA PAC207 SONIXB SUBDRIVER
7704 M:      Hans Verkuil <hverkuil@xs4all.nl>
7705 L:      linux-media@vger.kernel.org
7706 S:      Odd Fixes
7707 T:      git git://linuxtv.org/media_tree.git
7708 F:      drivers/media/usb/gspca/pac207.c
7709
7710 GSPCA SN9C20X SUBDRIVER
7711 M:      Brian Johnson <brijohn@gmail.com>
7712 L:      linux-media@vger.kernel.org
7713 S:      Maintained
7714 T:      git git://linuxtv.org/media_tree.git
7715 F:      drivers/media/usb/gspca/sn9c20x.c
7716
7717 GSPCA T613 SUBDRIVER
7718 M:      Leandro Costantino <lcostantino@gmail.com>
7719 L:      linux-media@vger.kernel.org
7720 S:      Maintained
7721 T:      git git://linuxtv.org/media_tree.git
7722 F:      drivers/media/usb/gspca/t613.c
7723
7724 GSPCA USB WEBCAM DRIVER
7725 M:      Hans Verkuil <hverkuil@xs4all.nl>
7726 L:      linux-media@vger.kernel.org
7727 S:      Odd Fixes
7728 T:      git git://linuxtv.org/media_tree.git
7729 F:      drivers/media/usb/gspca/
7730
7731 GTP (GPRS Tunneling Protocol)
7732 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7733 M:      Harald Welte <laforge@gnumonks.org>
7734 L:      osmocom-net-gprs@lists.osmocom.org
7735 S:      Maintained
7736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7737 F:      drivers/net/gtp.c
7738
7739 GUID PARTITION TABLE (GPT)
7740 M:      Davidlohr Bueso <dave@stgolabs.net>
7741 L:      linux-efi@vger.kernel.org
7742 S:      Maintained
7743 F:      block/partitions/efi.*
7744
7745 H8/300 ARCHITECTURE
7746 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7747 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7748 S:      Maintained
7749 W:      http://uclinux-h8.sourceforge.jp
7750 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7751 F:      arch/h8300/
7752 F:      drivers/clk/h8300/
7753 F:      drivers/clocksource/h8300_*.c
7754 F:      drivers/irqchip/irq-renesas-h8*.c
7755
7756 HABANALABS PCI DRIVER
7757 M:      Oded Gabbay <ogabbay@kernel.org>
7758 S:      Supported
7759 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
7760 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7761 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7762 F:      drivers/misc/habanalabs/
7763 F:      include/uapi/misc/habanalabs.h
7764
7765 HACKRF MEDIA DRIVER
7766 M:      Antti Palosaari <crope@iki.fi>
7767 L:      linux-media@vger.kernel.org
7768 S:      Maintained
7769 W:      https://linuxtv.org
7770 W:      http://palosaari.fi/linux/
7771 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7772 T:      git git://linuxtv.org/anttip/media_tree.git
7773 F:      drivers/media/usb/hackrf/
7774
7775 HANTRO VPU CODEC DRIVER
7776 M:      Ezequiel Garcia <ezequiel@collabora.com>
7777 M:      Philipp Zabel <p.zabel@pengutronix.de>
7778 L:      linux-media@vger.kernel.org
7779 L:      linux-rockchip@lists.infradead.org
7780 S:      Maintained
7781 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7782 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7783 F:      drivers/staging/media/hantro/
7784
7785 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7786 M:      Frank Seidel <frank@f-seidel.de>
7787 L:      platform-driver-x86@vger.kernel.org
7788 S:      Maintained
7789 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7790 F:      drivers/platform/x86/hdaps.c
7791
7792 HARDWARE MONITORING
7793 M:      Jean Delvare <jdelvare@suse.com>
7794 M:      Guenter Roeck <linux@roeck-us.net>
7795 L:      linux-hwmon@vger.kernel.org
7796 S:      Maintained
7797 W:      http://hwmon.wiki.kernel.org/
7798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7799 F:      Documentation/devicetree/bindings/hwmon/
7800 F:      Documentation/hwmon/
7801 F:      drivers/hwmon/
7802 F:      include/linux/hwmon*.h
7803 F:      include/trace/events/hwmon*.h
7804
7805 HARDWARE RANDOM NUMBER GENERATOR CORE
7806 M:      Matt Mackall <mpm@selenic.com>
7807 M:      Herbert Xu <herbert@gondor.apana.org.au>
7808 L:      linux-crypto@vger.kernel.org
7809 S:      Odd fixes
7810 F:      Documentation/admin-guide/hw_random.rst
7811 F:      Documentation/devicetree/bindings/rng/
7812 F:      drivers/char/hw_random/
7813 F:      include/linux/hw_random.h
7814
7815 HARDWARE SPINLOCK CORE
7816 M:      Ohad Ben-Cohen <ohad@wizery.com>
7817 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7818 R:      Baolin Wang <baolin.wang7@gmail.com>
7819 L:      linux-remoteproc@vger.kernel.org
7820 S:      Maintained
7821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7822 F:      Documentation/devicetree/bindings/hwlock/
7823 F:      Documentation/locking/hwspinlock.rst
7824 F:      drivers/hwspinlock/
7825 F:      include/linux/hwspinlock.h
7826
7827 HARDWARE TRACING FACILITIES
7828 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7829 S:      Maintained
7830 F:      drivers/hwtracing/
7831
7832 HARMONY SOUND DRIVER
7833 L:      linux-parisc@vger.kernel.org
7834 S:      Maintained
7835 F:      sound/parisc/harmony.*
7836
7837 HDPVR USB VIDEO ENCODER DRIVER
7838 M:      Hans Verkuil <hverkuil@xs4all.nl>
7839 L:      linux-media@vger.kernel.org
7840 S:      Odd Fixes
7841 W:      https://linuxtv.org
7842 T:      git git://linuxtv.org/media_tree.git
7843 F:      drivers/media/usb/hdpvr/
7844
7845 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7846 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
7847 S:      Supported
7848 F:      Documentation/watchdog/hpwdt.rst
7849 F:      drivers/watchdog/hpwdt.c
7850
7851 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7852 M:      Don Brace <don.brace@microchip.com>
7853 L:      storagedev@microchip.com
7854 L:      linux-scsi@vger.kernel.org
7855 S:      Supported
7856 F:      Documentation/scsi/hpsa.rst
7857 F:      drivers/scsi/hpsa*.[ch]
7858 F:      include/linux/cciss*.h
7859 F:      include/uapi/linux/cciss*.h
7860
7861 HFI1 DRIVER
7862 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
7863 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
7864 L:      linux-rdma@vger.kernel.org
7865 S:      Supported
7866 F:      drivers/infiniband/hw/hfi1
7867
7868 HFS FILESYSTEM
7869 L:      linux-fsdevel@vger.kernel.org
7870 S:      Orphan
7871 F:      Documentation/filesystems/hfs.rst
7872 F:      fs/hfs/
7873
7874 HFSPLUS FILESYSTEM
7875 L:      linux-fsdevel@vger.kernel.org
7876 S:      Orphan
7877 F:      Documentation/filesystems/hfsplus.rst
7878 F:      fs/hfsplus/
7879
7880 HGA FRAMEBUFFER DRIVER
7881 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7882 L:      linux-nvidia@lists.surfsouth.com
7883 S:      Maintained
7884 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7885 F:      drivers/video/fbdev/hgafb.c
7886
7887 HIBERNATION (aka Software Suspend, aka swsusp)
7888 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7889 M:      Pavel Machek <pavel@ucw.cz>
7890 L:      linux-pm@vger.kernel.org
7891 S:      Supported
7892 B:      https://bugzilla.kernel.org
7893 F:      arch/*/include/asm/suspend*.h
7894 F:      arch/x86/power/
7895 F:      drivers/base/power/
7896 F:      include/linux/freezer.h
7897 F:      include/linux/pm.h
7898 F:      include/linux/suspend.h
7899 F:      kernel/power/
7900
7901 HID CORE LAYER
7902 M:      Jiri Kosina <jikos@kernel.org>
7903 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7904 L:      linux-input@vger.kernel.org
7905 S:      Maintained
7906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7907 F:      drivers/hid/
7908 F:      include/linux/hid*
7909 F:      include/uapi/linux/hid*
7910
7911 HID SENSOR HUB DRIVERS
7912 M:      Jiri Kosina <jikos@kernel.org>
7913 M:      Jonathan Cameron <jic23@kernel.org>
7914 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7915 L:      linux-input@vger.kernel.org
7916 L:      linux-iio@vger.kernel.org
7917 S:      Maintained
7918 F:      Documentation/hid/hid-sensor*
7919 F:      drivers/hid/hid-sensor-*
7920 F:      drivers/iio/*/hid-*
7921 F:      include/linux/hid-sensor-*
7922
7923 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7924 M:      Thomas Gleixner <tglx@linutronix.de>
7925 L:      linux-kernel@vger.kernel.org
7926 S:      Maintained
7927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7928 F:      Documentation/timers/
7929 F:      include/linux/clockchips.h
7930 F:      include/linux/hrtimer.h
7931 F:      kernel/time/clockevents.c
7932 F:      kernel/time/hrtimer.c
7933 F:      kernel/time/timer_*.c
7934
7935 HIGH-SPEED SCC DRIVER FOR AX.25
7936 L:      linux-hams@vger.kernel.org
7937 S:      Orphan
7938 F:      drivers/net/hamradio/dmascc.c
7939 F:      drivers/net/hamradio/scc.c
7940
7941 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7942 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7943 S:      Supported
7944 W:      http://www.highpoint-tech.com
7945 F:      Documentation/scsi/hptiop.rst
7946 F:      drivers/scsi/hptiop.c
7947
7948 HIPPI
7949 M:      Jes Sorensen <jes@trained-monkey.org>
7950 L:      linux-hippi@sunsite.dk
7951 S:      Maintained
7952 F:      drivers/net/hippi/
7953 F:      include/linux/hippidevice.h
7954 F:      include/uapi/linux/if_hippi.h
7955 F:      net/802/hippi.c
7956
7957 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
7958 M:      Kurt Kanzenbach <kurt@linutronix.de>
7959 L:      netdev@vger.kernel.org
7960 S:      Maintained
7961 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
7962 F:      drivers/net/dsa/hirschmann/*
7963 F:      include/linux/platform_data/hirschmann-hellcreek.h
7964 F:      net/dsa/tag_hellcreek.c
7965
7966 HISILICON DMA DRIVER
7967 M:      Zhou Wang <wangzhou1@hisilicon.com>
7968 L:      dmaengine@vger.kernel.org
7969 S:      Maintained
7970 F:      drivers/dma/hisi_dma.c
7971
7972 HISILICON GPIO DRIVER
7973 M:      Luo Jiaxing <luojiaxing@huawei.com>
7974 L:      linux-gpio@vger.kernel.org
7975 S:      Maintained
7976 F:      drivers/gpio/gpio-hisi.c
7977
7978 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7979 M:      Zaibo Xu <xuzaibo@huawei.com>
7980 L:      linux-crypto@vger.kernel.org
7981 S:      Maintained
7982 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7983 F:      drivers/crypto/hisilicon/hpre/hpre.h
7984 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7985 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7986
7987 HISILICON LPC BUS DRIVER
7988 M:      john.garry@huawei.com
7989 S:      Maintained
7990 W:      http://www.hisilicon.com
7991 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
7992 F:      drivers/bus/hisi_lpc.c
7993
7994 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7995 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7996 M:      Salil Mehta <salil.mehta@huawei.com>
7997 L:      netdev@vger.kernel.org
7998 S:      Maintained
7999 W:      http://www.hisilicon.com
8000 F:      drivers/net/ethernet/hisilicon/hns3/
8001
8002 HISILICON NETWORK SUBSYSTEM DRIVER
8003 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8004 M:      Salil Mehta <salil.mehta@huawei.com>
8005 L:      netdev@vger.kernel.org
8006 S:      Maintained
8007 W:      http://www.hisilicon.com
8008 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8009 F:      drivers/net/ethernet/hisilicon/
8010
8011 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8012 M:      John Stultz <john.stultz@linaro.org>
8013 L:      linux-kernel@vger.kernel.org
8014 S:      Maintained
8015 F:      drivers/misc/hisi_hikey_usb.c
8016 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8017
8018 HISILICON PMU DRIVER
8019 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8020 S:      Supported
8021 W:      http://www.hisilicon.com
8022 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8023 F:      drivers/perf/hisilicon
8024
8025 HISILICON QM AND ZIP Controller DRIVER
8026 M:      Zhou Wang <wangzhou1@hisilicon.com>
8027 L:      linux-crypto@vger.kernel.org
8028 S:      Maintained
8029 F:      Documentation/ABI/testing/debugfs-hisi-zip
8030 F:      drivers/crypto/hisilicon/qm.c
8031 F:      drivers/crypto/hisilicon/qm.h
8032 F:      drivers/crypto/hisilicon/sgl.c
8033 F:      drivers/crypto/hisilicon/zip/
8034
8035 HISILICON ROCE DRIVER
8036 M:      Lijun Ou <oulijun@huawei.com>
8037 M:      Wei Hu(Xavier) <huwei87@hisilicon.com>
8038 M:      Weihang Li <liweihang@huawei.com>
8039 L:      linux-rdma@vger.kernel.org
8040 S:      Maintained
8041 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8042 F:      drivers/infiniband/hw/hns/
8043
8044 HISILICON SAS Controller
8045 M:      John Garry <john.garry@huawei.com>
8046 S:      Supported
8047 W:      http://www.hisilicon.com
8048 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8049 F:      drivers/scsi/hisi_sas/
8050
8051 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8052 M:      Zaibo Xu <xuzaibo@huawei.com>
8053 L:      linux-crypto@vger.kernel.org
8054 S:      Maintained
8055 F:      Documentation/ABI/testing/debugfs-hisi-sec
8056 F:      drivers/crypto/hisilicon/sec2/sec.h
8057 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8058 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8059 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8060
8061 HISILICON STAGING DRIVERS FOR HIKEY 960/970
8062 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8063 L:      devel@driverdev.osuosl.org
8064 S:      Maintained
8065 F:      drivers/staging/hikey9xx/
8066
8067 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8068 M:      Zaibo Xu <xuzaibo@huawei.com>
8069 S:      Maintained
8070 F:      drivers/crypto/hisilicon/trng/trng.c
8071
8072 HISILICON V3XX SPI NOR FLASH Controller Driver
8073 M:      John Garry <john.garry@huawei.com>
8074 S:      Maintained
8075 W:      http://www.hisilicon.com
8076 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8077
8078 HMM - Heterogeneous Memory Management
8079 M:      Jérôme Glisse <jglisse@redhat.com>
8080 L:      linux-mm@kvack.org
8081 S:      Maintained
8082 F:      Documentation/vm/hmm.rst
8083 F:      include/linux/hmm*
8084 F:      lib/test_hmm*
8085 F:      mm/hmm*
8086 F:      tools/testing/selftests/vm/*hmm*
8087
8088 HOST AP DRIVER
8089 M:      Jouni Malinen <j@w1.fi>
8090 L:      linux-wireless@vger.kernel.org
8091 S:      Obsolete
8092 W:      http://w1.fi/hostap-driver.html
8093 F:      drivers/net/wireless/intersil/hostap/
8094
8095 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8096 L:      platform-driver-x86@vger.kernel.org
8097 S:      Orphan
8098 F:      drivers/platform/x86/tc1100-wmi.c
8099
8100 HPET:   High Precision Event Timers driver
8101 M:      Clemens Ladisch <clemens@ladisch.de>
8102 S:      Maintained
8103 F:      Documentation/timers/hpet.rst
8104 F:      drivers/char/hpet.c
8105 F:      include/linux/hpet.h
8106 F:      include/uapi/linux/hpet.h
8107
8108 HPET:   x86
8109 S:      Orphan
8110 F:      arch/x86/include/asm/hpet.h
8111 F:      arch/x86/kernel/hpet.c
8112
8113 HPFS FILESYSTEM
8114 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8115 S:      Maintained
8116 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8117 F:      fs/hpfs/
8118
8119 HSI SUBSYSTEM
8120 M:      Sebastian Reichel <sre@kernel.org>
8121 S:      Maintained
8122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8123 F:      Documentation/ABI/testing/sysfs-bus-hsi
8124 F:      Documentation/driver-api/hsi.rst
8125 F:      drivers/hsi/
8126 F:      include/linux/hsi/
8127 F:      include/uapi/linux/hsi/
8128
8129 HSO 3G MODEM DRIVER
8130 L:      linux-usb@vger.kernel.org
8131 S:      Orphan
8132 F:      drivers/net/usb/hso.c
8133
8134 HSR NETWORK PROTOCOL
8135 L:      netdev@vger.kernel.org
8136 S:      Orphan
8137 F:      net/hsr/
8138
8139 HT16K33 LED CONTROLLER DRIVER
8140 M:      Robin van der Gracht <robin@protonic.nl>
8141 S:      Maintained
8142 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8143 F:      drivers/auxdisplay/ht16k33.c
8144
8145 HTCPEN TOUCHSCREEN DRIVER
8146 M:      Pau Oliva Fora <pof@eslack.org>
8147 L:      linux-input@vger.kernel.org
8148 S:      Maintained
8149 F:      drivers/input/touchscreen/htcpen.c
8150
8151 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8152 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8153 L:      linux-iio@vger.kernel.org
8154 S:      Maintained
8155 W:      http://www.st.com/
8156 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
8157 F:      drivers/iio/humidity/hts221*
8158
8159 HUAWEI ETHERNET DRIVER
8160 M:      Bin Luo <luobin9@huawei.com>
8161 L:      netdev@vger.kernel.org
8162 S:      Supported
8163 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8164 F:      drivers/net/ethernet/huawei/hinic/
8165
8166 HUGETLB FILESYSTEM
8167 M:      Mike Kravetz <mike.kravetz@oracle.com>
8168 L:      linux-mm@kvack.org
8169 S:      Maintained
8170 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8171 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8172 F:      Documentation/vm/hugetlbfs_reserv.rst
8173 F:      fs/hugetlbfs/
8174 F:      include/linux/hugetlb.h
8175 F:      mm/hugetlb.c
8176
8177 HVA ST MEDIA DRIVER
8178 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
8179 L:      linux-media@vger.kernel.org
8180 S:      Supported
8181 W:      https://linuxtv.org
8182 T:      git git://linuxtv.org/media_tree.git
8183 F:      drivers/media/platform/sti/hva
8184
8185 HWPOISON MEMORY FAILURE HANDLING
8186 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8187 L:      linux-mm@kvack.org
8188 S:      Maintained
8189 F:      mm/hwpoison-inject.c
8190 F:      mm/memory-failure.c
8191
8192 HYGON PROCESSOR SUPPORT
8193 M:      Pu Wen <puwen@hygon.cn>
8194 L:      linux-kernel@vger.kernel.org
8195 S:      Maintained
8196 F:      arch/x86/kernel/cpu/hygon.c
8197
8198 HYNIX HI556 SENSOR DRIVER
8199 M:      Shawn Tu <shawnx.tu@intel.com>
8200 L:      linux-media@vger.kernel.org
8201 S:      Maintained
8202 T:      git git://linuxtv.org/media_tree.git
8203 F:      drivers/media/i2c/hi556.c
8204
8205 Hyper-V CORE AND DRIVERS
8206 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8207 M:      Haiyang Zhang <haiyangz@microsoft.com>
8208 M:      Stephen Hemminger <sthemmin@microsoft.com>
8209 M:      Wei Liu <wei.liu@kernel.org>
8210 L:      linux-hyperv@vger.kernel.org
8211 S:      Supported
8212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8213 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8214 F:      Documentation/ABI/testing/debugfs-hyperv
8215 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8216 F:      arch/x86/hyperv
8217 F:      arch/x86/include/asm/hyperv-tlfs.h
8218 F:      arch/x86/include/asm/mshyperv.h
8219 F:      arch/x86/include/asm/trace/hyperv.h
8220 F:      arch/x86/kernel/cpu/mshyperv.c
8221 F:      drivers/clocksource/hyperv_timer.c
8222 F:      drivers/hid/hid-hyperv.c
8223 F:      drivers/hv/
8224 F:      drivers/input/serio/hyperv-keyboard.c
8225 F:      drivers/iommu/hyperv-iommu.c
8226 F:      drivers/net/hyperv/
8227 F:      drivers/pci/controller/pci-hyperv-intf.c
8228 F:      drivers/pci/controller/pci-hyperv.c
8229 F:      drivers/scsi/storvsc_drv.c
8230 F:      drivers/uio/uio_hv_generic.c
8231 F:      drivers/video/fbdev/hyperv_fb.c
8232 F:      include/asm-generic/hyperv-tlfs.h
8233 F:      include/asm-generic/mshyperv.h
8234 F:      include/clocksource/hyperv_timer.h
8235 F:      include/linux/hyperv.h
8236 F:      include/uapi/linux/hyperv.h
8237 F:      net/vmw_vsock/hyperv_transport.c
8238 F:      tools/hv/
8239
8240 HYPERBUS SUPPORT
8241 M:      Vignesh Raghavendra <vigneshr@ti.com>
8242 L:      linux-mtd@lists.infradead.org
8243 S:      Supported
8244 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8245 C:      irc://irc.oftc.net/mtd
8246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8247 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8248 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8249 F:      drivers/mtd/hyperbus/
8250 F:      include/linux/mtd/hyperbus.h
8251
8252 HYPERVISOR VIRTUAL CONSOLE DRIVER
8253 L:      linuxppc-dev@lists.ozlabs.org
8254 S:      Odd Fixes
8255 F:      drivers/tty/hvc/
8256
8257 I2C ACPI SUPPORT
8258 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8259 L:      linux-i2c@vger.kernel.org
8260 L:      linux-acpi@vger.kernel.org
8261 S:      Maintained
8262 F:      drivers/i2c/i2c-core-acpi.c
8263
8264 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8265 M:      Ajay Gupta <ajayg@nvidia.com>
8266 L:      linux-i2c@vger.kernel.org
8267 S:      Maintained
8268 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8269 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8270
8271 I2C MUXES
8272 M:      Peter Rosin <peda@axentia.se>
8273 L:      linux-i2c@vger.kernel.org
8274 S:      Maintained
8275 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8276 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8277 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8278 F:      Documentation/i2c/i2c-topology.rst
8279 F:      Documentation/i2c/muxes/
8280 F:      drivers/i2c/i2c-mux.c
8281 F:      drivers/i2c/muxes/
8282 F:      include/linux/i2c-mux.h
8283
8284 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8285 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8286 L:      linux-i2c@vger.kernel.org
8287 S:      Maintained
8288 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8289 F:      drivers/i2c/busses/i2c-mv64xxx.c
8290
8291 I2C OVER PARALLEL PORT
8292 M:      Jean Delvare <jdelvare@suse.com>
8293 L:      linux-i2c@vger.kernel.org
8294 S:      Maintained
8295 F:      Documentation/i2c/busses/i2c-parport.rst
8296 F:      drivers/i2c/busses/i2c-parport.c
8297
8298 I2C SUBSYSTEM
8299 M:      Wolfram Sang <wsa@kernel.org>
8300 L:      linux-i2c@vger.kernel.org
8301 S:      Maintained
8302 W:      https://i2c.wiki.kernel.org/
8303 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8305 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8306 F:      Documentation/i2c/
8307 F:      drivers/i2c/*
8308 F:      include/linux/i2c-dev.h
8309 F:      include/linux/i2c-smbus.h
8310 F:      include/linux/i2c.h
8311 F:      include/uapi/linux/i2c-*.h
8312 F:      include/uapi/linux/i2c.h
8313
8314 I2C SUBSYSTEM HOST DRIVERS
8315 L:      linux-i2c@vger.kernel.org
8316 S:      Odd Fixes
8317 W:      https://i2c.wiki.kernel.org/
8318 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8320 F:      Documentation/devicetree/bindings/i2c/
8321 F:      drivers/i2c/algos/
8322 F:      drivers/i2c/busses/
8323
8324 I2C-TAOS-EVM DRIVER
8325 M:      Jean Delvare <jdelvare@suse.com>
8326 L:      linux-i2c@vger.kernel.org
8327 S:      Maintained
8328 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8329 F:      drivers/i2c/busses/i2c-taos-evm.c
8330
8331 I2C-TINY-USB DRIVER
8332 M:      Till Harbaum <till@harbaum.org>
8333 L:      linux-i2c@vger.kernel.org
8334 S:      Maintained
8335 W:      http://www.harbaum.org/till/i2c_tiny_usb
8336 F:      drivers/i2c/busses/i2c-tiny-usb.c
8337
8338 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8339 M:      Jean Delvare <jdelvare@suse.com>
8340 L:      linux-i2c@vger.kernel.org
8341 S:      Maintained
8342 F:      Documentation/i2c/busses/i2c-ali1535.rst
8343 F:      Documentation/i2c/busses/i2c-ali1563.rst
8344 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8345 F:      Documentation/i2c/busses/i2c-amd756.rst
8346 F:      Documentation/i2c/busses/i2c-amd8111.rst
8347 F:      Documentation/i2c/busses/i2c-i801.rst
8348 F:      Documentation/i2c/busses/i2c-nforce2.rst
8349 F:      Documentation/i2c/busses/i2c-piix4.rst
8350 F:      Documentation/i2c/busses/i2c-sis5595.rst
8351 F:      Documentation/i2c/busses/i2c-sis630.rst
8352 F:      Documentation/i2c/busses/i2c-sis96x.rst
8353 F:      Documentation/i2c/busses/i2c-via.rst
8354 F:      Documentation/i2c/busses/i2c-viapro.rst
8355 F:      drivers/i2c/busses/i2c-ali1535.c
8356 F:      drivers/i2c/busses/i2c-ali1563.c
8357 F:      drivers/i2c/busses/i2c-ali15x3.c
8358 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8359 F:      drivers/i2c/busses/i2c-amd756.c
8360 F:      drivers/i2c/busses/i2c-amd8111.c
8361 F:      drivers/i2c/busses/i2c-i801.c
8362 F:      drivers/i2c/busses/i2c-isch.c
8363 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8364 F:      drivers/i2c/busses/i2c-nforce2.c
8365 F:      drivers/i2c/busses/i2c-piix4.c
8366 F:      drivers/i2c/busses/i2c-sis5595.c
8367 F:      drivers/i2c/busses/i2c-sis630.c
8368 F:      drivers/i2c/busses/i2c-sis96x.c
8369 F:      drivers/i2c/busses/i2c-via.c
8370 F:      drivers/i2c/busses/i2c-viapro.c
8371
8372 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8373 M:      Hans de Goede <hdegoede@redhat.com>
8374 L:      linux-i2c@vger.kernel.org
8375 S:      Maintained
8376 F:      drivers/i2c/busses/i2c-cht-wc.c
8377
8378 I2C/SMBUS ISMT DRIVER
8379 M:      Seth Heasley <seth.heasley@intel.com>
8380 M:      Neil Horman <nhorman@tuxdriver.com>
8381 L:      linux-i2c@vger.kernel.org
8382 F:      Documentation/i2c/busses/i2c-ismt.rst
8383 F:      drivers/i2c/busses/i2c-ismt.c
8384
8385 I2C/SMBUS STUB DRIVER
8386 M:      Jean Delvare <jdelvare@suse.com>
8387 L:      linux-i2c@vger.kernel.org
8388 S:      Maintained
8389 F:      drivers/i2c/i2c-stub.c
8390
8391 I3C DRIVER FOR CADENCE I3C MASTER IP
8392 M:      Przemysław Gaj <pgaj@cadence.com>
8393 S:      Maintained
8394 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8395 F:      drivers/i3c/master/i3c-master-cdns.c
8396
8397 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8398 M:      Vitor Soares <vitor.soares@synopsys.com>
8399 S:      Maintained
8400 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8401 F:      drivers/i3c/master/dw*
8402
8403 I3C SUBSYSTEM
8404 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
8405 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8406 S:      Maintained
8407 C:      irc://chat.freenode.net/linux-i3c
8408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8409 F:      Documentation/ABI/testing/sysfs-bus-i3c
8410 F:      Documentation/devicetree/bindings/i3c/
8411 F:      Documentation/driver-api/i3c
8412 F:      drivers/i3c/
8413 F:      include/linux/i3c/
8414
8415 IA64 (Itanium) PLATFORM
8416 L:      linux-ia64@vger.kernel.org
8417 S:      Orphan
8418 F:      Documentation/ia64/
8419 F:      arch/ia64/
8420
8421 IBM Power 842 compression accelerator
8422 M:      Haren Myneni <haren@us.ibm.com>
8423 S:      Supported
8424 F:      crypto/842.c
8425 F:      drivers/crypto/nx/Kconfig
8426 F:      drivers/crypto/nx/Makefile
8427 F:      drivers/crypto/nx/nx-842*
8428 F:      include/linux/sw842.h
8429 F:      lib/842/
8430
8431 IBM Power in-Nest Crypto Acceleration
8432 M:      Breno Leitão <leitao@debian.org>
8433 M:      Nayna Jain <nayna@linux.ibm.com>
8434 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8435 L:      linux-crypto@vger.kernel.org
8436 S:      Supported
8437 F:      drivers/crypto/nx/Kconfig
8438 F:      drivers/crypto/nx/Makefile
8439 F:      drivers/crypto/nx/nx-aes*
8440 F:      drivers/crypto/nx/nx-sha*
8441 F:      drivers/crypto/nx/nx.*
8442 F:      drivers/crypto/nx/nx_csbcpb.h
8443 F:      drivers/crypto/nx/nx_debugfs.c
8444
8445 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8446 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8447 L:      linux-pci@vger.kernel.org
8448 L:      linuxppc-dev@lists.ozlabs.org
8449 S:      Supported
8450 F:      drivers/pci/hotplug/rpadlpar*
8451
8452 IBM Power Linux RAID adapter
8453 M:      Brian King <brking@us.ibm.com>
8454 S:      Supported
8455 F:      drivers/scsi/ipr.*
8456
8457 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8458 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8459 L:      linux-pci@vger.kernel.org
8460 L:      linuxppc-dev@lists.ozlabs.org
8461 S:      Supported
8462 F:      drivers/pci/hotplug/rpaphp*
8463
8464 IBM Power SRIOV Virtual NIC Device Driver
8465 M:      Dany Madden <drt@linux.ibm.com>
8466 M:      Lijun Pan <ljp@linux.ibm.com>
8467 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8468 L:      netdev@vger.kernel.org
8469 S:      Supported
8470 F:      drivers/net/ethernet/ibm/ibmvnic.*
8471
8472 IBM Power Virtual Accelerator Switchboard
8473 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8474 L:      linuxppc-dev@lists.ozlabs.org
8475 S:      Supported
8476 F:      arch/powerpc/include/asm/vas.h
8477 F:      arch/powerpc/platforms/powernv/copy-paste.h
8478 F:      arch/powerpc/platforms/powernv/vas*
8479
8480 IBM Power Virtual Ethernet Device Driver
8481 M:      Cristobal Forno <cforno12@linux.ibm.com>
8482 L:      netdev@vger.kernel.org
8483 S:      Supported
8484 F:      drivers/net/ethernet/ibm/ibmveth.*
8485
8486 IBM Power Virtual FC Device Drivers
8487 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8488 L:      linux-scsi@vger.kernel.org
8489 S:      Supported
8490 F:      drivers/scsi/ibmvscsi/ibmvfc*
8491
8492 IBM Power Virtual Management Channel Driver
8493 M:      Steven Royer <seroyer@linux.ibm.com>
8494 S:      Supported
8495 F:      drivers/misc/ibmvmc.*
8496
8497 IBM Power Virtual SCSI Device Drivers
8498 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8499 L:      linux-scsi@vger.kernel.org
8500 S:      Supported
8501 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8502 F:      include/scsi/viosrp.h
8503
8504 IBM Power Virtual SCSI Device Target Driver
8505 M:      Michael Cyr <mikecyr@linux.ibm.com>
8506 L:      linux-scsi@vger.kernel.org
8507 L:      target-devel@vger.kernel.org
8508 S:      Supported
8509 F:      drivers/scsi/ibmvscsi_tgt/
8510
8511 IBM Power VMX Cryptographic instructions
8512 M:      Breno Leitão <leitao@debian.org>
8513 M:      Nayna Jain <nayna@linux.ibm.com>
8514 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8515 L:      linux-crypto@vger.kernel.org
8516 S:      Supported
8517 F:      drivers/crypto/vmx/Kconfig
8518 F:      drivers/crypto/vmx/Makefile
8519 F:      drivers/crypto/vmx/aes*
8520 F:      drivers/crypto/vmx/ghash*
8521 F:      drivers/crypto/vmx/ppc-xlate.pl
8522 F:      drivers/crypto/vmx/vmx.c
8523
8524 IBM ServeRAID RAID DRIVER
8525 S:      Orphan
8526 F:      drivers/scsi/ips.*
8527
8528 ICH LPC AND GPIO DRIVER
8529 M:      Peter Tyser <ptyser@xes-inc.com>
8530 S:      Maintained
8531 F:      drivers/gpio/gpio-ich.c
8532 F:      drivers/mfd/lpc_ich.c
8533
8534 ICY I2C DRIVER
8535 M:      Max Staudt <max@enpas.org>
8536 L:      linux-i2c@vger.kernel.org
8537 S:      Maintained
8538 F:      drivers/i2c/busses/i2c-icy.c
8539
8540 IDE SUBSYSTEM
8541 M:      "David S. Miller" <davem@davemloft.net>
8542 L:      linux-ide@vger.kernel.org
8543 S:      Maintained
8544 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8546 F:      Documentation/ide/
8547 F:      drivers/ide/
8548 F:      include/linux/ide.h
8549
8550 IDE/ATAPI DRIVERS
8551 M:      Borislav Petkov <bp@alien8.de>
8552 L:      linux-ide@vger.kernel.org
8553 S:      Maintained
8554 F:      Documentation/cdrom/ide-cd.rst
8555 F:      drivers/ide/ide-cd*
8556
8557 IDEAPAD LAPTOP EXTRAS DRIVER
8558 M:      Ike Panhc <ike.pan@canonical.com>
8559 L:      platform-driver-x86@vger.kernel.org
8560 S:      Maintained
8561 W:      http://launchpad.net/ideapad-laptop
8562 F:      drivers/platform/x86/ideapad-laptop.c
8563
8564 IDEAPAD LAPTOP SLIDEBAR DRIVER
8565 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8566 L:      linux-input@vger.kernel.org
8567 S:      Maintained
8568 W:      https://github.com/o2genum/ideapad-slidebar
8569 F:      drivers/input/misc/ideapad_slidebar.c
8570
8571 IDT VersaClock 5 CLOCK DRIVER
8572 M:      Luca Ceresoli <luca@lucaceresoli.net>
8573 S:      Maintained
8574 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
8575 F:      drivers/clk/clk-versaclock5.c
8576
8577 IEEE 802.15.4 SUBSYSTEM
8578 M:      Alexander Aring <alex.aring@gmail.com>
8579 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8580 L:      linux-wpan@vger.kernel.org
8581 S:      Maintained
8582 W:      https://linux-wpan.org/
8583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8585 F:      Documentation/networking/ieee802154.rst
8586 F:      drivers/net/ieee802154/
8587 F:      include/linux/ieee802154.h
8588 F:      include/linux/nl802154.h
8589 F:      include/net/af_ieee802154.h
8590 F:      include/net/cfg802154.h
8591 F:      include/net/ieee802154_netdev.h
8592 F:      include/net/mac802154.h
8593 F:      include/net/nl802154.h
8594 F:      net/ieee802154/
8595 F:      net/mac802154/
8596
8597 IFE PROTOCOL
8598 M:      Yotam Gigi <yotam.gi@gmail.com>
8599 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8600 F:      include/net/ife.h
8601 F:      include/uapi/linux/ife.h
8602 F:      net/ife
8603
8604 IGORPLUG-USB IR RECEIVER
8605 M:      Sean Young <sean@mess.org>
8606 L:      linux-media@vger.kernel.org
8607 S:      Maintained
8608 F:      drivers/media/rc/igorplugusb.c
8609
8610 IGUANAWORKS USB IR TRANSCEIVER
8611 M:      Sean Young <sean@mess.org>
8612 L:      linux-media@vger.kernel.org
8613 S:      Maintained
8614 F:      drivers/media/rc/iguanair.c
8615
8616 IIO DIGITAL POTENTIOMETER DAC
8617 M:      Peter Rosin <peda@axentia.se>
8618 L:      linux-iio@vger.kernel.org
8619 S:      Maintained
8620 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8621 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8622 F:      drivers/iio/dac/dpot-dac.c
8623
8624 IIO ENVELOPE DETECTOR
8625 M:      Peter Rosin <peda@axentia.se>
8626 L:      linux-iio@vger.kernel.org
8627 S:      Maintained
8628 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8629 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8630 F:      drivers/iio/adc/envelope-detector.c
8631
8632 IIO MULTIPLEXER
8633 M:      Peter Rosin <peda@axentia.se>
8634 L:      linux-iio@vger.kernel.org
8635 S:      Maintained
8636 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8637 F:      drivers/iio/multiplexer/iio-mux.c
8638
8639 IIO SUBSYSTEM AND DRIVERS
8640 M:      Jonathan Cameron <jic23@kernel.org>
8641 R:      Lars-Peter Clausen <lars@metafoo.de>
8642 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
8643 L:      linux-iio@vger.kernel.org
8644 S:      Maintained
8645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8646 F:      Documentation/ABI/testing/configfs-iio*
8647 F:      Documentation/ABI/testing/sysfs-bus-iio*
8648 F:      Documentation/devicetree/bindings/iio/
8649 F:      drivers/iio/
8650 F:      drivers/staging/iio/
8651 F:      include/linux/iio/
8652 F:      tools/iio/
8653
8654 IIO UNIT CONVERTER
8655 M:      Peter Rosin <peda@axentia.se>
8656 L:      linux-iio@vger.kernel.org
8657 S:      Maintained
8658 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8659 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8660 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8661 F:      drivers/iio/afe/iio-rescale.c
8662
8663 IKANOS/ADI EAGLE ADSL USB DRIVER
8664 M:      Matthieu Castet <castet.matthieu@free.fr>
8665 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8666 S:      Maintained
8667 F:      drivers/usb/atm/ueagle-atm.c
8668
8669 IMGTEC ASCII LCD DRIVER
8670 M:      Paul Burton <paulburton@kernel.org>
8671 S:      Maintained
8672 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8673 F:      drivers/auxdisplay/img-ascii-lcd.c
8674
8675 IMGTEC IR DECODER DRIVER
8676 S:      Orphan
8677 F:      drivers/media/rc/img-ir/
8678
8679 IMON SOUNDGRAPH USB IR RECEIVER
8680 M:      Sean Young <sean@mess.org>
8681 L:      linux-media@vger.kernel.org
8682 S:      Maintained
8683 F:      drivers/media/rc/imon.c
8684 F:      drivers/media/rc/imon_raw.c
8685
8686 IMS TWINTURBO FRAMEBUFFER DRIVER
8687 L:      linux-fbdev@vger.kernel.org
8688 S:      Orphan
8689 F:      drivers/video/fbdev/imsttfb.c
8690
8691 INA209 HARDWARE MONITOR DRIVER
8692 M:      Guenter Roeck <linux@roeck-us.net>
8693 L:      linux-hwmon@vger.kernel.org
8694 S:      Maintained
8695 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
8696 F:      Documentation/hwmon/ina209.rst
8697 F:      drivers/hwmon/ina209.c
8698
8699 INA2XX HARDWARE MONITOR DRIVER
8700 M:      Guenter Roeck <linux@roeck-us.net>
8701 L:      linux-hwmon@vger.kernel.org
8702 S:      Maintained
8703 F:      Documentation/hwmon/ina2xx.rst
8704 F:      drivers/hwmon/ina2xx.c
8705 F:      include/linux/platform_data/ina2xx.h
8706
8707 INDUSTRY PACK SUBSYSTEM (IPACK)
8708 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8709 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8710 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8711 L:      industrypack-devel@lists.sourceforge.net
8712 S:      Maintained
8713 W:      http://industrypack.sourceforge.net
8714 F:      drivers/ipack/
8715
8716 INFINEON DPS310 Driver
8717 M:      Eddie James <eajames@linux.ibm.com>
8718 L:      linux-iio@vger.kernel.org
8719 S:      Maintained
8720 F:      drivers/iio/pressure/dps310.c
8721
8722 INFINIBAND SUBSYSTEM
8723 M:      Doug Ledford <dledford@redhat.com>
8724 M:      Jason Gunthorpe <jgg@nvidia.com>
8725 L:      linux-rdma@vger.kernel.org
8726 S:      Supported
8727 W:      https://github.com/linux-rdma/rdma-core
8728 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8730 F:      Documentation/devicetree/bindings/infiniband/
8731 F:      Documentation/infiniband/
8732 F:      drivers/infiniband/
8733 F:      include/rdma/
8734 F:      include/trace/events/ib_mad.h
8735 F:      include/trace/events/ib_umad.h
8736 F:      include/uapi/linux/if_infiniband.h
8737 F:      include/uapi/rdma/
8738 F:      samples/bpf/ibumad_kern.c
8739 F:      samples/bpf/ibumad_user.c
8740
8741 INGENIC JZ4780 NAND DRIVER
8742 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8743 L:      linux-mtd@lists.infradead.org
8744 L:      linux-mips@vger.kernel.org
8745 S:      Maintained
8746 F:      drivers/mtd/nand/raw/ingenic/
8747
8748 INGENIC JZ47xx SoCs
8749 M:      Paul Cercueil <paul@crapouillou.net>
8750 L:      linux-mips@vger.kernel.org
8751 S:      Maintained
8752 F:      arch/mips/boot/dts/ingenic/
8753 F:      arch/mips/generic/board-ingenic.c
8754 F:      arch/mips/include/asm/mach-ingenic/
8755 F:      arch/mips/ingenic/Kconfig
8756 F:      drivers/clk/ingenic/
8757 F:      drivers/dma/dma-jz4780.c
8758 F:      drivers/gpu/drm/ingenic/
8759 F:      drivers/i2c/busses/i2c-jz4780.c
8760 F:      drivers/iio/adc/ingenic-adc.c
8761 F:      drivers/irqchip/irq-ingenic.c
8762 F:      drivers/memory/jz4780-nemc.c
8763 F:      drivers/mmc/host/jz4740_mmc.c
8764 F:      drivers/mtd/nand/raw/ingenic/
8765 F:      drivers/pinctrl/pinctrl-ingenic.c
8766 F:      drivers/power/supply/ingenic-battery.c
8767 F:      drivers/pwm/pwm-jz4740.c
8768 F:      drivers/remoteproc/ingenic_rproc.c
8769 F:      drivers/rtc/rtc-jz4740.c
8770 F:      drivers/tty/serial/8250/8250_ingenic.c
8771 F:      drivers/usb/musb/jz4740.c
8772 F:      drivers/watchdog/jz4740_wdt.c
8773 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8774 F:      include/linux/mfd/ingenic-tcu.h
8775 F:      sound/soc/codecs/jz47*
8776 F:      sound/soc/jz4740/
8777
8778 INOTIFY
8779 M:      Jan Kara <jack@suse.cz>
8780 R:      Amir Goldstein <amir73il@gmail.com>
8781 L:      linux-fsdevel@vger.kernel.org
8782 S:      Maintained
8783 F:      Documentation/filesystems/inotify.rst
8784 F:      fs/notify/inotify/
8785 F:      include/linux/inotify.h
8786 F:      include/uapi/linux/inotify.h
8787
8788 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8789 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8790 L:      linux-input@vger.kernel.org
8791 S:      Maintained
8792 Q:      http://patchwork.kernel.org/project/linux-input/list/
8793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8794 F:      Documentation/devicetree/bindings/input/
8795 F:      Documentation/devicetree/bindings/serio/
8796 F:      Documentation/input/
8797 F:      drivers/input/
8798 F:      include/linux/input.h
8799 F:      include/linux/input/
8800 F:      include/uapi/linux/input-event-codes.h
8801 F:      include/uapi/linux/input.h
8802
8803 INPUT MULTITOUCH (MT) PROTOCOL
8804 M:      Henrik Rydberg <rydberg@bitmath.org>
8805 L:      linux-input@vger.kernel.org
8806 S:      Odd fixes
8807 F:      Documentation/input/multi-touch-protocol.rst
8808 F:      drivers/input/input-mt.c
8809 K:      \b(ABS|SYN)_MT_
8810
8811 INSIDE SECURE CRYPTO DRIVER
8812 M:      Antoine Tenart <atenart@kernel.org>
8813 L:      linux-crypto@vger.kernel.org
8814 S:      Maintained
8815 F:      drivers/crypto/inside-secure/
8816
8817 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8818 M:      Mimi Zohar <zohar@linux.ibm.com>
8819 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8820 L:      linux-integrity@vger.kernel.org
8821 S:      Supported
8822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8823 F:      security/integrity/ima/
8824
8825 INTEL 810/815 FRAMEBUFFER DRIVER
8826 M:      Antonino Daplas <adaplas@gmail.com>
8827 L:      linux-fbdev@vger.kernel.org
8828 S:      Maintained
8829 F:      drivers/video/fbdev/i810/
8830
8831 INTEL ASoC DRIVERS
8832 M:      Cezary Rojewski <cezary.rojewski@intel.com>
8833 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8834 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
8835 M:      Jie Yang <yang.jie@linux.intel.com>
8836 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8837 S:      Supported
8838 F:      sound/soc/intel/
8839
8840 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8841 M:      Hans de Goede <hdegoede@redhat.com>
8842 L:      platform-driver-x86@vger.kernel.org
8843 S:      Maintained
8844 F:      drivers/platform/x86/intel_atomisp2_pm.c
8845
8846 INTEL ATOMISP2 LED DRIVER
8847 M:      Hans de Goede <hdegoede@redhat.com>
8848 L:      platform-driver-x86@vger.kernel.org
8849 S:      Maintained
8850 F:      drivers/platform/x86/intel_atomisp2_led.c
8851
8852 INTEL BROXTON PMC DRIVER
8853 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8854 M:      Zha Qipeng <qipeng.zha@intel.com>
8855 S:      Maintained
8856 F:      drivers/mfd/intel_pmc_bxt.c
8857 F:      include/linux/mfd/intel_pmc_bxt.h
8858
8859 INTEL C600 SERIES SAS CONTROLLER DRIVER
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-merrifield.c
8918 F:      drivers/gpio/gpio-ml-ioh.c
8919 F:      drivers/gpio/gpio-pch.c
8920 F:      drivers/gpio/gpio-sch.c
8921 F:      drivers/gpio/gpio-sodaville.c
8922
8923 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8924 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
8925 M:      Zhi Wang <zhi.a.wang@intel.com>
8926 L:      intel-gvt-dev@lists.freedesktop.org
8927 L:      intel-gfx@lists.freedesktop.org
8928 S:      Supported
8929 W:      https://01.org/igvt-g
8930 T:      git https://github.com/intel/gvt-linux.git
8931 F:      drivers/gpu/drm/i915/gvt/
8932
8933 INTEL HID EVENT DRIVER
8934 M:      Alex Hung <alex.hung@canonical.com>
8935 L:      platform-driver-x86@vger.kernel.org
8936 S:      Maintained
8937 F:      drivers/platform/x86/intel-hid.c
8938
8939 INTEL I/OAT DMA DRIVER
8940 M:      Dave Jiang <dave.jiang@intel.com>
8941 R:      Dan Williams <dan.j.williams@intel.com>
8942 L:      dmaengine@vger.kernel.org
8943 S:      Supported
8944 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8945 F:      drivers/dma/ioat*
8946
8947 INTEL IADX DRIVER
8948 M:      Dave Jiang <dave.jiang@intel.com>
8949 L:      dmaengine@vger.kernel.org
8950 S:      Supported
8951 F:      drivers/dma/idxd/*
8952 F:      include/uapi/linux/idxd.h
8953
8954 INTEL IDLE DRIVER
8955 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
8956 M:      Len Brown <lenb@kernel.org>
8957 L:      linux-pm@vger.kernel.org
8958 S:      Supported
8959 B:      https://bugzilla.kernel.org
8960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8961 F:      drivers/idle/intel_idle.c
8962
8963 INTEL INTEGRATED SENSOR HUB DRIVER
8964 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8965 M:      Jiri Kosina <jikos@kernel.org>
8966 L:      linux-input@vger.kernel.org
8967 S:      Maintained
8968 F:      drivers/hid/intel-ish-hid/
8969
8970 INTEL IOMMU (VT-d)
8971 M:      David Woodhouse <dwmw2@infradead.org>
8972 M:      Lu Baolu <baolu.lu@linux.intel.com>
8973 L:      iommu@lists.linux-foundation.org
8974 S:      Supported
8975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8976 F:      drivers/iommu/intel/
8977 F:      include/linux/intel-iommu.h
8978 F:      include/linux/intel-svm.h
8979
8980 INTEL IOP-ADMA DMA DRIVER
8981 R:      Dan Williams <dan.j.williams@intel.com>
8982 S:      Odd fixes
8983 F:      drivers/dma/iop-adma.c
8984
8985 INTEL IPU3 CSI-2 CIO2 DRIVER
8986 M:      Yong Zhi <yong.zhi@intel.com>
8987 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8988 M:      Bingbu Cao <bingbu.cao@intel.com>
8989 M:      Dan Scally <djrscally@gmail.com>
8990 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
8991 L:      linux-media@vger.kernel.org
8992 S:      Maintained
8993 T:      git git://linuxtv.org/media_tree.git
8994 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
8995 F:      drivers/media/pci/intel/ipu3/
8996
8997 INTEL IPU3 CSI-2 IMGU DRIVER
8998 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8999 R:      Bingbu Cao <bingbu.cao@intel.com>
9000 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9001 L:      linux-media@vger.kernel.org
9002 S:      Maintained
9003 F:      Documentation/admin-guide/media/ipu3.rst
9004 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9005 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9006 F:      drivers/staging/media/ipu3/
9007
9008 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9009 M:      Krzysztof Halasa <khalasa@piap.pl>
9010 S:      Maintained
9011 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9012 F:      drivers/net/wan/ixp4xx_hss.c
9013 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9014 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9015 F:      include/linux/soc/ixp4xx/npe.h
9016 F:      include/linux/soc/ixp4xx/qmgr.h
9017
9018 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9019 M:      Deepak Saxena <dsaxena@plexity.net>
9020 S:      Maintained
9021 F:      drivers/char/hw_random/ixp4xx-rng.c
9022
9023 INTEL KEEM BAY DRM DRIVER
9024 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9025 M:      Edmund Dea <edmund.j.dea@intel.com>
9026 S:      Maintained
9027 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9028 F:      drivers/gpu/drm/kmb/
9029
9030 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9031 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9032 S:      Maintained
9033 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9034 F:      drivers/crypto/keembay/Kconfig
9035 F:      drivers/crypto/keembay/Makefile
9036 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9037 F:      drivers/crypto/keembay/ocs-aes.c
9038 F:      drivers/crypto/keembay/ocs-aes.h
9039
9040 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9041 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9042 M:      Declan Murphy <declan.murphy@intel.com>
9043 S:      Maintained
9044 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9045 F:      drivers/crypto/keembay/Kconfig
9046 F:      drivers/crypto/keembay/Makefile
9047 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9048 F:      drivers/crypto/keembay/ocs-hcu.c
9049 F:      drivers/crypto/keembay/ocs-hcu.h
9050
9051 INTEL MANAGEMENT ENGINE (mei)
9052 M:      Tomas Winkler <tomas.winkler@intel.com>
9053 L:      linux-kernel@vger.kernel.org
9054 S:      Supported
9055 F:      Documentation/driver-api/mei/*
9056 F:      drivers/misc/mei/
9057 F:      drivers/watchdog/mei_wdt.c
9058 F:      include/linux/mei_cl_bus.h
9059 F:      include/uapi/linux/mei.h
9060 F:      samples/mei/*
9061
9062 INTEL MENLOW THERMAL DRIVER
9063 M:      Sujith Thomas <sujith.thomas@intel.com>
9064 L:      platform-driver-x86@vger.kernel.org
9065 S:      Supported
9066 W:      https://01.org/linux-acpi
9067 F:      drivers/platform/x86/intel_menlow.c
9068
9069 INTEL P-Unit IPC DRIVER
9070 M:      Zha Qipeng <qipeng.zha@intel.com>
9071 L:      platform-driver-x86@vger.kernel.org
9072 S:      Maintained
9073 F:      arch/x86/include/asm/intel_punit_ipc.h
9074 F:      drivers/platform/x86/intel_punit_ipc.c
9075
9076 INTEL PMC CORE DRIVER
9077 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9078 M:      David E Box <david.e.box@intel.com>
9079 L:      platform-driver-x86@vger.kernel.org
9080 S:      Maintained
9081 F:      drivers/platform/x86/intel_pmc_core*
9082
9083 INTEL PMIC GPIO DRIVERS
9084 M:      Andy Shevchenko <andy@kernel.org>
9085 S:      Maintained
9086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9087 F:      drivers/gpio/gpio-*cove.c
9088
9089 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9090 M:      Andy Shevchenko <andy@kernel.org>
9091 S:      Maintained
9092 F:      drivers/mfd/intel_msic.c
9093 F:      drivers/mfd/intel_soc_pmic*
9094 F:      include/linux/mfd/intel_msic.h
9095 F:      include/linux/mfd/intel_soc_pmic*
9096
9097 INTEL PMT DRIVER
9098 M:      "David E. Box" <david.e.box@linux.intel.com>
9099 S:      Maintained
9100 F:      drivers/mfd/intel_pmt.c
9101 F:      drivers/platform/x86/intel_pmt_*
9102
9103 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9104 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9105 L:      linux-wireless@vger.kernel.org
9106 S:      Maintained
9107 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9108 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9109 F:      drivers/net/wireless/intel/ipw2x00/
9110
9111 INTEL PSTATE DRIVER
9112 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9113 M:      Len Brown <lenb@kernel.org>
9114 L:      linux-pm@vger.kernel.org
9115 S:      Supported
9116 F:      drivers/cpufreq/intel_pstate.c
9117
9118 INTEL RDMA RNIC DRIVER
9119 M:      Faisal Latif <faisal.latif@intel.com>
9120 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9121 L:      linux-rdma@vger.kernel.org
9122 S:      Supported
9123 F:      drivers/infiniband/hw/i40iw/
9124 F:      include/uapi/rdma/i40iw-abi.h
9125
9126 INTEL SCU DRIVERS
9127 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9128 S:      Maintained
9129 F:      arch/x86/include/asm/intel_scu_ipc.h
9130 F:      drivers/platform/x86/intel_scu_*
9131
9132 INTEL SPEED SELECT TECHNOLOGY
9133 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9134 L:      platform-driver-x86@vger.kernel.org
9135 S:      Maintained
9136 F:      drivers/platform/x86/intel_speed_select_if/
9137 F:      include/uapi/linux/isst_if.h
9138 F:      tools/power/x86/intel-speed-select/
9139
9140 INTEL STRATIX10 FIRMWARE DRIVERS
9141 M:      Richard Gong <richard.gong@linux.intel.com>
9142 L:      linux-kernel@vger.kernel.org
9143 S:      Maintained
9144 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9145 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9146 F:      drivers/firmware/stratix10-rsu.c
9147 F:      drivers/firmware/stratix10-svc.c
9148 F:      include/linux/firmware/intel/stratix10-smc.h
9149 F:      include/linux/firmware/intel/stratix10-svc-client.h
9150
9151 INTEL TELEMETRY DRIVER
9152 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
9153 M:      "David E. Box" <david.e.box@linux.intel.com>
9154 L:      platform-driver-x86@vger.kernel.org
9155 S:      Maintained
9156 F:      arch/x86/include/asm/intel_telemetry.h
9157 F:      drivers/platform/x86/intel_telemetry*
9158
9159 INTEL UNCORE FREQUENCY CONTROL
9160 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9161 L:      platform-driver-x86@vger.kernel.org
9162 S:      Maintained
9163 F:      drivers/platform/x86/intel-uncore-frequency.c
9164
9165 INTEL VIRTUAL BUTTON DRIVER
9166 M:      AceLan Kao <acelan.kao@canonical.com>
9167 L:      platform-driver-x86@vger.kernel.org
9168 S:      Maintained
9169 F:      drivers/platform/x86/intel-vbtn.c
9170
9171 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9172 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9173 L:      linux-wireless@vger.kernel.org
9174 S:      Supported
9175 F:      drivers/net/wireless/intel/iwlegacy/
9176
9177 INTEL WIRELESS WIFI LINK (iwlwifi)
9178 M:      Luca Coelho <luciano.coelho@intel.com>
9179 L:      linux-wireless@vger.kernel.org
9180 S:      Supported
9181 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9183 F:      drivers/net/wireless/intel/iwlwifi/
9184
9185 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9186 M:      Jithu Joseph <jithu.joseph@intel.com>
9187 R:      Maurice Ma <maurice.ma@intel.com>
9188 S:      Maintained
9189 W:      https://slimbootloader.github.io/security/firmware-update.html
9190 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
9191
9192 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9193 M:      Mario Limonciello <mario.limonciello@dell.com>
9194 S:      Maintained
9195 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
9196
9197 INTEL(R) TRACE HUB
9198 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9199 S:      Supported
9200 F:      Documentation/trace/intel_th.rst
9201 F:      drivers/hwtracing/intel_th/
9202 F:      include/linux/intel_th.h
9203
9204 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9205 M:      Ning Sun <ning.sun@intel.com>
9206 L:      tboot-devel@lists.sourceforge.net
9207 S:      Supported
9208 W:      http://tboot.sourceforge.net
9209 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9210 F:      Documentation/x86/intel_txt.rst
9211 F:      arch/x86/kernel/tboot.c
9212 F:      include/linux/tboot.h
9213
9214 INTEL SGX
9215 M:      Jarkko Sakkinen <jarkko@kernel.org>
9216 R:      Dave Hansen <dave.hansen@linux.intel.com>
9217 L:      linux-sgx@vger.kernel.org
9218 S:      Supported
9219 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9221 F:      Documentation/x86/sgx.rst
9222 F:      arch/x86/entry/vdso/vsgx.S
9223 F:      arch/x86/include/uapi/asm/sgx.h
9224 F:      arch/x86/kernel/cpu/sgx/*
9225 F:      tools/testing/selftests/sgx/*
9226 K:      \bSGX_
9227
9228 INTERCONNECT API
9229 M:      Georgi Djakov <djakov@kernel.org>
9230 L:      linux-pm@vger.kernel.org
9231 S:      Maintained
9232 F:      Documentation/devicetree/bindings/interconnect/
9233 F:      Documentation/driver-api/interconnect.rst
9234 F:      drivers/interconnect/
9235 F:      include/dt-bindings/interconnect/
9236 F:      include/linux/interconnect-provider.h
9237 F:      include/linux/interconnect.h
9238
9239 INVENSENSE ICM-426xx IMU DRIVER
9240 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9241 L:      linux-iio@vger.kernel.org
9242 S:      Maintained
9243 W:      https://invensense.tdk.com/
9244 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9245 F:      drivers/iio/imu/inv_icm42600/
9246
9247 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9248 M:      Linus Walleij <linus.walleij@linaro.org>
9249 L:      linux-iio@vger.kernel.org
9250 S:      Maintained
9251 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
9252 F:      drivers/iio/gyro/mpu3050*
9253
9254 IOC3 ETHERNET DRIVER
9255 M:      Ralf Baechle <ralf@linux-mips.org>
9256 L:      linux-mips@vger.kernel.org
9257 S:      Maintained
9258 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9259
9260 IOMAP FILESYSTEM LIBRARY
9261 M:      Christoph Hellwig <hch@infradead.org>
9262 M:      Darrick J. Wong <djwong@kernel.org>
9263 M:      linux-xfs@vger.kernel.org
9264 M:      linux-fsdevel@vger.kernel.org
9265 L:      linux-xfs@vger.kernel.org
9266 L:      linux-fsdevel@vger.kernel.org
9267 S:      Supported
9268 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9269 F:      fs/iomap/
9270 F:      include/linux/iomap.h
9271
9272 IOMMU DRIVERS
9273 M:      Joerg Roedel <joro@8bytes.org>
9274 M:      Will Deacon <will@kernel.org>
9275 L:      iommu@lists.linux-foundation.org
9276 S:      Maintained
9277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9278 F:      Documentation/devicetree/bindings/iommu/
9279 F:      Documentation/userspace-api/iommu.rst
9280 F:      drivers/iommu/
9281 F:      include/linux/iommu.h
9282 F:      include/linux/iova.h
9283 F:      include/linux/of_iommu.h
9284 F:      include/uapi/linux/iommu.h
9285
9286 IO_URING
9287 M:      Jens Axboe <axboe@kernel.dk>
9288 R:      Pavel Begunkov <asml.silence@gmail.com>
9289 L:      io-uring@vger.kernel.org
9290 S:      Maintained
9291 T:      git git://git.kernel.dk/linux-block
9292 T:      git git://git.kernel.dk/liburing
9293 F:      fs/io-wq.c
9294 F:      fs/io-wq.h
9295 F:      fs/io_uring.c
9296 F:      include/linux/io_uring.h
9297 F:      include/uapi/linux/io_uring.h
9298
9299 IPMI SUBSYSTEM
9300 M:      Corey Minyard <minyard@acm.org>
9301 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9302 S:      Supported
9303 W:      http://openipmi.sourceforge.net/
9304 F:      Documentation/driver-api/ipmi.rst
9305 F:      Documentation/devicetree/bindings/ipmi/
9306 F:      drivers/char/ipmi/
9307 F:      include/linux/ipmi*
9308 F:      include/uapi/linux/ipmi*
9309
9310 IPS SCSI RAID DRIVER
9311 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9312 L:      linux-scsi@vger.kernel.org
9313 S:      Maintained
9314 W:      http://www.adaptec.com/
9315 F:      drivers/scsi/ips*
9316
9317 IPVS
9318 M:      Simon Horman <horms@verge.net.au>
9319 M:      Julian Anastasov <ja@ssi.bg>
9320 L:      netdev@vger.kernel.org
9321 L:      lvs-devel@vger.kernel.org
9322 S:      Maintained
9323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9325 F:      Documentation/networking/ipvs-sysctl.rst
9326 F:      include/net/ip_vs.h
9327 F:      include/uapi/linux/ip_vs.h
9328 F:      net/netfilter/ipvs/
9329
9330 IPWIRELESS DRIVER
9331 M:      Jiri Kosina <jikos@kernel.org>
9332 M:      David Sterba <dsterba@suse.com>
9333 S:      Odd Fixes
9334 F:      drivers/tty/ipwireless/
9335
9336 IPX NETWORK LAYER
9337 L:      netdev@vger.kernel.org
9338 S:      Obsolete
9339 F:      include/uapi/linux/ipx.h
9340
9341 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9342 M:      Marc Zyngier <maz@kernel.org>
9343 S:      Maintained
9344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9345 F:      Documentation/core-api/irq/irq-domain.rst
9346 F:      include/linux/irqdomain.h
9347 F:      kernel/irq/irqdomain.c
9348 F:      kernel/irq/msi.c
9349
9350 IRQ SUBSYSTEM
9351 M:      Thomas Gleixner <tglx@linutronix.de>
9352 L:      linux-kernel@vger.kernel.org
9353 S:      Maintained
9354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9355 F:      kernel/irq/
9356
9357 IRQCHIP DRIVERS
9358 M:      Thomas Gleixner <tglx@linutronix.de>
9359 M:      Marc Zyngier <maz@kernel.org>
9360 L:      linux-kernel@vger.kernel.org
9361 S:      Maintained
9362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9363 F:      Documentation/devicetree/bindings/interrupt-controller/
9364 F:      drivers/irqchip/
9365
9366 ISA
9367 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9368 S:      Maintained
9369 F:      Documentation/driver-api/isa.rst
9370 F:      drivers/base/isa.c
9371 F:      include/linux/isa.h
9372
9373 ISA RADIO MODULE
9374 M:      Hans Verkuil <hverkuil@xs4all.nl>
9375 L:      linux-media@vger.kernel.org
9376 S:      Maintained
9377 W:      https://linuxtv.org
9378 T:      git git://linuxtv.org/media_tree.git
9379 F:      drivers/media/radio/radio-isa*
9380
9381 ISAPNP
9382 M:      Jaroslav Kysela <perex@perex.cz>
9383 S:      Maintained
9384 F:      Documentation/driver-api/isapnp.rst
9385 F:      drivers/pnp/isapnp/
9386 F:      include/linux/isapnp.h
9387
9388 ISCSI
9389 M:      Lee Duncan <lduncan@suse.com>
9390 M:      Chris Leech <cleech@redhat.com>
9391 L:      open-iscsi@googlegroups.com
9392 L:      linux-scsi@vger.kernel.org
9393 S:      Maintained
9394 W:      www.open-iscsi.com
9395 F:      drivers/scsi/*iscsi*
9396 F:      include/scsi/*iscsi*
9397
9398 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9399 M:      Peter Jones <pjones@redhat.com>
9400 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9401 S:      Maintained
9402 F:      drivers/firmware/iscsi_ibft*
9403
9404 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9405 M:      Sagi Grimberg <sagi@grimberg.me>
9406 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
9407 L:      linux-rdma@vger.kernel.org
9408 S:      Supported
9409 W:      http://www.openfabrics.org
9410 W:      www.open-iscsi.org
9411 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9412 F:      drivers/infiniband/ulp/iser/
9413
9414 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9415 M:      Sagi Grimberg <sagi@grimberg.me>
9416 L:      linux-rdma@vger.kernel.org
9417 L:      target-devel@vger.kernel.org
9418 S:      Supported
9419 W:      http://www.linux-iscsi.org
9420 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9421 F:      drivers/infiniband/ulp/isert
9422
9423 ISDN/CMTP OVER BLUETOOTH
9424 M:      Karsten Keil <isdn@linux-pingi.de>
9425 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9426 L:      netdev@vger.kernel.org
9427 S:      Odd Fixes
9428 W:      http://www.isdn4linux.de
9429 F:      Documentation/isdn/
9430 F:      drivers/isdn/capi/
9431 F:      include/linux/isdn/
9432 F:      include/uapi/linux/isdn/
9433 F:      net/bluetooth/cmtp/
9434
9435 ISDN/mISDN SUBSYSTEM
9436 M:      Karsten Keil <isdn@linux-pingi.de>
9437 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9438 L:      netdev@vger.kernel.org
9439 S:      Maintained
9440 W:      http://www.isdn4linux.de
9441 F:      drivers/isdn/Kconfig
9442 F:      drivers/isdn/Makefile
9443 F:      drivers/isdn/hardware/
9444 F:      drivers/isdn/mISDN/
9445
9446 IT87 HARDWARE MONITORING DRIVER
9447 M:      Jean Delvare <jdelvare@suse.com>
9448 L:      linux-hwmon@vger.kernel.org
9449 S:      Maintained
9450 F:      Documentation/hwmon/it87.rst
9451 F:      drivers/hwmon/it87.c
9452
9453 IT913X MEDIA DRIVER
9454 M:      Antti Palosaari <crope@iki.fi>
9455 L:      linux-media@vger.kernel.org
9456 S:      Maintained
9457 W:      https://linuxtv.org
9458 W:      http://palosaari.fi/linux/
9459 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9460 T:      git git://linuxtv.org/anttip/media_tree.git
9461 F:      drivers/media/tuners/it913x*
9462
9463 IVTV VIDEO4LINUX DRIVER
9464 M:      Andy Walls <awalls@md.metrocast.net>
9465 L:      linux-media@vger.kernel.org
9466 S:      Maintained
9467 W:      https://linuxtv.org
9468 T:      git git://linuxtv.org/media_tree.git
9469 F:      Documentation/admin-guide/media/ivtv*
9470 F:      drivers/media/pci/ivtv/
9471 F:      include/uapi/linux/ivtv*
9472
9473 IX2505V MEDIA DRIVER
9474 M:      Malcolm Priestley <tvboxspy@gmail.com>
9475 L:      linux-media@vger.kernel.org
9476 S:      Maintained
9477 W:      https://linuxtv.org
9478 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9479 F:      drivers/media/dvb-frontends/ix2505v*
9480
9481 JAILHOUSE HYPERVISOR INTERFACE
9482 M:      Jan Kiszka <jan.kiszka@siemens.com>
9483 L:      jailhouse-dev@googlegroups.com
9484 S:      Maintained
9485 F:      arch/x86/include/asm/jailhouse_para.h
9486 F:      arch/x86/kernel/jailhouse.c
9487
9488 JC42.4 TEMPERATURE SENSOR DRIVER
9489 M:      Guenter Roeck <linux@roeck-us.net>
9490 L:      linux-hwmon@vger.kernel.org
9491 S:      Maintained
9492 F:      Documentation/hwmon/jc42.rst
9493 F:      drivers/hwmon/jc42.c
9494
9495 JFS FILESYSTEM
9496 M:      Dave Kleikamp <shaggy@kernel.org>
9497 L:      jfs-discussion@lists.sourceforge.net
9498 S:      Maintained
9499 W:      http://jfs.sourceforge.net/
9500 T:      git git://github.com/kleikamp/linux-shaggy.git
9501 F:      Documentation/admin-guide/jfs.rst
9502 F:      fs/jfs/
9503
9504 JME NETWORK DRIVER
9505 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9506 L:      netdev@vger.kernel.org
9507 S:      Maintained
9508 F:      drivers/net/ethernet/jme.*
9509
9510 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9511 M:      David Woodhouse <dwmw2@infradead.org>
9512 M:      Richard Weinberger <richard@nod.at>
9513 L:      linux-mtd@lists.infradead.org
9514 S:      Odd Fixes
9515 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9516 T:      git git://git.infradead.org/ubifs-2.6.git
9517 F:      fs/jffs2/
9518 F:      include/uapi/linux/jffs2.h
9519
9520 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9521 M:      "Theodore Ts'o" <tytso@mit.edu>
9522 M:      Jan Kara <jack@suse.com>
9523 L:      linux-ext4@vger.kernel.org
9524 S:      Maintained
9525 F:      fs/jbd2/
9526 F:      include/linux/jbd2.h
9527
9528 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9529 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9530 L:      linux-media@vger.kernel.org
9531 S:      Maintained
9532 F:      drivers/media/platform/rcar_jpu.c
9533
9534 JSM Neo PCI based serial card
9535 L:      linux-serial@vger.kernel.org
9536 S:      Orphan
9537 F:      drivers/tty/serial/jsm/
9538
9539 K10TEMP HARDWARE MONITORING DRIVER
9540 M:      Clemens Ladisch <clemens@ladisch.de>
9541 L:      linux-hwmon@vger.kernel.org
9542 S:      Maintained
9543 F:      Documentation/hwmon/k10temp.rst
9544 F:      drivers/hwmon/k10temp.c
9545
9546 K8TEMP HARDWARE MONITORING DRIVER
9547 M:      Rudolf Marek <r.marek@assembler.cz>
9548 L:      linux-hwmon@vger.kernel.org
9549 S:      Maintained
9550 F:      Documentation/hwmon/k8temp.rst
9551 F:      drivers/hwmon/k8temp.c
9552
9553 KASAN
9554 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
9555 R:      Alexander Potapenko <glider@google.com>
9556 R:      Andrey Konovalov <andreyknvl@gmail.com>
9557 R:      Dmitry Vyukov <dvyukov@google.com>
9558 L:      kasan-dev@googlegroups.com
9559 S:      Maintained
9560 F:      Documentation/dev-tools/kasan.rst
9561 F:      arch/*/include/asm/*kasan.h
9562 F:      arch/*/mm/kasan_init*
9563 F:      include/linux/kasan*.h
9564 F:      lib/Kconfig.kasan
9565 F:      lib/test_kasan*.c
9566 F:      mm/kasan/
9567 F:      scripts/Makefile.kasan
9568
9569 KCONFIG
9570 M:      Masahiro Yamada <masahiroy@kernel.org>
9571 L:      linux-kbuild@vger.kernel.org
9572 S:      Maintained
9573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9574 F:      Documentation/kbuild/kconfig*
9575 F:      scripts/Kconfig.include
9576 F:      scripts/kconfig/
9577
9578 KCOV
9579 R:      Dmitry Vyukov <dvyukov@google.com>
9580 R:      Andrey Konovalov <andreyknvl@gmail.com>
9581 L:      kasan-dev@googlegroups.com
9582 S:      Maintained
9583 F:      Documentation/dev-tools/kcov.rst
9584 F:      include/linux/kcov.h
9585 F:      include/uapi/linux/kcov.h
9586 F:      kernel/kcov.c
9587 F:      scripts/Makefile.kcov
9588
9589 KCSAN
9590 M:      Marco Elver <elver@google.com>
9591 R:      Dmitry Vyukov <dvyukov@google.com>
9592 L:      kasan-dev@googlegroups.com
9593 S:      Maintained
9594 F:      Documentation/dev-tools/kcsan.rst
9595 F:      include/linux/kcsan*.h
9596 F:      kernel/kcsan/
9597 F:      lib/Kconfig.kcsan
9598 F:      scripts/Makefile.kcsan
9599
9600 KDUMP
9601 M:      Dave Young <dyoung@redhat.com>
9602 M:      Baoquan He <bhe@redhat.com>
9603 R:      Vivek Goyal <vgoyal@redhat.com>
9604 L:      kexec@lists.infradead.org
9605 S:      Maintained
9606 W:      http://lse.sourceforge.net/kdump/
9607 F:      Documentation/admin-guide/kdump/
9608 F:      fs/proc/vmcore.c
9609 F:      include/linux/crash_core.h
9610 F:      include/linux/crash_dump.h
9611 F:      include/uapi/linux/vmcore.h
9612 F:      kernel/crash_*.c
9613
9614 KEENE FM RADIO TRANSMITTER DRIVER
9615 M:      Hans Verkuil <hverkuil@xs4all.nl>
9616 L:      linux-media@vger.kernel.org
9617 S:      Maintained
9618 W:      https://linuxtv.org
9619 T:      git git://linuxtv.org/media_tree.git
9620 F:      drivers/media/radio/radio-keene*
9621
9622 KERNEL AUTOMOUNTER
9623 M:      Ian Kent <raven@themaw.net>
9624 L:      autofs@vger.kernel.org
9625 S:      Maintained
9626 F:      fs/autofs/
9627
9628 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9629 M:      Masahiro Yamada <masahiroy@kernel.org>
9630 M:      Michal Marek <michal.lkml@markovi.net>
9631 L:      linux-kbuild@vger.kernel.org
9632 S:      Maintained
9633 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9634 F:      Documentation/kbuild/
9635 F:      Makefile
9636 F:      scripts/*vmlinux*
9637 F:      scripts/Kbuild*
9638 F:      scripts/Makefile*
9639 F:      scripts/basic/
9640 F:      scripts/mk*
9641 F:      scripts/mod/
9642 F:      scripts/package/
9643
9644 KERNEL JANITORS
9645 L:      kernel-janitors@vger.kernel.org
9646 S:      Odd Fixes
9647 W:      http://kernelnewbies.org/KernelJanitors
9648
9649 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9650 M:      "J. Bruce Fields" <bfields@fieldses.org>
9651 M:      Chuck Lever <chuck.lever@oracle.com>
9652 L:      linux-nfs@vger.kernel.org
9653 S:      Supported
9654 W:      http://nfs.sourceforge.net/
9655 T:      git git://linux-nfs.org/~bfields/linux.git
9656 F:      fs/lockd/
9657 F:      fs/nfs_common/
9658 F:      fs/nfsd/
9659 F:      include/linux/lockd/
9660 F:      include/linux/sunrpc/
9661 F:      include/uapi/linux/nfsd/
9662 F:      include/uapi/linux/sunrpc/
9663 F:      net/sunrpc/
9664 F:      Documentation/filesystems/nfs/
9665
9666 KERNEL SELFTEST FRAMEWORK
9667 M:      Shuah Khan <shuah@kernel.org>
9668 M:      Shuah Khan <skhan@linuxfoundation.org>
9669 L:      linux-kselftest@vger.kernel.org
9670 S:      Maintained
9671 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9673 F:      Documentation/dev-tools/kselftest*
9674 F:      tools/testing/selftests/
9675
9676 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9677 M:      Brendan Higgins <brendanhiggins@google.com>
9678 L:      linux-kselftest@vger.kernel.org
9679 L:      kunit-dev@googlegroups.com
9680 S:      Maintained
9681 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9682 F:      Documentation/dev-tools/kunit/
9683 F:      include/kunit/
9684 F:      lib/kunit/
9685 F:      tools/testing/kunit/
9686
9687 KERNEL USERMODE HELPER
9688 M:      Luis Chamberlain <mcgrof@kernel.org>
9689 L:      linux-kernel@vger.kernel.org
9690 S:      Maintained
9691 F:      include/linux/umh.h
9692 F:      kernel/umh.c
9693
9694 KERNEL VIRTUAL MACHINE (KVM)
9695 M:      Paolo Bonzini <pbonzini@redhat.com>
9696 L:      kvm@vger.kernel.org
9697 S:      Supported
9698 W:      http://www.linux-kvm.org
9699 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9700 F:      Documentation/virt/kvm/
9701 F:      include/asm-generic/kvm*
9702 F:      include/kvm/iodev.h
9703 F:      include/linux/kvm*
9704 F:      include/trace/events/kvm.h
9705 F:      include/uapi/asm-generic/kvm*
9706 F:      include/uapi/linux/kvm*
9707 F:      tools/kvm/
9708 F:      tools/testing/selftests/kvm/
9709 F:      virt/kvm/*
9710
9711 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9712 M:      Marc Zyngier <maz@kernel.org>
9713 R:      James Morse <james.morse@arm.com>
9714 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
9715 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
9716 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9717 L:      kvmarm@lists.cs.columbia.edu
9718 S:      Maintained
9719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9720 F:      arch/arm64/include/asm/kvm*
9721 F:      arch/arm64/include/uapi/asm/kvm*
9722 F:      arch/arm64/kvm/
9723 F:      include/kvm/arm_*
9724
9725 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9726 M:      Huacai Chen <chenhuacai@kernel.org>
9727 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
9728 L:      linux-mips@vger.kernel.org
9729 L:      kvm@vger.kernel.org
9730 S:      Maintained
9731 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9732 F:      arch/mips/include/asm/kvm*
9733 F:      arch/mips/include/uapi/asm/kvm*
9734 F:      arch/mips/kvm/
9735
9736 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9737 M:      Paul Mackerras <paulus@ozlabs.org>
9738 L:      kvm-ppc@vger.kernel.org
9739 S:      Supported
9740 W:      http://www.linux-kvm.org/
9741 T:      git git://github.com/agraf/linux-2.6.git
9742 F:      arch/powerpc/include/asm/kvm*
9743 F:      arch/powerpc/include/uapi/asm/kvm*
9744 F:      arch/powerpc/kernel/kvm*
9745 F:      arch/powerpc/kvm/
9746
9747 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9748 M:      Christian Borntraeger <borntraeger@de.ibm.com>
9749 M:      Janosch Frank <frankja@linux.ibm.com>
9750 R:      David Hildenbrand <david@redhat.com>
9751 R:      Cornelia Huck <cohuck@redhat.com>
9752 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
9753 L:      kvm@vger.kernel.org
9754 S:      Supported
9755 W:      http://www.ibm.com/developerworks/linux/linux390/
9756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9757 F:      Documentation/virt/kvm/s390*
9758 F:      arch/s390/include/asm/gmap.h
9759 F:      arch/s390/include/asm/kvm*
9760 F:      arch/s390/include/uapi/asm/kvm*
9761 F:      arch/s390/kernel/uv.c
9762 F:      arch/s390/kvm/
9763 F:      arch/s390/mm/gmap.c
9764 F:      tools/testing/selftests/kvm/*/s390x/
9765 F:      tools/testing/selftests/kvm/s390x/
9766
9767 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9768 M:      Paolo Bonzini <pbonzini@redhat.com>
9769 R:      Sean Christopherson <seanjc@google.com>
9770 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
9771 R:      Wanpeng Li <wanpengli@tencent.com>
9772 R:      Jim Mattson <jmattson@google.com>
9773 R:      Joerg Roedel <joro@8bytes.org>
9774 L:      kvm@vger.kernel.org
9775 S:      Supported
9776 W:      http://www.linux-kvm.org
9777 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9778 F:      arch/x86/include/asm/kvm*
9779 F:      arch/x86/include/asm/pvclock-abi.h
9780 F:      arch/x86/include/asm/svm.h
9781 F:      arch/x86/include/asm/vmx*.h
9782 F:      arch/x86/include/uapi/asm/kvm*
9783 F:      arch/x86/include/uapi/asm/svm.h
9784 F:      arch/x86/include/uapi/asm/vmx.h
9785 F:      arch/x86/kernel/kvm.c
9786 F:      arch/x86/kernel/kvmclock.c
9787 F:      arch/x86/kvm/
9788 F:      arch/x86/kvm/*/
9789
9790 KERNFS
9791 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9792 M:      Tejun Heo <tj@kernel.org>
9793 S:      Supported
9794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9795 F:      fs/kernfs/
9796 F:      include/linux/kernfs.h
9797
9798 KEXEC
9799 M:      Eric Biederman <ebiederm@xmission.com>
9800 L:      kexec@lists.infradead.org
9801 S:      Maintained
9802 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9803 F:      include/linux/kexec.h
9804 F:      include/uapi/linux/kexec.h
9805 F:      kernel/kexec*
9806
9807 KEYS-ENCRYPTED
9808 M:      Mimi Zohar <zohar@linux.ibm.com>
9809 L:      linux-integrity@vger.kernel.org
9810 L:      keyrings@vger.kernel.org
9811 S:      Supported
9812 F:      Documentation/security/keys/trusted-encrypted.rst
9813 F:      include/keys/encrypted-type.h
9814 F:      security/keys/encrypted-keys/
9815
9816 KEYS-TRUSTED
9817 M:      James Bottomley <jejb@linux.ibm.com>
9818 M:      Jarkko Sakkinen <jarkko@kernel.org>
9819 M:      Mimi Zohar <zohar@linux.ibm.com>
9820 L:      linux-integrity@vger.kernel.org
9821 L:      keyrings@vger.kernel.org
9822 S:      Supported
9823 F:      Documentation/security/keys/trusted-encrypted.rst
9824 F:      include/keys/trusted-type.h
9825 F:      include/keys/trusted_tpm.h
9826 F:      security/keys/trusted-keys/
9827
9828 KEYS/KEYRINGS
9829 M:      David Howells <dhowells@redhat.com>
9830 M:      Jarkko Sakkinen <jarkko@kernel.org>
9831 L:      keyrings@vger.kernel.org
9832 S:      Maintained
9833 F:      Documentation/security/keys/core.rst
9834 F:      include/keys/
9835 F:      include/linux/key-type.h
9836 F:      include/linux/key.h
9837 F:      include/linux/keyctl.h
9838 F:      include/uapi/linux/keyctl.h
9839 F:      security/keys/
9840
9841 KFIFO
9842 M:      Stefani Seibold <stefani@seibold.net>
9843 S:      Maintained
9844 F:      include/linux/kfifo.h
9845 F:      lib/kfifo.c
9846 F:      samples/kfifo/
9847
9848 KGDB / KDB /debug_core
9849 M:      Jason Wessel <jason.wessel@windriver.com>
9850 M:      Daniel Thompson <daniel.thompson@linaro.org>
9851 R:      Douglas Anderson <dianders@chromium.org>
9852 L:      kgdb-bugreport@lists.sourceforge.net
9853 S:      Maintained
9854 W:      http://kgdb.wiki.kernel.org/
9855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9856 F:      Documentation/dev-tools/kgdb.rst
9857 F:      drivers/misc/kgdbts.c
9858 F:      drivers/tty/serial/kgdboc.c
9859 F:      include/linux/kdb.h
9860 F:      include/linux/kgdb.h
9861 F:      kernel/debug/
9862
9863 KHADAS MCU MFD DRIVER
9864 M:      Neil Armstrong <narmstrong@baylibre.com>
9865 L:      linux-amlogic@lists.infradead.org
9866 S:      Maintained
9867 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
9868 F:      drivers/mfd/khadas-mcu.c
9869 F:      include/linux/mfd/khadas-mcu.h
9870 F:      drivers/thermal/khadas_mcu_fan.c
9871
9872 KMEMLEAK
9873 M:      Catalin Marinas <catalin.marinas@arm.com>
9874 S:      Maintained
9875 F:      Documentation/dev-tools/kmemleak.rst
9876 F:      include/linux/kmemleak.h
9877 F:      mm/kmemleak.c
9878 F:      samples/kmemleak/kmemleak-test.c
9879
9880 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9881 M:      Luis Chamberlain <mcgrof@kernel.org>
9882 L:      linux-kernel@vger.kernel.org
9883 S:      Maintained
9884 F:      include/linux/kmod.h
9885 F:      kernel/kmod.c
9886 F:      lib/test_kmod.c
9887 F:      tools/testing/selftests/kmod/
9888
9889 KPROBES
9890 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9891 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9892 M:      "David S. Miller" <davem@davemloft.net>
9893 M:      Masami Hiramatsu <mhiramat@kernel.org>
9894 S:      Maintained
9895 F:      Documentation/trace/kprobes.rst
9896 F:      include/asm-generic/kprobes.h
9897 F:      include/linux/kprobes.h
9898 F:      kernel/kprobes.c
9899
9900 KS0108 LCD CONTROLLER DRIVER
9901 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9902 S:      Maintained
9903 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9904 F:      drivers/auxdisplay/ks0108.c
9905 F:      include/linux/ks0108.h
9906
9907 KTD253 BACKLIGHT DRIVER
9908 M:      Linus Walleij <linus.walleij@linaro.org>
9909 S:      Maintained
9910 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
9911 F:      drivers/video/backlight/ktd253-backlight.c
9912
9913 L3MDEV
9914 M:      David Ahern <dsahern@kernel.org>
9915 L:      netdev@vger.kernel.org
9916 S:      Maintained
9917 F:      include/net/l3mdev.h
9918 F:      net/l3mdev
9919
9920 L7 BPF FRAMEWORK
9921 M:      John Fastabend <john.fastabend@gmail.com>
9922 M:      Daniel Borkmann <daniel@iogearbox.net>
9923 M:      Jakub Sitnicki <jakub@cloudflare.com>
9924 M:      Lorenz Bauer <lmb@cloudflare.com>
9925 L:      netdev@vger.kernel.org
9926 L:      bpf@vger.kernel.org
9927 S:      Maintained
9928 F:      include/linux/skmsg.h
9929 F:      net/core/skmsg.c
9930 F:      net/core/sock_map.c
9931 F:      net/ipv4/tcp_bpf.c
9932 F:      net/ipv4/udp_bpf.c
9933
9934 LANTIQ / INTEL Ethernet drivers
9935 M:      Hauke Mehrtens <hauke@hauke-m.de>
9936 L:      netdev@vger.kernel.org
9937 S:      Maintained
9938 F:      drivers/net/dsa/lantiq_gswip.c
9939 F:      drivers/net/dsa/lantiq_pce.h
9940 F:      drivers/net/ethernet/lantiq_xrx200.c
9941 F:      net/dsa/tag_gswip.c
9942
9943 LANTIQ MIPS ARCHITECTURE
9944 M:      John Crispin <john@phrozen.org>
9945 L:      linux-mips@vger.kernel.org
9946 S:      Maintained
9947 F:      arch/mips/lantiq
9948 F:      drivers/soc/lantiq
9949
9950 LASI 53c700 driver for PARISC
9951 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9952 L:      linux-scsi@vger.kernel.org
9953 S:      Maintained
9954 F:      Documentation/scsi/53c700.rst
9955 F:      drivers/scsi/53c700*
9956
9957 LEAKING_ADDRESSES
9958 M:      Tobin C. Harding <me@tobin.cc>
9959 M:      Tycho Andersen <tycho@tycho.pizza>
9960 L:      linux-hardening@vger.kernel.org
9961 S:      Maintained
9962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9963 F:      scripts/leaking_addresses.pl
9964
9965 LED SUBSYSTEM
9966 M:      Pavel Machek <pavel@ucw.cz>
9967 R:      Dan Murphy <dmurphy@ti.com>
9968 L:      linux-leds@vger.kernel.org
9969 S:      Maintained
9970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9971 F:      Documentation/devicetree/bindings/leds/
9972 F:      drivers/leds/
9973 F:      include/linux/leds.h
9974
9975 LEGACY EEPROM DRIVER
9976 M:      Jean Delvare <jdelvare@suse.com>
9977 S:      Maintained
9978 F:      Documentation/misc-devices/eeprom.rst
9979 F:      drivers/misc/eeprom/eeprom.c
9980
9981 LEGO MINDSTORMS EV3
9982 R:      David Lechner <david@lechnology.com>
9983 S:      Maintained
9984 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9985 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9986 F:      drivers/power/supply/lego_ev3_battery.c
9987
9988 LEGO USB Tower driver
9989 M:      Juergen Stuber <starblue@users.sourceforge.net>
9990 L:      legousb-devel@lists.sourceforge.net
9991 S:      Maintained
9992 W:      http://legousb.sourceforge.net/
9993 F:      drivers/usb/misc/legousbtower.c
9994
9995 LG LAPTOP EXTRAS
9996 M:      Matan Ziv-Av <matan@svgalib.org>
9997 L:      platform-driver-x86@vger.kernel.org
9998 S:      Maintained
9999 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10000 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10001 F:      drivers/platform/x86/lg-laptop.c
10002
10003 LG2160 MEDIA DRIVER
10004 M:      Michael Krufky <mkrufky@linuxtv.org>
10005 L:      linux-media@vger.kernel.org
10006 S:      Maintained
10007 W:      https://linuxtv.org
10008 W:      http://github.com/mkrufky
10009 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10010 T:      git git://linuxtv.org/mkrufky/tuners.git
10011 F:      drivers/media/dvb-frontends/lg2160.*
10012
10013 LGDT3305 MEDIA DRIVER
10014 M:      Michael Krufky <mkrufky@linuxtv.org>
10015 L:      linux-media@vger.kernel.org
10016 S:      Maintained
10017 W:      https://linuxtv.org
10018 W:      http://github.com/mkrufky
10019 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10020 T:      git git://linuxtv.org/mkrufky/tuners.git
10021 F:      drivers/media/dvb-frontends/lgdt3305.*
10022
10023 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10024 M:      Viresh Kumar <vireshk@kernel.org>
10025 L:      linux-ide@vger.kernel.org
10026 S:      Maintained
10027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10028 F:      drivers/ata/pata_arasan_cf.c
10029 F:      include/linux/pata_arasan_cf_data.h
10030
10031 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10032 M:      Linus Walleij <linus.walleij@linaro.org>
10033 L:      linux-ide@vger.kernel.org
10034 S:      Maintained
10035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10036 F:      drivers/ata/pata_ftide010.c
10037 F:      drivers/ata/sata_gemini.c
10038 F:      drivers/ata/sata_gemini.h
10039
10040 LIBATA SATA AHCI PLATFORM devices support
10041 M:      Hans de Goede <hdegoede@redhat.com>
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:      drivers/ata/ahci_platform.c
10047 F:      drivers/ata/libahci_platform.c
10048 F:      include/linux/ahci_platform.h
10049
10050 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10051 M:      Mikael Pettersson <mikpelinux@gmail.com>
10052 L:      linux-ide@vger.kernel.org
10053 S:      Maintained
10054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10055 F:      drivers/ata/sata_promise.*
10056
10057 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10058 M:      Jens Axboe <axboe@kernel.dk>
10059 L:      linux-ide@vger.kernel.org
10060 S:      Maintained
10061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10062 F:      Documentation/devicetree/bindings/ata/
10063 F:      drivers/ata/
10064 F:      include/linux/ata.h
10065 F:      include/linux/libata.h
10066
10067 LIBLOCKDEP
10068 M:      Sasha Levin <alexander.levin@microsoft.com>
10069 S:      Maintained
10070 F:      tools/lib/lockdep/
10071
10072 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10073 M:      Dan Williams <dan.j.williams@intel.com>
10074 M:      Vishal Verma <vishal.l.verma@intel.com>
10075 M:      Dave Jiang <dave.jiang@intel.com>
10076 L:      linux-nvdimm@lists.01.org
10077 S:      Supported
10078 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10079 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10080 F:      drivers/nvdimm/blk.c
10081 F:      drivers/nvdimm/region_devs.c
10082
10083 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10084 M:      Vishal Verma <vishal.l.verma@intel.com>
10085 M:      Dan Williams <dan.j.williams@intel.com>
10086 M:      Dave Jiang <dave.jiang@intel.com>
10087 L:      linux-nvdimm@lists.01.org
10088 S:      Supported
10089 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10090 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10091 F:      drivers/nvdimm/btt*
10092
10093 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10094 M:      Dan Williams <dan.j.williams@intel.com>
10095 M:      Vishal Verma <vishal.l.verma@intel.com>
10096 M:      Dave Jiang <dave.jiang@intel.com>
10097 L:      linux-nvdimm@lists.01.org
10098 S:      Supported
10099 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10100 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10101 F:      drivers/nvdimm/pmem*
10102
10103 LIBNVDIMM: DEVICETREE BINDINGS
10104 M:      Oliver O'Halloran <oohall@gmail.com>
10105 L:      linux-nvdimm@lists.01.org
10106 S:      Supported
10107 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10108 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10109 F:      drivers/nvdimm/of_pmem.c
10110
10111 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10112 M:      Dan Williams <dan.j.williams@intel.com>
10113 M:      Vishal Verma <vishal.l.verma@intel.com>
10114 M:      Dave Jiang <dave.jiang@intel.com>
10115 M:      Ira Weiny <ira.weiny@intel.com>
10116 L:      linux-nvdimm@lists.01.org
10117 S:      Supported
10118 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10119 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10121 F:      drivers/acpi/nfit/*
10122 F:      drivers/nvdimm/*
10123 F:      include/linux/libnvdimm.h
10124 F:      include/linux/nd.h
10125 F:      include/uapi/linux/ndctl.h
10126 F:      tools/testing/nvdimm/
10127
10128 LICENSES and SPDX stuff
10129 M:      Thomas Gleixner <tglx@linutronix.de>
10130 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10131 L:      linux-spdx@vger.kernel.org
10132 S:      Maintained
10133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10134 F:      COPYING
10135 F:      Documentation/process/license-rules.rst
10136 F:      LICENSES/
10137 F:      scripts/spdxcheck-test.sh
10138 F:      scripts/spdxcheck.py
10139
10140 LIGHTNVM PLATFORM SUPPORT
10141 M:      Matias Bjorling <mb@lightnvm.io>
10142 L:      linux-block@vger.kernel.org
10143 S:      Maintained
10144 W:      http://github/OpenChannelSSD
10145 F:      drivers/lightnvm/
10146 F:      include/linux/lightnvm.h
10147 F:      include/uapi/linux/lightnvm.h
10148
10149 LINEAR RANGES HELPERS
10150 M:      Mark Brown <broonie@kernel.org>
10151 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10152 F:      lib/linear_ranges.c
10153 F:      lib/test_linear_ranges.c
10154 F:      include/linux/linear_range.h
10155
10156 LINUX FOR POWER MACINTOSH
10157 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10158 L:      linuxppc-dev@lists.ozlabs.org
10159 S:      Odd Fixes
10160 F:      arch/powerpc/platforms/powermac/
10161 F:      drivers/macintosh/
10162
10163 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10164 M:      Michael Ellerman <mpe@ellerman.id.au>
10165 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10166 R:      Paul Mackerras <paulus@samba.org>
10167 L:      linuxppc-dev@lists.ozlabs.org
10168 S:      Supported
10169 W:      https://github.com/linuxppc/wiki/wiki
10170 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10172 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10173 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10174 F:      Documentation/devicetree/bindings/powerpc/
10175 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10176 F:      Documentation/powerpc/
10177 F:      arch/powerpc/
10178 F:      drivers/*/*/*pasemi*
10179 F:      drivers/*/*pasemi*
10180 F:      drivers/char/tpm/tpm_ibmvtpm*
10181 F:      drivers/crypto/nx/
10182 F:      drivers/crypto/vmx/
10183 F:      drivers/i2c/busses/i2c-opal.c
10184 F:      drivers/net/ethernet/ibm/ibmveth.*
10185 F:      drivers/net/ethernet/ibm/ibmvnic.*
10186 F:      drivers/pci/hotplug/pnv_php.c
10187 F:      drivers/pci/hotplug/rpa*
10188 F:      drivers/rtc/rtc-opal.c
10189 F:      drivers/scsi/ibmvscsi/
10190 F:      drivers/tty/hvc/hvc_opal.c
10191 F:      drivers/watchdog/wdrtas.c
10192 F:      tools/testing/selftests/powerpc
10193 N:      /pmac
10194 N:      powermac
10195 N:      powernv
10196 N:      [^a-z0-9]ps3
10197 N:      pseries
10198
10199 LINUX FOR POWERPC EMBEDDED MPC5XXX
10200 M:      Anatolij Gustschin <agust@denx.de>
10201 L:      linuxppc-dev@lists.ozlabs.org
10202 S:      Odd Fixes
10203 F:      arch/powerpc/platforms/512x/
10204 F:      arch/powerpc/platforms/52xx/
10205
10206 LINUX FOR POWERPC EMBEDDED PPC4XX
10207 L:      linuxppc-dev@lists.ozlabs.org
10208 S:      Orphan
10209 F:      arch/powerpc/platforms/40x/
10210 F:      arch/powerpc/platforms/44x/
10211
10212 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10213 M:      Scott Wood <oss@buserror.net>
10214 L:      linuxppc-dev@lists.ozlabs.org
10215 S:      Odd fixes
10216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10217 F:      Documentation/devicetree/bindings/powerpc/fsl/
10218 F:      arch/powerpc/platforms/83xx/
10219 F:      arch/powerpc/platforms/85xx/
10220
10221 LINUX FOR POWERPC EMBEDDED PPC8XX
10222 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10223 L:      linuxppc-dev@lists.ozlabs.org
10224 S:      Maintained
10225 F:      arch/powerpc/platforms/8xx/
10226
10227 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10228 M:      Kees Cook <keescook@chromium.org>
10229 S:      Maintained
10230 F:      drivers/misc/lkdtm/*
10231 F:      tools/testing/selftests/lkdtm/*
10232
10233 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10234 M:      Alan Stern <stern@rowland.harvard.edu>
10235 M:      Andrea Parri <parri.andrea@gmail.com>
10236 M:      Will Deacon <will@kernel.org>
10237 M:      Peter Zijlstra <peterz@infradead.org>
10238 M:      Boqun Feng <boqun.feng@gmail.com>
10239 M:      Nicholas Piggin <npiggin@gmail.com>
10240 M:      David Howells <dhowells@redhat.com>
10241 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10242 M:      Luc Maranget <luc.maranget@inria.fr>
10243 M:      "Paul E. McKenney" <paulmck@kernel.org>
10244 R:      Akira Yokosawa <akiyks@gmail.com>
10245 R:      Daniel Lustig <dlustig@nvidia.com>
10246 R:      Joel Fernandes <joel@joelfernandes.org>
10247 L:      linux-kernel@vger.kernel.org
10248 L:      linux-arch@vger.kernel.org
10249 S:      Supported
10250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10251 F:      Documentation/atomic_bitops.txt
10252 F:      Documentation/atomic_t.txt
10253 F:      Documentation/core-api/refcount-vs-atomic.rst
10254 F:      Documentation/litmus-tests/
10255 F:      Documentation/memory-barriers.txt
10256 F:      tools/memory-model/
10257
10258 LIS3LV02D ACCELEROMETER DRIVER
10259 M:      Eric Piel <eric.piel@tremplin-utc.net>
10260 S:      Maintained
10261 F:      Documentation/misc-devices/lis3lv02d.rst
10262 F:      drivers/misc/lis3lv02d/
10263 F:      drivers/platform/x86/hp_accel.c
10264
10265 LIST KUNIT TEST
10266 M:      David Gow <davidgow@google.com>
10267 L:      linux-kselftest@vger.kernel.org
10268 L:      kunit-dev@googlegroups.com
10269 S:      Maintained
10270 F:      lib/list-test.c
10271
10272 LITEX PLATFORM
10273 M:      Karol Gugala <kgugala@antmicro.com>
10274 M:      Mateusz Holenko <mholenko@antmicro.com>
10275 S:      Maintained
10276 F:      Documentation/devicetree/bindings/*/litex,*.yaml
10277 F:      arch/openrisc/boot/dts/or1klitex.dts
10278 F:      drivers/soc/litex/litex_soc_ctrl.c
10279 F:      drivers/tty/serial/liteuart.c
10280 F:      include/linux/litex.h
10281
10282 LIVE PATCHING
10283 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10284 M:      Jiri Kosina <jikos@kernel.org>
10285 M:      Miroslav Benes <mbenes@suse.cz>
10286 M:      Petr Mladek <pmladek@suse.com>
10287 R:      Joe Lawrence <joe.lawrence@redhat.com>
10288 L:      live-patching@vger.kernel.org
10289 S:      Maintained
10290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10291 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10292 F:      Documentation/livepatch/
10293 F:      arch/powerpc/include/asm/livepatch.h
10294 F:      arch/s390/include/asm/livepatch.h
10295 F:      arch/x86/include/asm/livepatch.h
10296 F:      include/linux/livepatch.h
10297 F:      kernel/livepatch/
10298 F:      lib/livepatch/
10299 F:      samples/livepatch/
10300 F:      tools/testing/selftests/livepatch/
10301
10302 LLC (802.2)
10303 L:      netdev@vger.kernel.org
10304 S:      Odd fixes
10305 F:      include/linux/llc.h
10306 F:      include/net/llc*
10307 F:      include/uapi/linux/llc.h
10308 F:      net/llc/
10309
10310 LM73 HARDWARE MONITOR DRIVER
10311 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10312 L:      linux-hwmon@vger.kernel.org
10313 S:      Maintained
10314 F:      drivers/hwmon/lm73.c
10315
10316 LM78 HARDWARE MONITOR DRIVER
10317 M:      Jean Delvare <jdelvare@suse.com>
10318 L:      linux-hwmon@vger.kernel.org
10319 S:      Maintained
10320 F:      Documentation/hwmon/lm78.rst
10321 F:      drivers/hwmon/lm78.c
10322
10323 LM83 HARDWARE MONITOR DRIVER
10324 M:      Jean Delvare <jdelvare@suse.com>
10325 L:      linux-hwmon@vger.kernel.org
10326 S:      Maintained
10327 F:      Documentation/hwmon/lm83.rst
10328 F:      drivers/hwmon/lm83.c
10329
10330 LM90 HARDWARE MONITOR DRIVER
10331 M:      Jean Delvare <jdelvare@suse.com>
10332 L:      linux-hwmon@vger.kernel.org
10333 S:      Maintained
10334 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10335 F:      Documentation/hwmon/lm90.rst
10336 F:      drivers/hwmon/lm90.c
10337 F:      include/dt-bindings/thermal/lm90.h
10338
10339 LM95234 HARDWARE MONITOR DRIVER
10340 M:      Guenter Roeck <linux@roeck-us.net>
10341 L:      linux-hwmon@vger.kernel.org
10342 S:      Maintained
10343 F:      Documentation/hwmon/lm95234.rst
10344 F:      drivers/hwmon/lm95234.c
10345
10346 LME2510 MEDIA DRIVER
10347 M:      Malcolm Priestley <tvboxspy@gmail.com>
10348 L:      linux-media@vger.kernel.org
10349 S:      Maintained
10350 W:      https://linuxtv.org
10351 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10352 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10353
10354 LOADPIN SECURITY MODULE
10355 M:      Kees Cook <keescook@chromium.org>
10356 S:      Supported
10357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10358 F:      Documentation/admin-guide/LSM/LoadPin.rst
10359 F:      security/loadpin/
10360
10361 LOCKING PRIMITIVES
10362 M:      Peter Zijlstra <peterz@infradead.org>
10363 M:      Ingo Molnar <mingo@redhat.com>
10364 M:      Will Deacon <will@kernel.org>
10365 R:      Waiman Long <longman@redhat.com>
10366 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
10367 L:      linux-kernel@vger.kernel.org
10368 S:      Maintained
10369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10370 F:      Documentation/locking/
10371 F:      arch/*/include/asm/spinlock*.h
10372 F:      include/linux/lockdep.h
10373 F:      include/linux/mutex*.h
10374 F:      include/linux/rwlock*.h
10375 F:      include/linux/rwsem*.h
10376 F:      include/linux/seqlock.h
10377 F:      include/linux/spinlock*.h
10378 F:      kernel/locking/
10379 F:      lib/locking*.[ch]
10380 X:      kernel/locking/locktorture.c
10381
10382 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10383 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
10384 L:      linux-ntfs-dev@lists.sourceforge.net
10385 S:      Maintained
10386 W:      http://www.linux-ntfs.org/content/view/19/37/
10387 F:      Documentation/admin-guide/ldm.rst
10388 F:      block/partitions/ldm.*
10389
10390 LOGITECH HID GAMING KEYBOARDS
10391 M:      Hans de Goede <hdegoede@redhat.com>
10392 L:      linux-input@vger.kernel.org
10393 S:      Maintained
10394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10395 F:      drivers/hid/hid-lg-g15.c
10396
10397 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10398 M:      Sathya Prakash <sathya.prakash@broadcom.com>
10399 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10400 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10401 L:      MPT-FusionLinux.pdl@broadcom.com
10402 L:      linux-scsi@vger.kernel.org
10403 S:      Supported
10404 W:      http://www.avagotech.com/support/
10405 F:      drivers/message/fusion/
10406 F:      drivers/scsi/mpt3sas/
10407
10408 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10409 M:      Matthew Wilcox <willy@infradead.org>
10410 L:      linux-scsi@vger.kernel.org
10411 S:      Maintained
10412 F:      drivers/scsi/sym53c8xx_2/
10413
10414 LTC1660 DAC DRIVER
10415 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10416 L:      linux-iio@vger.kernel.org
10417 S:      Maintained
10418 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10419 F:      drivers/iio/dac/ltc1660.c
10420
10421 LTC2947 HARDWARE MONITOR DRIVER
10422 M:      Nuno Sá <nuno.sa@analog.com>
10423 L:      linux-hwmon@vger.kernel.org
10424 S:      Supported
10425 W:      http://ez.analog.com/community/linux-device-drivers
10426 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10427 F:      drivers/hwmon/ltc2947-core.c
10428 F:      drivers/hwmon/ltc2947-i2c.c
10429 F:      drivers/hwmon/ltc2947-spi.c
10430 F:      drivers/hwmon/ltc2947.h
10431
10432 LTC2983 IIO TEMPERATURE DRIVER
10433 M:      Nuno Sá <nuno.sa@analog.com>
10434 L:      linux-iio@vger.kernel.org
10435 S:      Supported
10436 W:      http://ez.analog.com/community/linux-device-drivers
10437 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10438 F:      drivers/iio/temperature/ltc2983.c
10439
10440 LTC4261 HARDWARE MONITOR DRIVER
10441 M:      Guenter Roeck <linux@roeck-us.net>
10442 L:      linux-hwmon@vger.kernel.org
10443 S:      Maintained
10444 F:      Documentation/hwmon/ltc4261.rst
10445 F:      drivers/hwmon/ltc4261.c
10446
10447 LTC4306 I2C MULTIPLEXER DRIVER
10448 M:      Michael Hennerich <michael.hennerich@analog.com>
10449 L:      linux-i2c@vger.kernel.org
10450 S:      Supported
10451 W:      http://ez.analog.com/community/linux-device-drivers
10452 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10453 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10454
10455 LTP (Linux Test Project)
10456 M:      Mike Frysinger <vapier@gentoo.org>
10457 M:      Cyril Hrubis <chrubis@suse.cz>
10458 M:      Wanlong Gao <wanlong.gao@gmail.com>
10459 M:      Jan Stancek <jstancek@redhat.com>
10460 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10461 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
10462 L:      ltp@lists.linux.it (subscribers-only)
10463 S:      Maintained
10464 W:      http://linux-test-project.github.io/
10465 T:      git git://github.com/linux-test-project/ltp.git
10466
10467 LYNX PCS MODULE
10468 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
10469 L:      netdev@vger.kernel.org
10470 S:      Supported
10471 F:      drivers/net/pcs/pcs-lynx.c
10472 F:      include/linux/pcs-lynx.h
10473
10474 M68K ARCHITECTURE
10475 M:      Geert Uytterhoeven <geert@linux-m68k.org>
10476 L:      linux-m68k@lists.linux-m68k.org
10477 S:      Maintained
10478 W:      http://www.linux-m68k.org/
10479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10480 F:      arch/m68k/
10481 F:      drivers/zorro/
10482
10483 M68K ON APPLE MACINTOSH
10484 M:      Joshua Thompson <funaho@jurai.org>
10485 L:      linux-m68k@lists.linux-m68k.org
10486 S:      Maintained
10487 W:      http://www.mac.linux-m68k.org/
10488 F:      arch/m68k/mac/
10489 F:      drivers/macintosh/adb-iop.c
10490 F:      drivers/macintosh/via-macii.c
10491
10492 M68K ON HP9000/300
10493 M:      Philip Blundell <philb@gnu.org>
10494 S:      Maintained
10495 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10496 F:      arch/m68k/hp300/
10497
10498 M88DS3103 MEDIA DRIVER
10499 M:      Antti Palosaari <crope@iki.fi>
10500 L:      linux-media@vger.kernel.org
10501 S:      Maintained
10502 W:      https://linuxtv.org
10503 W:      http://palosaari.fi/linux/
10504 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10505 T:      git git://linuxtv.org/anttip/media_tree.git
10506 F:      drivers/media/dvb-frontends/m88ds3103*
10507
10508 M88RS2000 MEDIA DRIVER
10509 M:      Malcolm Priestley <tvboxspy@gmail.com>
10510 L:      linux-media@vger.kernel.org
10511 S:      Maintained
10512 W:      https://linuxtv.org
10513 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10514 F:      drivers/media/dvb-frontends/m88rs2000*
10515
10516 MA901 MASTERKIT USB FM RADIO DRIVER
10517 M:      Alexey Klimov <klimov.linux@gmail.com>
10518 L:      linux-media@vger.kernel.org
10519 S:      Maintained
10520 T:      git git://linuxtv.org/media_tree.git
10521 F:      drivers/media/radio/radio-ma901.c
10522
10523 MAC80211
10524 M:      Johannes Berg <johannes@sipsolutions.net>
10525 L:      linux-wireless@vger.kernel.org
10526 S:      Maintained
10527 W:      https://wireless.wiki.kernel.org/
10528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10530 F:      Documentation/networking/mac80211-injection.rst
10531 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10532 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10533 F:      include/net/mac80211.h
10534 F:      net/mac80211/
10535
10536 MAILBOX API
10537 M:      Jassi Brar <jassisinghbrar@gmail.com>
10538 L:      linux-kernel@vger.kernel.org
10539 S:      Maintained
10540 F:      drivers/mailbox/
10541 F:      include/linux/mailbox_client.h
10542 F:      include/linux/mailbox_controller.h
10543
10544 MAILBOX ARM MHUv2
10545 M:      Viresh Kumar <viresh.kumar@linaro.org>
10546 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
10547 L:      linux-kernel@vger.kernel.org
10548 S:      Maintained
10549 F:      drivers/mailbox/arm_mhuv2.c
10550 F:      include/linux/mailbox/arm_mhuv2_message.h
10551 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
10552
10553 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10554 M:      Michael Kerrisk <mtk.manpages@gmail.com>
10555 L:      linux-man@vger.kernel.org
10556 S:      Maintained
10557 W:      http://www.kernel.org/doc/man-pages
10558
10559 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10560 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
10561 L:      linux-mips@vger.kernel.org
10562 S:      Maintained
10563 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10564
10565 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10566 M:      Andrew Lunn <andrew@lunn.ch>
10567 M:      Vivien Didelot <vivien.didelot@gmail.com>
10568 L:      netdev@vger.kernel.org
10569 S:      Maintained
10570 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10571 F:      Documentation/networking/devlink/mv88e6xxx.rst
10572 F:      drivers/net/dsa/mv88e6xxx/
10573 F:      include/linux/platform_data/mv88e6xxx.h
10574
10575 MARVELL ARMADA 3700 PHY DRIVERS
10576 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10577 S:      Maintained
10578 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10579 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10580 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10581 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10582
10583 MARVELL ARMADA DRM SUPPORT
10584 M:      Russell King <linux@armlinux.org.uk>
10585 S:      Maintained
10586 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10587 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10588 F:      Documentation/devicetree/bindings/display/armada/
10589 F:      drivers/gpu/drm/armada/
10590 F:      include/uapi/drm/armada_drm.h
10591
10592 MARVELL CRYPTO DRIVER
10593 M:      Boris Brezillon <bbrezillon@kernel.org>
10594 M:      Arnaud Ebalard <arno@natisbad.org>
10595 M:      Srujana Challa <schalla@marvell.com>
10596 L:      linux-crypto@vger.kernel.org
10597 S:      Maintained
10598 F:      drivers/crypto/marvell/
10599 F:      include/linux/soc/marvell/octeontx2/
10600
10601 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10602 M:      Mirko Lindner <mlindner@marvell.com>
10603 M:      Stephen Hemminger <stephen@networkplumber.org>
10604 L:      netdev@vger.kernel.org
10605 S:      Maintained
10606 F:      drivers/net/ethernet/marvell/sk*
10607
10608 MARVELL LIBERTAS WIRELESS DRIVER
10609 L:      libertas-dev@lists.infradead.org
10610 S:      Orphan
10611 F:      drivers/net/wireless/marvell/libertas/
10612
10613 MARVELL MACCHIATOBIN SUPPORT
10614 M:      Russell King <linux@armlinux.org.uk>
10615 L:      linux-arm-kernel@lists.infradead.org
10616 S:      Maintained
10617 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10618
10619 MARVELL MV643XX ETHERNET DRIVER
10620 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
10621 L:      netdev@vger.kernel.org
10622 S:      Maintained
10623 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10624 F:      include/linux/mv643xx.h
10625
10626 MARVELL MV88X3310 PHY DRIVER
10627 M:      Russell King <linux@armlinux.org.uk>
10628 L:      netdev@vger.kernel.org
10629 S:      Maintained
10630 F:      drivers/net/phy/marvell10g.c
10631
10632 MARVELL MVEBU THERMAL DRIVER
10633 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10634 S:      Maintained
10635 F:      drivers/thermal/armada_thermal.c
10636
10637 MARVELL MVNETA ETHERNET DRIVER
10638 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10639 L:      netdev@vger.kernel.org
10640 S:      Maintained
10641 F:      drivers/net/ethernet/marvell/mvneta.*
10642
10643 MARVELL MVPP2 ETHERNET DRIVER
10644 M:      Marcin Wojtas <mw@semihalf.com>
10645 M:      Russell King <linux@armlinux.org.uk>
10646 L:      netdev@vger.kernel.org
10647 S:      Maintained
10648 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
10649 F:      drivers/net/ethernet/marvell/mvpp2/
10650
10651 MARVELL MWIFIEX WIRELESS DRIVER
10652 M:      Amitkumar Karwar <amitkarwar@gmail.com>
10653 M:      Ganapathi Bhat <ganapathi.bhat@nxp.com>
10654 M:      Xinming Hu <huxinming820@gmail.com>
10655 L:      linux-wireless@vger.kernel.org
10656 S:      Maintained
10657 F:      drivers/net/wireless/marvell/mwifiex/
10658
10659 MARVELL MWL8K WIRELESS DRIVER
10660 M:      Lennert Buytenhek <buytenh@wantstofly.org>
10661 L:      linux-wireless@vger.kernel.org
10662 S:      Odd Fixes
10663 F:      drivers/net/wireless/marvell/mwl8k.c
10664
10665 MARVELL NAND CONTROLLER DRIVER
10666 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10667 L:      linux-mtd@lists.infradead.org
10668 S:      Maintained
10669 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10670 F:      drivers/mtd/nand/raw/marvell_nand.c
10671
10672 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10673 M:      Sunil Goutham <sgoutham@marvell.com>
10674 M:      Geetha sowjanya <gakula@marvell.com>
10675 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10676 M:      hariprasad <hkelam@marvell.com>
10677 L:      netdev@vger.kernel.org
10678 S:      Supported
10679 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10680 F:      include/linux/soc/marvell/octeontx2/
10681
10682 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10683 M:      Sunil Goutham <sgoutham@marvell.com>
10684 M:      Linu Cherian <lcherian@marvell.com>
10685 M:      Geetha sowjanya <gakula@marvell.com>
10686 M:      Jerin Jacob <jerinj@marvell.com>
10687 M:      hariprasad <hkelam@marvell.com>
10688 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10689 L:      netdev@vger.kernel.org
10690 S:      Supported
10691 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
10692 F:      drivers/net/ethernet/marvell/octeontx2/af/
10693
10694 MARVELL PRESTERA ETHERNET SWITCH DRIVER
10695 M:      Vadym Kochan <vkochan@marvell.com>
10696 M:      Taras Chornyi <tchornyi@marvell.com>
10697 S:      Supported
10698 W:      https://github.com/Marvell-switching/switchdev-prestera
10699 F:      drivers/net/ethernet/marvell/prestera/
10700
10701 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10702 M:      Nicolas Pitre <nico@fluxnic.net>
10703 S:      Odd Fixes
10704 F:      drivers/mmc/host/mvsdio.*
10705
10706 MARVELL USB MDIO CONTROLLER DRIVER
10707 M:      Tobias Waldekranz <tobias@waldekranz.com>
10708 L:      netdev@vger.kernel.org
10709 S:      Maintained
10710 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10711 F:      drivers/net/mdio/mdio-mvusb.c
10712
10713 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10714 M:      Hu Ziji <huziji@marvell.com>
10715 L:      linux-mmc@vger.kernel.org
10716 S:      Supported
10717 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10718 F:      drivers/mmc/host/sdhci-xenon*
10719
10720 MATROX FRAMEBUFFER DRIVER
10721 L:      linux-fbdev@vger.kernel.org
10722 S:      Orphan
10723 F:      drivers/video/fbdev/matrox/matroxfb_*
10724 F:      include/uapi/linux/matroxfb.h
10725
10726 MAX16065 HARDWARE MONITOR DRIVER
10727 M:      Guenter Roeck <linux@roeck-us.net>
10728 L:      linux-hwmon@vger.kernel.org
10729 S:      Maintained
10730 F:      Documentation/hwmon/max16065.rst
10731 F:      drivers/hwmon/max16065.c
10732
10733 MAX2175 SDR TUNER DRIVER
10734 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10735 L:      linux-media@vger.kernel.org
10736 S:      Maintained
10737 T:      git git://linuxtv.org/media_tree.git
10738 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10739 F:      Documentation/userspace-api/media/drivers/max2175.rst
10740 F:      drivers/media/i2c/max2175*
10741 F:      include/uapi/linux/max2175.h
10742
10743 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10744 L:      linux-hwmon@vger.kernel.org
10745 S:      Orphan
10746 F:      Documentation/hwmon/max6650.rst
10747 F:      drivers/hwmon/max6650.c
10748
10749 MAX6697 HARDWARE MONITOR DRIVER
10750 M:      Guenter Roeck <linux@roeck-us.net>
10751 L:      linux-hwmon@vger.kernel.org
10752 S:      Maintained
10753 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10754 F:      Documentation/hwmon/max6697.rst
10755 F:      drivers/hwmon/max6697.c
10756 F:      include/linux/platform_data/max6697.h
10757
10758 MAX9286 QUAD GMSL DESERIALIZER DRIVER
10759 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
10760 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10761 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
10762 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
10763 L:      linux-media@vger.kernel.org
10764 S:      Maintained
10765 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
10766 F:      drivers/media/i2c/max9286.c
10767
10768 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10769 M:      Peter Rosin <peda@axentia.se>
10770 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10771 S:      Maintained
10772 F:      Documentation/devicetree/bindings/sound/max9860.txt
10773 F:      sound/soc/codecs/max9860.*
10774
10775 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10776 M:      Andreas Klinger <ak@it-klinger.de>
10777 L:      linux-iio@vger.kernel.org
10778 S:      Maintained
10779 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10780 F:      drivers/iio/proximity/mb1232.c
10781
10782 MAXIM MAX77650 PMIC MFD DRIVER
10783 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
10784 L:      linux-kernel@vger.kernel.org
10785 S:      Maintained
10786 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10787 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10788 F:      drivers/gpio/gpio-max77650.c
10789 F:      drivers/input/misc/max77650-onkey.c
10790 F:      drivers/leds/leds-max77650.c
10791 F:      drivers/mfd/max77650.c
10792 F:      drivers/power/supply/max77650-charger.c
10793 F:      drivers/regulator/max77650-regulator.c
10794 F:      include/linux/mfd/max77650.h
10795
10796 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10797 M:      Javier Martinez Canillas <javier@dowhile0.org>
10798 L:      linux-kernel@vger.kernel.org
10799 S:      Supported
10800 F:      Documentation/devicetree/bindings/*/*max77802.txt
10801 F:      drivers/regulator/max77802-regulator.c
10802 F:      include/dt-bindings/*/*max77802.h
10803
10804 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10805 M:      Krzysztof Kozlowski <krzk@kernel.org>
10806 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10807 L:      linux-pm@vger.kernel.org
10808 S:      Supported
10809 F:      drivers/power/supply/max14577_charger.c
10810 F:      drivers/power/supply/max77693_charger.c
10811
10812 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10813 M:      Chanwoo Choi <cw00.choi@samsung.com>
10814 M:      Krzysztof Kozlowski <krzk@kernel.org>
10815 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10816 L:      linux-kernel@vger.kernel.org
10817 S:      Supported
10818 F:      Documentation/devicetree/bindings/*/max77686.txt
10819 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10820 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10821 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10822 F:      drivers/*/max14577*.c
10823 F:      drivers/*/max77686*.c
10824 F:      drivers/*/max77693*.c
10825 F:      drivers/clk/clk-max77686.c
10826 F:      drivers/extcon/extcon-max14577.c
10827 F:      drivers/extcon/extcon-max77693.c
10828 F:      drivers/rtc/rtc-max77686.c
10829 F:      include/linux/mfd/max14577*.h
10830 F:      include/linux/mfd/max77686*.h
10831 F:      include/linux/mfd/max77693*.h
10832
10833 MAXIRADIO FM RADIO RECEIVER DRIVER
10834 M:      Hans Verkuil <hverkuil@xs4all.nl>
10835 L:      linux-media@vger.kernel.org
10836 S:      Maintained
10837 W:      https://linuxtv.org
10838 T:      git git://linuxtv.org/media_tree.git
10839 F:      drivers/media/radio/radio-maxiradio*
10840
10841 MCAN MMIO DEVICE DRIVER
10842 M:      Dan Murphy <dmurphy@ti.com>
10843 M:      Pankaj Sharma <pankj.sharma@samsung.com>
10844 L:      linux-can@vger.kernel.org
10845 S:      Maintained
10846 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10847 F:      drivers/net/can/m_can/m_can.c
10848 F:      drivers/net/can/m_can/m_can.h
10849 F:      drivers/net/can/m_can/m_can_platform.c
10850
10851 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10852 M:      Rishi Gupta <gupt21@gmail.com>
10853 L:      linux-i2c@vger.kernel.org
10854 L:      linux-input@vger.kernel.org
10855 S:      Maintained
10856 F:      drivers/hid/hid-mcp2221.c
10857
10858 MCP251XFD SPI-CAN NETWORK DRIVER
10859 M:      Marc Kleine-Budde <mkl@pengutronix.de>
10860 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
10861 R:      Thomas Kopp <thomas.kopp@microchip.com>
10862 L:      linux-can@vger.kernel.org
10863 S:      Maintained
10864 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
10865 F:      drivers/net/can/spi/mcp251xfd/
10866
10867 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10868 M:      Peter Rosin <peda@axentia.se>
10869 L:      linux-iio@vger.kernel.org
10870 S:      Maintained
10871 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10872 F:      drivers/iio/potentiometer/mcp4018.c
10873 F:      drivers/iio/potentiometer/mcp4531.c
10874
10875 MCR20A IEEE-802.15.4 RADIO DRIVER
10876 M:      Xue Liu <liuxuenetmail@gmail.com>
10877 L:      linux-wpan@vger.kernel.org
10878 S:      Maintained
10879 W:      https://github.com/xueliu/mcr20a-linux
10880 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10881 F:      drivers/net/ieee802154/mcr20a.c
10882 F:      drivers/net/ieee802154/mcr20a.h
10883
10884 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10885 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10886 L:      linux-iio@vger.kernel.org
10887 S:      Maintained
10888 F:      drivers/iio/dac/cio-dac.c
10889
10890 MEDIA CONTROLLER FRAMEWORK
10891 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10892 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10893 L:      linux-media@vger.kernel.org
10894 S:      Supported
10895 W:      https://www.linuxtv.org
10896 T:      git git://linuxtv.org/media_tree.git
10897 F:      drivers/media/mc/
10898 F:      include/media/media-*.h
10899 F:      include/uapi/linux/media.h
10900
10901 MEDIA DRIVER FOR FREESCALE IMX PXP
10902 M:      Philipp Zabel <p.zabel@pengutronix.de>
10903 L:      linux-media@vger.kernel.org
10904 S:      Maintained
10905 T:      git git://linuxtv.org/media_tree.git
10906 F:      drivers/media/platform/imx-pxp.[ch]
10907
10908 MEDIA DRIVERS FOR ASCOT2E
10909 M:      Sergey Kozlov <serjk@netup.ru>
10910 M:      Abylay Ospan <aospan@netup.ru>
10911 L:      linux-media@vger.kernel.org
10912 S:      Supported
10913 W:      https://linuxtv.org
10914 W:      http://netup.tv/
10915 T:      git git://linuxtv.org/media_tree.git
10916 F:      drivers/media/dvb-frontends/ascot2e*
10917
10918 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10919 M:      Jasmin Jessich <jasmin@anw.at>
10920 L:      linux-media@vger.kernel.org
10921 S:      Maintained
10922 W:      https://linuxtv.org
10923 T:      git git://linuxtv.org/media_tree.git
10924 F:      drivers/media/dvb-frontends/cxd2099*
10925
10926 MEDIA DRIVERS FOR CXD2841ER
10927 M:      Sergey Kozlov <serjk@netup.ru>
10928 M:      Abylay Ospan <aospan@netup.ru>
10929 L:      linux-media@vger.kernel.org
10930 S:      Supported
10931 W:      https://linuxtv.org
10932 W:      http://netup.tv/
10933 T:      git git://linuxtv.org/media_tree.git
10934 F:      drivers/media/dvb-frontends/cxd2841er*
10935
10936 MEDIA DRIVERS FOR CXD2880
10937 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10938 L:      linux-media@vger.kernel.org
10939 S:      Supported
10940 W:      http://linuxtv.org/
10941 T:      git git://linuxtv.org/media_tree.git
10942 F:      drivers/media/dvb-frontends/cxd2880/*
10943 F:      drivers/media/spi/cxd2880*
10944
10945 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10946 L:      linux-media@vger.kernel.org
10947 S:      Orphan
10948 W:      https://linuxtv.org
10949 T:      git git://linuxtv.org/media_tree.git
10950 F:      drivers/media/pci/ddbridge/*
10951
10952 MEDIA DRIVERS FOR FREESCALE IMX
10953 M:      Steve Longerbeam <slongerbeam@gmail.com>
10954 M:      Philipp Zabel <p.zabel@pengutronix.de>
10955 L:      linux-media@vger.kernel.org
10956 S:      Maintained
10957 T:      git git://linuxtv.org/media_tree.git
10958 F:      Documentation/admin-guide/media/imx.rst
10959 F:      Documentation/devicetree/bindings/media/imx.txt
10960 F:      drivers/staging/media/imx/
10961 F:      include/linux/imx-media.h
10962 F:      include/media/imx.h
10963
10964 MEDIA DRIVERS FOR FREESCALE IMX7
10965 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10966 L:      linux-media@vger.kernel.org
10967 S:      Maintained
10968 T:      git git://linuxtv.org/media_tree.git
10969 F:      Documentation/admin-guide/media/imx7.rst
10970 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
10971 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
10972 F:      drivers/staging/media/imx/imx7-media-csi.c
10973 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10974
10975 MEDIA DRIVERS FOR HELENE
10976 M:      Abylay Ospan <aospan@netup.ru>
10977 L:      linux-media@vger.kernel.org
10978 S:      Supported
10979 W:      https://linuxtv.org
10980 W:      http://netup.tv/
10981 T:      git git://linuxtv.org/media_tree.git
10982 F:      drivers/media/dvb-frontends/helene*
10983
10984 MEDIA DRIVERS FOR HORUS3A
10985 M:      Sergey Kozlov <serjk@netup.ru>
10986 M:      Abylay Ospan <aospan@netup.ru>
10987 L:      linux-media@vger.kernel.org
10988 S:      Supported
10989 W:      https://linuxtv.org
10990 W:      http://netup.tv/
10991 T:      git git://linuxtv.org/media_tree.git
10992 F:      drivers/media/dvb-frontends/horus3a*
10993
10994 MEDIA DRIVERS FOR LNBH25
10995 M:      Sergey Kozlov <serjk@netup.ru>
10996 M:      Abylay Ospan <aospan@netup.ru>
10997 L:      linux-media@vger.kernel.org
10998 S:      Supported
10999 W:      https://linuxtv.org
11000 W:      http://netup.tv/
11001 T:      git git://linuxtv.org/media_tree.git
11002 F:      drivers/media/dvb-frontends/lnbh25*
11003
11004 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11005 L:      linux-media@vger.kernel.org
11006 S:      Orphan
11007 W:      https://linuxtv.org
11008 T:      git git://linuxtv.org/media_tree.git
11009 F:      drivers/media/dvb-frontends/mxl5xx*
11010
11011 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11012 M:      Sergey Kozlov <serjk@netup.ru>
11013 M:      Abylay Ospan <aospan@netup.ru>
11014 L:      linux-media@vger.kernel.org
11015 S:      Supported
11016 W:      https://linuxtv.org
11017 W:      http://netup.tv/
11018 T:      git git://linuxtv.org/media_tree.git
11019 F:      drivers/media/pci/netup_unidvb/*
11020
11021 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11022 M:      Dmitry Osipenko <digetx@gmail.com>
11023 L:      linux-media@vger.kernel.org
11024 L:      linux-tegra@vger.kernel.org
11025 S:      Maintained
11026 T:      git git://linuxtv.org/media_tree.git
11027 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11028 F:      drivers/staging/media/tegra-vde/
11029
11030 MEDIA DRIVERS FOR RENESAS - CEU
11031 M:      Jacopo Mondi <jacopo@jmondi.org>
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,ceu.yaml
11037 F:      drivers/media/platform/renesas-ceu.c
11038 F:      include/media/drv-intf/renesas-ceu.h
11039
11040 MEDIA DRIVERS FOR RENESAS - DRIF
11041 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11042 L:      linux-media@vger.kernel.org
11043 L:      linux-renesas-soc@vger.kernel.org
11044 S:      Supported
11045 T:      git git://linuxtv.org/media_tree.git
11046 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
11047 F:      drivers/media/platform/rcar_drif.c
11048
11049 MEDIA DRIVERS FOR RENESAS - FCP
11050 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11051 L:      linux-media@vger.kernel.org
11052 L:      linux-renesas-soc@vger.kernel.org
11053 S:      Supported
11054 T:      git git://linuxtv.org/media_tree.git
11055 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11056 F:      drivers/media/platform/rcar-fcp.c
11057 F:      include/media/rcar-fcp.h
11058
11059 MEDIA DRIVERS FOR RENESAS - FDP1
11060 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11061 L:      linux-media@vger.kernel.org
11062 L:      linux-renesas-soc@vger.kernel.org
11063 S:      Supported
11064 T:      git git://linuxtv.org/media_tree.git
11065 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11066 F:      drivers/media/platform/rcar_fdp1.c
11067
11068 MEDIA DRIVERS FOR RENESAS - VIN
11069 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11070 L:      linux-media@vger.kernel.org
11071 L:      linux-renesas-soc@vger.kernel.org
11072 S:      Supported
11073 T:      git git://linuxtv.org/media_tree.git
11074 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11075 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11076 F:      drivers/media/platform/rcar-vin/
11077
11078 MEDIA DRIVERS FOR RENESAS - VSP1
11079 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11080 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11081 L:      linux-media@vger.kernel.org
11082 L:      linux-renesas-soc@vger.kernel.org
11083 S:      Supported
11084 T:      git git://linuxtv.org/media_tree.git
11085 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11086 F:      drivers/media/platform/vsp1/
11087
11088 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11089 L:      linux-media@vger.kernel.org
11090 S:      Orphan
11091 W:      https://linuxtv.org
11092 T:      git git://linuxtv.org/media_tree.git
11093 F:      drivers/media/dvb-frontends/stv0910*
11094
11095 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11096 L:      linux-media@vger.kernel.org
11097 S:      Orphan
11098 W:      https://linuxtv.org
11099 T:      git git://linuxtv.org/media_tree.git
11100 F:      drivers/media/dvb-frontends/stv6111*
11101
11102 MEDIA DRIVERS FOR STM32 - DCMI
11103 M:      Hugues Fruchet <hugues.fruchet@st.com>
11104 L:      linux-media@vger.kernel.org
11105 S:      Supported
11106 T:      git git://linuxtv.org/media_tree.git
11107 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11108 F:      drivers/media/platform/stm32/stm32-dcmi.c
11109
11110 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11111 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11112 L:      linux-media@vger.kernel.org
11113 S:      Maintained
11114 W:      https://linuxtv.org
11115 Q:      http://patchwork.kernel.org/project/linux-media/list/
11116 T:      git git://linuxtv.org/media_tree.git
11117 F:      Documentation/admin-guide/media/
11118 F:      Documentation/devicetree/bindings/media/
11119 F:      Documentation/driver-api/media/
11120 F:      Documentation/userspace-api/media/
11121 F:      drivers/media/
11122 F:      drivers/staging/media/
11123 F:      include/linux/platform_data/media/
11124 F:      include/media/
11125 F:      include/uapi/linux/dvb/
11126 F:      include/uapi/linux/ivtv*
11127 F:      include/uapi/linux/media.h
11128 F:      include/uapi/linux/meye.h
11129 F:      include/uapi/linux/uvcvideo.h
11130 F:      include/uapi/linux/v4l2-*
11131 F:      include/uapi/linux/videodev2.h
11132
11133 MEDIATEK BLUETOOTH DRIVER
11134 M:      Sean Wang <sean.wang@mediatek.com>
11135 L:      linux-bluetooth@vger.kernel.org
11136 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11137 S:      Maintained
11138 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11139 F:      drivers/bluetooth/btmtkuart.c
11140
11141 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11142 M:      Sean Wang <sean.wang@mediatek.com>
11143 L:      linux-pm@vger.kernel.org
11144 S:      Maintained
11145 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11146 F:      drivers/power/reset/mt6323-poweroff.c
11147
11148 MEDIATEK CIR DRIVER
11149 M:      Sean Wang <sean.wang@mediatek.com>
11150 S:      Maintained
11151 F:      drivers/media/rc/mtk-cir.c
11152
11153 MEDIATEK DMA DRIVER
11154 M:      Sean Wang <sean.wang@mediatek.com>
11155 L:      dmaengine@vger.kernel.org
11156 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11157 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11158 S:      Maintained
11159 F:      Documentation/devicetree/bindings/dma/mtk-*
11160 F:      drivers/dma/mediatek/
11161
11162 MEDIATEK ETHERNET DRIVER
11163 M:      Felix Fietkau <nbd@nbd.name>
11164 M:      John Crispin <john@phrozen.org>
11165 M:      Sean Wang <sean.wang@mediatek.com>
11166 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11167 L:      netdev@vger.kernel.org
11168 S:      Maintained
11169 F:      drivers/net/ethernet/mediatek/
11170
11171 MEDIATEK I2C CONTROLLER DRIVER
11172 M:      Qii Wang <qii.wang@mediatek.com>
11173 L:      linux-i2c@vger.kernel.org
11174 S:      Maintained
11175 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11176 F:      drivers/i2c/busses/i2c-mt65xx.c
11177
11178 MEDIATEK IOMMU DRIVER
11179 M:      Yong Wu <yong.wu@mediatek.com>
11180 L:      iommu@lists.linux-foundation.org
11181 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11182 S:      Supported
11183 F:      Documentation/devicetree/bindings/iommu/mediatek*
11184 F:      drivers/iommu/mtk_iommu*
11185 F:      include/dt-bindings/memory/mt*-port.h
11186
11187 MEDIATEK JPEG DRIVER
11188 M:      Rick Chang <rick.chang@mediatek.com>
11189 M:      Bin Liu <bin.liu@mediatek.com>
11190 S:      Supported
11191 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11192 F:      drivers/media/platform/mtk-jpeg/
11193
11194 MEDIATEK MDP DRIVER
11195 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11196 M:      Houlong Wei <houlong.wei@mediatek.com>
11197 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11198 S:      Supported
11199 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11200 F:      drivers/media/platform/mtk-mdp/
11201 F:      drivers/media/platform/mtk-vpu/
11202
11203 MEDIATEK MEDIA DRIVER
11204 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11205 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11206 S:      Supported
11207 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11208 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11209 F:      drivers/media/platform/mtk-vcodec/
11210 F:      drivers/media/platform/mtk-vpu/
11211
11212 MEDIATEK MMC/SD/SDIO DRIVER
11213 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11214 S:      Maintained
11215 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
11216 F:      drivers/mmc/host/mtk-sd.c
11217
11218 MEDIATEK MT76 WIRELESS LAN DRIVER
11219 M:      Felix Fietkau <nbd@nbd.name>
11220 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11221 R:      Ryder Lee <ryder.lee@mediatek.com>
11222 L:      linux-wireless@vger.kernel.org
11223 S:      Maintained
11224 F:      drivers/net/wireless/mediatek/mt76/
11225
11226 MEDIATEK MT7601U WIRELESS LAN DRIVER
11227 M:      Jakub Kicinski <kubakici@wp.pl>
11228 L:      linux-wireless@vger.kernel.org
11229 S:      Maintained
11230 F:      drivers/net/wireless/mediatek/mt7601u/
11231
11232 MEDIATEK MT7621/28/88 I2C DRIVER
11233 M:      Stefan Roese <sr@denx.de>
11234 L:      linux-i2c@vger.kernel.org
11235 S:      Maintained
11236 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11237 F:      drivers/i2c/busses/i2c-mt7621.c
11238
11239 MEDIATEK MT7621 PHY PCI DRIVER
11240 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11241 S:      Maintained
11242 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11243 F:      drivers/phy/ralink/phy-mt7621-pci.c
11244
11245 MEDIATEK NAND CONTROLLER DRIVER
11246 L:      linux-mtd@lists.infradead.org
11247 S:      Orphan
11248 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11249 F:      drivers/mtd/nand/raw/mtk_*
11250
11251 MEDIATEK PMIC LED DRIVER
11252 M:      Sean Wang <sean.wang@mediatek.com>
11253 S:      Maintained
11254 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11255 F:      drivers/leds/leds-mt6323.c
11256
11257 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11258 M:      Sean Wang <sean.wang@mediatek.com>
11259 S:      Maintained
11260 F:      drivers/char/hw_random/mtk-rng.c
11261
11262 MEDIATEK SWITCH DRIVER
11263 M:      Sean Wang <sean.wang@mediatek.com>
11264 M:      Landen Chao <Landen.Chao@mediatek.com>
11265 L:      netdev@vger.kernel.org
11266 S:      Maintained
11267 F:      drivers/net/dsa/mt7530.*
11268 F:      net/dsa/tag_mtk.c
11269
11270 MEDIATEK USB3 DRD IP DRIVER
11271 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
11272 L:      linux-usb@vger.kernel.org
11273 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11274 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11275 S:      Maintained
11276 F:      Documentation/devicetree/bindings/usb/mediatek,*
11277 F:      drivers/usb/host/xhci-mtk*
11278 F:      drivers/usb/mtu3/
11279
11280 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11281 M:      Peter Senna Tschudin <peter.senna@gmail.com>
11282 M:      Martin Donnelly <martin.donnelly@ge.com>
11283 M:      Martyn Welch <martyn.welch@collabora.co.uk>
11284 S:      Maintained
11285 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11286 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11287
11288 MEGARAID SCSI/SAS DRIVERS
11289 M:      Kashyap Desai <kashyap.desai@broadcom.com>
11290 M:      Sumit Saxena <sumit.saxena@broadcom.com>
11291 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11292 L:      megaraidlinux.pdl@broadcom.com
11293 L:      linux-scsi@vger.kernel.org
11294 S:      Maintained
11295 W:      http://www.avagotech.com/support/
11296 F:      Documentation/scsi/megaraid.rst
11297 F:      drivers/scsi/megaraid.*
11298 F:      drivers/scsi/megaraid/
11299
11300 MELEXIS MLX90614 DRIVER
11301 M:      Crt Mori <cmo@melexis.com>
11302 L:      linux-iio@vger.kernel.org
11303 S:      Supported
11304 W:      http://www.melexis.com
11305 F:      drivers/iio/temperature/mlx90614.c
11306
11307 MELEXIS MLX90632 DRIVER
11308 M:      Crt Mori <cmo@melexis.com>
11309 L:      linux-iio@vger.kernel.org
11310 S:      Supported
11311 W:      http://www.melexis.com
11312 F:      drivers/iio/temperature/mlx90632.c
11313
11314 MELFAS MIP4 TOUCHSCREEN DRIVER
11315 M:      Sangwon Jee <jeesw@melfas.com>
11316 S:      Supported
11317 W:      http://www.melfas.com
11318 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11319 F:      drivers/input/touchscreen/melfas_mip4.c
11320
11321 MELLANOX BLUEFIELD I2C DRIVER
11322 M:      Khalil Blaiech <kblaiech@nvidia.com>
11323 L:      linux-i2c@vger.kernel.org
11324 S:      Supported
11325 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
11326 F:      drivers/i2c/busses/i2c-mlxbf.c
11327
11328 MELLANOX ETHERNET DRIVER (mlx4_en)
11329 M:      Tariq Toukan <tariqt@nvidia.com>
11330 L:      netdev@vger.kernel.org
11331 S:      Supported
11332 W:      http://www.mellanox.com
11333 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11334 F:      drivers/net/ethernet/mellanox/mlx4/en_*
11335
11336 MELLANOX ETHERNET DRIVER (mlx5e)
11337 M:      Saeed Mahameed <saeedm@nvidia.com>
11338 L:      netdev@vger.kernel.org
11339 S:      Supported
11340 W:      http://www.mellanox.com
11341 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11342 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
11343
11344 MELLANOX ETHERNET INNOVA DRIVERS
11345 R:      Boris Pismenny <borisp@nvidia.com>
11346 L:      netdev@vger.kernel.org
11347 S:      Supported
11348 W:      http://www.mellanox.com
11349 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11350 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
11351 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11352 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11353 F:      include/linux/mlx5/mlx5_ifc_fpga.h
11354
11355 MELLANOX ETHERNET SWITCH DRIVERS
11356 M:      Jiri Pirko <jiri@nvidia.com>
11357 M:      Ido Schimmel <idosch@nvidia.com>
11358 L:      netdev@vger.kernel.org
11359 S:      Supported
11360 W:      http://www.mellanox.com
11361 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11362 F:      drivers/net/ethernet/mellanox/mlxsw/
11363 F:      tools/testing/selftests/drivers/net/mlxsw/
11364
11365 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11366 M:      mlxsw@nvidia.com
11367 L:      netdev@vger.kernel.org
11368 S:      Supported
11369 W:      http://www.mellanox.com
11370 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11371 F:      drivers/net/ethernet/mellanox/mlxfw/
11372
11373 MELLANOX HARDWARE PLATFORM SUPPORT
11374 M:      Andy Shevchenko <andy@infradead.org>
11375 M:      Darren Hart <dvhart@infradead.org>
11376 M:      Vadim Pasternak <vadimp@nvidia.com>
11377 L:      platform-driver-x86@vger.kernel.org
11378 S:      Supported
11379 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11380 F:      drivers/platform/mellanox/
11381 F:      include/linux/platform_data/mlxreg.h
11382
11383 MELLANOX MLX4 core VPI driver
11384 M:      Tariq Toukan <tariqt@nvidia.com>
11385 L:      netdev@vger.kernel.org
11386 L:      linux-rdma@vger.kernel.org
11387 S:      Supported
11388 W:      http://www.mellanox.com
11389 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11390 F:      drivers/net/ethernet/mellanox/mlx4/
11391 F:      include/linux/mlx4/
11392
11393 MELLANOX MLX4 IB driver
11394 M:      Yishai Hadas <yishaih@nvidia.com>
11395 L:      linux-rdma@vger.kernel.org
11396 S:      Supported
11397 W:      http://www.mellanox.com
11398 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11399 F:      drivers/infiniband/hw/mlx4/
11400 F:      include/linux/mlx4/
11401 F:      include/uapi/rdma/mlx4-abi.h
11402
11403 MELLANOX MLX5 core VPI driver
11404 M:      Saeed Mahameed <saeedm@nvidia.com>
11405 M:      Leon Romanovsky <leonro@nvidia.com>
11406 L:      netdev@vger.kernel.org
11407 L:      linux-rdma@vger.kernel.org
11408 S:      Supported
11409 W:      http://www.mellanox.com
11410 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11411 F:      Documentation/networking/device_drivers/ethernet/mellanox/
11412 F:      drivers/net/ethernet/mellanox/mlx5/core/
11413 F:      include/linux/mlx5/
11414
11415 MELLANOX MLX5 IB driver
11416 M:      Leon Romanovsky <leonro@nvidia.com>
11417 L:      linux-rdma@vger.kernel.org
11418 S:      Supported
11419 W:      http://www.mellanox.com
11420 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11421 F:      drivers/infiniband/hw/mlx5/
11422 F:      include/linux/mlx5/
11423 F:      include/uapi/rdma/mlx5-abi.h
11424
11425 MELLANOX MLXCPLD I2C AND MUX DRIVER
11426 M:      Vadim Pasternak <vadimp@nvidia.com>
11427 M:      Michael Shych <michaelsh@nvidia.com>
11428 L:      linux-i2c@vger.kernel.org
11429 S:      Supported
11430 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11431 F:      drivers/i2c/busses/i2c-mlxcpld.c
11432 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11433
11434 MELLANOX MLXCPLD LED DRIVER
11435 M:      Vadim Pasternak <vadimp@nvidia.com>
11436 L:      linux-leds@vger.kernel.org
11437 S:      Supported
11438 F:      Documentation/leds/leds-mlxcpld.rst
11439 F:      drivers/leds/leds-mlxcpld.c
11440 F:      drivers/leds/leds-mlxreg.c
11441
11442 MELLANOX PLATFORM DRIVER
11443 M:      Vadim Pasternak <vadimp@nvidia.com>
11444 L:      platform-driver-x86@vger.kernel.org
11445 S:      Supported
11446 F:      drivers/platform/x86/mlx-platform.c
11447
11448 MEMBARRIER SUPPORT
11449 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11450 M:      "Paul E. McKenney" <paulmck@kernel.org>
11451 L:      linux-kernel@vger.kernel.org
11452 S:      Supported
11453 F:      arch/powerpc/include/asm/membarrier.h
11454 F:      include/uapi/linux/membarrier.h
11455 F:      kernel/sched/membarrier.c
11456
11457 MEMBLOCK
11458 M:      Mike Rapoport <rppt@linux.ibm.com>
11459 L:      linux-mm@kvack.org
11460 S:      Maintained
11461 F:      Documentation/core-api/boot-time-mm.rst
11462 F:      include/linux/memblock.h
11463 F:      mm/memblock.c
11464
11465 MEMORY CONTROLLER DRIVERS
11466 M:      Krzysztof Kozlowski <krzk@kernel.org>
11467 L:      linux-kernel@vger.kernel.org
11468 S:      Maintained
11469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
11470 F:      Documentation/devicetree/bindings/memory-controllers/
11471 F:      drivers/memory/
11472 F:      include/dt-bindings/memory/
11473
11474 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
11475 M:      Dmitry Osipenko <digetx@gmail.com>
11476 L:      linux-pm@vger.kernel.org
11477 L:      linux-tegra@vger.kernel.org
11478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
11479 S:      Maintained
11480 F:      drivers/devfreq/tegra30-devfreq.c
11481
11482 MEMORY MANAGEMENT
11483 M:      Andrew Morton <akpm@linux-foundation.org>
11484 L:      linux-mm@kvack.org
11485 S:      Maintained
11486 W:      http://www.linux-mm.org
11487 T:      quilt https://ozlabs.org/~akpm/mmotm/
11488 T:      quilt https://ozlabs.org/~akpm/mmots/
11489 T:      git git://github.com/hnaz/linux-mm.git
11490 F:      include/linux/gfp.h
11491 F:      include/linux/memory_hotplug.h
11492 F:      include/linux/mm.h
11493 F:      include/linux/mmzone.h
11494 F:      include/linux/vmalloc.h
11495 F:      mm/
11496
11497 MEMORY TECHNOLOGY DEVICES (MTD)
11498 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11499 M:      Richard Weinberger <richard@nod.at>
11500 M:      Vignesh Raghavendra <vigneshr@ti.com>
11501 L:      linux-mtd@lists.infradead.org
11502 S:      Maintained
11503 W:      http://www.linux-mtd.infradead.org/
11504 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11505 C:      irc://irc.oftc.net/mtd
11506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11508 F:      Documentation/devicetree/bindings/mtd/
11509 F:      drivers/mtd/
11510 F:      include/linux/mtd/
11511 F:      include/uapi/mtd/
11512
11513 MEN A21 WATCHDOG DRIVER
11514 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11515 L:      linux-watchdog@vger.kernel.org
11516 S:      Maintained
11517 F:      drivers/watchdog/mena21_wdt.c
11518
11519 MEN CHAMELEON BUS (mcb)
11520 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11521 S:      Maintained
11522 F:      Documentation/driver-api/men-chameleon-bus.rst
11523 F:      drivers/mcb/
11524 F:      include/linux/mcb.h
11525
11526 MEN F21BMC (Board Management Controller)
11527 M:      Andreas Werner <andreas.werner@men.de>
11528 S:      Supported
11529 F:      Documentation/hwmon/menf21bmc.rst
11530 F:      drivers/hwmon/menf21bmc_hwmon.c
11531 F:      drivers/leds/leds-menf21bmc.c
11532 F:      drivers/mfd/menf21bmc.c
11533 F:      drivers/watchdog/menf21bmc_wdt.c
11534
11535 MEN Z069 WATCHDOG DRIVER
11536 M:      Johannes Thumshirn <jth@kernel.org>
11537 L:      linux-watchdog@vger.kernel.org
11538 S:      Maintained
11539 F:      drivers/watchdog/menz69_wdt.c
11540
11541 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11542 M:      Neil Armstrong <narmstrong@baylibre.com>
11543 L:      linux-media@vger.kernel.org
11544 L:      linux-amlogic@lists.infradead.org
11545 S:      Supported
11546 W:      http://linux-meson.com/
11547 T:      git git://linuxtv.org/media_tree.git
11548 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11549 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
11550 F:      drivers/media/cec/platform/meson/ao-cec.c
11551
11552 MESON GE2D DRIVER FOR AMLOGIC SOCS
11553 M:      Neil Armstrong <narmstrong@baylibre.com>
11554 L:      linux-media@vger.kernel.org
11555 L:      linux-amlogic@lists.infradead.org
11556 S:      Supported
11557 T:      git git://linuxtv.org/media_tree.git
11558 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
11559 F:      drivers/media/platform/meson/ge2d/
11560
11561 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11562 M:      Liang Yang <liang.yang@amlogic.com>
11563 L:      linux-mtd@lists.infradead.org
11564 S:      Maintained
11565 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11566 F:      drivers/mtd/nand/raw/meson_*
11567
11568 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11569 M:      Neil Armstrong <narmstrong@baylibre.com>
11570 L:      linux-media@vger.kernel.org
11571 L:      linux-amlogic@lists.infradead.org
11572 S:      Supported
11573 T:      git git://linuxtv.org/media_tree.git
11574 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11575 F:      drivers/staging/media/meson/vdec/
11576
11577 METHODE UDPU SUPPORT
11578 M:      Vladimir Vid <vladimir.vid@sartura.hr>
11579 S:      Maintained
11580 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11581
11582 MHI BUS
11583 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11584 M:      Hemant Kumar <hemantk@codeaurora.org>
11585 L:      linux-arm-msm@vger.kernel.org
11586 S:      Maintained
11587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11588 F:      Documentation/ABI/stable/sysfs-bus-mhi
11589 F:      Documentation/mhi/
11590 F:      drivers/bus/mhi/
11591 F:      include/linux/mhi.h
11592
11593 MICROBLAZE ARCHITECTURE
11594 M:      Michal Simek <monstr@monstr.eu>
11595 S:      Supported
11596 W:      http://www.monstr.eu/fdt/
11597 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11598 F:      arch/microblaze/
11599
11600 MICROCHIP AT91 DMA DRIVERS
11601 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11602 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11603 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11604 L:      dmaengine@vger.kernel.org
11605 S:      Supported
11606 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11607 F:      drivers/dma/at_hdmac.c
11608 F:      drivers/dma/at_hdmac_regs.h
11609 F:      drivers/dma/at_xdmac.c
11610 F:      include/dt-bindings/dma/at91.h
11611 F:      include/linux/platform_data/dma-atmel.h
11612
11613 MICROCHIP AT91 SERIAL DRIVER
11614 M:      Richard Genoud <richard.genoud@gmail.com>
11615 S:      Maintained
11616 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11617 F:      drivers/tty/serial/atmel_serial.c
11618 F:      drivers/tty/serial/atmel_serial.h
11619
11620 MICROCHIP AT91 USART MFD DRIVER
11621 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11622 L:      linux-kernel@vger.kernel.org
11623 S:      Supported
11624 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11625 F:      drivers/mfd/at91-usart.c
11626 F:      include/dt-bindings/mfd/at91-usart.h
11627
11628 MICROCHIP AT91 USART SPI DRIVER
11629 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11630 L:      linux-spi@vger.kernel.org
11631 S:      Supported
11632 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11633 F:      drivers/spi/spi-at91-usart.c
11634
11635 MICROCHIP AUDIO ASOC DRIVERS
11636 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11637 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11638 S:      Supported
11639 F:      sound/soc/atmel
11640
11641 MICROCHIP ECC DRIVER
11642 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11643 L:      linux-crypto@vger.kernel.org
11644 S:      Maintained
11645 F:      drivers/crypto/atmel-ecc.*
11646
11647 MICROCHIP I2C DRIVER
11648 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11649 L:      linux-i2c@vger.kernel.org
11650 S:      Supported
11651 F:      drivers/i2c/busses/i2c-at91-*.c
11652 F:      drivers/i2c/busses/i2c-at91.h
11653
11654 MICROCHIP ISC DRIVER
11655 M:      Eugen Hristev <eugen.hristev@microchip.com>
11656 L:      linux-media@vger.kernel.org
11657 S:      Supported
11658 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11659 F:      drivers/media/platform/atmel/atmel-isc-base.c
11660 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11661 F:      drivers/media/platform/atmel/atmel-isc.h
11662 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11663 F:      include/linux/atmel-isc-media.h
11664
11665 MICROCHIP ISI DRIVER
11666 M:      Eugen Hristev <eugen.hristev@microchip.com>
11667 L:      linux-media@vger.kernel.org
11668 S:      Supported
11669 F:      drivers/media/platform/atmel/atmel-isi.c
11670 F:      drivers/media/platform/atmel/atmel-isi.h
11671
11672 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11673 M:      Woojung Huh <woojung.huh@microchip.com>
11674 M:      UNGLinuxDriver@microchip.com
11675 L:      netdev@vger.kernel.org
11676 S:      Maintained
11677 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
11678 F:      drivers/net/dsa/microchip/*
11679 F:      include/linux/platform_data/microchip-ksz.h
11680 F:      net/dsa/tag_ksz.c
11681
11682 MICROCHIP LAN743X ETHERNET DRIVER
11683 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
11684 M:      UNGLinuxDriver@microchip.com
11685 L:      netdev@vger.kernel.org
11686 S:      Maintained
11687 F:      drivers/net/ethernet/microchip/lan743x_*
11688
11689 MICROCHIP LCDFB DRIVER
11690 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11691 L:      linux-fbdev@vger.kernel.org
11692 S:      Maintained
11693 F:      drivers/video/fbdev/atmel_lcdfb.c
11694 F:      include/video/atmel_lcdc.h
11695
11696 MICROCHIP MCP16502 PMIC DRIVER
11697 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11698 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11699 S:      Supported
11700 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11701 F:      drivers/regulator/mcp16502.c
11702
11703 MICROCHIP MCP3911 ADC DRIVER
11704 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11705 M:      Kent Gustavsson <kent@minoris.se>
11706 L:      linux-iio@vger.kernel.org
11707 S:      Supported
11708 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11709 F:      drivers/iio/adc/mcp3911.c
11710
11711 MICROCHIP MMC/SD/SDIO MCI DRIVER
11712 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11713 S:      Maintained
11714 F:      drivers/mmc/host/atmel-mci.c
11715
11716 MICROCHIP NAND DRIVER
11717 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11718 L:      linux-mtd@lists.infradead.org
11719 S:      Supported
11720 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11721 F:      drivers/mtd/nand/raw/atmel/*
11722
11723 MICROCHIP PWM DRIVER
11724 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11725 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11726 L:      linux-pwm@vger.kernel.org
11727 S:      Supported
11728 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11729 F:      drivers/pwm/pwm-atmel.c
11730
11731 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11732 M:      Eugen Hristev <eugen.hristev@microchip.com>
11733 L:      linux-iio@vger.kernel.org
11734 S:      Supported
11735 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11736 F:      drivers/iio/adc/at91-sama5d2_adc.c
11737 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11738
11739 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11740 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11741 S:      Supported
11742 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11743
11744 MICROCHIP SPI DRIVER
11745 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11746 S:      Supported
11747 F:      drivers/spi/spi-atmel.*
11748
11749 MICROCHIP SSC DRIVER
11750 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11751 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11752 S:      Supported
11753 F:      drivers/misc/atmel-ssc.c
11754 F:      include/linux/atmel-ssc.h
11755
11756 MICROCHIP USB251XB DRIVER
11757 M:      Richard Leitner <richard.leitner@skidata.com>
11758 L:      linux-usb@vger.kernel.org
11759 S:      Maintained
11760 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11761 F:      drivers/usb/misc/usb251xb.c
11762
11763 MICROCHIP USBA UDC DRIVER
11764 M:      Cristian Birsan <cristian.birsan@microchip.com>
11765 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11766 S:      Supported
11767 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11768
11769 MICROCHIP WILC1000 WIFI DRIVER
11770 M:      Ajay Singh <ajay.kathat@microchip.com>
11771 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11772 L:      linux-wireless@vger.kernel.org
11773 S:      Supported
11774 F:      drivers/net/wireless/microchip/wilc1000/
11775
11776 MICROSEMI MIPS SOCS
11777 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11778 M:      UNGLinuxDriver@microchip.com
11779 L:      linux-mips@vger.kernel.org
11780 S:      Supported
11781 F:      Documentation/devicetree/bindings/mips/mscc.txt
11782 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
11783 F:      arch/mips/boot/dts/mscc/
11784 F:      arch/mips/configs/generic/board-ocelot.config
11785 F:      arch/mips/generic/board-ocelot.c
11786
11787 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11788 M:      Don Brace <don.brace@microchip.com>
11789 L:      storagedev@microchip.com
11790 L:      linux-scsi@vger.kernel.org
11791 S:      Supported
11792 F:      Documentation/scsi/smartpqi.rst
11793 F:      drivers/scsi/smartpqi/Kconfig
11794 F:      drivers/scsi/smartpqi/Makefile
11795 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11796 F:      include/linux/cciss*.h
11797 F:      include/uapi/linux/cciss*.h
11798
11799 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
11800 M:      Maximilian Luz <luzmaximilian@gmail.com>
11801 L:      platform-driver-x86@vger.kernel.org
11802 S:      Maintained
11803 F:      drivers/platform/surface/surface_gpe.c
11804
11805 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
11806 M:      Hans de Goede <hdegoede@redhat.com>
11807 M:      Mark Gross <mgross@linux.intel.com>
11808 M:      Maximilian Luz <luzmaximilian@gmail.com>
11809 L:      platform-driver-x86@vger.kernel.org
11810 S:      Maintained
11811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
11812 F:      drivers/platform/surface/
11813
11814 MICROSOFT SURFACE HOT-PLUG DRIVER
11815 M:      Maximilian Luz <luzmaximilian@gmail.com>
11816 L:      platform-driver-x86@vger.kernel.org
11817 S:      Maintained
11818 F:      drivers/platform/surface/surface_hotplug.c
11819
11820 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11821 M:      Chen Yu <yu.c.chen@intel.com>
11822 L:      platform-driver-x86@vger.kernel.org
11823 S:      Supported
11824 F:      drivers/platform/surface/surfacepro3_button.c
11825
11826 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
11827 M:      Maximilian Luz <luzmaximilian@gmail.com>
11828 S:      Maintained
11829 W:      https://github.com/linux-surface/surface-aggregator-module
11830 C:      irc://chat.freenode.net/##linux-surface
11831 F:      Documentation/driver-api/surface_aggregator/
11832 F:      drivers/platform/surface/aggregator/
11833 F:      drivers/platform/surface/surface_acpi_notify.c
11834 F:      drivers/platform/surface/surface_aggregator_cdev.c
11835 F:      include/linux/surface_acpi_notify.h
11836 F:      include/linux/surface_aggregator/
11837 F:      include/uapi/linux/surface_aggregator/
11838
11839 MICROTEK X6 SCANNER
11840 M:      Oliver Neukum <oliver@neukum.org>
11841 S:      Maintained
11842 F:      drivers/usb/image/microtek.*
11843
11844 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
11845 M:      Luka Kovacic <luka.kovacic@sartura.hr>
11846 M:      Luka Perkov <luka.perkov@sartura.hr>
11847 S:      Maintained
11848 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
11849 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
11850 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
11851 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
11852 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
11853 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
11854
11855 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
11856 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11857 L:      linux-media@vger.kernel.org
11858 S:      Maintained
11859 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
11860 F:      Documentation/driver-api/media/drivers/ccs/
11861 F:      Documentation/userspace-api/media/drivers/ccs.rst
11862 F:      drivers/media/i2c/ccs-pll.c
11863 F:      drivers/media/i2c/ccs-pll.h
11864 F:      drivers/media/i2c/ccs/
11865 F:      include/uapi/linux/ccs.h
11866 F:      include/uapi/linux/smiapp.h
11867
11868 MIPS
11869 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11870 L:      linux-mips@vger.kernel.org
11871 S:      Maintained
11872 W:      http://www.linux-mips.org/
11873 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11875 F:      Documentation/devicetree/bindings/mips/
11876 F:      Documentation/mips/
11877 F:      arch/mips/
11878 F:      drivers/platform/mips/
11879
11880 MIPS BOSTON DEVELOPMENT BOARD
11881 M:      Paul Burton <paulburton@kernel.org>
11882 L:      linux-mips@vger.kernel.org
11883 S:      Maintained
11884 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11885 F:      arch/mips/boot/dts/img/boston.dts
11886 F:      arch/mips/configs/generic/board-boston.config
11887 F:      drivers/clk/imgtec/clk-boston.c
11888 F:      include/dt-bindings/clock/boston-clock.h
11889
11890 MIPS CORE DRIVERS
11891 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11892 M:      Serge Semin <fancer.lancer@gmail.com>
11893 L:      linux-mips@vger.kernel.org
11894 S:      Supported
11895 F:      drivers/bus/mips_cdmm.c
11896 F:      drivers/clocksource/mips-gic-timer.c
11897 F:      drivers/cpuidle/cpuidle-cps.c
11898 F:      drivers/irqchip/irq-mips-cpu.c
11899 F:      drivers/irqchip/irq-mips-gic.c
11900
11901 MIPS GENERIC PLATFORM
11902 M:      Paul Burton <paulburton@kernel.org>
11903 L:      linux-mips@vger.kernel.org
11904 S:      Supported
11905 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
11906 F:      arch/mips/generic/
11907 F:      arch/mips/tools/generic-board-config.sh
11908
11909 MIPS RINT INSTRUCTION EMULATION
11910 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
11911 L:      linux-mips@vger.kernel.org
11912 S:      Supported
11913 F:      arch/mips/math-emu/dp_rint.c
11914 F:      arch/mips/math-emu/sp_rint.c
11915
11916 MIPS/LOONGSON1 ARCHITECTURE
11917 M:      Keguang Zhang <keguang.zhang@gmail.com>
11918 L:      linux-mips@vger.kernel.org
11919 S:      Maintained
11920 F:      arch/mips/include/asm/mach-loongson32/
11921 F:      arch/mips/loongson32/
11922 F:      drivers/*/*/*loongson1*
11923 F:      drivers/*/*loongson1*
11924
11925 MIPS/LOONGSON2EF ARCHITECTURE
11926 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11927 L:      linux-mips@vger.kernel.org
11928 S:      Maintained
11929 F:      arch/mips/include/asm/mach-loongson2ef/
11930 F:      arch/mips/loongson2ef/
11931 F:      drivers/cpufreq/loongson2_cpufreq.c
11932
11933 MIPS/LOONGSON64 ARCHITECTURE
11934 M:      Huacai Chen <chenhuacai@kernel.org>
11935 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11936 L:      linux-mips@vger.kernel.org
11937 S:      Maintained
11938 F:      arch/mips/include/asm/mach-loongson64/
11939 F:      arch/mips/loongson64/
11940 F:      drivers/irqchip/irq-loongson*
11941 F:      drivers/platform/mips/cpu_hwmon.c
11942
11943 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11944 M:      Hans Verkuil <hverkuil@xs4all.nl>
11945 L:      linux-media@vger.kernel.org
11946 S:      Odd Fixes
11947 W:      https://linuxtv.org
11948 T:      git git://linuxtv.org/media_tree.git
11949 F:      drivers/media/radio/radio-miropcm20*
11950
11951 MMP SUPPORT
11952 R:      Lubomir Rintel <lkundrak@v3.sk>
11953 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11954 S:      Odd Fixes
11955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11956 F:      arch/arm/boot/dts/mmp*
11957 F:      arch/arm/mach-mmp/
11958 F:      include/linux/soc/mmp/
11959
11960 MMP USB PHY DRIVERS
11961 R:      Lubomir Rintel <lkundrak@v3.sk>
11962 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11963 S:      Maintained
11964 F:      drivers/phy/marvell/phy-mmp3-usb.c
11965 F:      drivers/phy/marvell/phy-pxa-usb.c
11966
11967 MMU GATHER AND TLB INVALIDATION
11968 M:      Will Deacon <will@kernel.org>
11969 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
11970 M:      Andrew Morton <akpm@linux-foundation.org>
11971 M:      Nick Piggin <npiggin@gmail.com>
11972 M:      Peter Zijlstra <peterz@infradead.org>
11973 L:      linux-arch@vger.kernel.org
11974 L:      linux-mm@kvack.org
11975 S:      Maintained
11976 F:      arch/*/include/asm/tlb.h
11977 F:      include/asm-generic/tlb.h
11978 F:      mm/mmu_gather.c
11979
11980 MN88472 MEDIA DRIVER
11981 M:      Antti Palosaari <crope@iki.fi>
11982 L:      linux-media@vger.kernel.org
11983 S:      Maintained
11984 W:      https://linuxtv.org
11985 W:      http://palosaari.fi/linux/
11986 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11987 F:      drivers/media/dvb-frontends/mn88472*
11988
11989 MN88473 MEDIA DRIVER
11990 M:      Antti Palosaari <crope@iki.fi>
11991 L:      linux-media@vger.kernel.org
11992 S:      Maintained
11993 W:      https://linuxtv.org
11994 W:      http://palosaari.fi/linux/
11995 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11996 F:      drivers/media/dvb-frontends/mn88473*
11997
11998 MODULE SUPPORT
11999 M:      Jessica Yu <jeyu@kernel.org>
12000 S:      Maintained
12001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12002 F:      include/linux/module.h
12003 F:      kernel/module.c
12004
12005 MONOLITHIC POWER SYSTEM PMIC DRIVER
12006 M:      Saravanan Sekar <sravanhome@gmail.com>
12007 S:      Maintained
12008 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12009 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12010 F:      drivers/iio/adc/mp2629_adc.c
12011 F:      drivers/mfd/mp2629.c
12012 F:      drivers/power/supply/mp2629_charger.c
12013 F:      drivers/regulator/mp5416.c
12014 F:      drivers/regulator/mpq7920.c
12015 F:      drivers/regulator/mpq7920.h
12016 F:      include/linux/mfd/mp2629.h
12017
12018 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12019 S:      Orphan
12020 W:      http://popies.net/meye/
12021 F:      Documentation/userspace-api/media/drivers/meye*
12022 F:      drivers/media/pci/meye/
12023 F:      include/uapi/linux/meye.h
12024
12025 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12026 M:      Jiri Slaby <jirislaby@kernel.org>
12027 S:      Maintained
12028 F:      Documentation/driver-api/serial/moxa-smartio.rst
12029 F:      drivers/tty/mxser.*
12030
12031 MR800 AVERMEDIA USB FM RADIO DRIVER
12032 M:      Alexey Klimov <klimov.linux@gmail.com>
12033 L:      linux-media@vger.kernel.org
12034 S:      Maintained
12035 T:      git git://linuxtv.org/media_tree.git
12036 F:      drivers/media/radio/radio-mr800.c
12037
12038 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12039 M:      Alan Ott <alan@signal11.us>
12040 L:      linux-wpan@vger.kernel.org
12041 S:      Maintained
12042 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12043 F:      drivers/net/ieee802154/mrf24j40.c
12044
12045 MSI LAPTOP SUPPORT
12046 M:      "Lee, Chun-Yi" <jlee@suse.com>
12047 L:      platform-driver-x86@vger.kernel.org
12048 S:      Maintained
12049 F:      drivers/platform/x86/msi-laptop.c
12050
12051 MSI WMI SUPPORT
12052 L:      platform-driver-x86@vger.kernel.org
12053 S:      Orphan
12054 F:      drivers/platform/x86/msi-wmi.c
12055
12056 MSI001 MEDIA DRIVER
12057 M:      Antti Palosaari <crope@iki.fi>
12058 L:      linux-media@vger.kernel.org
12059 S:      Maintained
12060 W:      https://linuxtv.org
12061 W:      http://palosaari.fi/linux/
12062 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12063 T:      git git://linuxtv.org/anttip/media_tree.git
12064 F:      drivers/media/tuners/msi001*
12065
12066 MSI2500 MEDIA DRIVER
12067 M:      Antti Palosaari <crope@iki.fi>
12068 L:      linux-media@vger.kernel.org
12069 S:      Maintained
12070 W:      https://linuxtv.org
12071 W:      http://palosaari.fi/linux/
12072 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12073 T:      git git://linuxtv.org/anttip/media_tree.git
12074 F:      drivers/media/usb/msi2500/
12075
12076 MSTAR INTERRUPT CONTROLLER DRIVER
12077 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12078 M:      Daniel Palmer <daniel@thingy.jp>
12079 S:      Maintained
12080 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12081 F:      drivers/irqchip/irq-mst-intc.c
12082
12083 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12084 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12085 L:      linux-mtd@lists.infradead.org
12086 S:      Maintained
12087 F:      drivers/mtd/devices/docg3*
12088
12089 MT9M032 APTINA SENSOR DRIVER
12090 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12091 L:      linux-media@vger.kernel.org
12092 S:      Maintained
12093 T:      git git://linuxtv.org/media_tree.git
12094 F:      drivers/media/i2c/mt9m032.c
12095 F:      include/media/i2c/mt9m032.h
12096
12097 MT9P031 APTINA CAMERA SENSOR
12098 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12099 L:      linux-media@vger.kernel.org
12100 S:      Maintained
12101 T:      git git://linuxtv.org/media_tree.git
12102 F:      drivers/media/i2c/mt9p031.c
12103 F:      include/media/i2c/mt9p031.h
12104
12105 MT9T001 APTINA CAMERA SENSOR
12106 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12107 L:      linux-media@vger.kernel.org
12108 S:      Maintained
12109 T:      git git://linuxtv.org/media_tree.git
12110 F:      drivers/media/i2c/mt9t001.c
12111 F:      include/media/i2c/mt9t001.h
12112
12113 MT9T112 APTINA CAMERA SENSOR
12114 M:      Jacopo Mondi <jacopo@jmondi.org>
12115 L:      linux-media@vger.kernel.org
12116 S:      Odd Fixes
12117 T:      git git://linuxtv.org/media_tree.git
12118 F:      drivers/media/i2c/mt9t112.c
12119 F:      include/media/i2c/mt9t112.h
12120
12121 MT9V032 APTINA CAMERA SENSOR
12122 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12123 L:      linux-media@vger.kernel.org
12124 S:      Maintained
12125 T:      git git://linuxtv.org/media_tree.git
12126 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12127 F:      drivers/media/i2c/mt9v032.c
12128 F:      include/media/i2c/mt9v032.h
12129
12130 MT9V111 APTINA CAMERA SENSOR
12131 M:      Jacopo Mondi <jacopo@jmondi.org>
12132 L:      linux-media@vger.kernel.org
12133 S:      Maintained
12134 T:      git git://linuxtv.org/media_tree.git
12135 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12136 F:      drivers/media/i2c/mt9v111.c
12137
12138 MULTIFUNCTION DEVICES (MFD)
12139 M:      Lee Jones <lee.jones@linaro.org>
12140 S:      Supported
12141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12142 F:      Documentation/devicetree/bindings/mfd/
12143 F:      drivers/mfd/
12144 F:      include/dt-bindings/mfd/
12145 F:      include/linux/mfd/
12146
12147 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12148 S:      Orphan
12149 F:      drivers/mmc/host/mmc_spi.c
12150 F:      include/linux/spi/mmc_spi.h
12151
12152 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12153 M:      Ulf Hansson <ulf.hansson@linaro.org>
12154 L:      linux-mmc@vger.kernel.org
12155 S:      Maintained
12156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12157 F:      Documentation/devicetree/bindings/mmc/
12158 F:      drivers/mmc/
12159 F:      include/linux/mmc/
12160 F:      include/uapi/linux/mmc/
12161
12162 MULTIPLEXER SUBSYSTEM
12163 M:      Peter Rosin <peda@axentia.se>
12164 S:      Maintained
12165 F:      Documentation/ABI/testing/sysfs-class-mux*
12166 F:      Documentation/devicetree/bindings/mux/
12167 F:      drivers/mux/
12168 F:      include/dt-bindings/mux/
12169 F:      include/linux/mux/
12170
12171 MULTITECH MULTIPORT CARD (ISICOM)
12172 S:      Orphan
12173 F:      drivers/tty/isicom.c
12174 F:      include/linux/isicom.h
12175
12176 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12177 M:      Bin Liu <b-liu@ti.com>
12178 L:      linux-usb@vger.kernel.org
12179 S:      Maintained
12180 F:      drivers/usb/musb/
12181
12182 MXL301RF MEDIA DRIVER
12183 M:      Akihiro Tsukada <tskd08@gmail.com>
12184 L:      linux-media@vger.kernel.org
12185 S:      Odd Fixes
12186 F:      drivers/media/tuners/mxl301rf*
12187
12188 MXL5007T MEDIA DRIVER
12189 M:      Michael Krufky <mkrufky@linuxtv.org>
12190 L:      linux-media@vger.kernel.org
12191 S:      Maintained
12192 W:      https://linuxtv.org
12193 W:      http://github.com/mkrufky
12194 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12195 T:      git git://linuxtv.org/mkrufky/tuners.git
12196 F:      drivers/media/tuners/mxl5007t.*
12197
12198 MXSFB DRM DRIVER
12199 M:      Marek Vasut <marex@denx.de>
12200 M:      Stefan Agner <stefan@agner.ch>
12201 L:      dri-devel@lists.freedesktop.org
12202 S:      Supported
12203 T:      git git://anongit.freedesktop.org/drm/drm-misc
12204 F:      Documentation/devicetree/bindings/display/mxsfb.txt
12205 F:      drivers/gpu/drm/mxsfb/
12206
12207 MYLEX DAC960 PCI RAID Controller
12208 M:      Hannes Reinecke <hare@kernel.org>
12209 L:      linux-scsi@vger.kernel.org
12210 S:      Supported
12211 F:      drivers/scsi/myrb.*
12212 F:      drivers/scsi/myrs.*
12213
12214 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12215 M:      Chris Lee <christopher.lee@cspi.com>
12216 L:      netdev@vger.kernel.org
12217 S:      Supported
12218 W:      https://www.cspi.com/ethernet-products/support/downloads/
12219 F:      drivers/net/ethernet/myricom/myri10ge/
12220
12221 NAND FLASH SUBSYSTEM
12222 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12223 R:      Richard Weinberger <richard@nod.at>
12224 L:      linux-mtd@lists.infradead.org
12225 S:      Maintained
12226 W:      http://www.linux-mtd.infradead.org/
12227 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12228 C:      irc://irc.oftc.net/mtd
12229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12230 F:      drivers/mtd/nand/
12231 F:      include/linux/mtd/*nand*.h
12232
12233 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12234 M:      Daniel Mack <zonque@gmail.com>
12235 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12236 S:      Maintained
12237 W:      http://www.native-instruments.com
12238 F:      sound/usb/caiaq/
12239
12240 NATSEMI ETHERNET DRIVER (DP8381x)
12241 S:      Orphan
12242 F:      drivers/net/ethernet/natsemi/natsemi.c
12243
12244 NCR 5380 SCSI DRIVERS
12245 M:      Finn Thain <fthain@telegraphics.com.au>
12246 M:      Michael Schmitz <schmitzmic@gmail.com>
12247 L:      linux-scsi@vger.kernel.org
12248 S:      Maintained
12249 F:      Documentation/scsi/g_NCR5380.rst
12250 F:      drivers/scsi/NCR5380.*
12251 F:      drivers/scsi/arm/cumana_1.c
12252 F:      drivers/scsi/arm/oak.c
12253 F:      drivers/scsi/atari_scsi.*
12254 F:      drivers/scsi/dmx3191d.c
12255 F:      drivers/scsi/g_NCR5380.*
12256 F:      drivers/scsi/mac_scsi.*
12257 F:      drivers/scsi/sun3_scsi.*
12258 F:      drivers/scsi/sun3_scsi_vme.c
12259
12260 NCSI LIBRARY
12261 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
12262 S:      Maintained
12263 F:      net/ncsi/
12264
12265 NCT6775 HARDWARE MONITOR DRIVER
12266 M:      Guenter Roeck <linux@roeck-us.net>
12267 L:      linux-hwmon@vger.kernel.org
12268 S:      Maintained
12269 F:      Documentation/hwmon/nct6775.rst
12270 F:      drivers/hwmon/nct6775.c
12271
12272 NETDEVSIM
12273 M:      Jakub Kicinski <kuba@kernel.org>
12274 S:      Maintained
12275 F:      drivers/net/netdevsim/*
12276
12277 NETEM NETWORK EMULATOR
12278 M:      Stephen Hemminger <stephen@networkplumber.org>
12279 L:      netdev@vger.kernel.org
12280 S:      Maintained
12281 F:      net/sched/sch_netem.c
12282
12283 NETERION 10GbE DRIVERS (s2io/vxge)
12284 M:      Jon Mason <jdmason@kudzu.us>
12285 L:      netdev@vger.kernel.org
12286 S:      Supported
12287 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12288 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12289 F:      drivers/net/ethernet/neterion/
12290
12291 NETFILTER
12292 M:      Pablo Neira Ayuso <pablo@netfilter.org>
12293 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
12294 M:      Florian Westphal <fw@strlen.de>
12295 L:      netfilter-devel@vger.kernel.org
12296 L:      coreteam@netfilter.org
12297 S:      Maintained
12298 W:      http://www.netfilter.org/
12299 W:      http://www.iptables.org/
12300 W:      http://www.nftables.org/
12301 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
12302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12304 F:      include/linux/netfilter*
12305 F:      include/linux/netfilter/
12306 F:      include/net/netfilter/
12307 F:      include/uapi/linux/netfilter*
12308 F:      include/uapi/linux/netfilter/
12309 F:      net/*/netfilter.c
12310 F:      net/*/netfilter/
12311 F:      net/bridge/br_netfilter*.c
12312 F:      net/netfilter/
12313
12314 NETROM NETWORK LAYER
12315 M:      Ralf Baechle <ralf@linux-mips.org>
12316 L:      linux-hams@vger.kernel.org
12317 S:      Maintained
12318 W:      http://www.linux-ax25.org/
12319 F:      include/net/netrom.h
12320 F:      include/uapi/linux/netrom.h
12321 F:      net/netrom/
12322
12323 NETRONOME ETHERNET DRIVERS
12324 M:      Simon Horman <simon.horman@netronome.com>
12325 R:      Jakub Kicinski <kuba@kernel.org>
12326 L:      oss-drivers@netronome.com
12327 S:      Maintained
12328 F:      drivers/net/ethernet/netronome/
12329
12330 NETWORK BLOCK DEVICE (NBD)
12331 M:      Josef Bacik <josef@toxicpanda.com>
12332 L:      linux-block@vger.kernel.org
12333 L:      nbd@other.debian.org
12334 S:      Maintained
12335 F:      Documentation/admin-guide/blockdev/nbd.rst
12336 F:      drivers/block/nbd.c
12337 F:      include/trace/events/nbd.h
12338 F:      include/uapi/linux/nbd.h
12339
12340 NETWORK DROP MONITOR
12341 M:      Neil Horman <nhorman@tuxdriver.com>
12342 L:      netdev@vger.kernel.org
12343 S:      Maintained
12344 W:      https://fedorahosted.org/dropwatch/
12345 F:      include/uapi/linux/net_dropmon.h
12346 F:      net/core/drop_monitor.c
12347
12348 NETWORKING DRIVERS
12349 M:      "David S. Miller" <davem@davemloft.net>
12350 M:      Jakub Kicinski <kuba@kernel.org>
12351 L:      netdev@vger.kernel.org
12352 S:      Maintained
12353 W:      http://www.linuxfoundation.org/en/Net
12354 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12357 F:      Documentation/devicetree/bindings/net/
12358 F:      drivers/connector/
12359 F:      drivers/net/
12360 F:      include/linux/etherdevice.h
12361 F:      include/linux/fcdevice.h
12362 F:      include/linux/fddidevice.h
12363 F:      include/linux/hippidevice.h
12364 F:      include/linux/if_*
12365 F:      include/linux/inetdevice.h
12366 F:      include/linux/netdevice.h
12367 F:      include/uapi/linux/if_*
12368 F:      include/uapi/linux/netdevice.h
12369
12370 NETWORKING DRIVERS (WIRELESS)
12371 M:      Kalle Valo <kvalo@codeaurora.org>
12372 L:      linux-wireless@vger.kernel.org
12373 S:      Maintained
12374 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
12376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
12377 F:      Documentation/devicetree/bindings/net/wireless/
12378 F:      drivers/net/wireless/
12379
12380 NETWORKING [DSA]
12381 M:      Andrew Lunn <andrew@lunn.ch>
12382 M:      Vivien Didelot <vivien.didelot@gmail.com>
12383 M:      Florian Fainelli <f.fainelli@gmail.com>
12384 M:      Vladimir Oltean <olteanv@gmail.com>
12385 S:      Maintained
12386 F:      Documentation/devicetree/bindings/net/dsa/
12387 F:      drivers/net/dsa/
12388 F:      include/linux/dsa/
12389 F:      include/linux/platform_data/dsa.h
12390 F:      include/net/dsa.h
12391 F:      net/dsa/
12392
12393 NETWORKING [GENERAL]
12394 M:      "David S. Miller" <davem@davemloft.net>
12395 M:      Jakub Kicinski <kuba@kernel.org>
12396 L:      netdev@vger.kernel.org
12397 S:      Maintained
12398 W:      http://www.linuxfoundation.org/en/Net
12399 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12400 B:      mailto:netdev@vger.kernel.org
12401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12403 F:      Documentation/networking/
12404 F:      include/linux/in.h
12405 F:      include/linux/net.h
12406 F:      include/linux/netdevice.h
12407 F:      include/net/
12408 F:      include/uapi/linux/in.h
12409 F:      include/uapi/linux/net.h
12410 F:      include/uapi/linux/net_namespace.h
12411 F:      include/uapi/linux/netdevice.h
12412 F:      lib/net_utils.c
12413 F:      lib/random32.c
12414 F:      net/
12415 F:      tools/testing/selftests/net/
12416
12417 NETWORKING [IPSEC]
12418 M:      Steffen Klassert <steffen.klassert@secunet.com>
12419 M:      Herbert Xu <herbert@gondor.apana.org.au>
12420 M:      "David S. Miller" <davem@davemloft.net>
12421 L:      netdev@vger.kernel.org
12422 S:      Maintained
12423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
12424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
12425 F:      include/net/xfrm.h
12426 F:      include/uapi/linux/xfrm.h
12427 F:      net/ipv4/ah4.c
12428 F:      net/ipv4/esp4*
12429 F:      net/ipv4/ip_vti.c
12430 F:      net/ipv4/ipcomp.c
12431 F:      net/ipv4/xfrm*
12432 F:      net/ipv6/ah6.c
12433 F:      net/ipv6/esp6*
12434 F:      net/ipv6/ip6_vti.c
12435 F:      net/ipv6/ipcomp6.c
12436 F:      net/ipv6/xfrm*
12437 F:      net/key/
12438 F:      net/xfrm/
12439 F:      tools/testing/selftests/net/ipsec.c
12440
12441 NETWORKING [IPv4/IPv6]
12442 M:      "David S. Miller" <davem@davemloft.net>
12443 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
12444 M:      David Ahern <dsahern@kernel.org>
12445 L:      netdev@vger.kernel.org
12446 S:      Maintained
12447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12448 F:      arch/x86/net/*
12449 F:      include/net/ip*
12450 F:      net/ipv4/
12451 F:      net/ipv6/
12452
12453 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
12454 M:      Paul Moore <paul@paul-moore.com>
12455 L:      netdev@vger.kernel.org
12456 L:      linux-security-module@vger.kernel.org
12457 S:      Maintained
12458 W:      https://github.com/netlabel
12459 F:      Documentation/netlabel/
12460 F:      include/net/calipso.h
12461 F:      include/net/cipso_ipv4.h
12462 F:      include/net/netlabel.h
12463 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
12464 F:      include/uapi/linux/netfilter/xt_SECMARK.h
12465 F:      net/ipv4/cipso_ipv4.c
12466 F:      net/ipv6/calipso.c
12467 F:      net/netfilter/xt_CONNSECMARK.c
12468 F:      net/netfilter/xt_SECMARK.c
12469 F:      net/netlabel/
12470
12471 NETWORKING [MPTCP]
12472 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
12473 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
12474 L:      netdev@vger.kernel.org
12475 L:      mptcp@lists.01.org
12476 S:      Maintained
12477 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
12478 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
12479 F:      Documentation/networking/mptcp-sysctl.rst
12480 F:      include/net/mptcp.h
12481 F:      include/uapi/linux/mptcp.h
12482 F:      net/mptcp/
12483 F:      tools/testing/selftests/net/mptcp/
12484
12485 NETWORKING [TCP]
12486 M:      Eric Dumazet <edumazet@google.com>
12487 L:      netdev@vger.kernel.org
12488 S:      Maintained
12489 F:      include/linux/tcp.h
12490 F:      include/net/tcp.h
12491 F:      include/trace/events/tcp.h
12492 F:      include/uapi/linux/tcp.h
12493 F:      net/ipv4/syncookies.c
12494 F:      net/ipv4/tcp*.c
12495 F:      net/ipv6/syncookies.c
12496 F:      net/ipv6/tcp*.c
12497
12498 NETWORKING [TLS]
12499 M:      Boris Pismenny <borisp@nvidia.com>
12500 M:      John Fastabend <john.fastabend@gmail.com>
12501 M:      Daniel Borkmann <daniel@iogearbox.net>
12502 M:      Jakub Kicinski <kuba@kernel.org>
12503 L:      netdev@vger.kernel.org
12504 S:      Maintained
12505 F:      include/net/tls.h
12506 F:      include/uapi/linux/tls.h
12507 F:      net/tls/*
12508
12509 NETWORKING [WIRELESS]
12510 L:      linux-wireless@vger.kernel.org
12511 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12512
12513 NETXEN (1/10) GbE SUPPORT
12514 M:      Manish Chopra <manishc@marvell.com>
12515 M:      Rahul Verma <rahulv@marvell.com>
12516 M:      GR-Linux-NIC-Dev@marvell.com
12517 L:      netdev@vger.kernel.org
12518 S:      Supported
12519 F:      drivers/net/ethernet/qlogic/netxen/
12520
12521 NET_FAILOVER MODULE
12522 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
12523 L:      netdev@vger.kernel.org
12524 S:      Supported
12525 F:      Documentation/networking/net_failover.rst
12526 F:      drivers/net/net_failover.c
12527 F:      include/net/net_failover.h
12528
12529 NEXTHOP
12530 M:      David Ahern <dsahern@kernel.org>
12531 L:      netdev@vger.kernel.org
12532 S:      Maintained
12533 F:      include/net/netns/nexthop.h
12534 F:      include/net/nexthop.h
12535 F:      include/uapi/linux/nexthop.h
12536 F:      net/ipv4/nexthop.c
12537
12538 NFC SUBSYSTEM
12539 L:      netdev@vger.kernel.org
12540 S:      Orphan
12541 F:      Documentation/devicetree/bindings/net/nfc/
12542 F:      drivers/nfc/
12543 F:      include/linux/platform_data/nfcmrvl.h
12544 F:      include/net/nfc/
12545 F:      include/uapi/linux/nfc.h
12546 F:      net/nfc/
12547
12548 NFC VIRTUAL NCI DEVICE DRIVER
12549 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
12550 L:      netdev@vger.kernel.org
12551 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12552 S:      Supported
12553 F:      drivers/nfc/virtual_ncidev.c
12554 F:      tools/testing/selftests/nci/
12555
12556 NFS, SUNRPC, AND LOCKD CLIENTS
12557 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
12558 M:      Anna Schumaker <anna.schumaker@netapp.com>
12559 L:      linux-nfs@vger.kernel.org
12560 S:      Maintained
12561 W:      http://client.linux-nfs.org
12562 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12563 F:      fs/lockd/
12564 F:      fs/nfs/
12565 F:      fs/nfs_common/
12566 F:      include/linux/lockd/
12567 F:      include/linux/nfs*
12568 F:      include/linux/sunrpc/
12569 F:      include/uapi/linux/nfs*
12570 F:      include/uapi/linux/sunrpc/
12571 F:      net/sunrpc/
12572 F:      Documentation/filesystems/nfs/
12573
12574 NILFS2 FILESYSTEM
12575 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
12576 L:      linux-nilfs@vger.kernel.org
12577 S:      Supported
12578 W:      https://nilfs.sourceforge.io/
12579 W:      https://nilfs.osdn.jp/
12580 T:      git git://github.com/konis/nilfs2.git
12581 F:      Documentation/filesystems/nilfs2.rst
12582 F:      fs/nilfs2/
12583 F:      include/trace/events/nilfs2.h
12584 F:      include/uapi/linux/nilfs2_api.h
12585 F:      include/uapi/linux/nilfs2_ondisk.h
12586
12587 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
12588 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12589 S:      Maintained
12590 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12591 F:      Documentation/scsi/NinjaSCSI.rst
12592 F:      drivers/scsi/pcmcia/nsp_*
12593
12594 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12595 M:      GOTO Masanori <gotom@debian.or.jp>
12596 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12597 S:      Maintained
12598 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12599 F:      Documentation/scsi/NinjaSCSI.rst
12600 F:      drivers/scsi/nsp32*
12601
12602 NIOS2 ARCHITECTURE
12603 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12604 S:      Maintained
12605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12606 F:      arch/nios2/
12607
12608 NITRO ENCLAVES (NE)
12609 M:      Andra Paraschiv <andraprs@amazon.com>
12610 M:      Alexandru Vasile <lexnv@amazon.com>
12611 M:      Alexandru Ciobotaru <alcioa@amazon.com>
12612 L:      linux-kernel@vger.kernel.org
12613 S:      Supported
12614 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
12615 F:      Documentation/virt/ne_overview.rst
12616 F:      drivers/virt/nitro_enclaves/
12617 F:      include/linux/nitro_enclaves.h
12618 F:      include/uapi/linux/nitro_enclaves.h
12619 F:      samples/nitro_enclaves/
12620
12621 NOHZ, DYNTICKS SUPPORT
12622 M:      Frederic Weisbecker <fweisbec@gmail.com>
12623 M:      Thomas Gleixner <tglx@linutronix.de>
12624 M:      Ingo Molnar <mingo@kernel.org>
12625 L:      linux-kernel@vger.kernel.org
12626 S:      Maintained
12627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12628 F:      include/linux/sched/nohz.h
12629 F:      include/linux/tick.h
12630 F:      kernel/time/tick*.*
12631
12632 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12633 M:      Pavel Machek <pavel@ucw.cz>
12634 M:      Sakari Ailus <sakari.ailus@iki.fi>
12635 L:      linux-media@vger.kernel.org
12636 S:      Maintained
12637 F:      drivers/media/i2c/ad5820.c
12638 F:      drivers/media/i2c/et8ek8
12639
12640 NOKIA N900 POWER SUPPLY DRIVERS
12641 R:      Pali Rohár <pali@kernel.org>
12642 F:      drivers/power/supply/bq2415x_charger.c
12643 F:      drivers/power/supply/bq27xxx_battery.c
12644 F:      drivers/power/supply/bq27xxx_battery_i2c.c
12645 F:      drivers/power/supply/isp1704_charger.c
12646 F:      drivers/power/supply/rx51_battery.c
12647 F:      include/linux/power/bq2415x_charger.h
12648 F:      include/linux/power/bq27xxx_battery.h
12649
12650 NOLIBC HEADER FILE
12651 M:      Willy Tarreau <w@1wt.eu>
12652 S:      Maintained
12653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12654 F:      tools/include/nolibc/
12655
12656 NSDEPS
12657 M:      Matthias Maennich <maennich@google.com>
12658 S:      Maintained
12659 F:      Documentation/core-api/symbol-namespaces.rst
12660 F:      scripts/nsdeps
12661
12662 NTB AMD DRIVER
12663 M:      Sanjay R Mehta <sanju.mehta@amd.com>
12664 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
12665 L:      linux-ntb@googlegroups.com
12666 S:      Supported
12667 F:      drivers/ntb/hw/amd/
12668
12669 NTB DRIVER CORE
12670 M:      Jon Mason <jdmason@kudzu.us>
12671 M:      Dave Jiang <dave.jiang@intel.com>
12672 M:      Allen Hubbe <allenbh@gmail.com>
12673 L:      linux-ntb@googlegroups.com
12674 S:      Supported
12675 W:      https://github.com/jonmason/ntb/wiki
12676 T:      git git://github.com/jonmason/ntb.git
12677 F:      drivers/net/ntb_netdev.c
12678 F:      drivers/ntb/
12679 F:      include/linux/ntb.h
12680 F:      include/linux/ntb_transport.h
12681 F:      tools/testing/selftests/ntb/
12682
12683 NTB IDT DRIVER
12684 M:      Serge Semin <fancer.lancer@gmail.com>
12685 L:      linux-ntb@googlegroups.com
12686 S:      Supported
12687 F:      drivers/ntb/hw/idt/
12688
12689 NTB INTEL DRIVER
12690 M:      Dave Jiang <dave.jiang@intel.com>
12691 L:      linux-ntb@googlegroups.com
12692 S:      Supported
12693 W:      https://github.com/davejiang/linux/wiki
12694 T:      git https://github.com/davejiang/linux.git
12695 F:      drivers/ntb/hw/intel/
12696
12697 NTFS FILESYSTEM
12698 M:      Anton Altaparmakov <anton@tuxera.com>
12699 L:      linux-ntfs-dev@lists.sourceforge.net
12700 S:      Supported
12701 W:      http://www.tuxera.com/
12702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12703 F:      Documentation/filesystems/ntfs.rst
12704 F:      fs/ntfs/
12705
12706 NUBUS SUBSYSTEM
12707 M:      Finn Thain <fthain@telegraphics.com.au>
12708 L:      linux-m68k@lists.linux-m68k.org
12709 S:      Maintained
12710 F:      arch/*/include/asm/nubus.h
12711 F:      drivers/nubus/
12712 F:      include/linux/nubus.h
12713 F:      include/uapi/linux/nubus.h
12714
12715 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12716 M:      Antonino Daplas <adaplas@gmail.com>
12717 L:      linux-fbdev@vger.kernel.org
12718 S:      Maintained
12719 F:      drivers/video/fbdev/nvidia/
12720 F:      drivers/video/fbdev/riva/
12721
12722 NVM EXPRESS DRIVER
12723 M:      Keith Busch <kbusch@kernel.org>
12724 M:      Jens Axboe <axboe@fb.com>
12725 M:      Christoph Hellwig <hch@lst.de>
12726 M:      Sagi Grimberg <sagi@grimberg.me>
12727 L:      linux-nvme@lists.infradead.org
12728 S:      Supported
12729 W:      http://git.infradead.org/nvme.git
12730 T:      git://git.infradead.org/nvme.git
12731 F:      drivers/nvme/host/
12732 F:      include/linux/nvme.h
12733 F:      include/uapi/linux/nvme_ioctl.h
12734
12735 NVM EXPRESS FC TRANSPORT DRIVERS
12736 M:      James Smart <james.smart@broadcom.com>
12737 L:      linux-nvme@lists.infradead.org
12738 S:      Supported
12739 F:      drivers/nvme/host/fc.c
12740 F:      drivers/nvme/target/fc.c
12741 F:      drivers/nvme/target/fcloop.c
12742 F:      include/linux/nvme-fc-driver.h
12743 F:      include/linux/nvme-fc.h
12744
12745 NVM EXPRESS TARGET DRIVER
12746 M:      Christoph Hellwig <hch@lst.de>
12747 M:      Sagi Grimberg <sagi@grimberg.me>
12748 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
12749 L:      linux-nvme@lists.infradead.org
12750 S:      Supported
12751 W:      http://git.infradead.org/nvme.git
12752 T:      git://git.infradead.org/nvme.git
12753 F:      drivers/nvme/target/
12754
12755 NVMEM FRAMEWORK
12756 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12757 S:      Maintained
12758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
12759 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12760 F:      Documentation/devicetree/bindings/nvmem/
12761 F:      drivers/nvmem/
12762 F:      include/linux/nvmem-consumer.h
12763 F:      include/linux/nvmem-provider.h
12764
12765 NXP FSPI DRIVER
12766 M:      Ashish Kumar <ashish.kumar@nxp.com>
12767 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
12768 L:      linux-spi@vger.kernel.org
12769 S:      Maintained
12770 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12771 F:      drivers/spi/spi-nxp-fspi.c
12772
12773 NXP FXAS21002C DRIVER
12774 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12775 L:      linux-iio@vger.kernel.org
12776 S:      Maintained
12777 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
12778 F:      drivers/iio/gyro/fxas21002c.h
12779 F:      drivers/iio/gyro/fxas21002c_core.c
12780 F:      drivers/iio/gyro/fxas21002c_i2c.c
12781 F:      drivers/iio/gyro/fxas21002c_spi.c
12782
12783 NXP i.MX CLOCK DRIVERS
12784 M:      Abel Vesa <abel.vesa@nxp.com>
12785 L:      linux-clk@vger.kernel.org
12786 L:      linux-imx@nxp.com
12787 S:      Maintained
12788 F:      drivers/clk/imx/
12789
12790 NXP i.MX 8MQ DCSS DRIVER
12791 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
12792 R:      Lucas Stach <l.stach@pengutronix.de>
12793 L:      dri-devel@lists.freedesktop.org
12794 S:      Maintained
12795 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
12796 F:      drivers/gpu/drm/imx/dcss/
12797
12798 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
12799 M:      Jagan Teki <jagan@amarulasolutions.com>
12800 S:      Maintained
12801 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
12802 F:      drivers/regulator/pf8x00-regulator.c
12803
12804 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
12805 M:      Krzysztof Kozlowski <krzk@kernel.org>
12806 L:      linux-kernel@vger.kernel.org
12807 S:      Maintained
12808 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
12809 F:      drivers/extcon/extcon-ptn5150.c
12810
12811 NXP SGTL5000 DRIVER
12812 M:      Fabio Estevam <festevam@gmail.com>
12813 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12814 S:      Maintained
12815 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
12816 F:      sound/soc/codecs/sgtl5000*
12817
12818 NXP SJA1105 ETHERNET SWITCH DRIVER
12819 M:      Vladimir Oltean <olteanv@gmail.com>
12820 L:      linux-kernel@vger.kernel.org
12821 S:      Maintained
12822 F:      drivers/net/dsa/sja1105
12823
12824 NXP TDA998X DRM DRIVER
12825 M:      Russell King <linux@armlinux.org.uk>
12826 S:      Maintained
12827 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12828 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12829 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12830 F:      include/drm/i2c/tda998x.h
12831 F:      include/dt-bindings/display/tda998x.h
12832 K:      "nxp,tda998x"
12833
12834 NXP TFA9879 DRIVER
12835 M:      Peter Rosin <peda@axentia.se>
12836 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12837 S:      Maintained
12838 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12839 F:      sound/soc/codecs/tfa9879*
12840
12841 NXP-NCI NFC DRIVER
12842 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
12843 R:      Charles Gorand <charles.gorand@effinnov.com>
12844 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12845 S:      Supported
12846 F:      drivers/nfc/nxp-nci
12847
12848 OBJAGG
12849 M:      Jiri Pirko <jiri@nvidia.com>
12850 L:      netdev@vger.kernel.org
12851 S:      Supported
12852 F:      include/linux/objagg.h
12853 F:      lib/objagg.c
12854 F:      lib/test_objagg.c
12855
12856 OBJTOOL
12857 M:      Josh Poimboeuf <jpoimboe@redhat.com>
12858 M:      Peter Zijlstra <peterz@infradead.org>
12859 S:      Supported
12860 F:      tools/objtool/
12861 F:      include/linux/objtool.h
12862
12863 OCELOT ETHERNET SWITCH DRIVER
12864 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
12865 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
12866 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12867 M:      UNGLinuxDriver@microchip.com
12868 L:      netdev@vger.kernel.org
12869 S:      Supported
12870 F:      drivers/net/dsa/ocelot/*
12871 F:      drivers/net/ethernet/mscc/
12872 F:      include/soc/mscc/ocelot*
12873 F:      net/dsa/tag_ocelot.c
12874 F:      net/dsa/tag_ocelot_8021q.c
12875 F:      tools/testing/selftests/drivers/net/ocelot/*
12876
12877 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12878 M:      Frederic Barrat <fbarrat@linux.ibm.com>
12879 M:      Andrew Donnellan <ajd@linux.ibm.com>
12880 L:      linuxppc-dev@lists.ozlabs.org
12881 S:      Supported
12882 F:      Documentation/userspace-api/accelerators/ocxl.rst
12883 F:      arch/powerpc/include/asm/pnv-ocxl.h
12884 F:      arch/powerpc/platforms/powernv/ocxl.c
12885 F:      drivers/misc/ocxl/
12886 F:      include/misc/ocxl*
12887 F:      include/uapi/misc/ocxl.h
12888
12889 OMAP AUDIO SUPPORT
12890 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
12891 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
12892 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12893 L:      linux-omap@vger.kernel.org
12894 S:      Maintained
12895 F:      sound/soc/ti/n810.c
12896 F:      sound/soc/ti/omap*
12897 F:      sound/soc/ti/rx51.c
12898 F:      sound/soc/ti/sdma-pcm.*
12899
12900 OMAP CLOCK FRAMEWORK SUPPORT
12901 M:      Paul Walmsley <paul@pwsan.com>
12902 L:      linux-omap@vger.kernel.org
12903 S:      Maintained
12904 F:      arch/arm/*omap*/*clock*
12905
12906 OMAP DEVICE TREE SUPPORT
12907 M:      Benoît Cousson <bcousson@baylibre.com>
12908 M:      Tony Lindgren <tony@atomide.com>
12909 L:      linux-omap@vger.kernel.org
12910 L:      devicetree@vger.kernel.org
12911 S:      Maintained
12912 F:      arch/arm/boot/dts/*am3*
12913 F:      arch/arm/boot/dts/*am4*
12914 F:      arch/arm/boot/dts/*am5*
12915 F:      arch/arm/boot/dts/*dra7*
12916 F:      arch/arm/boot/dts/*omap*
12917 F:      arch/arm/boot/dts/logicpd-som-lv*
12918 F:      arch/arm/boot/dts/logicpd-torpedo*
12919
12920 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12921 L:      linux-omap@vger.kernel.org
12922 L:      linux-fbdev@vger.kernel.org
12923 S:      Orphan
12924 F:      Documentation/arm/omap/dss.rst
12925 F:      drivers/video/fbdev/omap2/
12926
12927 OMAP FRAMEBUFFER SUPPORT
12928 L:      linux-fbdev@vger.kernel.org
12929 L:      linux-omap@vger.kernel.org
12930 S:      Orphan
12931 F:      drivers/video/fbdev/omap/
12932
12933 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12934 M:      Roger Quadros <rogerq@kernel.org>
12935 M:      Tony Lindgren <tony@atomide.com>
12936 L:      linux-omap@vger.kernel.org
12937 S:      Maintained
12938 F:      arch/arm/mach-omap2/*gpmc*
12939 F:      drivers/memory/omap-gpmc.c
12940
12941 OMAP GPIO DRIVER
12942 M:      Grygorii Strashko <grygorii.strashko@ti.com>
12943 M:      Santosh Shilimkar <ssantosh@kernel.org>
12944 M:      Kevin Hilman <khilman@kernel.org>
12945 L:      linux-omap@vger.kernel.org
12946 S:      Maintained
12947 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12948 F:      drivers/gpio/gpio-omap.c
12949
12950 OMAP HARDWARE SPINLOCK SUPPORT
12951 M:      Ohad Ben-Cohen <ohad@wizery.com>
12952 L:      linux-omap@vger.kernel.org
12953 S:      Maintained
12954 F:      drivers/hwspinlock/omap_hwspinlock.c
12955
12956 OMAP HS MMC SUPPORT
12957 L:      linux-mmc@vger.kernel.org
12958 L:      linux-omap@vger.kernel.org
12959 S:      Orphan
12960 F:      drivers/mmc/host/omap_hsmmc.c
12961
12962 OMAP HWMOD DATA
12963 M:      Paul Walmsley <paul@pwsan.com>
12964 L:      linux-omap@vger.kernel.org
12965 S:      Maintained
12966 F:      arch/arm/mach-omap2/omap_hwmod*data*
12967
12968 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12969 M:      Benoît Cousson <bcousson@baylibre.com>
12970 L:      linux-omap@vger.kernel.org
12971 S:      Maintained
12972 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12973
12974 OMAP HWMOD SUPPORT
12975 M:      Benoît Cousson <bcousson@baylibre.com>
12976 M:      Paul Walmsley <paul@pwsan.com>
12977 L:      linux-omap@vger.kernel.org
12978 S:      Maintained
12979 F:      arch/arm/mach-omap2/omap_hwmod.*
12980
12981 OMAP I2C DRIVER
12982 M:      Vignesh R <vigneshr@ti.com>
12983 L:      linux-omap@vger.kernel.org
12984 L:      linux-i2c@vger.kernel.org
12985 S:      Maintained
12986 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12987 F:      drivers/i2c/busses/i2c-omap.c
12988
12989 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12990 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12991 L:      linux-media@vger.kernel.org
12992 S:      Maintained
12993 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12994 F:      drivers/media/platform/omap3isp/
12995 F:      drivers/staging/media/omap4iss/
12996
12997 OMAP MMC SUPPORT
12998 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12999 L:      linux-omap@vger.kernel.org
13000 S:      Odd Fixes
13001 F:      drivers/mmc/host/omap.c
13002
13003 OMAP POWER MANAGEMENT SUPPORT
13004 M:      Kevin Hilman <khilman@kernel.org>
13005 L:      linux-omap@vger.kernel.org
13006 S:      Maintained
13007 F:      arch/arm/*omap*/*pm*
13008 F:      drivers/cpufreq/omap-cpufreq.c
13009
13010 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13011 M:      Rajendra Nayak <rnayak@codeaurora.org>
13012 M:      Paul Walmsley <paul@pwsan.com>
13013 L:      linux-omap@vger.kernel.org
13014 S:      Maintained
13015 F:      arch/arm/mach-omap2/prm*
13016
13017 OMAP RANDOM NUMBER GENERATOR SUPPORT
13018 M:      Deepak Saxena <dsaxena@plexity.net>
13019 S:      Maintained
13020 F:      drivers/char/hw_random/omap-rng.c
13021
13022 OMAP USB SUPPORT
13023 L:      linux-usb@vger.kernel.org
13024 L:      linux-omap@vger.kernel.org
13025 S:      Orphan
13026 F:      arch/arm/*omap*/usb*
13027 F:      drivers/usb/*/*omap*
13028
13029 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13030 M:      Mark Jackson <mpfj@newflow.co.uk>
13031 L:      linux-omap@vger.kernel.org
13032 S:      Maintained
13033 F:      arch/arm/boot/dts/am335x-nano.dts
13034
13035 OMAP1 SUPPORT
13036 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13037 M:      Tony Lindgren <tony@atomide.com>
13038 L:      linux-omap@vger.kernel.org
13039 S:      Maintained
13040 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13042 F:      arch/arm/configs/omap1_defconfig
13043 F:      arch/arm/mach-omap1/
13044 F:      arch/arm/plat-omap/
13045 F:      drivers/i2c/busses/i2c-omap.c
13046 F:      include/linux/platform_data/ams-delta-fiq.h
13047 F:      include/linux/platform_data/i2c-omap.h
13048
13049 OMAP2+ SUPPORT
13050 M:      Tony Lindgren <tony@atomide.com>
13051 L:      linux-omap@vger.kernel.org
13052 S:      Maintained
13053 W:      http://www.muru.com/linux/omap/
13054 W:      http://linux.omap.com/
13055 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13057 F:      arch/arm/configs/omap2plus_defconfig
13058 F:      arch/arm/mach-omap2/
13059 F:      arch/arm/plat-omap/
13060 F:      drivers/bus/ti-sysc.c
13061 F:      drivers/i2c/busses/i2c-omap.c
13062 F:      drivers/irqchip/irq-omap-intc.c
13063 F:      drivers/mfd/*omap*.c
13064 F:      drivers/mfd/menelaus.c
13065 F:      drivers/mfd/palmas.c
13066 F:      drivers/mfd/tps65217.c
13067 F:      drivers/mfd/tps65218.c
13068 F:      drivers/mfd/tps65910.c
13069 F:      drivers/mfd/twl-core.[ch]
13070 F:      drivers/mfd/twl4030*.c
13071 F:      drivers/mfd/twl6030*.c
13072 F:      drivers/mfd/twl6040*.c
13073 F:      drivers/regulator/palmas-regulator*.c
13074 F:      drivers/regulator/pbias-regulator.c
13075 F:      drivers/regulator/tps65217-regulator.c
13076 F:      drivers/regulator/tps65218-regulator.c
13077 F:      drivers/regulator/tps65910-regulator.c
13078 F:      drivers/regulator/twl-regulator.c
13079 F:      drivers/regulator/twl6030-regulator.c
13080 F:      include/linux/platform_data/i2c-omap.h
13081 F:      include/linux/platform_data/ti-sysc.h
13082
13083 OMFS FILESYSTEM
13084 M:      Bob Copeland <me@bobcopeland.com>
13085 L:      linux-karma-devel@lists.sourceforge.net
13086 S:      Maintained
13087 F:      Documentation/filesystems/omfs.rst
13088 F:      fs/omfs/
13089
13090 OMNIKEY CARDMAN 4000 DRIVER
13091 M:      Harald Welte <laforge@gnumonks.org>
13092 S:      Maintained
13093 F:      drivers/char/pcmcia/cm4000_cs.c
13094 F:      include/linux/cm4000_cs.h
13095 F:      include/uapi/linux/cm4000_cs.h
13096
13097 OMNIKEY CARDMAN 4040 DRIVER
13098 M:      Harald Welte <laforge@gnumonks.org>
13099 S:      Maintained
13100 F:      drivers/char/pcmcia/cm4040_cs.*
13101
13102 OMNIVISION OV02A10 SENSOR DRIVER
13103 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13104 L:      linux-media@vger.kernel.org
13105 S:      Maintained
13106 T:      git git://linuxtv.org/media_tree.git
13107 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13108 F:      drivers/media/i2c/ov02a10.c
13109
13110 OMNIVISION OV13858 SENSOR DRIVER
13111 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13112 L:      linux-media@vger.kernel.org
13113 S:      Maintained
13114 T:      git git://linuxtv.org/media_tree.git
13115 F:      drivers/media/i2c/ov13858.c
13116
13117 OMNIVISION OV2680 SENSOR DRIVER
13118 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13119 L:      linux-media@vger.kernel.org
13120 S:      Maintained
13121 T:      git git://linuxtv.org/media_tree.git
13122 F:      Documentation/devicetree/bindings/media/i2c/ov2680.yaml
13123 F:      drivers/media/i2c/ov2680.c
13124
13125 OMNIVISION OV2685 SENSOR DRIVER
13126 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13127 L:      linux-media@vger.kernel.org
13128 S:      Maintained
13129 T:      git git://linuxtv.org/media_tree.git
13130 F:      drivers/media/i2c/ov2685.c
13131
13132 OMNIVISION OV2740 SENSOR DRIVER
13133 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13134 R:      Shawn Tu <shawnx.tu@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/ov2740.c
13140
13141 OMNIVISION OV5640 SENSOR DRIVER
13142 M:      Steve Longerbeam <slongerbeam@gmail.com>
13143 L:      linux-media@vger.kernel.org
13144 S:      Maintained
13145 T:      git git://linuxtv.org/media_tree.git
13146 F:      drivers/media/i2c/ov5640.c
13147
13148 OMNIVISION OV5647 SENSOR DRIVER
13149 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
13150 M:      Jacopo Mondi <jacopo@jmondi.org>
13151 L:      linux-media@vger.kernel.org
13152 S:      Maintained
13153 T:      git git://linuxtv.org/media_tree.git
13154 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
13155 F:      drivers/media/i2c/ov5647.c
13156
13157 OMNIVISION OV5670 SENSOR DRIVER
13158 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13159 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
13160 L:      linux-media@vger.kernel.org
13161 S:      Maintained
13162 T:      git git://linuxtv.org/media_tree.git
13163 F:      drivers/media/i2c/ov5670.c
13164
13165 OMNIVISION OV5675 SENSOR DRIVER
13166 M:      Shawn Tu <shawnx.tu@intel.com>
13167 L:      linux-media@vger.kernel.org
13168 S:      Maintained
13169 T:      git git://linuxtv.org/media_tree.git
13170 F:      drivers/media/i2c/ov5675.c
13171
13172 OMNIVISION OV5695 SENSOR DRIVER
13173 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13174 L:      linux-media@vger.kernel.org
13175 S:      Maintained
13176 T:      git git://linuxtv.org/media_tree.git
13177 F:      drivers/media/i2c/ov5695.c
13178
13179 OMNIVISION OV7670 SENSOR DRIVER
13180 L:      linux-media@vger.kernel.org
13181 S:      Orphan
13182 T:      git git://linuxtv.org/media_tree.git
13183 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
13184 F:      drivers/media/i2c/ov7670.c
13185
13186 OMNIVISION OV772x SENSOR DRIVER
13187 M:      Jacopo Mondi <jacopo@jmondi.org>
13188 L:      linux-media@vger.kernel.org
13189 S:      Odd fixes
13190 T:      git git://linuxtv.org/media_tree.git
13191 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13192 F:      drivers/media/i2c/ov772x.c
13193 F:      include/media/i2c/ov772x.h
13194
13195 OMNIVISION OV7740 SENSOR DRIVER
13196 M:      Wenyou Yang <wenyou.yang@microchip.com>
13197 L:      linux-media@vger.kernel.org
13198 S:      Maintained
13199 T:      git git://linuxtv.org/media_tree.git
13200 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
13201 F:      drivers/media/i2c/ov7740.c
13202
13203 OMNIVISION OV8856 SENSOR DRIVER
13204 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13205 L:      linux-media@vger.kernel.org
13206 S:      Maintained
13207 T:      git git://linuxtv.org/media_tree.git
13208 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13209 F:      drivers/media/i2c/ov8856.c
13210
13211 OMNIVISION OV9640 SENSOR DRIVER
13212 M:      Petr Cvek <petrcvekcz@gmail.com>
13213 L:      linux-media@vger.kernel.org
13214 S:      Maintained
13215 F:      drivers/media/i2c/ov9640.*
13216
13217 OMNIVISION OV9650 SENSOR DRIVER
13218 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13219 R:      Akinobu Mita <akinobu.mita@gmail.com>
13220 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13221 L:      linux-media@vger.kernel.org
13222 S:      Maintained
13223 T:      git git://linuxtv.org/media_tree.git
13224 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
13225 F:      drivers/media/i2c/ov9650.c
13226
13227 OMNIVISION OV9734 SENSOR DRIVER
13228 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13229 R:      Bingbu Cao <bingbu.cao@intel.com>
13230 L:      linux-media@vger.kernel.org
13231 S:      Maintained
13232 T:      git git://linuxtv.org/media_tree.git
13233 F:      drivers/media/i2c/ov9734.c
13234
13235 ONENAND FLASH DRIVER
13236 M:      Kyungmin Park <kyungmin.park@samsung.com>
13237 L:      linux-mtd@lists.infradead.org
13238 S:      Maintained
13239 F:      drivers/mtd/nand/onenand/
13240 F:      include/linux/mtd/onenand*.h
13241
13242 ONION OMEGA2+ BOARD
13243 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
13244 L:      linux-mips@vger.kernel.org
13245 S:      Maintained
13246 F:      arch/mips/boot/dts/ralink/omega2p.dts
13247
13248 OP-TEE DRIVER
13249 M:      Jens Wiklander <jens.wiklander@linaro.org>
13250 L:      op-tee@lists.trustedfirmware.org
13251 S:      Maintained
13252 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
13253 F:      drivers/tee/optee/
13254
13255 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
13256 M:      Sumit Garg <sumit.garg@linaro.org>
13257 L:      op-tee@lists.trustedfirmware.org
13258 S:      Maintained
13259 F:      drivers/char/hw_random/optee-rng.c
13260
13261 OPA-VNIC DRIVER
13262 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
13263 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
13264 L:      linux-rdma@vger.kernel.org
13265 S:      Supported
13266 F:      drivers/infiniband/ulp/opa_vnic
13267
13268 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
13269 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
13270 M:      Frank Rowand <frowand.list@gmail.com>
13271 L:      devicetree@vger.kernel.org
13272 S:      Maintained
13273 F:      Documentation/devicetree/dynamic-resolution-notes.rst
13274 F:      Documentation/devicetree/overlay-notes.rst
13275 F:      drivers/of/overlay.c
13276 F:      drivers/of/resolver.c
13277 K:      of_overlay_notifier_
13278
13279 OPEN FIRMWARE AND FLATTENED DEVICE TREE
13280 M:      Rob Herring <robh+dt@kernel.org>
13281 M:      Frank Rowand <frowand.list@gmail.com>
13282 L:      devicetree@vger.kernel.org
13283 S:      Maintained
13284 W:      http://www.devicetree.org/
13285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13286 F:      Documentation/ABI/testing/sysfs-firmware-ofw
13287 F:      drivers/of/
13288 F:      include/linux/of*.h
13289 F:      scripts/dtc/
13290
13291 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
13292 M:      Rob Herring <robh+dt@kernel.org>
13293 L:      devicetree@vger.kernel.org
13294 S:      Maintained
13295 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
13296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13297 F:      Documentation/devicetree/
13298 F:      arch/*/boot/dts/
13299 F:      include/dt-bindings/
13300
13301 OPENCORES I2C BUS DRIVER
13302 M:      Peter Korsgaard <peter@korsgaard.com>
13303 M:      Andrew Lunn <andrew@lunn.ch>
13304 L:      linux-i2c@vger.kernel.org
13305 S:      Maintained
13306 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
13307 F:      Documentation/i2c/busses/i2c-ocores.rst
13308 F:      drivers/i2c/busses/i2c-ocores.c
13309 F:      include/linux/platform_data/i2c-ocores.h
13310
13311 OPENRISC ARCHITECTURE
13312 M:      Jonas Bonn <jonas@southpole.se>
13313 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
13314 M:      Stafford Horne <shorne@gmail.com>
13315 L:      openrisc@lists.librecores.org
13316 S:      Maintained
13317 W:      http://openrisc.io
13318 T:      git git://github.com/openrisc/linux.git
13319 F:      Documentation/devicetree/bindings/openrisc/
13320 F:      Documentation/openrisc/
13321 F:      arch/openrisc/
13322 F:      drivers/irqchip/irq-ompic.c
13323 F:      drivers/irqchip/irq-or1k-*
13324
13325 OPENVSWITCH
13326 M:      Pravin B Shelar <pshelar@ovn.org>
13327 L:      netdev@vger.kernel.org
13328 L:      dev@openvswitch.org
13329 S:      Maintained
13330 W:      http://openvswitch.org
13331 F:      include/uapi/linux/openvswitch.h
13332 F:      net/openvswitch/
13333
13334 OPERATING PERFORMANCE POINTS (OPP)
13335 M:      Viresh Kumar <vireshk@kernel.org>
13336 M:      Nishanth Menon <nm@ti.com>
13337 M:      Stephen Boyd <sboyd@kernel.org>
13338 L:      linux-pm@vger.kernel.org
13339 S:      Maintained
13340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
13341 F:      Documentation/devicetree/bindings/opp/
13342 F:      Documentation/power/opp.rst
13343 F:      drivers/opp/
13344 F:      include/linux/pm_opp.h
13345
13346 OPL4 DRIVER
13347 M:      Clemens Ladisch <clemens@ladisch.de>
13348 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13349 S:      Maintained
13350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13351 F:      sound/drivers/opl4/
13352
13353 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
13354 M:      Mark Fasheh <mark@fasheh.com>
13355 M:      Joel Becker <jlbec@evilplan.org>
13356 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
13357 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
13358 S:      Supported
13359 W:      http://ocfs2.wiki.kernel.org
13360 F:      Documentation/filesystems/dlmfs.rst
13361 F:      Documentation/filesystems/ocfs2.rst
13362 F:      fs/ocfs2/
13363
13364 ORANGEFS FILESYSTEM
13365 M:      Mike Marshall <hubcap@omnibond.com>
13366 R:      Martin Brandenburg <martin@omnibond.com>
13367 L:      devel@lists.orangefs.org
13368 S:      Supported
13369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
13370 F:      Documentation/filesystems/orangefs.rst
13371 F:      fs/orangefs/
13372
13373 ORINOCO DRIVER
13374 L:      linux-wireless@vger.kernel.org
13375 S:      Orphan
13376 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
13377 W:      http://www.nongnu.org/orinoco/
13378 F:      drivers/net/wireless/intersil/orinoco/
13379
13380 OV2659 OMNIVISION SENSOR DRIVER
13381 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13382 L:      linux-media@vger.kernel.org
13383 S:      Maintained
13384 W:      https://linuxtv.org
13385 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13386 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13387 F:      drivers/media/i2c/ov2659.c
13388 F:      include/media/i2c/ov2659.h
13389
13390 OVERLAY FILESYSTEM
13391 M:      Miklos Szeredi <miklos@szeredi.hu>
13392 L:      linux-unionfs@vger.kernel.org
13393 S:      Supported
13394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
13395 F:      Documentation/filesystems/overlayfs.rst
13396 F:      fs/overlayfs/
13397
13398 P54 WIRELESS DRIVER
13399 M:      Christian Lamparter <chunkeey@googlemail.com>
13400 L:      linux-wireless@vger.kernel.org
13401 S:      Maintained
13402 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13403 F:      drivers/net/wireless/intersil/p54/
13404
13405 PACKING
13406 M:      Vladimir Oltean <olteanv@gmail.com>
13407 L:      netdev@vger.kernel.org
13408 S:      Supported
13409 F:      Documentation/core-api/packing.rst
13410 F:      include/linux/packing.h
13411 F:      lib/packing.c
13412
13413 PADATA PARALLEL EXECUTION MECHANISM
13414 M:      Steffen Klassert <steffen.klassert@secunet.com>
13415 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
13416 L:      linux-crypto@vger.kernel.org
13417 L:      linux-kernel@vger.kernel.org
13418 S:      Maintained
13419 F:      Documentation/core-api/padata.rst
13420 F:      include/linux/padata.h
13421 F:      kernel/padata.c
13422
13423 PAGE POOL
13424 M:      Jesper Dangaard Brouer <hawk@kernel.org>
13425 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
13426 L:      netdev@vger.kernel.org
13427 S:      Supported
13428 F:      Documentation/networking/page_pool.rst
13429 F:      include/net/page_pool.h
13430 F:      include/trace/events/page_pool.h
13431 F:      net/core/page_pool.c
13432
13433 PANASONIC LAPTOP ACPI EXTRAS DRIVER
13434 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
13435 L:      platform-driver-x86@vger.kernel.org
13436 S:      Maintained
13437 F:      drivers/platform/x86/panasonic-laptop.c
13438
13439 PARALLAX PING IIO SENSOR DRIVER
13440 M:      Andreas Klinger <ak@it-klinger.de>
13441 L:      linux-iio@vger.kernel.org
13442 S:      Maintained
13443 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
13444 F:      drivers/iio/proximity/ping.c
13445
13446 PARALLEL LCD/KEYPAD PANEL DRIVER
13447 M:      Willy Tarreau <willy@haproxy.com>
13448 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
13449 S:      Odd Fixes
13450 F:      Documentation/admin-guide/lcd-panel-cgram.rst
13451 F:      drivers/auxdisplay/panel.c
13452
13453 PARALLEL PORT SUBSYSTEM
13454 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
13455 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
13456 L:      linux-parport@lists.infradead.org (subscribers-only)
13457 S:      Maintained
13458 F:      Documentation/driver-api/parport*.rst
13459 F:      drivers/char/ppdev.c
13460 F:      drivers/parport/
13461 F:      include/linux/parport*.h
13462 F:      include/uapi/linux/ppdev.h
13463
13464 PARAVIRT_OPS INTERFACE
13465 M:      Juergen Gross <jgross@suse.com>
13466 M:      Deep Shah <sdeep@vmware.com>
13467 M:      "VMware, Inc." <pv-drivers@vmware.com>
13468 L:      virtualization@lists.linux-foundation.org
13469 S:      Supported
13470 F:      Documentation/virt/paravirt_ops.rst
13471 F:      arch/*/include/asm/paravirt*.h
13472 F:      arch/*/kernel/paravirt*
13473 F:      include/linux/hypervisor.h
13474
13475 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
13476 M:      Tim Waugh <tim@cyberelk.net>
13477 L:      linux-parport@lists.infradead.org (subscribers-only)
13478 S:      Maintained
13479 F:      Documentation/admin-guide/blockdev/paride.rst
13480 F:      drivers/block/paride/
13481
13482 PARISC ARCHITECTURE
13483 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
13484 M:      Helge Deller <deller@gmx.de>
13485 L:      linux-parisc@vger.kernel.org
13486 S:      Maintained
13487 W:      https://parisc.wiki.kernel.org
13488 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
13489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
13490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
13491 F:      Documentation/parisc/
13492 F:      arch/parisc/
13493 F:      drivers/char/agp/parisc-agp.c
13494 F:      drivers/input/misc/hp_sdc_rtc.c
13495 F:      drivers/input/serio/gscps2.c
13496 F:      drivers/input/serio/hp_sdc*
13497 F:      drivers/parisc/
13498 F:      drivers/parport/parport_gsc.*
13499 F:      drivers/tty/serial/8250/8250_gsc.c
13500 F:      drivers/video/console/sti*
13501 F:      drivers/video/fbdev/sti*
13502 F:      drivers/video/logo/logo_parisc*
13503 F:      include/linux/hp_sdc.h
13504
13505 PARMAN
13506 M:      Jiri Pirko <jiri@nvidia.com>
13507 L:      netdev@vger.kernel.org
13508 S:      Supported
13509 F:      include/linux/parman.h
13510 F:      lib/parman.c
13511 F:      lib/test_parman.c
13512
13513 PC ENGINES APU BOARD DRIVER
13514 M:      Enrico Weigelt, metux IT consult <info@metux.net>
13515 S:      Maintained
13516 F:      drivers/platform/x86/pcengines-apuv2.c
13517
13518 PC87360 HARDWARE MONITORING DRIVER
13519 M:      Jim Cromie <jim.cromie@gmail.com>
13520 L:      linux-hwmon@vger.kernel.org
13521 S:      Maintained
13522 F:      Documentation/hwmon/pc87360.rst
13523 F:      drivers/hwmon/pc87360.c
13524
13525 PC8736x GPIO DRIVER
13526 M:      Jim Cromie <jim.cromie@gmail.com>
13527 S:      Maintained
13528 F:      drivers/char/pc8736x_gpio.c
13529
13530 PC87427 HARDWARE MONITORING DRIVER
13531 M:      Jean Delvare <jdelvare@suse.com>
13532 L:      linux-hwmon@vger.kernel.org
13533 S:      Maintained
13534 F:      Documentation/hwmon/pc87427.rst
13535 F:      drivers/hwmon/pc87427.c
13536
13537 PCA9532 LED DRIVER
13538 M:      Riku Voipio <riku.voipio@iki.fi>
13539 S:      Maintained
13540 F:      drivers/leds/leds-pca9532.c
13541 F:      include/linux/leds-pca9532.h
13542
13543 PCA9541 I2C BUS MASTER SELECTOR DRIVER
13544 M:      Guenter Roeck <linux@roeck-us.net>
13545 L:      linux-i2c@vger.kernel.org
13546 S:      Maintained
13547 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
13548
13549 PCDP - PRIMARY CONSOLE AND DEBUG PORT
13550 M:      Khalid Aziz <khalid@gonehiking.org>
13551 S:      Maintained
13552 F:      drivers/firmware/pcdp.*
13553
13554 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
13555 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13556 M:      Pali Rohár <pali@kernel.org>
13557 L:      linux-pci@vger.kernel.org
13558 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13559 S:      Maintained
13560 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
13561 F:      drivers/pci/controller/pci-aardvark.c
13562
13563 PCI DRIVER FOR ALTERA PCIE IP
13564 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13565 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13566 L:      linux-pci@vger.kernel.org
13567 S:      Supported
13568 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
13569 F:      drivers/pci/controller/pcie-altera.c
13570
13571 PCI DRIVER FOR APPLIEDMICRO XGENE
13572 M:      Toan Le <toan@os.amperecomputing.com>
13573 L:      linux-pci@vger.kernel.org
13574 L:      linux-arm-kernel@lists.infradead.org
13575 S:      Maintained
13576 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
13577 F:      drivers/pci/controller/pci-xgene.c
13578
13579 PCI DRIVER FOR ARM VERSATILE PLATFORM
13580 M:      Rob Herring <robh@kernel.org>
13581 L:      linux-pci@vger.kernel.org
13582 L:      linux-arm-kernel@lists.infradead.org
13583 S:      Maintained
13584 F:      Documentation/devicetree/bindings/pci/versatile.yaml
13585 F:      drivers/pci/controller/pci-versatile.c
13586
13587 PCI DRIVER FOR ARMADA 8K
13588 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13589 L:      linux-pci@vger.kernel.org
13590 L:      linux-arm-kernel@lists.infradead.org
13591 S:      Maintained
13592 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
13593 F:      drivers/pci/controller/dwc/pcie-armada8k.c
13594
13595 PCI DRIVER FOR CADENCE PCIE IP
13596 M:      Tom Joseph <tjoseph@cadence.com>
13597 L:      linux-pci@vger.kernel.org
13598 S:      Maintained
13599 F:      Documentation/devicetree/bindings/pci/cdns,*
13600 F:      drivers/pci/controller/cadence/
13601
13602 PCI DRIVER FOR FREESCALE LAYERSCAPE
13603 M:      Minghuan Lian <minghuan.Lian@nxp.com>
13604 M:      Mingkai Hu <mingkai.hu@nxp.com>
13605 M:      Roy Zang <roy.zang@nxp.com>
13606 L:      linuxppc-dev@lists.ozlabs.org
13607 L:      linux-pci@vger.kernel.org
13608 L:      linux-arm-kernel@lists.infradead.org
13609 S:      Maintained
13610 F:      drivers/pci/controller/dwc/*layerscape*
13611
13612 PCI DRIVER FOR GENERIC OF HOSTS
13613 M:      Will Deacon <will@kernel.org>
13614 L:      linux-pci@vger.kernel.org
13615 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13616 S:      Maintained
13617 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13618 F:      drivers/pci/controller/pci-host-common.c
13619 F:      drivers/pci/controller/pci-host-generic.c
13620
13621 PCI DRIVER FOR IMX6
13622 M:      Richard Zhu <hongxing.zhu@nxp.com>
13623 M:      Lucas Stach <l.stach@pengutronix.de>
13624 L:      linux-pci@vger.kernel.org
13625 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13626 S:      Maintained
13627 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
13628 F:      drivers/pci/controller/dwc/*imx6*
13629
13630 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13631 M:      Jonathan Derrick <jonathan.derrick@intel.com>
13632 L:      linux-pci@vger.kernel.org
13633 S:      Supported
13634 F:      drivers/pci/controller/vmd.c
13635
13636 PCI DRIVER FOR MICROSEMI SWITCHTEC
13637 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
13638 M:      Logan Gunthorpe <logang@deltatee.com>
13639 L:      linux-pci@vger.kernel.org
13640 S:      Maintained
13641 F:      Documentation/ABI/testing/sysfs-class-switchtec
13642 F:      Documentation/driver-api/switchtec.rst
13643 F:      drivers/ntb/hw/mscc/
13644 F:      drivers/pci/switch/switchtec*
13645 F:      include/linux/switchtec.h
13646 F:      include/uapi/linux/switchtec_ioctl.h
13647
13648 PCI DRIVER FOR MOBIVEIL PCIE IP
13649 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
13650 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13651 L:      linux-pci@vger.kernel.org
13652 S:      Supported
13653 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
13654 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
13655
13656 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
13657 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13658 L:      linux-pci@vger.kernel.org
13659 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13660 S:      Maintained
13661 F:      drivers/pci/controller/*mvebu*
13662
13663 PCI DRIVER FOR NVIDIA TEGRA
13664 M:      Thierry Reding <thierry.reding@gmail.com>
13665 L:      linux-tegra@vger.kernel.org
13666 L:      linux-pci@vger.kernel.org
13667 S:      Supported
13668 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
13669 F:      drivers/pci/controller/pci-tegra.c
13670
13671 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13672 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13673 L:      linux-pci@vger.kernel.org
13674 L:      linux-arm-kernel@lists.infradead.org
13675 S:      Maintained
13676 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13677 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
13678
13679 PCI DRIVER FOR RENESAS R-CAR
13680 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
13681 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13682 L:      linux-pci@vger.kernel.org
13683 L:      linux-renesas-soc@vger.kernel.org
13684 S:      Maintained
13685 F:      Documentation/devicetree/bindings/pci/*rcar*
13686 F:      drivers/pci/controller/*rcar*
13687
13688 PCI DRIVER FOR SAMSUNG EXYNOS
13689 M:      Jingoo Han <jingoohan1@gmail.com>
13690 L:      linux-pci@vger.kernel.org
13691 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13692 L:      linux-samsung-soc@vger.kernel.org
13693 S:      Maintained
13694 F:      drivers/pci/controller/dwc/pci-exynos.c
13695
13696 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13697 M:      Jingoo Han <jingoohan1@gmail.com>
13698 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
13699 L:      linux-pci@vger.kernel.org
13700 S:      Maintained
13701 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
13702 F:      drivers/pci/controller/dwc/*designware*
13703
13704 PCI DRIVER FOR TI DRA7XX/J721E
13705 M:      Kishon Vijay Abraham I <kishon@ti.com>
13706 L:      linux-omap@vger.kernel.org
13707 L:      linux-pci@vger.kernel.org
13708 L:      linux-arm-kernel@lists.infradead.org
13709 S:      Supported
13710 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
13711 F:      drivers/pci/controller/cadence/pci-j721e.c
13712 F:      drivers/pci/controller/dwc/pci-dra7xx.c
13713
13714 PCI DRIVER FOR TI KEYSTONE
13715 M:      Murali Karicheri <m-karicheri2@ti.com>
13716 L:      linux-pci@vger.kernel.org
13717 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13718 S:      Maintained
13719 F:      drivers/pci/controller/dwc/pci-keystone.c
13720
13721 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13722 M:      Linus Walleij <linus.walleij@linaro.org>
13723 L:      linux-pci@vger.kernel.org
13724 S:      Maintained
13725 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13726 F:      drivers/pci/controller/pci-v3-semi.c
13727
13728 PCI ENDPOINT SUBSYSTEM
13729 M:      Kishon Vijay Abraham I <kishon@ti.com>
13730 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13731 L:      linux-pci@vger.kernel.org
13732 S:      Supported
13733 F:      Documentation/PCI/endpoint/*
13734 F:      Documentation/misc-devices/pci-endpoint-test.rst
13735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13736 F:      drivers/misc/pci_endpoint_test.c
13737 F:      drivers/pci/endpoint/
13738 F:      tools/pci/
13739
13740 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13741 M:      Russell Currey <ruscur@russell.cc>
13742 M:      Oliver O'Halloran <oohall@gmail.com>
13743 L:      linuxppc-dev@lists.ozlabs.org
13744 S:      Supported
13745 F:      Documentation/PCI/pci-error-recovery.rst
13746 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
13747 F:      arch/powerpc/include/*/eeh*.h
13748 F:      arch/powerpc/kernel/eeh*.c
13749 F:      arch/powerpc/platforms/*/eeh*.c
13750 F:      drivers/pci/pcie/aer.c
13751 F:      drivers/pci/pcie/dpc.c
13752 F:      drivers/pci/pcie/err.c
13753
13754 PCI ERROR RECOVERY
13755 M:      Linas Vepstas <linasvepstas@gmail.com>
13756 L:      linux-pci@vger.kernel.org
13757 S:      Supported
13758 F:      Documentation/PCI/pci-error-recovery.rst
13759
13760 PCI MSI DRIVER FOR ALTERA MSI IP
13761 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13762 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13763 L:      linux-pci@vger.kernel.org
13764 S:      Supported
13765 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13766 F:      drivers/pci/controller/pcie-altera-msi.c
13767
13768 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13769 M:      Toan Le <toan@os.amperecomputing.com>
13770 L:      linux-pci@vger.kernel.org
13771 L:      linux-arm-kernel@lists.infradead.org
13772 S:      Maintained
13773 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13774 F:      drivers/pci/controller/pci-xgene-msi.c
13775
13776 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13777 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13778 R:      Rob Herring <robh@kernel.org>
13779 L:      linux-pci@vger.kernel.org
13780 S:      Supported
13781 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13783 F:      drivers/pci/controller/
13784
13785 PCI SUBSYSTEM
13786 M:      Bjorn Helgaas <bhelgaas@google.com>
13787 L:      linux-pci@vger.kernel.org
13788 S:      Supported
13789 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13791 F:      Documentation/PCI/
13792 F:      Documentation/devicetree/bindings/pci/
13793 F:      arch/x86/kernel/early-quirks.c
13794 F:      arch/x86/kernel/quirks.c
13795 F:      arch/x86/pci/
13796 F:      drivers/acpi/pci*
13797 F:      drivers/pci/
13798 F:      include/asm-generic/pci*
13799 F:      include/linux/of_pci.h
13800 F:      include/linux/pci*
13801 F:      include/uapi/linux/pci*
13802 F:      lib/pci*
13803
13804 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13805 M:      Jonathan Chocron <jonnyc@amazon.com>
13806 L:      linux-pci@vger.kernel.org
13807 S:      Maintained
13808 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13809 F:      drivers/pci/controller/dwc/pcie-al.c
13810
13811 PCIE DRIVER FOR AMLOGIC MESON
13812 M:      Yue Wang <yue.wang@Amlogic.com>
13813 L:      linux-pci@vger.kernel.org
13814 L:      linux-amlogic@lists.infradead.org
13815 S:      Maintained
13816 F:      drivers/pci/controller/dwc/pci-meson.c
13817
13818 PCIE DRIVER FOR AXIS ARTPEC
13819 M:      Jesper Nilsson <jesper.nilsson@axis.com>
13820 L:      linux-arm-kernel@axis.com
13821 L:      linux-pci@vger.kernel.org
13822 S:      Maintained
13823 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13824 F:      drivers/pci/controller/dwc/*artpec*
13825
13826 PCIE DRIVER FOR CAVIUM THUNDERX
13827 M:      Robert Richter <rric@kernel.org>
13828 L:      linux-pci@vger.kernel.org
13829 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13830 S:      Odd Fixes
13831 F:      drivers/pci/controller/pci-thunder-*
13832
13833 PCIE DRIVER FOR HISILICON
13834 M:      Zhou Wang <wangzhou1@hisilicon.com>
13835 L:      linux-pci@vger.kernel.org
13836 S:      Maintained
13837 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13838 F:      drivers/pci/controller/dwc/pcie-hisi.c
13839
13840 PCIE DRIVER FOR HISILICON KIRIN
13841 M:      Xiaowei Song <songxiaowei@hisilicon.com>
13842 M:      Binghui Wang <wangbinghui@hisilicon.com>
13843 L:      linux-pci@vger.kernel.org
13844 S:      Maintained
13845 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13846 F:      drivers/pci/controller/dwc/pcie-kirin.c
13847
13848 PCIE DRIVER FOR HISILICON STB
13849 M:      Shawn Guo <shawn.guo@linaro.org>
13850 L:      linux-pci@vger.kernel.org
13851 S:      Maintained
13852 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13853 F:      drivers/pci/controller/dwc/pcie-histb.c
13854
13855 PCIE DRIVER FOR MEDIATEK
13856 M:      Ryder Lee <ryder.lee@mediatek.com>
13857 L:      linux-pci@vger.kernel.org
13858 L:      linux-mediatek@lists.infradead.org
13859 S:      Supported
13860 F:      Documentation/devicetree/bindings/pci/mediatek*
13861 F:      drivers/pci/controller/*mediatek*
13862
13863 PCIE DRIVER FOR QUALCOMM MSM
13864 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
13865 L:      linux-pci@vger.kernel.org
13866 L:      linux-arm-msm@vger.kernel.org
13867 S:      Maintained
13868 F:      drivers/pci/controller/dwc/*qcom*
13869
13870 PCIE DRIVER FOR ROCKCHIP
13871 M:      Shawn Lin <shawn.lin@rock-chips.com>
13872 L:      linux-pci@vger.kernel.org
13873 L:      linux-rockchip@lists.infradead.org
13874 S:      Maintained
13875 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13876 F:      drivers/pci/controller/pcie-rockchip*
13877
13878 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13879 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
13880 L:      linux-pci@vger.kernel.org
13881 S:      Maintained
13882 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
13883 F:      drivers/pci/controller/dwc/pcie-uniphier*
13884
13885 PCIE DRIVER FOR ST SPEAR13XX
13886 M:      Pratyush Anand <pratyush.anand@gmail.com>
13887 L:      linux-pci@vger.kernel.org
13888 S:      Maintained
13889 F:      drivers/pci/controller/dwc/*spear*
13890
13891 PCMCIA SUBSYSTEM
13892 M:      Dominik Brodowski <linux@dominikbrodowski.net>
13893 S:      Odd Fixes
13894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13895 F:      Documentation/pcmcia/
13896 F:      drivers/pcmcia/
13897 F:      include/pcmcia/
13898 F:      tools/pcmcia/
13899
13900 PCNET32 NETWORK DRIVER
13901 M:      Don Fry <pcnet32@frontier.com>
13902 L:      netdev@vger.kernel.org
13903 S:      Maintained
13904 F:      drivers/net/ethernet/amd/pcnet32.c
13905
13906 PCRYPT PARALLEL CRYPTO ENGINE
13907 M:      Steffen Klassert <steffen.klassert@secunet.com>
13908 L:      linux-crypto@vger.kernel.org
13909 S:      Maintained
13910 F:      crypto/pcrypt.c
13911 F:      include/crypto/pcrypt.h
13912
13913 PEAQ WMI HOTKEYS DRIVER
13914 M:      Hans de Goede <hdegoede@redhat.com>
13915 L:      platform-driver-x86@vger.kernel.org
13916 S:      Maintained
13917 F:      drivers/platform/x86/peaq-wmi.c
13918
13919 PENSANDO ETHERNET DRIVERS
13920 M:      Shannon Nelson <snelson@pensando.io>
13921 M:      drivers@pensando.io
13922 L:      netdev@vger.kernel.org
13923 S:      Supported
13924 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
13925 F:      drivers/net/ethernet/pensando/
13926
13927 PER-CPU MEMORY ALLOCATOR
13928 M:      Dennis Zhou <dennis@kernel.org>
13929 M:      Tejun Heo <tj@kernel.org>
13930 M:      Christoph Lameter <cl@linux.com>
13931 S:      Maintained
13932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13933 F:      arch/*/include/asm/percpu.h
13934 F:      include/linux/percpu*.h
13935 F:      mm/percpu*.c
13936
13937 PER-TASK DELAY ACCOUNTING
13938 M:      Balbir Singh <bsingharora@gmail.com>
13939 S:      Maintained
13940 F:      include/linux/delayacct.h
13941 F:      kernel/delayacct.c
13942
13943 PERFORMANCE EVENTS SUBSYSTEM
13944 M:      Peter Zijlstra <peterz@infradead.org>
13945 M:      Ingo Molnar <mingo@redhat.com>
13946 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
13947 R:      Mark Rutland <mark.rutland@arm.com>
13948 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
13949 R:      Jiri Olsa <jolsa@redhat.com>
13950 R:      Namhyung Kim <namhyung@kernel.org>
13951 L:      linux-kernel@vger.kernel.org
13952 S:      Supported
13953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13954 F:      arch/*/events/*
13955 F:      arch/*/events/*/*
13956 F:      arch/*/include/asm/perf_event.h
13957 F:      arch/*/kernel/*/*/perf_event*.c
13958 F:      arch/*/kernel/*/perf_event*.c
13959 F:      arch/*/kernel/perf_callchain.c
13960 F:      arch/*/kernel/perf_event*.c
13961 F:      include/linux/perf_event.h
13962 F:      include/uapi/linux/perf_event.h
13963 F:      kernel/events/*
13964 F:      tools/lib/perf/
13965 F:      tools/perf/
13966
13967 PERFORMANCE EVENTS TOOLING ARM64
13968 R:      John Garry <john.garry@huawei.com>
13969 R:      Will Deacon <will@kernel.org>
13970 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
13971 R:      Leo Yan <leo.yan@linaro.org>
13972 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13973 S:      Supported
13974 F:      tools/build/feature/test-libopencsd.c
13975 F:      tools/perf/arch/arm*/
13976 F:      tools/perf/pmu-events/arch/arm64/
13977 F:      tools/perf/util/arm-spe*
13978 F:      tools/perf/util/cs-etm*
13979
13980 PERSONALITY HANDLING
13981 M:      Christoph Hellwig <hch@infradead.org>
13982 L:      linux-abi-devel@lists.sourceforge.net
13983 S:      Maintained
13984 F:      include/linux/personality.h
13985 F:      include/uapi/linux/personality.h
13986
13987 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13988 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13989 L:      linux-input@vger.kernel.org
13990 S:      Maintained
13991 F:      Documentation/input/devices/pxrc.rst
13992 F:      drivers/input/joystick/pxrc.c
13993
13994 PHONET PROTOCOL
13995 M:      Remi Denis-Courmont <courmisch@gmail.com>
13996 S:      Supported
13997 F:      Documentation/networking/phonet.rst
13998 F:      include/linux/phonet.h
13999 F:      include/net/phonet/
14000 F:      include/uapi/linux/phonet.h
14001 F:      net/phonet/
14002
14003 PHRAM MTD DRIVER
14004 M:      Joern Engel <joern@lazybastard.org>
14005 L:      linux-mtd@lists.infradead.org
14006 S:      Maintained
14007 F:      drivers/mtd/devices/phram.c
14008
14009 PICOLCD HID DRIVER
14010 M:      Bruno Prémont <bonbons@linux-vserver.org>
14011 L:      linux-input@vger.kernel.org
14012 S:      Maintained
14013 F:      drivers/hid/hid-picolcd*
14014
14015 PIDFD API
14016 M:      Christian Brauner <christian@brauner.io>
14017 L:      linux-kernel@vger.kernel.org
14018 S:      Maintained
14019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14020 F:      samples/pidfd/
14021 F:      tools/testing/selftests/clone3/
14022 F:      tools/testing/selftests/pid_namespace/
14023 F:      tools/testing/selftests/pidfd/
14024 K:      (?i)pidfd
14025 K:      (?i)clone3
14026 K:      \b(clone_args|kernel_clone_args)\b
14027
14028 PIN CONTROL SUBSYSTEM
14029 M:      Linus Walleij <linus.walleij@linaro.org>
14030 L:      linux-gpio@vger.kernel.org
14031 S:      Maintained
14032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14033 F:      Documentation/devicetree/bindings/pinctrl/
14034 F:      Documentation/driver-api/pinctl.rst
14035 F:      drivers/pinctrl/
14036 F:      include/linux/pinctrl/
14037
14038 PIN CONTROLLER - FREESCALE
14039 M:      Dong Aisheng <aisheng.dong@nxp.com>
14040 M:      Fabio Estevam <festevam@gmail.com>
14041 M:      Shawn Guo <shawnguo@kernel.org>
14042 M:      Stefan Agner <stefan@agner.ch>
14043 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
14044 L:      linux-gpio@vger.kernel.org
14045 S:      Maintained
14046 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
14047 F:      drivers/pinctrl/freescale/
14048
14049 PIN CONTROLLER - INTEL
14050 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
14051 M:      Andy Shevchenko <andy@kernel.org>
14052 S:      Maintained
14053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14054 F:      drivers/pinctrl/intel/
14055
14056 PIN CONTROLLER - MEDIATEK
14057 M:      Sean Wang <sean.wang@kernel.org>
14058 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14059 S:      Maintained
14060 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
14061 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
14062 F:      drivers/pinctrl/mediatek/
14063
14064 PIN CONTROLLER - MICROCHIP AT91
14065 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14067 L:      linux-gpio@vger.kernel.org
14068 S:      Supported
14069 F:      drivers/gpio/gpio-sama5d2-piobu.c
14070 F:      drivers/pinctrl/pinctrl-at91*
14071
14072 PIN CONTROLLER - QUALCOMM
14073 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14074 L:      linux-arm-msm@vger.kernel.org
14075 S:      Maintained
14076 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14077 F:      drivers/pinctrl/qcom/
14078
14079 PIN CONTROLLER - RENESAS
14080 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14081 L:      linux-renesas-soc@vger.kernel.org
14082 S:      Supported
14083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14084 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
14085 F:      drivers/pinctrl/renesas/
14086
14087 PIN CONTROLLER - SAMSUNG
14088 M:      Tomasz Figa <tomasz.figa@gmail.com>
14089 M:      Krzysztof Kozlowski <krzk@kernel.org>
14090 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14091 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14092 L:      linux-samsung-soc@vger.kernel.org
14093 S:      Maintained
14094 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
14095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14096 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14097 F:      drivers/pinctrl/samsung/
14098 F:      include/dt-bindings/pinctrl/samsung.h
14099
14100 PIN CONTROLLER - SINGLE
14101 M:      Tony Lindgren <tony@atomide.com>
14102 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
14103 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14104 L:      linux-omap@vger.kernel.org
14105 S:      Maintained
14106 F:      drivers/pinctrl/pinctrl-single.c
14107
14108 PIN CONTROLLER - ST SPEAR
14109 M:      Viresh Kumar <vireshk@kernel.org>
14110 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14111 S:      Maintained
14112 W:      http://www.st.com/spear
14113 F:      drivers/pinctrl/spear/
14114
14115 PISTACHIO SOC SUPPORT
14116 M:      James Hartley <james.hartley@sondrel.com>
14117 L:      linux-mips@vger.kernel.org
14118 S:      Odd Fixes
14119 F:      arch/mips/boot/dts/img/pistachio*
14120 F:      arch/mips/configs/pistachio*_defconfig
14121 F:      arch/mips/pistachio/
14122
14123 PKTCDVD DRIVER
14124 M:      linux-block@vger.kernel.org
14125 S:      Orphan
14126 F:      drivers/block/pktcdvd.c
14127 F:      include/linux/pktcdvd.h
14128 F:      include/uapi/linux/pktcdvd.h
14129
14130 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14131 M:      Tomasz Duszynski <tduszyns@gmail.com>
14132 S:      Maintained
14133 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14134 F:      drivers/iio/chemical/pms7003.c
14135
14136 PLDMFW LIBRARY
14137 M:      Jacob Keller <jacob.e.keller@intel.com>
14138 S:      Maintained
14139 F:      Documentation/driver-api/pldmfw/
14140 F:      include/linux/pldmfw.h
14141 F:      lib/pldmfw/
14142
14143 PLX DMA DRIVER
14144 M:      Logan Gunthorpe <logang@deltatee.com>
14145 S:      Maintained
14146 F:      drivers/dma/plx_dma.c
14147
14148 PM6764TR DRIVER
14149 M:      Charles Hsu     <hsu.yungteng@gmail.com>
14150 L:      linux-hwmon@vger.kernel.org
14151 S:      Maintained
14152 F:      Documentation/hwmon/pm6764tr.rst
14153 F:      drivers/hwmon/pmbus/pm6764tr.c
14154
14155 PM-GRAPH UTILITY
14156 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14157 L:      linux-pm@vger.kernel.org
14158 S:      Supported
14159 W:      https://01.org/pm-graph
14160 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14161 T:      git git://github.com/intel/pm-graph
14162 F:      tools/power/pm-graph
14163
14164 PMBUS HARDWARE MONITORING DRIVERS
14165 M:      Guenter Roeck <linux@roeck-us.net>
14166 L:      linux-hwmon@vger.kernel.org
14167 S:      Maintained
14168 W:      http://hwmon.wiki.kernel.org/
14169 W:      http://www.roeck-us.net/linux/drivers/
14170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14171 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14172 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
14173 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
14174 F:      Documentation/hwmon/adm1275.rst
14175 F:      Documentation/hwmon/ibm-cffps.rst
14176 F:      Documentation/hwmon/ir35221.rst
14177 F:      Documentation/hwmon/lm25066.rst
14178 F:      Documentation/hwmon/ltc2978.rst
14179 F:      Documentation/hwmon/ltc3815.rst
14180 F:      Documentation/hwmon/max16064.rst
14181 F:      Documentation/hwmon/max20751.rst
14182 F:      Documentation/hwmon/max31785.rst
14183 F:      Documentation/hwmon/max34440.rst
14184 F:      Documentation/hwmon/max8688.rst
14185 F:      Documentation/hwmon/pmbus-core.rst
14186 F:      Documentation/hwmon/pmbus.rst
14187 F:      Documentation/hwmon/tps40422.rst
14188 F:      Documentation/hwmon/ucd9000.rst
14189 F:      Documentation/hwmon/ucd9200.rst
14190 F:      Documentation/hwmon/zl6100.rst
14191 F:      drivers/hwmon/pmbus/
14192 F:      include/linux/pmbus.h
14193
14194 PMC SIERRA MaxRAID DRIVER
14195 L:      linux-scsi@vger.kernel.org
14196 S:      Orphan
14197 W:      http://www.pmc-sierra.com/
14198 F:      drivers/scsi/pmcraid.*
14199
14200 PMC SIERRA PM8001 DRIVER
14201 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14202 L:      linux-scsi@vger.kernel.org
14203 S:      Supported
14204 F:      drivers/scsi/pm8001/
14205
14206 PNI RM3100 IIO DRIVER
14207 M:      Song Qiang <songqiang1304521@gmail.com>
14208 L:      linux-iio@vger.kernel.org
14209 S:      Maintained
14210 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
14211 F:      drivers/iio/magnetometer/rm3100*
14212
14213 PNP SUPPORT
14214 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
14215 L:      linux-acpi@vger.kernel.org
14216 S:      Maintained
14217 F:      drivers/pnp/
14218 F:      include/linux/pnp.h
14219
14220 POSIX CLOCKS and TIMERS
14221 M:      Thomas Gleixner <tglx@linutronix.de>
14222 L:      linux-kernel@vger.kernel.org
14223 S:      Maintained
14224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
14225 F:      fs/timerfd.c
14226 F:      include/linux/time_namespace.h
14227 F:      include/linux/timer*
14228 F:      kernel/time/*timer*
14229 F:      kernel/time/namespace.c
14230
14231 POWER MANAGEMENT CORE
14232 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
14233 L:      linux-pm@vger.kernel.org
14234 S:      Supported
14235 B:      https://bugzilla.kernel.org
14236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14237 F:      drivers/base/power/
14238 F:      drivers/powercap/
14239 F:      include/linux/intel_rapl.h
14240 F:      include/linux/pm.h
14241 F:      include/linux/pm_*
14242 F:      include/linux/powercap.h
14243 F:      kernel/configs/nopm.config
14244
14245 POWER STATE COORDINATION INTERFACE (PSCI)
14246 M:      Mark Rutland <mark.rutland@arm.com>
14247 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14248 L:      linux-arm-kernel@lists.infradead.org
14249 S:      Maintained
14250 F:      drivers/firmware/psci/
14251 F:      include/linux/psci.h
14252 F:      include/uapi/linux/psci.h
14253
14254 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
14255 M:      Sebastian Reichel <sre@kernel.org>
14256 L:      linux-pm@vger.kernel.org
14257 S:      Maintained
14258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
14259 F:      Documentation/ABI/testing/sysfs-class-power
14260 F:      Documentation/devicetree/bindings/power/supply/
14261 F:      drivers/power/supply/
14262 F:      include/linux/power_supply.h
14263
14264 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
14265 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
14266 L:      linuxppc-dev@lists.ozlabs.org
14267 S:      Maintained
14268 F:      drivers/char/powernv-op-panel.c
14269
14270 PPP OVER ATM (RFC 2364)
14271 M:      Mitchell Blank Jr <mitch@sfgoth.com>
14272 S:      Maintained
14273 F:      include/uapi/linux/atmppp.h
14274 F:      net/atm/pppoatm.c
14275
14276 PPP OVER ETHERNET
14277 M:      Michal Ostrowski <mostrows@earthlink.net>
14278 S:      Maintained
14279 F:      drivers/net/ppp/pppoe.c
14280 F:      drivers/net/ppp/pppox.c
14281
14282 PPP OVER L2TP
14283 M:      James Chapman <jchapman@katalix.com>
14284 S:      Maintained
14285 F:      include/linux/if_pppol2tp.h
14286 F:      include/uapi/linux/if_pppol2tp.h
14287 F:      net/l2tp/l2tp_ppp.c
14288
14289 PPP PROTOCOL DRIVERS AND COMPRESSORS
14290 M:      Paul Mackerras <paulus@samba.org>
14291 L:      linux-ppp@vger.kernel.org
14292 S:      Maintained
14293 F:      drivers/net/ppp/ppp_*
14294
14295 PPS SUPPORT
14296 M:      Rodolfo Giometti <giometti@enneenne.com>
14297 L:      linuxpps@ml.enneenne.com (subscribers-only)
14298 S:      Maintained
14299 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
14300 F:      Documentation/ABI/testing/sysfs-pps
14301 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
14302 F:      Documentation/driver-api/pps.rst
14303 F:      drivers/pps/
14304 F:      include/linux/pps*.h
14305 F:      include/uapi/linux/pps.h
14306
14307 PPTP DRIVER
14308 M:      Dmitry Kozlov <xeb@mail.ru>
14309 L:      netdev@vger.kernel.org
14310 S:      Maintained
14311 W:      http://sourceforge.net/projects/accel-pptp
14312 F:      drivers/net/ppp/pptp.c
14313
14314 PRESSURE STALL INFORMATION (PSI)
14315 M:      Johannes Weiner <hannes@cmpxchg.org>
14316 S:      Maintained
14317 F:      include/linux/psi*
14318 F:      kernel/sched/psi.c
14319
14320 PRINTK
14321 M:      Petr Mladek <pmladek@suse.com>
14322 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
14323 R:      Steven Rostedt <rostedt@goodmis.org>
14324 R:      John Ogness <john.ogness@linutronix.de>
14325 S:      Maintained
14326 F:      include/linux/printk.h
14327 F:      kernel/printk/
14328
14329 PRISM54 WIRELESS DRIVER
14330 M:      Luis Chamberlain <mcgrof@kernel.org>
14331 L:      linux-wireless@vger.kernel.org
14332 S:      Obsolete
14333 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14334 F:      drivers/net/wireless/intersil/prism54/
14335
14336 PROC FILESYSTEM
14337 R:      Alexey Dobriyan <adobriyan@gmail.com>
14338 L:      linux-kernel@vger.kernel.org
14339 L:      linux-fsdevel@vger.kernel.org
14340 S:      Maintained
14341 F:      Documentation/filesystems/proc.rst
14342 F:      fs/proc/
14343 F:      include/linux/proc_fs.h
14344 F:      tools/testing/selftests/proc/
14345
14346 PROC SYSCTL
14347 M:      Luis Chamberlain <mcgrof@kernel.org>
14348 M:      Kees Cook <keescook@chromium.org>
14349 M:      Iurii Zaikin <yzaikin@google.com>
14350 L:      linux-kernel@vger.kernel.org
14351 L:      linux-fsdevel@vger.kernel.org
14352 S:      Maintained
14353 F:      fs/proc/proc_sysctl.c
14354 F:      include/linux/sysctl.h
14355 F:      kernel/sysctl-test.c
14356 F:      kernel/sysctl.c
14357 F:      tools/testing/selftests/sysctl/
14358
14359 PS3 NETWORK SUPPORT
14360 M:      Geoff Levand <geoff@infradead.org>
14361 L:      netdev@vger.kernel.org
14362 L:      linuxppc-dev@lists.ozlabs.org
14363 S:      Maintained
14364 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
14365
14366 PS3 PLATFORM SUPPORT
14367 M:      Geoff Levand <geoff@infradead.org>
14368 L:      linuxppc-dev@lists.ozlabs.org
14369 S:      Maintained
14370 F:      arch/powerpc/boot/ps3*
14371 F:      arch/powerpc/include/asm/lv1call.h
14372 F:      arch/powerpc/include/asm/ps3*.h
14373 F:      arch/powerpc/platforms/ps3/
14374 F:      drivers/*/ps3*
14375 F:      drivers/ps3/
14376 F:      drivers/rtc/rtc-ps3.c
14377 F:      drivers/usb/host/*ps3.c
14378 F:      sound/ppc/snd_ps3*
14379
14380 PS3VRAM DRIVER
14381 M:      Jim Paris <jim@jtan.com>
14382 M:      Geoff Levand <geoff@infradead.org>
14383 L:      linuxppc-dev@lists.ozlabs.org
14384 S:      Maintained
14385 F:      drivers/block/ps3vram.c
14386
14387 PSAMPLE PACKET SAMPLING SUPPORT
14388 M:      Yotam Gigi <yotam.gi@gmail.com>
14389 S:      Maintained
14390 F:      include/net/psample.h
14391 F:      include/uapi/linux/psample.h
14392 F:      net/psample
14393
14394 PSTORE FILESYSTEM
14395 M:      Kees Cook <keescook@chromium.org>
14396 M:      Anton Vorontsov <anton@enomsg.org>
14397 M:      Colin Cross <ccross@android.com>
14398 M:      Tony Luck <tony.luck@intel.com>
14399 S:      Maintained
14400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
14401 F:      Documentation/admin-guide/ramoops.rst
14402 F:      Documentation/admin-guide/pstore-blk.rst
14403 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
14404 F:      drivers/acpi/apei/erst.c
14405 F:      drivers/firmware/efi/efi-pstore.c
14406 F:      fs/pstore/
14407 F:      include/linux/pstore*
14408 K:      \b(pstore|ramoops)
14409
14410 PTP HARDWARE CLOCK SUPPORT
14411 M:      Richard Cochran <richardcochran@gmail.com>
14412 L:      netdev@vger.kernel.org
14413 S:      Maintained
14414 W:      http://linuxptp.sourceforge.net/
14415 F:      Documentation/ABI/testing/sysfs-ptp
14416 F:      Documentation/driver-api/ptp.rst
14417 F:      drivers/net/phy/dp83640*
14418 F:      drivers/ptp/*
14419 F:      include/linux/ptp_cl*
14420
14421 PTRACE SUPPORT
14422 M:      Oleg Nesterov <oleg@redhat.com>
14423 S:      Maintained
14424 F:      arch/*/*/ptrace*.c
14425 F:      arch/*/include/asm/ptrace*.h
14426 F:      arch/*/ptrace*.c
14427 F:      include/asm-generic/syscall.h
14428 F:      include/linux/ptrace.h
14429 F:      include/linux/regset.h
14430 F:      include/linux/tracehook.h
14431 F:      include/uapi/linux/ptrace.h
14432 F:      include/uapi/linux/ptrace.h
14433 F:      kernel/ptrace.c
14434
14435 PULSE8-CEC DRIVER
14436 M:      Hans Verkuil <hverkuil@xs4all.nl>
14437 L:      linux-media@vger.kernel.org
14438 S:      Maintained
14439 T:      git git://linuxtv.org/media_tree.git
14440 F:      Documentation/admin-guide/media/pulse8-cec.rst
14441 F:      drivers/media/cec/usb/pulse8/
14442
14443 PVRUSB2 VIDEO4LINUX DRIVER
14444 M:      Mike Isely <isely@pobox.com>
14445 L:      pvrusb2@isely.net       (subscribers-only)
14446 L:      linux-media@vger.kernel.org
14447 S:      Maintained
14448 W:      http://www.isely.net/pvrusb2/
14449 T:      git git://linuxtv.org/media_tree.git
14450 F:      Documentation/driver-api/media/drivers/pvrusb2*
14451 F:      drivers/media/usb/pvrusb2/
14452
14453 PWC WEBCAM DRIVER
14454 M:      Hans Verkuil <hverkuil@xs4all.nl>
14455 L:      linux-media@vger.kernel.org
14456 S:      Odd Fixes
14457 T:      git git://linuxtv.org/media_tree.git
14458 F:      drivers/media/usb/pwc/*
14459 F:      include/trace/events/pwc.h
14460
14461 PWM FAN DRIVER
14462 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14463 L:      linux-hwmon@vger.kernel.org
14464 S:      Supported
14465 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
14466 F:      Documentation/hwmon/pwm-fan.rst
14467 F:      drivers/hwmon/pwm-fan.c
14468
14469 PWM IR Transmitter
14470 M:      Sean Young <sean@mess.org>
14471 L:      linux-media@vger.kernel.org
14472 S:      Maintained
14473 F:      drivers/media/rc/pwm-ir-tx.c
14474
14475 PWM SUBSYSTEM
14476 M:      Thierry Reding <thierry.reding@gmail.com>
14477 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
14478 M:      Lee Jones <lee.jones@linaro.org>
14479 L:      linux-pwm@vger.kernel.org
14480 S:      Maintained
14481 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
14482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
14483 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
14484 F:      Documentation/devicetree/bindings/pwm/
14485 F:      Documentation/driver-api/pwm.rst
14486 F:      drivers/gpio/gpio-mvebu.c
14487 F:      drivers/pwm/
14488 F:      drivers/video/backlight/pwm_bl.c
14489 F:      include/linux/pwm.h
14490 F:      include/linux/pwm_backlight.h
14491 K:      pwm_(config|apply_state|ops)
14492
14493 PXA GPIO DRIVER
14494 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14495 L:      linux-gpio@vger.kernel.org
14496 S:      Maintained
14497 F:      drivers/gpio/gpio-pxa.c
14498
14499 PXA MMCI DRIVER
14500 S:      Orphan
14501
14502 PXA RTC DRIVER
14503 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14504 L:      linux-rtc@vger.kernel.org
14505 S:      Maintained
14506
14507 PXA2xx/PXA3xx SUPPORT
14508 M:      Daniel Mack <daniel@zonque.org>
14509 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
14510 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14511 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14512 S:      Maintained
14513 T:      git git://github.com/hzhuang1/linux.git
14514 T:      git git://github.com/rjarzmik/linux.git
14515 F:      arch/arm/boot/dts/pxa*
14516 F:      arch/arm/mach-pxa/
14517 F:      drivers/dma/pxa*
14518 F:      drivers/pcmcia/pxa2xx*
14519 F:      drivers/pinctrl/pxa/
14520 F:      drivers/spi/spi-pxa2xx*
14521 F:      drivers/usb/gadget/udc/pxa2*
14522 F:      include/sound/pxa2xx-lib.h
14523 F:      sound/arm/pxa*
14524 F:      sound/soc/pxa/
14525
14526 QAT DRIVER
14527 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
14528 L:      qat-linux@intel.com
14529 S:      Supported
14530 F:      drivers/crypto/qat/
14531
14532 QCOM AUDIO (ASoC) DRIVERS
14533 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14534 M:      Banajit Goswami <bgoswami@codeaurora.org>
14535 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14536 S:      Supported
14537 F:      sound/soc/codecs/lpass-va-macro.c
14538 F:      sound/soc/codecs/lpass-wsa-macro.*
14539 F:      sound/soc/codecs/msm8916-wcd-analog.c
14540 F:      sound/soc/codecs/msm8916-wcd-digital.c
14541 F:      sound/soc/codecs/wcd9335.*
14542 F:      sound/soc/codecs/wcd934x.c
14543 F:      sound/soc/codecs/wcd-clsh-v2.*
14544 F:      sound/soc/codecs/wsa881x.c
14545 F:      sound/soc/qcom/
14546
14547 QCOM IPA DRIVER
14548 M:      Alex Elder <elder@kernel.org>
14549 L:      netdev@vger.kernel.org
14550 S:      Supported
14551 F:      drivers/net/ipa/
14552
14553 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
14554 M:      Gabriel Somlo <somlo@cmu.edu>
14555 M:      "Michael S. Tsirkin" <mst@redhat.com>
14556 L:      qemu-devel@nongnu.org
14557 S:      Maintained
14558 F:      drivers/firmware/qemu_fw_cfg.c
14559 F:      include/uapi/linux/qemu_fw_cfg.h
14560
14561 QIB DRIVER
14562 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14563 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14564 L:      linux-rdma@vger.kernel.org
14565 S:      Supported
14566 F:      drivers/infiniband/hw/qib/
14567
14568 QLOGIC QL41xxx FCOE DRIVER
14569 M:      Saurav Kashyap <skashyap@marvell.com>
14570 M:      Javed Hasan <jhasan@marvell.com>
14571 M:      GR-QLogic-Storage-Upstream@marvell.com
14572 L:      linux-scsi@vger.kernel.org
14573 S:      Supported
14574 F:      drivers/scsi/qedf/
14575
14576 QLOGIC QL41xxx ISCSI DRIVER
14577 M:      Nilesh Javali <njavali@marvell.com>
14578 M:      Manish Rangankar <mrangankar@marvell.com>
14579 M:      GR-QLogic-Storage-Upstream@marvell.com
14580 L:      linux-scsi@vger.kernel.org
14581 S:      Supported
14582 F:      drivers/scsi/qedi/
14583
14584 QLOGIC QL4xxx ETHERNET DRIVER
14585 M:      Ariel Elior <aelior@marvell.com>
14586 M:      GR-everest-linux-l2@marvell.com
14587 L:      netdev@vger.kernel.org
14588 S:      Supported
14589 F:      drivers/net/ethernet/qlogic/qed/
14590 F:      drivers/net/ethernet/qlogic/qede/
14591 F:      include/linux/qed/
14592
14593 QLOGIC QL4xxx RDMA DRIVER
14594 M:      Michal Kalderon <mkalderon@marvell.com>
14595 M:      Ariel Elior <aelior@marvell.com>
14596 L:      linux-rdma@vger.kernel.org
14597 S:      Supported
14598 F:      drivers/infiniband/hw/qedr/
14599 F:      include/uapi/rdma/qedr-abi.h
14600
14601 QLOGIC QLA1280 SCSI DRIVER
14602 M:      Michael Reed <mdr@sgi.com>
14603 L:      linux-scsi@vger.kernel.org
14604 S:      Maintained
14605 F:      drivers/scsi/qla1280.[ch]
14606
14607 QLOGIC QLA2XXX FC-SCSI DRIVER
14608 M:      Nilesh Javali <njavali@marvell.com>
14609 M:      GR-QLogic-Storage-Upstream@marvell.com
14610 L:      linux-scsi@vger.kernel.org
14611 S:      Supported
14612 F:      drivers/scsi/qla2xxx/
14613
14614 QLOGIC QLA3XXX NETWORK DRIVER
14615 M:      GR-Linux-NIC-Dev@marvell.com
14616 L:      netdev@vger.kernel.org
14617 S:      Supported
14618 F:      drivers/net/ethernet/qlogic/qla3xxx.*
14619
14620 QLOGIC QLA4XXX iSCSI DRIVER
14621 M:      Nilesh Javali <njavali@marvell.com>
14622 M:      Manish Rangankar <mrangankar@marvell.com>
14623 M:      GR-QLogic-Storage-Upstream@marvell.com
14624 L:      linux-scsi@vger.kernel.org
14625 S:      Supported
14626 F:      drivers/scsi/qla4xxx/
14627
14628 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14629 M:      Shahed Shaikh <shshaikh@marvell.com>
14630 M:      Manish Chopra <manishc@marvell.com>
14631 M:      GR-Linux-NIC-Dev@marvell.com
14632 L:      netdev@vger.kernel.org
14633 S:      Supported
14634 F:      drivers/net/ethernet/qlogic/qlcnic/
14635
14636 QLOGIC QLGE 10Gb ETHERNET DRIVER
14637 M:      Manish Chopra <manishc@marvell.com>
14638 M:      GR-Linux-NIC-Dev@marvell.com
14639 L:      netdev@vger.kernel.org
14640 S:      Supported
14641 F:      drivers/staging/qlge/
14642
14643 QLOGIC QLGE 10Gb ETHERNET DRIVER
14644 M:      Coiby Xu <coiby.xu@gmail.com>
14645 L:      netdev@vger.kernel.org
14646 S:      Maintained
14647 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
14648
14649 QM1D1B0004 MEDIA DRIVER
14650 M:      Akihiro Tsukada <tskd08@gmail.com>
14651 L:      linux-media@vger.kernel.org
14652 S:      Odd Fixes
14653 F:      drivers/media/tuners/qm1d1b0004*
14654
14655 QM1D1C0042 MEDIA DRIVER
14656 M:      Akihiro Tsukada <tskd08@gmail.com>
14657 L:      linux-media@vger.kernel.org
14658 S:      Odd Fixes
14659 F:      drivers/media/tuners/qm1d1c0042*
14660
14661 QNX4 FILESYSTEM
14662 M:      Anders Larsen <al@alarsen.net>
14663 S:      Maintained
14664 W:      http://www.alarsen.net/linux/qnx4fs/
14665 F:      fs/qnx4/
14666 F:      include/uapi/linux/qnx4_fs.h
14667 F:      include/uapi/linux/qnxtypes.h
14668
14669 QORIQ DPAA2 FSL-MC BUS DRIVER
14670 M:      Stuart Yoder <stuyoder@gmail.com>
14671 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
14672 L:      linux-kernel@vger.kernel.org
14673 S:      Maintained
14674 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
14675 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
14676 F:      drivers/bus/fsl-mc/
14677
14678 QT1010 MEDIA DRIVER
14679 M:      Antti Palosaari <crope@iki.fi>
14680 L:      linux-media@vger.kernel.org
14681 S:      Maintained
14682 W:      https://linuxtv.org
14683 W:      http://palosaari.fi/linux/
14684 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14685 T:      git git://linuxtv.org/anttip/media_tree.git
14686 F:      drivers/media/tuners/qt1010*
14687
14688 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
14689 M:      Kalle Valo <kvalo@codeaurora.org>
14690 L:      ath10k@lists.infradead.org
14691 S:      Supported
14692 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
14693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14694 F:      drivers/net/wireless/ath/ath10k/
14695
14696 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
14697 M:      Kalle Valo <kvalo@codeaurora.org>
14698 L:      ath11k@lists.infradead.org
14699 S:      Supported
14700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14701 F:      drivers/net/wireless/ath/ath11k/
14702
14703 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
14704 M:      ath9k-devel@qca.qualcomm.com
14705 L:      linux-wireless@vger.kernel.org
14706 S:      Supported
14707 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
14708 F:      drivers/net/wireless/ath/ath9k/
14709
14710 QUALCOMM CAMERA SUBSYSTEM DRIVER
14711 M:      Robert Foss <robert.foss@linaro.org>
14712 M:      Todor Tomov <todor.too@gmail.com>
14713 L:      linux-media@vger.kernel.org
14714 S:      Maintained
14715 F:      Documentation/admin-guide/media/qcom_camss.rst
14716 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
14717 F:      drivers/media/platform/qcom/camss/
14718
14719 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
14720 M:      Niklas Cassel <nks@flawful.org>
14721 L:      linux-pm@vger.kernel.org
14722 L:      linux-arm-msm@vger.kernel.org
14723 S:      Maintained
14724 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
14725 F:      drivers/soc/qcom/cpr.c
14726
14727 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
14728 M:      Ilia Lin <ilia.lin@kernel.org>
14729 L:      linux-pm@vger.kernel.org
14730 S:      Maintained
14731 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
14732 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
14733
14734 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
14735 M:      Timur Tabi <timur@kernel.org>
14736 L:      netdev@vger.kernel.org
14737 S:      Maintained
14738 F:      drivers/net/ethernet/qualcomm/emac/
14739
14740 QUALCOMM ETHQOS ETHERNET DRIVER
14741 M:      Vinod Koul <vkoul@kernel.org>
14742 L:      netdev@vger.kernel.org
14743 S:      Maintained
14744 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
14745 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
14746
14747 QUALCOMM GENERIC INTERFACE I2C DRIVER
14748 M:      Akash Asthana <akashast@codeaurora.org>
14749 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
14750 L:      linux-i2c@vger.kernel.org
14751 L:      linux-arm-msm@vger.kernel.org
14752 S:      Supported
14753 F:      drivers/i2c/busses/i2c-qcom-geni.c
14754
14755 QUALCOMM HEXAGON ARCHITECTURE
14756 M:      Brian Cain <bcain@codeaurora.org>
14757 L:      linux-hexagon@vger.kernel.org
14758 S:      Supported
14759 F:      arch/hexagon/
14760
14761 QUALCOMM HIDMA DRIVER
14762 M:      Sinan Kaya <okaya@kernel.org>
14763 L:      linux-arm-kernel@lists.infradead.org
14764 L:      linux-arm-msm@vger.kernel.org
14765 L:      dmaengine@vger.kernel.org
14766 S:      Supported
14767 F:      drivers/dma/qcom/hidma*
14768
14769 QUALCOMM I2C CCI DRIVER
14770 M:      Loic Poulain <loic.poulain@linaro.org>
14771 M:      Robert Foss <robert.foss@linaro.org>
14772 L:      linux-i2c@vger.kernel.org
14773 L:      linux-arm-msm@vger.kernel.org
14774 S:      Maintained
14775 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
14776 F:      drivers/i2c/busses/i2c-qcom-cci.c
14777
14778 QUALCOMM IOMMU
14779 M:      Rob Clark <robdclark@gmail.com>
14780 L:      iommu@lists.linux-foundation.org
14781 L:      linux-arm-msm@vger.kernel.org
14782 S:      Maintained
14783 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
14784
14785 QUALCOMM IPCC MAILBOX DRIVER
14786 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
14787 L:      linux-arm-msm@vger.kernel.org
14788 S:      Supported
14789 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
14790 F:      drivers/mailbox/qcom-ipcc.c
14791 F:      include/dt-bindings/mailbox/qcom-ipcc.h
14792
14793 QUALCOMM IPQ4019 USB PHY DRIVER
14794 M:      Robert Marko <robert.marko@sartura.hr>
14795 M:      Luka Perkov <luka.perkov@sartura.hr>
14796 L:      linux-arm-msm@vger.kernel.org
14797 S:      Maintained
14798 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
14799 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
14800
14801 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
14802 M:      Robert Marko <robert.marko@sartura.hr>
14803 M:      Luka Perkov <luka.perkov@sartura.hr>
14804 L:      linux-arm-msm@vger.kernel.org
14805 S:      Maintained
14806 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
14807 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
14808
14809 QUALCOMM RMNET DRIVER
14810 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
14811 M:      Sean Tranchetti <stranche@codeaurora.org>
14812 L:      netdev@vger.kernel.org
14813 S:      Maintained
14814 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
14815 F:      drivers/net/ethernet/qualcomm/rmnet/
14816 F:      include/linux/if_rmnet.h
14817
14818 QUALCOMM TSENS THERMAL DRIVER
14819 M:      Amit Kucheria <amitk@kernel.org>
14820 L:      linux-pm@vger.kernel.org
14821 L:      linux-arm-msm@vger.kernel.org
14822 S:      Maintained
14823 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14824 F:      drivers/thermal/qcom/
14825
14826 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14827 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
14828 L:      linux-media@vger.kernel.org
14829 L:      linux-arm-msm@vger.kernel.org
14830 S:      Maintained
14831 T:      git git://linuxtv.org/media_tree.git
14832 F:      Documentation/devicetree/bindings/media/*venus*
14833 F:      drivers/media/platform/qcom/venus/
14834
14835 QUALCOMM WCN36XX WIRELESS DRIVER
14836 M:      Kalle Valo <kvalo@codeaurora.org>
14837 L:      wcn36xx@lists.infradead.org
14838 S:      Supported
14839 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
14840 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14841 F:      drivers/net/wireless/ath/wcn36xx/
14842
14843 QUANTENNA QTNFMAC WIRELESS DRIVER
14844 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
14845 R:      Sergey Matyukevich <geomatsi@gmail.com>
14846 L:      linux-wireless@vger.kernel.org
14847 S:      Maintained
14848 F:      drivers/net/wireless/quantenna
14849
14850 RADEON and AMDGPU DRM DRIVERS
14851 M:      Alex Deucher <alexander.deucher@amd.com>
14852 M:      Christian König <christian.koenig@amd.com>
14853 L:      amd-gfx@lists.freedesktop.org
14854 S:      Supported
14855 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
14856 F:      drivers/gpu/drm/amd/
14857 F:      drivers/gpu/drm/radeon/
14858 F:      include/uapi/drm/amdgpu_drm.h
14859 F:      include/uapi/drm/radeon_drm.h
14860
14861 RADEON FRAMEBUFFER DISPLAY DRIVER
14862 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
14863 L:      linux-fbdev@vger.kernel.org
14864 S:      Maintained
14865 F:      drivers/video/fbdev/aty/radeon*
14866 F:      include/uapi/linux/radeonfb.h
14867
14868 RADIOSHARK RADIO DRIVER
14869 M:      Hans Verkuil <hverkuil@xs4all.nl>
14870 L:      linux-media@vger.kernel.org
14871 S:      Maintained
14872 T:      git git://linuxtv.org/media_tree.git
14873 F:      drivers/media/radio/radio-shark.c
14874
14875 RADIOSHARK2 RADIO DRIVER
14876 M:      Hans Verkuil <hverkuil@xs4all.nl>
14877 L:      linux-media@vger.kernel.org
14878 S:      Maintained
14879 T:      git git://linuxtv.org/media_tree.git
14880 F:      drivers/media/radio/radio-shark2.c
14881 F:      drivers/media/radio/radio-tea5777.c
14882
14883 RADOS BLOCK DEVICE (RBD)
14884 M:      Ilya Dryomov <idryomov@gmail.com>
14885 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
14886 L:      ceph-devel@vger.kernel.org
14887 S:      Supported
14888 W:      http://ceph.com/
14889 T:      git git://github.com/ceph/ceph-client.git
14890 F:      Documentation/ABI/testing/sysfs-bus-rbd
14891 F:      drivers/block/rbd.c
14892 F:      drivers/block/rbd_types.h
14893
14894 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14895 M:      Paul Mackerras <paulus@samba.org>
14896 L:      linux-fbdev@vger.kernel.org
14897 S:      Maintained
14898 F:      drivers/video/fbdev/aty/aty128fb.c
14899
14900 RAINSHADOW-CEC DRIVER
14901 M:      Hans Verkuil <hverkuil@xs4all.nl>
14902 L:      linux-media@vger.kernel.org
14903 S:      Maintained
14904 T:      git git://linuxtv.org/media_tree.git
14905 F:      drivers/media/cec/usb/rainshadow/
14906
14907 RALINK MIPS ARCHITECTURE
14908 M:      John Crispin <john@phrozen.org>
14909 L:      linux-mips@vger.kernel.org
14910 S:      Maintained
14911 F:      arch/mips/ralink
14912
14913 RALINK RT2X00 WIRELESS LAN DRIVER
14914 M:      Stanislaw Gruszka <stf_xl@wp.pl>
14915 M:      Helmut Schaa <helmut.schaa@googlemail.com>
14916 L:      linux-wireless@vger.kernel.org
14917 S:      Maintained
14918 F:      drivers/net/wireless/ralink/rt2x00/
14919
14920 RAMDISK RAM BLOCK DEVICE DRIVER
14921 M:      Jens Axboe <axboe@kernel.dk>
14922 S:      Maintained
14923 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14924 F:      drivers/block/brd.c
14925
14926 RANCHU VIRTUAL BOARD FOR MIPS
14927 M:      Miodrag Dinic <miodrag.dinic@mips.com>
14928 L:      linux-mips@vger.kernel.org
14929 S:      Supported
14930 F:      arch/mips/configs/generic/board-ranchu.config
14931 F:      arch/mips/generic/board-ranchu.c
14932
14933 RANDOM NUMBER DRIVER
14934 M:      "Theodore Ts'o" <tytso@mit.edu>
14935 S:      Maintained
14936 F:      drivers/char/random.c
14937
14938 RAPIDIO SUBSYSTEM
14939 M:      Matt Porter <mporter@kernel.crashing.org>
14940 M:      Alexandre Bounine <alex.bou9@gmail.com>
14941 S:      Maintained
14942 F:      drivers/rapidio/
14943
14944 RAS INFRASTRUCTURE
14945 M:      Tony Luck <tony.luck@intel.com>
14946 M:      Borislav Petkov <bp@alien8.de>
14947 L:      linux-edac@vger.kernel.org
14948 S:      Maintained
14949 F:      Documentation/admin-guide/ras.rst
14950 F:      drivers/ras/
14951 F:      include/linux/ras.h
14952 F:      include/ras/ras_event.h
14953
14954 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14955 L:      linux-wireless@vger.kernel.org
14956 S:      Orphan
14957 F:      drivers/net/wireless/ray*
14958
14959 RC-CORE / LIRC FRAMEWORK
14960 M:      Sean Young <sean@mess.org>
14961 L:      linux-media@vger.kernel.org
14962 S:      Maintained
14963 W:      http://linuxtv.org
14964 T:      git git://linuxtv.org/media_tree.git
14965 F:      Documentation/driver-api/media/rc-core.rst
14966 F:      Documentation/userspace-api/media/rc/
14967 F:      drivers/media/rc/
14968 F:      include/media/rc-map.h
14969 F:      include/media/rc-core.h
14970 F:      include/uapi/linux/lirc.h
14971
14972 RCMM REMOTE CONTROLS DECODER
14973 M:      Patrick Lerda <patrick9876@free.fr>
14974 S:      Maintained
14975 F:      drivers/media/rc/ir-rcmm-decoder.c
14976
14977 RCUTORTURE TEST FRAMEWORK
14978 M:      "Paul E. McKenney" <paulmck@kernel.org>
14979 M:      Josh Triplett <josh@joshtriplett.org>
14980 R:      Steven Rostedt <rostedt@goodmis.org>
14981 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14982 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14983 L:      rcu@vger.kernel.org
14984 S:      Supported
14985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14986 F:      tools/testing/selftests/rcutorture
14987
14988 RDACM20 Camera Sensor
14989 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
14990 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
14991 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
14992 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
14993 L:      linux-media@vger.kernel.org
14994 S:      Maintained
14995 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
14996 F:      drivers/media/i2c/max9271.c
14997 F:      drivers/media/i2c/max9271.h
14998 F:      drivers/media/i2c/rdacm20.c
14999
15000 RDACM21 Camera Sensor
15001 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15002 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15003 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15004 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15005 L:      linux-media@vger.kernel.org
15006 S:      Maintained
15007 F:      Documentation/devicetree/bindings/media/i2c/rdacm2x-gmsl.yaml
15008 F:      drivers/media/i2c/max9271.c
15009 F:      drivers/media/i2c/max9271.h
15010 F:      drivers/media/i2c/rdacm21.c
15011
15012 RDC R-321X SoC
15013 M:      Florian Fainelli <florian@openwrt.org>
15014 S:      Maintained
15015
15016 RDC R6040 FAST ETHERNET DRIVER
15017 M:      Florian Fainelli <f.fainelli@gmail.com>
15018 L:      netdev@vger.kernel.org
15019 S:      Maintained
15020 F:      drivers/net/ethernet/rdc/r6040.c
15021
15022 RDMAVT - RDMA verbs software
15023 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15024 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15025 L:      linux-rdma@vger.kernel.org
15026 S:      Supported
15027 F:      drivers/infiniband/sw/rdmavt
15028
15029 RDS - RELIABLE DATAGRAM SOCKETS
15030 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
15031 L:      netdev@vger.kernel.org
15032 L:      linux-rdma@vger.kernel.org
15033 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
15034 S:      Supported
15035 W:      https://oss.oracle.com/projects/rds/
15036 F:      Documentation/networking/rds.rst
15037 F:      net/rds/
15038
15039 RDT - RESOURCE ALLOCATION
15040 M:      Fenghua Yu <fenghua.yu@intel.com>
15041 M:      Reinette Chatre <reinette.chatre@intel.com>
15042 L:      linux-kernel@vger.kernel.org
15043 S:      Supported
15044 F:      Documentation/x86/resctrl*
15045 F:      arch/x86/include/asm/resctrl.h
15046 F:      arch/x86/kernel/cpu/resctrl/
15047 F:      tools/testing/selftests/resctrl/
15048
15049 READ-COPY UPDATE (RCU)
15050 M:      "Paul E. McKenney" <paulmck@kernel.org>
15051 M:      Josh Triplett <josh@joshtriplett.org>
15052 R:      Steven Rostedt <rostedt@goodmis.org>
15053 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15054 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15055 R:      Joel Fernandes <joel@joelfernandes.org>
15056 L:      rcu@vger.kernel.org
15057 S:      Supported
15058 W:      http://www.rdrop.com/users/paulmck/RCU/
15059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15060 F:      Documentation/RCU/
15061 F:      include/linux/rcu*
15062 F:      kernel/rcu/
15063 X:      Documentation/RCU/torture.rst
15064 X:      include/linux/srcu*.h
15065 X:      kernel/rcu/srcu*.c
15066
15067 REAL TIME CLOCK (RTC) SUBSYSTEM
15068 M:      Alessandro Zummo <a.zummo@towertech.it>
15069 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
15070 L:      linux-rtc@vger.kernel.org
15071 S:      Maintained
15072 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
15073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15074 F:      Documentation/admin-guide/rtc.rst
15075 F:      Documentation/devicetree/bindings/rtc/
15076 F:      drivers/rtc/
15077 F:      include/linux/platform_data/rtc-*
15078 F:      include/linux/rtc.h
15079 F:      include/linux/rtc/
15080 F:      include/uapi/linux/rtc.h
15081 F:      tools/testing/selftests/rtc/
15082
15083 REALTEK AUDIO CODECS
15084 M:      Oder Chiou <oder_chiou@realtek.com>
15085 S:      Maintained
15086 F:      include/sound/rt*.h
15087 F:      sound/soc/codecs/rt*
15088
15089 REALTEK RTL83xx SMI DSA ROUTER CHIPS
15090 M:      Linus Walleij <linus.walleij@linaro.org>
15091 S:      Maintained
15092 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
15093 F:      drivers/net/dsa/realtek-smi*
15094 F:      drivers/net/dsa/rtl83*
15095
15096 REALTEK WIRELESS DRIVER (rtlwifi family)
15097 M:      Ping-Ke Shih <pkshih@realtek.com>
15098 L:      linux-wireless@vger.kernel.org
15099 S:      Maintained
15100 W:      https://wireless.wiki.kernel.org/
15101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15102 F:      drivers/net/wireless/realtek/rtlwifi/
15103
15104 REALTEK WIRELESS DRIVER (rtw88)
15105 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
15106 L:      linux-wireless@vger.kernel.org
15107 S:      Maintained
15108 F:      drivers/net/wireless/realtek/rtw88/
15109
15110 REDPINE WIRELESS DRIVER
15111 M:      Amitkumar Karwar <amitkarwar@gmail.com>
15112 M:      Siva Rebbagondla <siva8118@gmail.com>
15113 L:      linux-wireless@vger.kernel.org
15114 S:      Maintained
15115 F:      drivers/net/wireless/rsi/
15116
15117 REGISTER MAP ABSTRACTION
15118 M:      Mark Brown <broonie@kernel.org>
15119 L:      linux-kernel@vger.kernel.org
15120 S:      Supported
15121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15122 F:      Documentation/devicetree/bindings/regmap/
15123 F:      drivers/base/regmap/
15124 F:      include/linux/regmap.h
15125
15126 REISERFS FILE SYSTEM
15127 L:      reiserfs-devel@vger.kernel.org
15128 S:      Supported
15129 F:      fs/reiserfs/
15130
15131 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15132 M:      Ohad Ben-Cohen <ohad@wizery.com>
15133 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15134 L:      linux-remoteproc@vger.kernel.org
15135 S:      Maintained
15136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15137 F:      Documentation/ABI/testing/sysfs-class-remoteproc
15138 F:      Documentation/devicetree/bindings/remoteproc/
15139 F:      Documentation/staging/remoteproc.rst
15140 F:      drivers/remoteproc/
15141 F:      include/linux/remoteproc.h
15142 F:      include/linux/remoteproc/
15143
15144 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15145 M:      Ohad Ben-Cohen <ohad@wizery.com>
15146 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15147 L:      linux-remoteproc@vger.kernel.org
15148 S:      Maintained
15149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15150 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
15151 F:      Documentation/staging/rpmsg.rst
15152 F:      drivers/rpmsg/
15153 F:      include/linux/rpmsg.h
15154 F:      include/linux/rpmsg/
15155 F:      include/uapi/linux/rpmsg.h
15156 F:      samples/rpmsg/
15157
15158 RENESAS CLOCK DRIVERS
15159 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15160 L:      linux-renesas-soc@vger.kernel.org
15161 S:      Supported
15162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
15163 F:      Documentation/devicetree/bindings/clock/renesas,*
15164 F:      drivers/clk/renesas/
15165
15166 RENESAS EMEV2 I2C DRIVER
15167 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15168 S:      Supported
15169 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
15170 F:      drivers/i2c/busses/i2c-emev2.c
15171
15172 RENESAS ETHERNET DRIVERS
15173 R:      Sergei Shtylyov <sergei.shtylyov@gmail.com>
15174 L:      netdev@vger.kernel.org
15175 L:      linux-renesas-soc@vger.kernel.org
15176 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
15177 F:      drivers/net/ethernet/renesas/
15178 F:      include/linux/sh_eth.h
15179
15180 RENESAS R-CAR GYROADC DRIVER
15181 M:      Marek Vasut <marek.vasut@gmail.com>
15182 L:      linux-iio@vger.kernel.org
15183 S:      Supported
15184 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
15185 F:      drivers/iio/adc/rcar-gyroadc.c
15186
15187 RENESAS R-CAR I2C DRIVERS
15188 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15189 S:      Supported
15190 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
15191 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
15192 F:      drivers/i2c/busses/i2c-rcar.c
15193 F:      drivers/i2c/busses/i2c-sh_mobile.c
15194
15195 RENESAS R-CAR THERMAL DRIVERS
15196 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
15197 L:      linux-renesas-soc@vger.kernel.org
15198 S:      Supported
15199 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
15200 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
15201 F:      drivers/thermal/rcar_gen3_thermal.c
15202 F:      drivers/thermal/rcar_thermal.c
15203
15204 RENESAS RIIC DRIVER
15205 M:      Chris Brandt <chris.brandt@renesas.com>
15206 S:      Supported
15207 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
15208 F:      drivers/i2c/busses/i2c-riic.c
15209
15210 RENESAS USB PHY DRIVER
15211 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15212 L:      linux-renesas-soc@vger.kernel.org
15213 S:      Maintained
15214 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
15215
15216 RESET CONTROLLER FRAMEWORK
15217 M:      Philipp Zabel <p.zabel@pengutronix.de>
15218 S:      Maintained
15219 T:      git git://git.pengutronix.de/git/pza/linux
15220 F:      Documentation/devicetree/bindings/reset/
15221 F:      Documentation/driver-api/reset.rst
15222 F:      drivers/reset/
15223 F:      include/dt-bindings/reset/
15224 F:      include/linux/reset-controller.h
15225 F:      include/linux/reset.h
15226 F:      include/linux/reset/
15227 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
15228
15229 RESTARTABLE SEQUENCES SUPPORT
15230 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15231 M:      Peter Zijlstra <peterz@infradead.org>
15232 M:      "Paul E. McKenney" <paulmck@kernel.org>
15233 M:      Boqun Feng <boqun.feng@gmail.com>
15234 L:      linux-kernel@vger.kernel.org
15235 S:      Supported
15236 F:      include/trace/events/rseq.h
15237 F:      include/uapi/linux/rseq.h
15238 F:      kernel/rseq.c
15239 F:      tools/testing/selftests/rseq/
15240
15241 RFKILL
15242 M:      Johannes Berg <johannes@sipsolutions.net>
15243 L:      linux-wireless@vger.kernel.org
15244 S:      Maintained
15245 W:      https://wireless.wiki.kernel.org/
15246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
15247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
15248 F:      Documentation/ABI/stable/sysfs-class-rfkill
15249 F:      Documentation/driver-api/rfkill.rst
15250 F:      include/linux/rfkill.h
15251 F:      include/uapi/linux/rfkill.h
15252 F:      net/rfkill/
15253
15254 RHASHTABLE
15255 M:      Thomas Graf <tgraf@suug.ch>
15256 M:      Herbert Xu <herbert@gondor.apana.org.au>
15257 L:      netdev@vger.kernel.org
15258 S:      Maintained
15259 F:      include/linux/rhashtable-types.h
15260 F:      include/linux/rhashtable.h
15261 F:      lib/rhashtable.c
15262 F:      lib/test_rhashtable.c
15263
15264 RICOH R5C592 MEMORYSTICK DRIVER
15265 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15266 S:      Maintained
15267 F:      drivers/memstick/host/r592.*
15268
15269 RICOH SMARTMEDIA/XD DRIVER
15270 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15271 S:      Maintained
15272 F:      drivers/mtd/nand/raw/r852.c
15273 F:      drivers/mtd/nand/raw/r852.h
15274
15275 RISC-V ARCHITECTURE
15276 M:      Paul Walmsley <paul.walmsley@sifive.com>
15277 M:      Palmer Dabbelt <palmer@dabbelt.com>
15278 M:      Albert Ou <aou@eecs.berkeley.edu>
15279 L:      linux-riscv@lists.infradead.org
15280 S:      Supported
15281 P:      Documentation/riscv/patch-acceptance.rst
15282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
15283 F:      arch/riscv/
15284 N:      riscv
15285 K:      riscv
15286
15287 RNBD BLOCK DRIVERS
15288 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
15289 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15290 L:      linux-block@vger.kernel.org
15291 S:      Maintained
15292 F:      drivers/block/rnbd/
15293
15294 ROCCAT DRIVERS
15295 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
15296 S:      Maintained
15297 W:      http://sourceforge.net/projects/roccat/
15298 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
15299 F:      drivers/hid/hid-roccat*
15300 F:      include/linux/hid-roccat*
15301
15302 ROCKCHIP ISP V1 DRIVER
15303 M:      Helen Koike <helen.koike@collabora.com>
15304 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
15305 L:      linux-media@vger.kernel.org
15306 L:      linux-rockchip@lists.infradead.org
15307 S:      Maintained
15308 F:      Documentation/admin-guide/media/rkisp1.rst
15309 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
15310 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
15311 F:      drivers/media/platform/rockchip/rkisp1
15312 F:      include/uapi/linux/rkisp1-config.h
15313
15314 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
15315 M:      Jacob Chen <jacob-chen@iotwrt.com>
15316 M:      Ezequiel Garcia <ezequiel@collabora.com>
15317 L:      linux-media@vger.kernel.org
15318 L:      linux-rockchip@lists.infradead.org
15319 S:      Maintained
15320 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
15321 F:      drivers/media/platform/rockchip/rga/
15322
15323 ROCKCHIP VIDEO DECODER DRIVER
15324 M:      Ezequiel Garcia <ezequiel@collabora.com>
15325 L:      linux-media@vger.kernel.org
15326 L:      linux-rockchip@lists.infradead.org
15327 S:      Maintained
15328 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
15329 F:      drivers/staging/media/rkvdec/
15330
15331 ROCKER DRIVER
15332 M:      Jiri Pirko <jiri@resnulli.us>
15333 L:      netdev@vger.kernel.org
15334 S:      Supported
15335 F:      drivers/net/ethernet/rocker/
15336
15337 ROCKETPORT DRIVER
15338 S:      Maintained
15339 W:      http://www.comtrol.com
15340 F:      Documentation/driver-api/serial/rocket.rst
15341 F:      drivers/tty/rocket*
15342
15343 ROCKETPORT EXPRESS/INFINITY DRIVER
15344 M:      Kevin Cernekee <cernekee@gmail.com>
15345 L:      linux-serial@vger.kernel.org
15346 S:      Odd Fixes
15347 F:      drivers/tty/serial/rp2.*
15348
15349 ROHM BD99954 CHARGER IC
15350 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15351 L:      linux-power@fi.rohmeurope.com
15352 S:      Supported
15353 F:      drivers/power/supply/bd99954-charger.c
15354 F:      drivers/power/supply/bd99954-charger.h
15355
15356 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
15357 M:      Tomasz Duszynski <tduszyns@gmail.com>
15358 S:      Maintained
15359 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
15360 F:      drivers/iio/light/bh1750.c
15361
15362 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
15363 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15364 L:      linux-kernel@vger.kernel.org
15365 L:      linux-renesas-soc@vger.kernel.org
15366 S:      Supported
15367 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
15368 F:      drivers/gpio/gpio-bd9571mwv.c
15369 F:      drivers/mfd/bd9571mwv.c
15370 F:      drivers/regulator/bd9571mwv-regulator.c
15371 F:      include/linux/mfd/bd9571mwv.h
15372
15373 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
15374 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15375 L:      linux-power@fi.rohmeurope.com
15376 S:      Supported
15377 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
15378 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
15379 F:      drivers/clk/clk-bd718x7.c
15380 F:      drivers/gpio/gpio-bd70528.c
15381 F:      drivers/gpio/gpio-bd71828.c
15382 F:      drivers/mfd/rohm-bd70528.c
15383 F:      drivers/mfd/rohm-bd71828.c
15384 F:      drivers/mfd/rohm-bd718x7.c
15385 F:      drivers/power/supply/bd70528-charger.c
15386 F:      drivers/regulator/bd70528-regulator.c
15387 F:      drivers/regulator/bd71828-regulator.c
15388 F:      drivers/regulator/bd718x7-regulator.c
15389 F:      drivers/regulator/rohm-regulator.c
15390 F:      drivers/rtc/rtc-bd70528.c
15391 F:      drivers/watchdog/bd70528_wdt.c
15392 F:      include/linux/mfd/rohm-bd70528.h
15393 F:      include/linux/mfd/rohm-bd71828.h
15394 F:      include/linux/mfd/rohm-bd718x7.h
15395 F:      include/linux/mfd/rohm-generic.h
15396 F:      include/linux/mfd/rohm-shared.h
15397
15398 ROSE NETWORK LAYER
15399 M:      Ralf Baechle <ralf@linux-mips.org>
15400 L:      linux-hams@vger.kernel.org
15401 S:      Maintained
15402 W:      http://www.linux-ax25.org/
15403 F:      include/net/rose.h
15404 F:      include/uapi/linux/rose.h
15405 F:      net/rose/
15406
15407 ROTATION DRIVER FOR ALLWINNER A83T
15408 M:      Jernej Skrabec <jernej.skrabec@siol.net>
15409 L:      linux-media@vger.kernel.org
15410 S:      Maintained
15411 T:      git git://linuxtv.org/media_tree.git
15412 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
15413 F:      drivers/media/platform/sunxi/sun8i-rotate/
15414
15415 RTL2830 MEDIA DRIVER
15416 M:      Antti Palosaari <crope@iki.fi>
15417 L:      linux-media@vger.kernel.org
15418 S:      Maintained
15419 W:      https://linuxtv.org
15420 W:      http://palosaari.fi/linux/
15421 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15422 T:      git git://linuxtv.org/anttip/media_tree.git
15423 F:      drivers/media/dvb-frontends/rtl2830*
15424
15425 RTL2832 MEDIA DRIVER
15426 M:      Antti Palosaari <crope@iki.fi>
15427 L:      linux-media@vger.kernel.org
15428 S:      Maintained
15429 W:      https://linuxtv.org
15430 W:      http://palosaari.fi/linux/
15431 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15432 T:      git git://linuxtv.org/anttip/media_tree.git
15433 F:      drivers/media/dvb-frontends/rtl2832*
15434
15435 RTL2832_SDR MEDIA DRIVER
15436 M:      Antti Palosaari <crope@iki.fi>
15437 L:      linux-media@vger.kernel.org
15438 S:      Maintained
15439 W:      https://linuxtv.org
15440 W:      http://palosaari.fi/linux/
15441 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15442 T:      git git://linuxtv.org/anttip/media_tree.git
15443 F:      drivers/media/dvb-frontends/rtl2832_sdr*
15444
15445 RTL8180 WIRELESS DRIVER
15446 L:      linux-wireless@vger.kernel.org
15447 S:      Orphan
15448 W:      https://wireless.wiki.kernel.org/
15449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15450 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
15451
15452 RTL8187 WIRELESS DRIVER
15453 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
15454 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
15455 M:      Larry Finger <Larry.Finger@lwfinger.net>
15456 L:      linux-wireless@vger.kernel.org
15457 S:      Maintained
15458 W:      https://wireless.wiki.kernel.org/
15459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15460 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
15461
15462 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
15463 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
15464 L:      linux-wireless@vger.kernel.org
15465 S:      Maintained
15466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
15467 F:      drivers/net/wireless/realtek/rtl8xxxu/
15468
15469 RTRS TRANSPORT DRIVERS
15470 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
15471 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15472 L:      linux-rdma@vger.kernel.org
15473 S:      Maintained
15474 F:      drivers/infiniband/ulp/rtrs/
15475
15476 RXRPC SOCKETS (AF_RXRPC)
15477 M:      David Howells <dhowells@redhat.com>
15478 L:      linux-afs@lists.infradead.org
15479 S:      Supported
15480 W:      https://www.infradead.org/~dhowells/kafs/
15481 F:      Documentation/networking/rxrpc.rst
15482 F:      include/keys/rxrpc-type.h
15483 F:      include/net/af_rxrpc.h
15484 F:      include/trace/events/rxrpc.h
15485 F:      include/uapi/linux/rxrpc.h
15486 F:      net/rxrpc/
15487
15488 S3 SAVAGE FRAMEBUFFER DRIVER
15489 M:      Antonino Daplas <adaplas@gmail.com>
15490 L:      linux-fbdev@vger.kernel.org
15491 S:      Maintained
15492 F:      drivers/video/fbdev/savage/
15493
15494 S390
15495 M:      Heiko Carstens <hca@linux.ibm.com>
15496 M:      Vasily Gorbik <gor@linux.ibm.com>
15497 M:      Christian Borntraeger <borntraeger@de.ibm.com>
15498 L:      linux-s390@vger.kernel.org
15499 S:      Supported
15500 W:      http://www.ibm.com/developerworks/linux/linux390/
15501 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
15502 F:      Documentation/driver-api/s390-drivers.rst
15503 F:      Documentation/s390/
15504 F:      arch/s390/
15505 F:      drivers/s390/
15506
15507 S390 COMMON I/O LAYER
15508 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
15509 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
15510 L:      linux-s390@vger.kernel.org
15511 S:      Supported
15512 W:      http://www.ibm.com/developerworks/linux/linux390/
15513 F:      drivers/s390/cio/
15514
15515 S390 DASD DRIVER
15516 M:      Stefan Haberland <sth@linux.ibm.com>
15517 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
15518 L:      linux-s390@vger.kernel.org
15519 S:      Supported
15520 W:      http://www.ibm.com/developerworks/linux/linux390/
15521 F:      block/partitions/ibm.c
15522 F:      drivers/s390/block/dasd*
15523 F:      include/linux/dasd_mod.h
15524
15525 S390 IOMMU (PCI)
15526 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15527 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15528 L:      linux-s390@vger.kernel.org
15529 S:      Supported
15530 W:      http://www.ibm.com/developerworks/linux/linux390/
15531 F:      drivers/iommu/s390-iommu.c
15532
15533 S390 IUCV NETWORK LAYER
15534 M:      Julian Wiedmann <jwi@linux.ibm.com>
15535 M:      Karsten Graul <kgraul@linux.ibm.com>
15536 L:      linux-s390@vger.kernel.org
15537 S:      Supported
15538 W:      http://www.ibm.com/developerworks/linux/linux390/
15539 F:      drivers/s390/net/*iucv*
15540 F:      include/net/iucv/
15541 F:      net/iucv/
15542
15543 S390 NETWORK DRIVERS
15544 M:      Julian Wiedmann <jwi@linux.ibm.com>
15545 M:      Karsten Graul <kgraul@linux.ibm.com>
15546 L:      linux-s390@vger.kernel.org
15547 S:      Supported
15548 W:      http://www.ibm.com/developerworks/linux/linux390/
15549 F:      drivers/s390/net/
15550
15551 S390 PCI SUBSYSTEM
15552 M:      Niklas Schnelle <schnelle@linux.ibm.com>
15553 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15554 L:      linux-s390@vger.kernel.org
15555 S:      Supported
15556 W:      http://www.ibm.com/developerworks/linux/linux390/
15557 F:      arch/s390/pci/
15558 F:      drivers/pci/hotplug/s390_pci_hpc.c
15559 F:      Documentation/s390/pci.rst
15560
15561 S390 VFIO AP DRIVER
15562 M:      Tony Krowiak <akrowiak@linux.ibm.com>
15563 M:      Pierre Morel <pmorel@linux.ibm.com>
15564 M:      Halil Pasic <pasic@linux.ibm.com>
15565 L:      linux-s390@vger.kernel.org
15566 S:      Supported
15567 W:      http://www.ibm.com/developerworks/linux/linux390/
15568 F:      Documentation/s390/vfio-ap.rst
15569 F:      drivers/s390/crypto/vfio_ap_drv.c
15570 F:      drivers/s390/crypto/vfio_ap_ops.c
15571 F:      drivers/s390/crypto/vfio_ap_private.h
15572
15573 S390 VFIO-CCW DRIVER
15574 M:      Cornelia Huck <cohuck@redhat.com>
15575 M:      Eric Farman <farman@linux.ibm.com>
15576 R:      Halil Pasic <pasic@linux.ibm.com>
15577 L:      linux-s390@vger.kernel.org
15578 L:      kvm@vger.kernel.org
15579 S:      Supported
15580 F:      Documentation/s390/vfio-ccw.rst
15581 F:      drivers/s390/cio/vfio_ccw*
15582 F:      include/uapi/linux/vfio_ccw.h
15583
15584 S390 VFIO-PCI DRIVER
15585 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15586 L:      linux-s390@vger.kernel.org
15587 L:      kvm@vger.kernel.org
15588 S:      Supported
15589 F:      drivers/vfio/pci/vfio_pci_zdev.c
15590 F:      include/uapi/linux/vfio_zdev.h
15591
15592 S390 ZCRYPT DRIVER
15593 M:      Harald Freudenberger <freude@linux.ibm.com>
15594 L:      linux-s390@vger.kernel.org
15595 S:      Supported
15596 W:      http://www.ibm.com/developerworks/linux/linux390/
15597 F:      drivers/s390/crypto/
15598
15599 S390 ZFCP DRIVER
15600 M:      Steffen Maier <maier@linux.ibm.com>
15601 M:      Benjamin Block <bblock@linux.ibm.com>
15602 L:      linux-s390@vger.kernel.org
15603 S:      Supported
15604 W:      http://www.ibm.com/developerworks/linux/linux390/
15605 F:      drivers/s390/scsi/zfcp_*
15606
15607 S3C24XX SD/MMC Driver
15608 M:      Ben Dooks <ben-linux@fluff.org>
15609 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15610 S:      Supported
15611 F:      drivers/mmc/host/s3cmci.*
15612
15613 SAA6588 RDS RECEIVER DRIVER
15614 M:      Hans Verkuil <hverkuil@xs4all.nl>
15615 L:      linux-media@vger.kernel.org
15616 S:      Odd Fixes
15617 W:      https://linuxtv.org
15618 T:      git git://linuxtv.org/media_tree.git
15619 F:      drivers/media/i2c/saa6588*
15620
15621 SAA7134 VIDEO4LINUX DRIVER
15622 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15623 L:      linux-media@vger.kernel.org
15624 S:      Odd fixes
15625 W:      https://linuxtv.org
15626 T:      git git://linuxtv.org/media_tree.git
15627 F:      Documentation/driver-api/media/drivers/saa7134*
15628 F:      drivers/media/pci/saa7134/
15629
15630 SAA7146 VIDEO4LINUX-2 DRIVER
15631 M:      Hans Verkuil <hverkuil@xs4all.nl>
15632 L:      linux-media@vger.kernel.org
15633 S:      Maintained
15634 T:      git git://linuxtv.org/media_tree.git
15635 F:      drivers/media/common/saa7146/
15636 F:      drivers/media/pci/saa7146/
15637 F:      include/media/drv-intf/saa7146*
15638
15639 SAFESETID SECURITY MODULE
15640 M:      Micah Morton <mortonm@chromium.org>
15641 S:      Supported
15642 F:      Documentation/admin-guide/LSM/SafeSetID.rst
15643 F:      security/safesetid/
15644
15645 SAMSUNG AUDIO (ASoC) DRIVERS
15646 M:      Krzysztof Kozlowski <krzk@kernel.org>
15647 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15648 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15649 S:      Supported
15650 F:      Documentation/devicetree/bindings/sound/samsung*
15651 F:      sound/soc/samsung/
15652
15653 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
15654 M:      Krzysztof Kozlowski <krzk@kernel.org>
15655 L:      linux-crypto@vger.kernel.org
15656 L:      linux-samsung-soc@vger.kernel.org
15657 S:      Maintained
15658 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
15659 F:      drivers/crypto/exynos-rng.c
15660
15661 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
15662 M:      Łukasz Stelmach <l.stelmach@samsung.com>
15663 L:      linux-samsung-soc@vger.kernel.org
15664 S:      Maintained
15665 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
15666 F:      drivers/char/hw_random/exynos-trng.c
15667
15668 SAMSUNG FRAMEBUFFER DRIVER
15669 M:      Jingoo Han <jingoohan1@gmail.com>
15670 L:      linux-fbdev@vger.kernel.org
15671 S:      Maintained
15672 F:      drivers/video/fbdev/s3c-fb.c
15673
15674 SAMSUNG INTERCONNECT DRIVERS
15675 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15676 M:      Artur Świgoń <a.swigon@samsung.com>
15677 L:      linux-pm@vger.kernel.org
15678 L:      linux-samsung-soc@vger.kernel.org
15679 S:      Supported
15680 F:      drivers/interconnect/samsung/
15681
15682 SAMSUNG LAPTOP DRIVER
15683 M:      Corentin Chary <corentin.chary@gmail.com>
15684 L:      platform-driver-x86@vger.kernel.org
15685 S:      Maintained
15686 F:      drivers/platform/x86/samsung-laptop.c
15687
15688 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
15689 M:      Krzysztof Kozlowski <krzk@kernel.org>
15690 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15691 L:      linux-kernel@vger.kernel.org
15692 L:      linux-samsung-soc@vger.kernel.org
15693 S:      Supported
15694 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
15695 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
15696 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
15697 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
15698 F:      drivers/clk/clk-s2mps11.c
15699 F:      drivers/mfd/sec*.c
15700 F:      drivers/regulator/s2m*.c
15701 F:      drivers/regulator/s5m*.c
15702 F:      drivers/rtc/rtc-s5m.c
15703 F:      include/linux/mfd/samsung/
15704
15705 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
15706 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
15707 L:      linux-media@vger.kernel.org
15708 L:      linux-samsung-soc@vger.kernel.org
15709 S:      Maintained
15710 F:      drivers/media/platform/s3c-camif/
15711 F:      include/media/drv-intf/s3c_camif.h
15712
15713 SAMSUNG S3FWRN5 NFC DRIVER
15714 M:      Krzysztof Kozlowski <krzk@kernel.org>
15715 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
15716 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
15717 S:      Maintained
15718 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
15719 F:      drivers/nfc/s3fwrn5
15720
15721 SAMSUNG S5C73M3 CAMERA DRIVER
15722 M:      Andrzej Hajda <a.hajda@samsung.com>
15723 L:      linux-media@vger.kernel.org
15724 S:      Supported
15725 F:      drivers/media/i2c/s5c73m3/*
15726
15727 SAMSUNG S5K5BAF CAMERA DRIVER
15728 M:      Andrzej Hajda <a.hajda@samsung.com>
15729 L:      linux-media@vger.kernel.org
15730 S:      Supported
15731 F:      drivers/media/i2c/s5k5baf.c
15732
15733 SAMSUNG S5P Security SubSystem (SSS) DRIVER
15734 M:      Krzysztof Kozlowski <krzk@kernel.org>
15735 M:      Vladimir Zapolskiy <vz@mleia.com>
15736 L:      linux-crypto@vger.kernel.org
15737 L:      linux-samsung-soc@vger.kernel.org
15738 S:      Maintained
15739 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
15740 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
15741 F:      drivers/crypto/s5p-sss.c
15742
15743 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
15744 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15745 L:      linux-media@vger.kernel.org
15746 S:      Supported
15747 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15748 F:      drivers/media/platform/exynos4-is/
15749
15750 SAMSUNG SOC CLOCK DRIVERS
15751 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15752 M:      Tomasz Figa <tomasz.figa@gmail.com>
15753 M:      Chanwoo Choi <cw00.choi@samsung.com>
15754 L:      linux-samsung-soc@vger.kernel.org
15755 S:      Supported
15756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
15757 F:      Documentation/devicetree/bindings/clock/exynos*.txt
15758 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
15759 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
15760 F:      drivers/clk/samsung/
15761 F:      include/dt-bindings/clock/exynos*.h
15762 F:      include/linux/clk/samsung.h
15763 F:      include/linux/platform_data/clk-s3c2410.h
15764
15765 SAMSUNG SPI DRIVERS
15766 M:      Krzysztof Kozlowski <krzk@kernel.org>
15767 M:      Andi Shyti <andi@etezian.org>
15768 L:      linux-spi@vger.kernel.org
15769 L:      linux-samsung-soc@vger.kernel.org
15770 S:      Maintained
15771 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
15772 F:      drivers/spi/spi-s3c*
15773 F:      include/linux/platform_data/spi-s3c64xx.h
15774 F:      include/linux/spi/s3c24xx-fiq.h
15775
15776 SAMSUNG SXGBE DRIVERS
15777 M:      Byungho An <bh74.an@samsung.com>
15778 L:      netdev@vger.kernel.org
15779 S:      Supported
15780 F:      drivers/net/ethernet/samsung/sxgbe/
15781
15782 SAMSUNG THERMAL DRIVER
15783 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15784 L:      linux-pm@vger.kernel.org
15785 L:      linux-samsung-soc@vger.kernel.org
15786 S:      Supported
15787 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
15788 F:      drivers/thermal/samsung/
15789
15790 SAMSUNG USB2 PHY DRIVER
15791 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15792 L:      linux-kernel@vger.kernel.org
15793 S:      Supported
15794 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
15795 F:      Documentation/driver-api/phy/samsung-usb2.rst
15796 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
15797 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
15798 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
15799 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
15800 F:      drivers/phy/samsung/phy-samsung-usb2.c
15801 F:      drivers/phy/samsung/phy-samsung-usb2.h
15802
15803 SC1200 WDT DRIVER
15804 M:      Zwane Mwaikambo <zwanem@gmail.com>
15805 S:      Maintained
15806 F:      drivers/watchdog/sc1200wdt.c
15807
15808 SCHEDULER
15809 M:      Ingo Molnar <mingo@redhat.com>
15810 M:      Peter Zijlstra <peterz@infradead.org>
15811 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
15812 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
15813 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
15814 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
15815 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
15816 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
15817 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
15818 L:      linux-kernel@vger.kernel.org
15819 S:      Maintained
15820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
15821 F:      include/linux/preempt.h
15822 F:      include/linux/sched.h
15823 F:      include/linux/wait.h
15824 F:      include/uapi/linux/sched.h
15825 F:      kernel/sched/
15826
15827 SCR24X CHIP CARD INTERFACE DRIVER
15828 M:      Lubomir Rintel <lkundrak@v3.sk>
15829 S:      Supported
15830 F:      drivers/char/pcmcia/scr24x_cs.c
15831
15832 SCSI CDROM DRIVER
15833 M:      Jens Axboe <axboe@kernel.dk>
15834 L:      linux-scsi@vger.kernel.org
15835 S:      Maintained
15836 W:      http://www.kernel.dk
15837 F:      drivers/scsi/sr*
15838
15839 SCSI RDMA PROTOCOL (SRP) INITIATOR
15840 M:      Bart Van Assche <bvanassche@acm.org>
15841 L:      linux-rdma@vger.kernel.org
15842 S:      Supported
15843 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15844 F:      drivers/infiniband/ulp/srp/
15845 F:      include/scsi/srp.h
15846
15847 SCSI RDMA PROTOCOL (SRP) TARGET
15848 M:      Bart Van Assche <bvanassche@acm.org>
15849 L:      linux-rdma@vger.kernel.org
15850 L:      target-devel@vger.kernel.org
15851 S:      Supported
15852 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15853 F:      drivers/infiniband/ulp/srpt/
15854
15855 SCSI SG DRIVER
15856 M:      Doug Gilbert <dgilbert@interlog.com>
15857 L:      linux-scsi@vger.kernel.org
15858 S:      Maintained
15859 W:      http://sg.danny.cz/sg
15860 F:      Documentation/scsi/scsi-generic.rst
15861 F:      drivers/scsi/sg.c
15862 F:      include/scsi/sg.h
15863
15864 SCSI SUBSYSTEM
15865 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
15866 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15867 L:      linux-scsi@vger.kernel.org
15868 S:      Maintained
15869 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
15870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
15871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15872 F:      Documentation/devicetree/bindings/scsi/
15873 F:      drivers/scsi/
15874 F:      include/scsi/
15875
15876 SCSI TAPE DRIVER
15877 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
15878 L:      linux-scsi@vger.kernel.org
15879 S:      Maintained
15880 F:      Documentation/scsi/st.rst
15881 F:      drivers/scsi/st.*
15882 F:      drivers/scsi/st_*.h
15883
15884 SCSI TARGET CORE USER DRIVER
15885 M:      Bodo Stroesser <bostroesser@gmail.com>
15886 L:      linux-scsi@vger.kernel.org
15887 L:      target-devel@vger.kernel.org
15888 S:      Supported
15889 F:      Documentation/target/tcmu-design.rst
15890 F:      drivers/target/target_core_user.c
15891 F:      include/uapi/linux/target_core_user.h
15892
15893 SCSI TARGET SUBSYSTEM
15894 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15895 L:      linux-scsi@vger.kernel.org
15896 L:      target-devel@vger.kernel.org
15897 S:      Supported
15898 W:      http://www.linux-iscsi.org
15899 Q:      https://patchwork.kernel.org/project/target-devel/list/
15900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15901 F:      Documentation/target/
15902 F:      drivers/target/
15903 F:      include/target/
15904
15905 SCTP PROTOCOL
15906 M:      Vlad Yasevich <vyasevich@gmail.com>
15907 M:      Neil Horman <nhorman@tuxdriver.com>
15908 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
15909 L:      linux-sctp@vger.kernel.org
15910 S:      Maintained
15911 W:      http://lksctp.sourceforge.net
15912 F:      Documentation/networking/sctp.rst
15913 F:      include/linux/sctp.h
15914 F:      include/net/sctp/
15915 F:      include/uapi/linux/sctp.h
15916 F:      net/sctp/
15917
15918 SCx200 CPU SUPPORT
15919 M:      Jim Cromie <jim.cromie@gmail.com>
15920 S:      Odd Fixes
15921 F:      Documentation/i2c/busses/scx200_acb.rst
15922 F:      arch/x86/platform/scx200/
15923 F:      drivers/i2c/busses/scx200*
15924 F:      drivers/mtd/maps/scx200_docflash.c
15925 F:      drivers/watchdog/scx200_wdt.c
15926 F:      include/linux/scx200.h
15927
15928 SCx200 GPIO DRIVER
15929 M:      Jim Cromie <jim.cromie@gmail.com>
15930 S:      Maintained
15931 F:      drivers/char/scx200_gpio.c
15932 F:      include/linux/scx200_gpio.h
15933
15934 SCx200 HRT CLOCKSOURCE DRIVER
15935 M:      Jim Cromie <jim.cromie@gmail.com>
15936 S:      Maintained
15937 F:      drivers/clocksource/scx200_hrt.c
15938
15939 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15940 M:      Sascha Sommer <saschasommer@freenet.de>
15941 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
15942 S:      Maintained
15943 F:      drivers/mmc/host/sdricoh_cs.c
15944
15945 SECO BOARDS CEC DRIVER
15946 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
15947 S:      Maintained
15948 F:      drivers/media/cec/platform/seco/seco-cec.c
15949 F:      drivers/media/cec/platform/seco/seco-cec.h
15950
15951 SECURE COMPUTING
15952 M:      Kees Cook <keescook@chromium.org>
15953 R:      Andy Lutomirski <luto@amacapital.net>
15954 R:      Will Drewry <wad@chromium.org>
15955 S:      Supported
15956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15957 F:      Documentation/userspace-api/seccomp_filter.rst
15958 F:      include/linux/seccomp.h
15959 F:      include/uapi/linux/seccomp.h
15960 F:      kernel/seccomp.c
15961 F:      tools/testing/selftests/kselftest_harness.h
15962 F:      tools/testing/selftests/seccomp/*
15963 K:      \bsecure_computing
15964 K:      \bTIF_SECCOMP\b
15965
15966 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15967 M:      Al Cooper <alcooperx@gmail.com>
15968 L:      linux-mmc@vger.kernel.org
15969 L:      bcm-kernel-feedback-list@broadcom.com
15970 S:      Maintained
15971 F:      drivers/mmc/host/sdhci-brcmstb*
15972
15973 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15974 M:      Adrian Hunter <adrian.hunter@intel.com>
15975 L:      linux-mmc@vger.kernel.org
15976 S:      Maintained
15977 F:      drivers/mmc/host/sdhci*
15978 F:      include/linux/mmc/sdhci*
15979
15980 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15981 M:      Eugen Hristev <eugen.hristev@microchip.com>
15982 L:      linux-mmc@vger.kernel.org
15983 S:      Supported
15984 F:      drivers/mmc/host/sdhci-of-at91.c
15985
15986 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15987 M:      Ben Dooks <ben-linux@fluff.org>
15988 M:      Jaehoon Chung <jh80.chung@samsung.com>
15989 L:      linux-mmc@vger.kernel.org
15990 S:      Maintained
15991 F:      drivers/mmc/host/sdhci-s3c*
15992
15993 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15994 M:      Viresh Kumar <vireshk@kernel.org>
15995 L:      linux-mmc@vger.kernel.org
15996 S:      Maintained
15997 F:      drivers/mmc/host/sdhci-spear.c
15998
15999 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
16000 M:      Kishon Vijay Abraham I <kishon@ti.com>
16001 L:      linux-mmc@vger.kernel.org
16002 S:      Maintained
16003 F:      drivers/mmc/host/sdhci-omap.c
16004
16005 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
16006 M:      Jonathan Derrick <jonathan.derrick@intel.com>
16007 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
16008 L:      linux-block@vger.kernel.org
16009 S:      Supported
16010 F:      block/opal_proto.h
16011 F:      block/sed*
16012 F:      include/linux/sed*
16013 F:      include/uapi/linux/sed*
16014
16015 SECURITY CONTACT
16016 M:      Security Officers <security@kernel.org>
16017 S:      Supported
16018 F:      Documentation/admin-guide/security-bugs.rst
16019
16020 SECURITY SUBSYSTEM
16021 M:      James Morris <jmorris@namei.org>
16022 M:      "Serge E. Hallyn" <serge@hallyn.com>
16023 L:      linux-security-module@vger.kernel.org (suggested Cc:)
16024 S:      Supported
16025 W:      http://kernsec.org/
16026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
16027 F:      security/
16028 X:      security/selinux/
16029
16030 SELINUX SECURITY MODULE
16031 M:      Paul Moore <paul@paul-moore.com>
16032 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
16033 M:      Eric Paris <eparis@parisplace.org>
16034 L:      selinux@vger.kernel.org
16035 S:      Supported
16036 W:      https://selinuxproject.org
16037 W:      https://github.com/SELinuxProject
16038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
16039 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
16040 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
16041 F:      Documentation/admin-guide/LSM/SELinux.rst
16042 F:      include/trace/events/avc.h
16043 F:      include/uapi/linux/selinux_netlink.h
16044 F:      scripts/selinux/
16045 F:      security/selinux/
16046
16047 SENSABLE PHANTOM
16048 M:      Jiri Slaby <jirislaby@kernel.org>
16049 S:      Maintained
16050 F:      drivers/misc/phantom.c
16051 F:      include/uapi/linux/phantom.h
16052
16053 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
16054 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
16055 S:      Maintained
16056 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
16057 F:      drivers/iio/chemical/scd30.h
16058 F:      drivers/iio/chemical/scd30_core.c
16059 F:      drivers/iio/chemical/scd30_i2c.c
16060 F:      drivers/iio/chemical/scd30_serial.c
16061
16062 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
16063 M:      Tomasz Duszynski <tduszyns@gmail.com>
16064 S:      Maintained
16065 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
16066 F:      drivers/iio/chemical/sps30.c
16067
16068 SERIAL DEVICE BUS
16069 M:      Rob Herring <robh@kernel.org>
16070 L:      linux-serial@vger.kernel.org
16071 S:      Maintained
16072 F:      Documentation/devicetree/bindings/serial/serial.yaml
16073 F:      drivers/tty/serdev/
16074 F:      include/linux/serdev.h
16075
16076 SERIAL DRIVERS
16077 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16078 L:      linux-serial@vger.kernel.org
16079 S:      Maintained
16080 F:      Documentation/devicetree/bindings/serial/
16081 F:      drivers/tty/serial/
16082
16083 SERIAL IR RECEIVER
16084 M:      Sean Young <sean@mess.org>
16085 L:      linux-media@vger.kernel.org
16086 S:      Maintained
16087 F:      drivers/media/rc/serial_ir.c
16088
16089 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
16090 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16091 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16092 S:      Maintained
16093 F:      Documentation/devicetree/bindings/slimbus/
16094 F:      drivers/slimbus/
16095 F:      include/linux/slimbus.h
16096
16097 SFC NETWORK DRIVER
16098 M:      Edward Cree <ecree.xilinx@gmail.com>
16099 M:      Martin Habets <habetsm.xilinx@gmail.com>
16100 L:      netdev@vger.kernel.org
16101 S:      Supported
16102 F:      drivers/net/ethernet/sfc/
16103
16104 SFF/SFP/SFP+ MODULE SUPPORT
16105 M:      Russell King <linux@armlinux.org.uk>
16106 L:      netdev@vger.kernel.org
16107 S:      Maintained
16108 F:      drivers/net/phy/phylink.c
16109 F:      drivers/net/phy/sfp*
16110 F:      include/linux/mdio/mdio-i2c.h
16111 F:      include/linux/phylink.h
16112 F:      include/linux/sfp.h
16113 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)
16114
16115 SGI GRU DRIVER
16116 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
16117 S:      Maintained
16118 F:      drivers/misc/sgi-gru/
16119
16120 SGI XP/XPC/XPNET DRIVER
16121 M:      Robin Holt <robinmholt@gmail.com>
16122 M:      Steve Wahl <steve.wahl@hpe.com>
16123 R:      Mike Travis <mike.travis@hpe.com>
16124 S:      Maintained
16125 F:      drivers/misc/sgi-xp/
16126
16127 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
16128 M:      Karsten Graul <kgraul@linux.ibm.com>
16129 L:      linux-s390@vger.kernel.org
16130 S:      Supported
16131 W:      http://www.ibm.com/developerworks/linux/linux390/
16132 F:      net/smc/
16133
16134 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
16135 M:      Linus Walleij <linus.walleij@linaro.org>
16136 L:      linux-iio@vger.kernel.org
16137 S:      Maintained
16138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
16139 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
16140 F:      drivers/iio/light/gp2ap002.c
16141
16142 SHARP RJ54N1CB0C SENSOR DRIVER
16143 M:      Jacopo Mondi <jacopo@jmondi.org>
16144 L:      linux-media@vger.kernel.org
16145 S:      Odd fixes
16146 T:      git git://linuxtv.org/media_tree.git
16147 F:      drivers/media/i2c/rj54n1cb0c.c
16148 F:      include/media/i2c/rj54n1cb0c.h
16149
16150 SH_VOU V4L2 OUTPUT DRIVER
16151 L:      linux-media@vger.kernel.org
16152 S:      Orphan
16153 F:      drivers/media/platform/sh_vou.c
16154 F:      include/media/drv-intf/sh_vou.h
16155
16156 SI2157 MEDIA DRIVER
16157 M:      Antti Palosaari <crope@iki.fi>
16158 L:      linux-media@vger.kernel.org
16159 S:      Maintained
16160 W:      https://linuxtv.org
16161 W:      http://palosaari.fi/linux/
16162 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16163 T:      git git://linuxtv.org/anttip/media_tree.git
16164 F:      drivers/media/tuners/si2157*
16165
16166 SI2165 MEDIA DRIVER
16167 M:      Matthias Schwarzott <zzam@gentoo.org>
16168 L:      linux-media@vger.kernel.org
16169 S:      Maintained
16170 W:      https://linuxtv.org
16171 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16172 F:      drivers/media/dvb-frontends/si2165*
16173
16174 SI2168 MEDIA DRIVER
16175 M:      Antti Palosaari <crope@iki.fi>
16176 L:      linux-media@vger.kernel.org
16177 S:      Maintained
16178 W:      https://linuxtv.org
16179 W:      http://palosaari.fi/linux/
16180 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16181 T:      git git://linuxtv.org/anttip/media_tree.git
16182 F:      drivers/media/dvb-frontends/si2168*
16183
16184 SI470X FM RADIO RECEIVER I2C DRIVER
16185 M:      Hans Verkuil <hverkuil@xs4all.nl>
16186 L:      linux-media@vger.kernel.org
16187 S:      Odd Fixes
16188 W:      https://linuxtv.org
16189 T:      git git://linuxtv.org/media_tree.git
16190 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
16191
16192 SI470X FM RADIO RECEIVER USB DRIVER
16193 M:      Hans Verkuil <hverkuil@xs4all.nl>
16194 L:      linux-media@vger.kernel.org
16195 S:      Maintained
16196 W:      https://linuxtv.org
16197 T:      git git://linuxtv.org/media_tree.git
16198 F:      drivers/media/radio/si470x/radio-si470x-common.c
16199 F:      drivers/media/radio/si470x/radio-si470x-usb.c
16200 F:      drivers/media/radio/si470x/radio-si470x.h
16201
16202 SI4713 FM RADIO TRANSMITTER I2C DRIVER
16203 M:      Eduardo Valentin <edubezval@gmail.com>
16204 L:      linux-media@vger.kernel.org
16205 S:      Odd Fixes
16206 W:      https://linuxtv.org
16207 T:      git git://linuxtv.org/media_tree.git
16208 F:      drivers/media/radio/si4713/si4713.?
16209
16210 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
16211 M:      Eduardo Valentin <edubezval@gmail.com>
16212 L:      linux-media@vger.kernel.org
16213 S:      Odd Fixes
16214 W:      https://linuxtv.org
16215 T:      git git://linuxtv.org/media_tree.git
16216 F:      drivers/media/radio/si4713/radio-platform-si4713.c
16217
16218 SI4713 FM RADIO TRANSMITTER USB DRIVER
16219 M:      Hans Verkuil <hverkuil@xs4all.nl>
16220 L:      linux-media@vger.kernel.org
16221 S:      Maintained
16222 W:      https://linuxtv.org
16223 T:      git git://linuxtv.org/media_tree.git
16224 F:      drivers/media/radio/si4713/radio-usb-si4713.c
16225
16226 SIANO DVB DRIVER
16227 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16228 L:      linux-media@vger.kernel.org
16229 S:      Odd fixes
16230 W:      https://linuxtv.org
16231 T:      git git://linuxtv.org/media_tree.git
16232 F:      drivers/media/common/siano/
16233 F:      drivers/media/mmc/siano/
16234 F:      drivers/media/usb/siano/
16235 F:      drivers/media/usb/siano/
16236
16237 SIFIVE DRIVERS
16238 M:      Palmer Dabbelt <palmer@dabbelt.com>
16239 M:      Paul Walmsley <paul.walmsley@sifive.com>
16240 L:      linux-riscv@lists.infradead.org
16241 S:      Supported
16242 T:      git git://github.com/sifive/riscv-linux.git
16243 N:      sifive
16244 K:      [^@]sifive
16245
16246 SIFIVE FU540 SYSTEM-ON-CHIP
16247 M:      Paul Walmsley <paul.walmsley@sifive.com>
16248 M:      Palmer Dabbelt <palmer@dabbelt.com>
16249 L:      linux-riscv@lists.infradead.org
16250 S:      Supported
16251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
16252 N:      fu540
16253 K:      fu540
16254
16255 SIFIVE PDMA DRIVER
16256 M:      Green Wan <green.wan@sifive.com>
16257 S:      Maintained
16258 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
16259 F:      drivers/dma/sf-pdma/
16260
16261 SILEAD TOUCHSCREEN DRIVER
16262 M:      Hans de Goede <hdegoede@redhat.com>
16263 L:      linux-input@vger.kernel.org
16264 L:      platform-driver-x86@vger.kernel.org
16265 S:      Maintained
16266 F:      drivers/input/touchscreen/silead.c
16267 F:      drivers/platform/x86/touchscreen_dmi.c
16268
16269 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
16270 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
16271 S:      Supported
16272 F:      drivers/staging/wfx/
16273
16274 SILICON MOTION SM712 FRAME BUFFER DRIVER
16275 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16276 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16277 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16278 L:      linux-fbdev@vger.kernel.org
16279 S:      Maintained
16280 F:      Documentation/fb/sm712fb.rst
16281 F:      drivers/video/fbdev/sm712*
16282
16283 SILVACO I3C DUAL-ROLE MASTER
16284 M:      Miquel Raynal <miquel.raynal@bootlin.com>
16285 M:      Conor Culhane <conor.culhane@silvaco.com>
16286 L:      linux-i3c@lists.infradead.org
16287 S:      Maintained
16288 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
16289 F:      drivers/i3c/master/svc-i3c-master.c
16290
16291 SIMPLE FIRMWARE INTERFACE (SFI)
16292 S:      Obsolete
16293 W:      http://simplefirmware.org/
16294 F:      arch/x86/platform/sfi/
16295 F:      drivers/sfi/
16296 F:      include/linux/sfi*.h
16297
16298 SIMPLEFB FB DRIVER
16299 M:      Hans de Goede <hdegoede@redhat.com>
16300 L:      linux-fbdev@vger.kernel.org
16301 S:      Maintained
16302 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
16303 F:      drivers/video/fbdev/simplefb.c
16304 F:      include/linux/platform_data/simplefb.h
16305
16306 SIMTEC EB110ATX (Chalice CATS)
16307 M:      Simtec Linux Team <linux@simtec.co.uk>
16308 S:      Supported
16309 W:      http://www.simtec.co.uk/products/EB110ATX/
16310
16311 SIMTEC EB2410ITX (BAST)
16312 M:      Simtec Linux Team <linux@simtec.co.uk>
16313 S:      Supported
16314 W:      http://www.simtec.co.uk/products/EB2410ITX/
16315 F:      arch/arm/mach-s3c/bast-ide.c
16316 F:      arch/arm/mach-s3c/bast-irq.c
16317 F:      arch/arm/mach-s3c/mach-bast.c
16318
16319 SIOX
16320 M:      Thorsten Scherer <t.scherer@eckelmann.de>
16321 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16322 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16323 S:      Supported
16324 F:      drivers/gpio/gpio-siox.c
16325 F:      drivers/siox/*
16326 F:      include/trace/events/siox.h
16327
16328 SIPHASH PRF ROUTINES
16329 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16330 S:      Maintained
16331 F:      include/linux/siphash.h
16332 F:      lib/siphash.c
16333 F:      lib/test_siphash.c
16334
16335 SIS 190 ETHERNET DRIVER
16336 M:      Francois Romieu <romieu@fr.zoreil.com>
16337 L:      netdev@vger.kernel.org
16338 S:      Maintained
16339 F:      drivers/net/ethernet/sis/sis190.c
16340
16341 SIS 900/7016 FAST ETHERNET DRIVER
16342 M:      Daniele Venzano <venza@brownhat.org>
16343 L:      netdev@vger.kernel.org
16344 S:      Maintained
16345 W:      http://www.brownhat.org/sis900.html
16346 F:      drivers/net/ethernet/sis/sis900.*
16347
16348 SIS FRAMEBUFFER DRIVER
16349 M:      Thomas Winischhofer <thomas@winischhofer.net>
16350 S:      Maintained
16351 W:      http://www.winischhofer.net/linuxsisvga.shtml
16352 F:      Documentation/fb/sisfb.rst
16353 F:      drivers/video/fbdev/sis/
16354 F:      include/video/sisfb.h
16355
16356 SIS I2C TOUCHSCREEN DRIVER
16357 M:      Mika Penttilä <mika.penttila@nextfour.com>
16358 L:      linux-input@vger.kernel.org
16359 S:      Maintained
16360 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
16361 F:      drivers/input/touchscreen/sis_i2c.c
16362
16363 SIS USB2VGA DRIVER
16364 M:      Thomas Winischhofer <thomas@winischhofer.net>
16365 S:      Maintained
16366 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
16367 F:      drivers/usb/misc/sisusbvga/
16368
16369 SLAB ALLOCATOR
16370 M:      Christoph Lameter <cl@linux.com>
16371 M:      Pekka Enberg <penberg@kernel.org>
16372 M:      David Rientjes <rientjes@google.com>
16373 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
16374 M:      Andrew Morton <akpm@linux-foundation.org>
16375 M:      Vlastimil Babka <vbabka@suse.cz>
16376 L:      linux-mm@kvack.org
16377 S:      Maintained
16378 F:      include/linux/sl?b*.h
16379 F:      mm/sl?b*
16380
16381 SLEEPABLE READ-COPY UPDATE (SRCU)
16382 M:      Lai Jiangshan <jiangshanlai@gmail.com>
16383 M:      "Paul E. McKenney" <paulmck@kernel.org>
16384 M:      Josh Triplett <josh@joshtriplett.org>
16385 R:      Steven Rostedt <rostedt@goodmis.org>
16386 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16387 L:      rcu@vger.kernel.org
16388 S:      Supported
16389 W:      http://www.rdrop.com/users/paulmck/RCU/
16390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16391 F:      include/linux/srcu*.h
16392 F:      kernel/rcu/srcu*.c
16393
16394 SMACK SECURITY MODULE
16395 M:      Casey Schaufler <casey@schaufler-ca.com>
16396 L:      linux-security-module@vger.kernel.org
16397 S:      Maintained
16398 W:      http://schaufler-ca.com
16399 T:      git git://github.com/cschaufler/smack-next
16400 F:      Documentation/admin-guide/LSM/Smack.rst
16401 F:      security/smack/
16402
16403 SMC91x ETHERNET DRIVER
16404 M:      Nicolas Pitre <nico@fluxnic.net>
16405 S:      Odd Fixes
16406 F:      drivers/net/ethernet/smsc/smc91x.*
16407
16408 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
16409 M:      Mark Rutland <mark.rutland@arm.com>
16410 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
16411 M:      Sudeep Holla <sudeep.holla@arm.com>
16412 L:      linux-arm-kernel@lists.infradead.org
16413 S:      Maintained
16414 F:      drivers/firmware/smccc/
16415 F:      include/linux/arm-smccc.h
16416
16417 SMM665 HARDWARE MONITOR DRIVER
16418 M:      Guenter Roeck <linux@roeck-us.net>
16419 L:      linux-hwmon@vger.kernel.org
16420 S:      Maintained
16421 F:      Documentation/hwmon/smm665.rst
16422 F:      drivers/hwmon/smm665.c
16423
16424 SMSC EMC2103 HARDWARE MONITOR DRIVER
16425 M:      Steve Glendinning <steve.glendinning@shawell.net>
16426 L:      linux-hwmon@vger.kernel.org
16427 S:      Maintained
16428 F:      Documentation/hwmon/emc2103.rst
16429 F:      drivers/hwmon/emc2103.c
16430
16431 SMSC SCH5627 HARDWARE MONITOR DRIVER
16432 M:      Hans de Goede <hdegoede@redhat.com>
16433 L:      linux-hwmon@vger.kernel.org
16434 S:      Supported
16435 F:      Documentation/hwmon/sch5627.rst
16436 F:      drivers/hwmon/sch5627.c
16437
16438 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
16439 M:      Steve Glendinning <steve.glendinning@shawell.net>
16440 L:      linux-fbdev@vger.kernel.org
16441 S:      Maintained
16442 F:      drivers/video/fbdev/smscufx.c
16443
16444 SMSC47B397 HARDWARE MONITOR DRIVER
16445 M:      Jean Delvare <jdelvare@suse.com>
16446 L:      linux-hwmon@vger.kernel.org
16447 S:      Maintained
16448 F:      Documentation/hwmon/smsc47b397.rst
16449 F:      drivers/hwmon/smsc47b397.c
16450
16451 SMSC911x ETHERNET DRIVER
16452 M:      Steve Glendinning <steve.glendinning@shawell.net>
16453 L:      netdev@vger.kernel.org
16454 S:      Maintained
16455 F:      drivers/net/ethernet/smsc/smsc911x.*
16456 F:      include/linux/smsc911x.h
16457
16458 SMSC9420 PCI ETHERNET DRIVER
16459 M:      Steve Glendinning <steve.glendinning@shawell.net>
16460 L:      netdev@vger.kernel.org
16461 S:      Maintained
16462 F:      drivers/net/ethernet/smsc/smsc9420.*
16463
16464 SOCIONEXT (SNI) AVE NETWORK DRIVER
16465 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
16466 L:      netdev@vger.kernel.org
16467 S:      Maintained
16468 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
16469 F:      drivers/net/ethernet/socionext/sni_ave.c
16470
16471 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
16472 M:      Jassi Brar <jaswinder.singh@linaro.org>
16473 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
16474 L:      netdev@vger.kernel.org
16475 S:      Maintained
16476 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
16477 F:      drivers/net/ethernet/socionext/netsec.c
16478
16479 SOCIONEXT (SNI) Synquacer SPI DRIVER
16480 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
16481 M:      Jassi Brar <jaswinder.singh@linaro.org>
16482 L:      linux-spi@vger.kernel.org
16483 S:      Maintained
16484 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
16485 F:      drivers/spi/spi-synquacer.c
16486
16487 SOCIONEXT SYNQUACER I2C DRIVER
16488 M:      Ard Biesheuvel <ardb@kernel.org>
16489 L:      linux-i2c@vger.kernel.org
16490 S:      Maintained
16491 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
16492 F:      drivers/i2c/busses/i2c-synquacer.c
16493
16494 SOCIONEXT UNIPHIER SOUND DRIVER
16495 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16496 S:      Orphan
16497 F:      sound/soc/uniphier/
16498
16499 SOEKRIS NET48XX LED SUPPORT
16500 M:      Chris Boot <bootc@bootc.net>
16501 S:      Maintained
16502 F:      drivers/leds/leds-net48xx.c
16503
16504 SOFT-IWARP DRIVER (siw)
16505 M:      Bernard Metzler <bmt@zurich.ibm.com>
16506 L:      linux-rdma@vger.kernel.org
16507 S:      Supported
16508 F:      drivers/infiniband/sw/siw/
16509 F:      include/uapi/rdma/siw-abi.h
16510
16511 SOFT-ROCE DRIVER (rxe)
16512 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
16513 L:      linux-rdma@vger.kernel.org
16514 S:      Supported
16515 F:      drivers/infiniband/sw/rxe/
16516 F:      include/uapi/rdma/rdma_user_rxe.h
16517
16518 SOFTLOGIC 6x10 MPEG CODEC
16519 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
16520 M:      Anton Sviridenko <anton@corp.bluecherry.net>
16521 M:      Andrey Utkin <andrey_utkin@fastmail.com>
16522 M:      Ismael Luceno <ismael@iodev.co.uk>
16523 L:      linux-media@vger.kernel.org
16524 S:      Supported
16525 F:      drivers/media/pci/solo6x10/
16526
16527 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
16528 M:      James Morse <james.morse@arm.com>
16529 L:      linux-arm-kernel@lists.infradead.org
16530 S:      Maintained
16531 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
16532 F:      drivers/firmware/arm_sdei.c
16533 F:      include/linux/arm_sdei.h
16534 F:      include/uapi/linux/arm_sdei.h
16535
16536 SOFTWARE RAID (Multiple Disks) SUPPORT
16537 M:      Song Liu <song@kernel.org>
16538 L:      linux-raid@vger.kernel.org
16539 S:      Supported
16540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
16541 F:      drivers/md/Kconfig
16542 F:      drivers/md/Makefile
16543 F:      drivers/md/md*
16544 F:      drivers/md/raid*
16545 F:      include/linux/raid/
16546 F:      include/uapi/linux/raid/
16547
16548 SOLIDRUN CLEARFOG SUPPORT
16549 M:      Russell King <linux@armlinux.org.uk>
16550 S:      Maintained
16551 F:      arch/arm/boot/dts/armada-388-clearfog*
16552 F:      arch/arm/boot/dts/armada-38x-solidrun-*
16553
16554 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
16555 M:      Russell King <linux@armlinux.org.uk>
16556 S:      Maintained
16557 F:      arch/arm/boot/dts/imx6*-cubox-i*
16558 F:      arch/arm/boot/dts/imx6*-hummingboard*
16559 F:      arch/arm/boot/dts/imx6*-sr-*
16560
16561 SONIC NETWORK DRIVER
16562 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
16563 L:      netdev@vger.kernel.org
16564 S:      Maintained
16565 F:      drivers/net/ethernet/natsemi/sonic.*
16566
16567 SONICS SILICON BACKPLANE DRIVER (SSB)
16568 M:      Michael Buesch <m@bues.ch>
16569 L:      linux-wireless@vger.kernel.org
16570 S:      Maintained
16571 F:      drivers/ssb/
16572 F:      include/linux/ssb/
16573
16574 SONY IMX214 SENSOR DRIVER
16575 M:      Ricardo Ribalda <ribalda@kernel.org>
16576 L:      linux-media@vger.kernel.org
16577 S:      Maintained
16578 T:      git git://linuxtv.org/media_tree.git
16579 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
16580 F:      drivers/media/i2c/imx214.c
16581
16582 SONY IMX219 SENSOR DRIVER
16583 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
16584 L:      linux-media@vger.kernel.org
16585 S:      Maintained
16586 T:      git git://linuxtv.org/media_tree.git
16587 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
16588 F:      drivers/media/i2c/imx219.c
16589
16590 SONY IMX258 SENSOR DRIVER
16591 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
16592 L:      linux-media@vger.kernel.org
16593 S:      Maintained
16594 T:      git git://linuxtv.org/media_tree.git
16595 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
16596 F:      drivers/media/i2c/imx258.c
16597
16598 SONY IMX274 SENSOR DRIVER
16599 M:      Leon Luo <leonl@leopardimaging.com>
16600 L:      linux-media@vger.kernel.org
16601 S:      Maintained
16602 T:      git git://linuxtv.org/media_tree.git
16603 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
16604 F:      drivers/media/i2c/imx274.c
16605
16606 SONY IMX290 SENSOR DRIVER
16607 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16608 L:      linux-media@vger.kernel.org
16609 S:      Maintained
16610 T:      git git://linuxtv.org/media_tree.git
16611 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
16612 F:      drivers/media/i2c/imx290.c
16613
16614 SONY IMX319 SENSOR DRIVER
16615 M:      Bingbu Cao <bingbu.cao@intel.com>
16616 L:      linux-media@vger.kernel.org
16617 S:      Maintained
16618 T:      git git://linuxtv.org/media_tree.git
16619 F:      drivers/media/i2c/imx319.c
16620
16621 SONY IMX334 SENSOR DRIVER
16622 M:      Paul J. Murphy <paul.j.murphy@intel.com>
16623 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
16624 L:      linux-media@vger.kernel.org
16625 S:      Maintained
16626 T:      git git://linuxtv.org/media_tree.git
16627 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
16628 F:      drivers/media/i2c/imx334.c
16629
16630 SONY IMX355 SENSOR DRIVER
16631 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
16632 L:      linux-media@vger.kernel.org
16633 S:      Maintained
16634 T:      git git://linuxtv.org/media_tree.git
16635 F:      drivers/media/i2c/imx355.c
16636
16637 SONY MEMORYSTICK SUBSYSTEM
16638 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16639 M:      Alex Dubov <oakad@yahoo.com>
16640 M:      Ulf Hansson <ulf.hansson@linaro.org>
16641 L:      linux-mmc@vger.kernel.org
16642 S:      Maintained
16643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
16644 F:      drivers/memstick/
16645 F:      include/linux/memstick.h
16646
16647 SONY VAIO CONTROL DEVICE DRIVER
16648 M:      Mattia Dongili <malattia@linux.it>
16649 L:      platform-driver-x86@vger.kernel.org
16650 S:      Maintained
16651 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
16652 F:      Documentation/admin-guide/laptops/sony-laptop.rst
16653 F:      drivers/char/sonypi.c
16654 F:      drivers/platform/x86/sony-laptop.c
16655 F:      include/linux/sony-laptop.h
16656
16657 SOUND
16658 M:      Jaroslav Kysela <perex@perex.cz>
16659 M:      Takashi Iwai <tiwai@suse.com>
16660 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16661 S:      Maintained
16662 W:      http://www.alsa-project.org/
16663 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
16664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16665 F:      Documentation/sound/
16666 F:      include/sound/
16667 F:      include/uapi/sound/
16668 F:      sound/
16669
16670 SOUND - COMPRESSED AUDIO
16671 M:      Vinod Koul <vkoul@kernel.org>
16672 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16673 S:      Supported
16674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16675 F:      Documentation/sound/designs/compress-offload.rst
16676 F:      include/sound/compress_driver.h
16677 F:      include/uapi/sound/compress_*
16678 F:      sound/core/compress_offload.c
16679 F:      sound/soc/soc-compress.c
16680
16681 SOUND - DMAENGINE HELPERS
16682 M:      Lars-Peter Clausen <lars@metafoo.de>
16683 S:      Supported
16684 F:      include/sound/dmaengine_pcm.h
16685 F:      sound/core/pcm_dmaengine.c
16686 F:      sound/soc/soc-generic-dmaengine-pcm.c
16687
16688 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
16689 M:      Liam Girdwood <lgirdwood@gmail.com>
16690 M:      Mark Brown <broonie@kernel.org>
16691 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16692 S:      Supported
16693 W:      http://alsa-project.org/main/index.php/ASoC
16694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
16695 F:      Documentation/devicetree/bindings/sound/
16696 F:      Documentation/sound/soc/
16697 F:      include/dt-bindings/sound/
16698 F:      include/sound/soc*
16699 F:      sound/soc/
16700
16701 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
16702 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16703 M:      Liam Girdwood <lgirdwood@gmail.com>
16704 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
16705 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
16706 M:      Daniel Baluta <daniel.baluta@nxp.com>
16707 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
16708 S:      Supported
16709 W:      https://github.com/thesofproject/linux/
16710 F:      sound/soc/sof/
16711
16712 SOUNDWIRE SUBSYSTEM
16713 M:      Vinod Koul <vkoul@kernel.org>
16714 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
16715 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16716 R:      Sanyog Kale <sanyog.r.kale@intel.com>
16717 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16718 S:      Supported
16719 F:      Documentation/driver-api/soundwire/
16720 F:      drivers/soundwire/
16721 F:      include/linux/soundwire/
16722
16723 SP2 MEDIA DRIVER
16724 M:      Olli Salonen <olli.salonen@iki.fi>
16725 L:      linux-media@vger.kernel.org
16726 S:      Maintained
16727 W:      https://linuxtv.org
16728 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16729 F:      drivers/media/dvb-frontends/sp2*
16730
16731 SPARC + UltraSPARC (sparc/sparc64)
16732 M:      "David S. Miller" <davem@davemloft.net>
16733 L:      sparclinux@vger.kernel.org
16734 S:      Maintained
16735 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
16736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16738 F:      arch/sparc/
16739 F:      drivers/sbus/
16740
16741 SPARC SERIAL DRIVERS
16742 M:      "David S. Miller" <davem@davemloft.net>
16743 L:      sparclinux@vger.kernel.org
16744 S:      Maintained
16745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16747 F:      drivers/tty/serial/suncore.c
16748 F:      drivers/tty/serial/sunhv.c
16749 F:      drivers/tty/serial/sunsab.c
16750 F:      drivers/tty/serial/sunsab.h
16751 F:      drivers/tty/serial/sunsu.c
16752 F:      drivers/tty/serial/sunzilog.c
16753 F:      drivers/tty/serial/sunzilog.h
16754 F:      drivers/tty/vcc.c
16755 F:      include/linux/sunserialcore.h
16756
16757 SPARSE CHECKER
16758 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
16759 L:      linux-sparse@vger.kernel.org
16760 S:      Maintained
16761 W:      https://sparse.docs.kernel.org/
16762 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
16763 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
16764 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
16765 F:      include/linux/compiler.h
16766
16767 SPEAKUP CONSOLE SPEECH DRIVER
16768 M:      William Hubbs <w.d.hubbs@gmail.com>
16769 M:      Chris Brannon <chris@the-brannons.com>
16770 M:      Kirk Reiser <kirk@reisers.ca>
16771 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
16772 L:      speakup@linux-speakup.org
16773 S:      Odd Fixes
16774 W:      http://www.linux-speakup.org/
16775 W:      https://github.com/linux-speakup/speakup
16776 B:      https://github.com/linux-speakup/speakup/issues
16777 F:      drivers/accessibility/speakup/
16778
16779 SPEAR CLOCK FRAMEWORK SUPPORT
16780 M:      Viresh Kumar <vireshk@kernel.org>
16781 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16782 S:      Maintained
16783 W:      http://www.st.com/spear
16784 F:      drivers/clk/spear/
16785
16786 SPEAR PLATFORM SUPPORT
16787 M:      Viresh Kumar <vireshk@kernel.org>
16788 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
16789 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16790 S:      Maintained
16791 W:      http://www.st.com/spear
16792 F:      arch/arm/boot/dts/spear*
16793 F:      arch/arm/mach-spear/
16794
16795 SPI NOR SUBSYSTEM
16796 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
16797 L:      linux-mtd@lists.infradead.org
16798 S:      Maintained
16799 W:      http://www.linux-mtd.infradead.org/
16800 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
16801 C:      irc://irc.oftc.net/mtd
16802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
16803 F:      drivers/mtd/spi-nor/
16804 F:      include/linux/mtd/spi-nor.h
16805
16806 SPI SUBSYSTEM
16807 M:      Mark Brown <broonie@kernel.org>
16808 L:      linux-spi@vger.kernel.org
16809 S:      Maintained
16810 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
16811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
16812 F:      Documentation/devicetree/bindings/spi/
16813 F:      Documentation/spi/
16814 F:      drivers/spi/
16815 F:      include/linux/spi/
16816 F:      include/uapi/linux/spi/
16817 F:      tools/spi/
16818
16819 SPIDERNET NETWORK DRIVER for CELL
16820 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
16821 L:      netdev@vger.kernel.org
16822 S:      Supported
16823 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
16824 F:      drivers/net/ethernet/toshiba/spider_net*
16825
16826 SPMI SUBSYSTEM
16827 M:      Stephen Boyd <sboyd@kernel.org>
16828 L:      linux-kernel@vger.kernel.org
16829 S:      Maintained
16830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
16831 F:      Documentation/devicetree/bindings/spmi/
16832 F:      drivers/spmi/
16833 F:      include/dt-bindings/spmi/spmi.h
16834 F:      include/linux/spmi.h
16835 F:      include/trace/events/spmi.h
16836
16837 SPU FILE SYSTEM
16838 M:      Jeremy Kerr <jk@ozlabs.org>
16839 L:      linuxppc-dev@lists.ozlabs.org
16840 S:      Supported
16841 W:      http://www.ibm.com/developerworks/power/cell/
16842 F:      Documentation/filesystems/spufs/spufs.rst
16843 F:      arch/powerpc/platforms/cell/spufs/
16844
16845 SQUASHFS FILE SYSTEM
16846 M:      Phillip Lougher <phillip@squashfs.org.uk>
16847 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
16848 S:      Maintained
16849 W:      http://squashfs.org.uk
16850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
16851 F:      Documentation/filesystems/squashfs.rst
16852 F:      fs/squashfs/
16853
16854 SRM (Alpha) environment access
16855 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
16856 S:      Maintained
16857 F:      arch/alpha/kernel/srm_env.c
16858
16859 ST LSM6DSx IMU IIO DRIVER
16860 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
16861 L:      linux-iio@vger.kernel.org
16862 S:      Maintained
16863 W:      http://www.st.com/
16864 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
16865 F:      drivers/iio/imu/st_lsm6dsx/
16866
16867 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
16868 M:      Mickael Guene <mickael.guene@st.com>
16869 L:      linux-media@vger.kernel.org
16870 S:      Maintained
16871 T:      git git://linuxtv.org/media_tree.git
16872 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
16873 F:      drivers/media/i2c/st-mipid02.c
16874
16875 ST STM32 I2C/SMBUS DRIVER
16876 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
16877 L:      linux-i2c@vger.kernel.org
16878 S:      Maintained
16879 F:      drivers/i2c/busses/i2c-stm32*
16880
16881 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
16882 M:      Song Qiang <songqiang1304521@gmail.com>
16883 L:      linux-iio@vger.kernel.org
16884 S:      Maintained
16885 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
16886 F:      drivers/iio/proximity/vl53l0x-i2c.c
16887
16888 STABLE BRANCH
16889 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16890 M:      Sasha Levin <sashal@kernel.org>
16891 L:      stable@vger.kernel.org
16892 S:      Supported
16893 F:      Documentation/process/stable-kernel-rules.rst
16894
16895 STAGING - ATOMISP DRIVER
16896 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16897 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
16898 L:      linux-media@vger.kernel.org
16899 S:      Maintained
16900 F:      drivers/staging/media/atomisp/
16901
16902 STAGING - COMEDI
16903 M:      Ian Abbott <abbotti@mev.co.uk>
16904 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
16905 S:      Odd Fixes
16906 F:      drivers/staging/comedi/
16907
16908 STAGING - FIELDBUS SUBSYSTEM
16909 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16910 S:      Maintained
16911 F:      drivers/staging/fieldbus/*
16912 F:      drivers/staging/fieldbus/Documentation/
16913
16914 STAGING - HMS ANYBUS-S BUS
16915 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16916 S:      Maintained
16917 F:      drivers/staging/fieldbus/anybuss/
16918
16919 STAGING - INDUSTRIAL IO
16920 M:      Jonathan Cameron <jic23@kernel.org>
16921 L:      linux-iio@vger.kernel.org
16922 S:      Odd Fixes
16923 F:      Documentation/devicetree/bindings/staging/iio/
16924 F:      drivers/staging/iio/
16925
16926 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
16927 M:      Marc Dietrich <marvin24@gmx.de>
16928 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
16929 L:      linux-tegra@vger.kernel.org
16930 S:      Maintained
16931 F:      drivers/staging/nvec/
16932
16933 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
16934 M:      Jens Frederich <jfrederich@gmail.com>
16935 M:      Daniel Drake <dsd@laptop.org>
16936 M:      Jon Nettleton <jon.nettleton@gmail.com>
16937 S:      Maintained
16938 W:      http://wiki.laptop.org/go/DCON
16939 F:      drivers/staging/olpc_dcon/
16940
16941 STAGING - REALTEK RTL8188EU DRIVERS
16942 M:      Larry Finger <Larry.Finger@lwfinger.net>
16943 S:      Odd Fixes
16944 F:      drivers/staging/rtl8188eu/
16945
16946 STAGING - REALTEK RTL8712U DRIVERS
16947 M:      Larry Finger <Larry.Finger@lwfinger.net>
16948 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
16949 S:      Odd Fixes
16950 F:      drivers/staging/rtl8712/
16951
16952 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16953 M:      Michael Hennerich <michael.hennerich@analog.com>
16954 L:      linux-fbdev@vger.kernel.org
16955 S:      Supported
16956 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16957 F:      drivers/staging/fbtft/fb_seps525.c
16958
16959 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16960 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16961 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16962 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16963 L:      linux-fbdev@vger.kernel.org
16964 S:      Maintained
16965 F:      drivers/staging/sm750fb/
16966
16967 STAGING - VIA VT665X DRIVERS
16968 M:      Forest Bond <forest@alittletooquiet.net>
16969 S:      Odd Fixes
16970 F:      drivers/staging/vt665?/
16971
16972 STAGING SUBSYSTEM
16973 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16974 L:      devel@driverdev.osuosl.org
16975 S:      Supported
16976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16977 F:      drivers/staging/
16978
16979 STARFIRE/DURALAN NETWORK DRIVER
16980 M:      Ion Badulescu <ionut@badula.org>
16981 S:      Odd Fixes
16982 F:      drivers/net/ethernet/adaptec/starfire*
16983
16984 STATIC BRANCH/CALL
16985 M:      Peter Zijlstra <peterz@infradead.org>
16986 M:      Josh Poimboeuf <jpoimboe@redhat.com>
16987 M:      Jason Baron <jbaron@akamai.com>
16988 R:      Steven Rostedt <rostedt@goodmis.org>
16989 R:      Ard Biesheuvel <ardb@kernel.org>
16990 S:      Supported
16991 F:      arch/*/include/asm/jump_label*.h
16992 F:      arch/*/include/asm/static_call*.h
16993 F:      arch/*/kernel/jump_label.c
16994 F:      arch/*/kernel/static_call.c
16995 F:      include/linux/jump_label*.h
16996 F:      include/linux/static_call*.h
16997 F:      kernel/jump_label.c
16998 F:      kernel/static_call.c
16999
17000 STI AUDIO (ASoC) DRIVERS
17001 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
17002 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17003 S:      Maintained
17004 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
17005 F:      sound/soc/sti/
17006
17007 STI CEC DRIVER
17008 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
17009 S:      Maintained
17010 F:      Documentation/devicetree/bindings/media/stih-cec.txt
17011 F:      drivers/media/cec/platform/sti/
17012
17013 STK1160 USB VIDEO CAPTURE DRIVER
17014 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17015 L:      linux-media@vger.kernel.org
17016 S:      Maintained
17017 T:      git git://linuxtv.org/media_tree.git
17018 F:      drivers/media/usb/stk1160/
17019
17020 STM32 AUDIO (ASoC) DRIVERS
17021 M:      Olivier Moysan <olivier.moysan@st.com>
17022 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
17023 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17024 S:      Maintained
17025 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-*.yaml
17026 F:      sound/soc/stm/
17027
17028 STM32 TIMER/LPTIMER DRIVERS
17029 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
17030 S:      Maintained
17031 F:      Documentation/ABI/testing/*timer-stm32
17032 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
17033 F:      drivers/*/stm32-*timer*
17034 F:      drivers/pwm/pwm-stm32*
17035 F:      include/linux/*/stm32-*tim*
17036
17037 STMMAC ETHERNET DRIVER
17038 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
17039 M:      Alexandre Torgue <alexandre.torgue@st.com>
17040 M:      Jose Abreu <joabreu@synopsys.com>
17041 L:      netdev@vger.kernel.org
17042 S:      Supported
17043 W:      http://www.stlinux.com
17044 F:      Documentation/networking/device_drivers/ethernet/stmicro/
17045 F:      drivers/net/ethernet/stmicro/stmmac/
17046
17047 SUN3/3X
17048 M:      Sam Creasey <sammy@sammy.net>
17049 S:      Maintained
17050 W:      http://sammy.net/sun3/
17051 F:      arch/m68k/include/asm/sun3*
17052 F:      arch/m68k/kernel/*sun3*
17053 F:      arch/m68k/sun3*/
17054 F:      drivers/net/ethernet/i825xx/sun3*
17055
17056 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
17057 M:      Hans de Goede <hdegoede@redhat.com>
17058 L:      linux-input@vger.kernel.org
17059 S:      Maintained
17060 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
17061 F:      drivers/input/keyboard/sun4i-lradc-keys.c
17062
17063 SUNDANCE NETWORK DRIVER
17064 M:      Denis Kirjanov <kda@linux-powerpc.org>
17065 L:      netdev@vger.kernel.org
17066 S:      Maintained
17067 F:      drivers/net/ethernet/dlink/sundance.c
17068
17069 SUPERH
17070 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
17071 M:      Rich Felker <dalias@libc.org>
17072 L:      linux-sh@vger.kernel.org
17073 S:      Maintained
17074 Q:      http://patchwork.kernel.org/project/linux-sh/list/
17075 F:      Documentation/sh/
17076 F:      arch/sh/
17077 F:      drivers/sh/
17078
17079 SUSPEND TO RAM
17080 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
17081 M:      Len Brown <len.brown@intel.com>
17082 M:      Pavel Machek <pavel@ucw.cz>
17083 L:      linux-pm@vger.kernel.org
17084 S:      Supported
17085 B:      https://bugzilla.kernel.org
17086 F:      Documentation/power/
17087 F:      arch/x86/kernel/acpi/
17088 F:      drivers/base/power/
17089 F:      include/linux/freezer.h
17090 F:      include/linux/pm.h
17091 F:      include/linux/suspend.h
17092 F:      kernel/power/
17093
17094 SVGA HANDLING
17095 M:      Martin Mares <mj@ucw.cz>
17096 L:      linux-video@atrey.karlin.mff.cuni.cz
17097 S:      Maintained
17098 F:      Documentation/admin-guide/svga.rst
17099 F:      arch/x86/boot/video*
17100
17101 SWIOTLB SUBSYSTEM
17102 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17103 L:      iommu@lists.linux-foundation.org
17104 S:      Supported
17105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
17106 F:      arch/*/kernel/pci-swiotlb.c
17107 F:      include/linux/swiotlb.h
17108 F:      kernel/dma/swiotlb.c
17109
17110 SWITCHDEV
17111 M:      Jiri Pirko <jiri@resnulli.us>
17112 M:      Ivan Vecera <ivecera@redhat.com>
17113 L:      netdev@vger.kernel.org
17114 S:      Supported
17115 F:      include/net/switchdev.h
17116 F:      net/switchdev/
17117
17118 SY8106A REGULATOR DRIVER
17119 M:      Icenowy Zheng <icenowy@aosc.io>
17120 S:      Maintained
17121 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
17122 F:      drivers/regulator/sy8106a-regulator.c
17123
17124 SYNC FILE FRAMEWORK
17125 M:      Sumit Semwal <sumit.semwal@linaro.org>
17126 R:      Gustavo Padovan <gustavo@padovan.org>
17127 L:      linux-media@vger.kernel.org
17128 L:      dri-devel@lists.freedesktop.org
17129 S:      Maintained
17130 T:      git git://anongit.freedesktop.org/drm/drm-misc
17131 F:      Documentation/driver-api/sync_file.rst
17132 F:      drivers/dma-buf/dma-fence*
17133 F:      drivers/dma-buf/sw_sync.c
17134 F:      drivers/dma-buf/sync_*
17135 F:      include/linux/sync_file.h
17136 F:      include/uapi/linux/sync_file.h
17137
17138 SYNOPSYS ARC ARCHITECTURE
17139 M:      Vineet Gupta <vgupta@synopsys.com>
17140 L:      linux-snps-arc@lists.infradead.org
17141 S:      Supported
17142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
17143 F:      Documentation/devicetree/bindings/arc/*
17144 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
17145 F:      arch/arc/
17146 F:      drivers/clocksource/arc_timer.c
17147 F:      drivers/tty/serial/arc_uart.c
17148
17149 SYNOPSYS ARC HSDK SDP pll clock driver
17150 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17151 S:      Supported
17152 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
17153 F:      drivers/clk/clk-hsdk-pll.c
17154
17155 SYNOPSYS ARC SDP clock driver
17156 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17157 S:      Supported
17158 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
17159 F:      drivers/clk/axs10x/*
17160
17161 SYNOPSYS ARC SDP platform support
17162 M:      Alexey Brodkin <abrodkin@synopsys.com>
17163 S:      Supported
17164 F:      Documentation/devicetree/bindings/arc/axs10*
17165 F:      arch/arc/boot/dts/ax*
17166 F:      arch/arc/plat-axs10x
17167
17168 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
17169 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17170 S:      Supported
17171 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
17172 F:      drivers/reset/reset-axs10x.c
17173
17174 SYNOPSYS CREG GPIO DRIVER
17175 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17176 S:      Maintained
17177 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
17178 F:      drivers/gpio/gpio-creg-snps.c
17179
17180 SYNOPSYS DESIGNWARE 8250 UART DRIVER
17181 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17182 S:      Maintained
17183 F:      drivers/tty/serial/8250/8250_dw.c
17184 F:      drivers/tty/serial/8250/8250_dwlib.*
17185 F:      drivers/tty/serial/8250/8250_lpss.c
17186
17187 SYNOPSYS DESIGNWARE APB GPIO DRIVER
17188 M:      Hoan Tran <hoan@os.amperecomputing.com>
17189 M:      Serge Semin <fancer.lancer@gmail.com>
17190 L:      linux-gpio@vger.kernel.org
17191 S:      Maintained
17192 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
17193 F:      drivers/gpio/gpio-dwapb.c
17194
17195 SYNOPSYS DESIGNWARE APB SSI DRIVER
17196 M:      Serge Semin <fancer.lancer@gmail.com>
17197 L:      linux-spi@vger.kernel.org
17198 S:      Supported
17199 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
17200 F:      drivers/spi/spi-dw*
17201
17202 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
17203 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17204 S:      Maintained
17205 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
17206 F:      drivers/dma/dw-axi-dmac/
17207
17208 SYNOPSYS DESIGNWARE DMAC DRIVER
17209 M:      Viresh Kumar <vireshk@kernel.org>
17210 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17211 S:      Maintained
17212 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
17213 F:      drivers/dma/dw/
17214 F:      include/dt-bindings/dma/dw-dmac.h
17215 F:      include/linux/dma/dw.h
17216 F:      include/linux/platform_data/dma-dw.h
17217
17218 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
17219 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17220 L:      netdev@vger.kernel.org
17221 S:      Supported
17222 F:      drivers/net/ethernet/synopsys/
17223
17224 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
17225 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17226 L:      netdev@vger.kernel.org
17227 S:      Supported
17228 F:      drivers/net/pcs/pcs-xpcs.c
17229 F:      include/linux/pcs/pcs-xpcs.h
17230
17231 SYNOPSYS DESIGNWARE I2C DRIVER
17232 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
17233 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17234 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
17235 L:      linux-i2c@vger.kernel.org
17236 S:      Maintained
17237 F:      drivers/i2c/busses/i2c-designware-*
17238 F:      include/linux/platform_data/i2c-designware.h
17239
17240 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
17241 M:      Jaehoon Chung <jh80.chung@samsung.com>
17242 L:      linux-mmc@vger.kernel.org
17243 S:      Maintained
17244 F:      drivers/mmc/host/dw_mmc*
17245
17246 SYNOPSYS HSDK RESET CONTROLLER DRIVER
17247 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17248 S:      Supported
17249 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
17250 F:      drivers/reset/reset-hsdk.c
17251 F:      include/dt-bindings/reset/snps,hsdk-reset.h
17252
17253 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
17254 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
17255 M:      Manjunath M B <manjumb@synopsys.com>
17256 L:      linux-mmc@vger.kernel.org
17257 S:      Maintained
17258 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
17259
17260 SYSTEM CONFIGURATION (SYSCON)
17261 M:      Lee Jones <lee.jones@linaro.org>
17262 M:      Arnd Bergmann <arnd@arndb.de>
17263 S:      Supported
17264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
17265 F:      drivers/mfd/syscon.c
17266
17267 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
17268 M:      Sudeep Holla <sudeep.holla@arm.com>
17269 R:      Cristian Marussi <cristian.marussi@arm.com>
17270 L:      linux-arm-kernel@lists.infradead.org
17271 S:      Maintained
17272 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
17273 F:      drivers/clk/clk-sc[mp]i.c
17274 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
17275 F:      drivers/firmware/arm_scmi/
17276 F:      drivers/firmware/arm_scpi.c
17277 F:      drivers/regulator/scmi-regulator.c
17278 F:      drivers/reset/reset-scmi.c
17279 F:      include/linux/sc[mp]i_protocol.h
17280 F:      include/trace/events/scmi.h
17281
17282 SYSTEM RESET/SHUTDOWN DRIVERS
17283 M:      Sebastian Reichel <sre@kernel.org>
17284 L:      linux-pm@vger.kernel.org
17285 S:      Maintained
17286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
17287 F:      Documentation/devicetree/bindings/power/reset/
17288 F:      drivers/power/reset/
17289
17290 SYSTEM TRACE MODULE CLASS
17291 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
17292 S:      Maintained
17293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
17294 F:      Documentation/trace/stm.rst
17295 F:      drivers/hwtracing/stm/
17296 F:      include/linux/stm.h
17297 F:      include/uapi/linux/stm.h
17298
17299 SYSTEM76 ACPI DRIVER
17300 M:      Jeremy Soller <jeremy@system76.com>
17301 M:      System76 Product Development <productdev@system76.com>
17302 L:      platform-driver-x86@vger.kernel.org
17303 S:      Maintained
17304 F:      drivers/platform/x86/system76_acpi.c
17305
17306 SYSV FILESYSTEM
17307 M:      Christoph Hellwig <hch@infradead.org>
17308 S:      Maintained
17309 F:      Documentation/filesystems/sysv-fs.rst
17310 F:      fs/sysv/
17311 F:      include/linux/sysv_fs.h
17312
17313 TASKSTATS STATISTICS INTERFACE
17314 M:      Balbir Singh <bsingharora@gmail.com>
17315 S:      Maintained
17316 F:      Documentation/accounting/taskstats*
17317 F:      include/linux/taskstats*
17318 F:      kernel/taskstats.c
17319
17320 TC subsystem
17321 M:      Jamal Hadi Salim <jhs@mojatatu.com>
17322 M:      Cong Wang <xiyou.wangcong@gmail.com>
17323 M:      Jiri Pirko <jiri@resnulli.us>
17324 L:      netdev@vger.kernel.org
17325 S:      Maintained
17326 F:      include/net/pkt_cls.h
17327 F:      include/net/pkt_sched.h
17328 F:      include/net/tc_act/
17329 F:      include/uapi/linux/pkt_cls.h
17330 F:      include/uapi/linux/pkt_sched.h
17331 F:      include/uapi/linux/tc_act/
17332 F:      include/uapi/linux/tc_ematch/
17333 F:      net/sched/
17334
17335 TC90522 MEDIA DRIVER
17336 M:      Akihiro Tsukada <tskd08@gmail.com>
17337 L:      linux-media@vger.kernel.org
17338 S:      Odd Fixes
17339 F:      drivers/media/dvb-frontends/tc90522*
17340
17341 TCP LOW PRIORITY MODULE
17342 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
17343 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
17344 S:      Maintained
17345 W:      http://tcp-lp-mod.sourceforge.net/
17346 F:      net/ipv4/tcp_lp.c
17347
17348 TDA10071 MEDIA DRIVER
17349 M:      Antti Palosaari <crope@iki.fi>
17350 L:      linux-media@vger.kernel.org
17351 S:      Maintained
17352 W:      https://linuxtv.org
17353 W:      http://palosaari.fi/linux/
17354 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17355 T:      git git://linuxtv.org/anttip/media_tree.git
17356 F:      drivers/media/dvb-frontends/tda10071*
17357
17358 TDA18212 MEDIA DRIVER
17359 M:      Antti Palosaari <crope@iki.fi>
17360 L:      linux-media@vger.kernel.org
17361 S:      Maintained
17362 W:      https://linuxtv.org
17363 W:      http://palosaari.fi/linux/
17364 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17365 T:      git git://linuxtv.org/anttip/media_tree.git
17366 F:      drivers/media/tuners/tda18212*
17367
17368 TDA18218 MEDIA DRIVER
17369 M:      Antti Palosaari <crope@iki.fi>
17370 L:      linux-media@vger.kernel.org
17371 S:      Maintained
17372 W:      https://linuxtv.org
17373 W:      http://palosaari.fi/linux/
17374 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17375 T:      git git://linuxtv.org/anttip/media_tree.git
17376 F:      drivers/media/tuners/tda18218*
17377
17378 TDA18250 MEDIA DRIVER
17379 M:      Olli Salonen <olli.salonen@iki.fi>
17380 L:      linux-media@vger.kernel.org
17381 S:      Maintained
17382 W:      https://linuxtv.org
17383 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17384 T:      git git://linuxtv.org/media_tree.git
17385 F:      drivers/media/tuners/tda18250*
17386
17387 TDA18271 MEDIA DRIVER
17388 M:      Michael Krufky <mkrufky@linuxtv.org>
17389 L:      linux-media@vger.kernel.org
17390 S:      Maintained
17391 W:      https://linuxtv.org
17392 W:      http://github.com/mkrufky
17393 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17394 T:      git git://linuxtv.org/mkrufky/tuners.git
17395 F:      drivers/media/tuners/tda18271*
17396
17397 TDA1997x MEDIA DRIVER
17398 M:      Tim Harvey <tharvey@gateworks.com>
17399 L:      linux-media@vger.kernel.org
17400 S:      Maintained
17401 W:      https://linuxtv.org
17402 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17403 F:      drivers/media/i2c/tda1997x.*
17404
17405 TDA827x MEDIA DRIVER
17406 M:      Michael Krufky <mkrufky@linuxtv.org>
17407 L:      linux-media@vger.kernel.org
17408 S:      Maintained
17409 W:      https://linuxtv.org
17410 W:      http://github.com/mkrufky
17411 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17412 T:      git git://linuxtv.org/mkrufky/tuners.git
17413 F:      drivers/media/tuners/tda8290.*
17414
17415 TDA8290 MEDIA DRIVER
17416 M:      Michael Krufky <mkrufky@linuxtv.org>
17417 L:      linux-media@vger.kernel.org
17418 S:      Maintained
17419 W:      https://linuxtv.org
17420 W:      http://github.com/mkrufky
17421 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17422 T:      git git://linuxtv.org/mkrufky/tuners.git
17423 F:      drivers/media/tuners/tda8290.*
17424
17425 TDA9840 MEDIA DRIVER
17426 M:      Hans Verkuil <hverkuil@xs4all.nl>
17427 L:      linux-media@vger.kernel.org
17428 S:      Maintained
17429 W:      https://linuxtv.org
17430 T:      git git://linuxtv.org/media_tree.git
17431 F:      drivers/media/i2c/tda9840*
17432
17433 TEA5761 TUNER DRIVER
17434 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17435 L:      linux-media@vger.kernel.org
17436 S:      Odd fixes
17437 W:      https://linuxtv.org
17438 T:      git git://linuxtv.org/media_tree.git
17439 F:      drivers/media/tuners/tea5761.*
17440
17441 TEA5767 TUNER DRIVER
17442 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17443 L:      linux-media@vger.kernel.org
17444 S:      Maintained
17445 W:      https://linuxtv.org
17446 T:      git git://linuxtv.org/media_tree.git
17447 F:      drivers/media/tuners/tea5767.*
17448
17449 TEA6415C MEDIA DRIVER
17450 M:      Hans Verkuil <hverkuil@xs4all.nl>
17451 L:      linux-media@vger.kernel.org
17452 S:      Maintained
17453 W:      https://linuxtv.org
17454 T:      git git://linuxtv.org/media_tree.git
17455 F:      drivers/media/i2c/tea6415c*
17456
17457 TEA6420 MEDIA DRIVER
17458 M:      Hans Verkuil <hverkuil@xs4all.nl>
17459 L:      linux-media@vger.kernel.org
17460 S:      Maintained
17461 W:      https://linuxtv.org
17462 T:      git git://linuxtv.org/media_tree.git
17463 F:      drivers/media/i2c/tea6420*
17464
17465 TEAM DRIVER
17466 M:      Jiri Pirko <jiri@resnulli.us>
17467 L:      netdev@vger.kernel.org
17468 S:      Supported
17469 F:      drivers/net/team/
17470 F:      include/linux/if_team.h
17471 F:      include/uapi/linux/if_team.h
17472
17473 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
17474 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
17475 S:      Maintained
17476 F:      arch/x86/platform/ts5500/
17477
17478 TECHNOTREND USB IR RECEIVER
17479 M:      Sean Young <sean@mess.org>
17480 L:      linux-media@vger.kernel.org
17481 S:      Maintained
17482 F:      drivers/media/rc/ttusbir.c
17483
17484 TECHWELL TW9910 VIDEO DECODER
17485 L:      linux-media@vger.kernel.org
17486 S:      Orphan
17487 F:      drivers/media/i2c/tw9910.c
17488 F:      include/media/i2c/tw9910.h
17489
17490 TEE SUBSYSTEM
17491 M:      Jens Wiklander <jens.wiklander@linaro.org>
17492 L:      op-tee@lists.trustedfirmware.org
17493 S:      Maintained
17494 F:      Documentation/staging/tee.rst
17495 F:      drivers/tee/
17496 F:      include/linux/tee_drv.h
17497 F:      include/uapi/linux/tee.h
17498
17499 TEGRA ARCHITECTURE SUPPORT
17500 M:      Thierry Reding <thierry.reding@gmail.com>
17501 M:      Jonathan Hunter <jonathanh@nvidia.com>
17502 L:      linux-tegra@vger.kernel.org
17503 S:      Supported
17504 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
17505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
17506 N:      [^a-z]tegra
17507
17508 TEGRA CLOCK DRIVER
17509 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
17510 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
17511 S:      Supported
17512 F:      drivers/clk/tegra/
17513
17514 TEGRA DMA DRIVERS
17515 M:      Laxman Dewangan <ldewangan@nvidia.com>
17516 M:      Jon Hunter <jonathanh@nvidia.com>
17517 S:      Supported
17518 F:      drivers/dma/tegra*
17519
17520 TEGRA I2C DRIVER
17521 M:      Laxman Dewangan <ldewangan@nvidia.com>
17522 R:      Dmitry Osipenko <digetx@gmail.com>
17523 S:      Supported
17524 F:      drivers/i2c/busses/i2c-tegra.c
17525
17526 TEGRA IOMMU DRIVERS
17527 M:      Thierry Reding <thierry.reding@gmail.com>
17528 R:      Krishna Reddy <vdumpa@nvidia.com>
17529 L:      linux-tegra@vger.kernel.org
17530 S:      Supported
17531 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
17532 F:      drivers/iommu/tegra*
17533
17534 TEGRA KBC DRIVER
17535 M:      Laxman Dewangan <ldewangan@nvidia.com>
17536 S:      Supported
17537 F:      drivers/input/keyboard/tegra-kbc.c
17538
17539 TEGRA NAND DRIVER
17540 M:      Stefan Agner <stefan@agner.ch>
17541 M:      Lucas Stach <dev@lynxeye.de>
17542 S:      Maintained
17543 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
17544 F:      drivers/mtd/nand/raw/tegra_nand.c
17545
17546 TEGRA PWM DRIVER
17547 M:      Thierry Reding <thierry.reding@gmail.com>
17548 S:      Supported
17549 F:      drivers/pwm/pwm-tegra.c
17550
17551 TEGRA SERIAL DRIVER
17552 M:      Laxman Dewangan <ldewangan@nvidia.com>
17553 S:      Supported
17554 F:      drivers/tty/serial/serial-tegra.c
17555
17556 TEGRA SPI DRIVER
17557 M:      Laxman Dewangan <ldewangan@nvidia.com>
17558 S:      Supported
17559 F:      drivers/spi/spi-tegra*
17560
17561 TEGRA QUAD SPI DRIVER
17562 M:      Thierry Reding <thierry.reding@gmail.com>
17563 M:      Jonathan Hunter <jonathanh@nvidia.com>
17564 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
17565 L:      linux-tegra@vger.kernel.org
17566 S:      Maintained
17567 F:      drivers/spi/spi-tegra210-quad.c
17568
17569 TEGRA VIDEO DRIVER
17570 M:      Thierry Reding <thierry.reding@gmail.com>
17571 M:      Jonathan Hunter <jonathanh@nvidia.com>
17572 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
17573 L:      linux-media@vger.kernel.org
17574 L:      linux-tegra@vger.kernel.org
17575 S:      Maintained
17576 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
17577 F:      drivers/staging/media/tegra-video/
17578
17579 TEGRA XUSB PADCTL DRIVER
17580 M:      JC Kuo <jckuo@nvidia.com>
17581 S:      Supported
17582 F:      drivers/phy/tegra/xusb*
17583
17584 TEHUTI ETHERNET DRIVER
17585 M:      Andy Gospodarek <andy@greyhouse.net>
17586 L:      netdev@vger.kernel.org
17587 S:      Supported
17588 F:      drivers/net/ethernet/tehuti/*
17589
17590 TELECOM CLOCK DRIVER FOR MCPL0010
17591 M:      Mark Gross <mark.gross@intel.com>
17592 S:      Supported
17593 F:      drivers/char/tlclk.c
17594
17595 TEMPO SEMICONDUCTOR DRIVERS
17596 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
17597 S:      Maintained
17598 F:      Documentation/devicetree/bindings/sound/tscs*.txt
17599 F:      sound/soc/codecs/tscs*.c
17600 F:      sound/soc/codecs/tscs*.h
17601
17602 TENSILICA XTENSA PORT (xtensa)
17603 M:      Chris Zankel <chris@zankel.net>
17604 M:      Max Filippov <jcmvbkbc@gmail.com>
17605 L:      linux-xtensa@linux-xtensa.org
17606 S:      Maintained
17607 T:      git git://github.com/czankel/xtensa-linux.git
17608 F:      arch/xtensa/
17609 F:      drivers/irqchip/irq-xtensa-*
17610
17611 TEXAS INSTRUMENTS ASoC DRIVERS
17612 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
17613 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17614 S:      Maintained
17615 F:      sound/soc/ti/
17616
17617 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
17618 M:      Ricardo Ribalda <ribalda@kernel.org>
17619 L:      linux-iio@vger.kernel.org
17620 S:      Supported
17621 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
17622 F:      drivers/iio/dac/ti-dac7612.c
17623
17624 TEXAS INSTRUMENTS DMA DRIVERS
17625 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
17626 L:      dmaengine@vger.kernel.org
17627 S:      Maintained
17628 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
17629 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
17630 F:      Documentation/devicetree/bindings/dma/ti/
17631 F:      drivers/dma/ti/
17632 X:      drivers/dma/ti/cppi41.c
17633 F:      include/linux/dma/k3-udma-glue.h
17634 F:      include/linux/dma/ti-cppi5.h
17635 F:      include/linux/dma/k3-psil.h
17636
17637 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
17638 M:      Nishanth Menon <nm@ti.com>
17639 M:      Tero Kristo <kristo@kernel.org>
17640 M:      Santosh Shilimkar <ssantosh@kernel.org>
17641 L:      linux-arm-kernel@lists.infradead.org
17642 S:      Maintained
17643 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
17644 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
17645 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
17646 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
17647 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
17648 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
17649 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
17650 F:      drivers/clk/keystone/sci-clk.c
17651 F:      drivers/firmware/ti_sci*
17652 F:      drivers/irqchip/irq-ti-sci-inta.c
17653 F:      drivers/irqchip/irq-ti-sci-intr.c
17654 F:      drivers/reset/reset-ti-sci.c
17655 F:      drivers/soc/ti/ti_sci_inta_msi.c
17656 F:      drivers/soc/ti/ti_sci_pm_domains.c
17657 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
17658 F:      include/linux/soc/ti/ti_sci_inta_msi.h
17659 F:      include/linux/soc/ti/ti_sci_protocol.h
17660
17661 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
17662 M:      Robert Marko <robert.marko@sartura.hr>
17663 M:      Luka Perkov <luka.perkov@sartura.hr>
17664 L:      linux-hwmon@vger.kernel.org
17665 S:      Maintained
17666 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
17667 F:      Documentation/hwmon/tps23861.rst
17668 F:      drivers/hwmon/tps23861.c
17669
17670 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
17671 M:      Hans Verkuil <hverkuil@xs4all.nl>
17672 L:      linux-media@vger.kernel.org
17673 S:      Maintained
17674 W:      https://linuxtv.org
17675 T:      git git://linuxtv.org/media_tree.git
17676 F:      drivers/media/radio/radio-raremono.c
17677
17678 THERMAL
17679 M:      Zhang Rui <rui.zhang@intel.com>
17680 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
17681 R:      Amit Kucheria <amitk@kernel.org>
17682 L:      linux-pm@vger.kernel.org
17683 S:      Supported
17684 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
17686 F:      Documentation/devicetree/bindings/thermal/
17687 F:      drivers/thermal/
17688 F:      include/linux/cpu_cooling.h
17689 F:      include/linux/thermal.h
17690 F:      include/uapi/linux/thermal.h
17691
17692 THERMAL DRIVER FOR AMLOGIC SOCS
17693 M:      Guillaume La Roque <glaroque@baylibre.com>
17694 L:      linux-pm@vger.kernel.org
17695 L:      linux-amlogic@lists.infradead.org
17696 S:      Supported
17697 W:      http://linux-meson.com/
17698 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
17699 F:      drivers/thermal/amlogic_thermal.c
17700
17701 THERMAL/CPU_COOLING
17702 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
17703 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
17704 M:      Viresh Kumar <viresh.kumar@linaro.org>
17705 M:      Javi Merino <javi.merino@kernel.org>
17706 L:      linux-pm@vger.kernel.org
17707 S:      Supported
17708 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
17709 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
17710 F:      drivers/thermal/cpufreq_cooling.c
17711 F:      drivers/thermal/cpuidle_cooling.c
17712 F:      include/linux/cpu_cooling.h
17713
17714 THERMAL/POWER_ALLOCATOR
17715 M:      Lukasz Luba <lukasz.luba@arm.com>
17716 L:      linux-pm@vger.kernel.org
17717 S:      Maintained
17718 F:      Documentation/driver-api/thermal/power_allocator.rst
17719 F:      drivers/thermal/gov_power_allocator.c
17720 F:      include/trace/events/thermal_power_allocator.h
17721
17722 THINKPAD ACPI EXTRAS DRIVER
17723 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
17724 L:      ibm-acpi-devel@lists.sourceforge.net
17725 L:      platform-driver-x86@vger.kernel.org
17726 S:      Maintained
17727 W:      http://ibm-acpi.sourceforge.net
17728 W:      http://thinkwiki.org/wiki/Ibm-acpi
17729 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
17730 F:      drivers/platform/x86/thinkpad_acpi.c
17731
17732 THUNDERBOLT DMA TRAFFIC TEST DRIVER
17733 M:      Isaac Hazan <isaac.hazan@intel.com>
17734 L:      linux-usb@vger.kernel.org
17735 S:      Maintained
17736 F:      drivers/thunderbolt/dma_test.c
17737
17738 THUNDERBOLT DRIVER
17739 M:      Andreas Noever <andreas.noever@gmail.com>
17740 M:      Michael Jamet <michael.jamet@intel.com>
17741 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
17742 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
17743 L:      linux-usb@vger.kernel.org
17744 S:      Maintained
17745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
17746 F:      Documentation/admin-guide/thunderbolt.rst
17747 F:      drivers/thunderbolt/
17748 F:      include/linux/thunderbolt.h
17749
17750 THUNDERBOLT NETWORK DRIVER
17751 M:      Michael Jamet <michael.jamet@intel.com>
17752 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
17753 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
17754 L:      netdev@vger.kernel.org
17755 S:      Maintained
17756 F:      drivers/net/thunderbolt.c
17757
17758 THUNDERX GPIO DRIVER
17759 M:      Robert Richter <rric@kernel.org>
17760 S:      Odd Fixes
17761 F:      drivers/gpio/gpio-thunderx.c
17762
17763 TI AM437X VPFE DRIVER
17764 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17765 L:      linux-media@vger.kernel.org
17766 S:      Maintained
17767 W:      https://linuxtv.org
17768 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17769 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17770 F:      drivers/media/platform/am437x/
17771
17772 TI BANDGAP AND THERMAL DRIVER
17773 M:      Eduardo Valentin <edubezval@gmail.com>
17774 M:      Keerthy <j-keerthy@ti.com>
17775 L:      linux-pm@vger.kernel.org
17776 L:      linux-omap@vger.kernel.org
17777 S:      Maintained
17778 F:      drivers/thermal/ti-soc-thermal/
17779
17780 TI BQ27XXX POWER SUPPLY DRIVER
17781 R:      Dan Murphy <dmurphy@ti.com>
17782 F:      drivers/power/supply/bq27xxx_battery.c
17783 F:      drivers/power/supply/bq27xxx_battery_i2c.c
17784 F:      include/linux/power/bq27xxx_battery.h
17785
17786 TI CDCE706 CLOCK DRIVER
17787 M:      Max Filippov <jcmvbkbc@gmail.com>
17788 S:      Maintained
17789 F:      drivers/clk/clk-cdce706.c
17790
17791 TI CLOCK DRIVER
17792 M:      Tero Kristo <kristo@kernel.org>
17793 L:      linux-omap@vger.kernel.org
17794 S:      Odd Fixes
17795 F:      drivers/clk/ti/
17796 F:      include/linux/clk/ti.h
17797
17798 TI DAVINCI MACHINE SUPPORT
17799 M:      Sekhar Nori <nsekhar@ti.com>
17800 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
17801 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17802 S:      Supported
17803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
17804 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
17805 F:      arch/arm/boot/dts/da850*
17806 F:      arch/arm/mach-davinci/
17807 F:      drivers/i2c/busses/i2c-davinci.c
17808
17809 TI DAVINCI SERIES CLOCK DRIVER
17810 M:      David Lechner <david@lechnology.com>
17811 R:      Sekhar Nori <nsekhar@ti.com>
17812 S:      Maintained
17813 F:      Documentation/devicetree/bindings/clock/ti/davinci/
17814 F:      drivers/clk/davinci/
17815
17816 TI DAVINCI SERIES GPIO DRIVER
17817 M:      Keerthy <j-keerthy@ti.com>
17818 L:      linux-gpio@vger.kernel.org
17819 S:      Maintained
17820 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
17821 F:      drivers/gpio/gpio-davinci.c
17822
17823 TI DAVINCI SERIES MEDIA DRIVER
17824 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17825 L:      linux-media@vger.kernel.org
17826 S:      Maintained
17827 W:      https://linuxtv.org
17828 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17829 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17830 F:      drivers/media/platform/davinci/
17831 F:      include/media/davinci/
17832
17833 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
17834 R:      David Lechner <david@lechnology.com>
17835 L:      linux-iio@vger.kernel.org
17836 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
17837 F:      drivers/counter/ti-eqep.c
17838
17839 TI ETHERNET SWITCH DRIVER (CPSW)
17840 R:      Grygorii Strashko <grygorii.strashko@ti.com>
17841 L:      linux-omap@vger.kernel.org
17842 L:      netdev@vger.kernel.org
17843 S:      Maintained
17844 F:      drivers/net/ethernet/ti/cpsw*
17845 F:      drivers/net/ethernet/ti/davinci*
17846
17847 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
17848 M:      Alex Dubov <oakad@yahoo.com>
17849 S:      Maintained
17850 W:      http://tifmxx.berlios.de/
17851 F:      drivers/memstick/host/tifm_ms.c
17852 F:      drivers/misc/tifm*
17853 F:      drivers/mmc/host/tifm_sd.c
17854 F:      include/linux/tifm.h
17855
17856 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
17857 M:      Santosh Shilimkar <ssantosh@kernel.org>
17858 L:      linux-kernel@vger.kernel.org
17859 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17860 S:      Maintained
17861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
17862 F:      drivers/soc/ti/*
17863
17864 TI LM49xxx FAMILY ASoC CODEC DRIVERS
17865 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
17866 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
17867 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17868 S:      Maintained
17869 F:      sound/soc/codecs/isabelle*
17870 F:      sound/soc/codecs/lm49453*
17871
17872 TI LP855x BACKLIGHT DRIVER
17873 M:      Milo Kim <milo.kim@ti.com>
17874 S:      Maintained
17875 F:      Documentation/driver-api/backlight/lp855x-driver.rst
17876 F:      drivers/video/backlight/lp855x_bl.c
17877 F:      include/linux/platform_data/lp855x.h
17878
17879 TI LP8727 CHARGER DRIVER
17880 M:      Milo Kim <milo.kim@ti.com>
17881 S:      Maintained
17882 F:      drivers/power/supply/lp8727_charger.c
17883 F:      include/linux/platform_data/lp8727.h
17884
17885 TI LP8788 MFD DRIVER
17886 M:      Milo Kim <milo.kim@ti.com>
17887 S:      Maintained
17888 F:      drivers/iio/adc/lp8788_adc.c
17889 F:      drivers/leds/leds-lp8788.c
17890 F:      drivers/mfd/lp8788*.c
17891 F:      drivers/power/supply/lp8788-charger.c
17892 F:      drivers/regulator/lp8788-*.c
17893 F:      include/linux/mfd/lp8788*.h
17894
17895 TI NETCP ETHERNET DRIVER
17896 M:      Wingman Kwok <w-kwok2@ti.com>
17897 M:      Murali Karicheri <m-karicheri2@ti.com>
17898 L:      netdev@vger.kernel.org
17899 S:      Maintained
17900 F:      drivers/net/ethernet/ti/netcp*
17901
17902 TI PCM3060 ASoC CODEC DRIVER
17903 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
17904 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17905 S:      Maintained
17906 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
17907 F:      sound/soc/codecs/pcm3060*
17908
17909 TI TAS571X FAMILY ASoC CODEC DRIVER
17910 M:      Kevin Cernekee <cernekee@chromium.org>
17911 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17912 S:      Odd Fixes
17913 F:      sound/soc/codecs/tas571x*
17914
17915 TI TCAN4X5X DEVICE DRIVER
17916 M:      Dan Murphy <dmurphy@ti.com>
17917 L:      linux-can@vger.kernel.org
17918 S:      Maintained
17919 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
17920 F:      drivers/net/can/m_can/tcan4x5x*
17921
17922 TI TRF7970A NFC DRIVER
17923 M:      Mark Greer <mgreer@animalcreek.com>
17924 L:      linux-wireless@vger.kernel.org
17925 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
17926 S:      Supported
17927 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
17928 F:      drivers/nfc/trf7970a.c
17929
17930 TI TWL4030 SERIES SOC CODEC DRIVER
17931 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
17932 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17933 S:      Maintained
17934 F:      sound/soc/codecs/twl4030*
17935
17936 TI VPE/CAL DRIVERS
17937 M:      Benoit Parrot <bparrot@ti.com>
17938 L:      linux-media@vger.kernel.org
17939 S:      Maintained
17940 W:      http://linuxtv.org/
17941 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17942 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
17943 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
17944 F:      drivers/media/platform/ti-vpe/
17945
17946 TI WILINK WIRELESS DRIVERS
17947 L:      linux-wireless@vger.kernel.org
17948 S:      Orphan
17949 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
17950 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
17951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
17952 F:      drivers/net/wireless/ti/
17953 F:      include/linux/wl12xx.h
17954
17955 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
17956 M:      John Stultz <john.stultz@linaro.org>
17957 M:      Thomas Gleixner <tglx@linutronix.de>
17958 R:      Stephen Boyd <sboyd@kernel.org>
17959 L:      linux-kernel@vger.kernel.org
17960 S:      Supported
17961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
17962 F:      include/linux/clocksource.h
17963 F:      include/linux/time.h
17964 F:      include/linux/timex.h
17965 F:      include/uapi/linux/time.h
17966 F:      include/uapi/linux/timex.h
17967 F:      kernel/time/alarmtimer.c
17968 F:      kernel/time/clocksource.c
17969 F:      kernel/time/ntp.c
17970 F:      kernel/time/time*.c
17971 F:      tools/testing/selftests/timers/
17972
17973 TIPC NETWORK LAYER
17974 M:      Jon Maloy <jmaloy@redhat.com>
17975 M:      Ying Xue <ying.xue@windriver.com>
17976 L:      netdev@vger.kernel.org (core kernel code)
17977 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
17978 S:      Maintained
17979 W:      http://tipc.sourceforge.net/
17980 F:      include/uapi/linux/tipc*.h
17981 F:      net/tipc/
17982
17983 TLAN NETWORK DRIVER
17984 M:      Samuel Chessman <chessman@tux.org>
17985 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
17986 S:      Maintained
17987 W:      http://sourceforge.net/projects/tlan/
17988 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
17989 F:      drivers/net/ethernet/ti/tlan.*
17990
17991 TM6000 VIDEO4LINUX DRIVER
17992 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17993 L:      linux-media@vger.kernel.org
17994 S:      Odd fixes
17995 W:      https://linuxtv.org
17996 T:      git git://linuxtv.org/media_tree.git
17997 F:      Documentation/admin-guide/media/tm6000*
17998 F:      drivers/media/usb/tm6000/
17999
18000 TMIO/SDHI MMC DRIVER
18001 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
18002 L:      linux-mmc@vger.kernel.org
18003 S:      Supported
18004 F:      drivers/mmc/host/renesas_sdhi*
18005 F:      drivers/mmc/host/tmio_mmc*
18006 F:      include/linux/mfd/tmio.h
18007
18008 TMP401 HARDWARE MONITOR DRIVER
18009 M:      Guenter Roeck <linux@roeck-us.net>
18010 L:      linux-hwmon@vger.kernel.org
18011 S:      Maintained
18012 F:      Documentation/hwmon/tmp401.rst
18013 F:      drivers/hwmon/tmp401.c
18014
18015 TMP513 HARDWARE MONITOR DRIVER
18016 M:      Eric Tremblay <etremblay@distech-controls.com>
18017 L:      linux-hwmon@vger.kernel.org
18018 S:      Maintained
18019 F:      Documentation/hwmon/tmp513.rst
18020 F:      drivers/hwmon/tmp513.c
18021
18022 TMPFS (SHMEM FILESYSTEM)
18023 M:      Hugh Dickins <hughd@google.com>
18024 L:      linux-mm@kvack.org
18025 S:      Maintained
18026 F:      include/linux/shmem_fs.h
18027 F:      mm/shmem.c
18028
18029 TOMOYO SECURITY MODULE
18030 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
18031 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
18032 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
18033 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
18034 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
18035 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
18036 S:      Maintained
18037 W:      https://tomoyo.osdn.jp/
18038 F:      security/tomoyo/
18039
18040 TOPSTAR LAPTOP EXTRAS DRIVER
18041 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
18042 L:      platform-driver-x86@vger.kernel.org
18043 S:      Maintained
18044 F:      drivers/platform/x86/topstar-laptop.c
18045
18046 TORTURE-TEST MODULES
18047 M:      Davidlohr Bueso <dave@stgolabs.net>
18048 M:      "Paul E. McKenney" <paulmck@kernel.org>
18049 M:      Josh Triplett <josh@joshtriplett.org>
18050 L:      linux-kernel@vger.kernel.org
18051 S:      Supported
18052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18053 F:      Documentation/RCU/torture.rst
18054 F:      kernel/locking/locktorture.c
18055 F:      kernel/rcu/rcuscale.c
18056 F:      kernel/rcu/rcutorture.c
18057 F:      kernel/rcu/refscale.c
18058 F:      kernel/torture.c
18059
18060 TOSHIBA ACPI EXTRAS DRIVER
18061 M:      Azael Avalos <coproscefalo@gmail.com>
18062 L:      platform-driver-x86@vger.kernel.org
18063 S:      Maintained
18064 F:      drivers/platform/x86/toshiba_acpi.c
18065
18066 TOSHIBA BLUETOOTH DRIVER
18067 M:      Azael Avalos <coproscefalo@gmail.com>
18068 L:      platform-driver-x86@vger.kernel.org
18069 S:      Maintained
18070 F:      drivers/platform/x86/toshiba_bluetooth.c
18071
18072 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
18073 M:      Azael Avalos <coproscefalo@gmail.com>
18074 L:      platform-driver-x86@vger.kernel.org
18075 S:      Maintained
18076 F:      drivers/platform/x86/toshiba_haps.c
18077
18078 TOSHIBA SMM DRIVER
18079 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
18080 S:      Maintained
18081 W:      http://www.buzzard.org.uk/toshiba/
18082 F:      drivers/char/toshiba.c
18083 F:      include/linux/toshiba.h
18084 F:      include/uapi/linux/toshiba.h
18085
18086 TOSHIBA TC358743 DRIVER
18087 M:      Mats Randgaard <matrandg@cisco.com>
18088 L:      linux-media@vger.kernel.org
18089 S:      Maintained
18090 F:      drivers/media/i2c/tc358743*
18091 F:      include/media/i2c/tc358743.h
18092
18093 TOSHIBA WMI HOTKEYS DRIVER
18094 M:      Azael Avalos <coproscefalo@gmail.com>
18095 L:      platform-driver-x86@vger.kernel.org
18096 S:      Maintained
18097 F:      drivers/platform/x86/toshiba-wmi.c
18098
18099 TPM DEVICE DRIVER
18100 M:      Peter Huewe <peterhuewe@gmx.de>
18101 M:      Jarkko Sakkinen <jarkko@kernel.org>
18102 R:      Jason Gunthorpe <jgg@ziepe.ca>
18103 L:      linux-integrity@vger.kernel.org
18104 S:      Maintained
18105 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
18106 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
18107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
18108 F:      drivers/char/tpm/
18109
18110 TRACING
18111 M:      Steven Rostedt <rostedt@goodmis.org>
18112 M:      Ingo Molnar <mingo@redhat.com>
18113 S:      Maintained
18114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
18115 F:      Documentation/trace/ftrace.rst
18116 F:      arch/*/*/*/ftrace.h
18117 F:      arch/*/kernel/ftrace.c
18118 F:      fs/tracefs/
18119 F:      include/*/ftrace.h
18120 F:      include/linux/trace*.h
18121 F:      include/trace/
18122 F:      kernel/trace/
18123 F:      tools/testing/selftests/ftrace/
18124
18125 TRACING MMIO ACCESSES (MMIOTRACE)
18126 M:      Steven Rostedt <rostedt@goodmis.org>
18127 M:      Ingo Molnar <mingo@kernel.org>
18128 R:      Karol Herbst <karolherbst@gmail.com>
18129 R:      Pekka Paalanen <ppaalanen@gmail.com>
18130 L:      linux-kernel@vger.kernel.org
18131 L:      nouveau@lists.freedesktop.org
18132 S:      Maintained
18133 F:      arch/x86/mm/kmmio.c
18134 F:      arch/x86/mm/mmio-mod.c
18135 F:      arch/x86/mm/testmmiotrace.c
18136 F:      include/linux/mmiotrace.h
18137 F:      kernel/trace/trace_mmiotrace.c
18138
18139 TRIVIAL PATCHES
18140 M:      Jiri Kosina <trivial@kernel.org>
18141 S:      Maintained
18142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
18143 K:      ^Subject:.*(?i)trivial
18144
18145 TTY LAYER
18146 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18147 M:      Jiri Slaby <jirislaby@kernel.org>
18148 S:      Supported
18149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
18150 F:      Documentation/driver-api/serial/
18151 F:      drivers/tty/
18152 F:      drivers/tty/serial/serial_core.c
18153 F:      include/linux/serial.h
18154 F:      include/linux/serial_core.h
18155 F:      include/linux/tty.h
18156 F:      include/uapi/linux/serial.h
18157 F:      include/uapi/linux/serial_core.h
18158 F:      include/uapi/linux/tty.h
18159
18160 TUA9001 MEDIA DRIVER
18161 M:      Antti Palosaari <crope@iki.fi>
18162 L:      linux-media@vger.kernel.org
18163 S:      Maintained
18164 W:      https://linuxtv.org
18165 W:      http://palosaari.fi/linux/
18166 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18167 T:      git git://linuxtv.org/anttip/media_tree.git
18168 F:      drivers/media/tuners/tua9001*
18169
18170 TULIP NETWORK DRIVERS
18171 L:      netdev@vger.kernel.org
18172 L:      linux-parisc@vger.kernel.org
18173 S:      Orphan
18174 F:      drivers/net/ethernet/dec/tulip/
18175
18176 TUN/TAP driver
18177 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
18178 S:      Maintained
18179 W:      http://vtun.sourceforge.net/tun
18180 F:      Documentation/networking/tuntap.rst
18181 F:      arch/um/os-Linux/drivers/
18182
18183 TURBOCHANNEL SUBSYSTEM
18184 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
18185 M:      Ralf Baechle <ralf@linux-mips.org>
18186 L:      linux-mips@vger.kernel.org
18187 S:      Maintained
18188 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
18189 F:      drivers/tc/
18190 F:      include/linux/tc.h
18191
18192 TURBOSTAT UTILITY
18193 M:      "Len Brown" <lenb@kernel.org>
18194 L:      linux-pm@vger.kernel.org
18195 S:      Supported
18196 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18197 B:      https://bugzilla.kernel.org
18198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
18199 F:      tools/power/x86/turbostat/
18200
18201 TW5864 VIDEO4LINUX DRIVER
18202 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18203 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18204 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
18205 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18206 L:      linux-media@vger.kernel.org
18207 S:      Supported
18208 F:      drivers/media/pci/tw5864/
18209
18210 TW68 VIDEO4LINUX DRIVER
18211 M:      Hans Verkuil <hverkuil@xs4all.nl>
18212 L:      linux-media@vger.kernel.org
18213 S:      Odd Fixes
18214 W:      https://linuxtv.org
18215 T:      git git://linuxtv.org/media_tree.git
18216 F:      drivers/media/pci/tw68/
18217
18218 TW686X VIDEO4LINUX DRIVER
18219 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18220 L:      linux-media@vger.kernel.org
18221 S:      Maintained
18222 W:      http://linuxtv.org
18223 T:      git git://linuxtv.org/media_tree.git
18224 F:      drivers/media/pci/tw686x/
18225
18226 UACCE ACCELERATOR FRAMEWORK
18227 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
18228 M:      Zhou Wang <wangzhou1@hisilicon.com>
18229 L:      linux-accelerators@lists.ozlabs.org
18230 L:      linux-kernel@vger.kernel.org
18231 S:      Maintained
18232 F:      Documentation/ABI/testing/sysfs-driver-uacce
18233 F:      Documentation/misc-devices/uacce.rst
18234 F:      drivers/misc/uacce/
18235 F:      include/linux/uacce.h
18236 F:      include/uapi/misc/uacce/
18237
18238 UBI FILE SYSTEM (UBIFS)
18239 M:      Richard Weinberger <richard@nod.at>
18240 L:      linux-mtd@lists.infradead.org
18241 S:      Supported
18242 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
18243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18245 F:      Documentation/filesystems/ubifs-authentication.rst
18246 F:      Documentation/filesystems/ubifs.rst
18247 F:      fs/ubifs/
18248
18249 UCLINUX (M68KNOMMU AND COLDFIRE)
18250 M:      Greg Ungerer <gerg@linux-m68k.org>
18251 L:      linux-m68k@lists.linux-m68k.org
18252 L:      uclinux-dev@uclinux.org  (subscribers-only)
18253 S:      Maintained
18254 W:      http://www.linux-m68k.org/
18255 W:      http://www.uclinux.org/
18256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
18257 F:      arch/m68k/*/*_no.*
18258 F:      arch/m68k/68*/
18259 F:      arch/m68k/coldfire/
18260 F:      arch/m68k/include/asm/*_no.*
18261
18262 UDF FILESYSTEM
18263 M:      Jan Kara <jack@suse.com>
18264 S:      Maintained
18265 F:      Documentation/filesystems/udf.rst
18266 F:      fs/udf/
18267
18268 UDRAW TABLET
18269 M:      Bastien Nocera <hadess@hadess.net>
18270 L:      linux-input@vger.kernel.org
18271 S:      Maintained
18272 F:      drivers/hid/hid-udraw-ps3.c
18273
18274 UFS FILESYSTEM
18275 M:      Evgeniy Dushistov <dushistov@mail.ru>
18276 S:      Maintained
18277 F:      Documentation/admin-guide/ufs.rst
18278 F:      fs/ufs/
18279
18280 UHID USERSPACE HID IO DRIVER
18281 M:      David Rheinsberg <david.rheinsberg@gmail.com>
18282 L:      linux-input@vger.kernel.org
18283 S:      Maintained
18284 F:      drivers/hid/uhid.c
18285 F:      include/uapi/linux/uhid.h
18286
18287 ULPI BUS
18288 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18289 L:      linux-usb@vger.kernel.org
18290 S:      Maintained
18291 F:      drivers/usb/common/ulpi.c
18292 F:      include/linux/ulpi/
18293
18294 UNICODE SUBSYSTEM
18295 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
18296 L:      linux-fsdevel@vger.kernel.org
18297 S:      Supported
18298 F:      fs/unicode/
18299
18300 UNIFDEF
18301 M:      Tony Finch <dot@dotat.at>
18302 S:      Maintained
18303 W:      http://dotat.at/prog/unifdef
18304 F:      scripts/unifdef.c
18305
18306 UNIFORM CDROM DRIVER
18307 M:      Jens Axboe <axboe@kernel.dk>
18308 S:      Maintained
18309 W:      http://www.kernel.dk
18310 F:      Documentation/cdrom/
18311 F:      drivers/cdrom/cdrom.c
18312 F:      include/linux/cdrom.h
18313 F:      include/uapi/linux/cdrom.h
18314
18315 UNISYS S-PAR DRIVERS
18316 M:      David Kershner <david.kershner@unisys.com>
18317 L:      sparmaintainer@unisys.com (Unisys internal)
18318 S:      Supported
18319 F:      drivers/staging/unisys/
18320 F:      drivers/visorbus/
18321 F:      include/linux/visorbus.h
18322
18323 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
18324 R:      Alim Akhtar <alim.akhtar@samsung.com>
18325 R:      Avri Altman <avri.altman@wdc.com>
18326 L:      linux-scsi@vger.kernel.org
18327 S:      Supported
18328 F:      Documentation/scsi/ufs.rst
18329 F:      drivers/scsi/ufs/
18330
18331 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
18332 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
18333 L:      linux-scsi@vger.kernel.org
18334 S:      Supported
18335 F:      drivers/scsi/ufs/*dwc*
18336
18337 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
18338 M:      Stanley Chu <stanley.chu@mediatek.com>
18339 L:      linux-scsi@vger.kernel.org
18340 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
18341 S:      Maintained
18342 F:      drivers/scsi/ufs/ufs-mediatek*
18343
18344 UNSORTED BLOCK IMAGES (UBI)
18345 M:      Richard Weinberger <richard@nod.at>
18346 L:      linux-mtd@lists.infradead.org
18347 S:      Supported
18348 W:      http://www.linux-mtd.infradead.org/
18349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18351 F:      drivers/mtd/ubi/
18352 F:      include/linux/mtd/ubi.h
18353 F:      include/uapi/mtd/ubi-user.h
18354
18355 USB "USBNET" DRIVER FRAMEWORK
18356 M:      Oliver Neukum <oneukum@suse.com>
18357 L:      netdev@vger.kernel.org
18358 S:      Maintained
18359 W:      http://www.linux-usb.org/usbnet
18360 F:      drivers/net/usb/usbnet.c
18361 F:      include/linux/usb/usbnet.h
18362
18363 USB ACM DRIVER
18364 M:      Oliver Neukum <oneukum@suse.com>
18365 L:      linux-usb@vger.kernel.org
18366 S:      Maintained
18367 F:      Documentation/usb/acm.rst
18368 F:      drivers/usb/class/cdc-acm.*
18369
18370 USB APPLE MFI FASTCHARGE DRIVER
18371 M:      Bastien Nocera <hadess@hadess.net>
18372 L:      linux-usb@vger.kernel.org
18373 S:      Maintained
18374 F:      drivers/usb/misc/apple-mfi-fastcharge.c
18375
18376 USB AR5523 WIRELESS DRIVER
18377 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
18378 L:      linux-wireless@vger.kernel.org
18379 S:      Maintained
18380 F:      drivers/net/wireless/ath/ar5523/
18381
18382 USB ATTACHED SCSI
18383 M:      Oliver Neukum <oneukum@suse.com>
18384 L:      linux-usb@vger.kernel.org
18385 L:      linux-scsi@vger.kernel.org
18386 S:      Maintained
18387 F:      drivers/usb/storage/uas.c
18388
18389 USB CDC ETHERNET DRIVER
18390 M:      Oliver Neukum <oliver@neukum.org>
18391 L:      linux-usb@vger.kernel.org
18392 S:      Maintained
18393 F:      drivers/net/usb/cdc_*.c
18394 F:      include/uapi/linux/usb/cdc.h
18395
18396 USB CHAOSKEY DRIVER
18397 M:      Keith Packard <keithp@keithp.com>
18398 L:      linux-usb@vger.kernel.org
18399 S:      Maintained
18400 F:      drivers/usb/misc/chaoskey.c
18401
18402 USB CYPRESS C67X00 DRIVER
18403 M:      Peter Korsgaard <jacmet@sunsite.dk>
18404 L:      linux-usb@vger.kernel.org
18405 S:      Maintained
18406 F:      drivers/usb/c67x00/
18407
18408 USB DAVICOM DM9601 DRIVER
18409 M:      Peter Korsgaard <jacmet@sunsite.dk>
18410 L:      netdev@vger.kernel.org
18411 S:      Maintained
18412 W:      http://www.linux-usb.org/usbnet
18413 F:      drivers/net/usb/dm9601.c
18414
18415 USB EHCI DRIVER
18416 M:      Alan Stern <stern@rowland.harvard.edu>
18417 L:      linux-usb@vger.kernel.org
18418 S:      Maintained
18419 F:      Documentation/usb/ehci.rst
18420 F:      drivers/usb/host/ehci*
18421
18422 USB GADGET/PERIPHERAL SUBSYSTEM
18423 M:      Felipe Balbi <balbi@kernel.org>
18424 L:      linux-usb@vger.kernel.org
18425 S:      Maintained
18426 W:      http://www.linux-usb.org/gadget
18427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18428 F:      drivers/usb/gadget/
18429 F:      include/linux/usb/gadget*
18430
18431 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
18432 M:      Jiri Kosina <jikos@kernel.org>
18433 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
18434 L:      linux-usb@vger.kernel.org
18435 S:      Maintained
18436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
18437 F:      Documentation/hid/hiddev.rst
18438 F:      drivers/hid/usbhid/
18439
18440 USB INTEL XHCI ROLE MUX DRIVER
18441 M:      Hans de Goede <hdegoede@redhat.com>
18442 L:      linux-usb@vger.kernel.org
18443 S:      Maintained
18444 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
18445
18446 USB IP DRIVER FOR HISILICON KIRIN
18447 M:      Yu Chen <chenyu56@huawei.com>
18448 M:      Binghui Wang <wangbinghui@hisilicon.com>
18449 L:      linux-usb@vger.kernel.org
18450 S:      Maintained
18451 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
18452 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
18453
18454 USB ISP116X DRIVER
18455 M:      Olav Kongas <ok@artecdesign.ee>
18456 L:      linux-usb@vger.kernel.org
18457 S:      Maintained
18458 F:      drivers/usb/host/isp116x*
18459 F:      include/linux/usb/isp116x.h
18460
18461 USB LAN78XX ETHERNET DRIVER
18462 M:      Woojung Huh <woojung.huh@microchip.com>
18463 M:      UNGLinuxDriver@microchip.com
18464 L:      netdev@vger.kernel.org
18465 S:      Maintained
18466 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
18467 F:      drivers/net/usb/lan78xx.*
18468 F:      include/dt-bindings/net/microchip-lan78xx.h
18469
18470 USB MASS STORAGE DRIVER
18471 M:      Alan Stern <stern@rowland.harvard.edu>
18472 L:      linux-usb@vger.kernel.org
18473 L:      usb-storage@lists.one-eyed-alien.net
18474 S:      Maintained
18475 F:      drivers/usb/storage/
18476
18477 USB MIDI DRIVER
18478 M:      Clemens Ladisch <clemens@ladisch.de>
18479 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18480 S:      Maintained
18481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18482 F:      sound/usb/midi.*
18483
18484 USB NETWORKING DRIVERS
18485 L:      linux-usb@vger.kernel.org
18486 S:      Odd Fixes
18487 F:      drivers/net/usb/
18488
18489 USB OHCI DRIVER
18490 M:      Alan Stern <stern@rowland.harvard.edu>
18491 L:      linux-usb@vger.kernel.org
18492 S:      Maintained
18493 F:      Documentation/usb/ohci.rst
18494 F:      drivers/usb/host/ohci*
18495
18496 USB OTG FSM (Finite State Machine)
18497 M:      Peter Chen <peter.chen@kernel.org>
18498 L:      linux-usb@vger.kernel.org
18499 S:      Maintained
18500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
18501 F:      drivers/usb/common/usb-otg-fsm.c
18502
18503 USB OVER IP DRIVER
18504 M:      Valentina Manea <valentina.manea.m@gmail.com>
18505 M:      Shuah Khan <shuah@kernel.org>
18506 M:      Shuah Khan <skhan@linuxfoundation.org>
18507 L:      linux-usb@vger.kernel.org
18508 S:      Maintained
18509 F:      Documentation/usb/usbip_protocol.rst
18510 F:      drivers/usb/usbip/
18511 F:      tools/testing/selftests/drivers/usb/usbip/
18512 F:      tools/usb/usbip/
18513
18514 USB PEGASUS DRIVER
18515 M:      Petko Manolov <petkan@nucleusys.com>
18516 L:      linux-usb@vger.kernel.org
18517 L:      netdev@vger.kernel.org
18518 S:      Maintained
18519 W:      https://github.com/petkan/pegasus
18520 T:      git git://github.com/petkan/pegasus.git
18521 F:      drivers/net/usb/pegasus.*
18522
18523 USB PHY LAYER
18524 M:      Felipe Balbi <balbi@kernel.org>
18525 L:      linux-usb@vger.kernel.org
18526 S:      Maintained
18527 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18528 F:      drivers/usb/phy/
18529
18530 USB PRINTER DRIVER (usblp)
18531 M:      Pete Zaitcev <zaitcev@redhat.com>
18532 L:      linux-usb@vger.kernel.org
18533 S:      Supported
18534 F:      drivers/usb/class/usblp.c
18535
18536 USB RAW GADGET DRIVER
18537 R:      Andrey Konovalov <andreyknvl@gmail.com>
18538 L:      linux-usb@vger.kernel.org
18539 S:      Maintained
18540 F:      Documentation/usb/raw-gadget.rst
18541 F:      drivers/usb/gadget/legacy/raw_gadget.c
18542 F:      include/uapi/linux/usb/raw_gadget.h
18543
18544 USB QMI WWAN NETWORK DRIVER
18545 M:      Bjørn Mork <bjorn@mork.no>
18546 L:      netdev@vger.kernel.org
18547 S:      Maintained
18548 F:      Documentation/ABI/testing/sysfs-class-net-qmi
18549 F:      drivers/net/usb/qmi_wwan.c
18550
18551 USB RTL8150 DRIVER
18552 M:      Petko Manolov <petkan@nucleusys.com>
18553 L:      linux-usb@vger.kernel.org
18554 L:      netdev@vger.kernel.org
18555 S:      Maintained
18556 W:      https://github.com/petkan/rtl8150
18557 T:      git git://github.com/petkan/rtl8150.git
18558 F:      drivers/net/usb/rtl8150.c
18559
18560 USB SERIAL SUBSYSTEM
18561 M:      Johan Hovold <johan@kernel.org>
18562 L:      linux-usb@vger.kernel.org
18563 S:      Maintained
18564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
18565 F:      Documentation/usb/usb-serial.rst
18566 F:      drivers/usb/serial/
18567 F:      include/linux/usb/serial.h
18568
18569 USB SMSC75XX ETHERNET DRIVER
18570 M:      Steve Glendinning <steve.glendinning@shawell.net>
18571 L:      netdev@vger.kernel.org
18572 S:      Maintained
18573 F:      drivers/net/usb/smsc75xx.*
18574
18575 USB SMSC95XX ETHERNET DRIVER
18576 M:      Steve Glendinning <steve.glendinning@shawell.net>
18577 M:      UNGLinuxDriver@microchip.com
18578 L:      netdev@vger.kernel.org
18579 S:      Maintained
18580 F:      drivers/net/usb/smsc95xx.*
18581
18582 USB SUBSYSTEM
18583 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18584 L:      linux-usb@vger.kernel.org
18585 S:      Supported
18586 W:      http://www.linux-usb.org
18587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
18588 F:      Documentation/devicetree/bindings/usb/
18589 F:      Documentation/usb/
18590 F:      drivers/usb/
18591 F:      include/linux/usb.h
18592 F:      include/linux/usb/
18593
18594 USB TYPEC BUS FOR ALTERNATE MODES
18595 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18596 L:      linux-usb@vger.kernel.org
18597 S:      Maintained
18598 F:      Documentation/ABI/testing/sysfs-bus-typec
18599 F:      Documentation/driver-api/usb/typec_bus.rst
18600 F:      drivers/usb/typec/altmodes/
18601 F:      include/linux/usb/typec_altmode.h
18602
18603 USB TYPEC CLASS
18604 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18605 L:      linux-usb@vger.kernel.org
18606 S:      Maintained
18607 F:      Documentation/ABI/testing/sysfs-class-typec
18608 F:      Documentation/driver-api/usb/typec.rst
18609 F:      drivers/usb/typec/
18610 F:      include/linux/usb/typec.h
18611
18612 USB TYPEC INTEL PMC MUX DRIVER
18613 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18614 L:      linux-usb@vger.kernel.org
18615 S:      Maintained
18616 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
18617 F:      drivers/usb/typec/mux/intel_pmc_mux.c
18618
18619 USB TYPEC PI3USB30532 MUX DRIVER
18620 M:      Hans de Goede <hdegoede@redhat.com>
18621 L:      linux-usb@vger.kernel.org
18622 S:      Maintained
18623 F:      drivers/usb/typec/mux/pi3usb30532.c
18624
18625 USB TYPEC PORT CONTROLLER DRIVERS
18626 M:      Guenter Roeck <linux@roeck-us.net>
18627 L:      linux-usb@vger.kernel.org
18628 S:      Maintained
18629 F:      drivers/usb/typec/tcpm/
18630
18631 USB UHCI DRIVER
18632 M:      Alan Stern <stern@rowland.harvard.edu>
18633 L:      linux-usb@vger.kernel.org
18634 S:      Maintained
18635 F:      drivers/usb/host/uhci*
18636
18637 USB VIDEO CLASS
18638 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18639 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
18640 L:      linux-media@vger.kernel.org
18641 S:      Maintained
18642 W:      http://www.ideasonboard.org/uvc/
18643 T:      git git://linuxtv.org/media_tree.git
18644 F:      drivers/media/usb/uvc/
18645 F:      include/uapi/linux/uvcvideo.h
18646
18647 USB WEBCAM GADGET
18648 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18649 L:      linux-usb@vger.kernel.org
18650 S:      Maintained
18651 F:      drivers/usb/gadget/function/*uvc*
18652 F:      drivers/usb/gadget/legacy/webcam.c
18653 F:      include/uapi/linux/usb/g_uvc.h
18654
18655 USB WIRELESS RNDIS DRIVER (rndis_wlan)
18656 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
18657 L:      linux-wireless@vger.kernel.org
18658 S:      Maintained
18659 F:      drivers/net/wireless/rndis_wlan.c
18660
18661 USB XHCI DRIVER
18662 M:      Mathias Nyman <mathias.nyman@intel.com>
18663 L:      linux-usb@vger.kernel.org
18664 S:      Supported
18665 F:      drivers/usb/host/pci-quirks*
18666 F:      drivers/usb/host/xhci*
18667
18668 USB ZD1201 DRIVER
18669 L:      linux-wireless@vger.kernel.org
18670 S:      Orphan
18671 W:      http://linux-lc100020.sourceforge.net
18672 F:      drivers/net/wireless/zydas/zd1201.*
18673
18674 USB ZR364XX DRIVER
18675 M:      Antoine Jacquet <royale@zerezo.com>
18676 L:      linux-usb@vger.kernel.org
18677 L:      linux-media@vger.kernel.org
18678 S:      Maintained
18679 W:      http://royale.zerezo.com/zr364xx/
18680 T:      git git://linuxtv.org/media_tree.git
18681 F:      Documentation/admin-guide/media/zr364xx*
18682 F:      drivers/media/usb/zr364xx/
18683
18684 USER-MODE LINUX (UML)
18685 M:      Jeff Dike <jdike@addtoit.com>
18686 M:      Richard Weinberger <richard@nod.at>
18687 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
18688 L:      linux-um@lists.infradead.org
18689 S:      Maintained
18690 W:      http://user-mode-linux.sourceforge.net
18691 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
18692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
18693 F:      Documentation/virt/uml/
18694 F:      arch/um/
18695 F:      arch/x86/um/
18696 F:      fs/hostfs/
18697
18698 USERSPACE COPYIN/COPYOUT (UIOVEC)
18699 M:      Alexander Viro <viro@zeniv.linux.org.uk>
18700 S:      Maintained
18701 F:      include/linux/uio.h
18702 F:      lib/iov_iter.c
18703
18704 USERSPACE DMA BUFFER DRIVER
18705 M:      Gerd Hoffmann <kraxel@redhat.com>
18706 L:      dri-devel@lists.freedesktop.org
18707 S:      Maintained
18708 T:      git git://anongit.freedesktop.org/drm/drm-misc
18709 F:      drivers/dma-buf/udmabuf.c
18710 F:      include/uapi/linux/udmabuf.h
18711
18712 USERSPACE I/O (UIO)
18713 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18714 S:      Maintained
18715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18716 F:      Documentation/driver-api/uio-howto.rst
18717 F:      drivers/uio/
18718 F:      include/linux/uio_driver.h
18719
18720 UTIL-LINUX PACKAGE
18721 M:      Karel Zak <kzak@redhat.com>
18722 L:      util-linux@vger.kernel.org
18723 S:      Maintained
18724 W:      http://en.wikipedia.org/wiki/Util-linux
18725 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
18726
18727 UUID HELPERS
18728 M:      Christoph Hellwig <hch@lst.de>
18729 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18730 L:      linux-kernel@vger.kernel.org
18731 S:      Maintained
18732 T:      git git://git.infradead.org/users/hch/uuid.git
18733 F:      include/linux/uuid.h
18734 F:      include/uapi/linux/uuid.h
18735 F:      lib/test_uuid.c
18736 F:      lib/uuid.c
18737
18738 UV SYSFS DRIVER
18739 M:      Justin Ernst <justin.ernst@hpe.com>
18740 L:      platform-driver-x86@vger.kernel.org
18741 S:      Maintained
18742 F:      drivers/platform/x86/uv_sysfs.c
18743
18744 UVESAFB DRIVER
18745 M:      Michal Januszewski <spock@gentoo.org>
18746 L:      linux-fbdev@vger.kernel.org
18747 S:      Maintained
18748 W:      https://github.com/mjanusz/v86d
18749 F:      Documentation/fb/uvesafb.rst
18750 F:      drivers/video/fbdev/uvesafb.*
18751
18752 Ux500 CLOCK DRIVERS
18753 M:      Ulf Hansson <ulf.hansson@linaro.org>
18754 L:      linux-clk@vger.kernel.org
18755 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18756 S:      Maintained
18757 F:      drivers/clk/ux500/
18758
18759 VF610 NAND DRIVER
18760 M:      Stefan Agner <stefan@agner.ch>
18761 L:      linux-mtd@lists.infradead.org
18762 S:      Supported
18763 F:      drivers/mtd/nand/raw/vf610_nfc.c
18764
18765 VFAT/FAT/MSDOS FILESYSTEM
18766 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
18767 S:      Maintained
18768 F:      Documentation/filesystems/vfat.rst
18769 F:      fs/fat/
18770
18771 VFIO DRIVER
18772 M:      Alex Williamson <alex.williamson@redhat.com>
18773 R:      Cornelia Huck <cohuck@redhat.com>
18774 L:      kvm@vger.kernel.org
18775 S:      Maintained
18776 T:      git git://github.com/awilliam/linux-vfio.git
18777 F:      Documentation/driver-api/vfio.rst
18778 F:      drivers/vfio/
18779 F:      include/linux/vfio.h
18780 F:      include/uapi/linux/vfio.h
18781
18782 VFIO FSL-MC DRIVER
18783 M:      Diana Craciun <diana.craciun@oss.nxp.com>
18784 L:      kvm@vger.kernel.org
18785 S:      Maintained
18786 F:      drivers/vfio/fsl-mc/
18787
18788 VFIO MEDIATED DEVICE DRIVERS
18789 M:      Kirti Wankhede <kwankhede@nvidia.com>
18790 L:      kvm@vger.kernel.org
18791 S:      Maintained
18792 F:      Documentation/driver-api/vfio-mediated-device.rst
18793 F:      drivers/vfio/mdev/
18794 F:      include/linux/mdev.h
18795 F:      samples/vfio-mdev/
18796
18797 VFIO PLATFORM DRIVER
18798 M:      Eric Auger <eric.auger@redhat.com>
18799 L:      kvm@vger.kernel.org
18800 S:      Maintained
18801 F:      drivers/vfio/platform/
18802
18803 VGA_SWITCHEROO
18804 R:      Lukas Wunner <lukas@wunner.de>
18805 S:      Maintained
18806 T:      git git://anongit.freedesktop.org/drm/drm-misc
18807 F:      Documentation/gpu/vga-switcheroo.rst
18808 F:      drivers/gpu/vga/vga_switcheroo.c
18809 F:      include/linux/vga_switcheroo.h
18810
18811 VIA RHINE NETWORK DRIVER
18812 S:      Maintained
18813 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
18814 F:      drivers/net/ethernet/via/via-rhine.c
18815
18816 VIA SD/MMC CARD CONTROLLER DRIVER
18817 M:      Bruce Chang <brucechang@via.com.tw>
18818 M:      Harald Welte <HaraldWelte@viatech.com>
18819 S:      Maintained
18820 F:      drivers/mmc/host/via-sdmmc.c
18821
18822 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
18823 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
18824 L:      linux-fbdev@vger.kernel.org
18825 S:      Maintained
18826 F:      drivers/video/fbdev/via/
18827 F:      include/linux/via-core.h
18828 F:      include/linux/via-gpio.h
18829 F:      include/linux/via_i2c.h
18830
18831 VIA VELOCITY NETWORK DRIVER
18832 M:      Francois Romieu <romieu@fr.zoreil.com>
18833 L:      netdev@vger.kernel.org
18834 S:      Maintained
18835 F:      drivers/net/ethernet/via/via-velocity.*
18836
18837 VICODEC VIRTUAL CODEC DRIVER
18838 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
18839 L:      linux-media@vger.kernel.org
18840 S:      Maintained
18841 W:      https://linuxtv.org
18842 T:      git git://linuxtv.org/media_tree.git
18843 F:      drivers/media/test-drivers/vicodec/*
18844
18845 VIDEO I2C POLLING DRIVER
18846 M:      Matt Ranostay <matt.ranostay@konsulko.com>
18847 L:      linux-media@vger.kernel.org
18848 S:      Maintained
18849 F:      drivers/media/i2c/video-i2c.c
18850
18851 VIDEO MULTIPLEXER DRIVER
18852 M:      Philipp Zabel <p.zabel@pengutronix.de>
18853 L:      linux-media@vger.kernel.org
18854 S:      Maintained
18855 F:      drivers/media/platform/video-mux.c
18856
18857 VIDEOBUF2 FRAMEWORK
18858 M:      Tomasz Figa <tfiga@chromium.org>
18859 M:      Marek Szyprowski <m.szyprowski@samsung.com>
18860 L:      linux-media@vger.kernel.org
18861 S:      Maintained
18862 F:      drivers/media/common/videobuf2/*
18863 F:      include/media/videobuf2-*
18864
18865 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
18866 M:      Helen Koike <helen.koike@collabora.com>
18867 R:      Shuah Khan <skhan@linuxfoundation.org>
18868 L:      linux-media@vger.kernel.org
18869 S:      Maintained
18870 W:      https://linuxtv.org
18871 T:      git git://linuxtv.org/media_tree.git
18872 F:      drivers/media/test-drivers/vimc/*
18873
18874 VIRT LIB
18875 M:      Alex Williamson <alex.williamson@redhat.com>
18876 M:      Paolo Bonzini <pbonzini@redhat.com>
18877 L:      kvm@vger.kernel.org
18878 S:      Supported
18879 F:      virt/lib/
18880
18881 VIRTIO AND VHOST VSOCK DRIVER
18882 M:      Stefan Hajnoczi <stefanha@redhat.com>
18883 M:      Stefano Garzarella <sgarzare@redhat.com>
18884 L:      kvm@vger.kernel.org
18885 L:      virtualization@lists.linux-foundation.org
18886 L:      netdev@vger.kernel.org
18887 S:      Maintained
18888 F:      drivers/net/vsockmon.c
18889 F:      drivers/vhost/vsock.c
18890 F:      include/linux/virtio_vsock.h
18891 F:      include/uapi/linux/virtio_vsock.h
18892 F:      include/uapi/linux/vm_sockets_diag.h
18893 F:      include/uapi/linux/vsockmon.h
18894 F:      net/vmw_vsock/af_vsock_tap.c
18895 F:      net/vmw_vsock/diag.c
18896 F:      net/vmw_vsock/virtio_transport.c
18897 F:      net/vmw_vsock/virtio_transport_common.c
18898 F:      net/vmw_vsock/vsock_loopback.c
18899 F:      tools/testing/vsock/
18900
18901 VIRTIO BLOCK AND SCSI DRIVERS
18902 M:      "Michael S. Tsirkin" <mst@redhat.com>
18903 M:      Jason Wang <jasowang@redhat.com>
18904 R:      Paolo Bonzini <pbonzini@redhat.com>
18905 R:      Stefan Hajnoczi <stefanha@redhat.com>
18906 L:      virtualization@lists.linux-foundation.org
18907 S:      Maintained
18908 F:      drivers/block/virtio_blk.c
18909 F:      drivers/scsi/virtio_scsi.c
18910 F:      drivers/vhost/scsi.c
18911 F:      include/uapi/linux/virtio_blk.h
18912 F:      include/uapi/linux/virtio_scsi.h
18913
18914 VIRTIO CONSOLE DRIVER
18915 M:      Amit Shah <amit@kernel.org>
18916 L:      virtualization@lists.linux-foundation.org
18917 S:      Maintained
18918 F:      drivers/char/virtio_console.c
18919 F:      include/linux/virtio_console.h
18920 F:      include/uapi/linux/virtio_console.h
18921
18922 VIRTIO CORE AND NET DRIVERS
18923 M:      "Michael S. Tsirkin" <mst@redhat.com>
18924 M:      Jason Wang <jasowang@redhat.com>
18925 L:      virtualization@lists.linux-foundation.org
18926 S:      Maintained
18927 F:      Documentation/devicetree/bindings/virtio/
18928 F:      drivers/block/virtio_blk.c
18929 F:      drivers/crypto/virtio/
18930 F:      drivers/net/virtio_net.c
18931 F:      drivers/vdpa/
18932 F:      drivers/virtio/
18933 F:      include/linux/vdpa.h
18934 F:      include/linux/virtio*.h
18935 F:      include/uapi/linux/virtio_*.h
18936 F:      tools/virtio/
18937
18938 VIRTIO BALLOON
18939 M:      "Michael S. Tsirkin" <mst@redhat.com>
18940 M:      David Hildenbrand <david@redhat.com>
18941 L:      virtualization@lists.linux-foundation.org
18942 S:      Maintained
18943 F:      drivers/virtio/virtio_balloon.c
18944 F:      include/uapi/linux/virtio_balloon.h
18945 F:      include/linux/balloon_compaction.h
18946 F:      mm/balloon_compaction.c
18947
18948 VIRTIO CRYPTO DRIVER
18949 M:      Gonglei <arei.gonglei@huawei.com>
18950 L:      virtualization@lists.linux-foundation.org
18951 L:      linux-crypto@vger.kernel.org
18952 S:      Maintained
18953 F:      drivers/crypto/virtio/
18954 F:      include/uapi/linux/virtio_crypto.h
18955
18956 VIRTIO DRIVERS FOR S390
18957 M:      Cornelia Huck <cohuck@redhat.com>
18958 M:      Halil Pasic <pasic@linux.ibm.com>
18959 L:      linux-s390@vger.kernel.org
18960 L:      virtualization@lists.linux-foundation.org
18961 L:      kvm@vger.kernel.org
18962 S:      Supported
18963 F:      arch/s390/include/uapi/asm/virtio-ccw.h
18964 F:      drivers/s390/virtio/
18965
18966 VIRTIO FILE SYSTEM
18967 M:      Vivek Goyal <vgoyal@redhat.com>
18968 M:      Stefan Hajnoczi <stefanha@redhat.com>
18969 M:      Miklos Szeredi <miklos@szeredi.hu>
18970 L:      virtualization@lists.linux-foundation.org
18971 L:      linux-fsdevel@vger.kernel.org
18972 S:      Supported
18973 W:      https://virtio-fs.gitlab.io/
18974 F:      Documentation/filesystems/virtiofs.rst
18975 F:      fs/fuse/virtio_fs.c
18976 F:      include/uapi/linux/virtio_fs.h
18977
18978 VIRTIO GPU DRIVER
18979 M:      David Airlie <airlied@linux.ie>
18980 M:      Gerd Hoffmann <kraxel@redhat.com>
18981 L:      dri-devel@lists.freedesktop.org
18982 L:      virtualization@lists.linux-foundation.org
18983 S:      Maintained
18984 T:      git git://anongit.freedesktop.org/drm/drm-misc
18985 F:      drivers/gpu/drm/virtio/
18986 F:      include/uapi/linux/virtio_gpu.h
18987
18988 VIRTIO HOST (VHOST)
18989 M:      "Michael S. Tsirkin" <mst@redhat.com>
18990 M:      Jason Wang <jasowang@redhat.com>
18991 L:      kvm@vger.kernel.org
18992 L:      virtualization@lists.linux-foundation.org
18993 L:      netdev@vger.kernel.org
18994 S:      Maintained
18995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
18996 F:      drivers/vhost/
18997 F:      include/linux/vhost_iotlb.h
18998 F:      include/uapi/linux/vhost.h
18999
19000 VIRTIO INPUT DRIVER
19001 M:      Gerd Hoffmann <kraxel@redhat.com>
19002 S:      Maintained
19003 F:      drivers/virtio/virtio_input.c
19004 F:      include/uapi/linux/virtio_input.h
19005
19006 VIRTIO IOMMU DRIVER
19007 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
19008 L:      virtualization@lists.linux-foundation.org
19009 S:      Maintained
19010 F:      drivers/iommu/virtio-iommu.c
19011 F:      include/uapi/linux/virtio_iommu.h
19012
19013 VIRTIO MEM DRIVER
19014 M:      David Hildenbrand <david@redhat.com>
19015 L:      virtualization@lists.linux-foundation.org
19016 S:      Maintained
19017 W:      https://virtio-mem.gitlab.io/
19018 F:      drivers/virtio/virtio_mem.c
19019 F:      include/uapi/linux/virtio_mem.h
19020
19021 VIRTUAL BOX GUEST DEVICE DRIVER
19022 M:      Hans de Goede <hdegoede@redhat.com>
19023 M:      Arnd Bergmann <arnd@arndb.de>
19024 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19025 S:      Maintained
19026 F:      drivers/virt/vboxguest/
19027 F:      include/linux/vbox_utils.h
19028 F:      include/uapi/linux/vbox*.h
19029
19030 VIRTUAL BOX SHARED FOLDER VFS DRIVER
19031 M:      Hans de Goede <hdegoede@redhat.com>
19032 L:      linux-fsdevel@vger.kernel.org
19033 S:      Maintained
19034 F:      fs/vboxsf/*
19035
19036 VIRTUAL SERIO DEVICE DRIVER
19037 M:      Stephen Chandler Paul <thatslyude@gmail.com>
19038 S:      Maintained
19039 F:      drivers/input/serio/userio.c
19040 F:      include/uapi/linux/userio.h
19041
19042 VIVID VIRTUAL VIDEO DRIVER
19043 M:      Hans Verkuil <hverkuil@xs4all.nl>
19044 L:      linux-media@vger.kernel.org
19045 S:      Maintained
19046 W:      https://linuxtv.org
19047 T:      git git://linuxtv.org/media_tree.git
19048 F:      drivers/media/test-drivers/vivid/*
19049
19050 VIDTV VIRTUAL DIGITAL TV DRIVER
19051 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
19052 L:      linux-media@vger.kernel.org
19053 S:      Maintained
19054 W:      https://linuxtv.org
19055 T:      git git://linuxtv.org/media_tree.git
19056 F:      drivers/media/test-drivers/vidtv/*
19057
19058 VLYNQ BUS
19059 M:      Florian Fainelli <f.fainelli@gmail.com>
19060 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
19061 S:      Maintained
19062 F:      drivers/vlynq/vlynq.c
19063 F:      include/linux/vlynq.h
19064
19065 VME SUBSYSTEM
19066 M:      Martyn Welch <martyn@welchs.me.uk>
19067 M:      Manohar Vanga <manohar.vanga@gmail.com>
19068 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19069 L:      devel@driverdev.osuosl.org
19070 S:      Maintained
19071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19072 F:      Documentation/driver-api/vme.rst
19073 F:      drivers/staging/vme/
19074 F:      drivers/vme/
19075 F:      include/linux/vme*
19076
19077 VMWARE BALLOON DRIVER
19078 M:      Nadav Amit <namit@vmware.com>
19079 M:      "VMware, Inc." <pv-drivers@vmware.com>
19080 L:      linux-kernel@vger.kernel.org
19081 S:      Maintained
19082 F:      drivers/misc/vmw_balloon.c
19083
19084 VMWARE HYPERVISOR INTERFACE
19085 M:      Deep Shah <sdeep@vmware.com>
19086 M:      "VMware, Inc." <pv-drivers@vmware.com>
19087 L:      virtualization@lists.linux-foundation.org
19088 S:      Supported
19089 F:      arch/x86/include/asm/vmware.h
19090 F:      arch/x86/kernel/cpu/vmware.c
19091
19092 VMWARE PVRDMA DRIVER
19093 M:      Adit Ranadive <aditr@vmware.com>
19094 M:      VMware PV-Drivers <pv-drivers@vmware.com>
19095 L:      linux-rdma@vger.kernel.org
19096 S:      Maintained
19097 F:      drivers/infiniband/hw/vmw_pvrdma/
19098
19099 VMware PVSCSI driver
19100 M:      Jim Gill <jgill@vmware.com>
19101 M:      VMware PV-Drivers <pv-drivers@vmware.com>
19102 L:      linux-scsi@vger.kernel.org
19103 S:      Maintained
19104 F:      drivers/scsi/vmw_pvscsi.c
19105 F:      drivers/scsi/vmw_pvscsi.h
19106
19107 VMWARE VIRTUAL PTP CLOCK DRIVER
19108 M:      Vivek Thampi <vithampi@vmware.com>
19109 M:      "VMware, Inc." <pv-drivers@vmware.com>
19110 L:      netdev@vger.kernel.org
19111 S:      Supported
19112 F:      drivers/ptp/ptp_vmw.c
19113
19114 VMWARE VMMOUSE SUBDRIVER
19115 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
19116 M:      "VMware, Inc." <pv-drivers@vmware.com>
19117 L:      linux-input@vger.kernel.org
19118 S:      Maintained
19119 F:      drivers/input/mouse/vmmouse.c
19120 F:      drivers/input/mouse/vmmouse.h
19121
19122 VMWARE VMXNET3 ETHERNET DRIVER
19123 M:      Ronak Doshi <doshir@vmware.com>
19124 M:      pv-drivers@vmware.com
19125 L:      netdev@vger.kernel.org
19126 S:      Maintained
19127 F:      drivers/net/vmxnet3/
19128
19129 VOCORE VOCORE2 BOARD
19130 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
19131 L:      linux-mips@vger.kernel.org
19132 S:      Maintained
19133 F:      arch/mips/boot/dts/ralink/vocore2.dts
19134
19135 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
19136 M:      Liam Girdwood <lgirdwood@gmail.com>
19137 M:      Mark Brown <broonie@kernel.org>
19138 L:      linux-kernel@vger.kernel.org
19139 S:      Supported
19140 W:      http://www.slimlogic.co.uk/?p=48
19141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
19142 F:      Documentation/devicetree/bindings/regulator/
19143 F:      Documentation/power/regulator/
19144 F:      drivers/regulator/
19145 F:      include/dt-bindings/regulator/
19146 F:      include/linux/regulator/
19147 K:      regulator_get_optional
19148
19149 VRF
19150 M:      David Ahern <dsahern@kernel.org>
19151 L:      netdev@vger.kernel.org
19152 S:      Maintained
19153 F:      Documentation/networking/vrf.rst
19154 F:      drivers/net/vrf.c
19155
19156 VSPRINTF
19157 M:      Petr Mladek <pmladek@suse.com>
19158 M:      Steven Rostedt <rostedt@goodmis.org>
19159 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
19160 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19161 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
19162 S:      Maintained
19163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
19164 F:      Documentation/core-api/printk-formats.rst
19165 F:      lib/test_printf.c
19166 F:      lib/vsprintf.c
19167
19168 VT1211 HARDWARE MONITOR DRIVER
19169 M:      Juerg Haefliger <juergh@gmail.com>
19170 L:      linux-hwmon@vger.kernel.org
19171 S:      Maintained
19172 F:      Documentation/hwmon/vt1211.rst
19173 F:      drivers/hwmon/vt1211.c
19174
19175 VT8231 HARDWARE MONITOR DRIVER
19176 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
19177 L:      linux-hwmon@vger.kernel.org
19178 S:      Maintained
19179 F:      drivers/hwmon/vt8231.c
19180
19181 VUB300 USB to SDIO/SD/MMC bridge chip
19182 L:      linux-mmc@vger.kernel.org
19183 S:      Orphan
19184 F:      drivers/mmc/host/vub300.c
19185
19186 W1 DALLAS'S 1-WIRE BUS
19187 M:      Evgeniy Polyakov <zbr@ioremap.net>
19188 S:      Maintained
19189 F:      Documentation/devicetree/bindings/w1/
19190 F:      Documentation/w1/
19191 F:      drivers/w1/
19192 F:      include/linux/w1.h
19193
19194 W83791D HARDWARE MONITORING DRIVER
19195 M:      Marc Hulsman <m.hulsman@tudelft.nl>
19196 L:      linux-hwmon@vger.kernel.org
19197 S:      Maintained
19198 F:      Documentation/hwmon/w83791d.rst
19199 F:      drivers/hwmon/w83791d.c
19200
19201 W83793 HARDWARE MONITORING DRIVER
19202 M:      Rudolf Marek <r.marek@assembler.cz>
19203 L:      linux-hwmon@vger.kernel.org
19204 S:      Maintained
19205 F:      Documentation/hwmon/w83793.rst
19206 F:      drivers/hwmon/w83793.c
19207
19208 W83795 HARDWARE MONITORING DRIVER
19209 M:      Jean Delvare <jdelvare@suse.com>
19210 L:      linux-hwmon@vger.kernel.org
19211 S:      Maintained
19212 F:      drivers/hwmon/w83795.c
19213
19214 W83L51xD SD/MMC CARD INTERFACE DRIVER
19215 M:      Pierre Ossman <pierre@ossman.eu>
19216 S:      Maintained
19217 F:      drivers/mmc/host/wbsd.*
19218
19219 WACOM PROTOCOL 4 SERIAL TABLETS
19220 M:      Julian Squires <julian@cipht.net>
19221 M:      Hans de Goede <hdegoede@redhat.com>
19222 L:      linux-input@vger.kernel.org
19223 S:      Maintained
19224 F:      drivers/input/tablet/wacom_serial4.c
19225
19226 WATCHDOG DEVICE DRIVERS
19227 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
19228 M:      Guenter Roeck <linux@roeck-us.net>
19229 L:      linux-watchdog@vger.kernel.org
19230 S:      Maintained
19231 W:      http://www.linux-watchdog.org/
19232 T:      git git://www.linux-watchdog.org/linux-watchdog.git
19233 F:      Documentation/devicetree/bindings/watchdog/
19234 F:      Documentation/watchdog/
19235 F:      drivers/watchdog/
19236 F:      include/linux/watchdog.h
19237 F:      include/uapi/linux/watchdog.h
19238
19239 WHISKEYCOVE PMIC GPIO DRIVER
19240 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
19241 L:      linux-gpio@vger.kernel.org
19242 S:      Maintained
19243 F:      drivers/gpio/gpio-wcove.c
19244
19245 WHWAVE RTC DRIVER
19246 M:      Dianlong Li <long17.cool@163.com>
19247 L:      linux-rtc@vger.kernel.org
19248 S:      Maintained
19249 F:      drivers/rtc/rtc-sd3078.c
19250
19251 WIIMOTE HID DRIVER
19252 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19253 L:      linux-input@vger.kernel.org
19254 S:      Maintained
19255 F:      drivers/hid/hid-wiimote*
19256
19257 WILOCITY WIL6210 WIRELESS DRIVER
19258 M:      Maya Erez <merez@codeaurora.org>
19259 L:      linux-wireless@vger.kernel.org
19260 L:      wil6210@qti.qualcomm.com
19261 S:      Supported
19262 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
19263 F:      drivers/net/wireless/ath/wil6210/
19264
19265 WINBOND CIR DRIVER
19266 M:      David Härdeman <david@hardeman.nu>
19267 S:      Maintained
19268 F:      drivers/media/rc/winbond-cir.c
19269
19270 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
19271 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
19272 L:      linux-watchdog@vger.kernel.org
19273 S:      Maintained
19274 F:      drivers/watchdog/ebc-c384_wdt.c
19275
19276 WINSYSTEMS WS16C48 GPIO DRIVER
19277 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
19278 L:      linux-gpio@vger.kernel.org
19279 S:      Maintained
19280 F:      drivers/gpio/gpio-ws16c48.c
19281
19282 WIREGUARD SECURE NETWORK TUNNEL
19283 M:      Jason A. Donenfeld <Jason@zx2c4.com>
19284 L:      wireguard@lists.zx2c4.com
19285 L:      netdev@vger.kernel.org
19286 S:      Maintained
19287 F:      drivers/net/wireguard/
19288 F:      tools/testing/selftests/wireguard/
19289
19290 WISTRON LAPTOP BUTTON DRIVER
19291 M:      Miloslav Trmac <mitr@volny.cz>
19292 S:      Maintained
19293 F:      drivers/input/misc/wistron_btns.c
19294
19295 WL3501 WIRELESS PCMCIA CARD DRIVER
19296 L:      linux-wireless@vger.kernel.org
19297 S:      Odd fixes
19298 F:      drivers/net/wireless/wl3501*
19299
19300 WOLFSON MICROELECTRONICS DRIVERS
19301 L:      patches@opensource.cirrus.com
19302 S:      Supported
19303 W:      https://github.com/CirrusLogic/linux-drivers/wiki
19304 T:      git https://github.com/CirrusLogic/linux-drivers.git
19305 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
19306 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
19307 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
19308 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
19309 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
19310 F:      Documentation/hwmon/wm83??.rst
19311 F:      arch/arm/mach-s3c/mach-crag6410*
19312 F:      drivers/clk/clk-wm83*.c
19313 F:      drivers/extcon/extcon-arizona.c
19314 F:      drivers/gpio/gpio-*wm*.c
19315 F:      drivers/gpio/gpio-arizona.c
19316 F:      drivers/hwmon/wm83??-hwmon.c
19317 F:      drivers/input/misc/wm831x-on.c
19318 F:      drivers/input/touchscreen/wm831x-ts.c
19319 F:      drivers/input/touchscreen/wm97*.c
19320 F:      drivers/leds/leds-wm83*.c
19321 F:      drivers/mfd/arizona*
19322 F:      drivers/mfd/cs47l24*
19323 F:      drivers/mfd/wm*.c
19324 F:      drivers/power/supply/wm83*.c
19325 F:      drivers/regulator/arizona*
19326 F:      drivers/regulator/wm8*.c
19327 F:      drivers/rtc/rtc-wm83*.c
19328 F:      drivers/video/backlight/wm83*_bl.c
19329 F:      drivers/watchdog/wm83*_wdt.c
19330 F:      include/linux/mfd/arizona/
19331 F:      include/linux/mfd/wm831x/
19332 F:      include/linux/mfd/wm8350/
19333 F:      include/linux/mfd/wm8400*
19334 F:      include/linux/regulator/arizona*
19335 F:      include/linux/wm97xx.h
19336 F:      include/sound/wm????.h
19337 F:      sound/soc/codecs/arizona.?
19338 F:      sound/soc/codecs/cs47l24*
19339 F:      sound/soc/codecs/wm*
19340
19341 WORKQUEUE
19342 M:      Tejun Heo <tj@kernel.org>
19343 R:      Lai Jiangshan <jiangshanlai@gmail.com>
19344 S:      Maintained
19345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
19346 F:      Documentation/core-api/workqueue.rst
19347 F:      include/linux/workqueue.h
19348 F:      kernel/workqueue.c
19349
19350 X-POWERS AXP288 PMIC DRIVERS
19351 M:      Hans de Goede <hdegoede@redhat.com>
19352 S:      Maintained
19353 F:      drivers/acpi/pmic/intel_pmic_xpower.c
19354 N:      axp288
19355
19356 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
19357 M:      Chen-Yu Tsai <wens@csie.org>
19358 L:      linux-kernel@vger.kernel.org
19359 S:      Maintained
19360 N:      axp[128]
19361
19362 X.25 STACK
19363 M:      Martin Schiller <ms@dev.tdt.de>
19364 L:      linux-x25@vger.kernel.org
19365 S:      Maintained
19366 F:      Documentation/networking/lapb-module.rst
19367 F:      Documentation/networking/x25*
19368 F:      drivers/net/wan/hdlc_x25.c
19369 F:      drivers/net/wan/lapbether.c
19370 F:      include/*/lapb.h
19371 F:      include/net/x25*
19372 F:      include/uapi/linux/x25.h
19373 F:      net/lapb/
19374 F:      net/x25/
19375
19376 X86 ARCHITECTURE (32-BIT AND 64-BIT)
19377 M:      Thomas Gleixner <tglx@linutronix.de>
19378 M:      Ingo Molnar <mingo@redhat.com>
19379 M:      Borislav Petkov <bp@alien8.de>
19380 M:      x86@kernel.org
19381 R:      "H. Peter Anvin" <hpa@zytor.com>
19382 L:      linux-kernel@vger.kernel.org
19383 S:      Maintained
19384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19385 F:      Documentation/devicetree/bindings/x86/
19386 F:      Documentation/x86/
19387 F:      arch/x86/
19388
19389 X86 ENTRY CODE
19390 M:      Andy Lutomirski <luto@kernel.org>
19391 L:      linux-kernel@vger.kernel.org
19392 S:      Maintained
19393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
19394 F:      arch/x86/entry/
19395
19396 X86 MCE INFRASTRUCTURE
19397 M:      Tony Luck <tony.luck@intel.com>
19398 M:      Borislav Petkov <bp@alien8.de>
19399 L:      linux-edac@vger.kernel.org
19400 S:      Maintained
19401 F:      arch/x86/kernel/cpu/mce/*
19402
19403 X86 MICROCODE UPDATE SUPPORT
19404 M:      Borislav Petkov <bp@alien8.de>
19405 S:      Maintained
19406 F:      arch/x86/kernel/cpu/microcode/*
19407
19408 X86 MM
19409 M:      Dave Hansen <dave.hansen@linux.intel.com>
19410 M:      Andy Lutomirski <luto@kernel.org>
19411 M:      Peter Zijlstra <peterz@infradead.org>
19412 L:      linux-kernel@vger.kernel.org
19413 S:      Maintained
19414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
19415 F:      arch/x86/mm/
19416
19417 X86 PLATFORM DRIVERS
19418 M:      Hans de Goede <hdegoede@redhat.com>
19419 M:      Mark Gross <mgross@linux.intel.com>
19420 L:      platform-driver-x86@vger.kernel.org
19421 S:      Maintained
19422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
19423 F:      drivers/platform/olpc/
19424 F:      drivers/platform/x86/
19425
19426 X86 PLATFORM DRIVERS - ARCH
19427 R:      Darren Hart <dvhart@infradead.org>
19428 R:      Andy Shevchenko <andy@infradead.org>
19429 L:      platform-driver-x86@vger.kernel.org
19430 L:      x86@kernel.org
19431 S:      Maintained
19432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19433 F:      arch/x86/platform
19434
19435 X86 PLATFORM UV HPE SUPERDOME FLEX
19436 M:      Steve Wahl <steve.wahl@hpe.com>
19437 R:      Mike Travis <mike.travis@hpe.com>
19438 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
19439 R:      Russ Anderson <russ.anderson@hpe.com>
19440 S:      Supported
19441 F:      arch/x86/include/asm/uv/
19442 F:      arch/x86/kernel/apic/x2apic_uv_x.c
19443 F:      arch/x86/platform/uv/
19444
19445 X86 VDSO
19446 M:      Andy Lutomirski <luto@kernel.org>
19447 L:      linux-kernel@vger.kernel.org
19448 S:      Maintained
19449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
19450 F:      arch/x86/entry/vdso/
19451
19452 XARRAY
19453 M:      Matthew Wilcox <willy@infradead.org>
19454 L:      linux-fsdevel@vger.kernel.org
19455 S:      Supported
19456 F:      Documentation/core-api/xarray.rst
19457 F:      include/linux/idr.h
19458 F:      include/linux/xarray.h
19459 F:      lib/idr.c
19460 F:      lib/xarray.c
19461 F:      tools/testing/radix-tree
19462
19463 XBOX DVD IR REMOTE
19464 M:      Benjamin Valentin <benpicco@googlemail.com>
19465 S:      Maintained
19466 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
19467 F:      drivers/media/rc/xbox_remote.c
19468
19469 XC2028/3028 TUNER DRIVER
19470 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19471 L:      linux-media@vger.kernel.org
19472 S:      Maintained
19473 W:      https://linuxtv.org
19474 T:      git git://linuxtv.org/media_tree.git
19475 F:      drivers/media/tuners/tuner-xc2028.*
19476
19477 XDP (eXpress Data Path)
19478 M:      Alexei Starovoitov <ast@kernel.org>
19479 M:      Daniel Borkmann <daniel@iogearbox.net>
19480 M:      David S. Miller <davem@davemloft.net>
19481 M:      Jakub Kicinski <kuba@kernel.org>
19482 M:      Jesper Dangaard Brouer <hawk@kernel.org>
19483 M:      John Fastabend <john.fastabend@gmail.com>
19484 L:      netdev@vger.kernel.org
19485 L:      bpf@vger.kernel.org
19486 S:      Supported
19487 F:      include/net/xdp.h
19488 F:      include/net/xdp_priv.h
19489 F:      include/trace/events/xdp.h
19490 F:      kernel/bpf/cpumap.c
19491 F:      kernel/bpf/devmap.c
19492 F:      net/core/xdp.c
19493 F:      samples/bpf/xdp*
19494 F:      tools/testing/selftests/bpf/*xdp*
19495 F:      tools/testing/selftests/bpf/*/*xdp*
19496 F:      drivers/net/ethernet/*/*/*/*/*xdp*
19497 F:      drivers/net/ethernet/*/*/*xdp*
19498 K:      (?:\b|_)xdp(?:\b|_)
19499
19500 XDP SOCKETS (AF_XDP)
19501 M:      Björn Töpel <bjorn@kernel.org>
19502 M:      Magnus Karlsson <magnus.karlsson@intel.com>
19503 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
19504 L:      netdev@vger.kernel.org
19505 L:      bpf@vger.kernel.org
19506 S:      Maintained
19507 F:      Documentation/networking/af_xdp.rst
19508 F:      include/net/xdp_sock*
19509 F:      include/net/xsk_buff_pool.h
19510 F:      include/uapi/linux/if_xdp.h
19511 F:      include/uapi/linux/xdp_diag.h
19512 F:      include/net/netns/xdp.h
19513 F:      net/xdp/
19514 F:      samples/bpf/xdpsock*
19515 F:      tools/lib/bpf/xsk*
19516
19517 XEN BLOCK SUBSYSTEM
19518 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19519 M:      Roger Pau Monné <roger.pau@citrix.com>
19520 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19521 S:      Supported
19522 F:      drivers/block/xen*
19523 F:      drivers/block/xen-blkback/*
19524
19525 XEN HYPERVISOR ARM
19526 M:      Stefano Stabellini <sstabellini@kernel.org>
19527 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19528 S:      Maintained
19529 F:      arch/arm/include/asm/xen/
19530 F:      arch/arm/xen/
19531
19532 XEN HYPERVISOR ARM64
19533 M:      Stefano Stabellini <sstabellini@kernel.org>
19534 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19535 S:      Maintained
19536 F:      arch/arm64/include/asm/xen/
19537 F:      arch/arm64/xen/
19538
19539 XEN HYPERVISOR INTERFACE
19540 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
19541 M:      Juergen Gross <jgross@suse.com>
19542 R:      Stefano Stabellini <sstabellini@kernel.org>
19543 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19544 S:      Supported
19545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
19546 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
19547 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
19548 F:      arch/x86/include/asm/pvclock-abi.h
19549 F:      arch/x86/include/asm/xen/
19550 F:      arch/x86/platform/pvh/
19551 F:      arch/x86/xen/
19552 F:      drivers/*/xen-*front.c
19553 F:      drivers/xen/
19554 F:      include/uapi/xen/
19555 F:      include/xen/
19556
19557 XEN NETWORK BACKEND DRIVER
19558 M:      Wei Liu <wei.liu@kernel.org>
19559 M:      Paul Durrant <paul@xen.org>
19560 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19561 L:      netdev@vger.kernel.org
19562 S:      Supported
19563 F:      drivers/net/xen-netback/*
19564
19565 XEN PCI SUBSYSTEM
19566 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19567 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19568 S:      Supported
19569 F:      arch/x86/pci/*xen*
19570 F:      drivers/pci/*xen*
19571
19572 XEN PVSCSI DRIVERS
19573 M:      Juergen Gross <jgross@suse.com>
19574 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19575 L:      linux-scsi@vger.kernel.org
19576 S:      Supported
19577 F:      drivers/scsi/xen-scsifront.c
19578 F:      drivers/xen/xen-scsiback.c
19579 F:      include/xen/interface/io/vscsiif.h
19580
19581 XEN SOUND FRONTEND DRIVER
19582 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
19583 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19584 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19585 S:      Supported
19586 F:      sound/xen/*
19587
19588 XEN SWIOTLB SUBSYSTEM
19589 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19590 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19591 L:      iommu@lists.linux-foundation.org
19592 S:      Supported
19593 F:      arch/x86/xen/*swiotlb*
19594 F:      drivers/xen/*swiotlb*
19595
19596 XFS FILESYSTEM
19597 M:      Darrick J. Wong <djwong@kernel.org>
19598 M:      linux-xfs@vger.kernel.org
19599 L:      linux-xfs@vger.kernel.org
19600 S:      Supported
19601 W:      http://xfs.org/
19602 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
19603 F:      Documentation/ABI/testing/sysfs-fs-xfs
19604 F:      Documentation/admin-guide/xfs.rst
19605 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
19606 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
19607 F:      fs/xfs/
19608 F:      include/uapi/linux/dqblk_xfs.h
19609 F:      include/uapi/linux/fsmap.h
19610
19611 XILINX AXI ETHERNET DRIVER
19612 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
19613 S:      Maintained
19614 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
19615
19616 XILINX CAN DRIVER
19617 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
19618 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
19619 L:      linux-can@vger.kernel.org
19620 S:      Maintained
19621 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
19622 F:      drivers/net/can/xilinx_can.c
19623
19624 XILINX GPIO DRIVER
19625 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
19626 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
19627 R:      Michal Simek <michal.simek@xilinx.com>
19628 S:      Maintained
19629 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
19630 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.txt
19631 F:      drivers/gpio/gpio-xilinx.c
19632 F:      drivers/gpio/gpio-zynq.c
19633
19634 XILINX SD-FEC IP CORES
19635 M:      Derek Kiernan <derek.kiernan@xilinx.com>
19636 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
19637 S:      Maintained
19638 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
19639 F:      Documentation/misc-devices/xilinx_sdfec.rst
19640 F:      drivers/misc/Kconfig
19641 F:      drivers/misc/Makefile
19642 F:      drivers/misc/xilinx_sdfec.c
19643 F:      include/uapi/misc/xilinx_sdfec.h
19644
19645 XILINX UARTLITE SERIAL DRIVER
19646 M:      Peter Korsgaard <jacmet@sunsite.dk>
19647 L:      linux-serial@vger.kernel.org
19648 S:      Maintained
19649 F:      drivers/tty/serial/uartlite.c
19650
19651 XILINX VIDEO IP CORES
19652 M:      Hyun Kwon <hyun.kwon@xilinx.com>
19653 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19654 L:      linux-media@vger.kernel.org
19655 S:      Supported
19656 T:      git git://linuxtv.org/media_tree.git
19657 F:      Documentation/devicetree/bindings/media/xilinx/
19658 F:      drivers/media/platform/xilinx/
19659 F:      include/uapi/linux/xilinx-v4l2-controls.h
19660
19661 XILINX ZYNQMP DPDMA DRIVER
19662 M:      Hyun Kwon <hyun.kwon@xilinx.com>
19663 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19664 L:      dmaengine@vger.kernel.org
19665 S:      Supported
19666 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
19667 F:      drivers/dma/xilinx/xilinx_dpdma.c
19668 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
19669
19670 XILINX ZYNQMP PSGTR PHY DRIVER
19671 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
19672 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19673 L:      linux-kernel@vger.kernel.org
19674 S:      Supported
19675 T:      git https://github.com/Xilinx/linux-xlnx.git
19676 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
19677 F:      drivers/phy/xilinx/phy-zynqmp.c
19678
19679 XILLYBUS DRIVER
19680 M:      Eli Billauer <eli.billauer@gmail.com>
19681 L:      linux-kernel@vger.kernel.org
19682 S:      Supported
19683 F:      drivers/char/xillybus/
19684
19685 XLP9XX I2C DRIVER
19686 M:      George Cherian <gcherian@marvell.com>
19687 L:      linux-i2c@vger.kernel.org
19688 S:      Supported
19689 W:      http://www.marvell.com
19690 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
19691 F:      drivers/i2c/busses/i2c-xlp9xx.c
19692
19693 XRA1403 GPIO EXPANDER
19694 M:      Nandor Han <nandor.han@ge.com>
19695 M:      Semi Malinen <semi.malinen@ge.com>
19696 L:      linux-gpio@vger.kernel.org
19697 S:      Maintained
19698 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
19699 F:      drivers/gpio/gpio-xra1403.c
19700
19701 XTENSA XTFPGA PLATFORM SUPPORT
19702 M:      Max Filippov <jcmvbkbc@gmail.com>
19703 L:      linux-xtensa@linux-xtensa.org
19704 S:      Maintained
19705 F:      drivers/spi/spi-xtensa-xtfpga.c
19706 F:      sound/soc/xtensa/xtfpga-i2s.c
19707
19708 YAM DRIVER FOR AX.25
19709 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
19710 L:      linux-hams@vger.kernel.org
19711 S:      Maintained
19712 F:      drivers/net/hamradio/yam*
19713 F:      include/linux/yam.h
19714
19715 YAMA SECURITY MODULE
19716 M:      Kees Cook <keescook@chromium.org>
19717 S:      Supported
19718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
19719 F:      Documentation/admin-guide/LSM/Yama.rst
19720 F:      security/yama/
19721
19722 YEALINK PHONE DRIVER
19723 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
19724 L:      usbb2k-api-dev@nongnu.org
19725 S:      Maintained
19726 F:      Documentation/input/devices/yealink.rst
19727 F:      drivers/input/misc/yealink.*
19728
19729 Z8530 DRIVER FOR AX.25
19730 M:      Joerg Reuter <jreuter@yaina.de>
19731 L:      linux-hams@vger.kernel.org
19732 S:      Maintained
19733 W:      http://yaina.de/jreuter/
19734 W:      http://www.qsl.net/dl1bke/
19735 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
19736 F:      drivers/net/hamradio/*scc.c
19737 F:      drivers/net/hamradio/z8530.h
19738
19739 ZBUD COMPRESSED PAGE ALLOCATOR
19740 M:      Seth Jennings <sjenning@redhat.com>
19741 M:      Dan Streetman <ddstreet@ieee.org>
19742 L:      linux-mm@kvack.org
19743 S:      Maintained
19744 F:      include/linux/zbud.h
19745 F:      mm/zbud.c
19746
19747 ZD1211RW WIRELESS DRIVER
19748 M:      Daniel Drake <dsd@gentoo.org>
19749 M:      Ulrich Kunitz <kune@deine-taler.de>
19750 L:      linux-wireless@vger.kernel.org
19751 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
19752 S:      Maintained
19753 W:      http://zd1211.ath.cx/wiki/DriverRewrite
19754 F:      drivers/net/wireless/zydas/zd1211rw/
19755
19756 ZD1301 MEDIA DRIVER
19757 M:      Antti Palosaari <crope@iki.fi>
19758 L:      linux-media@vger.kernel.org
19759 S:      Maintained
19760 W:      https://linuxtv.org/
19761 W:      http://palosaari.fi/linux/
19762 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19763 F:      drivers/media/usb/dvb-usb-v2/zd1301*
19764
19765 ZD1301_DEMOD MEDIA DRIVER
19766 M:      Antti Palosaari <crope@iki.fi>
19767 L:      linux-media@vger.kernel.org
19768 S:      Maintained
19769 W:      https://linuxtv.org/
19770 W:      http://palosaari.fi/linux/
19771 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19772 F:      drivers/media/dvb-frontends/zd1301_demod*
19773
19774 ZHAOXIN PROCESSOR SUPPORT
19775 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
19776 L:      linux-kernel@vger.kernel.org
19777 S:      Maintained
19778 F:      arch/x86/kernel/cpu/zhaoxin.c
19779
19780 ZONEFS FILESYSTEM
19781 M:      Damien Le Moal <damien.lemoal@wdc.com>
19782 M:      Naohiro Aota <naohiro.aota@wdc.com>
19783 R:      Johannes Thumshirn <jth@kernel.org>
19784 L:      linux-fsdevel@vger.kernel.org
19785 S:      Maintained
19786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
19787 F:      Documentation/filesystems/zonefs.rst
19788 F:      fs/zonefs/
19789
19790 ZPOOL COMPRESSED PAGE STORAGE API
19791 M:      Dan Streetman <ddstreet@ieee.org>
19792 L:      linux-mm@kvack.org
19793 S:      Maintained
19794 F:      include/linux/zpool.h
19795 F:      mm/zpool.c
19796
19797 ZR36067 VIDEO FOR LINUX DRIVER
19798 M:      Corentin Labbe <clabbe@baylibre.com>
19799 L:      mjpeg-users@lists.sourceforge.net
19800 L:      linux-media@vger.kernel.org
19801 S:      Maintained
19802 W:      http://mjpeg.sourceforge.net/driver-zoran/
19803 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19804 F:      Documentation/driver-api/media/drivers/zoran.rst
19805 F:      drivers/staging/media/zoran/
19806
19807 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
19808 M:      Minchan Kim <minchan@kernel.org>
19809 M:      Nitin Gupta <ngupta@vflare.org>
19810 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19811 L:      linux-kernel@vger.kernel.org
19812 S:      Maintained
19813 F:      Documentation/admin-guide/blockdev/zram.rst
19814 F:      drivers/block/zram/
19815
19816 ZS DECSTATION Z85C30 SERIAL DRIVER
19817 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
19818 S:      Maintained
19819 F:      drivers/tty/serial/zs.*
19820
19821 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
19822 M:      Minchan Kim <minchan@kernel.org>
19823 M:      Nitin Gupta <ngupta@vflare.org>
19824 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19825 L:      linux-mm@kvack.org
19826 S:      Maintained
19827 F:      Documentation/vm/zsmalloc.rst
19828 F:      include/linux/zsmalloc.h
19829 F:      mm/zsmalloc.c
19830
19831 ZSWAP COMPRESSED SWAP CACHING
19832 M:      Seth Jennings <sjenning@redhat.com>
19833 M:      Dan Streetman <ddstreet@ieee.org>
19834 M:      Vitaly Wool <vitaly.wool@konsulko.com>
19835 L:      linux-mm@kvack.org
19836 S:      Maintained
19837 F:      mm/zswap.c
19838
19839 THE REST
19840 M:      Linus Torvalds <torvalds@linux-foundation.org>
19841 L:      linux-kernel@vger.kernel.org
19842 S:      Buried alive in reporters
19843 Q:      http://patchwork.kernel.org/project/LKML/list/
19844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
19845 F:      *
19846 F:      */