drm/nouveau/kms/nv50-: convert core wndw_owner() to new push macros
[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/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L:      linux-bluetooth@vger.kernel.org
176 L:      linux-wpan@vger.kernel.org
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L:      linux-hams@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <johannes@sipsolutions.net>
190 L:      linux-wireless@vger.kernel.org
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
207 M:      Heiner Kallweit <hkallweit1@gmail.com>
208 L:      netdev@vger.kernel.org
209 S:      Maintained
210 F:      drivers/net/ethernet/realtek/r8169*
211
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
214 L:      linux-serial@vger.kernel.org
215 S:      Maintained
216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F:      drivers/tty/serial/8250*
218 F:      include/linux/serial_8250.h
219
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L:      netdev@vger.kernel.org
222 S:      Orphan / Obsolete
223 F:      drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M:      Eric Van Hensbergen <ericvh@gmail.com>
227 M:      Latchesar Ionkov <lucho@ionkov.net>
228 M:      Dominique Martinet <asmadeus@codewreck.org>
229 L:      v9fs-developer@lists.sourceforge.net
230 S:      Maintained
231 W:      http://swik.net/v9fs
232 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T:      git git://github.com/martinetd/linux.git
235 F:      Documentation/filesystems/9p.rst
236 F:      fs/9p/
237 F:      include/net/9p/
238 F:      include/trace/events/9p.h
239 F:      include/uapi/linux/virtio_9p.h
240 F:      net/9p/
241
242 A8293 MEDIA DRIVER
243 M:      Antti Palosaari <crope@iki.fi>
244 L:      linux-media@vger.kernel.org
245 S:      Maintained
246 W:      https://linuxtv.org
247 W:      http://palosaari.fi/linux/
248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
249 T:      git git://linuxtv.org/anttip/media_tree.git
250 F:      drivers/media/dvb-frontends/a8293*
251
252 AACRAID SCSI RAID DRIVER
253 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
254 L:      linux-scsi@vger.kernel.org
255 S:      Supported
256 W:      http://www.adaptec.com/
257 F:      Documentation/scsi/aacraid.rst
258 F:      drivers/scsi/aacraid/
259
260 ABI/API
261 L:      linux-api@vger.kernel.org
262 F:      include/linux/syscalls.h
263 F:      kernel/sys_ni.c
264
265 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
266 M:      Hans de Goede <hdegoede@redhat.com>
267 L:      linux-hwmon@vger.kernel.org
268 S:      Maintained
269 F:      drivers/hwmon/abituguru.c
270
271 ABIT UGURU 3 HARDWARE MONITOR DRIVER
272 M:      Alistair John Strachan <alistair@devzero.co.uk>
273 L:      linux-hwmon@vger.kernel.org
274 S:      Maintained
275 F:      drivers/hwmon/abituguru3.c
276
277 ACCES 104-DIO-48E GPIO DRIVER
278 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
279 L:      linux-gpio@vger.kernel.org
280 S:      Maintained
281 F:      drivers/gpio/gpio-104-dio-48e.c
282
283 ACCES 104-IDI-48 GPIO DRIVER
284 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
285 L:      linux-gpio@vger.kernel.org
286 S:      Maintained
287 F:      drivers/gpio/gpio-104-idi-48.c
288
289 ACCES 104-IDIO-16 GPIO DRIVER
290 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
291 L:      linux-gpio@vger.kernel.org
292 S:      Maintained
293 F:      drivers/gpio/gpio-104-idio-16.c
294
295 ACCES 104-QUAD-8 DRIVER
296 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
297 M:      Syed Nayyar Waris <syednwaris@gmail.com>
298 L:      linux-iio@vger.kernel.org
299 S:      Maintained
300 F:      Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
301 F:      Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
302 F:      drivers/counter/104-quad-8.c
303
304 ACCES PCI-IDIO-16 GPIO DRIVER
305 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
306 L:      linux-gpio@vger.kernel.org
307 S:      Maintained
308 F:      drivers/gpio/gpio-pci-idio-16.c
309
310 ACCES PCIe-IDIO-24 GPIO DRIVER
311 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
312 L:      linux-gpio@vger.kernel.org
313 S:      Maintained
314 F:      drivers/gpio/gpio-pcie-idio-24.c
315
316 ACENIC DRIVER
317 M:      Jes Sorensen <jes@trained-monkey.org>
318 L:      linux-acenic@sunsite.dk
319 S:      Maintained
320 F:      drivers/net/ethernet/alteon/acenic*
321
322 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
323 M:      Peter Kaestle <peter@piie.net>
324 L:      platform-driver-x86@vger.kernel.org
325 S:      Maintained
326 W:      http://piie.net/?section=acerhdf
327 F:      drivers/platform/x86/acerhdf.c
328
329 ACER WMI LAPTOP EXTRAS
330 M:      "Lee, Chun-Yi" <jlee@suse.com>
331 L:      platform-driver-x86@vger.kernel.org
332 S:      Maintained
333 F:      drivers/platform/x86/acer-wmi.c
334
335 ACPI
336 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
337 M:      Len Brown <lenb@kernel.org>
338 L:      linux-acpi@vger.kernel.org
339 S:      Supported
340 W:      https://01.org/linux-acpi
341 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
342 B:      https://bugzilla.kernel.org
343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
344 F:      Documentation/ABI/testing/configfs-acpi
345 F:      Documentation/ABI/testing/sysfs-bus-acpi
346 F:      Documentation/firmware-guide/acpi/
347 F:      drivers/acpi/
348 F:      drivers/pci/*/*acpi*
349 F:      drivers/pci/*acpi*
350 F:      drivers/pnp/pnpacpi/
351 F:      include/acpi/
352 F:      include/linux/acpi.h
353 F:      include/linux/fwnode.h
354 F:      tools/power/acpi/
355
356 ACPI APEI
357 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
358 M:      Len Brown <lenb@kernel.org>
359 R:      James Morse <james.morse@arm.com>
360 R:      Tony Luck <tony.luck@intel.com>
361 R:      Borislav Petkov <bp@alien8.de>
362 L:      linux-acpi@vger.kernel.org
363 F:      drivers/acpi/apei/
364
365 ACPI COMPONENT ARCHITECTURE (ACPICA)
366 M:      Robert Moore <robert.moore@intel.com>
367 M:      Erik Kaneda <erik.kaneda@intel.com>
368 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
369 L:      linux-acpi@vger.kernel.org
370 L:      devel@acpica.org
371 S:      Supported
372 W:      https://acpica.org/
373 W:      https://github.com/acpica/acpica/
374 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
375 B:      https://bugzilla.kernel.org
376 B:      https://bugs.acpica.org
377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
378 F:      drivers/acpi/acpica/
379 F:      include/acpi/
380 F:      tools/power/acpi/
381
382 ACPI FAN DRIVER
383 M:      Zhang Rui <rui.zhang@intel.com>
384 L:      linux-acpi@vger.kernel.org
385 S:      Supported
386 W:      https://01.org/linux-acpi
387 B:      https://bugzilla.kernel.org
388 F:      drivers/acpi/fan.c
389
390 ACPI FOR ARM64 (ACPI/arm64)
391 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
392 M:      Hanjun Guo <guohanjun@huawei.com>
393 M:      Sudeep Holla <sudeep.holla@arm.com>
394 L:      linux-acpi@vger.kernel.org
395 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
396 S:      Maintained
397 F:      drivers/acpi/arm64
398
399 ACPI I2C MULTI INSTANTIATE DRIVER
400 M:      Hans de Goede <hdegoede@redhat.com>
401 L:      platform-driver-x86@vger.kernel.org
402 S:      Maintained
403 F:      drivers/platform/x86/i2c-multi-instantiate.c
404
405 ACPI PMIC DRIVERS
406 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
407 M:      Len Brown <lenb@kernel.org>
408 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
409 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
410 L:      linux-acpi@vger.kernel.org
411 S:      Supported
412 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
413 B:      https://bugzilla.kernel.org
414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
415 F:      drivers/acpi/pmic/
416
417 ACPI THERMAL DRIVER
418 M:      Zhang Rui <rui.zhang@intel.com>
419 L:      linux-acpi@vger.kernel.org
420 S:      Supported
421 W:      https://01.org/linux-acpi
422 B:      https://bugzilla.kernel.org
423 F:      drivers/acpi/*thermal*
424
425 ACPI VIDEO DRIVER
426 M:      Zhang Rui <rui.zhang@intel.com>
427 L:      linux-acpi@vger.kernel.org
428 S:      Supported
429 W:      https://01.org/linux-acpi
430 B:      https://bugzilla.kernel.org
431 F:      drivers/acpi/acpi_video.c
432
433 ACPI WMI DRIVER
434 L:      platform-driver-x86@vger.kernel.org
435 S:      Orphan
436 F:      drivers/platform/x86/wmi.c
437 F:      include/uapi/linux/wmi.h
438
439 AD1889 ALSA SOUND DRIVER
440 L:      linux-parisc@vger.kernel.org
441 S:      Maintained
442 W:      https://parisc.wiki.kernel.org/index.php/AD1889
443 F:      sound/pci/ad1889.*
444
445 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
446 M:      Michael Hennerich <michael.hennerich@analog.com>
447 S:      Supported
448 W:      http://wiki.analog.com/AD5254
449 W:      http://ez.analog.com/community/linux-device-drivers
450 F:      drivers/misc/ad525x_dpot.c
451
452 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
453 M:      Michael Hennerich <michael.hennerich@analog.com>
454 S:      Supported
455 W:      http://wiki.analog.com/AD5398
456 W:      http://ez.analog.com/community/linux-device-drivers
457 F:      drivers/regulator/ad5398.c
458
459 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
460 M:      Michael Hennerich <michael.hennerich@analog.com>
461 S:      Supported
462 W:      http://wiki.analog.com/AD7142
463 W:      http://ez.analog.com/community/linux-device-drivers
464 F:      drivers/input/misc/ad714x.c
465
466 AD7877 TOUCHSCREEN DRIVER
467 M:      Michael Hennerich <michael.hennerich@analog.com>
468 S:      Supported
469 W:      http://wiki.analog.com/AD7877
470 W:      http://ez.analog.com/community/linux-device-drivers
471 F:      drivers/input/touchscreen/ad7877.c
472
473 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
474 M:      Michael Hennerich <michael.hennerich@analog.com>
475 S:      Supported
476 W:      http://wiki.analog.com/AD7879
477 W:      http://ez.analog.com/community/linux-device-drivers
478 F:      drivers/input/touchscreen/ad7879.c
479
480 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
481 M:      Jiri Kosina <jikos@kernel.org>
482 S:      Maintained
483
484 ADF7242 IEEE 802.15.4 RADIO DRIVER
485 M:      Michael Hennerich <michael.hennerich@analog.com>
486 L:      linux-wpan@vger.kernel.org
487 S:      Supported
488 W:      https://wiki.analog.com/ADF7242
489 W:      http://ez.analog.com/community/linux-device-drivers
490 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
491 F:      drivers/net/ieee802154/adf7242.c
492
493 ADM1025 HARDWARE MONITOR DRIVER
494 M:      Jean Delvare <jdelvare@suse.com>
495 L:      linux-hwmon@vger.kernel.org
496 S:      Maintained
497 F:      Documentation/hwmon/adm1025.rst
498 F:      drivers/hwmon/adm1025.c
499
500 ADM1029 HARDWARE MONITOR DRIVER
501 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
502 L:      linux-hwmon@vger.kernel.org
503 S:      Maintained
504 F:      drivers/hwmon/adm1029.c
505
506 ADM8211 WIRELESS DRIVER
507 L:      linux-wireless@vger.kernel.org
508 S:      Orphan
509 W:      https://wireless.wiki.kernel.org/
510 F:      drivers/net/wireless/admtek/adm8211.*
511
512 ADP1653 FLASH CONTROLLER DRIVER
513 M:      Sakari Ailus <sakari.ailus@iki.fi>
514 L:      linux-media@vger.kernel.org
515 S:      Maintained
516 F:      drivers/media/i2c/adp1653.c
517 F:      include/media/i2c/adp1653.h
518
519 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
520 M:      Michael Hennerich <michael.hennerich@analog.com>
521 S:      Supported
522 W:      http://wiki.analog.com/ADP5520
523 W:      http://ez.analog.com/community/linux-device-drivers
524 F:      drivers/gpio/gpio-adp5520.c
525 F:      drivers/input/keyboard/adp5520-keys.c
526 F:      drivers/leds/leds-adp5520.c
527 F:      drivers/mfd/adp5520.c
528 F:      drivers/video/backlight/adp5520_bl.c
529
530 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
531 M:      Michael Hennerich <michael.hennerich@analog.com>
532 S:      Supported
533 W:      http://wiki.analog.com/ADP5588
534 W:      http://ez.analog.com/community/linux-device-drivers
535 F:      drivers/gpio/gpio-adp5588.c
536 F:      drivers/input/keyboard/adp5588-keys.c
537
538 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
539 M:      Michael Hennerich <michael.hennerich@analog.com>
540 S:      Supported
541 W:      http://wiki.analog.com/ADP8860
542 W:      http://ez.analog.com/community/linux-device-drivers
543 F:      drivers/video/backlight/adp8860_bl.c
544
545 ADT746X FAN DRIVER
546 M:      Colin Leroy <colin@colino.net>
547 S:      Maintained
548 F:      drivers/macintosh/therm_adt746x.c
549
550 ADT7475 HARDWARE MONITOR DRIVER
551 M:      Jean Delvare <jdelvare@suse.com>
552 L:      linux-hwmon@vger.kernel.org
553 S:      Maintained
554 F:      Documentation/hwmon/adt7475.rst
555 F:      drivers/hwmon/adt7475.c
556
557 ADVANSYS SCSI DRIVER
558 M:      Matthew Wilcox <willy@infradead.org>
559 M:      Hannes Reinecke <hare@suse.com>
560 L:      linux-scsi@vger.kernel.org
561 S:      Maintained
562 F:      Documentation/scsi/advansys.rst
563 F:      drivers/scsi/advansys.c
564
565 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
566 M:      Michael Hennerich <michael.hennerich@analog.com>
567 S:      Supported
568 W:      http://wiki.analog.com/ADXL345
569 W:      http://ez.analog.com/community/linux-device-drivers
570 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
571 F:      drivers/input/misc/adxl34x.c
572
573 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
574 M:      Michael Hennerich <michael.hennerich@analog.com>
575 S:      Supported
576 W:      http://ez.analog.com/community/linux-device-drivers
577 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
578 F:      drivers/iio/accel/adxl372.c
579 F:      drivers/iio/accel/adxl372_i2c.c
580 F:      drivers/iio/accel/adxl372_spi.c
581
582 AF9013 MEDIA DRIVER
583 M:      Antti Palosaari <crope@iki.fi>
584 L:      linux-media@vger.kernel.org
585 S:      Maintained
586 W:      https://linuxtv.org
587 W:      http://palosaari.fi/linux/
588 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
589 T:      git git://linuxtv.org/anttip/media_tree.git
590 F:      drivers/media/dvb-frontends/af9013*
591
592 AF9033 MEDIA DRIVER
593 M:      Antti Palosaari <crope@iki.fi>
594 L:      linux-media@vger.kernel.org
595 S:      Maintained
596 W:      https://linuxtv.org
597 W:      http://palosaari.fi/linux/
598 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
599 T:      git git://linuxtv.org/anttip/media_tree.git
600 F:      drivers/media/dvb-frontends/af9033*
601
602 AFFS FILE SYSTEM
603 M:      David Sterba <dsterba@suse.com>
604 L:      linux-fsdevel@vger.kernel.org
605 S:      Odd Fixes
606 F:      Documentation/filesystems/affs.rst
607 F:      fs/affs/
608
609 AFS FILESYSTEM
610 M:      David Howells <dhowells@redhat.com>
611 L:      linux-afs@lists.infradead.org
612 S:      Supported
613 W:      https://www.infradead.org/~dhowells/kafs/
614 F:      Documentation/filesystems/afs.rst
615 F:      fs/afs/
616 F:      include/trace/events/afs.h
617
618 AGPGART DRIVER
619 M:      David Airlie <airlied@linux.ie>
620 S:      Maintained
621 T:      git git://anongit.freedesktop.org/drm/drm
622 F:      drivers/char/agp/
623 F:      include/linux/agp*
624 F:      include/uapi/linux/agp*
625
626 AHA152X SCSI DRIVER
627 M:      "Juergen E. Fischer" <fischer@norbit.de>
628 L:      linux-scsi@vger.kernel.org
629 S:      Maintained
630 F:      drivers/scsi/aha152x*
631 F:      drivers/scsi/pcmcia/aha152x*
632
633 AIC7XXX / AIC79XX SCSI DRIVER
634 M:      Hannes Reinecke <hare@suse.com>
635 L:      linux-scsi@vger.kernel.org
636 S:      Maintained
637 F:      drivers/scsi/aic7xxx/
638
639 AIMSLAB FM RADIO RECEIVER DRIVER
640 M:      Hans Verkuil <hverkuil@xs4all.nl>
641 L:      linux-media@vger.kernel.org
642 S:      Maintained
643 W:      https://linuxtv.org
644 T:      git git://linuxtv.org/media_tree.git
645 F:      drivers/media/radio/radio-aimslab*
646
647 AIO
648 M:      Benjamin LaHaise <bcrl@kvack.org>
649 L:      linux-aio@kvack.org
650 S:      Supported
651 F:      fs/aio.c
652 F:      include/linux/*aio*.h
653
654 AIRSPY MEDIA DRIVER
655 M:      Antti Palosaari <crope@iki.fi>
656 L:      linux-media@vger.kernel.org
657 S:      Maintained
658 W:      https://linuxtv.org
659 W:      http://palosaari.fi/linux/
660 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
661 T:      git git://linuxtv.org/anttip/media_tree.git
662 F:      drivers/media/usb/airspy/
663
664 ALACRITECH GIGABIT ETHERNET DRIVER
665 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
666 S:      Maintained
667 F:      drivers/net/ethernet/alacritech/*
668
669 ALCATEL SPEEDTOUCH USB DRIVER
670 M:      Duncan Sands <duncan.sands@free.fr>
671 L:      linux-usb@vger.kernel.org
672 S:      Maintained
673 W:      http://www.linux-usb.org/SpeedTouch/
674 F:      drivers/usb/atm/speedtch.c
675 F:      drivers/usb/atm/usbatm.c
676
677 ALCHEMY AU1XX0 MMC DRIVER
678 M:      Manuel Lauss <manuel.lauss@gmail.com>
679 S:      Maintained
680 F:      drivers/mmc/host/au1xmmc.c
681
682 ALI1563 I2C DRIVER
683 M:      Rudolf Marek <r.marek@assembler.cz>
684 L:      linux-i2c@vger.kernel.org
685 S:      Maintained
686 F:      Documentation/i2c/busses/i2c-ali1563.rst
687 F:      drivers/i2c/busses/i2c-ali1563.c
688
689 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
690 M:      Tomislav Denis <tomislav.denis@avl.com>
691 L:      linux-iio@vger.kernel.org
692 S:      Maintained
693 W:      http://www.allsensors.com/
694 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
695 F:      drivers/iio/pressure/dlhl60d.c
696
697 ALLEGRO DVT VIDEO IP CORE DRIVER
698 M:      Michael Tretter <m.tretter@pengutronix.de>
699 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
700 L:      linux-media@vger.kernel.org
701 S:      Maintained
702 F:      drivers/staging/media/allegro-dvt/
703
704 ALLWINNER A10 CSI DRIVER
705 M:      Maxime Ripard <mripard@kernel.org>
706 L:      linux-media@vger.kernel.org
707 S:      Maintained
708 T:      git git://linuxtv.org/media_tree.git
709 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
710 F:      drivers/media/platform/sunxi/sun4i-csi/
711
712 ALLWINNER CPUFREQ DRIVER
713 M:      Yangtao Li <tiny.windzz@gmail.com>
714 L:      linux-pm@vger.kernel.org
715 S:      Maintained
716 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
717 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
718
719 ALLWINNER CRYPTO DRIVERS
720 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
721 L:      linux-crypto@vger.kernel.org
722 S:      Maintained
723 F:      drivers/crypto/allwinner/
724
725 ALLWINNER THERMAL DRIVER
726 M:      Vasily Khoruzhick <anarsoul@gmail.com>
727 M:      Yangtao Li <tiny.windzz@gmail.com>
728 L:      linux-pm@vger.kernel.org
729 S:      Maintained
730 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
731 F:      drivers/thermal/sun8i_thermal.c
732
733 ALLWINNER VPU DRIVER
734 M:      Maxime Ripard <mripard@kernel.org>
735 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
736 L:      linux-media@vger.kernel.org
737 S:      Maintained
738 F:      drivers/staging/media/sunxi/cedrus/
739
740 ALPHA PORT
741 M:      Richard Henderson <rth@twiddle.net>
742 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
743 M:      Matt Turner <mattst88@gmail.com>
744 L:      linux-alpha@vger.kernel.org
745 S:      Odd Fixes
746 F:      arch/alpha/
747
748 ALPS PS/2 TOUCHPAD DRIVER
749 R:      Pali Rohár <pali@kernel.org>
750 F:      drivers/input/mouse/alps.*
751
752 ALTERA I2C CONTROLLER DRIVER
753 M:      Thor Thayer <thor.thayer@linux.intel.com>
754 S:      Maintained
755 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
756 F:      drivers/i2c/busses/i2c-altera.c
757
758 ALTERA MAILBOX DRIVER
759 M:      Ley Foon Tan <ley.foon.tan@intel.com>
760 S:      Maintained
761 F:      drivers/mailbox/mailbox-altera.c
762
763 ALTERA PIO DRIVER
764 M:      Joyce Ooi <joyce.ooi@intel.com>
765 L:      linux-gpio@vger.kernel.org
766 S:      Maintained
767 F:      drivers/gpio/gpio-altera.c
768
769 ALTERA SYSTEM MANAGER DRIVER
770 M:      Thor Thayer <thor.thayer@linux.intel.com>
771 S:      Maintained
772 F:      drivers/mfd/altera-sysmgr.c
773 F:      include/linux/mfd/altera-sysmgr.h
774
775 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
776 M:      Thor Thayer <thor.thayer@linux.intel.com>
777 S:      Maintained
778 F:      drivers/gpio/gpio-altera-a10sr.c
779 F:      drivers/mfd/altera-a10sr.c
780 F:      drivers/reset/reset-a10sr.c
781 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
782 F:      include/linux/mfd/altera-a10sr.h
783
784 ALTERA TRIPLE SPEED ETHERNET DRIVER
785 M:      Thor Thayer <thor.thayer@linux.intel.com>
786 L:      netdev@vger.kernel.org
787 S:      Maintained
788 F:      drivers/net/ethernet/altera/
789
790 ALTERA UART/JTAG UART SERIAL DRIVERS
791 M:      Tobias Klauser <tklauser@distanz.ch>
792 L:      linux-serial@vger.kernel.org
793 S:      Maintained
794 F:      drivers/tty/serial/altera_jtaguart.c
795 F:      drivers/tty/serial/altera_uart.c
796 F:      include/linux/altera_jtaguart.h
797 F:      include/linux/altera_uart.h
798
799 AMAZON ANNAPURNA LABS FIC DRIVER
800 M:      Talel Shenhar <talel@amazon.com>
801 S:      Maintained
802 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
803 F:      drivers/irqchip/irq-al-fic.c
804
805 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
806 M:      Talel Shenhar <talel@amazon.com>
807 S:      Maintained
808 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
809 F:      drivers/thermal/thermal_mmio.c
810
811 AMAZON ETHERNET DRIVERS
812 M:      Netanel Belgazal <netanel@amazon.com>
813 M:      Arthur Kiyanovski <akiyano@amazon.com>
814 R:      Guy Tzalik <gtzalik@amazon.com>
815 R:      Saeed Bishara <saeedb@amazon.com>
816 R:      Zorik Machulsky <zorik@amazon.com>
817 L:      netdev@vger.kernel.org
818 S:      Supported
819 F:      Documentation/networking/device_drivers/amazon/ena.rst
820 F:      drivers/net/ethernet/amazon/
821
822 AMAZON RDMA EFA DRIVER
823 M:      Gal Pressman <galpress@amazon.com>
824 R:      Yossi Leybovich <sleybo@amazon.com>
825 L:      linux-rdma@vger.kernel.org
826 S:      Supported
827 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
828 F:      drivers/infiniband/hw/efa/
829 F:      include/uapi/rdma/efa-abi.h
830
831 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
832 M:      Tom Lendacky <thomas.lendacky@amd.com>
833 L:      linux-crypto@vger.kernel.org
834 S:      Supported
835 F:      drivers/crypto/ccp/
836 F:      include/linux/ccp.h
837
838 AMD DISPLAY CORE
839 M:      Harry Wentland <harry.wentland@amd.com>
840 M:      Leo Li <sunpeng.li@amd.com>
841 L:      amd-gfx@lists.freedesktop.org
842 S:      Supported
843 T:      git git://people.freedesktop.org/~agd5f/linux
844 F:      drivers/gpu/drm/amd/display/
845
846 AMD ENERGY DRIVER
847 M:      Naveen Krishna Chatradhi <nchatrad@amd.com>
848 L:      linux-hwmon@vger.kernel.org
849 S:      Maintained
850 F:      Documentation/hwmon/amd_energy.rst
851 F:      drivers/hwmon/amd_energy.c
852
853 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
854 M:      Huang Rui <ray.huang@amd.com>
855 L:      linux-hwmon@vger.kernel.org
856 S:      Supported
857 F:      Documentation/hwmon/fam15h_power.rst
858 F:      drivers/hwmon/fam15h_power.c
859
860 AMD FCH GPIO DRIVER
861 M:      Enrico Weigelt, metux IT consult <info@metux.net>
862 L:      linux-gpio@vger.kernel.org
863 S:      Maintained
864 F:      drivers/gpio/gpio-amd-fch.c
865 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
866
867 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
868 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
869 S:      Orphan
870 F:      drivers/usb/gadget/udc/amd5536udc.*
871
872 AMD GEODE PROCESSOR/CHIPSET SUPPORT
873 M:      Andres Salomon <dilinger@queued.net>
874 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
875 S:      Supported
876 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
877 F:      arch/x86/include/asm/geode.h
878 F:      drivers/char/hw_random/geode-rng.c
879 F:      drivers/crypto/geode*
880 F:      drivers/video/fbdev/geode/
881
882 AMD IOMMU (AMD-VI)
883 M:      Joerg Roedel <joro@8bytes.org>
884 L:      iommu@lists.linux-foundation.org
885 S:      Maintained
886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
887 F:      drivers/iommu/amd/
888 F:      include/linux/amd-iommu.h
889
890 AMD KFD
891 M:      Felix Kuehling <Felix.Kuehling@amd.com>
892 L:      amd-gfx@lists.freedesktop.org
893 S:      Supported
894 T:      git git://people.freedesktop.org/~agd5f/linux
895 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
896 F:      drivers/gpu/drm/amd/amdkfd/
897 F:      drivers/gpu/drm/amd/include/cik_structs.h
898 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
899 F:      drivers/gpu/drm/amd/include/v9_structs.h
900 F:      drivers/gpu/drm/amd/include/vi_structs.h
901 F:      include/uapi/linux/kfd_ioctl.h
902
903 AMD SPI DRIVER
904 M:      Sanjay R Mehta <sanju.mehta@amd.com>
905 S:      Maintained
906 F:      drivers/spi/spi-amd.c
907
908 AMD MP2 I2C DRIVER
909 M:      Elie Morisse <syniurge@gmail.com>
910 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
911 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
912 L:      linux-i2c@vger.kernel.org
913 S:      Maintained
914 F:      drivers/i2c/busses/i2c-amd-mp2*
915
916 AMD POWERPLAY
917 M:      Evan Quan <evan.quan@amd.com>
918 L:      amd-gfx@lists.freedesktop.org
919 S:      Supported
920 T:      git git://people.freedesktop.org/~agd5f/linux
921 F:      drivers/gpu/drm/amd/powerplay/
922
923 AMD SEATTLE DEVICE TREE SUPPORT
924 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
925 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
926 M:      Tom Lendacky <thomas.lendacky@amd.com>
927 S:      Supported
928 F:      arch/arm64/boot/dts/amd/
929
930 AMD XGBE DRIVER
931 M:      Tom Lendacky <thomas.lendacky@amd.com>
932 L:      netdev@vger.kernel.org
933 S:      Supported
934 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
935 F:      drivers/net/ethernet/amd/xgbe/
936
937 ANALOG DEVICES INC AD5686 DRIVER
938 M:      Michael Hennerich <Michael.Hennerich@analog.com>
939 L:      linux-pm@vger.kernel.org
940 S:      Supported
941 W:      http://ez.analog.com/community/linux-device-drivers
942 F:      drivers/iio/dac/ad5686*
943 F:      drivers/iio/dac/ad5696*
944
945 ANALOG DEVICES INC AD5758 DRIVER
946 M:      Michael Hennerich <Michael.Hennerich@analog.com>
947 L:      linux-iio@vger.kernel.org
948 S:      Supported
949 W:      http://ez.analog.com/community/linux-device-drivers
950 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
951 F:      drivers/iio/dac/ad5758.c
952
953 ANALOG DEVICES INC AD7091R5 DRIVER
954 M:      Beniamin Bia <beniamin.bia@analog.com>
955 L:      linux-iio@vger.kernel.org
956 S:      Supported
957 W:      http://ez.analog.com/community/linux-device-drivers
958 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7091r5.yaml
959 F:      drivers/iio/adc/ad7091r5.c
960
961 ANALOG DEVICES INC AD7124 DRIVER
962 M:      Michael Hennerich <Michael.Hennerich@analog.com>
963 L:      linux-iio@vger.kernel.org
964 S:      Supported
965 W:      http://ez.analog.com/community/linux-device-drivers
966 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7124.yaml
967 F:      drivers/iio/adc/ad7124.c
968
969 ANALOG DEVICES INC AD7192 DRIVER
970 M:      Alexandru Tachici <alexandru.tachici@analog.com>
971 L:      linux-iio@vger.kernel.org
972 S:      Supported
973 W:      http://ez.analog.com/community/linux-device-drivers
974 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
975 F:      drivers/iio/adc/ad7192.c
976
977 ANALOG DEVICES INC AD7292 DRIVER
978 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
979 L:      linux-iio@vger.kernel.org
980 S:      Supported
981 W:      http://ez.analog.com/community/linux-device-drivers
982 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
983 F:      drivers/iio/adc/ad7292.c
984
985 ANALOG DEVICES INC AD7606 DRIVER
986 M:      Michael Hennerich <Michael.Hennerich@analog.com>
987 M:      Beniamin Bia <beniamin.bia@analog.com>
988 L:      linux-iio@vger.kernel.org
989 S:      Supported
990 W:      http://ez.analog.com/community/linux-device-drivers
991 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
992 F:      drivers/iio/adc/ad7606.c
993
994 ANALOG DEVICES INC AD7768-1 DRIVER
995 M:      Michael Hennerich <Michael.Hennerich@analog.com>
996 L:      linux-iio@vger.kernel.org
997 S:      Supported
998 W:      http://ez.analog.com/community/linux-device-drivers
999 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.txt
1000 F:      drivers/iio/adc/ad7768-1.c
1001
1002 ANALOG DEVICES INC AD7780 DRIVER
1003 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1004 M:      Renato Lui Geh <renatogeh@gmail.com>
1005 L:      linux-iio@vger.kernel.org
1006 S:      Supported
1007 W:      http://ez.analog.com/community/linux-device-drivers
1008 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1009 F:      drivers/iio/adc/ad7780.c
1010
1011 ANALOG DEVICES INC AD9389B DRIVER
1012 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1013 L:      linux-media@vger.kernel.org
1014 S:      Maintained
1015 F:      drivers/media/i2c/ad9389b*
1016
1017 ANALOG DEVICES INC ADGS1408 DRIVER
1018 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1019 S:      Supported
1020 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1021 F:      drivers/mux/adgs1408.c
1022
1023 ANALOG DEVICES INC ADIN DRIVER
1024 M:      Alexandru Ardelean <alexaundru.ardelean@analog.com>
1025 L:      netdev@vger.kernel.org
1026 S:      Supported
1027 W:      http://ez.analog.com/community/linux-device-drivers
1028 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1029 F:      drivers/net/phy/adin.c
1030
1031 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1032 M:      Alexandru Ardelean <alexandru.ardelean@analog.com>
1033 L:      linux-iio@vger.kernel.org
1034 S:      Supported
1035 F:      drivers/iio/imu/adis.c
1036 F:      include/linux/iio/imu/adis.h
1037
1038 ANALOG DEVICES INC ADIS16460 DRIVER
1039 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1040 L:      linux-iio@vger.kernel.org
1041 S:      Supported
1042 W:      http://ez.analog.com/community/linux-device-drivers
1043 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1044 F:      drivers/iio/imu/adis16460.c
1045
1046 ANALOG DEVICES INC ADIS16475 DRIVER
1047 M:      Nuno Sa <nuno.sa@analog.com>
1048 L:      linux-iio@vger.kernel.org
1049 W:      http://ez.analog.com/community/linux-device-drivers
1050 S:      Supported
1051 F:      drivers/iio/imu/adis16475.c
1052 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1053
1054 ANALOG DEVICES INC ADM1177 DRIVER
1055 M:      Beniamin Bia <beniamin.bia@analog.com>
1056 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1057 L:      linux-hwmon@vger.kernel.org
1058 S:      Supported
1059 W:      http://ez.analog.com/community/linux-device-drivers
1060 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1061 F:      drivers/hwmon/adm1177.c
1062
1063 ANALOG DEVICES INC ADP5061 DRIVER
1064 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1065 L:      linux-pm@vger.kernel.org
1066 S:      Supported
1067 W:      http://ez.analog.com/community/linux-device-drivers
1068 F:      drivers/power/supply/adp5061.c
1069
1070 ANALOG DEVICES INC ADV7180 DRIVER
1071 M:      Lars-Peter Clausen <lars@metafoo.de>
1072 L:      linux-media@vger.kernel.org
1073 S:      Supported
1074 W:      http://ez.analog.com/community/linux-device-drivers
1075 F:      drivers/media/i2c/adv7180.c
1076
1077 ANALOG DEVICES INC ADV748X DRIVER
1078 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1079 L:      linux-media@vger.kernel.org
1080 S:      Maintained
1081 F:      drivers/media/i2c/adv748x/*
1082
1083 ANALOG DEVICES INC ADV7511 DRIVER
1084 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1085 L:      linux-media@vger.kernel.org
1086 S:      Maintained
1087 F:      drivers/media/i2c/adv7511*
1088
1089 ANALOG DEVICES INC ADV7604 DRIVER
1090 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1091 L:      linux-media@vger.kernel.org
1092 S:      Maintained
1093 F:      drivers/media/i2c/adv7604*
1094
1095 ANALOG DEVICES INC ADV7842 DRIVER
1096 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1097 L:      linux-media@vger.kernel.org
1098 S:      Maintained
1099 F:      drivers/media/i2c/adv7842*
1100
1101 ANALOG DEVICES INC ASOC CODEC DRIVERS
1102 M:      Lars-Peter Clausen <lars@metafoo.de>
1103 M:      Nuno Sá <nuno.sa@analog.com>
1104 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1105 S:      Supported
1106 W:      http://wiki.analog.com/
1107 W:      http://ez.analog.com/community/linux-device-drivers
1108 F:      sound/soc/codecs/ad1*
1109 F:      sound/soc/codecs/ad7*
1110 F:      sound/soc/codecs/adau*
1111 F:      sound/soc/codecs/adav*
1112 F:      sound/soc/codecs/sigmadsp.*
1113 F:      sound/soc/codecs/ssm*
1114
1115 ANALOG DEVICES INC DMA DRIVERS
1116 M:      Lars-Peter Clausen <lars@metafoo.de>
1117 S:      Supported
1118 W:      http://ez.analog.com/community/linux-device-drivers
1119 F:      drivers/dma/dma-axi-dmac.c
1120
1121 ANALOG DEVICES INC HMC425A DRIVER
1122 M:      Beniamin Bia <beniamin.bia@analog.com>
1123 M:      Michael Hennerich <michael.hennerich@analog.com>
1124 L:      linux-iio@vger.kernel.org
1125 S:      Supported
1126 W:      http://ez.analog.com/community/linux-device-drivers
1127 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,hmc425a.yaml
1128 F:      drivers/iio/amplifiers/hmc425a.c
1129
1130 ANALOG DEVICES INC IIO DRIVERS
1131 M:      Lars-Peter Clausen <lars@metafoo.de>
1132 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1133 S:      Supported
1134 W:      http://wiki.analog.com/
1135 W:      http://ez.analog.com/community/linux-device-drivers
1136 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1137 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1138 F:      drivers/iio/*/ad*
1139 F:      drivers/iio/adc/ltc249*
1140 F:      drivers/staging/iio/*/ad*
1141 X:      drivers/iio/*/adjd*
1142
1143 ANALOGBITS PLL LIBRARIES
1144 M:      Paul Walmsley <paul.walmsley@sifive.com>
1145 S:      Supported
1146 F:      drivers/clk/analogbits/*
1147 F:      include/linux/clk/analogbits*
1148
1149 ANDES ARCHITECTURE
1150 M:      Nick Hu <nickhu@andestech.com>
1151 M:      Greentime Hu <green.hu@gmail.com>
1152 M:      Vincent Chen <deanbo422@gmail.com>
1153 S:      Supported
1154 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1155 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1156 F:      Documentation/devicetree/bindings/nds32/
1157 F:      arch/nds32/
1158 N:      nds32
1159 K:      nds32
1160
1161 ANDROID CONFIG FRAGMENTS
1162 M:      Rob Herring <robh@kernel.org>
1163 S:      Supported
1164 F:      kernel/configs/android*
1165
1166 ANDROID DRIVERS
1167 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1168 M:      Arve Hjønnevåg <arve@android.com>
1169 M:      Todd Kjos <tkjos@android.com>
1170 M:      Martijn Coenen <maco@android.com>
1171 M:      Joel Fernandes <joel@joelfernandes.org>
1172 M:      Christian Brauner <christian@brauner.io>
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:      Miodrag Dinic <miodrag.dinic@mips.com>
1187 S:      Supported
1188 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1189 F:      drivers/rtc/rtc-goldfish.c
1190
1191 ANDROID ION DRIVER
1192 M:      Laura Abbott <labbott@redhat.com>
1193 M:      Sumit Semwal <sumit.semwal@linaro.org>
1194 L:      devel@driverdev.osuosl.org
1195 L:      dri-devel@lists.freedesktop.org
1196 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
1197 S:      Supported
1198 F:      drivers/staging/android/ion
1199 F:      drivers/staging/android/uapi/ion.h
1200
1201 AOA (Apple Onboard Audio) ALSA DRIVER
1202 M:      Johannes Berg <johannes@sipsolutions.net>
1203 L:      linuxppc-dev@lists.ozlabs.org
1204 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1205 S:      Maintained
1206 F:      sound/aoa/
1207
1208 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1209 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1210 L:      linux-iio@vger.kernel.org
1211 S:      Maintained
1212 F:      drivers/iio/adc/stx104.c
1213
1214 APM DRIVER
1215 M:      Jiri Kosina <jikos@kernel.org>
1216 S:      Odd fixes
1217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1218 F:      arch/x86/kernel/apm_32.c
1219 F:      drivers/char/apm-emulation.c
1220 F:      include/linux/apm_bios.h
1221 F:      include/uapi/linux/apm_bios.h
1222
1223 APPARMOR SECURITY MODULE
1224 M:      John Johansen <john.johansen@canonical.com>
1225 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1226 S:      Supported
1227 W:      wiki.apparmor.net
1228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1229 F:      Documentation/admin-guide/LSM/apparmor.rst
1230 F:      security/apparmor/
1231
1232 APPLE BCM5974 MULTITOUCH DRIVER
1233 M:      Henrik Rydberg <rydberg@bitmath.org>
1234 L:      linux-input@vger.kernel.org
1235 S:      Odd fixes
1236 F:      drivers/input/mouse/bcm5974.c
1237
1238 APPLE SMC DRIVER
1239 M:      Henrik Rydberg <rydberg@bitmath.org>
1240 L:      linux-hwmon@vger.kernel.org
1241 S:      Odd fixes
1242 F:      drivers/hwmon/applesmc.c
1243
1244 APPLETALK NETWORK LAYER
1245 L:      netdev@vger.kernel.org
1246 S:      Odd fixes
1247 F:      drivers/net/appletalk/
1248 F:      include/linux/atalk.h
1249 F:      include/uapi/linux/atalk.h
1250 F:      net/appletalk/
1251
1252 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1253 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1254 S:      Supported
1255 F:      arch/arm64/boot/dts/apm/
1256
1257 APPLIED MICRO (APM) X-GENE SOC EDAC
1258 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1259 S:      Supported
1260 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1261 F:      drivers/edac/xgene_edac.c
1262
1263 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1264 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1265 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1266 S:      Supported
1267 F:      drivers/net/ethernet/apm/xgene-v2/
1268
1269 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1270 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1271 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1272 M:      Quan Nguyen <quan@os.amperecomputing.com>
1273 S:      Supported
1274 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1275 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1276 F:      drivers/net/ethernet/apm/xgene/
1277 F:      drivers/net/phy/mdio-xgene.c
1278
1279 APPLIED MICRO (APM) X-GENE SOC PMU
1280 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1281 S:      Supported
1282 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1283 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1284 F:      drivers/perf/xgene_pmu.c
1285
1286 APTINA CAMERA SENSOR PLL
1287 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1288 L:      linux-media@vger.kernel.org
1289 S:      Maintained
1290 F:      drivers/media/i2c/aptina-pll.*
1291
1292 AQUANTIA ETHERNET DRIVER (atlantic)
1293 M:      Igor Russkikh <irusskikh@marvell.com>
1294 L:      netdev@vger.kernel.org
1295 S:      Supported
1296 W:      https://www.marvell.com/
1297 Q:      http://patchwork.ozlabs.org/project/netdev/list/
1298 F:      Documentation/networking/device_drivers/aquantia/atlantic.rst
1299 F:      drivers/net/ethernet/aquantia/atlantic/
1300
1301 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1302 M:      Egor Pomozov <epomozov@marvell.com>
1303 L:      netdev@vger.kernel.org
1304 S:      Supported
1305 W:      http://www.aquantia.com
1306 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1307
1308 ARASAN NAND CONTROLLER DRIVER
1309 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1310 L:      linux-mtd@lists.infradead.org
1311 S:      Maintained
1312 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1313 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1314
1315 ARC FRAMEBUFFER DRIVER
1316 M:      Jaya Kumar <jayalk@intworks.biz>
1317 S:      Maintained
1318 F:      drivers/video/fbdev/arcfb.c
1319 F:      drivers/video/fbdev/core/fb_defio.c
1320
1321 ARC PGU DRM DRIVER
1322 M:      Alexey Brodkin <abrodkin@synopsys.com>
1323 S:      Supported
1324 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1325 F:      drivers/gpu/drm/arc/
1326
1327 ARCNET NETWORK LAYER
1328 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1329 L:      netdev@vger.kernel.org
1330 S:      Maintained
1331 F:      drivers/net/arcnet/
1332 F:      include/uapi/linux/if_arcnet.h
1333
1334 ARM ARCHITECTED TIMER DRIVER
1335 M:      Mark Rutland <mark.rutland@arm.com>
1336 M:      Marc Zyngier <maz@kernel.org>
1337 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1338 S:      Maintained
1339 F:      arch/arm/include/asm/arch_timer.h
1340 F:      arch/arm64/include/asm/arch_timer.h
1341 F:      drivers/clocksource/arm_arch_timer.c
1342
1343 ARM HDLCD DRM DRIVER
1344 M:      Liviu Dudau <liviu.dudau@arm.com>
1345 S:      Supported
1346 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1347 F:      drivers/gpu/drm/arm/hdlcd_*
1348
1349 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1350 M:      Linus Walleij <linus.walleij@linaro.org>
1351 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1352 S:      Maintained
1353 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1354 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1355 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1356 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1357 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1358 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1359 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1360 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1361 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1362 F:      arch/arm/boot/dts/arm-realview-*
1363 F:      arch/arm/boot/dts/integrator*
1364 F:      arch/arm/boot/dts/versatile*
1365 F:      arch/arm/mach-integrator/
1366 F:      arch/arm/mach-realview/
1367 F:      arch/arm/mach-versatile/
1368 F:      arch/arm/plat-versatile/
1369 F:      drivers/bus/arm-integrator-lm.c
1370 F:      drivers/clk/versatile/
1371 F:      drivers/i2c/busses/i2c-versatile.c
1372 F:      drivers/irqchip/irq-versatile-fpga.c
1373 F:      drivers/mtd/maps/physmap-versatile.*
1374 F:      drivers/power/reset/arm-versatile-reboot.c
1375 F:      drivers/soc/versatile/
1376
1377 ARM KOMEDA DRM-KMS DRIVER
1378 M:      James (Qian) Wang <james.qian.wang@arm.com>
1379 M:      Liviu Dudau <liviu.dudau@arm.com>
1380 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1381 L:      Mali DP Maintainers <malidp@foss.arm.com>
1382 S:      Supported
1383 T:      git git://anongit.freedesktop.org/drm/drm-misc
1384 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1385 F:      Documentation/gpu/komeda-kms.rst
1386 F:      drivers/gpu/drm/arm/display/include/
1387 F:      drivers/gpu/drm/arm/display/komeda/
1388
1389 ARM MALI PANFROST DRM DRIVER
1390 M:      Rob Herring <robh@kernel.org>
1391 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1392 R:      Steven Price <steven.price@arm.com>
1393 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1394 L:      dri-devel@lists.freedesktop.org
1395 S:      Supported
1396 T:      git git://anongit.freedesktop.org/drm/drm-misc
1397 F:      drivers/gpu/drm/panfrost/
1398 F:      include/uapi/drm/panfrost_drm.h
1399
1400 ARM MALI-DP DRM DRIVER
1401 M:      Liviu Dudau <liviu.dudau@arm.com>
1402 M:      Brian Starkey <brian.starkey@arm.com>
1403 L:      Mali DP Maintainers <malidp@foss.arm.com>
1404 S:      Supported
1405 T:      git git://anongit.freedesktop.org/drm/drm-misc
1406 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1407 F:      Documentation/gpu/afbc.rst
1408 F:      drivers/gpu/drm/arm/
1409
1410 ARM MFM AND FLOPPY DRIVERS
1411 M:      Ian Molton <spyro@f2s.com>
1412 S:      Maintained
1413 F:      arch/arm/include/asm/floppy.h
1414 F:      arch/arm/mach-rpc/floppydma.S
1415
1416 ARM PMU PROFILING AND DEBUGGING
1417 M:      Will Deacon <will@kernel.org>
1418 M:      Mark Rutland <mark.rutland@arm.com>
1419 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1420 S:      Maintained
1421 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1422 F:      Documentation/devicetree/bindings/perf/
1423 F:      arch/arm*/include/asm/hw_breakpoint.h
1424 F:      arch/arm*/include/asm/perf_event.h
1425 F:      arch/arm*/kernel/hw_breakpoint.c
1426 F:      arch/arm*/kernel/perf_*
1427 F:      arch/arm/oprofile/common.c
1428 F:      drivers/perf/*
1429 F:      include/linux/perf/arm_pmu.h
1430
1431 ARM PORT
1432 M:      Russell King <linux@armlinux.org.uk>
1433 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1434 S:      Odd Fixes
1435 W:      http://www.armlinux.org.uk/
1436 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1437 F:      arch/arm/
1438 X:      arch/arm/boot/dts/
1439
1440 ARM PRIMECELL AACI PL041 DRIVER
1441 M:      Russell King <linux@armlinux.org.uk>
1442 S:      Odd Fixes
1443 F:      sound/arm/aaci.*
1444
1445 ARM PRIMECELL BUS SUPPORT
1446 M:      Russell King <linux@armlinux.org.uk>
1447 S:      Odd Fixes
1448 F:      drivers/amba/
1449 F:      include/linux/amba/bus.h
1450
1451 ARM PRIMECELL KMI PL050 DRIVER
1452 M:      Russell King <linux@armlinux.org.uk>
1453 S:      Odd Fixes
1454 F:      drivers/input/serio/ambakmi.*
1455 F:      include/linux/amba/kmi.h
1456
1457 ARM PRIMECELL MMCI PL180/1 DRIVER
1458 M:      Russell King <linux@armlinux.org.uk>
1459 S:      Odd Fixes
1460 F:      drivers/mmc/host/mmci.*
1461 F:      include/linux/amba/mmci.h
1462
1463 ARM PRIMECELL SSP PL022 SPI DRIVER
1464 M:      Linus Walleij <linus.walleij@linaro.org>
1465 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1466 S:      Maintained
1467 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1468 F:      drivers/spi/spi-pl022.c
1469
1470 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1471 M:      Russell King <linux@armlinux.org.uk>
1472 S:      Odd Fixes
1473 F:      drivers/tty/serial/amba-pl01*.c
1474 F:      include/linux/amba/serial.h
1475
1476 ARM PRIMECELL VIC PL190/PL192 DRIVER
1477 M:      Linus Walleij <linus.walleij@linaro.org>
1478 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1479 S:      Maintained
1480 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1481 F:      drivers/irqchip/irq-vic.c
1482
1483 ARM SMC WATCHDOG DRIVER
1484 M:      Julius Werner <jwerner@chromium.org>
1485 R:      Evan Benn <evanbenn@chromium.org>
1486 S:      Maintained
1487 F:      devicetree/bindings/watchdog/arm-smc-wdt.yaml
1488 F:      drivers/watchdog/arm_smc_wdt.c
1489
1490 ARM SMMU DRIVERS
1491 M:      Will Deacon <will@kernel.org>
1492 R:      Robin Murphy <robin.murphy@arm.com>
1493 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1494 S:      Maintained
1495 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1496 F:      drivers/iommu/arm-smmu*
1497 F:      drivers/iommu/io-pgtable-arm-v7s.c
1498 F:      drivers/iommu/io-pgtable-arm.c
1499
1500 ARM SUB-ARCHITECTURES
1501 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1502 S:      Maintained
1503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1504 F:      arch/arm/mach-*/
1505 F:      arch/arm/plat-*/
1506
1507 ARM/ACTIONS SEMI ARCHITECTURE
1508 M:      Andreas Färber <afaerber@suse.de>
1509 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1510 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1511 S:      Maintained
1512 F:      Documentation/devicetree/bindings/arm/actions.yaml
1513 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1514 F:      Documentation/devicetree/bindings/dma/owl-dma.txt
1515 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1516 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1517 F:      Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1518 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1519 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1520 F:      arch/arm/boot/dts/owl-*
1521 F:      arch/arm/mach-actions/
1522 F:      arch/arm64/boot/dts/actions/
1523 F:      drivers/clk/actions/
1524 F:      drivers/clocksource/timer-owl*
1525 F:      drivers/dma/owl-dma.c
1526 F:      drivers/i2c/busses/i2c-owl.c
1527 F:      drivers/mmc/host/owl-mmc.c
1528 F:      drivers/pinctrl/actions/*
1529 F:      drivers/soc/actions/
1530 F:      include/dt-bindings/power/owl-*
1531 F:      include/linux/soc/actions/
1532 N:      owl
1533
1534 ARM/ADS SPHERE MACHINE SUPPORT
1535 M:      Lennert Buytenhek <kernel@wantstofly.org>
1536 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1537 S:      Maintained
1538
1539 ARM/AFEB9260 MACHINE SUPPORT
1540 M:      Sergey Lapin <slapin@ossfans.org>
1541 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1542 S:      Maintained
1543
1544 ARM/AJECO 1ARM MACHINE SUPPORT
1545 M:      Lennert Buytenhek <kernel@wantstofly.org>
1546 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1547 S:      Maintained
1548
1549 ARM/Allwinner SoC Clock Support
1550 M:      Emilio López <emilio@elopez.com.ar>
1551 S:      Maintained
1552 F:      drivers/clk/sunxi/
1553
1554 ARM/Allwinner sunXi SoC support
1555 M:      Maxime Ripard <mripard@kernel.org>
1556 M:      Chen-Yu Tsai <wens@csie.org>
1557 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1558 S:      Maintained
1559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1560 F:      arch/arm/mach-sunxi/
1561 F:      arch/arm64/boot/dts/allwinner/
1562 F:      drivers/clk/sunxi-ng/
1563 F:      drivers/pinctrl/sunxi/
1564 F:      drivers/soc/sunxi/
1565 N:      sun[x456789]i
1566 N:      sun50i
1567
1568 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1569 M:      Neil Armstrong <narmstrong@baylibre.com>
1570 M:      Jerome Brunet <jbrunet@baylibre.com>
1571 L:      linux-amlogic@lists.infradead.org
1572 S:      Maintained
1573 F:      Documentation/devicetree/bindings/clock/amlogic*
1574 F:      drivers/clk/meson/
1575 F:      include/dt-bindings/clock/gxbb*
1576 F:      include/dt-bindings/clock/meson*
1577
1578 ARM/Amlogic Meson SoC Crypto Drivers
1579 M:      Corentin Labbe <clabbe@baylibre.com>
1580 L:      linux-crypto@vger.kernel.org
1581 L:      linux-amlogic@lists.infradead.org
1582 S:      Maintained
1583 F:      Documentation/devicetree/bindings/crypto/amlogic*
1584 F:      drivers/crypto/amlogic/
1585
1586 ARM/Amlogic Meson SoC Sound Drivers
1587 M:      Jerome Brunet <jbrunet@baylibre.com>
1588 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1589 S:      Maintained
1590 F:      Documentation/devicetree/bindings/sound/amlogic*
1591 F:      sound/soc/meson/
1592
1593 ARM/Amlogic Meson SoC support
1594 M:      Kevin Hilman <khilman@baylibre.com>
1595 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1596 L:      linux-amlogic@lists.infradead.org
1597 S:      Maintained
1598 W:      http://linux-meson.com/
1599 F:      arch/arm/boot/dts/meson*
1600 F:      arch/arm/mach-meson/
1601 F:      arch/arm64/boot/dts/amlogic/
1602 F:      drivers/mmc/host/meson*
1603 F:      drivers/pinctrl/meson/
1604 F:      drivers/rtc/rtc-meson*
1605 F:      drivers/soc/amlogic/
1606 N:      meson
1607
1608 ARM/Annapurna Labs ALPINE ARCHITECTURE
1609 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1610 M:      Antoine Tenart <antoine.tenart@bootlin.com>
1611 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1612 S:      Maintained
1613 F:      arch/arm/boot/dts/alpine*
1614 F:      arch/arm/mach-alpine/
1615 F:      arch/arm64/boot/dts/al/
1616 F:      drivers/*/*alpine*
1617
1618 ARM/ARTPEC MACHINE SUPPORT
1619 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1620 M:      Lars Persson <lars.persson@axis.com>
1621 L:      linux-arm-kernel@axis.com
1622 S:      Maintained
1623 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1624 F:      arch/arm/boot/dts/artpec6*
1625 F:      arch/arm/mach-artpec
1626 F:      drivers/clk/axis
1627 F:      drivers/crypto/axis
1628 F:      drivers/mmc/host/usdhi6rol0.c
1629 F:      drivers/pinctrl/pinctrl-artpec*
1630
1631 ARM/ASPEED I2C DRIVER
1632 M:      Brendan Higgins <brendanhiggins@google.com>
1633 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1634 R:      Joel Stanley <joel@jms.id.au>
1635 L:      linux-i2c@vger.kernel.org
1636 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1637 S:      Maintained
1638 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1639 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1640 F:      drivers/i2c/busses/i2c-aspeed.c
1641 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1642
1643 ARM/ASPEED MACHINE SUPPORT
1644 M:      Joel Stanley <joel@jms.id.au>
1645 R:      Andrew Jeffery <andrew@aj.id.au>
1646 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1647 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1648 S:      Supported
1649 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1651 F:      arch/arm/boot/dts/aspeed-*
1652 F:      arch/arm/mach-aspeed/
1653 N:      aspeed
1654
1655 ARM/BITMAIN ARCHITECTURE
1656 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1657 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1658 S:      Maintained
1659 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1660 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1661 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1662 F:      arch/arm64/boot/dts/bitmain/
1663 F:      drivers/clk/clk-bm1880.c
1664 F:      drivers/pinctrl/pinctrl-bm1880.c
1665
1666 ARM/CALXEDA HIGHBANK ARCHITECTURE
1667 M:      Andre Przywara <andre.przywara@arm.com>
1668 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1669 S:      Maintained
1670 F:      arch/arm/boot/dts/ecx-*.dts*
1671 F:      arch/arm/boot/dts/highbank.dts
1672 F:      arch/arm/mach-highbank/
1673
1674 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1675 M:      Krzysztof Halasa <khalasa@piap.pl>
1676 S:      Maintained
1677 F:      arch/arm/mach-cns3xxx/
1678
1679 ARM/CAVIUM THUNDER NETWORK DRIVER
1680 M:      Sunil Goutham <sgoutham@marvell.com>
1681 M:      Robert Richter <rrichter@marvell.com>
1682 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1683 S:      Supported
1684 F:      drivers/net/ethernet/cavium/thunder/
1685
1686 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1687 M:      Lukasz Majewski <lukma@denx.de>
1688 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1689 S:      Maintained
1690 F:      arch/arm/mach-ep93xx/ts72xx.c
1691
1692 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1693 M:      Alexander Shiyan <shc_work@mail.ru>
1694 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1695 S:      Odd Fixes
1696 N:      clps711x
1697
1698 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1699 M:      Lennert Buytenhek <kernel@wantstofly.org>
1700 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1701 S:      Maintained
1702
1703 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1704 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1705 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1706 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1707 S:      Maintained
1708 F:      arch/arm/mach-ep93xx/
1709 F:      arch/arm/mach-ep93xx/include/mach/
1710
1711 ARM/CLKDEV SUPPORT
1712 M:      Russell King <linux@armlinux.org.uk>
1713 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1714 S:      Maintained
1715 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1716 F:      drivers/clk/clkdev.c
1717
1718 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1719 M:      Baruch Siach <baruch@tkos.co.il>
1720 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1721 S:      Maintained
1722 F:      arch/arm/boot/dts/cx92755*
1723 N:      digicolor
1724
1725 ARM/CONTEC MICRO9 MACHINE SUPPORT
1726 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1727 S:      Maintained
1728 F:      arch/arm/mach-ep93xx/micro9.c
1729
1730 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1731 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1732 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
1733 R:      Mike Leach <mike.leach@linaro.org>
1734 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1735 S:      Maintained
1736 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1737 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1738 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1739 F:      Documentation/devicetree/bindings/arm/coresight.txt
1740 F:      Documentation/trace/coresight/*
1741 F:      drivers/hwtracing/coresight/*
1742 F:      include/dt-bindings/arm/coresight-cti-dt.h
1743 F:      tools/perf/arch/arm/util/auxtrace.c
1744 F:      tools/perf/arch/arm/util/cs-etm.c
1745 F:      tools/perf/arch/arm/util/cs-etm.h
1746 F:      tools/perf/arch/arm/util/pmu.c
1747 F:      tools/perf/util/cs-etm-decoder/*
1748 F:      tools/perf/util/cs-etm.*
1749
1750 ARM/CORGI MACHINE SUPPORT
1751 M:      Richard Purdie <rpurdie@rpsys.net>
1752 S:      Maintained
1753
1754 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1755 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1756 M:      Linus Walleij <linus.walleij@linaro.org>
1757 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1758 S:      Maintained
1759 T:      git git://github.com/ulli-kroll/linux.git
1760 F:      Documentation/devicetree/bindings/arm/gemini.txt
1761 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1762 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1763 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1764 F:      arch/arm/mach-gemini/
1765 F:      drivers/net/ethernet/cortina/
1766 F:      drivers/pinctrl/pinctrl-gemini.c
1767 F:      drivers/rtc/rtc-ftrtc010.c
1768
1769 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1770 M:      Barry Song <baohua@kernel.org>
1771 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1772 S:      Maintained
1773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1774 F:      arch/arm/boot/dts/prima2*
1775 F:      arch/arm/mach-prima2/
1776 F:      drivers/clk/sirf/
1777 F:      drivers/clocksource/timer-atlas7.c
1778 F:      drivers/clocksource/timer-prima2.c
1779 X:      drivers/gnss
1780 N:      [^a-z]sirf
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/EBSA110 MACHINE SUPPORT
1798 M:      Russell King <linux@armlinux.org.uk>
1799 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1800 S:      Maintained
1801 W:      http://www.armlinux.org.uk/
1802 F:      arch/arm/mach-ebsa110/
1803 F:      drivers/net/ethernet/amd/am79c961a.*
1804
1805 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1806 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1807 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1808 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1809 S:      Maintained
1810 N:      efm32
1811
1812 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1813 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1814 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1815 S:      Maintained
1816 F:      arch/arm/mach-pxa/ezx.c
1817
1818 ARM/FARADAY FA526 PORT
1819 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1820 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1821 S:      Maintained
1822 T:      git git://git.berlios.de/gemini-board
1823 F:      arch/arm/mm/*-fa*
1824
1825 ARM/FOOTBRIDGE ARCHITECTURE
1826 M:      Russell King <linux@armlinux.org.uk>
1827 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1828 S:      Maintained
1829 W:      http://www.armlinux.org.uk/
1830 F:      arch/arm/include/asm/hardware/dec21285.h
1831 F:      arch/arm/mach-footbridge/
1832
1833 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1834 M:      Shawn Guo <shawnguo@kernel.org>
1835 M:      Sascha Hauer <s.hauer@pengutronix.de>
1836 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1837 R:      Fabio Estevam <festevam@gmail.com>
1838 R:      NXP Linux Team <linux-imx@nxp.com>
1839 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1840 S:      Maintained
1841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1842 X:      drivers/media/i2c/
1843 N:      imx
1844 N:      mxs
1845
1846 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1847 M:      Shawn Guo <shawnguo@kernel.org>
1848 M:      Li Yang <leoyang.li@nxp.com>
1849 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1850 S:      Maintained
1851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1852 F:      arch/arm/boot/dts/ls1021a*
1853 F:      arch/arm64/boot/dts/freescale/fsl-*
1854 F:      arch/arm64/boot/dts/freescale/qoriq-*
1855
1856 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1857 M:      Shawn Guo <shawnguo@kernel.org>
1858 M:      Sascha Hauer <s.hauer@pengutronix.de>
1859 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1860 R:      Stefan Agner <stefan@agner.ch>
1861 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1862 S:      Maintained
1863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1864 F:      arch/arm/boot/dts/vf*
1865 F:      arch/arm/mach-imx/*vf610*
1866
1867 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1868 M:      Lennert Buytenhek <kernel@wantstofly.org>
1869 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1870 S:      Maintained
1871
1872 ARM/GUMSTIX MACHINE SUPPORT
1873 M:      Steve Sakoman <sakoman@gmail.com>
1874 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1875 S:      Maintained
1876
1877 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1878 M:      Philipp Zabel <philipp.zabel@gmail.com>
1879 M:      Paul Parsons <lost.distance@yahoo.com>
1880 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1881 S:      Maintained
1882 F:      arch/arm/mach-pxa/hx4700.c
1883 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1884 F:      sound/soc/pxa/hx4700.c
1885
1886 ARM/HISILICON SOC SUPPORT
1887 M:      Wei Xu <xuwei5@hisilicon.com>
1888 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1889 S:      Supported
1890 W:      http://www.hisilicon.com
1891 T:      git git://github.com/hisilicon/linux-hisi.git
1892 F:      arch/arm/boot/dts/hi3*
1893 F:      arch/arm/boot/dts/hip*
1894 F:      arch/arm/boot/dts/hisi*
1895 F:      arch/arm/mach-hisi/
1896 F:      arch/arm64/boot/dts/hisilicon/
1897
1898 ARM/HP JORNADA 7XX MACHINE SUPPORT
1899 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1900 S:      Maintained
1901 W:      www.jlime.com
1902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1903 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1904 F:      arch/arm/mach-sa1100/jornada720.c
1905
1906 ARM/IGEP MACHINE SUPPORT
1907 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1908 M:      Javier Martinez Canillas <javier@dowhile0.org>
1909 L:      linux-omap@vger.kernel.org
1910 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1911 S:      Maintained
1912 F:      arch/arm/boot/dts/omap3-igep*
1913
1914 ARM/INCOME PXA270 SUPPORT
1915 M:      Marek Vasut <marek.vasut@gmail.com>
1916 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1917 S:      Maintained
1918 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1919
1920 ARM/INTEL IOP32X ARM ARCHITECTURE
1921 M:      Lennert Buytenhek <kernel@wantstofly.org>
1922 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1923 S:      Maintained
1924
1925 ARM/INTEL IQ81342EX MACHINE SUPPORT
1926 M:      Lennert Buytenhek <kernel@wantstofly.org>
1927 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1928 S:      Maintained
1929
1930 ARM/INTEL IXDP2850 MACHINE SUPPORT
1931 M:      Lennert Buytenhek <kernel@wantstofly.org>
1932 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1933 S:      Maintained
1934
1935 ARM/INTEL IXP4XX ARM ARCHITECTURE
1936 M:      Linus Walleij <linusw@kernel.org>
1937 M:      Imre Kaloz <kaloz@openwrt.org>
1938 M:      Krzysztof Halasa <khalasa@piap.pl>
1939 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1940 S:      Maintained
1941 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1942 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1943 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1944 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1945 F:      arch/arm/mach-ixp4xx/
1946 F:      drivers/clocksource/timer-ixp4xx.c
1947 F:      drivers/gpio/gpio-ixp4xx.c
1948 F:      drivers/irqchip/irq-ixp4xx.c
1949 F:      include/linux/irqchip/irq-ixp4xx.h
1950 F:      include/linux/platform_data/timer-ixp4xx.h
1951
1952 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1953 M:      Jonathan Cameron <jic23@cam.ac.uk>
1954 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1955 S:      Maintained
1956 F:      arch/arm/mach-pxa/stargate2.c
1957 F:      drivers/pcmcia/pxa2xx_stargate2.c
1958
1959 ARM/INTEL XSC3 (MANZANO) ARM CORE
1960 M:      Lennert Buytenhek <kernel@wantstofly.org>
1961 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1962 S:      Maintained
1963
1964 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1965 M:      Lennert Buytenhek <kernel@wantstofly.org>
1966 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1967 S:      Maintained
1968
1969 ARM/LG1K ARCHITECTURE
1970 M:      Chanho Min <chanho.min@lge.com>
1971 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1972 S:      Maintained
1973 F:      arch/arm64/boot/dts/lg/
1974
1975 ARM/LOGICPD PXA270 MACHINE SUPPORT
1976 M:      Lennert Buytenhek <kernel@wantstofly.org>
1977 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1978 S:      Maintained
1979
1980 ARM/LPC18XX ARCHITECTURE
1981 M:      Vladimir Zapolskiy <vz@mleia.com>
1982 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1983 S:      Maintained
1984 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1985 F:      arch/arm/boot/dts/lpc43*
1986 F:      drivers/i2c/busses/i2c-lpc2k.c
1987 F:      drivers/memory/pl172.c
1988 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
1989 F:      drivers/rtc/rtc-lpc24xx.c
1990 N:      lpc18xx
1991
1992 ARM/LPC32XX SOC SUPPORT
1993 M:      Vladimir Zapolskiy <vz@mleia.com>
1994 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1995 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1996 S:      Maintained
1997 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1998 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
1999 F:      arch/arm/boot/dts/lpc32*
2000 F:      arch/arm/mach-lpc32xx/
2001 F:      drivers/i2c/busses/i2c-pnx.c
2002 F:      drivers/net/ethernet/nxp/lpc_eth.c
2003 F:      drivers/usb/host/ohci-nxp.c
2004 F:      drivers/watchdog/pnx4008_wdt.c
2005 N:      lpc32xx
2006
2007 ARM/MAGICIAN MACHINE SUPPORT
2008 M:      Philipp Zabel <philipp.zabel@gmail.com>
2009 S:      Maintained
2010
2011 ARM/Marvell Dove/MV78xx0/Orion SOC support
2012 M:      Jason Cooper <jason@lakedaemon.net>
2013 M:      Andrew Lunn <andrew@lunn.ch>
2014 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2015 M:      Gregory Clement <gregory.clement@bootlin.com>
2016 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2017 S:      Maintained
2018 T:      git git://git.infradead.org/linux-mvebu.git
2019 F:      Documentation/devicetree/bindings/soc/dove/
2020 F:      arch/arm/boot/dts/dove*
2021 F:      arch/arm/boot/dts/orion5x*
2022 F:      arch/arm/mach-dove/
2023 F:      arch/arm/mach-mv78xx0/
2024 F:      arch/arm/mach-orion5x/
2025 F:      arch/arm/plat-orion/
2026 F:      drivers/soc/dove/
2027
2028 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2029 M:      Jason Cooper <jason@lakedaemon.net>
2030 M:      Andrew Lunn <andrew@lunn.ch>
2031 M:      Gregory Clement <gregory.clement@bootlin.com>
2032 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2033 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2034 S:      Maintained
2035 T:      git git://git.infradead.org/linux-mvebu.git
2036 F:      arch/arm/boot/dts/armada*
2037 F:      arch/arm/boot/dts/kirkwood*
2038 F:      arch/arm/configs/mvebu_*_defconfig
2039 F:      arch/arm/mach-mvebu/
2040 F:      arch/arm64/boot/dts/marvell/armada*
2041 F:      arch/arm64/boot/dts/marvell/cn913*
2042 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2043 F:      drivers/cpufreq/armada-8k-cpufreq.c
2044 F:      drivers/cpufreq/mvebu-cpufreq.c
2045 F:      drivers/irqchip/irq-armada-370-xp.c
2046 F:      drivers/irqchip/irq-mvebu-*
2047 F:      drivers/pinctrl/mvebu/
2048 F:      drivers/rtc/rtc-armada38x.c
2049
2050 ARM/Mediatek RTC DRIVER
2051 M:      Eddie Huang <eddie.huang@mediatek.com>
2052 M:      Sean Wang <sean.wang@mediatek.com>
2053 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2054 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2055 S:      Maintained
2056 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2057 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2058 F:      drivers/rtc/rtc-mt2712.c
2059 F:      drivers/rtc/rtc-mt6397.c
2060 F:      drivers/rtc/rtc-mt7622.c
2061
2062 ARM/Mediatek SoC support
2063 M:      Matthias Brugger <matthias.bgg@gmail.com>
2064 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2065 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2066 S:      Maintained
2067 W:      https://mtk.bcnfs.org/
2068 C:      irc://chat.freenode.net/linux-mediatek
2069 F:      arch/arm/boot/dts/mt6*
2070 F:      arch/arm/boot/dts/mt7*
2071 F:      arch/arm/boot/dts/mt8*
2072 F:      arch/arm/mach-mediatek/
2073 F:      arch/arm64/boot/dts/mediatek/
2074 F:      drivers/soc/mediatek/
2075 N:      mtk
2076 N:      mt[678]
2077 K:      mediatek
2078
2079 ARM/Mediatek USB3 PHY DRIVER
2080 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2081 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2082 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2083 S:      Maintained
2084 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2085 F:      drivers/phy/mediatek/
2086
2087 ARM/Microchip (AT91) SoC support
2088 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2089 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2090 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2091 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2092 S:      Supported
2093 W:      http://www.linux4sam.org
2094 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2095 F:      arch/arm/boot/dts/at91*.dts
2096 F:      arch/arm/boot/dts/at91*.dtsi
2097 F:      arch/arm/boot/dts/sama*.dts
2098 F:      arch/arm/boot/dts/sama*.dtsi
2099 F:      arch/arm/include/debug/at91.S
2100 F:      arch/arm/mach-at91/
2101 F:      drivers/memory/atmel*
2102 F:      drivers/watchdog/sama5d4_wdt.c
2103 F:      include/soc/at91/
2104 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2105 X:      drivers/net/wireless/atmel/
2106 N:      at91
2107 N:      atmel
2108
2109 ARM/MIOA701 MACHINE SUPPORT
2110 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2111 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2112 S:      Maintained
2113 F:      arch/arm/mach-pxa/mioa701.c
2114
2115 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2116 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2117 S:      Maintained
2118
2119 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2120 M:      Linus Walleij <linus.walleij@linaro.org>
2121 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2122 S:      Maintained
2123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2124 F:      Documentation/devicetree/bindings/arm/ste-*
2125 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2126 F:      Documentation/devicetree/bindings/arm/ux500/
2127 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2128 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2129 F:      arch/arm/boot/dts/ste-*
2130 F:      arch/arm/mach-nomadik/
2131 F:      arch/arm/mach-u300/
2132 F:      arch/arm/mach-ux500/
2133 F:      drivers/clk/clk-nomadik.c
2134 F:      drivers/clk/clk-u300.c
2135 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2136 F:      drivers/clocksource/timer-u300.c
2137 F:      drivers/dma/coh901318*
2138 F:      drivers/dma/ste_dma40*
2139 F:      drivers/hwspinlock/u8500_hsem.c
2140 F:      drivers/i2c/busses/i2c-nomadik.c
2141 F:      drivers/i2c/busses/i2c-stu300.c
2142 F:      drivers/iio/adc/ab8500-gpadc.c
2143 F:      drivers/mfd/ab3100*
2144 F:      drivers/mfd/ab8500*
2145 F:      drivers/mfd/abx500*
2146 F:      drivers/mfd/db8500*
2147 F:      drivers/mfd/dbx500*
2148 F:      drivers/pinctrl/nomadik/
2149 F:      drivers/pinctrl/pinctrl-coh901*
2150 F:      drivers/pinctrl/pinctrl-u300.c
2151 F:      drivers/rtc/rtc-ab3100.c
2152 F:      drivers/rtc/rtc-ab8500.c
2153 F:      drivers/rtc/rtc-coh901331.c
2154 F:      drivers/rtc/rtc-pl031.c
2155 F:      drivers/soc/ux500/
2156 F:      drivers/watchdog/coh901327_wdt.c
2157
2158 ARM/NUVOTON NPCM ARCHITECTURE
2159 M:      Avi Fishman <avifishman70@gmail.com>
2160 M:      Tomer Maimon <tmaimon77@gmail.com>
2161 M:      Tali Perry <tali.perry1@gmail.com>
2162 R:      Patrick Venture <venture@google.com>
2163 R:      Nancy Yuen <yuenn@google.com>
2164 R:      Benjamin Fair <benjaminfair@google.com>
2165 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2166 S:      Supported
2167 F:      Documentation/devicetree/bindings/*/*/*npcm*
2168 F:      Documentation/devicetree/bindings/*/*npcm*
2169 F:      arch/arm/boot/dts/nuvoton-npcm*
2170 F:      arch/arm/mach-npcm/
2171 F:      drivers/*/*npcm*
2172 F:      drivers/*/*/*npcm*
2173 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2174
2175 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2176 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2177 S:      Orphan
2178 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2179 F:      arch/arm/mach-s3c24xx/gta02.h
2180 F:      arch/arm/mach-s3c24xx/mach-gta02.c
2181
2182 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2183 M:      Alexander Clouter <alex@digriz.org.uk>
2184 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2185 S:      Maintained
2186 W:      http://www.digriz.org.uk/ts78xx/kernel
2187 F:      arch/arm/mach-orion5x/ts78xx-*
2188
2189 ARM/OXNAS platform support
2190 M:      Neil Armstrong <narmstrong@baylibre.com>
2191 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2192 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2193 S:      Maintained
2194 F:      arch/arm/boot/dts/ox8*.dts*
2195 F:      arch/arm/mach-oxnas/
2196 F:      drivers/power/reset/oxnas-restart.c
2197 N:      oxnas
2198
2199 ARM/PALM TREO SUPPORT
2200 M:      Tomas Cech <sleep_walker@suse.com>
2201 L:      linux-arm-kernel@lists.infradead.org
2202 S:      Maintained
2203 W:      http://hackndev.com
2204 F:      arch/arm/mach-pxa/palmtreo.*
2205
2206 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2207 M:      Marek Vasut <marek.vasut@gmail.com>
2208 L:      linux-arm-kernel@lists.infradead.org
2209 S:      Maintained
2210 W:      http://hackndev.com
2211 F:      arch/arm/mach-pxa/include/mach/palmld.h
2212 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2213 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2214 F:      arch/arm/mach-pxa/palmld.c
2215 F:      arch/arm/mach-pxa/palmt5.*
2216 F:      arch/arm/mach-pxa/palmtc.c
2217 F:      arch/arm/mach-pxa/palmte2.*
2218 F:      arch/arm/mach-pxa/palmtx.c
2219
2220 ARM/PALMZ72 SUPPORT
2221 M:      Sergey Lapin <slapin@ossfans.org>
2222 L:      linux-arm-kernel@lists.infradead.org
2223 S:      Maintained
2224 W:      http://hackndev.com
2225 F:      arch/arm/mach-pxa/palmz72.*
2226
2227 ARM/PLEB SUPPORT
2228 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2229 S:      Maintained
2230 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2231
2232 ARM/PT DIGITAL BOARD PORT
2233 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2234 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2235 S:      Maintained
2236 W:      http://www.armlinux.org.uk/
2237
2238 ARM/QUALCOMM SUPPORT
2239 M:      Andy Gross <agross@kernel.org>
2240 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2241 L:      linux-arm-msm@vger.kernel.org
2242 S:      Maintained
2243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2244 F:      Documentation/devicetree/bindings/*/qcom*
2245 F:      Documentation/devicetree/bindings/soc/qcom/
2246 F:      arch/arm/boot/dts/qcom-*.dts
2247 F:      arch/arm/boot/dts/qcom-*.dtsi
2248 F:      arch/arm/mach-qcom/
2249 F:      arch/arm64/boot/dts/qcom/
2250 F:      drivers/*/*/qcom*
2251 F:      drivers/*/*/qcom/
2252 F:      drivers/*/pm8???-*
2253 F:      drivers/*/qcom*
2254 F:      drivers/*/qcom/
2255 F:      drivers/bluetooth/btqcomsmd.c
2256 F:      drivers/clocksource/timer-qcom.c
2257 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2258 F:      drivers/extcon/extcon-qcom*
2259 F:      drivers/i2c/busses/i2c-qcom-geni.c
2260 F:      drivers/i2c/busses/i2c-qup.c
2261 F:      drivers/iommu/msm*
2262 F:      drivers/mfd/ssbi.c
2263 F:      drivers/mmc/host/mmci_qcom*
2264 F:      drivers/mmc/host/sdhci-msm.c
2265 F:      drivers/pci/controller/dwc/pcie-qcom.c
2266 F:      drivers/phy/qualcomm/
2267 F:      drivers/power/*/msm*
2268 F:      drivers/reset/reset-qcom-*
2269 F:      drivers/scsi/ufs/ufs-qcom.*
2270 F:      drivers/spi/spi-geni-qcom.c
2271 F:      drivers/spi/spi-qcom-qspi.c
2272 F:      drivers/spi/spi-qup.c
2273 F:      drivers/tty/serial/msm_serial.c
2274 F:      drivers/usb/dwc3/dwc3-qcom.c
2275 F:      include/dt-bindings/*/qcom*
2276 F:      include/linux/*/qcom*
2277
2278 ARM/RADISYS ENP2611 MACHINE SUPPORT
2279 M:      Lennert Buytenhek <kernel@wantstofly.org>
2280 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2281 S:      Maintained
2282
2283 ARM/RDA MICRO ARCHITECTURE
2284 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2285 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2286 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2287 S:      Maintained
2288 F:      Documentation/devicetree/bindings/arm/rda.yaml
2289 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2290 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2291 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2292 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2293 F:      arch/arm/boot/dts/rda8810pl-*
2294 F:      drivers/clocksource/timer-rda.c
2295 F:      drivers/gpio/gpio-rda.c
2296 F:      drivers/irqchip/irq-rda-intc.c
2297 F:      drivers/tty/serial/rda-uart.c
2298
2299 ARM/REALTEK ARCHITECTURE
2300 M:      Andreas Färber <afaerber@suse.de>
2301 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2302 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2303 S:      Maintained
2304 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2305 F:      arch/arm/boot/dts/rtd*
2306 F:      arch/arm/mach-realtek/
2307 F:      arch/arm64/boot/dts/realtek/
2308
2309 ARM/RENESAS ARM64 ARCHITECTURE
2310 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2311 M:      Magnus Damm <magnus.damm@gmail.com>
2312 L:      linux-renesas-soc@vger.kernel.org
2313 S:      Supported
2314 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2316 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2317 F:      arch/arm64/boot/dts/renesas/
2318 F:      drivers/soc/renesas/
2319 F:      include/linux/soc/renesas/
2320
2321 ARM/RISCPC ARCHITECTURE
2322 M:      Russell King <linux@armlinux.org.uk>
2323 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2324 S:      Maintained
2325 W:      http://www.armlinux.org.uk/
2326 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2327 F:      arch/arm/include/asm/hardware/ioc.h
2328 F:      arch/arm/include/asm/hardware/iomd.h
2329 F:      arch/arm/include/asm/hardware/memc.h
2330 F:      arch/arm/mach-rpc/
2331 F:      drivers/net/ethernet/8390/etherh.c
2332 F:      drivers/net/ethernet/i825xx/ether1*
2333 F:      drivers/net/ethernet/seeq/ether3*
2334 F:      drivers/scsi/arm/
2335
2336 ARM/Rockchip SoC support
2337 M:      Heiko Stuebner <heiko@sntech.de>
2338 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2339 L:      linux-rockchip@lists.infradead.org
2340 S:      Maintained
2341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2342 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2343 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2344 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2345 F:      arch/arm/boot/dts/rk3*
2346 F:      arch/arm/boot/dts/rv1108*
2347 F:      arch/arm/mach-rockchip/
2348 F:      drivers/*/*/*rockchip*
2349 F:      drivers/*/*rockchip*
2350 F:      drivers/clk/rockchip/
2351 F:      drivers/i2c/busses/i2c-rk3x.c
2352 F:      sound/soc/rockchip/
2353 N:      rockchip
2354
2355 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2356 M:      Kukjin Kim <kgene@kernel.org>
2357 M:      Krzysztof Kozlowski <krzk@kernel.org>
2358 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2359 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2360 S:      Maintained
2361 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2362 F:      Documentation/arm/samsung/
2363 F:      Documentation/devicetree/bindings/arm/samsung/
2364 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2365 F:      arch/arm/boot/dts/exynos*
2366 F:      arch/arm/boot/dts/s3c*
2367 F:      arch/arm/boot/dts/s5p*
2368 F:      arch/arm/mach-exynos*/
2369 F:      arch/arm/mach-s3c24*/
2370 F:      arch/arm/mach-s3c64xx/
2371 F:      arch/arm/mach-s5p*/
2372 F:      arch/arm/plat-samsung/
2373 F:      arch/arm64/boot/dts/exynos/
2374 F:      drivers/*/*/*s3c24*
2375 F:      drivers/*/*s3c24*
2376 F:      drivers/*/*s3c64xx*
2377 F:      drivers/*/*s5pv210*
2378 F:      drivers/memory/samsung/
2379 F:      drivers/soc/samsung/
2380 F:      drivers/tty/serial/samsung*
2381 F:      include/linux/soc/samsung/
2382 N:      exynos
2383
2384 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2385 M:      Kyungmin Park <kyungmin.park@samsung.com>
2386 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2387 S:      Maintained
2388 F:      arch/arm/mach-s5pv210/
2389
2390 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2391 M:      Kyungmin Park <kyungmin.park@samsung.com>
2392 M:      Kamil Debski <kamil@wypas.org>
2393 M:      Andrzej Hajda <a.hajda@samsung.com>
2394 L:      linux-arm-kernel@lists.infradead.org
2395 L:      linux-media@vger.kernel.org
2396 S:      Maintained
2397 F:      drivers/media/platform/s5p-g2d/
2398
2399 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2400 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2401 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2402 L:      linux-media@vger.kernel.org
2403 S:      Maintained
2404 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2405 F:      drivers/media/platform/s5p-cec/
2406
2407 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2408 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2409 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2410 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2411 L:      linux-arm-kernel@lists.infradead.org
2412 L:      linux-media@vger.kernel.org
2413 S:      Maintained
2414 F:      drivers/media/platform/s5p-jpeg/
2415
2416 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2417 M:      Kyungmin Park <kyungmin.park@samsung.com>
2418 M:      Kamil Debski <kamil@wypas.org>
2419 M:      Jeongtae Park <jtp.park@samsung.com>
2420 M:      Andrzej Hajda <a.hajda@samsung.com>
2421 L:      linux-arm-kernel@lists.infradead.org
2422 L:      linux-media@vger.kernel.org
2423 S:      Maintained
2424 F:      drivers/media/platform/s5p-mfc/
2425
2426 ARM/SHMOBILE ARM ARCHITECTURE
2427 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2428 M:      Magnus Damm <magnus.damm@gmail.com>
2429 L:      linux-renesas-soc@vger.kernel.org
2430 S:      Supported
2431 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2433 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2434 F:      arch/arm/boot/dts/emev2*
2435 F:      arch/arm/boot/dts/gr-peach*
2436 F:      arch/arm/boot/dts/iwg20d-q7*
2437 F:      arch/arm/boot/dts/r7s*
2438 F:      arch/arm/boot/dts/r8a*
2439 F:      arch/arm/boot/dts/r9a*
2440 F:      arch/arm/boot/dts/sh*
2441 F:      arch/arm/configs/shmobile_defconfig
2442 F:      arch/arm/include/debug/renesas-scif.S
2443 F:      arch/arm/mach-shmobile/
2444 F:      drivers/soc/renesas/
2445 F:      include/linux/soc/renesas/
2446
2447 ARM/SOCFPGA ARCHITECTURE
2448 M:      Dinh Nguyen <dinguyen@kernel.org>
2449 S:      Maintained
2450 W:      http://www.rocketboards.org
2451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2452 F:      arch/arm/boot/dts/socfpga*
2453 F:      arch/arm/configs/socfpga_defconfig
2454 F:      arch/arm/mach-socfpga/
2455 F:      arch/arm64/boot/dts/altera/
2456 F:      arch/arm64/boot/dts/intel/
2457
2458 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2459 M:      Dinh Nguyen <dinguyen@kernel.org>
2460 S:      Maintained
2461 F:      drivers/clk/socfpga/
2462
2463 ARM/SOCFPGA EDAC SUPPORT
2464 M:      Thor Thayer <thor.thayer@linux.intel.com>
2465 S:      Maintained
2466 F:      drivers/edac/altera_edac.
2467
2468 ARM/SPREADTRUM SoC SUPPORT
2469 M:      Orson Zhai <orsonzhai@gmail.com>
2470 M:      Baolin Wang <baolin.wang7@gmail.com>
2471 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2472 S:      Maintained
2473 F:      arch/arm64/boot/dts/sprd
2474 N:      sprd
2475 N:      sc27xx
2476 N:      sc2731
2477
2478 ARM/STI ARCHITECTURE
2479 M:      Patrice Chotard <patrice.chotard@st.com>
2480 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2481 S:      Maintained
2482 W:      http://www.stlinux.com
2483 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2484 F:      arch/arm/boot/dts/sti*
2485 F:      arch/arm/mach-sti/
2486 F:      drivers/ata/ahci_st.c
2487 F:      drivers/char/hw_random/st-rng.c
2488 F:      drivers/clocksource/arm_global_timer.c
2489 F:      drivers/clocksource/clksrc_st_lpc.c
2490 F:      drivers/cpufreq/sti-cpufreq.c
2491 F:      drivers/dma/st_fdma*
2492 F:      drivers/i2c/busses/i2c-st.c
2493 F:      drivers/media/platform/sti/c8sectpfe/
2494 F:      drivers/media/rc/st_rc.c
2495 F:      drivers/mmc/host/sdhci-st.c
2496 F:      drivers/phy/st/phy-miphy28lp.c
2497 F:      drivers/phy/st/phy-stih407-usb.c
2498 F:      drivers/pinctrl/pinctrl-st.c
2499 F:      drivers/remoteproc/st_remoteproc.c
2500 F:      drivers/remoteproc/st_slim_rproc.c
2501 F:      drivers/reset/sti/
2502 F:      drivers/rtc/rtc-st-lpc.c
2503 F:      drivers/tty/serial/st-asc.c
2504 F:      drivers/usb/dwc3/dwc3-st.c
2505 F:      drivers/usb/host/ehci-st.c
2506 F:      drivers/usb/host/ohci-st.c
2507 F:      drivers/watchdog/st_lpc_wdt.c
2508 F:      include/linux/remoteproc/st_slim_rproc.h
2509
2510 ARM/STM32 ARCHITECTURE
2511 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2512 M:      Alexandre Torgue <alexandre.torgue@st.com>
2513 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2514 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2515 S:      Maintained
2516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2517 F:      arch/arm/boot/dts/stm32*
2518 F:      arch/arm/mach-stm32/
2519 F:      drivers/clocksource/armv7m_systick.c
2520 N:      stm32
2521 N:      stm
2522
2523 ARM/Synaptics SoC support
2524 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2525 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2526 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2527 S:      Maintained
2528 F:      arch/arm/boot/dts/berlin*
2529 F:      arch/arm/mach-berlin/
2530 F:      arch/arm64/boot/dts/synaptics/
2531
2532 ARM/TANGO ARCHITECTURE
2533 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2534 M:      Mans Rullgard <mans@mansr.com>
2535 L:      linux-arm-kernel@lists.infradead.org
2536 S:      Odd Fixes
2537 N:      tango
2538
2539 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2540 M:      Lennert Buytenhek <kernel@wantstofly.org>
2541 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2542 S:      Maintained
2543
2544 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2545 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2546 L:      linux-tegra@vger.kernel.org
2547 L:      linux-media@vger.kernel.org
2548 S:      Maintained
2549 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2550 F:      drivers/media/platform/tegra-cec/
2551
2552 ARM/TETON BGA MACHINE SUPPORT
2553 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2554 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2555 S:      Maintained
2556
2557 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2558 M:      Santosh Shilimkar <ssantosh@kernel.org>
2559 L:      linux-kernel@vger.kernel.org
2560 S:      Maintained
2561 F:      drivers/memory/*emif*
2562
2563 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2564 M:      Santosh Shilimkar <ssantosh@kernel.org>
2565 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2566 S:      Maintained
2567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2568 F:      arch/arm/boot/dts/keystone-*
2569 F:      arch/arm/mach-keystone/
2570
2571 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2572 M:      Santosh Shilimkar <ssantosh@kernel.org>
2573 L:      linux-kernel@vger.kernel.org
2574 S:      Maintained
2575 F:      drivers/clk/keystone/
2576
2577 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2578 M:      Santosh Shilimkar <ssantosh@kernel.org>
2579 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2580 L:      linux-kernel@vger.kernel.org
2581 S:      Maintained
2582 F:      drivers/clocksource/timer-keystone.c
2583
2584 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2585 M:      Santosh Shilimkar <ssantosh@kernel.org>
2586 L:      linux-kernel@vger.kernel.org
2587 S:      Maintained
2588 F:      drivers/power/reset/keystone-reset.c
2589
2590 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2591 M:      Tero Kristo <t-kristo@ti.com>
2592 M:      Nishanth Menon <nm@ti.com>
2593 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2594 S:      Supported
2595 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2596 F:      arch/arm64/boot/dts/ti/Makefile
2597 F:      arch/arm64/boot/dts/ti/k3-*
2598 F:      include/dt-bindings/pinctrl/k3.h
2599
2600 ARM/THECUS N2100 MACHINE SUPPORT
2601 M:      Lennert Buytenhek <kernel@wantstofly.org>
2602 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2603 S:      Maintained
2604
2605 ARM/TOSA MACHINE SUPPORT
2606 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2607 M:      Dirk Opfer <dirk@opfer-online.de>
2608 S:      Maintained
2609
2610 ARM/UNIPHIER ARCHITECTURE
2611 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
2612 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2613 S:      Maintained
2614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2615 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2616 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2617 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2618 F:      arch/arm/boot/dts/uniphier*
2619 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2620 F:      arch/arm/mach-uniphier/
2621 F:      arch/arm/mm/cache-uniphier.c
2622 F:      arch/arm64/boot/dts/socionext/uniphier*
2623 F:      drivers/bus/uniphier-system-bus.c
2624 F:      drivers/clk/uniphier/
2625 F:      drivers/dma/uniphier-mdmac.c
2626 F:      drivers/gpio/gpio-uniphier.c
2627 F:      drivers/i2c/busses/i2c-uniphier*
2628 F:      drivers/irqchip/irq-uniphier-aidet.c
2629 F:      drivers/mmc/host/uniphier-sd.c
2630 F:      drivers/pinctrl/uniphier/
2631 F:      drivers/reset/reset-uniphier.c
2632 F:      drivers/tty/serial/8250/8250_uniphier.c
2633 N:      uniphier
2634
2635 ARM/VERSATILE EXPRESS PLATFORM
2636 M:      Liviu Dudau <liviu.dudau@arm.com>
2637 M:      Sudeep Holla <sudeep.holla@arm.com>
2638 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2639 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2640 S:      Maintained
2641 F:      */*/*/vexpress*
2642 F:      */*/vexpress*
2643 F:      arch/arm/boot/dts/vexpress*
2644 F:      arch/arm/mach-vexpress/
2645 F:      arch/arm64/boot/dts/arm/
2646 F:      drivers/clk/versatile/clk-vexpress-osc.c
2647 F:      drivers/clocksource/timer-versatile.c
2648 N:      mps2
2649
2650 ARM/VFP SUPPORT
2651 M:      Russell King <linux@armlinux.org.uk>
2652 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2653 S:      Maintained
2654 W:      http://www.armlinux.org.uk/
2655 F:      arch/arm/vfp/
2656
2657 ARM/VOIPAC PXA270 SUPPORT
2658 M:      Marek Vasut <marek.vasut@gmail.com>
2659 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2660 S:      Maintained
2661 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2662 F:      arch/arm/mach-pxa/vpac270.c
2663
2664 ARM/VT8500 ARM ARCHITECTURE
2665 M:      Tony Prisk <linux@prisktech.co.nz>
2666 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2667 S:      Maintained
2668 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2669 F:      arch/arm/mach-vt8500/
2670 F:      drivers/clocksource/timer-vt8500.c
2671 F:      drivers/i2c/busses/i2c-wmt.c
2672 F:      drivers/mmc/host/wmt-sdmmc.c
2673 F:      drivers/pwm/pwm-vt8500.c
2674 F:      drivers/rtc/rtc-vt8500.c
2675 F:      drivers/tty/serial/vt8500_serial.c
2676 F:      drivers/usb/host/ehci-platform.c
2677 F:      drivers/usb/host/uhci-platform.c
2678 F:      drivers/video/fbdev/vt8500lcdfb.*
2679 F:      drivers/video/fbdev/wm8505fb*
2680 F:      drivers/video/fbdev/wmt_ge_rops.*
2681
2682 ARM/ZIPIT Z2 SUPPORT
2683 M:      Marek Vasut <marek.vasut@gmail.com>
2684 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2685 S:      Maintained
2686 F:      arch/arm/mach-pxa/include/mach/z2.h
2687 F:      arch/arm/mach-pxa/z2.c
2688
2689 ARM/ZTE ARCHITECTURE
2690 M:      Jun Nie <jun.nie@linaro.org>
2691 M:      Shawn Guo <shawnguo@kernel.org>
2692 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2693 S:      Maintained
2694 F:      Documentation/devicetree/bindings/arm/zte.yaml
2695 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2696 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2697 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2698 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2699 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2700 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2701 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2702 F:      Documentation/devicetree/bindings/soc/zte/
2703 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2704 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2705 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2706 F:      arch/arm/boot/dts/zx2967*
2707 F:      arch/arm/mach-zx/
2708 F:      arch/arm64/boot/dts/zte/
2709 F:      drivers/clk/zte/
2710 F:      drivers/dma/zx_dma.c
2711 F:      drivers/gpio/gpio-zx.c
2712 F:      drivers/i2c/busses/i2c-zx2967.c
2713 F:      drivers/mmc/host/dw_mmc-zx.*
2714 F:      drivers/pinctrl/zte/
2715 F:      drivers/soc/zte/
2716 F:      drivers/thermal/zx2967_thermal.c
2717 F:      drivers/watchdog/zx2967_wdt.c
2718 F:      include/dt-bindings/clock/zx2967*.h
2719 F:      include/dt-bindings/soc/zte,*.h
2720 F:      sound/soc/codecs/zx_aud96p22.c
2721 F:      sound/soc/zte/
2722
2723 ARM/ZYNQ ARCHITECTURE
2724 M:      Michal Simek <michal.simek@xilinx.com>
2725 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2726 S:      Supported
2727 W:      http://wiki.xilinx.com
2728 T:      git https://github.com/Xilinx/linux-xlnx.git
2729 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2730 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2731 F:      arch/arm/mach-zynq/
2732 F:      drivers/block/xsysace.c
2733 F:      drivers/clocksource/timer-cadence-ttc.c
2734 F:      drivers/cpuidle/cpuidle-zynq.c
2735 F:      drivers/edac/synopsys_edac.c
2736 F:      drivers/i2c/busses/i2c-cadence.c
2737 F:      drivers/i2c/busses/i2c-xiic.c
2738 F:      drivers/mmc/host/sdhci-of-arasan.c
2739 N:      zynq
2740 N:      xilinx
2741
2742 ARM64 PORT (AARCH64 ARCHITECTURE)
2743 M:      Catalin Marinas <catalin.marinas@arm.com>
2744 M:      Will Deacon <will@kernel.org>
2745 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2746 S:      Maintained
2747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2748 F:      Documentation/arm64/
2749 F:      arch/arm64/
2750 F:      tools/testing/selftests/arm64/
2751 X:      arch/arm64/boot/dts/
2752
2753 AS3645A LED FLASH CONTROLLER DRIVER
2754 M:      Sakari Ailus <sakari.ailus@iki.fi>
2755 L:      linux-leds@vger.kernel.org
2756 S:      Maintained
2757 F:      drivers/leds/leds-as3645a.c
2758
2759 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2760 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2761 L:      linux-media@vger.kernel.org
2762 S:      Maintained
2763 T:      git git://linuxtv.org/media_tree.git
2764 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2765 F:      drivers/media/i2c/ak7375.c
2766
2767 ASAHI KASEI AK8974 DRIVER
2768 M:      Linus Walleij <linus.walleij@linaro.org>
2769 L:      linux-iio@vger.kernel.org
2770 S:      Supported
2771 W:      http://www.akm.com/
2772 F:      drivers/iio/magnetometer/ak8974.c
2773
2774 ASC7621 HARDWARE MONITOR DRIVER
2775 M:      George Joseph <george.joseph@fairview5.com>
2776 L:      linux-hwmon@vger.kernel.org
2777 S:      Maintained
2778 F:      Documentation/hwmon/asc7621.rst
2779 F:      drivers/hwmon/asc7621.c
2780
2781 ASPEED PINCTRL DRIVERS
2782 M:      Andrew Jeffery <andrew@aj.id.au>
2783 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2784 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2785 L:      linux-gpio@vger.kernel.org
2786 S:      Maintained
2787 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2788 F:      drivers/pinctrl/aspeed/
2789
2790 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2791 M:      Eddie James <eajames@linux.ibm.com>
2792 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2793 S:      Maintained
2794 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2795 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2796 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2797
2798 ASPEED VIDEO ENGINE DRIVER
2799 M:      Eddie James <eajames@linux.ibm.com>
2800 L:      linux-media@vger.kernel.org
2801 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2802 S:      Maintained
2803 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2804 F:      drivers/media/platform/aspeed-video.c
2805
2806 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2807 M:      Corentin Chary <corentin.chary@gmail.com>
2808 L:      acpi4asus-user@lists.sourceforge.net
2809 L:      platform-driver-x86@vger.kernel.org
2810 S:      Maintained
2811 W:      http://acpi4asus.sf.net
2812 F:      drivers/platform/x86/asus*.c
2813 F:      drivers/platform/x86/eeepc*.c
2814
2815 ASUS WIRELESS RADIO CONTROL DRIVER
2816 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2817 L:      platform-driver-x86@vger.kernel.org
2818 S:      Maintained
2819 F:      drivers/platform/x86/asus-wireless.c
2820
2821 ASYMMETRIC KEYS
2822 M:      David Howells <dhowells@redhat.com>
2823 L:      keyrings@vger.kernel.org
2824 S:      Maintained
2825 F:      Documentation/crypto/asymmetric-keys.txt
2826 F:      crypto/asymmetric_keys/
2827 F:      include/crypto/pkcs7.h
2828 F:      include/crypto/public_key.h
2829 F:      include/linux/verification.h
2830
2831 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2832 R:      Dan Williams <dan.j.williams@intel.com>
2833 S:      Odd fixes
2834 W:      http://sourceforge.net/projects/xscaleiop
2835 F:      Documentation/crypto/async-tx-api.txt
2836 F:      crypto/async_tx/
2837 F:      drivers/dma/
2838 F:      include/linux/async_tx.h
2839 F:      include/linux/dmaengine.h
2840
2841 AT24 EEPROM DRIVER
2842 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2843 L:      linux-i2c@vger.kernel.org
2844 S:      Maintained
2845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2846 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2847 F:      drivers/misc/eeprom/at24.c
2848
2849 ATA OVER ETHERNET (AOE) DRIVER
2850 M:      "Justin Sanders" <justin@coraid.com>
2851 S:      Supported
2852 W:      http://www.openaoe.org/
2853 F:      Documentation/admin-guide/aoe/
2854 F:      drivers/block/aoe/
2855
2856 ATHEROS 71XX/9XXX GPIO DRIVER
2857 M:      Alban Bedel <albeu@free.fr>
2858 S:      Maintained
2859 W:      https://github.com/AlbanBedel/linux
2860 T:      git git://github.com/AlbanBedel/linux
2861 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2862 F:      drivers/gpio/gpio-ath79.c
2863
2864 ATHEROS 71XX/9XXX USB PHY DRIVER
2865 M:      Alban Bedel <albeu@free.fr>
2866 S:      Maintained
2867 W:      https://github.com/AlbanBedel/linux
2868 T:      git git://github.com/AlbanBedel/linux
2869 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2870 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2871
2872 ATHEROS ATH GENERIC UTILITIES
2873 M:      Kalle Valo <kvalo@codeaurora.org>
2874 L:      linux-wireless@vger.kernel.org
2875 S:      Supported
2876 F:      drivers/net/wireless/ath/*
2877
2878 ATHEROS ATH5K WIRELESS DRIVER
2879 M:      Jiri Slaby <jirislaby@gmail.com>
2880 M:      Nick Kossifidis <mickflemm@gmail.com>
2881 M:      Luis Chamberlain <mcgrof@kernel.org>
2882 L:      linux-wireless@vger.kernel.org
2883 S:      Maintained
2884 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2885 F:      drivers/net/wireless/ath/ath5k/
2886
2887 ATHEROS ATH6KL WIRELESS DRIVER
2888 M:      Kalle Valo <kvalo@codeaurora.org>
2889 L:      linux-wireless@vger.kernel.org
2890 S:      Supported
2891 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2893 F:      drivers/net/wireless/ath/ath6kl/
2894
2895 ATI_REMOTE2 DRIVER
2896 M:      Ville Syrjala <syrjala@sci.fi>
2897 S:      Maintained
2898 F:      drivers/input/misc/ati_remote2.c
2899
2900 ATK0110 HWMON DRIVER
2901 M:      Luca Tettamanti <kronos.it@gmail.com>
2902 L:      linux-hwmon@vger.kernel.org
2903 S:      Maintained
2904 F:      drivers/hwmon/asus_atk0110.c
2905
2906 ATLX ETHERNET DRIVERS
2907 M:      Jay Cliburn <jcliburn@gmail.com>
2908 M:      Chris Snook <chris.snook@gmail.com>
2909 L:      netdev@vger.kernel.org
2910 S:      Maintained
2911 W:      http://sourceforge.net/projects/atl1
2912 W:      http://atl1.sourceforge.net
2913 F:      drivers/net/ethernet/atheros/
2914
2915 ATM
2916 M:      Chas Williams <3chas3@gmail.com>
2917 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2918 L:      netdev@vger.kernel.org
2919 S:      Maintained
2920 W:      http://linux-atm.sourceforge.net
2921 F:      drivers/atm/
2922 F:      include/linux/atm*
2923 F:      include/uapi/linux/atm*
2924
2925 ATMEL MACB ETHERNET DRIVER
2926 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2927 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2928 S:      Supported
2929 F:      drivers/net/ethernet/cadence/
2930
2931 ATMEL MAXTOUCH DRIVER
2932 M:      Nick Dyer <nick@shmanahar.org>
2933 S:      Maintained
2934 T:      git git://github.com/ndyer/linux.git
2935 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2936 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2937
2938 ATMEL WIRELESS DRIVER
2939 M:      Simon Kelley <simon@thekelleys.org.uk>
2940 L:      linux-wireless@vger.kernel.org
2941 S:      Maintained
2942 W:      http://www.thekelleys.org.uk/atmel
2943 W:      http://atmelwlandriver.sourceforge.net/
2944 F:      drivers/net/wireless/atmel/atmel*
2945
2946 ATOMIC INFRASTRUCTURE
2947 M:      Will Deacon <will@kernel.org>
2948 M:      Peter Zijlstra <peterz@infradead.org>
2949 R:      Boqun Feng <boqun.feng@gmail.com>
2950 L:      linux-kernel@vger.kernel.org
2951 S:      Maintained
2952 F:      arch/*/include/asm/atomic*.h
2953 F:      include/*/atomic*.h
2954 F:      scripts/atomic/
2955
2956 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2957 M:      Bradley Grove <linuxdrivers@attotech.com>
2958 L:      linux-scsi@vger.kernel.org
2959 S:      Supported
2960 W:      http://www.attotech.com
2961 F:      drivers/scsi/esas2r
2962
2963 ATUSB IEEE 802.15.4 RADIO DRIVER
2964 M:      Stefan Schmidt <stefan@datenfreihafen.org>
2965 L:      linux-wpan@vger.kernel.org
2966 S:      Maintained
2967 F:      drivers/net/ieee802154/at86rf230.h
2968 F:      drivers/net/ieee802154/atusb.c
2969 F:      drivers/net/ieee802154/atusb.h
2970
2971 AUDIT SUBSYSTEM
2972 M:      Paul Moore <paul@paul-moore.com>
2973 M:      Eric Paris <eparis@redhat.com>
2974 L:      linux-audit@redhat.com (moderated for non-subscribers)
2975 S:      Supported
2976 W:      https://github.com/linux-audit
2977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2978 F:      include/linux/audit.h
2979 F:      include/uapi/linux/audit.h
2980 F:      kernel/audit*
2981
2982 AUXILIARY DISPLAY DRIVERS
2983 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2984 S:      Maintained
2985 F:      drivers/auxdisplay/
2986 F:      include/linux/cfag12864b.h
2987
2988 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2989 M:      Andreas Klinger <ak@it-klinger.de>
2990 L:      linux-iio@vger.kernel.org
2991 S:      Maintained
2992 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
2993 F:      drivers/iio/adc/hx711.c
2994
2995 AX.25 NETWORK LAYER
2996 M:      Ralf Baechle <ralf@linux-mips.org>
2997 L:      linux-hams@vger.kernel.org
2998 S:      Maintained
2999 W:      http://www.linux-ax25.org/
3000 F:      include/net/ax25.h
3001 F:      include/uapi/linux/ax25.h
3002 F:      net/ax25/
3003
3004 AXENTIA ARM DEVICES
3005 M:      Peter Rosin <peda@axentia.se>
3006 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3007 S:      Maintained
3008 F:      arch/arm/boot/dts/at91-linea.dtsi
3009 F:      arch/arm/boot/dts/at91-natte.dtsi
3010 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3011 F:      arch/arm/boot/dts/at91-tse850-3.dts
3012
3013 AXENTIA ASOC DRIVERS
3014 M:      Peter Rosin <peda@axentia.se>
3015 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3016 S:      Maintained
3017 F:      Documentation/devicetree/bindings/sound/axentia,*
3018 F:      sound/soc/atmel/tse850-pcm5142.c
3019
3020 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3021 M:      Nuno Sá <nuno.sa@analog.com>
3022 L:      linux-hwmon@vger.kernel.org
3023 S:      Supported
3024 W:      http://ez.analog.com/community/linux-device-drivers
3025 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3026 F:      drivers/hwmon/axi-fan-control.c
3027
3028 AXXIA I2C CONTROLLER
3029 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3030 L:      linux-i2c@vger.kernel.org
3031 S:      Maintained
3032 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3033 F:      drivers/i2c/busses/i2c-axxia.c
3034
3035 AZ6007 DVB DRIVER
3036 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3037 L:      linux-media@vger.kernel.org
3038 S:      Maintained
3039 W:      https://linuxtv.org
3040 T:      git git://linuxtv.org/media_tree.git
3041 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3042
3043 AZTECH FM RADIO RECEIVER DRIVER
3044 M:      Hans Verkuil <hverkuil@xs4all.nl>
3045 L:      linux-media@vger.kernel.org
3046 S:      Maintained
3047 W:      https://linuxtv.org
3048 T:      git git://linuxtv.org/media_tree.git
3049 F:      drivers/media/radio/radio-aztech*
3050
3051 B43 WIRELESS DRIVER
3052 L:      linux-wireless@vger.kernel.org
3053 L:      b43-dev@lists.infradead.org
3054 S:      Odd Fixes
3055 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3056 F:      drivers/net/wireless/broadcom/b43/
3057
3058 B43LEGACY WIRELESS DRIVER
3059 M:      Larry Finger <Larry.Finger@lwfinger.net>
3060 L:      linux-wireless@vger.kernel.org
3061 L:      b43-dev@lists.infradead.org
3062 S:      Maintained
3063 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3064 F:      drivers/net/wireless/broadcom/b43legacy/
3065
3066 BACKLIGHT CLASS/SUBSYSTEM
3067 M:      Lee Jones <lee.jones@linaro.org>
3068 M:      Daniel Thompson <daniel.thompson@linaro.org>
3069 M:      Jingoo Han <jingoohan1@gmail.com>
3070 L:      dri-devel@lists.freedesktop.org
3071 S:      Maintained
3072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3073 F:      Documentation/ABI/stable/sysfs-class-backlight
3074 F:      Documentation/ABI/testing/sysfs-class-backlight
3075 F:      Documentation/devicetree/bindings/leds/backlight
3076 F:      drivers/video/backlight/
3077 F:      include/linux/backlight.h
3078 F:      include/linux/pwm_backlight.h
3079
3080 BATMAN ADVANCED
3081 M:      Marek Lindner <mareklindner@neomailbox.ch>
3082 M:      Simon Wunderlich <sw@simonwunderlich.de>
3083 M:      Antonio Quartulli <a@unstable.cc>
3084 M:      Sven Eckelmann <sven@narfation.org>
3085 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3086 S:      Maintained
3087 W:      https://www.open-mesh.org/
3088 Q:      https://patchwork.open-mesh.org/project/batman/list/
3089 B:      https://www.open-mesh.org/projects/batman-adv/issues
3090 C:      irc://chat.freenode.net/batman
3091 T:      git https://git.open-mesh.org/linux-merge.git
3092 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
3093 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
3094 F:      Documentation/networking/batman-adv.rst
3095 F:      include/uapi/linux/batadv_packet.h
3096 F:      include/uapi/linux/batman_adv.h
3097 F:      net/batman-adv/
3098
3099 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3100 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3101 L:      linux-hams@vger.kernel.org
3102 S:      Maintained
3103 W:      http://www.baycom.org/~tom/ham/ham.html
3104 F:      drivers/net/hamradio/baycom*
3105
3106 BCACHE (BLOCK LAYER CACHE)
3107 M:      Coly Li <colyli@suse.de>
3108 M:      Kent Overstreet <kent.overstreet@gmail.com>
3109 L:      linux-bcache@vger.kernel.org
3110 S:      Maintained
3111 W:      http://bcache.evilpiepirate.org
3112 C:      irc://irc.oftc.net/bcache
3113 F:      drivers/md/bcache/
3114
3115 BDISP ST MEDIA DRIVER
3116 M:      Fabien Dessenne <fabien.dessenne@st.com>
3117 L:      linux-media@vger.kernel.org
3118 S:      Supported
3119 W:      https://linuxtv.org
3120 T:      git git://linuxtv.org/media_tree.git
3121 F:      drivers/media/platform/sti/bdisp
3122
3123 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3124 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3125 L:      netdev@vger.kernel.org
3126 S:      Maintained
3127 F:      drivers/net/ethernet/ec_bhf.c
3128
3129 BEFS FILE SYSTEM
3130 M:      Luis de Bethencourt <luisbg@kernel.org>
3131 M:      Salah Triki <salah.triki@gmail.com>
3132 S:      Maintained
3133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3134 F:      Documentation/filesystems/befs.rst
3135 F:      fs/befs/
3136
3137 BFQ I/O SCHEDULER
3138 M:      Paolo Valente <paolo.valente@linaro.org>
3139 M:      Jens Axboe <axboe@kernel.dk>
3140 L:      linux-block@vger.kernel.org
3141 S:      Maintained
3142 F:      Documentation/block/bfq-iosched.rst
3143 F:      block/bfq-*
3144
3145 BFS FILE SYSTEM
3146 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3147 S:      Maintained
3148 F:      Documentation/filesystems/bfs.rst
3149 F:      fs/bfs/
3150 F:      include/uapi/linux/bfs_fs.h
3151
3152 BLINKM RGB LED DRIVER
3153 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3154 S:      Maintained
3155 F:      drivers/leds/leds-blinkm.c
3156
3157 BLOCK LAYER
3158 M:      Jens Axboe <axboe@kernel.dk>
3159 L:      linux-block@vger.kernel.org
3160 S:      Maintained
3161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3162 F:      block/
3163 F:      drivers/block/
3164 F:      kernel/trace/blktrace.c
3165 F:      lib/sbitmap.c
3166
3167 BLOCK2MTD DRIVER
3168 M:      Joern Engel <joern@lazybastard.org>
3169 L:      linux-mtd@lists.infradead.org
3170 S:      Maintained
3171 F:      drivers/mtd/devices/block2mtd.c
3172
3173 BLUETOOTH DRIVERS
3174 M:      Marcel Holtmann <marcel@holtmann.org>
3175 M:      Johan Hedberg <johan.hedberg@gmail.com>
3176 L:      linux-bluetooth@vger.kernel.org
3177 S:      Maintained
3178 W:      http://www.bluez.org/
3179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3181 F:      drivers/bluetooth/
3182
3183 BLUETOOTH SUBSYSTEM
3184 M:      Marcel Holtmann <marcel@holtmann.org>
3185 M:      Johan Hedberg <johan.hedberg@gmail.com>
3186 L:      linux-bluetooth@vger.kernel.org
3187 S:      Maintained
3188 W:      http://www.bluez.org/
3189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3191 F:      include/net/bluetooth/
3192 F:      net/bluetooth/
3193
3194 BONDING DRIVER
3195 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3196 M:      Veaceslav Falico <vfalico@gmail.com>
3197 M:      Andy Gospodarek <andy@greyhouse.net>
3198 L:      netdev@vger.kernel.org
3199 S:      Supported
3200 W:      http://sourceforge.net/projects/bonding/
3201 F:      drivers/net/bonding/
3202 F:      include/uapi/linux/if_bonding.h
3203
3204 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3205 M:      Dan Robertson <dan@dlrobertson.com>
3206 L:      linux-iio@vger.kernel.org
3207 S:      Maintained
3208 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3209 F:      drivers/iio/accel/bma400*
3210
3211 BPF (Safe dynamic programs and tools)
3212 M:      Alexei Starovoitov <ast@kernel.org>
3213 M:      Daniel Borkmann <daniel@iogearbox.net>
3214 R:      Martin KaFai Lau <kafai@fb.com>
3215 R:      Song Liu <songliubraving@fb.com>
3216 R:      Yonghong Song <yhs@fb.com>
3217 R:      Andrii Nakryiko <andriin@fb.com>
3218 R:      John Fastabend <john.fastabend@gmail.com>
3219 R:      KP Singh <kpsingh@chromium.org>
3220 L:      netdev@vger.kernel.org
3221 L:      bpf@vger.kernel.org
3222 S:      Supported
3223 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3226 F:      Documentation/bpf/
3227 F:      Documentation/networking/filter.rst
3228 F:      arch/*/net/*
3229 F:      include/linux/bpf*
3230 F:      include/linux/filter.h
3231 F:      include/trace/events/xdp.h
3232 F:      include/uapi/linux/bpf*
3233 F:      include/uapi/linux/filter.h
3234 F:      kernel/bpf/
3235 F:      kernel/trace/bpf_trace.c
3236 F:      lib/test_bpf.c
3237 F:      net/bpf/
3238 F:      net/core/filter.c
3239 F:      net/sched/act_bpf.c
3240 F:      net/sched/cls_bpf.c
3241 F:      samples/bpf/
3242 F:      tools/bpf/
3243 F:      tools/lib/bpf/
3244 F:      tools/testing/selftests/bpf/
3245 N:      bpf
3246 K:      bpf
3247
3248 BPF JIT for ARM
3249 M:      Shubham Bansal <illusionist.neo@gmail.com>
3250 L:      netdev@vger.kernel.org
3251 L:      bpf@vger.kernel.org
3252 S:      Maintained
3253 F:      arch/arm/net/
3254
3255 BPF JIT for ARM64
3256 M:      Daniel Borkmann <daniel@iogearbox.net>
3257 M:      Alexei Starovoitov <ast@kernel.org>
3258 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3259 L:      netdev@vger.kernel.org
3260 L:      bpf@vger.kernel.org
3261 S:      Supported
3262 F:      arch/arm64/net/
3263
3264 BPF JIT for MIPS (32-BIT AND 64-BIT)
3265 M:      Paul Burton <paulburton@kernel.org>
3266 L:      netdev@vger.kernel.org
3267 L:      bpf@vger.kernel.org
3268 S:      Maintained
3269 F:      arch/mips/net/
3270
3271 BPF JIT for NFP NICs
3272 M:      Jakub Kicinski <kuba@kernel.org>
3273 L:      netdev@vger.kernel.org
3274 L:      bpf@vger.kernel.org
3275 S:      Supported
3276 F:      drivers/net/ethernet/netronome/nfp/bpf/
3277
3278 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3279 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3280 M:      Sandipan Das <sandipan@linux.ibm.com>
3281 L:      netdev@vger.kernel.org
3282 L:      bpf@vger.kernel.org
3283 S:      Maintained
3284 F:      arch/powerpc/net/
3285
3286 BPF JIT for RISC-V (32-bit)
3287 M:      Luke Nelson <luke.r.nels@gmail.com>
3288 M:      Xi Wang <xi.wang@gmail.com>
3289 L:      netdev@vger.kernel.org
3290 L:      bpf@vger.kernel.org
3291 S:      Maintained
3292 F:      arch/riscv/net/
3293 X:      arch/riscv/net/bpf_jit_comp64.c
3294
3295 BPF JIT for RISC-V (64-bit)
3296 M:      Björn Töpel <bjorn.topel@gmail.com>
3297 L:      netdev@vger.kernel.org
3298 L:      bpf@vger.kernel.org
3299 S:      Maintained
3300 F:      arch/riscv/net/
3301 X:      arch/riscv/net/bpf_jit_comp32.c
3302
3303 BPF JIT for S390
3304 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3305 M:      Heiko Carstens <hca@linux.ibm.com>
3306 M:      Vasily Gorbik <gor@linux.ibm.com>
3307 L:      netdev@vger.kernel.org
3308 L:      bpf@vger.kernel.org
3309 S:      Maintained
3310 F:      arch/s390/net/
3311 X:      arch/s390/net/pnet.c
3312
3313 BPF JIT for SPARC (32-BIT AND 64-BIT)
3314 M:      David S. Miller <davem@davemloft.net>
3315 L:      netdev@vger.kernel.org
3316 L:      bpf@vger.kernel.org
3317 S:      Maintained
3318 F:      arch/sparc/net/
3319
3320 BPF JIT for X86 32-BIT
3321 M:      Wang YanQing <udknight@gmail.com>
3322 L:      netdev@vger.kernel.org
3323 L:      bpf@vger.kernel.org
3324 S:      Maintained
3325 F:      arch/x86/net/bpf_jit_comp32.c
3326
3327 BPF JIT for X86 64-BIT
3328 M:      Alexei Starovoitov <ast@kernel.org>
3329 M:      Daniel Borkmann <daniel@iogearbox.net>
3330 L:      netdev@vger.kernel.org
3331 L:      bpf@vger.kernel.org
3332 S:      Supported
3333 F:      arch/x86/net/
3334 X:      arch/x86/net/bpf_jit_comp32.c
3335
3336 BROADCOM B44 10/100 ETHERNET DRIVER
3337 M:      Michael Chan <michael.chan@broadcom.com>
3338 L:      netdev@vger.kernel.org
3339 S:      Supported
3340 F:      drivers/net/ethernet/broadcom/b44.*
3341
3342 BROADCOM B53 ETHERNET SWITCH DRIVER
3343 M:      Florian Fainelli <f.fainelli@gmail.com>
3344 L:      netdev@vger.kernel.org
3345 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3346 S:      Supported
3347 F:      drivers/net/dsa/b53/*
3348 F:      include/linux/platform_data/b53.h
3349
3350 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3351 M:      Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
3352 L:      bcm-kernel-feedback-list@broadcom.com
3353 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3354 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3355 S:      Maintained
3356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3357 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3358 F:      drivers/pci/controller/pcie-brcmstb.c
3359 F:      drivers/staging/vc04_services
3360 N:      bcm2711
3361 N:      bcm2835
3362
3363 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3364 M:      Florian Fainelli <f.fainelli@gmail.com>
3365 M:      Ray Jui <rjui@broadcom.com>
3366 M:      Scott Branden <sbranden@broadcom.com>
3367 M:      bcm-kernel-feedback-list@broadcom.com
3368 S:      Maintained
3369 T:      git git://github.com/broadcom/mach-bcm
3370 F:      arch/arm/mach-bcm/
3371 N:      bcm281*
3372 N:      bcm113*
3373 N:      bcm216*
3374 N:      kona
3375
3376 BROADCOM BCM47XX MIPS ARCHITECTURE
3377 M:      Hauke Mehrtens <hauke@hauke-m.de>
3378 M:      Rafał Miłecki <zajec5@gmail.com>
3379 L:      linux-mips@vger.kernel.org
3380 S:      Maintained
3381 F:      Documentation/devicetree/bindings/mips/brcm/
3382 F:      arch/mips/bcm47xx/*
3383 F:      arch/mips/include/asm/mach-bcm47xx/*
3384
3385 BROADCOM BCM5301X ARM ARCHITECTURE
3386 M:      Hauke Mehrtens <hauke@hauke-m.de>
3387 M:      Rafał Miłecki <zajec5@gmail.com>
3388 M:      bcm-kernel-feedback-list@broadcom.com
3389 L:      linux-arm-kernel@lists.infradead.org
3390 S:      Maintained
3391 F:      arch/arm/boot/dts/bcm470*
3392 F:      arch/arm/boot/dts/bcm5301x*.dtsi
3393 F:      arch/arm/boot/dts/bcm953012*
3394 F:      arch/arm/mach-bcm/bcm_5301x.c
3395
3396 BROADCOM BCM53573 ARM ARCHITECTURE
3397 M:      Rafał Miłecki <rafal@milecki.pl>
3398 L:      bcm-kernel-feedback-list@broadcom.com
3399 L:      linux-arm-kernel@lists.infradead.org
3400 S:      Maintained
3401 F:      arch/arm/boot/dts/bcm47189*
3402 F:      arch/arm/boot/dts/bcm53573*
3403
3404 BROADCOM BCM63XX ARM ARCHITECTURE
3405 M:      Florian Fainelli <f.fainelli@gmail.com>
3406 M:      bcm-kernel-feedback-list@broadcom.com
3407 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3408 S:      Maintained
3409 T:      git git://github.com/broadcom/stblinux.git
3410 N:      bcm63xx
3411
3412 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3413 M:      Kevin Cernekee <cernekee@gmail.com>
3414 L:      linux-usb@vger.kernel.org
3415 S:      Maintained
3416 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3417
3418 BROADCOM BCM7XXX ARM ARCHITECTURE
3419 M:      Florian Fainelli <f.fainelli@gmail.com>
3420 M:      bcm-kernel-feedback-list@broadcom.com
3421 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3422 S:      Maintained
3423 T:      git git://github.com/broadcom/stblinux.git
3424 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3425 F:      arch/arm/boot/dts/bcm7*.dts*
3426 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3427 F:      arch/arm/mach-bcm/*brcmstb*
3428 F:      arch/arm/mm/cache-b15-rac.c
3429 F:      drivers/bus/brcmstb_gisb.c
3430 F:      drivers/pci/controller/pcie-brcmstb.c
3431 N:      brcmstb
3432
3433 BROADCOM BMIPS CPUFREQ DRIVER
3434 M:      Markus Mayer <mmayer@broadcom.com>
3435 M:      bcm-kernel-feedback-list@broadcom.com
3436 L:      linux-pm@vger.kernel.org
3437 S:      Maintained
3438 F:      drivers/cpufreq/bmips-cpufreq.c
3439
3440 BROADCOM BMIPS MIPS ARCHITECTURE
3441 M:      Florian Fainelli <f.fainelli@gmail.com>
3442 L:      bcm-kernel-feedback-list@broadcom.com
3443 L:      linux-mips@vger.kernel.org
3444 S:      Maintained
3445 T:      git git://github.com/broadcom/stblinux.git
3446 F:      arch/mips/bmips/*
3447 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3448 F:      arch/mips/include/asm/mach-bmips/*
3449 F:      arch/mips/kernel/*bmips*
3450 F:      drivers/irqchip/irq-bcm63*
3451 F:      drivers/irqchip/irq-bcm7*
3452 F:      drivers/irqchip/irq-brcmstb*
3453 F:      include/linux/bcm963xx_nvram.h
3454 F:      include/linux/bcm963xx_tag.h
3455
3456 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3457 M:      Rasesh Mody <rmody@marvell.com>
3458 M:      GR-Linux-NIC-Dev@marvell.com
3459 L:      netdev@vger.kernel.org
3460 S:      Supported
3461 F:      drivers/net/ethernet/broadcom/bnx2.*
3462 F:      drivers/net/ethernet/broadcom/bnx2_*
3463
3464 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3465 M:      QLogic-Storage-Upstream@qlogic.com
3466 L:      linux-scsi@vger.kernel.org
3467 S:      Supported
3468 F:      drivers/scsi/bnx2fc/
3469
3470 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3471 M:      QLogic-Storage-Upstream@qlogic.com
3472 L:      linux-scsi@vger.kernel.org
3473 S:      Supported
3474 F:      drivers/scsi/bnx2i/
3475
3476 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3477 M:      Ariel Elior <aelior@marvell.com>
3478 M:      Sudarsana Kalluru <skalluru@marvell.com>
3479 M:      GR-everest-linux-l2@marvell.com
3480 L:      netdev@vger.kernel.org
3481 S:      Supported
3482 F:      drivers/net/ethernet/broadcom/bnx2x/
3483
3484 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3485 M:      Michael Chan <michael.chan@broadcom.com>
3486 L:      netdev@vger.kernel.org
3487 S:      Supported
3488 F:      drivers/net/ethernet/broadcom/bnxt/
3489
3490 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3491 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
3492 M:      Franky Lin <franky.lin@broadcom.com>
3493 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3494 M:      Chi-Hsien Lin <chi-hsien.lin@cypress.com>
3495 M:      Wright Feng <wright.feng@cypress.com>
3496 L:      linux-wireless@vger.kernel.org
3497 L:      brcm80211-dev-list.pdl@broadcom.com
3498 L:      brcm80211-dev-list@cypress.com
3499 S:      Supported
3500 F:      drivers/net/wireless/broadcom/brcm80211/
3501
3502 BROADCOM BRCMSTB GPIO DRIVER
3503 M:      Gregory Fong <gregory.0xf0@gmail.com>
3504 L:      bcm-kernel-feedback-list@broadcom.com
3505 S:      Supported
3506 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3507 F:      drivers/gpio/gpio-brcmstb.c
3508
3509 BROADCOM BRCMSTB I2C DRIVER
3510 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3511 L:      linux-i2c@vger.kernel.org
3512 L:      bcm-kernel-feedback-list@broadcom.com
3513 S:      Supported
3514 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3515 F:      drivers/i2c/busses/i2c-brcmstb.c
3516
3517 BROADCOM BRCMSTB USB EHCI DRIVER
3518 M:      Al Cooper <alcooperx@gmail.com>
3519 L:      linux-usb@vger.kernel.org
3520 L:      bcm-kernel-feedback-list@broadcom.com
3521 S:      Maintained
3522 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3523 F:      drivers/usb/host/ehci-brcm.*
3524
3525 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3526 M:      Al Cooper <alcooperx@gmail.com>
3527 L:      linux-kernel@vger.kernel.org
3528 L:      bcm-kernel-feedback-list@broadcom.com
3529 S:      Maintained
3530 F:      drivers/phy/broadcom/phy-brcm-usb*
3531
3532 BROADCOM GENET ETHERNET DRIVER
3533 M:      Doug Berger <opendmb@gmail.com>
3534 M:      Florian Fainelli <f.fainelli@gmail.com>
3535 L:      bcm-kernel-feedback-list@broadcom.com
3536 L:      netdev@vger.kernel.org
3537 S:      Supported
3538 F:      drivers/net/ethernet/broadcom/genet/
3539
3540 BROADCOM IPROC ARM ARCHITECTURE
3541 M:      Ray Jui <rjui@broadcom.com>
3542 M:      Scott Branden <sbranden@broadcom.com>
3543 M:      bcm-kernel-feedback-list@broadcom.com
3544 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3545 S:      Maintained
3546 T:      git git://github.com/broadcom/cygnus-linux.git
3547 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3548 F:      arch/arm64/boot/dts/broadcom/stingray/*
3549 F:      drivers/clk/bcm/clk-ns*
3550 F:      drivers/clk/bcm/clk-sr*
3551 F:      drivers/pinctrl/bcm/pinctrl-ns*
3552 F:      include/dt-bindings/clock/bcm-sr*
3553 N:      iproc
3554 N:      cygnus
3555 N:      bcm[-_]nsp
3556 N:      bcm9113*
3557 N:      bcm9583*
3558 N:      bcm9585*
3559 N:      bcm9586*
3560 N:      bcm988312
3561 N:      bcm113*
3562 N:      bcm583*
3563 N:      bcm585*
3564 N:      bcm586*
3565 N:      bcm88312
3566 N:      hr2
3567 N:      stingray
3568
3569 BROADCOM KONA GPIO DRIVER
3570 M:      Ray Jui <rjui@broadcom.com>
3571 L:      bcm-kernel-feedback-list@broadcom.com
3572 S:      Supported
3573 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3574 F:      drivers/gpio/gpio-bcm-kona.c
3575
3576 BROADCOM NETXTREME-E ROCE DRIVER
3577 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3578 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3579 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3580 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3581 L:      linux-rdma@vger.kernel.org
3582 S:      Supported
3583 W:      http://www.broadcom.com
3584 F:      drivers/infiniband/hw/bnxt_re/
3585 F:      include/uapi/rdma/bnxt_re-abi.h
3586
3587 BROADCOM NVRAM DRIVER
3588 M:      Rafał Miłecki <zajec5@gmail.com>
3589 L:      linux-mips@vger.kernel.org
3590 S:      Maintained
3591 F:      drivers/firmware/broadcom/*
3592
3593 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3594 M:      Rafał Miłecki <zajec5@gmail.com>
3595 L:      linux-wireless@vger.kernel.org
3596 S:      Maintained
3597 F:      drivers/bcma/
3598 F:      include/linux/bcma/
3599
3600 BROADCOM SPI DRIVER
3601 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3602 M:      bcm-kernel-feedback-list@broadcom.com
3603 S:      Maintained
3604 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3605 F:      drivers/spi/spi-bcm-qspi.*
3606 F:      drivers/spi/spi-brcmstb-qspi.c
3607 F:      drivers/spi/spi-iproc-qspi.c
3608
3609 BROADCOM STB AVS CPUFREQ DRIVER
3610 M:      Markus Mayer <mmayer@broadcom.com>
3611 M:      bcm-kernel-feedback-list@broadcom.com
3612 L:      linux-pm@vger.kernel.org
3613 S:      Maintained
3614 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3615 F:      drivers/cpufreq/brcmstb*
3616
3617 BROADCOM STB AVS TMON DRIVER
3618 M:      Markus Mayer <mmayer@broadcom.com>
3619 M:      bcm-kernel-feedback-list@broadcom.com
3620 L:      linux-pm@vger.kernel.org
3621 S:      Maintained
3622 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3623 F:      drivers/thermal/broadcom/brcmstb*
3624
3625 BROADCOM STB DPFE DRIVER
3626 M:      Markus Mayer <mmayer@broadcom.com>
3627 M:      bcm-kernel-feedback-list@broadcom.com
3628 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3629 S:      Maintained
3630 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3631 F:      drivers/memory/brcmstb_dpfe.c
3632
3633 BROADCOM STB NAND FLASH DRIVER
3634 M:      Brian Norris <computersforpeace@gmail.com>
3635 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3636 L:      linux-mtd@lists.infradead.org
3637 L:      bcm-kernel-feedback-list@broadcom.com
3638 S:      Maintained
3639 F:      drivers/mtd/nand/raw/brcmnand/
3640
3641 BROADCOM SYSTEMPORT ETHERNET DRIVER
3642 M:      Florian Fainelli <f.fainelli@gmail.com>
3643 L:      bcm-kernel-feedback-list@broadcom.com
3644 L:      netdev@vger.kernel.org
3645 S:      Supported
3646 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3647
3648 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3649 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3650 M:      Prashant Sreedharan <prashant@broadcom.com>
3651 M:      Michael Chan <mchan@broadcom.com>
3652 L:      netdev@vger.kernel.org
3653 S:      Supported
3654 F:      drivers/net/ethernet/broadcom/tg3.*
3655
3656 BROCADE BFA FC SCSI DRIVER
3657 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3658 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3659 L:      linux-scsi@vger.kernel.org
3660 S:      Supported
3661 F:      drivers/scsi/bfa/
3662
3663 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3664 M:      Rasesh Mody <rmody@marvell.com>
3665 M:      Sudarsana Kalluru <skalluru@marvell.com>
3666 M:      GR-Linux-NIC-Dev@marvell.com
3667 L:      netdev@vger.kernel.org
3668 S:      Supported
3669 F:      drivers/net/ethernet/brocade/bna/
3670
3671 BSG (block layer generic sg v4 driver)
3672 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3673 L:      linux-scsi@vger.kernel.org
3674 S:      Supported
3675 F:      block/bsg.c
3676 F:      include/linux/bsg.h
3677 F:      include/uapi/linux/bsg.h
3678
3679 BT87X AUDIO DRIVER
3680 M:      Clemens Ladisch <clemens@ladisch.de>
3681 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3682 S:      Maintained
3683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3684 F:      Documentation/sound/cards/bt87x.rst
3685 F:      sound/pci/bt87x.c
3686
3687 BT8XXGPIO DRIVER
3688 M:      Michael Buesch <m@bues.ch>
3689 S:      Maintained
3690 W:      http://bu3sch.de/btgpio.php
3691 F:      drivers/gpio/gpio-bt8xx.c
3692
3693 BTRFS FILE SYSTEM
3694 M:      Chris Mason <clm@fb.com>
3695 M:      Josef Bacik <josef@toxicpanda.com>
3696 M:      David Sterba <dsterba@suse.com>
3697 L:      linux-btrfs@vger.kernel.org
3698 S:      Maintained
3699 W:      http://btrfs.wiki.kernel.org/
3700 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3702 F:      Documentation/filesystems/btrfs.rst
3703 F:      fs/btrfs/
3704 F:      include/linux/btrfs*
3705 F:      include/uapi/linux/btrfs*
3706
3707 BTTV VIDEO4LINUX DRIVER
3708 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3709 L:      linux-media@vger.kernel.org
3710 S:      Odd fixes
3711 W:      https://linuxtv.org
3712 T:      git git://linuxtv.org/media_tree.git
3713 F:      Documentation/driver-api/media/drivers/bttv*
3714 F:      drivers/media/pci/bt8xx/bttv*
3715
3716 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3717 M:      Chanwoo Choi <cw00.choi@samsung.com>
3718 L:      linux-pm@vger.kernel.org
3719 L:      linux-samsung-soc@vger.kernel.org
3720 S:      Maintained
3721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3722 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3723 F:      drivers/devfreq/exynos-bus.c
3724
3725 BUSLOGIC SCSI DRIVER
3726 M:      Khalid Aziz <khalid@gonehiking.org>
3727 L:      linux-scsi@vger.kernel.org
3728 S:      Maintained
3729 F:      drivers/scsi/BusLogic.*
3730 F:      drivers/scsi/FlashPoint.*
3731
3732 C-MEDIA CMI8788 DRIVER
3733 M:      Clemens Ladisch <clemens@ladisch.de>
3734 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3735 S:      Maintained
3736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3737 F:      sound/pci/oxygen/
3738
3739 C-SKY ARCHITECTURE
3740 M:      Guo Ren <guoren@kernel.org>
3741 L:      linux-csky@vger.kernel.org
3742 S:      Supported
3743 T:      git https://github.com/c-sky/csky-linux.git
3744 F:      Documentation/devicetree/bindings/csky/
3745 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3746 F:      Documentation/devicetree/bindings/timer/csky,*
3747 F:      arch/csky/
3748 F:      drivers/clocksource/timer-gx6605s.c
3749 F:      drivers/clocksource/timer-mp-csky.c
3750 F:      drivers/irqchip/irq-csky-*
3751 N:      csky
3752 K:      csky
3753
3754 C6X ARCHITECTURE
3755 M:      Mark Salter <msalter@redhat.com>
3756 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3757 L:      linux-c6x-dev@linux-c6x.org
3758 S:      Maintained
3759 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3760 F:      arch/c6x/
3761
3762 CA8210 IEEE-802.15.4 RADIO DRIVER
3763 M:      Harry Morris <h.morris@cascoda.com>
3764 L:      linux-wpan@vger.kernel.org
3765 S:      Maintained
3766 W:      https://github.com/Cascoda/ca8210-linux.git
3767 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3768 F:      drivers/net/ieee802154/ca8210.c
3769
3770 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3771 M:      David Howells <dhowells@redhat.com>
3772 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3773 S:      Supported
3774 F:      Documentation/filesystems/caching/cachefiles.rst
3775 F:      fs/cachefiles/
3776
3777 CADENCE MIPI-CSI2 BRIDGES
3778 M:      Maxime Ripard <mripard@kernel.org>
3779 L:      linux-media@vger.kernel.org
3780 S:      Maintained
3781 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3782 F:      drivers/media/platform/cadence/cdns-csi2*
3783
3784 CADENCE NAND DRIVER
3785 L:      linux-mtd@lists.infradead.org
3786 S:      Orphan
3787 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3788 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3789
3790 CADET FM/AM RADIO RECEIVER DRIVER
3791 M:      Hans Verkuil <hverkuil@xs4all.nl>
3792 L:      linux-media@vger.kernel.org
3793 S:      Maintained
3794 W:      https://linuxtv.org
3795 T:      git git://linuxtv.org/media_tree.git
3796 F:      drivers/media/radio/radio-cadet*
3797
3798 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3799 M:      Jonathan Corbet <corbet@lwn.net>
3800 L:      linux-media@vger.kernel.org
3801 S:      Maintained
3802 T:      git git://linuxtv.org/media_tree.git
3803 F:      Documentation/admin-guide/media/cafe_ccic*
3804 F:      drivers/media/platform/marvell-ccic/
3805
3806 CAIF NETWORK LAYER
3807 L:      netdev@vger.kernel.org
3808 S:      Orphan
3809 F:      Documentation/networking/caif/
3810 F:      drivers/net/caif/
3811 F:      include/net/caif/
3812 F:      include/uapi/linux/caif/
3813 F:      net/caif/
3814
3815 CAKE QDISC
3816 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3817 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3818 S:      Maintained
3819 F:      net/sched/sch_cake.c
3820
3821 CAN NETWORK DRIVERS
3822 M:      Wolfgang Grandegger <wg@grandegger.com>
3823 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3824 L:      linux-can@vger.kernel.org
3825 S:      Maintained
3826 W:      https://github.com/linux-can
3827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3828 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3829 F:      Documentation/devicetree/bindings/net/can/
3830 F:      drivers/net/can/
3831 F:      include/linux/can/dev.h
3832 F:      include/linux/can/led.h
3833 F:      include/linux/can/platform/
3834 F:      include/linux/can/rx-offload.h
3835 F:      include/uapi/linux/can/error.h
3836 F:      include/uapi/linux/can/netlink.h
3837 F:      include/uapi/linux/can/vxcan.h
3838
3839 CAN NETWORK LAYER
3840 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3841 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3842 L:      linux-can@vger.kernel.org
3843 S:      Maintained
3844 W:      https://github.com/linux-can
3845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3847 F:      Documentation/networking/can.rst
3848 F:      include/linux/can/core.h
3849 F:      include/linux/can/skb.h
3850 F:      include/net/netns/can.h
3851 F:      include/uapi/linux/can.h
3852 F:      include/uapi/linux/can/bcm.h
3853 F:      include/uapi/linux/can/gw.h
3854 F:      include/uapi/linux/can/raw.h
3855 F:      net/can/
3856
3857 CAN-J1939 NETWORK LAYER
3858 M:      Robin van der Gracht <robin@protonic.nl>
3859 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3860 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
3861 L:      linux-can@vger.kernel.org
3862 S:      Maintained
3863 F:      Documentation/networking/j1939.rst
3864 F:      include/uapi/linux/can/j1939.h
3865 F:      net/can/j1939/
3866
3867 CAPABILITIES
3868 M:      Serge Hallyn <serge@hallyn.com>
3869 L:      linux-security-module@vger.kernel.org
3870 S:      Supported
3871 F:      include/linux/capability.h
3872 F:      include/uapi/linux/capability.h
3873 F:      kernel/capability.c
3874 F:      security/commoncap.c
3875
3876 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3877 M:      Kevin Tsai <ktsai@capellamicro.com>
3878 S:      Maintained
3879 F:      drivers/iio/light/cm*
3880
3881 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3882 M:      Christian Lamparter <chunkeey@googlemail.com>
3883 L:      linux-wireless@vger.kernel.org
3884 S:      Maintained
3885 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
3886 F:      drivers/net/wireless/ath/carl9170/
3887
3888 CAVIUM I2C DRIVER
3889 M:      Robert Richter <rrichter@marvell.com>
3890 S:      Supported
3891 W:      http://www.marvell.com
3892 F:      drivers/i2c/busses/i2c-octeon*
3893 F:      drivers/i2c/busses/i2c-thunderx*
3894
3895 CAVIUM LIQUIDIO NETWORK DRIVER
3896 M:      Derek Chickles <dchickles@marvell.com>
3897 M:      Satanand Burla <sburla@marvell.com>
3898 M:      Felix Manlunas <fmanlunas@marvell.com>
3899 L:      netdev@vger.kernel.org
3900 S:      Supported
3901 W:      http://www.marvell.com
3902 F:      drivers/net/ethernet/cavium/liquidio/
3903
3904 CAVIUM MMC DRIVER
3905 M:      Robert Richter <rrichter@marvell.com>
3906 S:      Supported
3907 W:      http://www.marvell.com
3908 F:      drivers/mmc/host/cavium*
3909
3910 CAVIUM OCTEON-TX CRYPTO DRIVER
3911 M:      George Cherian <gcherian@marvell.com>
3912 L:      linux-crypto@vger.kernel.org
3913 S:      Supported
3914 W:      http://www.marvell.com
3915 F:      drivers/crypto/cavium/cpt/
3916
3917 CAVIUM THUNDERX2 ARM64 SOC
3918 M:      Robert Richter <rrichter@marvell.com>
3919 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3920 S:      Maintained
3921 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3922 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3923
3924 CC2520 IEEE-802.15.4 RADIO DRIVER
3925 M:      Varka Bhadram <varkabhadram@gmail.com>
3926 L:      linux-wpan@vger.kernel.org
3927 S:      Maintained
3928 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3929 F:      drivers/net/ieee802154/cc2520.c
3930 F:      include/linux/spi/cc2520.h
3931
3932 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3933 M:      Gilad Ben-Yossef <gilad@benyossef.com>
3934 L:      linux-crypto@vger.kernel.org
3935 S:      Supported
3936 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3937 F:      drivers/crypto/ccree/
3938
3939 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
3940 M:      Hadar Gat <hadar.gat@arm.com>
3941 L:      linux-crypto@vger.kernel.org
3942 S:      Supported
3943 F:      drivers/char/hw_random/cctrng.c
3944 F:      drivers/char/hw_random/cctrng.h
3945 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
3946 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3947
3948 CEC FRAMEWORK
3949 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3950 L:      linux-media@vger.kernel.org
3951 S:      Supported
3952 W:      http://linuxtv.org
3953 T:      git git://linuxtv.org/media_tree.git
3954 F:      Documentation/ABI/testing/debugfs-cec-error-inj
3955 F:      Documentation/devicetree/bindings/media/cec.txt
3956 F:      Documentation/driver-api/media/cec-core.rst
3957 F:      Documentation/userspace-api/media/cec
3958 F:      drivers/media/cec/
3959 F:      drivers/media/rc/keymaps/rc-cec.c
3960 F:      include/media/cec-notifier.h
3961 F:      include/media/cec.h
3962 F:      include/uapi/linux/cec-funcs.h
3963 F:      include/uapi/linux/cec.h
3964
3965 CEC GPIO DRIVER
3966 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3967 L:      linux-media@vger.kernel.org
3968 S:      Supported
3969 W:      http://linuxtv.org
3970 T:      git git://linuxtv.org/media_tree.git
3971 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3972 F:      drivers/media/platform/cec-gpio/
3973
3974 CELL BROADBAND ENGINE ARCHITECTURE
3975 M:      Arnd Bergmann <arnd@arndb.de>
3976 L:      linuxppc-dev@lists.ozlabs.org
3977 S:      Supported
3978 W:      http://www.ibm.com/developerworks/power/cell/
3979 F:      arch/powerpc/include/asm/cell*.h
3980 F:      arch/powerpc/include/asm/spu*.h
3981 F:      arch/powerpc/include/uapi/asm/spu*.h
3982 F:      arch/powerpc/oprofile/*cell*
3983 F:      arch/powerpc/platforms/cell/
3984
3985 CELLWISE CW2015 BATTERY DRIVER
3986 M:      Tobias Schrammm <t.schramm@manjaro.org>
3987 S:      Maintained
3988 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
3989 F:      drivers/power/supply/cw2015_battery.c
3990
3991 CEPH COMMON CODE (LIBCEPH)
3992 M:      Ilya Dryomov <idryomov@gmail.com>
3993 M:      Jeff Layton <jlayton@kernel.org>
3994 L:      ceph-devel@vger.kernel.org
3995 S:      Supported
3996 W:      http://ceph.com/
3997 T:      git git://github.com/ceph/ceph-client.git
3998 F:      include/linux/ceph/
3999 F:      include/linux/crush/
4000 F:      net/ceph/
4001
4002 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4003 M:      Jeff Layton <jlayton@kernel.org>
4004 M:      Ilya Dryomov <idryomov@gmail.com>
4005 L:      ceph-devel@vger.kernel.org
4006 S:      Supported
4007 W:      http://ceph.com/
4008 T:      git git://github.com/ceph/ceph-client.git
4009 F:      Documentation/filesystems/ceph.rst
4010 F:      fs/ceph/
4011
4012 CERTIFICATE HANDLING
4013 M:      David Howells <dhowells@redhat.com>
4014 M:      David Woodhouse <dwmw2@infradead.org>
4015 L:      keyrings@vger.kernel.org
4016 S:      Maintained
4017 F:      Documentation/admin-guide/module-signing.rst
4018 F:      certs/
4019 F:      scripts/extract-cert.c
4020 F:      scripts/sign-file.c
4021
4022 CFAG12864B LCD DRIVER
4023 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4024 S:      Maintained
4025 F:      drivers/auxdisplay/cfag12864b.c
4026 F:      include/linux/cfag12864b.h
4027
4028 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4029 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4030 S:      Maintained
4031 F:      drivers/auxdisplay/cfag12864bfb.c
4032 F:      include/linux/cfag12864b.h
4033
4034 CHAR and MISC DRIVERS
4035 M:      Arnd Bergmann <arnd@arndb.de>
4036 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4037 S:      Supported
4038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4039 F:      drivers/char/
4040 F:      drivers/misc/
4041 F:      include/linux/miscdevice.h
4042
4043 CHECKPATCH
4044 M:      Andy Whitcroft <apw@canonical.com>
4045 M:      Joe Perches <joe@perches.com>
4046 S:      Maintained
4047 F:      scripts/checkpatch.pl
4048
4049 CHINESE DOCUMENTATION
4050 M:      Harry Wei <harryxiyou@gmail.com>
4051 M:      Alex Shi <alex.shi@linux.alibaba.com>
4052 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
4053 S:      Maintained
4054 F:      Documentation/translations/zh_CN/
4055
4056 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4057 M:      Peter Chen <Peter.Chen@nxp.com>
4058 L:      linux-usb@vger.kernel.org
4059 S:      Maintained
4060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4061 F:      drivers/usb/chipidea/
4062
4063 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4064 M:      Hans de Goede <hdegoede@redhat.com>
4065 L:      linux-input@vger.kernel.org
4066 S:      Maintained
4067 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4068 F:      drivers/input/touchscreen/chipone_icn8318.c
4069
4070 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4071 M:      Hans de Goede <hdegoede@redhat.com>
4072 L:      linux-input@vger.kernel.org
4073 S:      Maintained
4074 F:      drivers/input/touchscreen/chipone_icn8505.c
4075
4076 CHROME HARDWARE PLATFORM SUPPORT
4077 M:      Benson Leung <bleung@chromium.org>
4078 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4079 S:      Maintained
4080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4081 F:      drivers/platform/chrome/
4082
4083 CHROMEOS EC CODEC DRIVER
4084 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4085 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4086 R:      Guenter Roeck <groeck@chromium.org>
4087 S:      Maintained
4088 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4089 F:      sound/soc/codecs/cros_ec_codec.*
4090
4091 CHROMEOS EC SUBDRIVERS
4092 M:      Benson Leung <bleung@chromium.org>
4093 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4094 R:      Guenter Roeck <groeck@chromium.org>
4095 S:      Maintained
4096 F:      drivers/power/supply/cros_usbpd-charger.c
4097 N:      cros_ec
4098 N:      cros-ec
4099
4100 CIRRUS LOGIC AUDIO CODEC DRIVERS
4101 M:      James Schulman <james.schulman@cirrus.com>
4102 M:      David Rhodes <david.rhodes@cirrus.com>
4103 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4104 S:      Maintained
4105 F:      sound/soc/codecs/cs*
4106
4107 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4108 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4109 L:      netdev@vger.kernel.org
4110 S:      Maintained
4111 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4112
4113 CIRRUS LOGIC LOCHNAGAR DRIVER
4114 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4115 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4116 L:      patches@opensource.cirrus.com
4117 S:      Supported
4118 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4119 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4120 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4121 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4122 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4123 F:      Documentation/hwmon/lochnagar.rst
4124 F:      drivers/clk/clk-lochnagar.c
4125 F:      drivers/hwmon/lochnagar-hwmon.c
4126 F:      drivers/mfd/lochnagar-i2c.c
4127 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4128 F:      drivers/regulator/lochnagar-regulator.c
4129 F:      include/dt-bindings/clk/lochnagar.h
4130 F:      include/dt-bindings/pinctrl/lochnagar.h
4131 F:      include/linux/mfd/lochnagar*
4132 F:      sound/soc/codecs/lochnagar-sc.c
4133
4134 CIRRUS LOGIC MADERA CODEC DRIVERS
4135 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4136 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4137 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4138 L:      patches@opensource.cirrus.com
4139 S:      Supported
4140 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4141 T:      git https://github.com/CirrusLogic/linux-drivers.git
4142 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4143 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4144 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4145 F:      drivers/gpio/gpio-madera*
4146 F:      drivers/irqchip/irq-madera*
4147 F:      drivers/mfd/cs47l*
4148 F:      drivers/mfd/madera*
4149 F:      drivers/pinctrl/cirrus/*
4150 F:      include/dt-bindings/sound/madera*
4151 F:      include/linux/irqchip/irq-madera*
4152 F:      include/linux/mfd/madera/*
4153 F:      include/sound/madera*
4154 F:      sound/soc/codecs/cs47l*
4155 F:      sound/soc/codecs/madera*
4156
4157 CISCO FCOE HBA DRIVER
4158 M:      Satish Kharat <satishkh@cisco.com>
4159 M:      Sesidhar Baddela <sebaddel@cisco.com>
4160 M:      Karan Tilak Kumar <kartilak@cisco.com>
4161 L:      linux-scsi@vger.kernel.org
4162 S:      Supported
4163 F:      drivers/scsi/fnic/
4164
4165 CISCO SCSI HBA DRIVER
4166 M:      Karan Tilak Kumar <kartilak@cisco.com>
4167 M:      Sesidhar Baddela <sebaddel@cisco.com>
4168 L:      linux-scsi@vger.kernel.org
4169 S:      Supported
4170 F:      drivers/scsi/snic/
4171
4172 CISCO VIC ETHERNET NIC DRIVER
4173 M:      Christian Benvenuti <benve@cisco.com>
4174 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4175 S:      Supported
4176 F:      drivers/net/ethernet/cisco/enic/
4177
4178 CISCO VIC LOW LATENCY NIC DRIVER
4179 M:      Christian Benvenuti <benve@cisco.com>
4180 M:      Nelson Escobar <neescoba@cisco.com>
4181 M:      Parvi Kaustubhi <pkaustub@cisco.com>
4182 S:      Supported
4183 F:      drivers/infiniband/hw/usnic/
4184
4185 CLANG-FORMAT FILE
4186 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4187 S:      Maintained
4188 F:      .clang-format
4189
4190 CLANG/LLVM BUILD SUPPORT
4191 L:      clang-built-linux@googlegroups.com
4192 S:      Supported
4193 W:      https://clangbuiltlinux.github.io/
4194 B:      https://github.com/ClangBuiltLinux/linux/issues
4195 C:      irc://chat.freenode.net/clangbuiltlinux
4196 F:      Documentation/kbuild/llvm.rst
4197 K:      \b(?i:clang|llvm)\b
4198
4199 CLEANCACHE API
4200 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4201 L:      linux-kernel@vger.kernel.org
4202 S:      Maintained
4203 F:      include/linux/cleancache.h
4204 F:      mm/cleancache.c
4205
4206 CLK API
4207 M:      Russell King <linux@armlinux.org.uk>
4208 L:      linux-clk@vger.kernel.org
4209 S:      Maintained
4210 F:      include/linux/clk.h
4211
4212 CLOCKSOURCE, CLOCKEVENT DRIVERS
4213 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4214 M:      Thomas Gleixner <tglx@linutronix.de>
4215 L:      linux-kernel@vger.kernel.org
4216 S:      Supported
4217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4218 F:      Documentation/devicetree/bindings/timer/
4219 F:      drivers/clocksource/
4220
4221 CMPC ACPI DRIVER
4222 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4223 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4224 L:      platform-driver-x86@vger.kernel.org
4225 S:      Supported
4226 F:      drivers/platform/x86/classmate-laptop.c
4227
4228 COBALT MEDIA DRIVER
4229 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4230 L:      linux-media@vger.kernel.org
4231 S:      Supported
4232 W:      https://linuxtv.org
4233 T:      git git://linuxtv.org/media_tree.git
4234 F:      drivers/media/pci/cobalt/
4235
4236 COCCINELLE/Semantic Patches (SmPL)
4237 M:      Julia Lawall <Julia.Lawall@lip6.fr>
4238 M:      Gilles Muller <Gilles.Muller@lip6.fr>
4239 M:      Nicolas Palix <nicolas.palix@imag.fr>
4240 M:      Michal Marek <michal.lkml@markovi.net>
4241 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4242 S:      Supported
4243 W:      http://coccinelle.lip6.fr/
4244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4245 F:      Documentation/dev-tools/coccinelle.rst
4246 F:      scripts/coccicheck
4247 F:      scripts/coccinelle/
4248
4249 CODA FILE SYSTEM
4250 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4251 M:      coda@cs.cmu.edu
4252 L:      codalist@coda.cs.cmu.edu
4253 S:      Maintained
4254 W:      http://www.coda.cs.cmu.edu/
4255 F:      Documentation/filesystems/coda.rst
4256 F:      fs/coda/
4257 F:      include/linux/coda*.h
4258 F:      include/uapi/linux/coda*.h
4259
4260 CODA V4L2 MEM2MEM DRIVER
4261 M:      Philipp Zabel <p.zabel@pengutronix.de>
4262 L:      linux-media@vger.kernel.org
4263 S:      Maintained
4264 F:      Documentation/devicetree/bindings/media/coda.txt
4265 F:      drivers/media/platform/coda/
4266
4267 CODE OF CONDUCT
4268 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4269 S:      Supported
4270 F:      Documentation/process/code-of-conduct-interpretation.rst
4271 F:      Documentation/process/code-of-conduct.rst
4272
4273 COMMON CLK FRAMEWORK
4274 M:      Michael Turquette <mturquette@baylibre.com>
4275 M:      Stephen Boyd <sboyd@kernel.org>
4276 L:      linux-clk@vger.kernel.org
4277 S:      Maintained
4278 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4280 F:      Documentation/devicetree/bindings/clock/
4281 F:      drivers/clk/
4282 F:      include/linux/clk-pr*
4283 F:      include/linux/clk/
4284 F:      include/linux/of_clk.h
4285 X:      drivers/clk/clkdev.c
4286
4287 COMMON INTERNET FILE SYSTEM (CIFS)
4288 M:      Steve French <sfrench@samba.org>
4289 L:      linux-cifs@vger.kernel.org
4290 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4291 S:      Supported
4292 W:      http://linux-cifs.samba.org/
4293 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4294 F:      Documentation/admin-guide/cifs/
4295 F:      fs/cifs/
4296
4297 COMPACTPCI HOTPLUG CORE
4298 M:      Scott Murray <scott@spiteful.org>
4299 L:      linux-pci@vger.kernel.org
4300 S:      Maintained
4301 F:      drivers/pci/hotplug/cpci_hotplug*
4302
4303 COMPACTPCI HOTPLUG GENERIC DRIVER
4304 M:      Scott Murray <scott@spiteful.org>
4305 L:      linux-pci@vger.kernel.org
4306 S:      Maintained
4307 F:      drivers/pci/hotplug/cpcihp_generic.c
4308
4309 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4310 M:      Scott Murray <scott@spiteful.org>
4311 L:      linux-pci@vger.kernel.org
4312 S:      Maintained
4313 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4314
4315 COMPAL LAPTOP SUPPORT
4316 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4317 L:      platform-driver-x86@vger.kernel.org
4318 S:      Maintained
4319 F:      drivers/platform/x86/compal-laptop.c
4320
4321 COMPILER ATTRIBUTES
4322 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4323 S:      Maintained
4324 F:      include/linux/compiler_attributes.h
4325
4326 CONEXANT ACCESSRUNNER USB DRIVER
4327 L:      accessrunner-general@lists.sourceforge.net
4328 S:      Orphan
4329 W:      http://accessrunner.sourceforge.net/
4330 F:      drivers/usb/atm/cxacru.c
4331
4332 CONFIGFS
4333 M:      Joel Becker <jlbec@evilplan.org>
4334 M:      Christoph Hellwig <hch@lst.de>
4335 S:      Supported
4336 T:      git git://git.infradead.org/users/hch/configfs.git
4337 F:      fs/configfs/
4338 F:      include/linux/configfs.h
4339
4340 CONNECTOR
4341 M:      Evgeniy Polyakov <zbr@ioremap.net>
4342 L:      netdev@vger.kernel.org
4343 S:      Maintained
4344 F:      drivers/connector/
4345
4346 CONTROL GROUP (CGROUP)
4347 M:      Tejun Heo <tj@kernel.org>
4348 M:      Li Zefan <lizefan@huawei.com>
4349 M:      Johannes Weiner <hannes@cmpxchg.org>
4350 L:      cgroups@vger.kernel.org
4351 S:      Maintained
4352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4353 F:      Documentation/admin-guide/cgroup-v1/
4354 F:      Documentation/admin-guide/cgroup-v2.rst
4355 F:      include/linux/cgroup*
4356 F:      kernel/cgroup/
4357
4358 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4359 M:      Tejun Heo <tj@kernel.org>
4360 M:      Jens Axboe <axboe@kernel.dk>
4361 L:      cgroups@vger.kernel.org
4362 L:      linux-block@vger.kernel.org
4363 T:      git git://git.kernel.dk/linux-block
4364 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4365 F:      block/bfq-cgroup.c
4366 F:      block/blk-cgroup.c
4367 F:      block/blk-iolatency.c
4368 F:      block/blk-throttle.c
4369 F:      include/linux/blk-cgroup.h
4370
4371 CONTROL GROUP - CPUSET
4372 M:      Li Zefan <lizefan@huawei.com>
4373 L:      cgroups@vger.kernel.org
4374 S:      Maintained
4375 W:      http://www.bullopensource.org/cpuset/
4376 W:      http://oss.sgi.com/projects/cpusets/
4377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4378 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4379 F:      include/linux/cpuset.h
4380 F:      kernel/cgroup/cpuset.c
4381
4382 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4383 M:      Johannes Weiner <hannes@cmpxchg.org>
4384 M:      Michal Hocko <mhocko@kernel.org>
4385 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4386 L:      cgroups@vger.kernel.org
4387 L:      linux-mm@kvack.org
4388 S:      Maintained
4389 F:      mm/memcontrol.c
4390 F:      mm/swap_cgroup.c
4391
4392 CORETEMP HARDWARE MONITORING DRIVER
4393 M:      Fenghua Yu <fenghua.yu@intel.com>
4394 L:      linux-hwmon@vger.kernel.org
4395 S:      Maintained
4396 F:      Documentation/hwmon/coretemp.rst
4397 F:      drivers/hwmon/coretemp.c
4398
4399 COSA/SRP SYNC SERIAL DRIVER
4400 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4401 S:      Maintained
4402 W:      http://www.fi.muni.cz/~kas/cosa/
4403 F:      drivers/net/wan/cosa*
4404
4405 COUNTER SUBSYSTEM
4406 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4407 L:      linux-iio@vger.kernel.org
4408 S:      Maintained
4409 F:      Documentation/ABI/testing/sysfs-bus-counter*
4410 F:      Documentation/driver-api/generic-counter.rst
4411 F:      drivers/counter/
4412 F:      include/linux/counter.h
4413 F:      include/linux/counter_enum.h
4414
4415 CPMAC ETHERNET DRIVER
4416 M:      Florian Fainelli <f.fainelli@gmail.com>
4417 L:      netdev@vger.kernel.org
4418 S:      Maintained
4419 F:      drivers/net/ethernet/ti/cpmac.c
4420
4421 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4422 M:      Viresh Kumar <viresh.kumar@linaro.org>
4423 M:      Sudeep Holla <sudeep.holla@arm.com>
4424 L:      linux-pm@vger.kernel.org
4425 S:      Maintained
4426 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4427 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4428
4429 CPU FREQUENCY SCALING FRAMEWORK
4430 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4431 M:      Viresh Kumar <viresh.kumar@linaro.org>
4432 L:      linux-pm@vger.kernel.org
4433 S:      Maintained
4434 B:      https://bugzilla.kernel.org
4435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4437 F:      Documentation/admin-guide/pm/cpufreq.rst
4438 F:      Documentation/admin-guide/pm/intel_pstate.rst
4439 F:      Documentation/cpu-freq/
4440 F:      Documentation/devicetree/bindings/cpufreq/
4441 F:      drivers/cpufreq/
4442 F:      include/linux/cpufreq.h
4443 F:      include/linux/sched/cpufreq.h
4444 F:      kernel/sched/cpufreq*.c
4445 F:      tools/testing/selftests/cpufreq/
4446
4447 CPU IDLE TIME MANAGEMENT FRAMEWORK
4448 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4449 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4450 L:      linux-pm@vger.kernel.org
4451 S:      Maintained
4452 B:      https://bugzilla.kernel.org
4453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4454 F:      Documentation/admin-guide/pm/cpuidle.rst
4455 F:      Documentation/driver-api/pm/cpuidle.rst
4456 F:      drivers/cpuidle/*
4457 F:      include/linux/cpuidle.h
4458
4459 CPU POWER MONITORING SUBSYSTEM
4460 M:      Thomas Renninger <trenn@suse.com>
4461 M:      Shuah Khan <shuah@kernel.org>
4462 M:      Shuah Khan <skhan@linuxfoundation.org>
4463 L:      linux-pm@vger.kernel.org
4464 S:      Maintained
4465 F:      tools/power/cpupower/
4466
4467 CPUID/MSR DRIVER
4468 M:      "H. Peter Anvin" <hpa@zytor.com>
4469 S:      Maintained
4470 F:      arch/x86/kernel/cpuid.c
4471 F:      arch/x86/kernel/msr.c
4472
4473 CPUIDLE DRIVER - ARM BIG LITTLE
4474 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4475 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4476 L:      linux-pm@vger.kernel.org
4477 L:      linux-arm-kernel@lists.infradead.org
4478 S:      Maintained
4479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4480 F:      drivers/cpuidle/cpuidle-big_little.c
4481
4482 CPUIDLE DRIVER - ARM EXYNOS
4483 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4484 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4485 M:      Kukjin Kim <kgene@kernel.org>
4486 L:      linux-pm@vger.kernel.org
4487 L:      linux-samsung-soc@vger.kernel.org
4488 S:      Supported
4489 F:      arch/arm/mach-exynos/pm.c
4490 F:      drivers/cpuidle/cpuidle-exynos.c
4491
4492 CPUIDLE DRIVER - ARM PSCI
4493 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4494 M:      Sudeep Holla <sudeep.holla@arm.com>
4495 L:      linux-pm@vger.kernel.org
4496 L:      linux-arm-kernel@lists.infradead.org
4497 S:      Supported
4498 F:      drivers/cpuidle/cpuidle-psci.c
4499
4500 CRAMFS FILESYSTEM
4501 M:      Nicolas Pitre <nico@fluxnic.net>
4502 S:      Maintained
4503 F:      Documentation/filesystems/cramfs.rst
4504 F:      fs/cramfs/
4505
4506 CREATIVE SB0540
4507 M:      Bastien Nocera <hadess@hadess.net>
4508 L:      linux-input@vger.kernel.org
4509 S:      Maintained
4510 F:      drivers/hid/hid-creative-sb0540.c
4511
4512 CRYPTO API
4513 M:      Herbert Xu <herbert@gondor.apana.org.au>
4514 M:      "David S. Miller" <davem@davemloft.net>
4515 L:      linux-crypto@vger.kernel.org
4516 S:      Maintained
4517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4519 F:      Documentation/crypto/
4520 F:      Documentation/devicetree/bindings/crypto/
4521 F:      arch/*/crypto/
4522 F:      crypto/
4523 F:      drivers/crypto/
4524 F:      include/crypto/
4525 F:      include/linux/crypto*
4526 F:      lib/crypto/
4527
4528 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4529 M:      Neil Horman <nhorman@tuxdriver.com>
4530 L:      linux-crypto@vger.kernel.org
4531 S:      Maintained
4532 F:      crypto/ansi_cprng.c
4533 F:      crypto/rng.c
4534
4535 CS3308 MEDIA DRIVER
4536 M:      Hans Verkuil <hverkuil@xs4all.nl>
4537 L:      linux-media@vger.kernel.org
4538 S:      Odd Fixes
4539 W:      http://linuxtv.org
4540 T:      git git://linuxtv.org/media_tree.git
4541 F:      drivers/media/i2c/cs3308.c
4542
4543 CS5535 Audio ALSA driver
4544 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4545 S:      Maintained
4546 F:      sound/pci/cs5535audio/
4547
4548 CSI DRIVERS FOR ALLWINNER V3s
4549 M:      Yong Deng <yong.deng@magewell.com>
4550 L:      linux-media@vger.kernel.org
4551 S:      Maintained
4552 T:      git git://linuxtv.org/media_tree.git
4553 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4554 F:      drivers/media/platform/sunxi/sun6i-csi/
4555
4556 CW1200 WLAN driver
4557 M:      Solomon Peachy <pizza@shaftnet.org>
4558 S:      Maintained
4559 F:      drivers/net/wireless/st/cw1200/
4560
4561 CX18 VIDEO4LINUX DRIVER
4562 M:      Andy Walls <awalls@md.metrocast.net>
4563 L:      linux-media@vger.kernel.org
4564 S:      Maintained
4565 W:      https://linuxtv.org
4566 T:      git git://linuxtv.org/media_tree.git
4567 F:      drivers/media/pci/cx18/
4568 F:      include/uapi/linux/ivtv*
4569
4570 CX2341X MPEG ENCODER HELPER MODULE
4571 M:      Hans Verkuil <hverkuil@xs4all.nl>
4572 L:      linux-media@vger.kernel.org
4573 S:      Maintained
4574 W:      https://linuxtv.org
4575 T:      git git://linuxtv.org/media_tree.git
4576 F:      drivers/media/common/cx2341x*
4577 F:      include/media/drv-intf/cx2341x.h
4578
4579 CX24120 MEDIA DRIVER
4580 M:      Jemma Denson <jdenson@gmail.com>
4581 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4582 L:      linux-media@vger.kernel.org
4583 S:      Maintained
4584 W:      https://linuxtv.org
4585 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4586 F:      drivers/media/dvb-frontends/cx24120*
4587
4588 CX88 VIDEO4LINUX DRIVER
4589 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4590 L:      linux-media@vger.kernel.org
4591 S:      Odd fixes
4592 W:      https://linuxtv.org
4593 T:      git git://linuxtv.org/media_tree.git
4594 F:      Documentation/driver-api/media/drivers/cx88*
4595 F:      drivers/media/pci/cx88/
4596
4597 CXD2820R MEDIA DRIVER
4598 M:      Antti Palosaari <crope@iki.fi>
4599 L:      linux-media@vger.kernel.org
4600 S:      Maintained
4601 W:      https://linuxtv.org
4602 W:      http://palosaari.fi/linux/
4603 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4604 T:      git git://linuxtv.org/anttip/media_tree.git
4605 F:      drivers/media/dvb-frontends/cxd2820r*
4606
4607 CXGB3 ETHERNET DRIVER (CXGB3)
4608 M:      Vishal Kulkarni <vishal@chelsio.com>
4609 L:      netdev@vger.kernel.org
4610 S:      Supported
4611 W:      http://www.chelsio.com
4612 F:      drivers/net/ethernet/chelsio/cxgb3/
4613
4614 CXGB3 ISCSI DRIVER (CXGB3I)
4615 M:      Karen Xie <kxie@chelsio.com>
4616 L:      linux-scsi@vger.kernel.org
4617 S:      Supported
4618 W:      http://www.chelsio.com
4619 F:      drivers/scsi/cxgbi/cxgb3i
4620
4621 CXGB4 CRYPTO DRIVER (chcr)
4622 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4623 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4624 M:      Rohit Maheshwari <rohitm@chelsio.com>
4625 L:      linux-crypto@vger.kernel.org
4626 S:      Supported
4627 W:      http://www.chelsio.com
4628 F:      drivers/crypto/chelsio
4629
4630 CXGB4 ETHERNET DRIVER (CXGB4)
4631 M:      Vishal Kulkarni <vishal@chelsio.com>
4632 L:      netdev@vger.kernel.org
4633 S:      Supported
4634 W:      http://www.chelsio.com
4635 F:      drivers/net/ethernet/chelsio/cxgb4/
4636
4637 CXGB4 ISCSI DRIVER (CXGB4I)
4638 M:      Karen Xie <kxie@chelsio.com>
4639 L:      linux-scsi@vger.kernel.org
4640 S:      Supported
4641 W:      http://www.chelsio.com
4642 F:      drivers/scsi/cxgbi/cxgb4i
4643
4644 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4645 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4646 L:      linux-rdma@vger.kernel.org
4647 S:      Supported
4648 W:      http://www.openfabrics.org
4649 F:      drivers/infiniband/hw/cxgb4/
4650 F:      include/uapi/rdma/cxgb4-abi.h
4651
4652 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4653 M:      Vishal Kulkarni <vishal@gmail.com>
4654 L:      netdev@vger.kernel.org
4655 S:      Supported
4656 W:      http://www.chelsio.com
4657 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4658
4659 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4660 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4661 M:      Andrew Donnellan <ajd@linux.ibm.com>
4662 L:      linuxppc-dev@lists.ozlabs.org
4663 S:      Supported
4664 F:      Documentation/ABI/testing/sysfs-class-cxl
4665 F:      Documentation/powerpc/cxl.rst
4666 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4667 F:      drivers/misc/cxl/
4668 F:      include/misc/cxl*
4669 F:      include/uapi/misc/cxl.h
4670
4671 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4672 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4673 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4674 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4675 L:      linux-scsi@vger.kernel.org
4676 S:      Supported
4677 F:      Documentation/powerpc/cxlflash.rst
4678 F:      drivers/scsi/cxlflash/
4679 F:      include/uapi/scsi/cxlflash_ioctl.h
4680
4681 CYBERPRO FB DRIVER
4682 M:      Russell King <linux@armlinux.org.uk>
4683 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4684 S:      Maintained
4685 W:      http://www.armlinux.org.uk/
4686 F:      drivers/video/fbdev/cyber2000fb.*
4687
4688 CYCLADES ASYNC MUX DRIVER
4689 S:      Orphan
4690 W:      http://www.cyclades.com/
4691 F:      drivers/tty/cyclades.c
4692 F:      include/linux/cyclades.h
4693 F:      include/uapi/linux/cyclades.h
4694
4695 CYCLADES PC300 DRIVER
4696 S:      Orphan
4697 W:      http://www.cyclades.com/
4698 F:      drivers/net/wan/pc300*
4699
4700 CYPRESS_FIRMWARE MEDIA DRIVER
4701 M:      Antti Palosaari <crope@iki.fi>
4702 L:      linux-media@vger.kernel.org
4703 S:      Maintained
4704 W:      https://linuxtv.org
4705 W:      http://palosaari.fi/linux/
4706 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4707 T:      git git://linuxtv.org/anttip/media_tree.git
4708 F:      drivers/media/common/cypress_firmware*
4709
4710 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
4711 M:      Linus Walleij <linus.walleij@linaro.org>
4712 L:      linux-input@vger.kernel.org
4713 S:      Maintained
4714 F:      drivers/input/touchscreen/cy8ctma140.c
4715
4716 CYTTSP TOUCHSCREEN DRIVER
4717 M:      Ferruh Yigit <fery@cypress.com>
4718 L:      linux-input@vger.kernel.org
4719 S:      Supported
4720 F:      drivers/input/touchscreen/cyttsp*
4721 F:      include/linux/input/cyttsp.h
4722
4723 D-LINK DIR-685 TOUCHKEYS DRIVER
4724 M:      Linus Walleij <linus.walleij@linaro.org>
4725 L:      linux-input@vger.kernel.org
4726 S:      Supported
4727 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4728
4729 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4730 M:      Joshua Kinard <kumba@gentoo.org>
4731 S:      Maintained
4732 F:      drivers/rtc/rtc-ds1685.c
4733 F:      include/linux/rtc/ds1685.h
4734
4735 DAMA SLAVE for AX.25
4736 M:      Joerg Reuter <jreuter@yaina.de>
4737 L:      linux-hams@vger.kernel.org
4738 S:      Maintained
4739 W:      http://yaina.de/jreuter/
4740 W:      http://www.qsl.net/dl1bke/
4741 F:      net/ax25/af_ax25.c
4742 F:      net/ax25/ax25_dev.c
4743 F:      net/ax25/ax25_ds_*
4744 F:      net/ax25/ax25_in.c
4745 F:      net/ax25/ax25_out.c
4746 F:      net/ax25/ax25_timer.c
4747 F:      net/ax25/sysctl_net_ax25.c
4748
4749 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4750 L:      netdev@vger.kernel.org
4751 S:      Orphan
4752 F:      Documentation/networking/device_drivers/dec/dmfe.rst
4753 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4754
4755 DC390/AM53C974 SCSI driver
4756 M:      Hannes Reinecke <hare@suse.com>
4757 L:      linux-scsi@vger.kernel.org
4758 S:      Maintained
4759 F:      drivers/scsi/am53c974.c
4760
4761 DC395x SCSI driver
4762 M:      Oliver Neukum <oliver@neukum.org>
4763 M:      Ali Akcaagac <aliakc@web.de>
4764 M:      Jamie Lenehan <lenehan@twibble.org>
4765 L:      dc395x@twibble.org
4766 S:      Maintained
4767 W:      http://twibble.org/dist/dc395x/
4768 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4769 F:      Documentation/scsi/dc395x.rst
4770 F:      drivers/scsi/dc395x.*
4771
4772 DCCP PROTOCOL
4773 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4774 L:      dccp@vger.kernel.org
4775 S:      Maintained
4776 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4777 F:      include/linux/dccp.h
4778 F:      include/linux/tfrc.h
4779 F:      include/uapi/linux/dccp.h
4780 F:      net/dccp/
4781
4782 DECnet NETWORK LAYER
4783 L:      linux-decnet-user@lists.sourceforge.net
4784 S:      Orphan
4785 W:      http://linux-decnet.sourceforge.net
4786 F:      Documentation/networking/decnet.rst
4787 F:      net/decnet/
4788
4789 DECSTATION PLATFORM SUPPORT
4790 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4791 L:      linux-mips@vger.kernel.org
4792 S:      Maintained
4793 W:      http://www.linux-mips.org/wiki/DECstation
4794 F:      arch/mips/dec/
4795 F:      arch/mips/include/asm/dec/
4796 F:      arch/mips/include/asm/mach-dec/
4797
4798 DEFXX FDDI NETWORK DRIVER
4799 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4800 S:      Maintained
4801 F:      drivers/net/fddi/defxx.*
4802
4803 DEFZA FDDI NETWORK DRIVER
4804 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4805 S:      Maintained
4806 F:      drivers/net/fddi/defza.*
4807
4808 DEINTERLACE DRIVERS FOR ALLWINNER H3
4809 M:      Jernej Skrabec <jernej.skrabec@siol.net>
4810 L:      linux-media@vger.kernel.org
4811 S:      Maintained
4812 T:      git git://linuxtv.org/media_tree.git
4813 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4814 F:      drivers/media/platform/sunxi/sun8i-di/
4815
4816 DELL LAPTOP DRIVER
4817 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4818 M:      Pali Rohár <pali@kernel.org>
4819 L:      platform-driver-x86@vger.kernel.org
4820 S:      Maintained
4821 F:      drivers/platform/x86/dell-laptop.c
4822
4823 DELL LAPTOP FREEFALL DRIVER
4824 M:      Pali Rohár <pali@kernel.org>
4825 S:      Maintained
4826 F:      drivers/platform/x86/dell-smo8800.c
4827
4828 DELL LAPTOP RBTN DRIVER
4829 M:      Pali Rohár <pali@kernel.org>
4830 S:      Maintained
4831 F:      drivers/platform/x86/dell-rbtn.*
4832
4833 DELL LAPTOP SMM DRIVER
4834 M:      Pali Rohár <pali@kernel.org>
4835 S:      Maintained
4836 F:      drivers/hwmon/dell-smm-hwmon.c
4837 F:      include/uapi/linux/i8k.h
4838
4839 DELL REMOTE BIOS UPDATE DRIVER
4840 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4841 L:      platform-driver-x86@vger.kernel.org
4842 S:      Maintained
4843 F:      drivers/platform/x86/dell_rbu.c
4844
4845 DELL SMBIOS DRIVER
4846 M:      Pali Rohár <pali@kernel.org>
4847 M:      Mario Limonciello <mario.limonciello@dell.com>
4848 L:      platform-driver-x86@vger.kernel.org
4849 S:      Maintained
4850 F:      drivers/platform/x86/dell-smbios.*
4851
4852 DELL SMBIOS SMM DRIVER
4853 M:      Mario Limonciello <mario.limonciello@dell.com>
4854 L:      platform-driver-x86@vger.kernel.org
4855 S:      Maintained
4856 F:      drivers/platform/x86/dell-smbios-smm.c
4857
4858 DELL SMBIOS WMI DRIVER
4859 M:      Mario Limonciello <mario.limonciello@dell.com>
4860 L:      platform-driver-x86@vger.kernel.org
4861 S:      Maintained
4862 F:      drivers/platform/x86/dell-smbios-wmi.c
4863 F:      tools/wmi/dell-smbios-example.c
4864
4865 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4866 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4867 L:      platform-driver-x86@vger.kernel.org
4868 S:      Maintained
4869 F:      Documentation/driver-api/dcdbas.rst
4870 F:      drivers/platform/x86/dcdbas.*
4871
4872 DELL WMI DESCRIPTOR DRIVER
4873 M:      Mario Limonciello <mario.limonciello@dell.com>
4874 S:      Maintained
4875 F:      drivers/platform/x86/dell-wmi-descriptor.c
4876
4877 DELL WMI NOTIFICATIONS DRIVER
4878 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4879 M:      Pali Rohár <pali@kernel.org>
4880 S:      Maintained
4881 F:      drivers/platform/x86/dell-wmi.c
4882
4883 DELTA ST MEDIA DRIVER
4884 M:      Hugues Fruchet <hugues.fruchet@st.com>
4885 L:      linux-media@vger.kernel.org
4886 S:      Supported
4887 W:      https://linuxtv.org
4888 T:      git git://linuxtv.org/media_tree.git
4889 F:      drivers/media/platform/sti/delta
4890
4891 DENALI NAND DRIVER
4892 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
4893 L:      linux-mtd@lists.infradead.org
4894 S:      Supported
4895 F:      drivers/mtd/nand/raw/denali*
4896
4897 DESIGNWARE EDMA CORE IP DRIVER
4898 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
4899 L:      dmaengine@vger.kernel.org
4900 S:      Maintained
4901 F:      drivers/dma/dw-edma/
4902 F:      include/linux/dma/edma.h
4903
4904 DESIGNWARE USB2 DRD IP DRIVER
4905 M:      Minas Harutyunyan <hminas@synopsys.com>
4906 L:      linux-usb@vger.kernel.org
4907 S:      Maintained
4908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4909 F:      drivers/usb/dwc2/
4910
4911 DESIGNWARE USB3 DRD IP DRIVER
4912 M:      Felipe Balbi <balbi@kernel.org>
4913 L:      linux-usb@vger.kernel.org
4914 S:      Maintained
4915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4916 F:      drivers/usb/dwc3/
4917
4918 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4919 M:      Andreas Klinger <ak@it-klinger.de>
4920 L:      linux-iio@vger.kernel.org
4921 S:      Maintained
4922 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4923 F:      drivers/iio/proximity/srf*.c
4924
4925 DEVICE COREDUMP (DEV_COREDUMP)
4926 M:      Johannes Berg <johannes@sipsolutions.net>
4927 L:      linux-kernel@vger.kernel.org
4928 S:      Maintained
4929 F:      drivers/base/devcoredump.c
4930 F:      include/linux/devcoredump.h
4931
4932 DEVICE DIRECT ACCESS (DAX)
4933 M:      Dan Williams <dan.j.williams@intel.com>
4934 M:      Vishal Verma <vishal.l.verma@intel.com>
4935 M:      Dave Jiang <dave.jiang@intel.com>
4936 L:      linux-nvdimm@lists.01.org
4937 S:      Supported
4938 F:      drivers/dax/
4939
4940 DEVICE FREQUENCY (DEVFREQ)
4941 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4942 M:      Kyungmin Park <kyungmin.park@samsung.com>
4943 M:      Chanwoo Choi <cw00.choi@samsung.com>
4944 L:      linux-pm@vger.kernel.org
4945 S:      Maintained
4946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4947 F:      Documentation/devicetree/bindings/devfreq/
4948 F:      drivers/devfreq/
4949 F:      include/linux/devfreq.h
4950 F:      include/trace/events/devfreq.h
4951
4952 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4953 M:      Chanwoo Choi <cw00.choi@samsung.com>
4954 L:      linux-pm@vger.kernel.org
4955 S:      Supported
4956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4957 F:      Documentation/devicetree/bindings/devfreq/event/
4958 F:      drivers/devfreq/devfreq-event.c
4959 F:      drivers/devfreq/event/
4960 F:      include/dt-bindings/pmu/exynos_ppmu.h
4961 F:      include/linux/devfreq-event.h
4962
4963 DEVICE NUMBER REGISTRY
4964 M:      Torben Mathiasen <device@lanana.org>
4965 S:      Maintained
4966 W:      http://lanana.org/docs/device-list/index.html
4967
4968 DEVICE-MAPPER  (LVM)
4969 M:      Alasdair Kergon <agk@redhat.com>
4970 M:      Mike Snitzer <snitzer@redhat.com>
4971 M:      dm-devel@redhat.com
4972 L:      dm-devel@redhat.com
4973 S:      Maintained
4974 W:      http://sources.redhat.com/dm
4975 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4977 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4978 F:      Documentation/admin-guide/device-mapper/
4979 F:      drivers/md/Kconfig
4980 F:      drivers/md/Makefile
4981 F:      drivers/md/dm*
4982 F:      drivers/md/persistent-data/
4983 F:      include/linux/device-mapper.h
4984 F:      include/linux/dm-*.h
4985 F:      include/uapi/linux/dm-*.h
4986
4987 DEVLINK
4988 M:      Jiri Pirko <jiri@mellanox.com>
4989 L:      netdev@vger.kernel.org
4990 S:      Supported
4991 F:      Documentation/networking/devlink
4992 F:      include/net/devlink.h
4993 F:      include/uapi/linux/devlink.h
4994 F:      net/core/devlink.c
4995
4996 DIALOG SEMICONDUCTOR DRIVERS
4997 M:      Support Opensource <support.opensource@diasemi.com>
4998 S:      Supported
4999 W:      http://www.dialog-semiconductor.com/products
5000 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5001 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5002 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5003 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5004 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5005 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5006 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5007 F:      Documentation/hwmon/da90??.rst
5008 F:      drivers/gpio/gpio-da90??.c
5009 F:      drivers/hwmon/da90??-hwmon.c
5010 F:      drivers/iio/adc/da91??-*.c
5011 F:      drivers/input/misc/da90??_onkey.c
5012 F:      drivers/input/touchscreen/da9052_tsi.c
5013 F:      drivers/leds/leds-da90??.c
5014 F:      drivers/mfd/da903x.c
5015 F:      drivers/mfd/da90??-*.c
5016 F:      drivers/mfd/da91??-*.c
5017 F:      drivers/pinctrl/pinctrl-da90??.c
5018 F:      drivers/power/supply/da9052-battery.c
5019 F:      drivers/power/supply/da91??-*.c
5020 F:      drivers/regulator/da9???-regulator.[ch]
5021 F:      drivers/regulator/slg51000-regulator.[ch]
5022 F:      drivers/rtc/rtc-da90??.c
5023 F:      drivers/thermal/da90??-thermal.c
5024 F:      drivers/video/backlight/da90??_bl.c
5025 F:      drivers/watchdog/da90??_wdt.c
5026 F:      include/linux/mfd/da903x.h
5027 F:      include/linux/mfd/da9052/
5028 F:      include/linux/mfd/da9055/
5029 F:      include/linux/mfd/da9062/
5030 F:      include/linux/mfd/da9063/
5031 F:      include/linux/mfd/da9150/
5032 F:      include/linux/regulator/da9211.h
5033 F:      include/sound/da[79]*.h
5034 F:      sound/soc/codecs/da[79]*.[ch]
5035
5036 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5037 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5038 L:      linux-gpio@vger.kernel.org
5039 S:      Maintained
5040 F:      drivers/gpio/gpio-gpio-mm.c
5041
5042 DIOLAN U2C-12 I2C DRIVER
5043 M:      Guenter Roeck <linux@roeck-us.net>
5044 L:      linux-i2c@vger.kernel.org
5045 S:      Maintained
5046 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5047
5048 DIRECTORY NOTIFICATION (DNOTIFY)
5049 M:      Jan Kara <jack@suse.cz>
5050 R:      Amir Goldstein <amir73il@gmail.com>
5051 L:      linux-fsdevel@vger.kernel.org
5052 S:      Maintained
5053 F:      Documentation/filesystems/dnotify.rst
5054 F:      fs/notify/dnotify/
5055 F:      include/linux/dnotify.h
5056
5057 DISK GEOMETRY AND PARTITION HANDLING
5058 M:      Andries Brouwer <aeb@cwi.nl>
5059 S:      Maintained
5060 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5061 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5062 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5063
5064 DISKQUOTA
5065 M:      Jan Kara <jack@suse.com>
5066 S:      Maintained
5067 F:      Documentation/filesystems/quota.rst
5068 F:      fs/quota/
5069 F:      include/linux/quota*.h
5070 F:      include/uapi/linux/quota*.h
5071
5072 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5073 M:      Bernie Thompson <bernie@plugable.com>
5074 L:      linux-fbdev@vger.kernel.org
5075 S:      Maintained
5076 W:      http://plugable.com/category/projects/udlfb/
5077 F:      Documentation/fb/udlfb.rst
5078 F:      drivers/video/fbdev/udlfb.c
5079 F:      include/video/udlfb.h
5080
5081 DISTRIBUTED LOCK MANAGER (DLM)
5082 M:      Christine Caulfield <ccaulfie@redhat.com>
5083 M:      David Teigland <teigland@redhat.com>
5084 L:      cluster-devel@redhat.com
5085 S:      Supported
5086 W:      http://sources.redhat.com/cluster/
5087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5088 F:      fs/dlm/
5089
5090 DMA BUFFER SHARING FRAMEWORK
5091 M:      Sumit Semwal <sumit.semwal@linaro.org>
5092 M:      Christian König <christian.koenig@amd.com>
5093 L:      linux-media@vger.kernel.org
5094 L:      dri-devel@lists.freedesktop.org
5095 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5096 S:      Maintained
5097 T:      git git://anongit.freedesktop.org/drm/drm-misc
5098 F:      Documentation/driver-api/dma-buf.rst
5099 F:      drivers/dma-buf/
5100 F:      include/linux/*fence.h
5101 F:      include/linux/dma-buf*
5102 F:      include/linux/dma-resv.h
5103 K:      \bdma_(?:buf|fence|resv)\b
5104
5105 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5106 M:      Vinod Koul <vkoul@kernel.org>
5107 L:      dmaengine@vger.kernel.org
5108 S:      Maintained
5109 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5111 F:      Documentation/devicetree/bindings/dma/
5112 F:      Documentation/driver-api/dmaengine/
5113 F:      drivers/dma/
5114 F:      include/linux/dmaengine.h
5115 F:      include/linux/of_dma.h
5116
5117 DMA MAPPING HELPERS
5118 M:      Christoph Hellwig <hch@lst.de>
5119 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5120 R:      Robin Murphy <robin.murphy@arm.com>
5121 L:      iommu@lists.linux-foundation.org
5122 S:      Supported
5123 W:      http://git.infradead.org/users/hch/dma-mapping.git
5124 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5125 F:      include/asm-generic/dma-mapping.h
5126 F:      include/linux/dma-direct.h
5127 F:      include/linux/dma-mapping.h
5128 F:      include/linux/dma-noncoherent.h
5129 F:      kernel/dma/
5130
5131 DMA-BUF HEAPS FRAMEWORK
5132 M:      Sumit Semwal <sumit.semwal@linaro.org>
5133 R:      Andrew F. Davis <afd@ti.com>
5134 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5135 R:      Liam Mark <lmark@codeaurora.org>
5136 R:      Laura Abbott <labbott@redhat.com>
5137 R:      Brian Starkey <Brian.Starkey@arm.com>
5138 R:      John Stultz <john.stultz@linaro.org>
5139 L:      linux-media@vger.kernel.org
5140 L:      dri-devel@lists.freedesktop.org
5141 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5142 S:      Maintained
5143 T:      git git://anongit.freedesktop.org/drm/drm-misc
5144 F:      drivers/dma-buf/dma-heap.c
5145 F:      drivers/dma-buf/heaps/*
5146 F:      include/linux/dma-heap.h
5147 F:      include/uapi/linux/dma-heap.h
5148
5149 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5150 M:      Lukasz Luba <lukasz.luba@arm.com>
5151 L:      linux-pm@vger.kernel.org
5152 L:      linux-samsung-soc@vger.kernel.org
5153 S:      Maintained
5154 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5155 F:      drivers/memory/samsung/exynos5422-dmc.c
5156
5157 DME1737 HARDWARE MONITOR DRIVER
5158 M:      Juerg Haefliger <juergh@gmail.com>
5159 L:      linux-hwmon@vger.kernel.org
5160 S:      Maintained
5161 F:      Documentation/hwmon/dme1737.rst
5162 F:      drivers/hwmon/dme1737.c
5163
5164 DMI/SMBIOS SUPPORT
5165 M:      Jean Delvare <jdelvare@suse.com>
5166 S:      Maintained
5167 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5168 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5169 F:      drivers/firmware/dmi-id.c
5170 F:      drivers/firmware/dmi_scan.c
5171 F:      include/linux/dmi.h
5172
5173 DOCUMENTATION
5174 M:      Jonathan Corbet <corbet@lwn.net>
5175 L:      linux-doc@vger.kernel.org
5176 S:      Maintained
5177 T:      git git://git.lwn.net/linux.git docs-next
5178 F:      Documentation/
5179 F:      scripts/documentation-file-ref-check
5180 F:      scripts/kernel-doc
5181 F:      scripts/sphinx-pre-install
5182 X:      Documentation/ABI/
5183 X:      Documentation/admin-guide/media/
5184 X:      Documentation/devicetree/
5185 X:      Documentation/driver-api/media/
5186 X:      Documentation/firmware-guide/acpi/
5187 X:      Documentation/i2c/
5188 X:      Documentation/power/
5189 X:      Documentation/spi/
5190 X:      Documentation/userspace-api/media/
5191
5192 DOCUMENTATION SCRIPTS
5193 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5194 L:      linux-doc@vger.kernel.org
5195 S:      Maintained
5196 F:      Documentation/sphinx/parse-headers.pl
5197 F:      scripts/documentation-file-ref-check
5198 F:      scripts/sphinx-pre-install
5199
5200 DOCUMENTATION/ITALIAN
5201 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5202 L:      linux-doc@vger.kernel.org
5203 S:      Maintained
5204 F:      Documentation/translations/it_IT
5205
5206 DONGWOON DW9714 LENS VOICE COIL DRIVER
5207 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5208 L:      linux-media@vger.kernel.org
5209 S:      Maintained
5210 T:      git git://linuxtv.org/media_tree.git
5211 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5212 F:      drivers/media/i2c/dw9714.c
5213
5214 DONGWOON DW9807 LENS VOICE COIL DRIVER
5215 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5216 L:      linux-media@vger.kernel.org
5217 S:      Maintained
5218 T:      git git://linuxtv.org/media_tree.git
5219 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5220 F:      drivers/media/i2c/dw9807-vcm.c
5221
5222 DOUBLETALK DRIVER
5223 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5224 L:      blinux-list@redhat.com
5225 S:      Maintained
5226 F:      drivers/char/dtlk.c
5227 F:      include/linux/dtlk.h
5228
5229 DPAA2 DATAPATH I/O (DPIO) DRIVER
5230 M:      Roy Pledge <Roy.Pledge@nxp.com>
5231 L:      linux-kernel@vger.kernel.org
5232 S:      Maintained
5233 F:      drivers/soc/fsl/dpio
5234
5235 DPAA2 ETHERNET DRIVER
5236 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5237 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5238 L:      netdev@vger.kernel.org
5239 S:      Maintained
5240 F:      Documentation/networking/device_drivers/freescale/dpaa2/ethernet-driver.rst
5241 F:      Documentation/networking/device_drivers/freescale/dpaa2/mac-phy-support.rst
5242 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5243 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5244 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5245 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5246 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5247 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5248 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5249
5250 DPAA2 ETHERNET SWITCH DRIVER
5251 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5252 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5253 L:      linux-kernel@vger.kernel.org
5254 S:      Maintained
5255 F:      drivers/staging/fsl-dpaa2/ethsw
5256
5257 DPT_I2O SCSI RAID DRIVER
5258 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5259 L:      linux-scsi@vger.kernel.org
5260 S:      Maintained
5261 W:      http://www.adaptec.com/
5262 F:      drivers/scsi/dpt*
5263 F:      drivers/scsi/dpt/
5264
5265 DRBD DRIVER
5266 M:      Philipp Reisner <philipp.reisner@linbit.com>
5267 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5268 L:      drbd-dev@lists.linbit.com
5269 S:      Supported
5270 W:      http://www.drbd.org
5271 T:      git git://git.linbit.com/linux-drbd.git
5272 T:      git git://git.linbit.com/drbd-8.4.git
5273 F:      Documentation/admin-guide/blockdev/
5274 F:      drivers/block/drbd/
5275 F:      lib/lru_cache.c
5276
5277 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5278 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5279 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5280 S:      Supported
5281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5282 F:      Documentation/core-api/kobject.rst
5283 F:      drivers/base/
5284 F:      fs/debugfs/
5285 F:      fs/sysfs/
5286 F:      include/linux/debugfs.h
5287 F:      include/linux/kobj*
5288 F:      lib/kobj*
5289
5290 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
5291 M:      Kevin Hilman <khilman@kernel.org>
5292 M:      Nishanth Menon <nm@ti.com>
5293 L:      linux-pm@vger.kernel.org
5294 S:      Maintained
5295 F:      drivers/power/avs/
5296 F:      include/linux/power/smartreflex.h
5297
5298 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5299 M:      Maxime Ripard <mripard@kernel.org>
5300 M:      Chen-Yu Tsai <wens@csie.org>
5301 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5302 L:      dri-devel@lists.freedesktop.org
5303 S:      Supported
5304 T:      git git://anongit.freedesktop.org/drm/drm-misc
5305 F:      drivers/gpu/drm/sun4i/sun8i*
5306
5307 DRM DRIVER FOR ARM PL111 CLCD
5308 M:      Eric Anholt <eric@anholt.net>
5309 S:      Supported
5310 T:      git git://anongit.freedesktop.org/drm/drm-misc
5311 F:      drivers/gpu/drm/pl111/
5312
5313 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5314 M:      Linus Walleij <linus.walleij@linaro.org>
5315 S:      Maintained
5316 T:      git git://anongit.freedesktop.org/drm/drm-misc
5317 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5318 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5319
5320 DRM DRIVER FOR ASPEED BMC GFX
5321 M:      Joel Stanley <joel@jms.id.au>
5322 L:      linux-aspeed@lists.ozlabs.org
5323 S:      Supported
5324 T:      git git://anongit.freedesktop.org/drm/drm-misc
5325 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5326 F:      drivers/gpu/drm/aspeed/
5327
5328 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5329 M:      Dave Airlie <airlied@redhat.com>
5330 S:      Odd Fixes
5331 F:      drivers/gpu/drm/ast/
5332
5333 DRM DRIVER FOR BOCHS VIRTUAL GPU
5334 M:      Gerd Hoffmann <kraxel@redhat.com>
5335 L:      virtualization@lists.linux-foundation.org
5336 S:      Maintained
5337 T:      git git://anongit.freedesktop.org/drm/drm-misc
5338 F:      drivers/gpu/drm/bochs/
5339
5340 DRM DRIVER FOR BOE HIMAX8279D PANELS
5341 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5342 S:      Maintained
5343 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5344 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5345
5346 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5347 M:      Linus Walleij <linus.walleij@linaro.org>
5348 S:      Maintained
5349 T:      git git://anongit.freedesktop.org/drm/drm-misc
5350 F:      drivers/gpu/drm/tve200/
5351
5352 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5353 M:      Icenowy Zheng <icenowy@aosc.io>
5354 S:      Maintained
5355 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5356 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5357
5358 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5359 M:      Jagan Teki <jagan@amarulasolutions.com>
5360 S:      Maintained
5361 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5362 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5363
5364 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5365 M:      Hans de Goede <hdegoede@redhat.com>
5366 S:      Maintained
5367 T:      git git://anongit.freedesktop.org/drm/drm-misc
5368 F:      drivers/gpu/drm/tiny/gm12u320.c
5369
5370 DRM DRIVER FOR HX8357D PANELS
5371 M:      Eric Anholt <eric@anholt.net>
5372 S:      Maintained
5373 T:      git git://anongit.freedesktop.org/drm/drm-misc
5374 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5375 F:      drivers/gpu/drm/tiny/hx8357d.c
5376
5377 DRM DRIVER FOR ILITEK ILI9225 PANELS
5378 M:      David Lechner <david@lechnology.com>
5379 S:      Maintained
5380 T:      git git://anongit.freedesktop.org/drm/drm-misc
5381 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5382 F:      drivers/gpu/drm/tiny/ili9225.c
5383
5384 DRM DRIVER FOR ILITEK ILI9486 PANELS
5385 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5386 S:      Maintained
5387 T:      git git://anongit.freedesktop.org/drm/drm-misc
5388 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5389 F:      drivers/gpu/drm/tiny/ili9486.c
5390
5391 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5392 S:      Orphan / Obsolete
5393 F:      drivers/gpu/drm/i810/
5394 F:      include/uapi/drm/i810_drm.h
5395
5396 DRM DRIVER FOR LVDS PANELS
5397 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5398 L:      dri-devel@lists.freedesktop.org
5399 T:      git git://anongit.freedesktop.org/drm/drm-misc
5400 S:      Maintained
5401 F:      drivers/gpu/drm/panel/panel-lvds.c
5402 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5403
5404 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5405 S:      Orphan / Obsolete
5406 F:      drivers/gpu/drm/mga/
5407 F:      include/uapi/drm/mga_drm.h
5408
5409 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
5410 M:      Dave Airlie <airlied@redhat.com>
5411 S:      Odd Fixes
5412 F:      drivers/gpu/drm/mgag200/
5413
5414 DRM DRIVER FOR MI0283QT
5415 M:      Noralf Trønnes <noralf@tronnes.org>
5416 S:      Maintained
5417 T:      git git://anongit.freedesktop.org/drm/drm-misc
5418 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5419 F:      drivers/gpu/drm/tiny/mi0283qt.c
5420
5421 DRM DRIVER FOR MSM ADRENO GPU
5422 M:      Rob Clark <robdclark@gmail.com>
5423 M:      Sean Paul <sean@poorly.run>
5424 L:      linux-arm-msm@vger.kernel.org
5425 L:      dri-devel@lists.freedesktop.org
5426 L:      freedreno@lists.freedesktop.org
5427 S:      Maintained
5428 T:      git https://gitlab.freedesktop.org/drm/msm.git
5429 F:      Documentation/devicetree/bindings/display/msm/
5430 F:      drivers/gpu/drm/msm/
5431 F:      include/uapi/drm/msm_drm.h
5432
5433 DRM DRIVER FOR NOVATEK NT35510 PANELS
5434 M:      Linus Walleij <linus.walleij@linaro.org>
5435 S:      Maintained
5436 T:      git git://anongit.freedesktop.org/drm/drm-misc
5437 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5438 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5439
5440 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5441 M:      Ben Skeggs <bskeggs@redhat.com>
5442 L:      dri-devel@lists.freedesktop.org
5443 L:      nouveau@lists.freedesktop.org
5444 S:      Supported
5445 T:      git git://github.com/skeggsb/linux
5446 F:      drivers/gpu/drm/nouveau/
5447 F:      include/uapi/drm/nouveau_drm.h
5448
5449 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5450 M:      Stefan Mavrodiev <stefan@olimex.com>
5451 S:      Maintained
5452 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5453 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5454
5455 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5456 M:      Noralf Trønnes <noralf@tronnes.org>
5457 S:      Maintained
5458 T:      git git://anongit.freedesktop.org/drm/drm-misc
5459 F:      Documentation/devicetree/bindings/display/repaper.txt
5460 F:      drivers/gpu/drm/tiny/repaper.c
5461
5462 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5463 M:      Dave Airlie <airlied@redhat.com>
5464 M:      Gerd Hoffmann <kraxel@redhat.com>
5465 L:      virtualization@lists.linux-foundation.org
5466 S:      Obsolete
5467 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5468 T:      git git://anongit.freedesktop.org/drm/drm-misc
5469 F:      drivers/gpu/drm/tiny/cirrus.c
5470
5471 DRM DRIVER FOR QXL VIRTUAL GPU
5472 M:      Dave Airlie <airlied@redhat.com>
5473 M:      Gerd Hoffmann <kraxel@redhat.com>
5474 L:      virtualization@lists.linux-foundation.org
5475 L:      spice-devel@lists.freedesktop.org
5476 S:      Maintained
5477 T:      git git://anongit.freedesktop.org/drm/drm-misc
5478 F:      drivers/gpu/drm/qxl/
5479 F:      include/uapi/drm/qxl_drm.h
5480
5481 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5482 S:      Orphan / Obsolete
5483 F:      drivers/gpu/drm/r128/
5484 F:      include/uapi/drm/r128_drm.h
5485
5486 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5487 M:      Robert Chiras <robert.chiras@nxp.com>
5488 S:      Maintained
5489 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5490 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5491
5492 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5493 M:      Guido Günther <agx@sigxcpu.org>
5494 R:      Purism Kernel Team <kernel@puri.sm>
5495 S:      Maintained
5496 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5497 F:      drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5498
5499 DRM DRIVER FOR SAVAGE VIDEO CARDS
5500 S:      Orphan / Obsolete
5501 F:      drivers/gpu/drm/savage/
5502 F:      include/uapi/drm/savage_drm.h
5503
5504 DRM DRIVER FOR SIS VIDEO CARDS
5505 S:      Orphan / Obsolete
5506 F:      drivers/gpu/drm/sis/
5507 F:      include/uapi/drm/sis_drm.h
5508
5509 DRM DRIVER FOR SITRONIX ST7586 PANELS
5510 M:      David Lechner <david@lechnology.com>
5511 S:      Maintained
5512 T:      git git://anongit.freedesktop.org/drm/drm-misc
5513 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5514 F:      drivers/gpu/drm/tiny/st7586.c
5515
5516 DRM DRIVER FOR SITRONIX ST7701 PANELS
5517 M:      Jagan Teki <jagan@amarulasolutions.com>
5518 S:      Maintained
5519 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5520 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5521
5522 DRM DRIVER FOR SITRONIX ST7735R PANELS
5523 M:      David Lechner <david@lechnology.com>
5524 S:      Maintained
5525 T:      git git://anongit.freedesktop.org/drm/drm-misc
5526 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5527 F:      drivers/gpu/drm/tiny/st7735r.c
5528
5529 DRM DRIVER FOR SONY ACX424AKP PANELS
5530 M:      Linus Walleij <linus.walleij@linaro.org>
5531 S:      Maintained
5532 T:      git git://anongit.freedesktop.org/drm/drm-misc
5533 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5534
5535 DRM DRIVER FOR ST-ERICSSON MCDE
5536 M:      Linus Walleij <linus.walleij@linaro.org>
5537 S:      Maintained
5538 T:      git git://anongit.freedesktop.org/drm/drm-misc
5539 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5540 F:      drivers/gpu/drm/mcde/
5541
5542 DRM DRIVER FOR TDFX VIDEO CARDS
5543 S:      Orphan / Obsolete
5544 F:      drivers/gpu/drm/tdfx/
5545
5546 DRM DRIVER FOR TPO TPG110 PANELS
5547 M:      Linus Walleij <linus.walleij@linaro.org>
5548 S:      Maintained
5549 T:      git git://anongit.freedesktop.org/drm/drm-misc
5550 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5551 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5552
5553 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5554 M:      Dave Airlie <airlied@redhat.com>
5555 R:      Sean Paul <sean@poorly.run>
5556 L:      dri-devel@lists.freedesktop.org
5557 S:      Odd Fixes
5558 T:      git git://anongit.freedesktop.org/drm/drm-misc
5559 F:      drivers/gpu/drm/udl/
5560
5561 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5562 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5563 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5564 R:      Daniel Vetter <daniel@ffwll.ch>
5565 L:      dri-devel@lists.freedesktop.org
5566 S:      Maintained
5567 T:      git git://anongit.freedesktop.org/drm/drm-misc
5568 F:      Documentation/gpu/vkms.rst
5569 F:      drivers/gpu/drm/vkms/
5570
5571 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5572 M:      Hans de Goede <hdegoede@redhat.com>
5573 L:      dri-devel@lists.freedesktop.org
5574 S:      Maintained
5575 T:      git git://anongit.freedesktop.org/drm/drm-misc
5576 F:      drivers/gpu/drm/vboxvideo/
5577
5578 DRM DRIVER FOR VMWARE VIRTUAL GPU
5579 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5580 M:      Roland Scheidegger <sroland@vmware.com>
5581 L:      dri-devel@lists.freedesktop.org
5582 S:      Supported
5583 T:      git git://people.freedesktop.org/~sroland/linux
5584 F:      drivers/gpu/drm/vmwgfx/
5585 F:      include/uapi/drm/vmwgfx_drm.h
5586
5587 DRM DRIVERS
5588 M:      David Airlie <airlied@linux.ie>
5589 M:      Daniel Vetter <daniel@ffwll.ch>
5590 L:      dri-devel@lists.freedesktop.org
5591 S:      Maintained
5592 B:      https://bugs.freedesktop.org/
5593 C:      irc://chat.freenode.net/dri-devel
5594 T:      git git://anongit.freedesktop.org/drm/drm
5595 F:      Documentation/devicetree/bindings/display/
5596 F:      Documentation/devicetree/bindings/gpu/
5597 F:      Documentation/gpu/
5598 F:      drivers/gpu/drm/
5599 F:      drivers/gpu/vga/
5600 F:      include/drm/
5601 F:      include/linux/vga*
5602 F:      include/uapi/drm/
5603
5604 DRM DRIVERS AND MISC GPU PATCHES
5605 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5606 M:      Maxime Ripard <mripard@kernel.org>
5607 M:      Thomas Zimmermann <tzimmermann@suse.de>
5608 S:      Maintained
5609 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5610 T:      git git://anongit.freedesktop.org/drm/drm-misc
5611 F:      Documentation/gpu/
5612 F:      drivers/gpu/drm/*
5613 F:      drivers/gpu/vga/
5614 F:      include/drm/drm*
5615 F:      include/linux/vga*
5616 F:      include/uapi/drm/drm*
5617
5618 DRM DRIVERS FOR ALLWINNER A10
5619 M:      Maxime Ripard <mripard@kernel.org>
5620 M:      Chen-Yu Tsai <wens@csie.org>
5621 L:      dri-devel@lists.freedesktop.org
5622 S:      Supported
5623 T:      git git://anongit.freedesktop.org/drm/drm-misc
5624 F:      Documentation/devicetree/bindings/display/allwinner*
5625 F:      drivers/gpu/drm/sun4i/
5626
5627 DRM DRIVERS FOR AMLOGIC SOCS
5628 M:      Neil Armstrong <narmstrong@baylibre.com>
5629 L:      dri-devel@lists.freedesktop.org
5630 L:      linux-amlogic@lists.infradead.org
5631 S:      Supported
5632 W:      http://linux-meson.com/
5633 T:      git git://anongit.freedesktop.org/drm/drm-misc
5634 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5635 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5636 F:      Documentation/gpu/meson.rst
5637 F:      drivers/gpu/drm/meson/
5638
5639 DRM DRIVERS FOR ATMEL HLCDC
5640 M:      Sam Ravnborg <sam@ravnborg.org>
5641 M:      Boris Brezillon <bbrezillon@kernel.org>
5642 L:      dri-devel@lists.freedesktop.org
5643 S:      Supported
5644 T:      git git://anongit.freedesktop.org/drm/drm-misc
5645 F:      Documentation/devicetree/bindings/display/atmel/
5646 F:      drivers/gpu/drm/atmel-hlcdc/
5647
5648 DRM DRIVERS FOR BRIDGE CHIPS
5649 M:      Andrzej Hajda <a.hajda@samsung.com>
5650 M:      Neil Armstrong <narmstrong@baylibre.com>
5651 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5652 R:      Jonas Karlman <jonas@kwiboo.se>
5653 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5654 S:      Maintained
5655 T:      git git://anongit.freedesktop.org/drm/drm-misc
5656 F:      drivers/gpu/drm/bridge/
5657
5658 DRM DRIVERS FOR EXYNOS
5659 M:      Inki Dae <inki.dae@samsung.com>
5660 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5661 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5662 M:      Kyungmin Park <kyungmin.park@samsung.com>
5663 L:      dri-devel@lists.freedesktop.org
5664 S:      Supported
5665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5666 F:      Documentation/devicetree/bindings/display/exynos/
5667 F:      drivers/gpu/drm/exynos/
5668 F:      include/uapi/drm/exynos_drm.h
5669
5670 DRM DRIVERS FOR FREESCALE DCU
5671 M:      Stefan Agner <stefan@agner.ch>
5672 M:      Alison Wang <alison.wang@nxp.com>
5673 L:      dri-devel@lists.freedesktop.org
5674 S:      Supported
5675 T:      git git://anongit.freedesktop.org/drm/drm-misc
5676 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5677 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5678 F:      drivers/gpu/drm/fsl-dcu/
5679
5680 DRM DRIVERS FOR FREESCALE IMX
5681 M:      Philipp Zabel <p.zabel@pengutronix.de>
5682 L:      dri-devel@lists.freedesktop.org
5683 S:      Maintained
5684 F:      Documentation/devicetree/bindings/display/imx/
5685 F:      drivers/gpu/drm/imx/
5686 F:      drivers/gpu/ipu-v3/
5687
5688 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5689 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5690 L:      dri-devel@lists.freedesktop.org
5691 S:      Maintained
5692 T:      git git://github.com/patjak/drm-gma500
5693 F:      drivers/gpu/drm/gma500/
5694
5695 DRM DRIVERS FOR HISILICON
5696 M:      Xinliang Liu <xinliang.liu@linaro.org>
5697 M:      Rongrong Zou <zourongrong@gmail.com>
5698 R:      John Stultz <john.stultz@linaro.org>
5699 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5700 R:      Chen Feng <puck.chen@hisilicon.com>
5701 L:      dri-devel@lists.freedesktop.org
5702 S:      Maintained
5703 T:      git git://anongit.freedesktop.org/drm/drm-misc
5704 F:      Documentation/devicetree/bindings/display/hisilicon/
5705 F:      drivers/gpu/drm/hisilicon/
5706
5707 DRM DRIVERS FOR LIMA
5708 M:      Qiang Yu <yuq825@gmail.com>
5709 L:      dri-devel@lists.freedesktop.org
5710 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5711 S:      Maintained
5712 T:      git git://anongit.freedesktop.org/drm/drm-misc
5713 F:      drivers/gpu/drm/lima/
5714 F:      include/uapi/drm/lima_drm.h
5715
5716 DRM DRIVERS FOR MEDIATEK
5717 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
5718 M:      Philipp Zabel <p.zabel@pengutronix.de>
5719 L:      dri-devel@lists.freedesktop.org
5720 S:      Supported
5721 F:      Documentation/devicetree/bindings/display/mediatek/
5722 F:      drivers/gpu/drm/mediatek/
5723
5724 DRM DRIVERS FOR NVIDIA TEGRA
5725 M:      Thierry Reding <thierry.reding@gmail.com>
5726 L:      dri-devel@lists.freedesktop.org
5727 L:      linux-tegra@vger.kernel.org
5728 S:      Supported
5729 T:      git git://anongit.freedesktop.org/tegra/linux.git
5730 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5731 F:      drivers/gpu/drm/tegra/
5732 F:      drivers/gpu/host1x/
5733 F:      include/linux/host1x.h
5734 F:      include/uapi/drm/tegra_drm.h
5735
5736 DRM DRIVERS FOR RENESAS
5737 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5738 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5739 L:      dri-devel@lists.freedesktop.org
5740 L:      linux-renesas-soc@vger.kernel.org
5741 S:      Supported
5742 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5743 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5744 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5745 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5746 F:      drivers/gpu/drm/rcar-du/
5747 F:      drivers/gpu/drm/shmobile/
5748 F:      include/linux/platform_data/shmob_drm.h
5749
5750 DRM DRIVERS FOR ROCKCHIP
5751 M:      Sandy Huang <hjc@rock-chips.com>
5752 M:      Heiko Stübner <heiko@sntech.de>
5753 L:      dri-devel@lists.freedesktop.org
5754 S:      Maintained
5755 T:      git git://anongit.freedesktop.org/drm/drm-misc
5756 F:      Documentation/devicetree/bindings/display/rockchip/
5757 F:      drivers/gpu/drm/rockchip/
5758
5759 DRM DRIVERS FOR STI
5760 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5761 M:      Vincent Abriou <vincent.abriou@st.com>
5762 L:      dri-devel@lists.freedesktop.org
5763 S:      Maintained
5764 T:      git git://anongit.freedesktop.org/drm/drm-misc
5765 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5766 F:      drivers/gpu/drm/sti
5767
5768 DRM DRIVERS FOR STM
5769 M:      Yannick Fertre <yannick.fertre@st.com>
5770 M:      Philippe Cornu <philippe.cornu@st.com>
5771 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5772 M:      Vincent Abriou <vincent.abriou@st.com>
5773 L:      dri-devel@lists.freedesktop.org
5774 S:      Maintained
5775 T:      git git://anongit.freedesktop.org/drm/drm-misc
5776 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5777 F:      drivers/gpu/drm/stm
5778
5779 DRM DRIVERS FOR TI KEYSTONE
5780 M:      Jyri Sarha <jsarha@ti.com>
5781 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5782 L:      dri-devel@lists.freedesktop.org
5783 S:      Maintained
5784 T:      git git://anongit.freedesktop.org/drm/drm-misc
5785 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5786 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5787 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5788 F:      drivers/gpu/drm/tidss/
5789
5790 DRM DRIVERS FOR TI LCDC
5791 M:      Jyri Sarha <jsarha@ti.com>
5792 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5793 L:      dri-devel@lists.freedesktop.org
5794 S:      Maintained
5795 F:      Documentation/devicetree/bindings/display/tilcdc/
5796 F:      drivers/gpu/drm/tilcdc/
5797
5798 DRM DRIVERS FOR TI OMAP
5799 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5800 L:      dri-devel@lists.freedesktop.org
5801 S:      Maintained
5802 F:      Documentation/devicetree/bindings/display/ti/
5803 F:      drivers/gpu/drm/omapdrm/
5804
5805 DRM DRIVERS FOR V3D
5806 M:      Eric Anholt <eric@anholt.net>
5807 S:      Supported
5808 T:      git git://anongit.freedesktop.org/drm/drm-misc
5809 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5810 F:      drivers/gpu/drm/v3d/
5811 F:      include/uapi/drm/v3d_drm.h
5812
5813 DRM DRIVERS FOR VC4
5814 M:      Eric Anholt <eric@anholt.net>
5815 S:      Supported
5816 T:      git git://github.com/anholt/linux
5817 T:      git git://anongit.freedesktop.org/drm/drm-misc
5818 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
5819 F:      drivers/gpu/drm/vc4/
5820 F:      include/uapi/drm/vc4_drm.h
5821
5822 DRM DRIVERS FOR VIVANTE GPU IP
5823 M:      Lucas Stach <l.stach@pengutronix.de>
5824 R:      Russell King <linux+etnaviv@armlinux.org.uk>
5825 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
5826 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
5827 L:      dri-devel@lists.freedesktop.org
5828 S:      Maintained
5829 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
5830 F:      drivers/gpu/drm/etnaviv/
5831 F:      include/uapi/drm/etnaviv_drm.h
5832
5833 DRM DRIVERS FOR XEN
5834 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
5835 L:      dri-devel@lists.freedesktop.org
5836 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
5837 S:      Supported
5838 T:      git git://anongit.freedesktop.org/drm/drm-misc
5839 F:      Documentation/gpu/xen-front.rst
5840 F:      drivers/gpu/drm/xen/
5841
5842 DRM DRIVERS FOR XILINX
5843 M:      Hyun Kwon <hyun.kwon@xilinx.com>
5844 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5845 L:      dri-devel@lists.freedesktop.org
5846 S:      Maintained
5847 T:      git git://anongit.freedesktop.org/drm/drm-misc
5848 F:      Documentation/devicetree/bindings/display/xlnx/
5849 F:      drivers/gpu/drm/xlnx/
5850
5851 DRM DRIVERS FOR ZTE ZX
5852 M:      Shawn Guo <shawnguo@kernel.org>
5853 L:      dri-devel@lists.freedesktop.org
5854 S:      Maintained
5855 T:      git git://anongit.freedesktop.org/drm/drm-misc
5856 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5857 F:      drivers/gpu/drm/zte/
5858
5859 DRM PANEL DRIVERS
5860 M:      Thierry Reding <thierry.reding@gmail.com>
5861 R:      Sam Ravnborg <sam@ravnborg.org>
5862 L:      dri-devel@lists.freedesktop.org
5863 S:      Maintained
5864 T:      git git://anongit.freedesktop.org/drm/drm-misc
5865 F:      Documentation/devicetree/bindings/display/panel/
5866 F:      drivers/gpu/drm/drm_panel.c
5867 F:      drivers/gpu/drm/panel/
5868 F:      include/drm/drm_panel.h
5869
5870 DRM TTM SUBSYSTEM
5871 M:      Christian Koenig <christian.koenig@amd.com>
5872 M:      Huang Rui <ray.huang@amd.com>
5873 L:      dri-devel@lists.freedesktop.org
5874 S:      Maintained
5875 T:      git git://people.freedesktop.org/~agd5f/linux
5876 F:      drivers/gpu/drm/ttm/
5877 F:      include/drm/ttm/
5878
5879 DSBR100 USB FM RADIO DRIVER
5880 M:      Alexey Klimov <klimov.linux@gmail.com>
5881 L:      linux-media@vger.kernel.org
5882 S:      Maintained
5883 T:      git git://linuxtv.org/media_tree.git
5884 F:      drivers/media/radio/dsbr100.c
5885
5886 DT3155 MEDIA DRIVER
5887 M:      Hans Verkuil <hverkuil@xs4all.nl>
5888 L:      linux-media@vger.kernel.org
5889 S:      Odd Fixes
5890 W:      https://linuxtv.org
5891 T:      git git://linuxtv.org/media_tree.git
5892 F:      drivers/media/pci/dt3155/
5893
5894 DVB_USB_AF9015 MEDIA DRIVER
5895 M:      Antti Palosaari <crope@iki.fi>
5896 L:      linux-media@vger.kernel.org
5897 S:      Maintained
5898 W:      https://linuxtv.org
5899 W:      http://palosaari.fi/linux/
5900 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5901 T:      git git://linuxtv.org/anttip/media_tree.git
5902 F:      drivers/media/usb/dvb-usb-v2/af9015*
5903
5904 DVB_USB_AF9035 MEDIA DRIVER
5905 M:      Antti Palosaari <crope@iki.fi>
5906 L:      linux-media@vger.kernel.org
5907 S:      Maintained
5908 W:      https://linuxtv.org
5909 W:      http://palosaari.fi/linux/
5910 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5911 T:      git git://linuxtv.org/anttip/media_tree.git
5912 F:      drivers/media/usb/dvb-usb-v2/af9035*
5913
5914 DVB_USB_ANYSEE MEDIA DRIVER
5915 M:      Antti Palosaari <crope@iki.fi>
5916 L:      linux-media@vger.kernel.org
5917 S:      Maintained
5918 W:      https://linuxtv.org
5919 W:      http://palosaari.fi/linux/
5920 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5921 T:      git git://linuxtv.org/anttip/media_tree.git
5922 F:      drivers/media/usb/dvb-usb-v2/anysee*
5923
5924 DVB_USB_AU6610 MEDIA DRIVER
5925 M:      Antti Palosaari <crope@iki.fi>
5926 L:      linux-media@vger.kernel.org
5927 S:      Maintained
5928 W:      https://linuxtv.org
5929 W:      http://palosaari.fi/linux/
5930 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5931 T:      git git://linuxtv.org/anttip/media_tree.git
5932 F:      drivers/media/usb/dvb-usb-v2/au6610*
5933
5934 DVB_USB_CE6230 MEDIA DRIVER
5935 M:      Antti Palosaari <crope@iki.fi>
5936 L:      linux-media@vger.kernel.org
5937 S:      Maintained
5938 W:      https://linuxtv.org
5939 W:      http://palosaari.fi/linux/
5940 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5941 T:      git git://linuxtv.org/anttip/media_tree.git
5942 F:      drivers/media/usb/dvb-usb-v2/ce6230*
5943
5944 DVB_USB_CXUSB MEDIA DRIVER
5945 M:      Michael Krufky <mkrufky@linuxtv.org>
5946 L:      linux-media@vger.kernel.org
5947 S:      Maintained
5948 W:      https://linuxtv.org
5949 W:      http://github.com/mkrufky
5950 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5951 T:      git git://linuxtv.org/media_tree.git
5952 F:      drivers/media/usb/dvb-usb/cxusb*
5953
5954 DVB_USB_EC168 MEDIA DRIVER
5955 M:      Antti Palosaari <crope@iki.fi>
5956 L:      linux-media@vger.kernel.org
5957 S:      Maintained
5958 W:      https://linuxtv.org
5959 W:      http://palosaari.fi/linux/
5960 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5961 T:      git git://linuxtv.org/anttip/media_tree.git
5962 F:      drivers/media/usb/dvb-usb-v2/ec168*
5963
5964 DVB_USB_GL861 MEDIA DRIVER
5965 M:      Antti Palosaari <crope@iki.fi>
5966 L:      linux-media@vger.kernel.org
5967 S:      Maintained
5968 W:      https://linuxtv.org
5969 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5970 T:      git git://linuxtv.org/anttip/media_tree.git
5971 F:      drivers/media/usb/dvb-usb-v2/gl861*
5972
5973 DVB_USB_MXL111SF MEDIA DRIVER
5974 M:      Michael Krufky <mkrufky@linuxtv.org>
5975 L:      linux-media@vger.kernel.org
5976 S:      Maintained
5977 W:      https://linuxtv.org
5978 W:      http://github.com/mkrufky
5979 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5980 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
5981 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
5982
5983 DVB_USB_RTL28XXU MEDIA DRIVER
5984 M:      Antti Palosaari <crope@iki.fi>
5985 L:      linux-media@vger.kernel.org
5986 S:      Maintained
5987 W:      https://linuxtv.org
5988 W:      http://palosaari.fi/linux/
5989 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5990 T:      git git://linuxtv.org/anttip/media_tree.git
5991 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
5992
5993 DVB_USB_V2 MEDIA DRIVER
5994 M:      Antti Palosaari <crope@iki.fi>
5995 L:      linux-media@vger.kernel.org
5996 S:      Maintained
5997 W:      https://linuxtv.org
5998 W:      http://palosaari.fi/linux/
5999 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6000 T:      git git://linuxtv.org/anttip/media_tree.git
6001 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6002 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6003
6004 DYNAMIC DEBUG
6005 M:      Jason Baron <jbaron@akamai.com>
6006 S:      Maintained
6007 F:      include/linux/dynamic_debug.h
6008 F:      lib/dynamic_debug.c
6009
6010 DYNAMIC INTERRUPT MODERATION
6011 M:      Tal Gilboa <talgi@mellanox.com>
6012 S:      Maintained
6013 F:      Documentation/networking/net_dim.rst
6014 F:      include/linux/dim.h
6015 F:      lib/dim/
6016
6017 DZ DECSTATION DZ11 SERIAL DRIVER
6018 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
6019 S:      Maintained
6020 F:      drivers/tty/serial/dz.*
6021
6022 E3X0 POWER BUTTON DRIVER
6023 M:      Moritz Fischer <moritz.fischer@ettus.com>
6024 L:      usrp-users@lists.ettus.com
6025 S:      Supported
6026 W:      http://www.ettus.com
6027 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6028 F:      drivers/input/misc/e3x0-button.c
6029
6030 E4000 MEDIA DRIVER
6031 M:      Antti Palosaari <crope@iki.fi>
6032 L:      linux-media@vger.kernel.org
6033 S:      Maintained
6034 W:      https://linuxtv.org
6035 W:      http://palosaari.fi/linux/
6036 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6037 T:      git git://linuxtv.org/anttip/media_tree.git
6038 F:      drivers/media/tuners/e4000*
6039
6040 EARTH_PT1 MEDIA DRIVER
6041 M:      Akihiro Tsukada <tskd08@gmail.com>
6042 L:      linux-media@vger.kernel.org
6043 S:      Odd Fixes
6044 F:      drivers/media/pci/pt1/
6045
6046 EARTH_PT3 MEDIA DRIVER
6047 M:      Akihiro Tsukada <tskd08@gmail.com>
6048 L:      linux-media@vger.kernel.org
6049 S:      Odd Fixes
6050 F:      drivers/media/pci/pt3/
6051
6052 EC100 MEDIA DRIVER
6053 M:      Antti Palosaari <crope@iki.fi>
6054 L:      linux-media@vger.kernel.org
6055 S:      Maintained
6056 W:      https://linuxtv.org
6057 W:      http://palosaari.fi/linux/
6058 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6059 T:      git git://linuxtv.org/anttip/media_tree.git
6060 F:      drivers/media/dvb-frontends/ec100*
6061
6062 ECRYPT FILE SYSTEM
6063 M:      Tyler Hicks <code@tyhicks.com>
6064 L:      ecryptfs@vger.kernel.org
6065 S:      Odd Fixes
6066 W:      http://ecryptfs.org
6067 W:      https://launchpad.net/ecryptfs
6068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6069 F:      Documentation/filesystems/ecryptfs.rst
6070 F:      fs/ecryptfs/
6071
6072 EDAC-AMD64
6073 M:      Borislav Petkov <bp@alien8.de>
6074 L:      linux-edac@vger.kernel.org
6075 S:      Maintained
6076 F:      drivers/edac/amd64_edac*
6077
6078 EDAC-ARMADA
6079 M:      Jan Luebbe <jlu@pengutronix.de>
6080 L:      linux-edac@vger.kernel.org
6081 S:      Maintained
6082 F:      drivers/edac/armada_xp_*
6083
6084 EDAC-AST2500
6085 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6086 S:      Supported
6087 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6088 F:      drivers/edac/aspeed_edac.c
6089
6090 EDAC-BLUEFIELD
6091 M:      Shravan Kumar Ramani <sramani@mellanox.com>
6092 S:      Supported
6093 F:      drivers/edac/bluefield_edac.c
6094
6095 EDAC-CALXEDA
6096 M:      Robert Richter <rric@kernel.org>
6097 L:      linux-edac@vger.kernel.org
6098 S:      Maintained
6099 F:      drivers/edac/highbank*
6100
6101 EDAC-CAVIUM OCTEON
6102 M:      Ralf Baechle <ralf@linux-mips.org>
6103 M:      Robert Richter <rrichter@marvell.com>
6104 L:      linux-edac@vger.kernel.org
6105 L:      linux-mips@vger.kernel.org
6106 S:      Supported
6107 F:      drivers/edac/octeon_edac*
6108
6109 EDAC-CAVIUM THUNDERX
6110 M:      Robert Richter <rrichter@marvell.com>
6111 L:      linux-edac@vger.kernel.org
6112 S:      Supported
6113 F:      drivers/edac/thunderx_edac*
6114
6115 EDAC-CORE
6116 M:      Borislav Petkov <bp@alien8.de>
6117 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6118 M:      Tony Luck <tony.luck@intel.com>
6119 R:      James Morse <james.morse@arm.com>
6120 R:      Robert Richter <rrichter@marvell.com>
6121 L:      linux-edac@vger.kernel.org
6122 S:      Supported
6123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6124 F:      Documentation/admin-guide/ras.rst
6125 F:      Documentation/driver-api/edac.rst
6126 F:      drivers/edac/
6127 F:      include/linux/edac.h
6128
6129 EDAC-DMC520
6130 M:      Lei Wang <lewan@microsoft.com>
6131 L:      linux-edac@vger.kernel.org
6132 S:      Supported
6133 F:      drivers/edac/dmc520_edac.c
6134
6135 EDAC-E752X
6136 M:      Mark Gross <mark.gross@intel.com>
6137 L:      linux-edac@vger.kernel.org
6138 S:      Maintained
6139 F:      drivers/edac/e752x_edac.c
6140
6141 EDAC-E7XXX
6142 L:      linux-edac@vger.kernel.org
6143 S:      Maintained
6144 F:      drivers/edac/e7xxx_edac.c
6145
6146 EDAC-FSL_DDR
6147 M:      York Sun <york.sun@nxp.com>
6148 L:      linux-edac@vger.kernel.org
6149 S:      Maintained
6150 F:      drivers/edac/fsl_ddr_edac.*
6151
6152 EDAC-GHES
6153 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6154 L:      linux-edac@vger.kernel.org
6155 S:      Maintained
6156 F:      drivers/edac/ghes_edac.c
6157
6158 EDAC-I10NM
6159 M:      Tony Luck <tony.luck@intel.com>
6160 L:      linux-edac@vger.kernel.org
6161 S:      Maintained
6162 F:      drivers/edac/i10nm_base.c
6163
6164 EDAC-I3000
6165 L:      linux-edac@vger.kernel.org
6166 S:      Orphan
6167 F:      drivers/edac/i3000_edac.c
6168
6169 EDAC-I5000
6170 L:      linux-edac@vger.kernel.org
6171 S:      Maintained
6172 F:      drivers/edac/i5000_edac.c
6173
6174 EDAC-I5400
6175 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6176 L:      linux-edac@vger.kernel.org
6177 S:      Maintained
6178 F:      drivers/edac/i5400_edac.c
6179
6180 EDAC-I7300
6181 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6182 L:      linux-edac@vger.kernel.org
6183 S:      Maintained
6184 F:      drivers/edac/i7300_edac.c
6185
6186 EDAC-I7CORE
6187 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6188 L:      linux-edac@vger.kernel.org
6189 S:      Maintained
6190 F:      drivers/edac/i7core_edac.c
6191
6192 EDAC-I82443BXGX
6193 M:      Tim Small <tim@buttersideup.com>
6194 L:      linux-edac@vger.kernel.org
6195 S:      Maintained
6196 F:      drivers/edac/i82443bxgx_edac.c
6197
6198 EDAC-I82975X
6199 M:      "Arvind R." <arvino55@gmail.com>
6200 L:      linux-edac@vger.kernel.org
6201 S:      Maintained
6202 F:      drivers/edac/i82975x_edac.c
6203
6204 EDAC-IE31200
6205 M:      Jason Baron <jbaron@akamai.com>
6206 L:      linux-edac@vger.kernel.org
6207 S:      Maintained
6208 F:      drivers/edac/ie31200_edac.c
6209
6210 EDAC-MPC85XX
6211 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6212 L:      linux-edac@vger.kernel.org
6213 S:      Maintained
6214 F:      drivers/edac/mpc85xx_edac.[ch]
6215
6216 EDAC-PASEMI
6217 M:      Egor Martovetsky <egor@pasemi.com>
6218 L:      linux-edac@vger.kernel.org
6219 S:      Maintained
6220 F:      drivers/edac/pasemi_edac.c
6221
6222 EDAC-PND2
6223 M:      Tony Luck <tony.luck@intel.com>
6224 L:      linux-edac@vger.kernel.org
6225 S:      Maintained
6226 F:      drivers/edac/pnd2_edac.[ch]
6227
6228 EDAC-QCOM
6229 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6230 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6231 L:      linux-arm-msm@vger.kernel.org
6232 L:      linux-edac@vger.kernel.org
6233 S:      Maintained
6234 F:      drivers/edac/qcom_edac.c
6235
6236 EDAC-R82600
6237 M:      Tim Small <tim@buttersideup.com>
6238 L:      linux-edac@vger.kernel.org
6239 S:      Maintained
6240 F:      drivers/edac/r82600_edac.c
6241
6242 EDAC-SBRIDGE
6243 M:      Tony Luck <tony.luck@intel.com>
6244 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6245 L:      linux-edac@vger.kernel.org
6246 S:      Maintained
6247 F:      drivers/edac/sb_edac.c
6248
6249 EDAC-SIFIVE
6250 M:      Yash Shah <yash.shah@sifive.com>
6251 L:      linux-edac@vger.kernel.org
6252 S:      Supported
6253 F:      drivers/edac/sifive_edac.c
6254
6255 EDAC-SKYLAKE
6256 M:      Tony Luck <tony.luck@intel.com>
6257 L:      linux-edac@vger.kernel.org
6258 S:      Maintained
6259 F:      drivers/edac/skx_*.c
6260
6261 EDAC-TI
6262 M:      Tero Kristo <t-kristo@ti.com>
6263 L:      linux-edac@vger.kernel.org
6264 S:      Maintained
6265 F:      drivers/edac/ti_edac.c
6266
6267 EDIROL UA-101/UA-1000 DRIVER
6268 M:      Clemens Ladisch <clemens@ladisch.de>
6269 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6270 S:      Maintained
6271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6272 F:      sound/usb/misc/ua101.c
6273
6274 EFI TEST DRIVER
6275 M:      Ivan Hu <ivan.hu@canonical.com>
6276 M:      Ard Biesheuvel <ardb@kernel.org>
6277 L:      linux-efi@vger.kernel.org
6278 S:      Maintained
6279 F:      drivers/firmware/efi/test/
6280
6281 EFI VARIABLE FILESYSTEM
6282 M:      Matthew Garrett <matthew.garrett@nebula.com>
6283 M:      Jeremy Kerr <jk@ozlabs.org>
6284 M:      Ard Biesheuvel <ardb@kernel.org>
6285 L:      linux-efi@vger.kernel.org
6286 S:      Maintained
6287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6288 F:      fs/efivarfs/
6289
6290 EFIFB FRAMEBUFFER DRIVER
6291 M:      Peter Jones <pjones@redhat.com>
6292 L:      linux-fbdev@vger.kernel.org
6293 S:      Maintained
6294 F:      drivers/video/fbdev/efifb.c
6295
6296 EFS FILESYSTEM
6297 S:      Orphan
6298 W:      http://aeschi.ch.eu.org/efs/
6299 F:      fs/efs/
6300
6301 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6302 M:      Douglas Miller <dougmill@linux.ibm.com>
6303 L:      netdev@vger.kernel.org
6304 S:      Maintained
6305 F:      drivers/net/ethernet/ibm/ehea/
6306
6307 EM28XX VIDEO4LINUX DRIVER
6308 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6309 L:      linux-media@vger.kernel.org
6310 S:      Maintained
6311 W:      https://linuxtv.org
6312 T:      git git://linuxtv.org/media_tree.git
6313 F:      Documentation/admin-guide/media/em28xx*
6314 F:      drivers/media/usb/em28xx/
6315
6316 EMBEDDED LINUX
6317 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6318 M:      Matt Mackall <mpm@selenic.com>
6319 M:      David Woodhouse <dwmw2@infradead.org>
6320 L:      linux-embedded@vger.kernel.org
6321 S:      Maintained
6322
6323 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6324 M:      Adrian Hunter <adrian.hunter@intel.com>
6325 M:      Ritesh Harjani <riteshh@codeaurora.org>
6326 M:      Asutosh Das <asutoshd@codeaurora.org>
6327 L:      linux-mmc@vger.kernel.org
6328 S:      Maintained
6329 F:      drivers/mmc/host/cqhci*
6330
6331 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6332 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6333 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6334 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6335 L:      linux-scsi@vger.kernel.org
6336 S:      Supported
6337 W:      http://www.broadcom.com
6338 F:      drivers/scsi/be2iscsi/
6339
6340 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6341 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6342 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6343 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6344 L:      netdev@vger.kernel.org
6345 S:      Supported
6346 W:      http://www.emulex.com
6347 F:      drivers/net/ethernet/emulex/benet/
6348
6349 EMULEX ONECONNECT ROCE DRIVER
6350 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6351 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6352 L:      linux-rdma@vger.kernel.org
6353 S:      Odd Fixes
6354 W:      http://www.broadcom.com
6355 F:      drivers/infiniband/hw/ocrdma/
6356 F:      include/uapi/rdma/ocrdma-abi.h
6357
6358 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6359 M:      James Smart <james.smart@broadcom.com>
6360 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6361 L:      linux-scsi@vger.kernel.org
6362 S:      Supported
6363 W:      http://www.broadcom.com
6364 F:      drivers/scsi/lpfc/
6365
6366 ENE CB710 FLASH CARD READER DRIVER
6367 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6368 S:      Maintained
6369 F:      drivers/misc/cb710/
6370 F:      drivers/mmc/host/cb710-mmc.*
6371 F:      include/linux/cb710.h
6372
6373 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6374 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6375 S:      Maintained
6376 F:      drivers/media/rc/ene_ir.*
6377
6378 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6379 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6380 L:      linuxppc-dev@lists.ozlabs.org
6381 S:      Maintained
6382 F:      drivers/tty/ehv_bytechan.c
6383
6384 EPSON S1D13XXX FRAMEBUFFER DRIVER
6385 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6386 S:      Maintained
6387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6388 F:      drivers/video/fbdev/s1d13xxxfb.c
6389 F:      include/video/s1d13xxxfb.h
6390
6391 EROFS FILE SYSTEM
6392 M:      Gao Xiang <xiang@kernel.org>
6393 M:      Chao Yu <yuchao0@huawei.com>
6394 L:      linux-erofs@lists.ozlabs.org
6395 S:      Maintained
6396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6397 F:      Documentation/filesystems/erofs.rst
6398 F:      fs/erofs/
6399 F:      include/trace/events/erofs.h
6400
6401 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6402 M:      Jeff Layton <jlayton@kernel.org>
6403 S:      Maintained
6404 F:      include/linux/errseq.h
6405 F:      lib/errseq.c
6406
6407 ET131X NETWORK DRIVER
6408 M:      Mark Einon <mark.einon@gmail.com>
6409 S:      Odd Fixes
6410 F:      drivers/net/ethernet/agere/
6411
6412 ETHERNET BRIDGE
6413 M:      Roopa Prabhu <roopa@cumulusnetworks.com>
6414 M:      Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
6415 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6416 L:      netdev@vger.kernel.org
6417 S:      Maintained
6418 W:      http://www.linuxfoundation.org/en/Net:Bridge
6419 F:      include/linux/netfilter_bridge/
6420 F:      net/bridge/
6421
6422 ETHERNET PHY LIBRARY
6423 M:      Andrew Lunn <andrew@lunn.ch>
6424 M:      Florian Fainelli <f.fainelli@gmail.com>
6425 M:      Heiner Kallweit <hkallweit1@gmail.com>
6426 R:      Russell King <linux@armlinux.org.uk>
6427 L:      netdev@vger.kernel.org
6428 S:      Maintained
6429 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6430 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6431 F:      Documentation/devicetree/bindings/net/mdio*
6432 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6433 F:      Documentation/networking/phy.rst
6434 F:      drivers/net/phy/
6435 F:      drivers/of/of_mdio.c
6436 F:      drivers/of/of_net.c
6437 F:      include/dt-bindings/net/qca-ar803x.h
6438 F:      include/linux/*mdio*.h
6439 F:      include/linux/of_net.h
6440 F:      include/linux/phy.h
6441 F:      include/linux/phy_fixed.h
6442 F:      include/linux/platform_data/mdio-bcm-unimac.h
6443 F:      include/linux/platform_data/mdio-gpio.h
6444 F:      include/trace/events/mdio.h
6445 F:      include/uapi/linux/mdio.h
6446 F:      include/uapi/linux/mii.h
6447
6448 EXFAT FILE SYSTEM
6449 M:      Namjae Jeon <namjae.jeon@samsung.com>
6450 M:      Sungjong Seo <sj1557.seo@samsung.com>
6451 L:      linux-fsdevel@vger.kernel.org
6452 S:      Maintained
6453 F:      fs/exfat/
6454
6455 EXT2 FILE SYSTEM
6456 M:      Jan Kara <jack@suse.com>
6457 L:      linux-ext4@vger.kernel.org
6458 S:      Maintained
6459 F:      Documentation/filesystems/ext2.rst
6460 F:      fs/ext2/
6461 F:      include/linux/ext2*
6462
6463 EXT4 FILE SYSTEM
6464 M:      "Theodore Ts'o" <tytso@mit.edu>
6465 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6466 L:      linux-ext4@vger.kernel.org
6467 S:      Maintained
6468 W:      http://ext4.wiki.kernel.org
6469 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6471 F:      Documentation/filesystems/ext4/
6472 F:      fs/ext4/
6473
6474 Extended Verification Module (EVM)
6475 M:      Mimi Zohar <zohar@linux.ibm.com>
6476 L:      linux-integrity@vger.kernel.org
6477 S:      Supported
6478 F:      security/integrity/evm/
6479
6480 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6481 M:      Ard Biesheuvel <ardb@kernel.org>
6482 L:      linux-efi@vger.kernel.org
6483 S:      Maintained
6484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6485 F:      Documentation/admin-guide/efi-stub.rst
6486 F:      arch/*/include/asm/efi.h
6487 F:      arch/*/kernel/efi.c
6488 F:      arch/arm/boot/compressed/efi-header.S
6489 F:      arch/arm64/kernel/efi-entry.S
6490 F:      arch/x86/platform/efi/
6491 F:      drivers/firmware/efi/
6492 F:      include/linux/efi*.h
6493
6494 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6495 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6496 M:      Chanwoo Choi <cw00.choi@samsung.com>
6497 L:      linux-kernel@vger.kernel.org
6498 S:      Maintained
6499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6500 F:      Documentation/devicetree/bindings/extcon/
6501 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6502 F:      drivers/extcon/
6503 F:      include/linux/extcon.h
6504 F:      include/linux/extcon/
6505
6506 EXTRA BOOT CONFIG
6507 M:      Masami Hiramatsu <mhiramat@kernel.org>
6508 S:      Maintained
6509 F:      Documentation/admin-guide/bootconfig.rst
6510 F:      fs/proc/bootconfig.c
6511 F:      include/linux/bootconfig.h
6512 F:      lib/bootconfig.c
6513 F:      tools/bootconfig/*
6514
6515 EXYNOS DP DRIVER
6516 M:      Jingoo Han <jingoohan1@gmail.com>
6517 L:      dri-devel@lists.freedesktop.org
6518 S:      Maintained
6519 F:      drivers/gpu/drm/exynos/exynos_dp*
6520
6521 EXYNOS SYSMMU (IOMMU) driver
6522 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6523 L:      iommu@lists.linux-foundation.org
6524 S:      Maintained
6525 F:      drivers/iommu/exynos-iommu.c
6526
6527 EZchip NPS platform support
6528 M:      Vineet Gupta <vgupta@synopsys.com>
6529 M:      Ofer Levi <oferle@mellanox.com>
6530 S:      Supported
6531 F:      arch/arc/boot/dts/eznps.dts
6532 F:      arch/arc/plat-eznps
6533
6534 F2FS FILE SYSTEM
6535 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6536 M:      Chao Yu <yuchao0@huawei.com>
6537 L:      linux-f2fs-devel@lists.sourceforge.net
6538 S:      Maintained
6539 W:      https://f2fs.wiki.kernel.org/
6540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6541 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6542 F:      Documentation/filesystems/f2fs.rst
6543 F:      fs/f2fs/
6544 F:      include/linux/f2fs_fs.h
6545 F:      include/trace/events/f2fs.h
6546
6547 F71805F HARDWARE MONITORING DRIVER
6548 M:      Jean Delvare <jdelvare@suse.com>
6549 L:      linux-hwmon@vger.kernel.org
6550 S:      Maintained
6551 F:      Documentation/hwmon/f71805f.rst
6552 F:      drivers/hwmon/f71805f.c
6553
6554 FADDR2LINE
6555 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6556 S:      Maintained
6557 F:      scripts/faddr2line
6558
6559 FAILOVER MODULE
6560 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6561 L:      netdev@vger.kernel.org
6562 S:      Supported
6563 F:      Documentation/networking/failover.rst
6564 F:      include/net/failover.h
6565 F:      net/core/failover.c
6566
6567 FANOTIFY
6568 M:      Jan Kara <jack@suse.cz>
6569 R:      Amir Goldstein <amir73il@gmail.com>
6570 L:      linux-fsdevel@vger.kernel.org
6571 S:      Maintained
6572 F:      fs/notify/fanotify/
6573 F:      include/linux/fanotify.h
6574 F:      include/uapi/linux/fanotify.h
6575
6576 FARSYNC SYNCHRONOUS DRIVER
6577 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6578 S:      Supported
6579 W:      http://www.farsite.co.uk/
6580 F:      drivers/net/wan/farsync.*
6581
6582 FAULT INJECTION SUPPORT
6583 M:      Akinobu Mita <akinobu.mita@gmail.com>
6584 S:      Supported
6585 F:      Documentation/fault-injection/
6586 F:      lib/fault-inject.c
6587
6588 FBTFT Framebuffer drivers
6589 L:      dri-devel@lists.freedesktop.org
6590 L:      linux-fbdev@vger.kernel.org
6591 S:      Orphan
6592 F:      drivers/staging/fbtft/
6593
6594 FC0011 TUNER DRIVER
6595 M:      Michael Buesch <m@bues.ch>
6596 L:      linux-media@vger.kernel.org
6597 S:      Maintained
6598 F:      drivers/media/tuners/fc0011.c
6599 F:      drivers/media/tuners/fc0011.h
6600
6601 FC2580 MEDIA DRIVER
6602 M:      Antti Palosaari <crope@iki.fi>
6603 L:      linux-media@vger.kernel.org
6604 S:      Maintained
6605 W:      https://linuxtv.org
6606 W:      http://palosaari.fi/linux/
6607 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6608 T:      git git://linuxtv.org/anttip/media_tree.git
6609 F:      drivers/media/tuners/fc2580*
6610
6611 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6612 M:      Hannes Reinecke <hare@suse.de>
6613 L:      linux-scsi@vger.kernel.org
6614 S:      Supported
6615 W:      www.Open-FCoE.org
6616 F:      drivers/scsi/fcoe/
6617 F:      drivers/scsi/libfc/
6618 F:      include/scsi/fc/
6619 F:      include/scsi/libfc.h
6620 F:      include/scsi/libfcoe.h
6621 F:      include/uapi/scsi/fc/
6622
6623 FILE LOCKING (flock() and fcntl()/lockf())
6624 M:      Jeff Layton <jlayton@kernel.org>
6625 M:      "J. Bruce Fields" <bfields@fieldses.org>
6626 L:      linux-fsdevel@vger.kernel.org
6627 S:      Maintained
6628 F:      fs/fcntl.c
6629 F:      fs/locks.c
6630 F:      include/linux/fcntl.h
6631 F:      include/uapi/linux/fcntl.h
6632
6633 FILESYSTEM DIRECT ACCESS (DAX)
6634 M:      Dan Williams <dan.j.williams@intel.com>
6635 R:      Matthew Wilcox <willy@infradead.org>
6636 R:      Jan Kara <jack@suse.cz>
6637 L:      linux-fsdevel@vger.kernel.org
6638 L:      linux-nvdimm@lists.01.org
6639 S:      Supported
6640 F:      fs/dax.c
6641 F:      include/linux/dax.h
6642 F:      include/trace/events/fs_dax.h
6643
6644 FILESYSTEMS (VFS and infrastructure)
6645 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6646 L:      linux-fsdevel@vger.kernel.org
6647 S:      Maintained
6648 F:      fs/*
6649 F:      include/linux/fs.h
6650 F:      include/linux/fs_types.h
6651 F:      include/uapi/linux/fs.h
6652 F:      include/uapi/linux/openat2.h
6653
6654 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6655 M:      Riku Voipio <riku.voipio@iki.fi>
6656 L:      linux-hwmon@vger.kernel.org
6657 S:      Maintained
6658 F:      drivers/hwmon/f75375s.c
6659 F:      include/linux/f75375s.h
6660
6661 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6662 M:      Clemens Ladisch <clemens@ladisch.de>
6663 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
6664 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6665 S:      Maintained
6666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6667 F:      include/uapi/sound/firewire.h
6668 F:      sound/firewire/
6669
6670 FIREWIRE MEDIA DRIVERS (firedtv)
6671 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6672 L:      linux-media@vger.kernel.org
6673 L:      linux1394-devel@lists.sourceforge.net
6674 S:      Maintained
6675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6676 F:      drivers/media/firewire/
6677
6678 FIREWIRE SBP-2 TARGET
6679 M:      Chris Boot <bootc@bootc.net>
6680 L:      linux-scsi@vger.kernel.org
6681 L:      target-devel@vger.kernel.org
6682 L:      linux1394-devel@lists.sourceforge.net
6683 S:      Maintained
6684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6685 F:      drivers/target/sbp/
6686
6687 FIREWIRE SUBSYSTEM
6688 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6689 L:      linux1394-devel@lists.sourceforge.net
6690 S:      Maintained
6691 W:      http://ieee1394.wiki.kernel.org/
6692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6693 F:      drivers/firewire/
6694 F:      include/linux/firewire.h
6695 F:      include/uapi/linux/firewire*.h
6696 F:      tools/firewire/
6697
6698 FIRMWARE LOADER (request_firmware)
6699 M:      Luis Chamberlain <mcgrof@kernel.org>
6700 L:      linux-kernel@vger.kernel.org
6701 S:      Maintained
6702 F:      Documentation/firmware_class/
6703 F:      drivers/base/firmware_loader/
6704 F:      include/linux/firmware.h
6705
6706 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6707 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6708 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6709 S:      Maintained
6710 F:      drivers/block/rsxx/
6711
6712 FLEXTIMER FTM-QUADDEC DRIVER
6713 M:      Patrick Havelange <patrick.havelange@essensium.com>
6714 L:      linux-iio@vger.kernel.org
6715 S:      Maintained
6716 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6717 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6718 F:      drivers/counter/ftm-quaddec.c
6719
6720 FLOPPY DRIVER
6721 M:      Denis Efremov <efremov@linux.com>
6722 L:      linux-block@vger.kernel.org
6723 S:      Odd Fixes
6724 F:      drivers/block/floppy.c
6725
6726 FLYSKY FSIA6B RC RECEIVER
6727 M:      Markus Koch <markus@notsyncing.net>
6728 L:      linux-input@vger.kernel.org
6729 S:      Maintained
6730 F:      drivers/input/joystick/fsia6b.c
6731
6732 FORCEDETH GIGABIT ETHERNET DRIVER
6733 M:      Rain River <rain.1986.08.12@gmail.com>
6734 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
6735 L:      netdev@vger.kernel.org
6736 S:      Maintained
6737 F:      drivers/net/ethernet/nvidia/*
6738
6739 FPGA DFL DRIVERS
6740 M:      Wu Hao <hao.wu@intel.com>
6741 L:      linux-fpga@vger.kernel.org
6742 S:      Maintained
6743 F:      Documentation/fpga/dfl.rst
6744 F:      drivers/fpga/dfl*
6745 F:      include/uapi/linux/fpga-dfl.h
6746
6747 FPGA MANAGER FRAMEWORK
6748 M:      Moritz Fischer <mdf@kernel.org>
6749 L:      linux-fpga@vger.kernel.org
6750 S:      Maintained
6751 W:      http://www.rocketboards.org
6752 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6754 F:      Documentation/devicetree/bindings/fpga/
6755 F:      Documentation/driver-api/fpga/
6756 F:      Documentation/fpga/
6757 F:      drivers/fpga/
6758 F:      include/linux/fpga/
6759
6760 FPU EMULATOR
6761 M:      Bill Metzenthen <billm@melbpc.org.au>
6762 S:      Maintained
6763 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6764 F:      arch/x86/math-emu/
6765
6766 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6767 L:      netdev@vger.kernel.org
6768 S:      Orphan
6769 F:      drivers/net/wan/dlci.c
6770 F:      drivers/net/wan/sdla.c
6771
6772 FRAMEBUFFER LAYER
6773 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6774 L:      dri-devel@lists.freedesktop.org
6775 L:      linux-fbdev@vger.kernel.org
6776 S:      Maintained
6777 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6778 T:      git git://anongit.freedesktop.org/drm/drm-misc
6779 F:      Documentation/fb/
6780 F:      drivers/video/
6781 F:      include/linux/fb.h
6782 F:      include/uapi/linux/fb.h
6783 F:      include/uapi/video/
6784 F:      include/video/
6785
6786 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6787 M:      Horia Geantă <horia.geanta@nxp.com>
6788 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6789 L:      linux-crypto@vger.kernel.org
6790 S:      Maintained
6791 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6792 F:      drivers/crypto/caam/
6793
6794 FREESCALE COLDFIRE M5441X MMC DRIVER
6795 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
6796 L:      linux-mmc@vger.kernel.org
6797 S:      Maintained
6798 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
6799 F:      include/linux/platform_data/mmc-esdhc-mcf.h
6800
6801 FREESCALE DIU FRAMEBUFFER DRIVER
6802 M:      Timur Tabi <timur@kernel.org>
6803 L:      linux-fbdev@vger.kernel.org
6804 S:      Maintained
6805 F:      drivers/video/fbdev/fsl-diu-fb.*
6806
6807 FREESCALE DMA DRIVER
6808 M:      Li Yang <leoyang.li@nxp.com>
6809 M:      Zhang Wei <zw@zh-kernel.org>
6810 L:      linuxppc-dev@lists.ozlabs.org
6811 S:      Maintained
6812 F:      drivers/dma/fsldma.*
6813
6814 FREESCALE ENETC ETHERNET DRIVERS
6815 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6816 L:      netdev@vger.kernel.org
6817 S:      Maintained
6818 F:      drivers/net/ethernet/freescale/enetc/
6819
6820 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6821 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6822 L:      netdev@vger.kernel.org
6823 S:      Maintained
6824 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6825 F:      drivers/net/ethernet/freescale/gianfar*
6826
6827 FREESCALE GPMI NAND DRIVER
6828 M:      Han Xu <han.xu@nxp.com>
6829 L:      linux-mtd@lists.infradead.org
6830 S:      Maintained
6831 F:      drivers/mtd/nand/raw/gpmi-nand/*
6832
6833 FREESCALE I2C CPM DRIVER
6834 M:      Jochen Friedrich <jochen@scram.de>
6835 L:      linuxppc-dev@lists.ozlabs.org
6836 L:      linux-i2c@vger.kernel.org
6837 S:      Maintained
6838 F:      drivers/i2c/busses/i2c-cpm.c
6839
6840 FREESCALE IMX / MXC FEC DRIVER
6841 M:      Fugang Duan <fugang.duan@nxp.com>
6842 L:      netdev@vger.kernel.org
6843 S:      Maintained
6844 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6845 F:      drivers/net/ethernet/freescale/fec.h
6846 F:      drivers/net/ethernet/freescale/fec_main.c
6847 F:      drivers/net/ethernet/freescale/fec_ptp.c
6848
6849 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6850 M:      Sascha Hauer <s.hauer@pengutronix.de>
6851 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6852 L:      linux-fbdev@vger.kernel.org
6853 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6854 S:      Maintained
6855 F:      drivers/video/fbdev/imxfb.c
6856 F:      include/linux/platform_data/video-imxfb.h
6857
6858 FREESCALE IMX DDR PMU DRIVER
6859 M:      Frank Li <Frank.li@nxp.com>
6860 L:      linux-arm-kernel@lists.infradead.org
6861 S:      Maintained
6862 F:      Documentation/admin-guide/perf/imx-ddr.rst
6863 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.txt
6864 F:      drivers/perf/fsl_imx8_ddr_perf.c
6865
6866 FREESCALE IMX I2C DRIVER
6867 M:      Oleksij Rempel <o.rempel@pengutronix.de>
6868 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6869 L:      linux-i2c@vger.kernel.org
6870 S:      Maintained
6871 F:      Documentation/devicetree/bindings/i2c/i2c-imx.txt
6872 F:      drivers/i2c/busses/i2c-imx.c
6873
6874 FREESCALE IMX LPI2C DRIVER
6875 M:      Dong Aisheng <aisheng.dong@nxp.com>
6876 L:      linux-i2c@vger.kernel.org
6877 L:      linux-imx@nxp.com
6878 S:      Maintained
6879 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6880 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
6881
6882 FREESCALE QORIQ DPAA ETHERNET DRIVER
6883 M:      Madalin Bucur <madalin.bucur@nxp.com>
6884 L:      netdev@vger.kernel.org
6885 S:      Maintained
6886 F:      drivers/net/ethernet/freescale/dpaa
6887
6888 FREESCALE QORIQ DPAA FMAN DRIVER
6889 M:      Madalin Bucur <madalin.bucur@nxp.com>
6890 L:      netdev@vger.kernel.org
6891 S:      Maintained
6892 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
6893 F:      drivers/net/ethernet/freescale/fman
6894
6895 FREESCALE QORIQ PTP CLOCK DRIVER
6896 M:      Yangbo Lu <yangbo.lu@nxp.com>
6897 L:      netdev@vger.kernel.org
6898 S:      Maintained
6899 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
6900 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
6901 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
6902 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
6903 F:      drivers/ptp/ptp_qoriq.c
6904 F:      drivers/ptp/ptp_qoriq_debugfs.c
6905 F:      include/linux/fsl/ptp_qoriq.h
6906
6907 FREESCALE QUAD SPI DRIVER
6908 M:      Han Xu <han.xu@nxp.com>
6909 L:      linux-spi@vger.kernel.org
6910 S:      Maintained
6911 F:      drivers/spi/spi-fsl-qspi.c
6912
6913 FREESCALE QUICC ENGINE LIBRARY
6914 M:      Qiang Zhao <qiang.zhao@nxp.com>
6915 L:      linuxppc-dev@lists.ozlabs.org
6916 S:      Maintained
6917 F:      drivers/soc/fsl/qe/
6918 F:      include/soc/fsl/*qe*.h
6919 F:      include/soc/fsl/*ucc*.h
6920
6921 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
6922 M:      Li Yang <leoyang.li@nxp.com>
6923 L:      netdev@vger.kernel.org
6924 L:      linuxppc-dev@lists.ozlabs.org
6925 S:      Maintained
6926 F:      drivers/net/ethernet/freescale/ucc_geth*
6927
6928 FREESCALE QUICC ENGINE UCC HDLC DRIVER
6929 M:      Zhao Qiang <qiang.zhao@nxp.com>
6930 L:      netdev@vger.kernel.org
6931 L:      linuxppc-dev@lists.ozlabs.org
6932 S:      Maintained
6933 F:      drivers/net/wan/fsl_ucc_hdlc*
6934
6935 FREESCALE QUICC ENGINE UCC UART DRIVER
6936 M:      Timur Tabi <timur@kernel.org>
6937 L:      linuxppc-dev@lists.ozlabs.org
6938 S:      Maintained
6939 F:      drivers/tty/serial/ucc_uart.c
6940
6941 FREESCALE SOC DRIVERS
6942 M:      Li Yang <leoyang.li@nxp.com>
6943 L:      linuxppc-dev@lists.ozlabs.org
6944 L:      linux-arm-kernel@lists.infradead.org
6945 S:      Maintained
6946 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
6947 F:      Documentation/devicetree/bindings/soc/fsl/
6948 F:      drivers/soc/fsl/
6949 F:      include/linux/fsl/
6950
6951 FREESCALE SOC FS_ENET DRIVER
6952 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
6953 L:      linuxppc-dev@lists.ozlabs.org
6954 L:      netdev@vger.kernel.org
6955 S:      Maintained
6956 F:      drivers/net/ethernet/freescale/fs_enet/
6957 F:      include/linux/fs_enet_pd.h
6958
6959 FREESCALE SOC SOUND DRIVERS
6960 M:      Timur Tabi <timur@kernel.org>
6961 M:      Nicolin Chen <nicoleotsuka@gmail.com>
6962 M:      Xiubo Li <Xiubo.Lee@gmail.com>
6963 R:      Fabio Estevam <festevam@gmail.com>
6964 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6965 L:      linuxppc-dev@lists.ozlabs.org
6966 S:      Maintained
6967 F:      sound/soc/fsl/fsl*
6968 F:      sound/soc/fsl/imx*
6969 F:      sound/soc/fsl/mpc8610_hpcd.c
6970
6971 FREESCALE USB PERIPHERAL DRIVERS
6972 M:      Li Yang <leoyang.li@nxp.com>
6973 L:      linux-usb@vger.kernel.org
6974 L:      linuxppc-dev@lists.ozlabs.org
6975 S:      Maintained
6976 F:      drivers/usb/gadget/udc/fsl*
6977
6978 FREEVXFS FILESYSTEM
6979 M:      Christoph Hellwig <hch@infradead.org>
6980 S:      Maintained
6981 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
6982 F:      fs/freevxfs/
6983
6984 FREEZER
6985 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6986 M:      Pavel Machek <pavel@ucw.cz>
6987 L:      linux-pm@vger.kernel.org
6988 S:      Supported
6989 F:      Documentation/power/freezing-of-tasks.rst
6990 F:      include/linux/freezer.h
6991 F:      kernel/freezer.c
6992
6993 FRONTSWAP API
6994 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
6995 L:      linux-kernel@vger.kernel.org
6996 S:      Maintained
6997 F:      include/linux/frontswap.h
6998 F:      mm/frontswap.c
6999
7000 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7001 M:      David Howells <dhowells@redhat.com>
7002 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7003 S:      Supported
7004 F:      Documentation/filesystems/caching/
7005 F:      fs/fscache/
7006 F:      include/linux/fscache*.h
7007
7008 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7009 M:      Theodore Y. Ts'o <tytso@mit.edu>
7010 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7011 M:      Eric Biggers <ebiggers@kernel.org>
7012 L:      linux-fscrypt@vger.kernel.org
7013 S:      Supported
7014 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7015 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7016 F:      Documentation/filesystems/fscrypt.rst
7017 F:      fs/crypto/
7018 F:      include/linux/fscrypt*.h
7019 F:      include/uapi/linux/fscrypt.h
7020
7021 FSI SUBSYSTEM
7022 M:      Jeremy Kerr <jk@ozlabs.org>
7023 M:      Joel Stanley <joel@jms.id.au>
7024 R:      Alistar Popple <alistair@popple.id.au>
7025 R:      Eddie James <eajames@linux.ibm.com>
7026 L:      linux-fsi@lists.ozlabs.org
7027 S:      Supported
7028 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7030 F:      drivers/fsi/
7031 F:      include/linux/fsi*.h
7032 F:      include/trace/events/fsi*.h
7033
7034 FSI-ATTACHED I2C DRIVER
7035 M:      Eddie James <eajames@linux.ibm.com>
7036 L:      linux-i2c@vger.kernel.org
7037 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7038 S:      Maintained
7039 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7040 F:      drivers/i2c/busses/i2c-fsi.c
7041
7042 FSI-ATTACHED SPI DRIVER
7043 M:      Eddie James <eajames@linux.ibm.com>
7044 L:      linux-spi@vger.kernel.org
7045 S:      Maintained
7046 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7047 F:      drivers/spi/spi-fsi.c
7048
7049 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7050 M:      Jan Kara <jack@suse.cz>
7051 R:      Amir Goldstein <amir73il@gmail.com>
7052 L:      linux-fsdevel@vger.kernel.org
7053 S:      Maintained
7054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7055 F:      fs/notify/
7056 F:      include/linux/fsnotify*.h
7057
7058 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7059 M:      Eric Biggers <ebiggers@kernel.org>
7060 M:      Theodore Y. Ts'o <tytso@mit.edu>
7061 L:      linux-fscrypt@vger.kernel.org
7062 S:      Supported
7063 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7064 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7065 F:      Documentation/filesystems/fsverity.rst
7066 F:      fs/verity/
7067 F:      include/linux/fsverity.h
7068 F:      include/uapi/linux/fsverity.h
7069
7070 FUJITSU LAPTOP EXTRAS
7071 M:      Jonathan Woithe <jwoithe@just42.net>
7072 L:      platform-driver-x86@vger.kernel.org
7073 S:      Maintained
7074 F:      drivers/platform/x86/fujitsu-laptop.c
7075
7076 FUJITSU M-5MO LS CAMERA ISP DRIVER
7077 M:      Kyungmin Park <kyungmin.park@samsung.com>
7078 M:      Heungjun Kim <riverful.kim@samsung.com>
7079 L:      linux-media@vger.kernel.org
7080 S:      Maintained
7081 F:      drivers/media/i2c/m5mols/
7082 F:      include/media/i2c/m5mols.h
7083
7084 FUJITSU TABLET EXTRAS
7085 M:      Robert Gerlach <khnz@gmx.de>
7086 L:      platform-driver-x86@vger.kernel.org
7087 S:      Maintained
7088 F:      drivers/platform/x86/fujitsu-tablet.c
7089
7090 FUSE: FILESYSTEM IN USERSPACE
7091 M:      Miklos Szeredi <miklos@szeredi.hu>
7092 L:      linux-fsdevel@vger.kernel.org
7093 S:      Maintained
7094 W:      http://fuse.sourceforge.net/
7095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7096 F:      Documentation/filesystems/fuse.rst
7097 F:      fs/fuse/
7098 F:      include/uapi/linux/fuse.h
7099
7100 FUTEX SUBSYSTEM
7101 M:      Thomas Gleixner <tglx@linutronix.de>
7102 M:      Ingo Molnar <mingo@redhat.com>
7103 R:      Peter Zijlstra <peterz@infradead.org>
7104 R:      Darren Hart <dvhart@infradead.org>
7105 L:      linux-kernel@vger.kernel.org
7106 S:      Maintained
7107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7108 F:      Documentation/locking/*futex*
7109 F:      include/asm-generic/futex.h
7110 F:      include/linux/futex.h
7111 F:      include/uapi/linux/futex.h
7112 F:      kernel/futex.c
7113 F:      tools/perf/bench/futex*
7114 F:      Documentation/locking/*futex*
7115
7116 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7117 M:      Tim Harvey <tharvey@gateworks.com>
7118 M:      Robert Jones <rjones@gateworks.com>
7119 S:      Maintained
7120 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7121 F:      drivers/mfd/gateworks-gsc.c
7122 F:      include/linux/mfd/gsc.h
7123 F:      Documentation/hwmon/gsc-hwmon.rst
7124 F:      drivers/hwmon/gsc-hwmon.c
7125 F:      include/linux/platform_data/gsc_hwmon.h
7126
7127 GASKET DRIVER FRAMEWORK
7128 M:      Rob Springer <rspringer@google.com>
7129 M:      Todd Poynor <toddpoynor@google.com>
7130 M:      Ben Chan <benchan@chromium.org>
7131 M:      Richard Yeh <rcy@google.com>
7132 S:      Maintained
7133 F:      drivers/staging/gasket/
7134
7135 GCC PLUGINS
7136 M:      Kees Cook <keescook@chromium.org>
7137 R:      Emese Revfy <re.emese@gmail.com>
7138 L:      kernel-hardening@lists.openwall.com
7139 S:      Maintained
7140 F:      Documentation/kbuild/gcc-plugins.rst
7141 F:      scripts/Makefile.gcc-plugins
7142 F:      scripts/gcc-plugin.sh
7143 F:      scripts/gcc-plugins/
7144
7145 GCOV BASED KERNEL PROFILING
7146 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7147 S:      Maintained
7148 F:      Documentation/dev-tools/gcov.rst
7149 F:      kernel/gcov/
7150
7151 GDB KERNEL DEBUGGING HELPER SCRIPTS
7152 M:      Jan Kiszka <jan.kiszka@siemens.com>
7153 M:      Kieran Bingham <kbingham@kernel.org>
7154 S:      Supported
7155 F:      scripts/gdb/
7156
7157 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7158 M:      Achim Leubner <achim_leubner@adaptec.com>
7159 L:      linux-scsi@vger.kernel.org
7160 S:      Supported
7161 W:      http://www.icp-vortex.com/
7162 F:      drivers/scsi/gdt*
7163
7164 GEMTEK FM RADIO RECEIVER DRIVER
7165 M:      Hans Verkuil <hverkuil@xs4all.nl>
7166 L:      linux-media@vger.kernel.org
7167 S:      Maintained
7168 W:      https://linuxtv.org
7169 T:      git git://linuxtv.org/media_tree.git
7170 F:      drivers/media/radio/radio-gemtek*
7171
7172 GENERIC ARCHITECTURE TOPOLOGY
7173 M:      Sudeep Holla <sudeep.holla@arm.com>
7174 L:      linux-kernel@vger.kernel.org
7175 S:      Maintained
7176 F:      drivers/base/arch_topology.c
7177 F:      include/linux/arch_topology.h
7178
7179 GENERIC GPIO I2C DRIVER
7180 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7181 S:      Supported
7182 F:      drivers/i2c/busses/i2c-gpio.c
7183 F:      include/linux/platform_data/i2c-gpio.h
7184
7185 GENERIC GPIO I2C MULTIPLEXER DRIVER
7186 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7187 L:      linux-i2c@vger.kernel.org
7188 S:      Supported
7189 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7190 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7191 F:      include/linux/platform_data/i2c-mux-gpio.h
7192
7193 GENERIC HDLC (WAN) DRIVERS
7194 M:      Krzysztof Halasa <khc@pm.waw.pl>
7195 S:      Maintained
7196 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7197 F:      drivers/net/wan/c101.c
7198 F:      drivers/net/wan/hd6457*
7199 F:      drivers/net/wan/hdlc*
7200 F:      drivers/net/wan/n2.c
7201 F:      drivers/net/wan/pc300too.c
7202 F:      drivers/net/wan/pci200syn.c
7203 F:      drivers/net/wan/wanxl*
7204
7205 GENERIC INCLUDE/ASM HEADER FILES
7206 M:      Arnd Bergmann <arnd@arndb.de>
7207 L:      linux-arch@vger.kernel.org
7208 S:      Maintained
7209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7210 F:      include/asm-generic/
7211 F:      include/uapi/asm-generic/
7212
7213 GENERIC PHY FRAMEWORK
7214 M:      Kishon Vijay Abraham I <kishon@ti.com>
7215 M:      Vinod Koul <vkoul@kernel.org>
7216 L:      linux-kernel@vger.kernel.org
7217 S:      Supported
7218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7219 F:      Documentation/devicetree/bindings/phy/
7220 F:      drivers/phy/
7221 F:      include/linux/phy/
7222
7223 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7224 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7225 S:      Supported
7226 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7227
7228 GENERIC PM DOMAINS
7229 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7230 M:      Kevin Hilman <khilman@kernel.org>
7231 M:      Ulf Hansson <ulf.hansson@linaro.org>
7232 L:      linux-pm@vger.kernel.org
7233 S:      Supported
7234 F:      Documentation/devicetree/bindings/power/power?domain*
7235 F:      drivers/base/power/domain*.c
7236 F:      include/linux/pm_domain.h
7237
7238 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7239 M:      Eugen Hristev <eugen.hristev@microchip.com>
7240 L:      linux-input@vger.kernel.org
7241 S:      Maintained
7242 F:      drivers/input/touchscreen/resistive-adc-touch.c
7243
7244 GENERIC UIO DRIVER FOR PCI DEVICES
7245 M:      "Michael S. Tsirkin" <mst@redhat.com>
7246 L:      kvm@vger.kernel.org
7247 S:      Supported
7248 F:      drivers/uio/uio_pci_generic.c
7249
7250 GENERIC VDSO LIBRARY
7251 M:      Andy Lutomirski <luto@kernel.org>
7252 M:      Thomas Gleixner <tglx@linutronix.de>
7253 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7254 L:      linux-kernel@vger.kernel.org
7255 S:      Maintained
7256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7257 F:      include/asm-generic/vdso/vsyscall.h
7258 F:      include/vdso/
7259 F:      kernel/time/vsyscall.c
7260 F:      lib/vdso/
7261
7262 GENWQE (IBM Generic Workqueue Card)
7263 M:      Frank Haverkamp <haver@linux.ibm.com>
7264 S:      Supported
7265 F:      drivers/misc/genwqe/
7266
7267 GET_MAINTAINER SCRIPT
7268 M:      Joe Perches <joe@perches.com>
7269 S:      Maintained
7270 F:      scripts/get_maintainer.pl
7271
7272 GFS2 FILE SYSTEM
7273 M:      Bob Peterson <rpeterso@redhat.com>
7274 M:      Andreas Gruenbacher <agruenba@redhat.com>
7275 L:      cluster-devel@redhat.com
7276 S:      Supported
7277 W:      http://sources.redhat.com/cluster/
7278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7279 F:      Documentation/filesystems/gfs2*
7280 F:      fs/gfs2/
7281 F:      include/uapi/linux/gfs2_ondisk.h
7282
7283 GNSS SUBSYSTEM
7284 M:      Johan Hovold <johan@kernel.org>
7285 S:      Maintained
7286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7287 F:      Documentation/ABI/testing/sysfs-class-gnss
7288 F:      Documentation/devicetree/bindings/gnss/
7289 F:      drivers/gnss/
7290 F:      include/linux/gnss.h
7291
7292 GO7007 MPEG CODEC
7293 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7294 L:      linux-media@vger.kernel.org
7295 S:      Maintained
7296 F:      drivers/media/usb/go7007/
7297
7298 GOODIX TOUCHSCREEN
7299 M:      Bastien Nocera <hadess@hadess.net>
7300 L:      linux-input@vger.kernel.org
7301 S:      Maintained
7302 F:      drivers/input/touchscreen/goodix.c
7303
7304 GOOGLE ETHERNET DRIVERS
7305 M:      Catherine Sullivan <csully@google.com>
7306 R:      Sagi Shahar <sagis@google.com>
7307 R:      Jon Olson <jonolson@google.com>
7308 L:      netdev@vger.kernel.org
7309 S:      Supported
7310 F:      Documentation/networking/device_drivers/google/gve.rst
7311 F:      drivers/net/ethernet/google
7312
7313 GPD POCKET FAN DRIVER
7314 M:      Hans de Goede <hdegoede@redhat.com>
7315 L:      platform-driver-x86@vger.kernel.org
7316 S:      Maintained
7317 F:      drivers/platform/x86/gpd-pocket-fan.c
7318
7319 GPIO ACPI SUPPORT
7320 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7321 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7322 L:      linux-gpio@vger.kernel.org
7323 L:      linux-acpi@vger.kernel.org
7324 S:      Maintained
7325 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7326 F:      drivers/gpio/gpiolib-acpi.c
7327 F:      drivers/gpio/gpiolib-acpi.h
7328
7329 GPIO AGGREGATOR
7330 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7331 L:      linux-gpio@vger.kernel.org
7332 S:      Supported
7333 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7334 F:      drivers/gpio/gpio-aggregator.c
7335
7336 GPIO IR Transmitter
7337 M:      Sean Young <sean@mess.org>
7338 L:      linux-media@vger.kernel.org
7339 S:      Maintained
7340 F:      drivers/media/rc/gpio-ir-tx.c
7341
7342 GPIO MOCKUP DRIVER
7343 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7344 L:      linux-gpio@vger.kernel.org
7345 S:      Maintained
7346 F:      drivers/gpio/gpio-mockup.c
7347 F:      tools/testing/selftests/gpio/
7348
7349 GPIO REGMAP
7350 R:      Michael Walle <michael@walle.cc>
7351 S:      Maintained
7352 F:      drivers/gpio/gpio-regmap.c
7353 F:      include/linux/gpio/regmap.h
7354
7355 GPIO SUBSYSTEM
7356 M:      Linus Walleij <linus.walleij@linaro.org>
7357 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7358 L:      linux-gpio@vger.kernel.org
7359 S:      Maintained
7360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7361 F:      Documentation/ABI/obsolete/sysfs-gpio
7362 F:      Documentation/ABI/testing/gpio-cdev
7363 F:      Documentation/admin-guide/gpio/
7364 F:      Documentation/devicetree/bindings/gpio/
7365 F:      Documentation/driver-api/gpio/
7366 F:      drivers/gpio/
7367 F:      include/asm-generic/gpio.h
7368 F:      include/linux/gpio.h
7369 F:      include/linux/gpio/
7370 F:      include/linux/of_gpio.h
7371 F:      include/uapi/linux/gpio.h
7372 F:      tools/gpio/
7373
7374 GRE DEMULTIPLEXER DRIVER
7375 M:      Dmitry Kozlov <xeb@mail.ru>
7376 L:      netdev@vger.kernel.org
7377 S:      Maintained
7378 F:      include/net/gre.h
7379 F:      net/ipv4/gre_demux.c
7380 F:      net/ipv4/gre_offload.c
7381
7382 GRETH 10/100/1G Ethernet MAC device driver
7383 M:      Andreas Larsson <andreas@gaisler.com>
7384 L:      netdev@vger.kernel.org
7385 S:      Maintained
7386 F:      drivers/net/ethernet/aeroflex/
7387
7388 GREYBUS AUDIO PROTOCOLS DRIVERS
7389 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7390 M:      Mark Greer <mgreer@animalcreek.com>
7391 S:      Maintained
7392 F:      drivers/staging/greybus/audio_apbridgea.c
7393 F:      drivers/staging/greybus/audio_apbridgea.h
7394 F:      drivers/staging/greybus/audio_codec.c
7395 F:      drivers/staging/greybus/audio_codec.h
7396 F:      drivers/staging/greybus/audio_gb.c
7397 F:      drivers/staging/greybus/audio_manager.c
7398 F:      drivers/staging/greybus/audio_manager.h
7399 F:      drivers/staging/greybus/audio_manager_module.c
7400 F:      drivers/staging/greybus/audio_manager_private.h
7401 F:      drivers/staging/greybus/audio_manager_sysfs.c
7402 F:      drivers/staging/greybus/audio_module.c
7403 F:      drivers/staging/greybus/audio_topology.c
7404
7405 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7406 M:      Viresh Kumar <vireshk@kernel.org>
7407 S:      Maintained
7408 F:      drivers/staging/greybus/authentication.c
7409 F:      drivers/staging/greybus/bootrom.c
7410 F:      drivers/staging/greybus/firmware.h
7411 F:      drivers/staging/greybus/fw-core.c
7412 F:      drivers/staging/greybus/fw-download.c
7413 F:      drivers/staging/greybus/fw-management.c
7414 F:      drivers/staging/greybus/greybus_authentication.h
7415 F:      drivers/staging/greybus/greybus_firmware.h
7416 F:      drivers/staging/greybus/hid.c
7417 F:      drivers/staging/greybus/i2c.c
7418 F:      drivers/staging/greybus/spi.c
7419 F:      drivers/staging/greybus/spilib.c
7420 F:      drivers/staging/greybus/spilib.h
7421
7422 GREYBUS LOOPBACK DRIVER
7423 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7424 S:      Maintained
7425 F:      drivers/staging/greybus/loopback.c
7426
7427 GREYBUS PLATFORM DRIVERS
7428 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7429 S:      Maintained
7430 F:      drivers/staging/greybus/arche-apb-ctrl.c
7431 F:      drivers/staging/greybus/arche-platform.c
7432 F:      drivers/staging/greybus/arche_platform.h
7433
7434 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7435 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7436 S:      Maintained
7437 F:      drivers/staging/greybus/gpio.c
7438 F:      drivers/staging/greybus/light.c
7439 F:      drivers/staging/greybus/power_supply.c
7440 F:      drivers/staging/greybus/sdio.c
7441 F:      drivers/staging/greybus/spi.c
7442 F:      drivers/staging/greybus/spilib.c
7443
7444 GREYBUS SUBSYSTEM
7445 M:      Johan Hovold <johan@kernel.org>
7446 M:      Alex Elder <elder@kernel.org>
7447 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7448 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7449 S:      Maintained
7450 F:      drivers/greybus/
7451 F:      drivers/staging/greybus/
7452 F:      include/linux/greybus.h
7453 F:      include/linux/greybus/
7454
7455 GREYBUS UART PROTOCOLS DRIVERS
7456 M:      David Lin <dtwlin@gmail.com>
7457 S:      Maintained
7458 F:      drivers/staging/greybus/log.c
7459 F:      drivers/staging/greybus/uart.c
7460
7461 GS1662 VIDEO SERIALIZER
7462 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7463 L:      linux-media@vger.kernel.org
7464 S:      Maintained
7465 T:      git git://linuxtv.org/media_tree.git
7466 F:      drivers/media/spi/gs1662.c
7467
7468 GSPCA FINEPIX SUBDRIVER
7469 M:      Frank Zago <frank@zago.net>
7470 L:      linux-media@vger.kernel.org
7471 S:      Maintained
7472 T:      git git://linuxtv.org/media_tree.git
7473 F:      drivers/media/usb/gspca/finepix.c
7474
7475 GSPCA GL860 SUBDRIVER
7476 M:      Olivier Lorin <o.lorin@laposte.net>
7477 L:      linux-media@vger.kernel.org
7478 S:      Maintained
7479 T:      git git://linuxtv.org/media_tree.git
7480 F:      drivers/media/usb/gspca/gl860/
7481
7482 GSPCA M5602 SUBDRIVER
7483 M:      Erik Andren <erik.andren@gmail.com>
7484 L:      linux-media@vger.kernel.org
7485 S:      Maintained
7486 T:      git git://linuxtv.org/media_tree.git
7487 F:      drivers/media/usb/gspca/m5602/
7488
7489 GSPCA PAC207 SONIXB SUBDRIVER
7490 M:      Hans Verkuil <hverkuil@xs4all.nl>
7491 L:      linux-media@vger.kernel.org
7492 S:      Odd Fixes
7493 T:      git git://linuxtv.org/media_tree.git
7494 F:      drivers/media/usb/gspca/pac207.c
7495
7496 GSPCA SN9C20X SUBDRIVER
7497 M:      Brian Johnson <brijohn@gmail.com>
7498 L:      linux-media@vger.kernel.org
7499 S:      Maintained
7500 T:      git git://linuxtv.org/media_tree.git
7501 F:      drivers/media/usb/gspca/sn9c20x.c
7502
7503 GSPCA T613 SUBDRIVER
7504 M:      Leandro Costantino <lcostantino@gmail.com>
7505 L:      linux-media@vger.kernel.org
7506 S:      Maintained
7507 T:      git git://linuxtv.org/media_tree.git
7508 F:      drivers/media/usb/gspca/t613.c
7509
7510 GSPCA USB WEBCAM DRIVER
7511 M:      Hans Verkuil <hverkuil@xs4all.nl>
7512 L:      linux-media@vger.kernel.org
7513 S:      Odd Fixes
7514 T:      git git://linuxtv.org/media_tree.git
7515 F:      drivers/media/usb/gspca/
7516
7517 GTP (GPRS Tunneling Protocol)
7518 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7519 M:      Harald Welte <laforge@gnumonks.org>
7520 L:      osmocom-net-gprs@lists.osmocom.org
7521 S:      Maintained
7522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7523 F:      drivers/net/gtp.c
7524
7525 GUID PARTITION TABLE (GPT)
7526 M:      Davidlohr Bueso <dave@stgolabs.net>
7527 L:      linux-efi@vger.kernel.org
7528 S:      Maintained
7529 F:      block/partitions/efi.*
7530
7531 H8/300 ARCHITECTURE
7532 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7533 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7534 S:      Maintained
7535 W:      http://uclinux-h8.sourceforge.jp
7536 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7537 F:      arch/h8300/
7538 F:      drivers/clk/h8300/
7539 F:      drivers/clocksource/h8300_*.c
7540 F:      drivers/irqchip/irq-renesas-h8*.c
7541
7542 HABANALABS PCI DRIVER
7543 M:      Oded Gabbay <oded.gabbay@gmail.com>
7544 S:      Supported
7545 T:      git https://github.com/HabanaAI/linux.git
7546 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7547 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7548 F:      drivers/misc/habanalabs/
7549 F:      include/uapi/misc/habanalabs.h
7550
7551 HACKRF MEDIA DRIVER
7552 M:      Antti Palosaari <crope@iki.fi>
7553 L:      linux-media@vger.kernel.org
7554 S:      Maintained
7555 W:      https://linuxtv.org
7556 W:      http://palosaari.fi/linux/
7557 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7558 T:      git git://linuxtv.org/anttip/media_tree.git
7559 F:      drivers/media/usb/hackrf/
7560
7561 HANTRO VPU CODEC DRIVER
7562 M:      Ezequiel Garcia <ezequiel@collabora.com>
7563 M:      Philipp Zabel <p.zabel@pengutronix.de>
7564 L:      linux-media@vger.kernel.org
7565 L:      linux-rockchip@lists.infradead.org
7566 S:      Maintained
7567 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7568 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7569 F:      drivers/staging/media/hantro/
7570
7571 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7572 M:      Frank Seidel <frank@f-seidel.de>
7573 L:      platform-driver-x86@vger.kernel.org
7574 S:      Maintained
7575 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7576 F:      drivers/platform/x86/hdaps.c
7577
7578 HARDWARE MONITORING
7579 M:      Jean Delvare <jdelvare@suse.com>
7580 M:      Guenter Roeck <linux@roeck-us.net>
7581 L:      linux-hwmon@vger.kernel.org
7582 S:      Maintained
7583 W:      http://hwmon.wiki.kernel.org/
7584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7585 F:      Documentation/devicetree/bindings/hwmon/
7586 F:      Documentation/hwmon/
7587 F:      drivers/hwmon/
7588 F:      include/linux/hwmon*.h
7589 F:      include/trace/events/hwmon*.h
7590
7591 HARDWARE RANDOM NUMBER GENERATOR CORE
7592 M:      Matt Mackall <mpm@selenic.com>
7593 M:      Herbert Xu <herbert@gondor.apana.org.au>
7594 L:      linux-crypto@vger.kernel.org
7595 S:      Odd fixes
7596 F:      Documentation/admin-guide/hw_random.rst
7597 F:      Documentation/devicetree/bindings/rng/
7598 F:      drivers/char/hw_random/
7599 F:      include/linux/hw_random.h
7600
7601 HARDWARE SPINLOCK CORE
7602 M:      Ohad Ben-Cohen <ohad@wizery.com>
7603 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7604 R:      Baolin Wang <baolin.wang7@gmail.com>
7605 L:      linux-remoteproc@vger.kernel.org
7606 S:      Maintained
7607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7608 F:      Documentation/devicetree/bindings/hwlock/
7609 F:      Documentation/locking/hwspinlock.rst
7610 F:      drivers/hwspinlock/
7611 F:      include/linux/hwspinlock.h
7612
7613 HARDWARE TRACING FACILITIES
7614 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7615 S:      Maintained
7616 F:      drivers/hwtracing/
7617
7618 HARMONY SOUND DRIVER
7619 L:      linux-parisc@vger.kernel.org
7620 S:      Maintained
7621 F:      sound/parisc/harmony.*
7622
7623 HDPVR USB VIDEO ENCODER DRIVER
7624 M:      Hans Verkuil <hverkuil@xs4all.nl>
7625 L:      linux-media@vger.kernel.org
7626 S:      Odd Fixes
7627 W:      https://linuxtv.org
7628 T:      git git://linuxtv.org/media_tree.git
7629 F:      drivers/media/usb/hdpvr/
7630
7631 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7632 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
7633 S:      Supported
7634 F:      Documentation/watchdog/hpwdt.rst
7635 F:      drivers/watchdog/hpwdt.c
7636
7637 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7638 M:      Don Brace <don.brace@microsemi.com>
7639 L:      esc.storagedev@microsemi.com
7640 L:      linux-scsi@vger.kernel.org
7641 S:      Supported
7642 F:      Documentation/scsi/hpsa.rst
7643 F:      drivers/scsi/hpsa*.[ch]
7644 F:      include/linux/cciss*.h
7645 F:      include/uapi/linux/cciss*.h
7646
7647 HFI1 DRIVER
7648 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
7649 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
7650 L:      linux-rdma@vger.kernel.org
7651 S:      Supported
7652 F:      drivers/infiniband/hw/hfi1
7653
7654 HFS FILESYSTEM
7655 L:      linux-fsdevel@vger.kernel.org
7656 S:      Orphan
7657 F:      Documentation/filesystems/hfs.rst
7658 F:      fs/hfs/
7659
7660 HFSPLUS FILESYSTEM
7661 L:      linux-fsdevel@vger.kernel.org
7662 S:      Orphan
7663 F:      Documentation/filesystems/hfsplus.rst
7664 F:      fs/hfsplus/
7665
7666 HGA FRAMEBUFFER DRIVER
7667 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7668 L:      linux-nvidia@lists.surfsouth.com
7669 S:      Maintained
7670 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7671 F:      drivers/video/fbdev/hgafb.c
7672
7673 HIBERNATION (aka Software Suspend, aka swsusp)
7674 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7675 M:      Pavel Machek <pavel@ucw.cz>
7676 L:      linux-pm@vger.kernel.org
7677 S:      Supported
7678 B:      https://bugzilla.kernel.org
7679 F:      arch/*/include/asm/suspend*.h
7680 F:      arch/x86/power/
7681 F:      drivers/base/power/
7682 F:      include/linux/freezer.h
7683 F:      include/linux/pm.h
7684 F:      include/linux/suspend.h
7685 F:      kernel/power/
7686
7687 HID CORE LAYER
7688 M:      Jiri Kosina <jikos@kernel.org>
7689 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7690 L:      linux-input@vger.kernel.org
7691 S:      Maintained
7692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7693 F:      drivers/hid/
7694 F:      include/linux/hid*
7695 F:      include/uapi/linux/hid*
7696
7697 HID SENSOR HUB DRIVERS
7698 M:      Jiri Kosina <jikos@kernel.org>
7699 M:      Jonathan Cameron <jic23@kernel.org>
7700 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7701 L:      linux-input@vger.kernel.org
7702 L:      linux-iio@vger.kernel.org
7703 S:      Maintained
7704 F:      Documentation/hid/hid-sensor*
7705 F:      drivers/hid/hid-sensor-*
7706 F:      drivers/iio/*/hid-*
7707 F:      include/linux/hid-sensor-*
7708
7709 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7710 M:      Thomas Gleixner <tglx@linutronix.de>
7711 L:      linux-kernel@vger.kernel.org
7712 S:      Maintained
7713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7714 F:      Documentation/timers/
7715 F:      include/linux/clockchips.h
7716 F:      include/linux/hrtimer.h
7717 F:      kernel/time/clockevents.c
7718 F:      kernel/time/hrtimer.c
7719 F:      kernel/time/timer_*.c
7720
7721 HIGH-SPEED SCC DRIVER FOR AX.25
7722 L:      linux-hams@vger.kernel.org
7723 S:      Orphan
7724 F:      drivers/net/hamradio/dmascc.c
7725 F:      drivers/net/hamradio/scc.c
7726
7727 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7728 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7729 S:      Supported
7730 W:      http://www.highpoint-tech.com
7731 F:      Documentation/scsi/hptiop.rst
7732 F:      drivers/scsi/hptiop.c
7733
7734 HIPPI
7735 M:      Jes Sorensen <jes@trained-monkey.org>
7736 L:      linux-hippi@sunsite.dk
7737 S:      Maintained
7738 F:      drivers/net/hippi/
7739 F:      include/linux/hippidevice.h
7740 F:      include/uapi/linux/if_hippi.h
7741 F:      net/802/hippi.c
7742
7743 HISILICON DMA DRIVER
7744 M:      Zhou Wang <wangzhou1@hisilicon.com>
7745 L:      dmaengine@vger.kernel.org
7746 S:      Maintained
7747 F:      drivers/dma/hisi_dma.c
7748
7749 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7750 M:      Zaibo Xu <xuzaibo@huawei.com>
7751 L:      linux-crypto@vger.kernel.org
7752 S:      Maintained
7753 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7754 F:      drivers/crypto/hisilicon/hpre/hpre.h
7755 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7756 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7757
7758 HISILICON LPC BUS DRIVER
7759 M:      john.garry@huawei.com
7760 S:      Maintained
7761 W:      http://www.hisilicon.com
7762 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7763 F:      drivers/bus/hisi_lpc.c
7764
7765 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7766 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7767 M:      Salil Mehta <salil.mehta@huawei.com>
7768 L:      netdev@vger.kernel.org
7769 S:      Maintained
7770 W:      http://www.hisilicon.com
7771 F:      drivers/net/ethernet/hisilicon/hns3/
7772
7773 HISILICON NETWORK SUBSYSTEM DRIVER
7774 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7775 M:      Salil Mehta <salil.mehta@huawei.com>
7776 L:      netdev@vger.kernel.org
7777 S:      Maintained
7778 W:      http://www.hisilicon.com
7779 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7780 F:      drivers/net/ethernet/hisilicon/
7781
7782 HISILICON PMU DRIVER
7783 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
7784 S:      Supported
7785 W:      http://www.hisilicon.com
7786 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7787 F:      drivers/perf/hisilicon
7788
7789 HISILICON QM AND ZIP Controller DRIVER
7790 M:      Zhou Wang <wangzhou1@hisilicon.com>
7791 L:      linux-crypto@vger.kernel.org
7792 S:      Maintained
7793 F:      Documentation/ABI/testing/debugfs-hisi-zip
7794 F:      drivers/crypto/hisilicon/qm.c
7795 F:      drivers/crypto/hisilicon/qm.h
7796 F:      drivers/crypto/hisilicon/sgl.c
7797 F:      drivers/crypto/hisilicon/zip/
7798
7799 HISILICON ROCE DRIVER
7800 M:      Lijun Ou <oulijun@huawei.com>
7801 M:      Wei Hu(Xavier) <huwei87@hisilicon.com>
7802 M:      Weihang Li <liweihang@huawei.com>
7803 L:      linux-rdma@vger.kernel.org
7804 S:      Maintained
7805 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7806 F:      drivers/infiniband/hw/hns/
7807
7808 HISILICON SAS Controller
7809 M:      John Garry <john.garry@huawei.com>
7810 S:      Supported
7811 W:      http://www.hisilicon.com
7812 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7813 F:      drivers/scsi/hisi_sas/
7814
7815 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
7816 M:      Zaibo Xu <xuzaibo@huawei.com>
7817 L:      linux-crypto@vger.kernel.org
7818 S:      Maintained
7819 F:      Documentation/ABI/testing/debugfs-hisi-sec
7820 F:      drivers/crypto/hisilicon/sec2/sec.h
7821 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
7822 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
7823 F:      drivers/crypto/hisilicon/sec2/sec_main.c
7824
7825 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
7826 M:      Zaibo Xu <xuzaibo@huawei.com>
7827 S:      Maintained
7828 F:      drivers/char/hw_random/hisi-trng-v2.c
7829
7830 HISILICON V3XX SPI NOR FLASH Controller Driver
7831 M:      John Garry <john.garry@huawei.com>
7832 S:      Maintained
7833 W:      http://www.hisilicon.com
7834 F:      drivers/spi/spi-hisi-sfc-v3xx.c
7835
7836 HMM - Heterogeneous Memory Management
7837 M:      Jérôme Glisse <jglisse@redhat.com>
7838 L:      linux-mm@kvack.org
7839 S:      Maintained
7840 F:      Documentation/vm/hmm.rst
7841 F:      include/linux/hmm*
7842 F:      lib/test_hmm*
7843 F:      mm/hmm*
7844 F:      tools/testing/selftests/vm/*hmm*
7845
7846 HOST AP DRIVER
7847 M:      Jouni Malinen <j@w1.fi>
7848 L:      linux-wireless@vger.kernel.org
7849 S:      Obsolete
7850 W:      http://w1.fi/hostap-driver.html
7851 F:      drivers/net/wireless/intersil/hostap/
7852
7853 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
7854 L:      platform-driver-x86@vger.kernel.org
7855 S:      Orphan
7856 F:      drivers/platform/x86/tc1100-wmi.c
7857
7858 HPET:   High Precision Event Timers driver
7859 M:      Clemens Ladisch <clemens@ladisch.de>
7860 S:      Maintained
7861 F:      Documentation/timers/hpet.rst
7862 F:      drivers/char/hpet.c
7863 F:      include/linux/hpet.h
7864 F:      include/uapi/linux/hpet.h
7865
7866 HPET:   x86
7867 S:      Orphan
7868 F:      arch/x86/include/asm/hpet.h
7869 F:      arch/x86/kernel/hpet.c
7870
7871 HPFS FILESYSTEM
7872 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
7873 S:      Maintained
7874 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
7875 F:      fs/hpfs/
7876
7877 HSI SUBSYSTEM
7878 M:      Sebastian Reichel <sre@kernel.org>
7879 S:      Maintained
7880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
7881 F:      Documentation/ABI/testing/sysfs-bus-hsi
7882 F:      Documentation/driver-api/hsi.rst
7883 F:      drivers/hsi/
7884 F:      include/linux/hsi/
7885 F:      include/uapi/linux/hsi/
7886
7887 HSO 3G MODEM DRIVER
7888 L:      linux-usb@vger.kernel.org
7889 S:      Orphan
7890 F:      drivers/net/usb/hso.c
7891
7892 HSR NETWORK PROTOCOL
7893 L:      netdev@vger.kernel.org
7894 S:      Orphan
7895 F:      net/hsr/
7896
7897 HT16K33 LED CONTROLLER DRIVER
7898 M:      Robin van der Gracht <robin@protonic.nl>
7899 S:      Maintained
7900 F:      Documentation/devicetree/bindings/display/ht16k33.txt
7901 F:      drivers/auxdisplay/ht16k33.c
7902
7903 HTCPEN TOUCHSCREEN DRIVER
7904 M:      Pau Oliva Fora <pof@eslack.org>
7905 L:      linux-input@vger.kernel.org
7906 S:      Maintained
7907 F:      drivers/input/touchscreen/htcpen.c
7908
7909 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
7910 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
7911 L:      linux-iio@vger.kernel.org
7912 S:      Maintained
7913 W:      http://www.st.com/
7914 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
7915 F:      drivers/iio/humidity/hts221*
7916
7917 HUAWEI ETHERNET DRIVER
7918 M:      Bin Luo <luobin9@huawei.com>
7919 L:      netdev@vger.kernel.org
7920 S:      Supported
7921 F:      Documentation/networking/hinic.rst
7922 F:      drivers/net/ethernet/huawei/hinic/
7923
7924 HUGETLB FILESYSTEM
7925 M:      Mike Kravetz <mike.kravetz@oracle.com>
7926 L:      linux-mm@kvack.org
7927 S:      Maintained
7928 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
7929 F:      Documentation/admin-guide/mm/hugetlbpage.rst
7930 F:      Documentation/vm/hugetlbfs_reserv.rst
7931 F:      fs/hugetlbfs/
7932 F:      include/linux/hugetlb.h
7933 F:      mm/hugetlb.c
7934
7935 HVA ST MEDIA DRIVER
7936 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
7937 L:      linux-media@vger.kernel.org
7938 S:      Supported
7939 W:      https://linuxtv.org
7940 T:      git git://linuxtv.org/media_tree.git
7941 F:      drivers/media/platform/sti/hva
7942
7943 HWPOISON MEMORY FAILURE HANDLING
7944 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
7945 L:      linux-mm@kvack.org
7946 S:      Maintained
7947 F:      mm/hwpoison-inject.c
7948 F:      mm/memory-failure.c
7949
7950 HYGON PROCESSOR SUPPORT
7951 M:      Pu Wen <puwen@hygon.cn>
7952 L:      linux-kernel@vger.kernel.org
7953 S:      Maintained
7954 F:      arch/x86/kernel/cpu/hygon.c
7955
7956 HYNIX HI556 SENSOR DRIVER
7957 M:      Shawn Tu <shawnx.tu@intel.com>
7958 L:      linux-media@vger.kernel.org
7959 S:      Maintained
7960 T:      git git://linuxtv.org/media_tree.git
7961 F:      drivers/media/i2c/hi556.c
7962
7963 Hyper-V CORE AND DRIVERS
7964 M:      "K. Y. Srinivasan" <kys@microsoft.com>
7965 M:      Haiyang Zhang <haiyangz@microsoft.com>
7966 M:      Stephen Hemminger <sthemmin@microsoft.com>
7967 M:      Wei Liu <wei.liu@kernel.org>
7968 L:      linux-hyperv@vger.kernel.org
7969 S:      Supported
7970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
7971 F:      Documentation/ABI/stable/sysfs-bus-vmbus
7972 F:      Documentation/ABI/testing/debugfs-hyperv
7973 F:      Documentation/networking/device_drivers/microsoft/netvsc.rst
7974 F:      arch/x86/hyperv
7975 F:      arch/x86/include/asm/hyperv-tlfs.h
7976 F:      arch/x86/include/asm/mshyperv.h
7977 F:      arch/x86/include/asm/trace/hyperv.h
7978 F:      arch/x86/kernel/cpu/mshyperv.c
7979 F:      drivers/clocksource/hyperv_timer.c
7980 F:      drivers/hid/hid-hyperv.c
7981 F:      drivers/hv/
7982 F:      drivers/input/serio/hyperv-keyboard.c
7983 F:      drivers/iommu/hyperv-iommu.c
7984 F:      drivers/net/hyperv/
7985 F:      drivers/pci/controller/pci-hyperv-intf.c
7986 F:      drivers/pci/controller/pci-hyperv.c
7987 F:      drivers/scsi/storvsc_drv.c
7988 F:      drivers/uio/uio_hv_generic.c
7989 F:      drivers/video/fbdev/hyperv_fb.c
7990 F:      include/asm-generic/hyperv-tlfs.h
7991 F:      include/asm-generic/mshyperv.h
7992 F:      include/clocksource/hyperv_timer.h
7993 F:      include/linux/hyperv.h
7994 F:      include/uapi/linux/hyperv.h
7995 F:      net/vmw_vsock/hyperv_transport.c
7996 F:      tools/hv/
7997
7998 HYPERBUS SUPPORT
7999 M:      Vignesh Raghavendra <vigneshr@ti.com>
8000 L:      linux-mtd@lists.infradead.org
8001 S:      Supported
8002 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8003 C:      irc://irc.oftc.net/mtd
8004 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8005 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8006 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8007 F:      drivers/mtd/hyperbus/
8008 F:      include/linux/mtd/hyperbus.h
8009
8010 HYPERVISOR VIRTUAL CONSOLE DRIVER
8011 L:      linuxppc-dev@lists.ozlabs.org
8012 S:      Odd Fixes
8013 F:      drivers/tty/hvc/
8014
8015 I2C ACPI SUPPORT
8016 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8017 L:      linux-i2c@vger.kernel.org
8018 L:      linux-acpi@vger.kernel.org
8019 S:      Maintained
8020 F:      drivers/i2c/i2c-core-acpi.c
8021
8022 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8023 M:      Ajay Gupta <ajayg@nvidia.com>
8024 L:      linux-i2c@vger.kernel.org
8025 S:      Maintained
8026 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8027 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8028
8029 I2C MUXES
8030 M:      Peter Rosin <peda@axentia.se>
8031 L:      linux-i2c@vger.kernel.org
8032 S:      Maintained
8033 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8034 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8035 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8036 F:      Documentation/i2c/i2c-topology.rst
8037 F:      Documentation/i2c/muxes/
8038 F:      drivers/i2c/i2c-mux.c
8039 F:      drivers/i2c/muxes/
8040 F:      include/linux/i2c-mux.h
8041
8042 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8043 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8044 L:      linux-i2c@vger.kernel.org
8045 S:      Maintained
8046 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8047 F:      drivers/i2c/busses/i2c-mv64xxx.c
8048
8049 I2C OVER PARALLEL PORT
8050 M:      Jean Delvare <jdelvare@suse.com>
8051 L:      linux-i2c@vger.kernel.org
8052 S:      Maintained
8053 F:      Documentation/i2c/busses/i2c-parport.rst
8054 F:      drivers/i2c/busses/i2c-parport.c
8055
8056 I2C SUBSYSTEM
8057 M:      Wolfram Sang <wsa@kernel.org>
8058 L:      linux-i2c@vger.kernel.org
8059 S:      Maintained
8060 W:      https://i2c.wiki.kernel.org/
8061 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8063 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8064 F:      Documentation/i2c/
8065 F:      drivers/i2c/*
8066 F:      include/linux/i2c-dev.h
8067 F:      include/linux/i2c-smbus.h
8068 F:      include/linux/i2c.h
8069 F:      include/uapi/linux/i2c-*.h
8070 F:      include/uapi/linux/i2c.h
8071
8072 I2C SUBSYSTEM HOST DRIVERS
8073 L:      linux-i2c@vger.kernel.org
8074 S:      Odd Fixes
8075 W:      https://i2c.wiki.kernel.org/
8076 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8078 F:      Documentation/devicetree/bindings/i2c/
8079 F:      drivers/i2c/algos/
8080 F:      drivers/i2c/busses/
8081
8082 I2C-TAOS-EVM DRIVER
8083 M:      Jean Delvare <jdelvare@suse.com>
8084 L:      linux-i2c@vger.kernel.org
8085 S:      Maintained
8086 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8087 F:      drivers/i2c/busses/i2c-taos-evm.c
8088
8089 I2C-TINY-USB DRIVER
8090 M:      Till Harbaum <till@harbaum.org>
8091 L:      linux-i2c@vger.kernel.org
8092 S:      Maintained
8093 W:      http://www.harbaum.org/till/i2c_tiny_usb
8094 F:      drivers/i2c/busses/i2c-tiny-usb.c
8095
8096 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8097 M:      Jean Delvare <jdelvare@suse.com>
8098 L:      linux-i2c@vger.kernel.org
8099 S:      Maintained
8100 F:      Documentation/i2c/busses/i2c-ali1535.rst
8101 F:      Documentation/i2c/busses/i2c-ali1563.rst
8102 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8103 F:      Documentation/i2c/busses/i2c-amd756.rst
8104 F:      Documentation/i2c/busses/i2c-amd8111.rst
8105 F:      Documentation/i2c/busses/i2c-i801.rst
8106 F:      Documentation/i2c/busses/i2c-nforce2.rst
8107 F:      Documentation/i2c/busses/i2c-piix4.rst
8108 F:      Documentation/i2c/busses/i2c-sis5595.rst
8109 F:      Documentation/i2c/busses/i2c-sis630.rst
8110 F:      Documentation/i2c/busses/i2c-sis96x.rst
8111 F:      Documentation/i2c/busses/i2c-via.rst
8112 F:      Documentation/i2c/busses/i2c-viapro.rst
8113 F:      drivers/i2c/busses/i2c-ali1535.c
8114 F:      drivers/i2c/busses/i2c-ali1563.c
8115 F:      drivers/i2c/busses/i2c-ali15x3.c
8116 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8117 F:      drivers/i2c/busses/i2c-amd756.c
8118 F:      drivers/i2c/busses/i2c-amd8111.c
8119 F:      drivers/i2c/busses/i2c-i801.c
8120 F:      drivers/i2c/busses/i2c-isch.c
8121 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8122 F:      drivers/i2c/busses/i2c-nforce2.c
8123 F:      drivers/i2c/busses/i2c-piix4.c
8124 F:      drivers/i2c/busses/i2c-sis5595.c
8125 F:      drivers/i2c/busses/i2c-sis630.c
8126 F:      drivers/i2c/busses/i2c-sis96x.c
8127 F:      drivers/i2c/busses/i2c-via.c
8128 F:      drivers/i2c/busses/i2c-viapro.c
8129
8130 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8131 M:      Hans de Goede <hdegoede@redhat.com>
8132 L:      linux-i2c@vger.kernel.org
8133 S:      Maintained
8134 F:      drivers/i2c/busses/i2c-cht-wc.c
8135
8136 I2C/SMBUS ISMT DRIVER
8137 M:      Seth Heasley <seth.heasley@intel.com>
8138 M:      Neil Horman <nhorman@tuxdriver.com>
8139 L:      linux-i2c@vger.kernel.org
8140 F:      Documentation/i2c/busses/i2c-ismt.rst
8141 F:      drivers/i2c/busses/i2c-ismt.c
8142
8143 I2C/SMBUS STUB DRIVER
8144 M:      Jean Delvare <jdelvare@suse.com>
8145 L:      linux-i2c@vger.kernel.org
8146 S:      Maintained
8147 F:      drivers/i2c/i2c-stub.c
8148
8149 I3C DRIVER FOR CADENCE I3C MASTER IP
8150 M:      Przemysław Gaj <pgaj@cadence.com>
8151 S:      Maintained
8152 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8153 F:      drivers/i3c/master/i3c-master-cdns.c
8154
8155 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8156 M:      Vitor Soares <vitor.soares@synopsys.com>
8157 S:      Maintained
8158 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8159 F:      drivers/i3c/master/dw*
8160
8161 I3C SUBSYSTEM
8162 M:      Boris Brezillon <bbrezillon@kernel.org>
8163 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8164 S:      Maintained
8165 C:      irc://chat.freenode.net/linux-i3c
8166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8167 F:      Documentation/ABI/testing/sysfs-bus-i3c
8168 F:      Documentation/devicetree/bindings/i3c/
8169 F:      Documentation/driver-api/i3c
8170 F:      drivers/i3c/
8171 F:      include/linux/i3c/
8172
8173 IA64 (Itanium) PLATFORM
8174 M:      Tony Luck <tony.luck@intel.com>
8175 M:      Fenghua Yu <fenghua.yu@intel.com>
8176 L:      linux-ia64@vger.kernel.org
8177 S:      Maintained
8178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8179 F:      Documentation/ia64/
8180 F:      arch/ia64/
8181
8182 IBM Power 842 compression accelerator
8183 M:      Haren Myneni <haren@us.ibm.com>
8184 S:      Supported
8185 F:      crypto/842.c
8186 F:      drivers/crypto/nx/Kconfig
8187 F:      drivers/crypto/nx/Makefile
8188 F:      drivers/crypto/nx/nx-842*
8189 F:      include/linux/sw842.h
8190 F:      lib/842/
8191
8192 IBM Power in-Nest Crypto Acceleration
8193 M:      Breno Leitão <leitao@debian.org>
8194 M:      Nayna Jain <nayna@linux.ibm.com>
8195 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8196 L:      linux-crypto@vger.kernel.org
8197 S:      Supported
8198 F:      drivers/crypto/nx/Kconfig
8199 F:      drivers/crypto/nx/Makefile
8200 F:      drivers/crypto/nx/nx-aes*
8201 F:      drivers/crypto/nx/nx-sha*
8202 F:      drivers/crypto/nx/nx.*
8203 F:      drivers/crypto/nx/nx_csbcpb.h
8204 F:      drivers/crypto/nx/nx_debugfs.c
8205
8206 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8207 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8208 L:      linux-pci@vger.kernel.org
8209 L:      linuxppc-dev@lists.ozlabs.org
8210 S:      Supported
8211 F:      drivers/pci/hotplug/rpadlpar*
8212
8213 IBM Power Linux RAID adapter
8214 M:      Brian King <brking@us.ibm.com>
8215 S:      Supported
8216 F:      drivers/scsi/ipr.*
8217
8218 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8219 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8220 L:      linux-pci@vger.kernel.org
8221 L:      linuxppc-dev@lists.ozlabs.org
8222 S:      Supported
8223 F:      drivers/pci/hotplug/rpaphp*
8224
8225 IBM Power SRIOV Virtual NIC Device Driver
8226 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
8227 M:      John Allen <jallen@linux.ibm.com>
8228 L:      netdev@vger.kernel.org
8229 S:      Supported
8230 F:      drivers/net/ethernet/ibm/ibmvnic.*
8231
8232 IBM Power Virtual Accelerator Switchboard
8233 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8234 L:      linuxppc-dev@lists.ozlabs.org
8235 S:      Supported
8236 F:      arch/powerpc/include/asm/vas.h
8237 F:      arch/powerpc/platforms/powernv/copy-paste.h
8238 F:      arch/powerpc/platforms/powernv/vas*
8239
8240 IBM Power Virtual Ethernet Device Driver
8241 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
8242 L:      netdev@vger.kernel.org
8243 S:      Supported
8244 F:      drivers/net/ethernet/ibm/ibmveth.*
8245
8246 IBM Power Virtual FC Device Drivers
8247 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8248 L:      linux-scsi@vger.kernel.org
8249 S:      Supported
8250 F:      drivers/scsi/ibmvscsi/ibmvfc*
8251
8252 IBM Power Virtual Management Channel Driver
8253 M:      Steven Royer <seroyer@linux.ibm.com>
8254 S:      Supported
8255 F:      drivers/misc/ibmvmc.*
8256
8257 IBM Power Virtual SCSI Device Drivers
8258 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8259 L:      linux-scsi@vger.kernel.org
8260 S:      Supported
8261 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8262 F:      include/scsi/viosrp.h
8263
8264 IBM Power Virtual SCSI Device Target Driver
8265 M:      Michael Cyr <mikecyr@linux.ibm.com>
8266 L:      linux-scsi@vger.kernel.org
8267 L:      target-devel@vger.kernel.org
8268 S:      Supported
8269 F:      drivers/scsi/ibmvscsi_tgt/
8270
8271 IBM Power VMX Cryptographic instructions
8272 M:      Breno Leitão <leitao@debian.org>
8273 M:      Nayna Jain <nayna@linux.ibm.com>
8274 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8275 L:      linux-crypto@vger.kernel.org
8276 S:      Supported
8277 F:      drivers/crypto/vmx/Kconfig
8278 F:      drivers/crypto/vmx/Makefile
8279 F:      drivers/crypto/vmx/aes*
8280 F:      drivers/crypto/vmx/ghash*
8281 F:      drivers/crypto/vmx/ppc-xlate.pl
8282 F:      drivers/crypto/vmx/vmx.c
8283
8284 IBM ServeRAID RAID DRIVER
8285 S:      Orphan
8286 F:      drivers/scsi/ips.*
8287
8288 ICH LPC AND GPIO DRIVER
8289 M:      Peter Tyser <ptyser@xes-inc.com>
8290 S:      Maintained
8291 F:      drivers/gpio/gpio-ich.c
8292 F:      drivers/mfd/lpc_ich.c
8293
8294 ICY I2C DRIVER
8295 M:      Max Staudt <max@enpas.org>
8296 L:      linux-i2c@vger.kernel.org
8297 S:      Maintained
8298 F:      drivers/i2c/busses/i2c-icy.c
8299
8300 IDE SUBSYSTEM
8301 M:      "David S. Miller" <davem@davemloft.net>
8302 L:      linux-ide@vger.kernel.org
8303 S:      Maintained
8304 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8306 F:      Documentation/ide/
8307 F:      drivers/ide/
8308 F:      include/linux/ide.h
8309
8310 IDE/ATAPI DRIVERS
8311 M:      Borislav Petkov <bp@alien8.de>
8312 L:      linux-ide@vger.kernel.org
8313 S:      Maintained
8314 F:      Documentation/cdrom/ide-cd.rst
8315 F:      drivers/ide/ide-cd*
8316
8317 IDEAPAD LAPTOP EXTRAS DRIVER
8318 M:      Ike Panhc <ike.pan@canonical.com>
8319 L:      platform-driver-x86@vger.kernel.org
8320 S:      Maintained
8321 W:      http://launchpad.net/ideapad-laptop
8322 F:      drivers/platform/x86/ideapad-laptop.c
8323
8324 IDEAPAD LAPTOP SLIDEBAR DRIVER
8325 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8326 L:      linux-input@vger.kernel.org
8327 S:      Maintained
8328 W:      https://github.com/o2genum/ideapad-slidebar
8329 F:      drivers/input/misc/ideapad_slidebar.c
8330
8331 IDT VersaClock 5 CLOCK DRIVER
8332 M:      Marek Vasut <marek.vasut@gmail.com>
8333 S:      Maintained
8334 F:      drivers/clk/clk-versaclock5.c
8335
8336 IEEE 802.15.4 SUBSYSTEM
8337 M:      Alexander Aring <alex.aring@gmail.com>
8338 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8339 L:      linux-wpan@vger.kernel.org
8340 S:      Maintained
8341 W:      https://linux-wpan.org/
8342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8344 F:      Documentation/networking/ieee802154.rst
8345 F:      drivers/net/ieee802154/
8346 F:      include/linux/ieee802154.h
8347 F:      include/linux/nl802154.h
8348 F:      include/net/af_ieee802154.h
8349 F:      include/net/cfg802154.h
8350 F:      include/net/ieee802154_netdev.h
8351 F:      include/net/mac802154.h
8352 F:      include/net/nl802154.h
8353 F:      net/ieee802154/
8354 F:      net/mac802154/
8355
8356 IFE PROTOCOL
8357 M:      Yotam Gigi <yotam.gi@gmail.com>
8358 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8359 F:      include/net/ife.h
8360 F:      include/uapi/linux/ife.h
8361 F:      net/ife
8362
8363 IGORPLUG-USB IR RECEIVER
8364 M:      Sean Young <sean@mess.org>
8365 L:      linux-media@vger.kernel.org
8366 S:      Maintained
8367 F:      drivers/media/rc/igorplugusb.c
8368
8369 IGUANAWORKS USB IR TRANSCEIVER
8370 M:      Sean Young <sean@mess.org>
8371 L:      linux-media@vger.kernel.org
8372 S:      Maintained
8373 F:      drivers/media/rc/iguanair.c
8374
8375 IIO DIGITAL POTENTIOMETER DAC
8376 M:      Peter Rosin <peda@axentia.se>
8377 L:      linux-iio@vger.kernel.org
8378 S:      Maintained
8379 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8380 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8381 F:      drivers/iio/dac/dpot-dac.c
8382
8383 IIO ENVELOPE DETECTOR
8384 M:      Peter Rosin <peda@axentia.se>
8385 L:      linux-iio@vger.kernel.org
8386 S:      Maintained
8387 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8388 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8389 F:      drivers/iio/adc/envelope-detector.c
8390
8391 IIO MULTIPLEXER
8392 M:      Peter Rosin <peda@axentia.se>
8393 L:      linux-iio@vger.kernel.org
8394 S:      Maintained
8395 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8396 F:      drivers/iio/multiplexer/iio-mux.c
8397
8398 IIO SUBSYSTEM AND DRIVERS
8399 M:      Jonathan Cameron <jic23@kernel.org>
8400 R:      Hartmut Knaack <knaack.h@gmx.de>
8401 R:      Lars-Peter Clausen <lars@metafoo.de>
8402 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
8403 L:      linux-iio@vger.kernel.org
8404 S:      Maintained
8405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8406 F:      Documentation/ABI/testing/configfs-iio*
8407 F:      Documentation/ABI/testing/sysfs-bus-iio*
8408 F:      Documentation/devicetree/bindings/iio/
8409 F:      drivers/iio/
8410 F:      drivers/staging/iio/
8411 F:      include/linux/iio/
8412 F:      tools/iio/
8413
8414 IIO UNIT CONVERTER
8415 M:      Peter Rosin <peda@axentia.se>
8416 L:      linux-iio@vger.kernel.org
8417 S:      Maintained
8418 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8419 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8420 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8421 F:      drivers/iio/afe/iio-rescale.c
8422
8423 IKANOS/ADI EAGLE ADSL USB DRIVER
8424 M:      Matthieu Castet <castet.matthieu@free.fr>
8425 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8426 S:      Maintained
8427 F:      drivers/usb/atm/ueagle-atm.c
8428
8429 IMGTEC ASCII LCD DRIVER
8430 M:      Paul Burton <paulburton@kernel.org>
8431 S:      Maintained
8432 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8433 F:      drivers/auxdisplay/img-ascii-lcd.c
8434
8435 IMGTEC IR DECODER DRIVER
8436 S:      Orphan
8437 F:      drivers/media/rc/img-ir/
8438
8439 IMON SOUNDGRAPH USB IR RECEIVER
8440 M:      Sean Young <sean@mess.org>
8441 L:      linux-media@vger.kernel.org
8442 S:      Maintained
8443 F:      drivers/media/rc/imon.c
8444 F:      drivers/media/rc/imon_raw.c
8445
8446 IMS TWINTURBO FRAMEBUFFER DRIVER
8447 L:      linux-fbdev@vger.kernel.org
8448 S:      Orphan
8449 F:      drivers/video/fbdev/imsttfb.c
8450
8451 INA209 HARDWARE MONITOR DRIVER
8452 M:      Guenter Roeck <linux@roeck-us.net>
8453 L:      linux-hwmon@vger.kernel.org
8454 S:      Maintained
8455 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
8456 F:      Documentation/hwmon/ina209.rst
8457 F:      drivers/hwmon/ina209.c
8458
8459 INA2XX HARDWARE MONITOR DRIVER
8460 M:      Guenter Roeck <linux@roeck-us.net>
8461 L:      linux-hwmon@vger.kernel.org
8462 S:      Maintained
8463 F:      Documentation/hwmon/ina2xx.rst
8464 F:      drivers/hwmon/ina2xx.c
8465 F:      include/linux/platform_data/ina2xx.h
8466
8467 INDUSTRY PACK SUBSYSTEM (IPACK)
8468 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8469 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8470 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8471 L:      industrypack-devel@lists.sourceforge.net
8472 S:      Maintained
8473 W:      http://industrypack.sourceforge.net
8474 F:      drivers/ipack/
8475
8476 INFINEON DPS310 Driver
8477 M:      Eddie James <eajames@linux.ibm.com>
8478 L:      linux-iio@vger.kernel.org
8479 S:      Maintained
8480 F:      drivers/iio/pressure/dps310.c
8481
8482 INFINIBAND SUBSYSTEM
8483 M:      Doug Ledford <dledford@redhat.com>
8484 M:      Jason Gunthorpe <jgg@mellanox.com>
8485 L:      linux-rdma@vger.kernel.org
8486 S:      Supported
8487 W:      https://github.com/linux-rdma/rdma-core
8488 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8490 F:      Documentation/devicetree/bindings/infiniband/
8491 F:      Documentation/infiniband/
8492 F:      drivers/infiniband/
8493 F:      include/rdma/
8494 F:      include/trace/events/ib_mad.h
8495 F:      include/trace/events/ib_umad.h
8496 F:      include/uapi/linux/if_infiniband.h
8497 F:      include/uapi/rdma/
8498 F:      samples/bpf/ibumad_kern.c
8499 F:      samples/bpf/ibumad_user.c
8500
8501 INGENIC JZ4780 DMA Driver
8502 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
8503 S:      Maintained
8504 F:      drivers/dma/dma-jz4780.c
8505
8506 INGENIC JZ4780 NAND DRIVER
8507 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8508 L:      linux-mtd@lists.infradead.org
8509 S:      Maintained
8510 F:      drivers/mtd/nand/raw/ingenic/
8511
8512 INGENIC JZ47xx SoCs
8513 M:      Paul Cercueil <paul@crapouillou.net>
8514 S:      Maintained
8515 F:      arch/mips/boot/dts/ingenic/
8516 F:      arch/mips/include/asm/mach-jz4740/
8517 F:      arch/mips/jz4740/
8518 F:      drivers/clk/ingenic/
8519 F:      drivers/dma/dma-jz4780.c
8520 F:      drivers/gpu/drm/ingenic/
8521 F:      drivers/i2c/busses/i2c-jz4780.c
8522 F:      drivers/iio/adc/ingenic-adc.c
8523 F:      drivers/irqchip/irq-ingenic.c
8524 F:      drivers/memory/jz4780-nemc.c
8525 F:      drivers/mmc/host/jz4740_mmc.c
8526 F:      drivers/mtd/nand/raw/ingenic/
8527 F:      drivers/pinctrl/pinctrl-ingenic.c
8528 F:      drivers/power/supply/ingenic-battery.c
8529 F:      drivers/pwm/pwm-jz4740.c
8530 F:      drivers/remoteproc/ingenic_rproc.c
8531 F:      drivers/rtc/rtc-jz4740.c
8532 F:      drivers/tty/serial/8250/8250_ingenic.c
8533 F:      drivers/usb/musb/jz4740.c
8534 F:      drivers/watchdog/jz4740_wdt.c
8535 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8536 F:      include/linux/mfd/ingenic-tcu.h
8537 F:      sound/soc/codecs/jz47*
8538 F:      sound/soc/jz4740/
8539
8540 INOTIFY
8541 M:      Jan Kara <jack@suse.cz>
8542 R:      Amir Goldstein <amir73il@gmail.com>
8543 L:      linux-fsdevel@vger.kernel.org
8544 S:      Maintained
8545 F:      Documentation/filesystems/inotify.rst
8546 F:      fs/notify/inotify/
8547 F:      include/linux/inotify.h
8548 F:      include/uapi/linux/inotify.h
8549
8550 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8551 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8552 L:      linux-input@vger.kernel.org
8553 S:      Maintained
8554 Q:      http://patchwork.kernel.org/project/linux-input/list/
8555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8556 F:      Documentation/devicetree/bindings/input/
8557 F:      Documentation/devicetree/bindings/serio/
8558 F:      Documentation/input/
8559 F:      drivers/input/
8560 F:      include/linux/input.h
8561 F:      include/linux/input/
8562 F:      include/uapi/linux/input-event-codes.h
8563 F:      include/uapi/linux/input.h
8564
8565 INPUT MULTITOUCH (MT) PROTOCOL
8566 M:      Henrik Rydberg <rydberg@bitmath.org>
8567 L:      linux-input@vger.kernel.org
8568 S:      Odd fixes
8569 F:      Documentation/input/multi-touch-protocol.rst
8570 F:      drivers/input/input-mt.c
8571 K:      \b(ABS|SYN)_MT_
8572
8573 INSIDE SECURE CRYPTO DRIVER
8574 M:      Antoine Tenart <antoine.tenart@bootlin.com>
8575 L:      linux-crypto@vger.kernel.org
8576 S:      Maintained
8577 F:      drivers/crypto/inside-secure/
8578
8579 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8580 M:      Mimi Zohar <zohar@linux.ibm.com>
8581 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8582 L:      linux-integrity@vger.kernel.org
8583 S:      Supported
8584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8585 F:      security/integrity/ima/
8586
8587 INTEL 810/815 FRAMEBUFFER DRIVER
8588 M:      Antonino Daplas <adaplas@gmail.com>
8589 L:      linux-fbdev@vger.kernel.org
8590 S:      Maintained
8591 F:      drivers/video/fbdev/i810/
8592
8593 INTEL ASoC DRIVERS
8594 M:      Cezary Rojewski <cezary.rojewski@intel.com>
8595 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8596 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
8597 M:      Jie Yang <yang.jie@linux.intel.com>
8598 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8599 S:      Supported
8600 F:      sound/soc/intel/
8601
8602 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8603 M:      Hans de Goede <hdegoede@redhat.com>
8604 L:      platform-driver-x86@vger.kernel.org
8605 S:      Maintained
8606 F:      drivers/platform/x86/intel_atomisp2_pm.c
8607
8608 INTEL BROXTON PMC DRIVER
8609 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8610 M:      Zha Qipeng <qipeng.zha@intel.com>
8611 S:      Maintained
8612 F:      drivers/mfd/intel_pmc_bxt.c
8613 F:      include/linux/mfd/intel_pmc_bxt.h
8614
8615 INTEL C600 SERIES SAS CONTROLLER DRIVER
8616 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
8617 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8618 L:      linux-scsi@vger.kernel.org
8619 S:      Supported
8620 T:      git git://git.code.sf.net/p/intel-sas/isci
8621 F:      drivers/scsi/isci/
8622
8623 INTEL CPU family model numbers
8624 M:      Tony Luck <tony.luck@intel.com>
8625 M:      x86@kernel.org
8626 L:      linux-kernel@vger.kernel.org
8627 S:      Supported
8628 F:      arch/x86/include/asm/intel-family.h
8629
8630 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8631 M:      Jani Nikula <jani.nikula@linux.intel.com>
8632 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8633 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
8634 L:      intel-gfx@lists.freedesktop.org
8635 S:      Supported
8636 W:      https://01.org/linuxgraphics/
8637 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8638 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8639 C:      irc://chat.freenode.net/intel-gfx
8640 T:      git git://anongit.freedesktop.org/drm-intel
8641 F:      Documentation/gpu/i915.rst
8642 F:      drivers/gpu/drm/i915/
8643 F:      include/drm/i915*
8644 F:      include/uapi/drm/i915_drm.h
8645
8646 INTEL ETHERNET DRIVERS
8647 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
8648 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8649 S:      Supported
8650 W:      http://www.intel.com/support/feedback.htm
8651 W:      http://e1000.sourceforge.net/
8652 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8655 F:      Documentation/networking/device_drivers/intel/e100.rst
8656 F:      Documentation/networking/device_drivers/intel/e1000.rst
8657 F:      Documentation/networking/device_drivers/intel/e1000e.rst
8658 F:      Documentation/networking/device_drivers/intel/fm10k.rst
8659 F:      Documentation/networking/device_drivers/intel/i40e.rst
8660 F:      Documentation/networking/device_drivers/intel/iavf.rst
8661 F:      Documentation/networking/device_drivers/intel/ice.rst
8662 F:      Documentation/networking/device_drivers/intel/igb.rst
8663 F:      Documentation/networking/device_drivers/intel/igbvf.rst
8664 F:      Documentation/networking/device_drivers/intel/ixgb.rst
8665 F:      Documentation/networking/device_drivers/intel/ixgbe.rst
8666 F:      Documentation/networking/device_drivers/intel/ixgbevf.rst
8667 F:      drivers/net/ethernet/intel/
8668 F:      drivers/net/ethernet/intel/*/
8669 F:      include/linux/avf/virtchnl.h
8670
8671 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8672 M:      Maik Broemme <mbroemme@libmpq.org>
8673 L:      linux-fbdev@vger.kernel.org
8674 S:      Maintained
8675 F:      Documentation/fb/intelfb.rst
8676 F:      drivers/video/fbdev/intelfb/
8677
8678 INTEL GPIO DRIVERS
8679 M:      Andy Shevchenko <andy@kernel.org>
8680 L:      linux-gpio@vger.kernel.org
8681 S:      Maintained
8682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8683 F:      drivers/gpio/gpio-ich.c
8684 F:      drivers/gpio/gpio-intel-mid.c
8685 F:      drivers/gpio/gpio-merrifield.c
8686 F:      drivers/gpio/gpio-ml-ioh.c
8687 F:      drivers/gpio/gpio-pch.c
8688 F:      drivers/gpio/gpio-sch.c
8689 F:      drivers/gpio/gpio-sodaville.c
8690
8691 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8692 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
8693 M:      Zhi Wang <zhi.a.wang@intel.com>
8694 L:      intel-gvt-dev@lists.freedesktop.org
8695 L:      intel-gfx@lists.freedesktop.org
8696 S:      Supported
8697 W:      https://01.org/igvt-g
8698 T:      git https://github.com/intel/gvt-linux.git
8699 F:      drivers/gpu/drm/i915/gvt/
8700
8701 INTEL HID EVENT DRIVER
8702 M:      Alex Hung <alex.hung@canonical.com>
8703 L:      platform-driver-x86@vger.kernel.org
8704 S:      Maintained
8705 F:      drivers/platform/x86/intel-hid.c
8706
8707 INTEL I/OAT DMA DRIVER
8708 M:      Dave Jiang <dave.jiang@intel.com>
8709 R:      Dan Williams <dan.j.williams@intel.com>
8710 L:      dmaengine@vger.kernel.org
8711 S:      Supported
8712 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8713 F:      drivers/dma/ioat*
8714
8715 INTEL IADX DRIVER
8716 M:      Dave Jiang <dave.jiang@intel.com>
8717 L:      dmaengine@vger.kernel.org
8718 S:      Supported
8719 F:      drivers/dma/idxd/*
8720 F:      include/uapi/linux/idxd.h
8721
8722 INTEL IDLE DRIVER
8723 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
8724 M:      Len Brown <lenb@kernel.org>
8725 L:      linux-pm@vger.kernel.org
8726 S:      Supported
8727 B:      https://bugzilla.kernel.org
8728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8729 F:      drivers/idle/intel_idle.c
8730
8731 INTEL INTEGRATED SENSOR HUB DRIVER
8732 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8733 M:      Jiri Kosina <jikos@kernel.org>
8734 L:      linux-input@vger.kernel.org
8735 S:      Maintained
8736 F:      drivers/hid/intel-ish-hid/
8737
8738 INTEL IOMMU (VT-d)
8739 M:      David Woodhouse <dwmw2@infradead.org>
8740 M:      Lu Baolu <baolu.lu@linux.intel.com>
8741 L:      iommu@lists.linux-foundation.org
8742 S:      Supported
8743 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8744 F:      drivers/iommu/intel/
8745 F:      include/linux/intel-iommu.h
8746 F:      include/linux/intel-svm.h
8747
8748 INTEL IOP-ADMA DMA DRIVER
8749 R:      Dan Williams <dan.j.williams@intel.com>
8750 S:      Odd fixes
8751 F:      drivers/dma/iop-adma.c
8752
8753 INTEL IPU3 CSI-2 CIO2 DRIVER
8754 M:      Yong Zhi <yong.zhi@intel.com>
8755 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8756 M:      Bingbu Cao <bingbu.cao@intel.com>
8757 R:      Tian Shu Qiu <tian.shu.qiu@intel.com>
8758 L:      linux-media@vger.kernel.org
8759 S:      Maintained
8760 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
8761 F:      drivers/media/pci/intel/ipu3/
8762
8763 INTEL IPU3 CSI-2 IMGU DRIVER
8764 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8765 R:      Bingbu Cao <bingbu.cao@intel.com>
8766 R:      Tian Shu Qiu <tian.shu.qiu@intel.com>
8767 L:      linux-media@vger.kernel.org
8768 S:      Maintained
8769 F:      Documentation/admin-guide/media/ipu3.rst
8770 F:      Documentation/admin-guide/media/ipu3_rcb.svg
8771 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
8772 F:      drivers/staging/media/ipu3/
8773
8774 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8775 M:      Krzysztof Halasa <khalasa@piap.pl>
8776 S:      Maintained
8777 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8778 F:      drivers/net/wan/ixp4xx_hss.c
8779 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8780 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8781 F:      include/linux/soc/ixp4xx/npe.h
8782 F:      include/linux/soc/ixp4xx/qmgr.h
8783
8784 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8785 M:      Deepak Saxena <dsaxena@plexity.net>
8786 S:      Maintained
8787 F:      drivers/char/hw_random/ixp4xx-rng.c
8788
8789 INTEL MANAGEMENT ENGINE (mei)
8790 M:      Tomas Winkler <tomas.winkler@intel.com>
8791 L:      linux-kernel@vger.kernel.org
8792 S:      Supported
8793 F:      Documentation/driver-api/mei/*
8794 F:      drivers/misc/mei/*
8795 F:      drivers/watchdog/mei_wdt.c
8796 F:      include/linux/mei_cl_bus.h
8797 F:      include/uapi/linux/mei.h
8798 F:      samples/mei/*
8799
8800 INTEL MENLOW THERMAL DRIVER
8801 M:      Sujith Thomas <sujith.thomas@intel.com>
8802 L:      platform-driver-x86@vger.kernel.org
8803 S:      Supported
8804 W:      https://01.org/linux-acpi
8805 F:      drivers/platform/x86/intel_menlow.c
8806
8807 INTEL MIC DRIVERS (mic)
8808 M:      Sudeep Dutt <sudeep.dutt@intel.com>
8809 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
8810 S:      Supported
8811 W:      https://github.com/sudeepdutt/mic
8812 W:      http://software.intel.com/en-us/mic-developer
8813 F:      Documentation/misc-devices/mic/
8814 F:      drivers/dma/mic_x100_dma.c
8815 F:      drivers/dma/mic_x100_dma.h
8816 F:      drivers/misc/mic/
8817 F:      include/linux/mic_bus.h
8818 F:      include/linux/scif.h
8819 F:      include/uapi/linux/mic_common.h
8820 F:      include/uapi/linux/mic_ioctl.h
8821 F:      include/uapi/linux/scif_ioctl.h
8822
8823 INTEL P-Unit IPC DRIVER
8824 M:      Zha Qipeng <qipeng.zha@intel.com>
8825 L:      platform-driver-x86@vger.kernel.org
8826 S:      Maintained
8827 F:      arch/x86/include/asm/intel_punit_ipc.h
8828 F:      drivers/platform/x86/intel_punit_ipc.c
8829
8830 INTEL PMC CORE DRIVER
8831 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
8832 M:      Vishwanath Somayaji <vishwanath.somayaji@intel.com>
8833 L:      platform-driver-x86@vger.kernel.org
8834 S:      Maintained
8835 F:      drivers/platform/x86/intel_pmc_core*
8836
8837 INTEL PMIC GPIO DRIVERS
8838 M:      Andy Shevchenko <andy@kernel.org>
8839 S:      Maintained
8840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8841 F:      drivers/gpio/gpio-*cove.c
8842 F:      drivers/gpio/gpio-msic.c
8843
8844 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
8845 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8846 S:      Maintained
8847 F:      drivers/mfd/intel_msic.c
8848 F:      drivers/mfd/intel_soc_pmic*
8849 F:      include/linux/mfd/intel_msic.h
8850 F:      include/linux/mfd/intel_soc_pmic*
8851
8852 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8853 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
8854 L:      linux-wireless@vger.kernel.org
8855 S:      Maintained
8856 F:      Documentation/networking/device_drivers/intel/ipw2100.rst
8857 F:      Documentation/networking/device_drivers/intel/ipw2200.rst
8858 F:      drivers/net/wireless/intel/ipw2x00/
8859
8860 INTEL PSTATE DRIVER
8861 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8862 M:      Len Brown <lenb@kernel.org>
8863 L:      linux-pm@vger.kernel.org
8864 S:      Supported
8865 F:      drivers/cpufreq/intel_pstate.c
8866
8867 INTEL RDMA RNIC DRIVER
8868 M:      Faisal Latif <faisal.latif@intel.com>
8869 M:      Shiraz Saleem <shiraz.saleem@intel.com>
8870 L:      linux-rdma@vger.kernel.org
8871 S:      Supported
8872 F:      drivers/infiniband/hw/i40iw/
8873 F:      include/uapi/rdma/i40iw-abi.h
8874
8875 INTEL SCU DRIVERS
8876 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8877 S:      Maintained
8878 F:      arch/x86/include/asm/intel_scu_ipc.h
8879 F:      drivers/platform/x86/intel_scu_*
8880
8881 INTEL SPEED SELECT TECHNOLOGY
8882 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8883 L:      platform-driver-x86@vger.kernel.org
8884 S:      Maintained
8885 F:      drivers/platform/x86/intel_speed_select_if/
8886 F:      include/uapi/linux/isst_if.h
8887 F:      tools/power/x86/intel-speed-select/
8888
8889 INTEL STRATIX10 FIRMWARE DRIVERS
8890 M:      Richard Gong <richard.gong@linux.intel.com>
8891 L:      linux-kernel@vger.kernel.org
8892 S:      Maintained
8893 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
8894 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
8895 F:      drivers/firmware/stratix10-rsu.c
8896 F:      drivers/firmware/stratix10-svc.c
8897 F:      include/linux/firmware/intel/stratix10-smc.h
8898 F:      include/linux/firmware/intel/stratix10-svc-client.h
8899
8900 INTEL TELEMETRY DRIVER
8901 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
8902 M:      "David E. Box" <david.e.box@linux.intel.com>
8903 L:      platform-driver-x86@vger.kernel.org
8904 S:      Maintained
8905 F:      arch/x86/include/asm/intel_telemetry.h
8906 F:      drivers/platform/x86/intel_telemetry*
8907
8908 INTEL UNCORE FREQUENCY CONTROL
8909 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8910 L:      platform-driver-x86@vger.kernel.org
8911 S:      Maintained
8912 F:      drivers/platform/x86/intel-uncore-frequency.c
8913
8914 INTEL VIRTUAL BUTTON DRIVER
8915 M:      AceLan Kao <acelan.kao@canonical.com>
8916 L:      platform-driver-x86@vger.kernel.org
8917 S:      Maintained
8918 F:      drivers/platform/x86/intel-vbtn.c
8919
8920 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
8921 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8922 L:      linux-wireless@vger.kernel.org
8923 S:      Supported
8924 F:      drivers/net/wireless/intel/iwlegacy/
8925
8926 INTEL WIRELESS WIFI LINK (iwlwifi)
8927 M:      Johannes Berg <johannes.berg@intel.com>
8928 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
8929 M:      Luca Coelho <luciano.coelho@intel.com>
8930 M:      Intel Linux Wireless <linuxwifi@intel.com>
8931 L:      linux-wireless@vger.kernel.org
8932 S:      Supported
8933 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
8934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
8935 F:      drivers/net/wireless/intel/iwlwifi/
8936
8937 INTEL WIRELESS WIMAX CONNECTION 2400
8938 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
8939 M:      linux-wimax@intel.com
8940 L:      wimax@linuxwimax.org (subscribers-only)
8941 S:      Supported
8942 W:      http://linuxwimax.org
8943 F:      Documentation/admin-guide/wimax/i2400m.rst
8944 F:      drivers/net/wimax/i2400m/
8945 F:      include/uapi/linux/wimax/i2400m.h
8946
8947 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
8948 M:      Jithu Joseph <jithu.joseph@intel.com>
8949 R:      Maurice Ma <maurice.ma@intel.com>
8950 S:      Maintained
8951 W:      https://slimbootloader.github.io/security/firmware-update.html
8952 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
8953
8954 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
8955 M:      Mario Limonciello <mario.limonciello@dell.com>
8956 S:      Maintained
8957 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
8958
8959 INTEL(R) TRACE HUB
8960 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8961 S:      Supported
8962 F:      Documentation/trace/intel_th.rst
8963 F:      drivers/hwtracing/intel_th/
8964 F:      include/linux/intel_th.h
8965
8966 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
8967 M:      Ning Sun <ning.sun@intel.com>
8968 L:      tboot-devel@lists.sourceforge.net
8969 S:      Supported
8970 W:      http://tboot.sourceforge.net
8971 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
8972 F:      Documentation/x86/intel_txt.rst
8973 F:      arch/x86/kernel/tboot.c
8974 F:      include/linux/tboot.h
8975
8976 INTERCONNECT API
8977 M:      Georgi Djakov <georgi.djakov@linaro.org>
8978 L:      linux-pm@vger.kernel.org
8979 S:      Maintained
8980 F:      Documentation/devicetree/bindings/interconnect/
8981 F:      Documentation/driver-api/interconnect.rst
8982 F:      drivers/interconnect/
8983 F:      include/dt-bindings/interconnect/
8984 F:      include/linux/interconnect-provider.h
8985 F:      include/linux/interconnect.h
8986
8987 INVENSENSE MPU-3050 GYROSCOPE DRIVER
8988 M:      Linus Walleij <linus.walleij@linaro.org>
8989 L:      linux-iio@vger.kernel.org
8990 S:      Maintained
8991 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
8992 F:      drivers/iio/gyro/mpu3050*
8993
8994 IOC3 ETHERNET DRIVER
8995 M:      Ralf Baechle <ralf@linux-mips.org>
8996 L:      linux-mips@vger.kernel.org
8997 S:      Maintained
8998 F:      drivers/net/ethernet/sgi/ioc3-eth.c
8999
9000 IOMAP FILESYSTEM LIBRARY
9001 M:      Christoph Hellwig <hch@infradead.org>
9002 M:      Darrick J. Wong <darrick.wong@oracle.com>
9003 M:      linux-xfs@vger.kernel.org
9004 M:      linux-fsdevel@vger.kernel.org
9005 L:      linux-xfs@vger.kernel.org
9006 L:      linux-fsdevel@vger.kernel.org
9007 S:      Supported
9008 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9009 F:      fs/iomap/
9010 F:      include/linux/iomap.h
9011
9012 IOMMU DRIVERS
9013 M:      Joerg Roedel <joro@8bytes.org>
9014 L:      iommu@lists.linux-foundation.org
9015 S:      Maintained
9016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9017 F:      Documentation/devicetree/bindings/iommu/
9018 F:      drivers/iommu/
9019 F:      include/linux/iommu.h
9020 F:      include/linux/iova.h
9021 F:      include/linux/of_iommu.h
9022
9023 IO_URING
9024 M:      Jens Axboe <axboe@kernel.dk>
9025 L:      io-uring@vger.kernel.org
9026 S:      Maintained
9027 T:      git git://git.kernel.dk/linux-block
9028 T:      git git://git.kernel.dk/liburing
9029 F:      fs/io-wq.c
9030 F:      fs/io-wq.h
9031 F:      fs/io_uring.c
9032 F:      include/uapi/linux/io_uring.h
9033
9034 IPMI SUBSYSTEM
9035 M:      Corey Minyard <minyard@acm.org>
9036 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9037 S:      Supported
9038 W:      http://openipmi.sourceforge.net/
9039 F:      Documentation/driver-api/ipmi.rst
9040 F:      Documentation/devicetree/bindings/ipmi/
9041 F:      drivers/char/ipmi/
9042 F:      include/linux/ipmi*
9043 F:      include/uapi/linux/ipmi*
9044
9045 IPS SCSI RAID DRIVER
9046 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9047 L:      linux-scsi@vger.kernel.org
9048 S:      Maintained
9049 W:      http://www.adaptec.com/
9050 F:      drivers/scsi/ips*
9051
9052 IPVS
9053 M:      Wensong Zhang <wensong@linux-vs.org>
9054 M:      Simon Horman <horms@verge.net.au>
9055 M:      Julian Anastasov <ja@ssi.bg>
9056 L:      netdev@vger.kernel.org
9057 L:      lvs-devel@vger.kernel.org
9058 S:      Maintained
9059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9061 F:      Documentation/networking/ipvs-sysctl.rst
9062 F:      include/net/ip_vs.h
9063 F:      include/uapi/linux/ip_vs.h
9064 F:      net/netfilter/ipvs/
9065
9066 IPWIRELESS DRIVER
9067 M:      Jiri Kosina <jikos@kernel.org>
9068 M:      David Sterba <dsterba@suse.com>
9069 S:      Odd Fixes
9070 F:      drivers/tty/ipwireless/
9071
9072 IPX NETWORK LAYER
9073 L:      netdev@vger.kernel.org
9074 S:      Obsolete
9075 F:      include/uapi/linux/ipx.h
9076
9077 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9078 M:      Marc Zyngier <maz@kernel.org>
9079 S:      Maintained
9080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9081 F:      Documentation/core-api/irq/irq-domain.rst
9082 F:      include/linux/irqdomain.h
9083 F:      kernel/irq/irqdomain.c
9084 F:      kernel/irq/msi.c
9085
9086 IRQ SUBSYSTEM
9087 M:      Thomas Gleixner <tglx@linutronix.de>
9088 L:      linux-kernel@vger.kernel.org
9089 S:      Maintained
9090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9091 F:      kernel/irq/
9092
9093 IRQCHIP DRIVERS
9094 M:      Thomas Gleixner <tglx@linutronix.de>
9095 M:      Jason Cooper <jason@lakedaemon.net>
9096 M:      Marc Zyngier <maz@kernel.org>
9097 L:      linux-kernel@vger.kernel.org
9098 S:      Maintained
9099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9100 F:      Documentation/devicetree/bindings/interrupt-controller/
9101 F:      drivers/irqchip/
9102
9103 ISA
9104 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9105 S:      Maintained
9106 F:      Documentation/driver-api/isa.rst
9107 F:      drivers/base/isa.c
9108 F:      include/linux/isa.h
9109
9110 ISA RADIO MODULE
9111 M:      Hans Verkuil <hverkuil@xs4all.nl>
9112 L:      linux-media@vger.kernel.org
9113 S:      Maintained
9114 W:      https://linuxtv.org
9115 T:      git git://linuxtv.org/media_tree.git
9116 F:      drivers/media/radio/radio-isa*
9117
9118 ISAPNP
9119 M:      Jaroslav Kysela <perex@perex.cz>
9120 S:      Maintained
9121 F:      Documentation/driver-api/isapnp.rst
9122 F:      drivers/pnp/isapnp/
9123 F:      include/linux/isapnp.h
9124
9125 ISCSI
9126 M:      Lee Duncan <lduncan@suse.com>
9127 M:      Chris Leech <cleech@redhat.com>
9128 L:      open-iscsi@googlegroups.com
9129 L:      linux-scsi@vger.kernel.org
9130 S:      Maintained
9131 W:      www.open-iscsi.com
9132 F:      drivers/scsi/*iscsi*
9133 F:      include/scsi/*iscsi*
9134
9135 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9136 M:      Peter Jones <pjones@redhat.com>
9137 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9138 S:      Maintained
9139 F:      drivers/firmware/iscsi_ibft*
9140
9141 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9142 M:      Sagi Grimberg <sagi@grimberg.me>
9143 M:      Max Gurtovoy <maxg@mellanox.com>
9144 L:      linux-rdma@vger.kernel.org
9145 S:      Supported
9146 W:      http://www.openfabrics.org
9147 W:      www.open-iscsi.org
9148 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9149 F:      drivers/infiniband/ulp/iser/
9150
9151 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9152 M:      Sagi Grimberg <sagi@grimberg.me>
9153 L:      linux-rdma@vger.kernel.org
9154 L:      target-devel@vger.kernel.org
9155 S:      Supported
9156 W:      http://www.linux-iscsi.org
9157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9158 F:      drivers/infiniband/ulp/isert
9159
9160 ISDN/CMTP OVER BLUETOOTH
9161 M:      Karsten Keil <isdn@linux-pingi.de>
9162 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9163 L:      netdev@vger.kernel.org
9164 S:      Odd Fixes
9165 W:      http://www.isdn4linux.de
9166 F:      Documentation/isdn/
9167 F:      drivers/isdn/capi/
9168 F:      include/linux/isdn/
9169 F:      include/uapi/linux/isdn/
9170 F:      net/bluetooth/cmtp/
9171
9172 ISDN/mISDN SUBSYSTEM
9173 M:      Karsten Keil <isdn@linux-pingi.de>
9174 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9175 L:      netdev@vger.kernel.org
9176 S:      Maintained
9177 W:      http://www.isdn4linux.de
9178 F:      drivers/isdn/Kconfig
9179 F:      drivers/isdn/Makefile
9180 F:      drivers/isdn/hardware/
9181 F:      drivers/isdn/mISDN/
9182
9183 IT87 HARDWARE MONITORING DRIVER
9184 M:      Jean Delvare <jdelvare@suse.com>
9185 L:      linux-hwmon@vger.kernel.org
9186 S:      Maintained
9187 F:      Documentation/hwmon/it87.rst
9188 F:      drivers/hwmon/it87.c
9189
9190 IT913X MEDIA DRIVER
9191 M:      Antti Palosaari <crope@iki.fi>
9192 L:      linux-media@vger.kernel.org
9193 S:      Maintained
9194 W:      https://linuxtv.org
9195 W:      http://palosaari.fi/linux/
9196 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9197 T:      git git://linuxtv.org/anttip/media_tree.git
9198 F:      drivers/media/tuners/it913x*
9199
9200 IVTV VIDEO4LINUX DRIVER
9201 M:      Andy Walls <awalls@md.metrocast.net>
9202 L:      linux-media@vger.kernel.org
9203 S:      Maintained
9204 W:      https://linuxtv.org
9205 T:      git git://linuxtv.org/media_tree.git
9206 F:      Documentation/admin-guide/media/ivtv*
9207 F:      drivers/media/pci/ivtv/
9208 F:      include/uapi/linux/ivtv*
9209
9210 IX2505V MEDIA DRIVER
9211 M:      Malcolm Priestley <tvboxspy@gmail.com>
9212 L:      linux-media@vger.kernel.org
9213 S:      Maintained
9214 W:      https://linuxtv.org
9215 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9216 F:      drivers/media/dvb-frontends/ix2505v*
9217
9218 JAILHOUSE HYPERVISOR INTERFACE
9219 M:      Jan Kiszka <jan.kiszka@siemens.com>
9220 L:      jailhouse-dev@googlegroups.com
9221 S:      Maintained
9222 F:      arch/x86/include/asm/jailhouse_para.h
9223 F:      arch/x86/kernel/jailhouse.c
9224
9225 JC42.4 TEMPERATURE SENSOR DRIVER
9226 M:      Guenter Roeck <linux@roeck-us.net>
9227 L:      linux-hwmon@vger.kernel.org
9228 S:      Maintained
9229 F:      Documentation/hwmon/jc42.rst
9230 F:      drivers/hwmon/jc42.c
9231
9232 JFS FILESYSTEM
9233 M:      Dave Kleikamp <shaggy@kernel.org>
9234 L:      jfs-discussion@lists.sourceforge.net
9235 S:      Maintained
9236 W:      http://jfs.sourceforge.net/
9237 T:      git git://github.com/kleikamp/linux-shaggy.git
9238 F:      Documentation/admin-guide/jfs.rst
9239 F:      fs/jfs/
9240
9241 JME NETWORK DRIVER
9242 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9243 L:      netdev@vger.kernel.org
9244 S:      Maintained
9245 F:      drivers/net/ethernet/jme.*
9246
9247 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9248 M:      David Woodhouse <dwmw2@infradead.org>
9249 M:      Richard Weinberger <richard@nod.at>
9250 L:      linux-mtd@lists.infradead.org
9251 S:      Odd Fixes
9252 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9253 T:      git git://git.infradead.org/ubifs-2.6.git
9254 F:      fs/jffs2/
9255 F:      include/uapi/linux/jffs2.h
9256
9257 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9258 M:      "Theodore Ts'o" <tytso@mit.edu>
9259 M:      Jan Kara <jack@suse.com>
9260 L:      linux-ext4@vger.kernel.org
9261 S:      Maintained
9262 F:      fs/jbd2/
9263 F:      include/linux/jbd2.h
9264
9265 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9266 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9267 L:      linux-media@vger.kernel.org
9268 S:      Maintained
9269 F:      drivers/media/platform/rcar_jpu.c
9270
9271 JSM Neo PCI based serial card
9272 L:      linux-serial@vger.kernel.org
9273 S:      Orphan
9274 F:      drivers/tty/serial/jsm/
9275
9276 K10TEMP HARDWARE MONITORING DRIVER
9277 M:      Clemens Ladisch <clemens@ladisch.de>
9278 L:      linux-hwmon@vger.kernel.org
9279 S:      Maintained
9280 F:      Documentation/hwmon/k10temp.rst
9281 F:      drivers/hwmon/k10temp.c
9282
9283 K8TEMP HARDWARE MONITORING DRIVER
9284 M:      Rudolf Marek <r.marek@assembler.cz>
9285 L:      linux-hwmon@vger.kernel.org
9286 S:      Maintained
9287 F:      Documentation/hwmon/k8temp.rst
9288 F:      drivers/hwmon/k8temp.c
9289
9290 KASAN
9291 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
9292 R:      Alexander Potapenko <glider@google.com>
9293 R:      Dmitry Vyukov <dvyukov@google.com>
9294 L:      kasan-dev@googlegroups.com
9295 S:      Maintained
9296 F:      Documentation/dev-tools/kasan.rst
9297 F:      arch/*/include/asm/kasan.h
9298 F:      arch/*/mm/kasan_init*
9299 F:      include/linux/kasan*.h
9300 F:      lib/test_kasan.c
9301 F:      mm/kasan/
9302 F:      scripts/Makefile.kasan
9303
9304 KCONFIG
9305 M:      Masahiro Yamada <masahiroy@kernel.org>
9306 L:      linux-kbuild@vger.kernel.org
9307 S:      Maintained
9308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9309 F:      Documentation/kbuild/kconfig*
9310 F:      scripts/Kconfig.include
9311 F:      scripts/kconfig/
9312
9313 KCSAN
9314 M:      Marco Elver <elver@google.com>
9315 R:      Dmitry Vyukov <dvyukov@google.com>
9316 L:      kasan-dev@googlegroups.com
9317 S:      Maintained
9318 F:      Documentation/dev-tools/kcsan.rst
9319 F:      include/linux/kcsan*.h
9320 F:      kernel/kcsan/
9321 F:      lib/Kconfig.kcsan
9322 F:      scripts/Makefile.kcsan
9323
9324 KDUMP
9325 M:      Dave Young <dyoung@redhat.com>
9326 M:      Baoquan He <bhe@redhat.com>
9327 R:      Vivek Goyal <vgoyal@redhat.com>
9328 L:      kexec@lists.infradead.org
9329 S:      Maintained
9330 W:      http://lse.sourceforge.net/kdump/
9331 F:      Documentation/admin-guide/kdump/
9332 F:      fs/proc/vmcore.c
9333 F:      include/linux/crash_core.h
9334 F:      include/linux/crash_dump.h
9335 F:      include/uapi/linux/vmcore.h
9336 F:      kernel/crash_*.c
9337
9338 KEENE FM RADIO TRANSMITTER DRIVER
9339 M:      Hans Verkuil <hverkuil@xs4all.nl>
9340 L:      linux-media@vger.kernel.org
9341 S:      Maintained
9342 W:      https://linuxtv.org
9343 T:      git git://linuxtv.org/media_tree.git
9344 F:      drivers/media/radio/radio-keene*
9345
9346 KERNEL AUTOMOUNTER
9347 M:      Ian Kent <raven@themaw.net>
9348 L:      autofs@vger.kernel.org
9349 S:      Maintained
9350 F:      fs/autofs/
9351
9352 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9353 M:      Masahiro Yamada <masahiroy@kernel.org>
9354 M:      Michal Marek <michal.lkml@markovi.net>
9355 L:      linux-kbuild@vger.kernel.org
9356 S:      Maintained
9357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9358 F:      Documentation/kbuild/
9359 F:      Makefile
9360 F:      scripts/*vmlinux*
9361 F:      scripts/Kbuild*
9362 F:      scripts/Makefile*
9363 F:      scripts/basic/
9364 F:      scripts/mk*
9365 F:      scripts/mod/
9366 F:      scripts/package/
9367
9368 KERNEL JANITORS
9369 L:      kernel-janitors@vger.kernel.org
9370 S:      Odd Fixes
9371 W:      http://kernelnewbies.org/KernelJanitors
9372
9373 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9374 M:      "J. Bruce Fields" <bfields@fieldses.org>
9375 M:      Chuck Lever <chuck.lever@oracle.com>
9376 L:      linux-nfs@vger.kernel.org
9377 S:      Supported
9378 W:      http://nfs.sourceforge.net/
9379 T:      git git://linux-nfs.org/~bfields/linux.git
9380 F:      fs/lockd/
9381 F:      fs/nfs_common/
9382 F:      fs/nfsd/
9383 F:      include/linux/lockd/
9384 F:      include/linux/sunrpc/
9385 F:      include/uapi/linux/nfsd/
9386 F:      include/uapi/linux/sunrpc/
9387 F:      net/sunrpc/
9388
9389 KERNEL SELFTEST FRAMEWORK
9390 M:      Shuah Khan <shuah@kernel.org>
9391 M:      Shuah Khan <skhan@linuxfoundation.org>
9392 L:      linux-kselftest@vger.kernel.org
9393 S:      Maintained
9394 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9396 F:      Documentation/dev-tools/kselftest*
9397 F:      tools/testing/selftests/
9398
9399 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9400 M:      Brendan Higgins <brendanhiggins@google.com>
9401 L:      linux-kselftest@vger.kernel.org
9402 L:      kunit-dev@googlegroups.com
9403 S:      Maintained
9404 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9405 F:      Documentation/dev-tools/kunit/
9406 F:      include/kunit/
9407 F:      lib/kunit/
9408 F:      tools/testing/kunit/
9409
9410 KERNEL USERMODE HELPER
9411 M:      Luis Chamberlain <mcgrof@kernel.org>
9412 L:      linux-kernel@vger.kernel.org
9413 S:      Maintained
9414 F:      include/linux/umh.h
9415 F:      kernel/umh.c
9416
9417 KERNEL VIRTUAL MACHINE (KVM)
9418 M:      Paolo Bonzini <pbonzini@redhat.com>
9419 L:      kvm@vger.kernel.org
9420 S:      Supported
9421 W:      http://www.linux-kvm.org
9422 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9423 F:      Documentation/virt/kvm/
9424 F:      include/asm-generic/kvm*
9425 F:      include/kvm/iodev.h
9426 F:      include/linux/kvm*
9427 F:      include/trace/events/kvm.h
9428 F:      include/uapi/asm-generic/kvm*
9429 F:      include/uapi/linux/kvm*
9430 F:      tools/kvm/
9431 F:      tools/testing/selftests/kvm/
9432 F:      virt/kvm/*
9433
9434 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9435 M:      Marc Zyngier <maz@kernel.org>
9436 R:      James Morse <james.morse@arm.com>
9437 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
9438 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
9439 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9440 L:      kvmarm@lists.cs.columbia.edu
9441 S:      Maintained
9442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9443 F:      arch/arm64/include/asm/kvm*
9444 F:      arch/arm64/include/uapi/asm/kvm*
9445 F:      arch/arm64/kvm/
9446 F:      include/kvm/arm_*
9447
9448 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9449 L:      linux-mips@vger.kernel.org
9450 L:      kvm@vger.kernel.org
9451 S:      Orphan
9452 F:      arch/mips/include/asm/kvm*
9453 F:      arch/mips/include/uapi/asm/kvm*
9454 F:      arch/mips/kvm/
9455
9456 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9457 M:      Paul Mackerras <paulus@ozlabs.org>
9458 L:      kvm-ppc@vger.kernel.org
9459 S:      Supported
9460 W:      http://www.linux-kvm.org/
9461 T:      git git://github.com/agraf/linux-2.6.git
9462 F:      arch/powerpc/include/asm/kvm*
9463 F:      arch/powerpc/include/uapi/asm/kvm*
9464 F:      arch/powerpc/kernel/kvm*
9465 F:      arch/powerpc/kvm/
9466
9467 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9468 M:      Christian Borntraeger <borntraeger@de.ibm.com>
9469 M:      Janosch Frank <frankja@linux.ibm.com>
9470 R:      David Hildenbrand <david@redhat.com>
9471 R:      Cornelia Huck <cohuck@redhat.com>
9472 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
9473 L:      kvm@vger.kernel.org
9474 S:      Supported
9475 W:      http://www.ibm.com/developerworks/linux/linux390/
9476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9477 F:      Documentation/virt/kvm/s390*
9478 F:      arch/s390/include/asm/gmap.h
9479 F:      arch/s390/include/asm/kvm*
9480 F:      arch/s390/include/uapi/asm/kvm*
9481 F:      arch/s390/kvm/
9482 F:      arch/s390/mm/gmap.c
9483 F:      tools/testing/selftests/kvm/*/s390x/
9484 F:      tools/testing/selftests/kvm/s390x/
9485
9486 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9487 M:      Paolo Bonzini <pbonzini@redhat.com>
9488 R:      Sean Christopherson <sean.j.christopherson@intel.com>
9489 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
9490 R:      Wanpeng Li <wanpengli@tencent.com>
9491 R:      Jim Mattson <jmattson@google.com>
9492 R:      Joerg Roedel <joro@8bytes.org>
9493 L:      kvm@vger.kernel.org
9494 S:      Supported
9495 W:      http://www.linux-kvm.org
9496 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9497 F:      arch/x86/include/asm/kvm*
9498 F:      arch/x86/include/asm/pvclock-abi.h
9499 F:      arch/x86/include/asm/svm.h
9500 F:      arch/x86/include/asm/vmx*.h
9501 F:      arch/x86/include/uapi/asm/kvm*
9502 F:      arch/x86/include/uapi/asm/svm.h
9503 F:      arch/x86/include/uapi/asm/vmx.h
9504 F:      arch/x86/kernel/kvm.c
9505 F:      arch/x86/kernel/kvmclock.c
9506 F:      arch/x86/kvm/
9507 F:      arch/x86/kvm/*/
9508
9509 KERNFS
9510 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9511 M:      Tejun Heo <tj@kernel.org>
9512 S:      Supported
9513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9514 F:      fs/kernfs/
9515 F:      include/linux/kernfs.h
9516
9517 KEXEC
9518 M:      Eric Biederman <ebiederm@xmission.com>
9519 L:      kexec@lists.infradead.org
9520 S:      Maintained
9521 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9522 F:      include/linux/kexec.h
9523 F:      include/uapi/linux/kexec.h
9524 F:      kernel/kexec*
9525
9526 KEYS-ENCRYPTED
9527 M:      Mimi Zohar <zohar@linux.ibm.com>
9528 L:      linux-integrity@vger.kernel.org
9529 L:      keyrings@vger.kernel.org
9530 S:      Supported
9531 F:      Documentation/security/keys/trusted-encrypted.rst
9532 F:      include/keys/encrypted-type.h
9533 F:      security/keys/encrypted-keys/
9534
9535 KEYS-TRUSTED
9536 M:      James Bottomley <jejb@linux.ibm.com>
9537 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9538 M:      Mimi Zohar <zohar@linux.ibm.com>
9539 L:      linux-integrity@vger.kernel.org
9540 L:      keyrings@vger.kernel.org
9541 S:      Supported
9542 F:      Documentation/security/keys/trusted-encrypted.rst
9543 F:      include/keys/trusted-type.h
9544 F:      include/keys/trusted_tpm.h
9545 F:      security/keys/trusted-keys/
9546
9547 KEYS/KEYRINGS
9548 M:      David Howells <dhowells@redhat.com>
9549 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9550 L:      keyrings@vger.kernel.org
9551 S:      Maintained
9552 F:      Documentation/security/keys/core.rst
9553 F:      include/keys/
9554 F:      include/linux/key-type.h
9555 F:      include/linux/key.h
9556 F:      include/linux/keyctl.h
9557 F:      include/uapi/linux/keyctl.h
9558 F:      security/keys/
9559
9560 KFIFO
9561 M:      Stefani Seibold <stefani@seibold.net>
9562 S:      Maintained
9563 F:      include/linux/kfifo.h
9564 F:      lib/kfifo.c
9565 F:      samples/kfifo/
9566
9567 KGDB / KDB /debug_core
9568 M:      Jason Wessel <jason.wessel@windriver.com>
9569 M:      Daniel Thompson <daniel.thompson@linaro.org>
9570 R:      Douglas Anderson <dianders@chromium.org>
9571 L:      kgdb-bugreport@lists.sourceforge.net
9572 S:      Maintained
9573 W:      http://kgdb.wiki.kernel.org/
9574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9575 F:      Documentation/dev-tools/kgdb.rst
9576 F:      drivers/misc/kgdbts.c
9577 F:      drivers/tty/serial/kgdboc.c
9578 F:      include/linux/kdb.h
9579 F:      include/linux/kgdb.h
9580 F:      kernel/debug/
9581
9582 KMEMLEAK
9583 M:      Catalin Marinas <catalin.marinas@arm.com>
9584 S:      Maintained
9585 F:      Documentation/dev-tools/kmemleak.rst
9586 F:      include/linux/kmemleak.h
9587 F:      mm/kmemleak-test.c
9588 F:      mm/kmemleak.c
9589
9590 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9591 M:      Luis Chamberlain <mcgrof@kernel.org>
9592 L:      linux-kernel@vger.kernel.org
9593 S:      Maintained
9594 F:      include/linux/kmod.h
9595 F:      kernel/kmod.c
9596 F:      lib/test_kmod.c
9597 F:      tools/testing/selftests/kmod/
9598
9599 KPROBES
9600 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9601 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9602 M:      "David S. Miller" <davem@davemloft.net>
9603 M:      Masami Hiramatsu <mhiramat@kernel.org>
9604 S:      Maintained
9605 F:      Documentation/kprobes.txt
9606 F:      include/asm-generic/kprobes.h
9607 F:      include/linux/kprobes.h
9608 F:      kernel/kprobes.c
9609
9610 KS0108 LCD CONTROLLER DRIVER
9611 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9612 S:      Maintained
9613 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9614 F:      drivers/auxdisplay/ks0108.c
9615 F:      include/linux/ks0108.h
9616
9617 L3MDEV
9618 M:      David Ahern <dsahern@kernel.org>
9619 L:      netdev@vger.kernel.org
9620 S:      Maintained
9621 F:      include/net/l3mdev.h
9622 F:      net/l3mdev
9623
9624 L7 BPF FRAMEWORK
9625 M:      John Fastabend <john.fastabend@gmail.com>
9626 M:      Daniel Borkmann <daniel@iogearbox.net>
9627 M:      Jakub Sitnicki <jakub@cloudflare.com>
9628 M:      Lorenz Bauer <lmb@cloudflare.com>
9629 L:      netdev@vger.kernel.org
9630 L:      bpf@vger.kernel.org
9631 S:      Maintained
9632 F:      include/linux/skmsg.h
9633 F:      net/core/skmsg.c
9634 F:      net/core/sock_map.c
9635 F:      net/ipv4/tcp_bpf.c
9636 F:      net/ipv4/udp_bpf.c
9637
9638 LANTIQ / INTEL Ethernet drivers
9639 M:      Hauke Mehrtens <hauke@hauke-m.de>
9640 L:      netdev@vger.kernel.org
9641 S:      Maintained
9642 F:      drivers/net/dsa/lantiq_gswip.c
9643 F:      drivers/net/dsa/lantiq_pce.h
9644 F:      drivers/net/ethernet/lantiq_xrx200.c
9645 F:      net/dsa/tag_gswip.c
9646
9647 LANTIQ MIPS ARCHITECTURE
9648 M:      John Crispin <john@phrozen.org>
9649 L:      linux-mips@vger.kernel.org
9650 S:      Maintained
9651 F:      arch/mips/lantiq
9652 F:      drivers/soc/lantiq
9653
9654 LAPB module
9655 L:      linux-x25@vger.kernel.org
9656 S:      Orphan
9657 F:      Documentation/networking/lapb-module.rst
9658 F:      include/*/lapb.h
9659 F:      net/lapb/
9660
9661 LASI 53c700 driver for PARISC
9662 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9663 L:      linux-scsi@vger.kernel.org
9664 S:      Maintained
9665 F:      Documentation/scsi/53c700.rst
9666 F:      drivers/scsi/53c700*
9667
9668 LEAKING_ADDRESSES
9669 M:      Tobin C. Harding <me@tobin.cc>
9670 M:      Tycho Andersen <tycho@tycho.ws>
9671 L:      kernel-hardening@lists.openwall.com
9672 S:      Maintained
9673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9674 F:      scripts/leaking_addresses.pl
9675
9676 LED SUBSYSTEM
9677 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
9678 M:      Pavel Machek <pavel@ucw.cz>
9679 R:      Dan Murphy <dmurphy@ti.com>
9680 L:      linux-leds@vger.kernel.org
9681 S:      Maintained
9682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
9683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9684 F:      Documentation/devicetree/bindings/leds/
9685 F:      drivers/leds/
9686 F:      include/linux/leds.h
9687
9688 LEGACY EEPROM DRIVER
9689 M:      Jean Delvare <jdelvare@suse.com>
9690 S:      Maintained
9691 F:      Documentation/misc-devices/eeprom.rst
9692 F:      drivers/misc/eeprom/eeprom.c
9693
9694 LEGO MINDSTORMS EV3
9695 R:      David Lechner <david@lechnology.com>
9696 S:      Maintained
9697 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9698 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9699 F:      drivers/power/supply/lego_ev3_battery.c
9700
9701 LEGO USB Tower driver
9702 M:      Juergen Stuber <starblue@users.sourceforge.net>
9703 L:      legousb-devel@lists.sourceforge.net
9704 S:      Maintained
9705 W:      http://legousb.sourceforge.net/
9706 F:      drivers/usb/misc/legousbtower.c
9707
9708 LG LAPTOP EXTRAS
9709 M:      Matan Ziv-Av <matan@svgalib.org>
9710 L:      platform-driver-x86@vger.kernel.org
9711 S:      Maintained
9712 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9713 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9714 F:      drivers/platform/x86/lg-laptop.c
9715
9716 LG2160 MEDIA DRIVER
9717 M:      Michael Krufky <mkrufky@linuxtv.org>
9718 L:      linux-media@vger.kernel.org
9719 S:      Maintained
9720 W:      https://linuxtv.org
9721 W:      http://github.com/mkrufky
9722 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9723 T:      git git://linuxtv.org/mkrufky/tuners.git
9724 F:      drivers/media/dvb-frontends/lg2160.*
9725
9726 LGDT3305 MEDIA DRIVER
9727 M:      Michael Krufky <mkrufky@linuxtv.org>
9728 L:      linux-media@vger.kernel.org
9729 S:      Maintained
9730 W:      https://linuxtv.org
9731 W:      http://github.com/mkrufky
9732 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9733 T:      git git://linuxtv.org/mkrufky/tuners.git
9734 F:      drivers/media/dvb-frontends/lgdt3305.*
9735
9736 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9737 M:      Viresh Kumar <vireshk@kernel.org>
9738 L:      linux-ide@vger.kernel.org
9739 S:      Maintained
9740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9741 F:      drivers/ata/pata_arasan_cf.c
9742 F:      include/linux/pata_arasan_cf_data.h
9743
9744 LIBATA PATA DRIVERS
9745 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9746 M:      Jens Axboe <axboe@kernel.dk>
9747 L:      linux-ide@vger.kernel.org
9748 S:      Maintained
9749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9750 F:      drivers/ata/ata_generic.c
9751 F:      drivers/ata/pata_*.c
9752
9753 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9754 M:      Linus Walleij <linus.walleij@linaro.org>
9755 L:      linux-ide@vger.kernel.org
9756 S:      Maintained
9757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9758 F:      drivers/ata/pata_ftide010.c
9759 F:      drivers/ata/sata_gemini.c
9760 F:      drivers/ata/sata_gemini.h
9761
9762 LIBATA SATA AHCI PLATFORM devices support
9763 M:      Hans de Goede <hdegoede@redhat.com>
9764 M:      Jens Axboe <axboe@kernel.dk>
9765 L:      linux-ide@vger.kernel.org
9766 S:      Maintained
9767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9768 F:      drivers/ata/ahci_platform.c
9769 F:      drivers/ata/libahci_platform.c
9770 F:      include/linux/ahci_platform.h
9771
9772 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9773 M:      Mikael Pettersson <mikpelinux@gmail.com>
9774 L:      linux-ide@vger.kernel.org
9775 S:      Maintained
9776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9777 F:      drivers/ata/sata_promise.*
9778
9779 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9780 M:      Jens Axboe <axboe@kernel.dk>
9781 L:      linux-ide@vger.kernel.org
9782 S:      Maintained
9783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9784 F:      Documentation/devicetree/bindings/ata/
9785 F:      drivers/ata/
9786 F:      include/linux/ata.h
9787 F:      include/linux/libata.h
9788
9789 LIBLOCKDEP
9790 M:      Sasha Levin <alexander.levin@microsoft.com>
9791 S:      Maintained
9792 F:      tools/lib/lockdep/
9793
9794 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9795 M:      Dan Williams <dan.j.williams@intel.com>
9796 M:      Vishal Verma <vishal.l.verma@intel.com>
9797 M:      Dave Jiang <dave.jiang@intel.com>
9798 L:      linux-nvdimm@lists.01.org
9799 S:      Supported
9800 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9801 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9802 F:      drivers/nvdimm/blk.c
9803 F:      drivers/nvdimm/region_devs.c
9804
9805 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
9806 M:      Vishal Verma <vishal.l.verma@intel.com>
9807 M:      Dan Williams <dan.j.williams@intel.com>
9808 M:      Dave Jiang <dave.jiang@intel.com>
9809 L:      linux-nvdimm@lists.01.org
9810 S:      Supported
9811 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9812 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9813 F:      drivers/nvdimm/btt*
9814
9815 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
9816 M:      Dan Williams <dan.j.williams@intel.com>
9817 M:      Vishal Verma <vishal.l.verma@intel.com>
9818 M:      Dave Jiang <dave.jiang@intel.com>
9819 L:      linux-nvdimm@lists.01.org
9820 S:      Supported
9821 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9822 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9823 F:      drivers/nvdimm/pmem*
9824
9825 LIBNVDIMM: DEVICETREE BINDINGS
9826 M:      Oliver O'Halloran <oohall@gmail.com>
9827 L:      linux-nvdimm@lists.01.org
9828 S:      Supported
9829 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9830 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
9831 F:      drivers/nvdimm/of_pmem.c
9832
9833 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
9834 M:      Dan Williams <dan.j.williams@intel.com>
9835 M:      Vishal Verma <vishal.l.verma@intel.com>
9836 M:      Dave Jiang <dave.jiang@intel.com>
9837 M:      Ira Weiny <ira.weiny@intel.com>
9838 L:      linux-nvdimm@lists.01.org
9839 S:      Supported
9840 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9841 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9842 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
9843 F:      drivers/acpi/nfit/*
9844 F:      drivers/nvdimm/*
9845 F:      include/linux/libnvdimm.h
9846 F:      include/linux/nd.h
9847 F:      include/uapi/linux/ndctl.h
9848 F:      tools/testing/nvdimm/
9849
9850 LICENSES and SPDX stuff
9851 M:      Thomas Gleixner <tglx@linutronix.de>
9852 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9853 L:      linux-spdx@vger.kernel.org
9854 S:      Maintained
9855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
9856 F:      COPYING
9857 F:      Documentation/process/license-rules.rst
9858 F:      LICENSES/
9859 F:      scripts/spdxcheck-test.sh
9860 F:      scripts/spdxcheck.py
9861
9862 LIGHTNVM PLATFORM SUPPORT
9863 M:      Matias Bjorling <mb@lightnvm.io>
9864 L:      linux-block@vger.kernel.org
9865 S:      Maintained
9866 W:      http://github/OpenChannelSSD
9867 F:      drivers/lightnvm/
9868 F:      include/linux/lightnvm.h
9869 F:      include/uapi/linux/lightnvm.h
9870
9871 LINEAR RANGES HELPERS
9872 M:      Mark Brown <broonie@kernel.org>
9873 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
9874 F:      lib/linear_ranges.c
9875 F:      lib/test_linear_ranges.c
9876 F:      include/linux/linear_range.h
9877
9878 LINUX FOR POWER MACINTOSH
9879 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9880 L:      linuxppc-dev@lists.ozlabs.org
9881 S:      Odd Fixes
9882 F:      arch/powerpc/platforms/powermac/
9883 F:      drivers/macintosh/
9884
9885 LINUX FOR POWERPC (32-BIT AND 64-BIT)
9886 M:      Michael Ellerman <mpe@ellerman.id.au>
9887 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9888 R:      Paul Mackerras <paulus@samba.org>
9889 L:      linuxppc-dev@lists.ozlabs.org
9890 S:      Supported
9891 W:      https://github.com/linuxppc/wiki/wiki
9892 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
9893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
9894 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
9895 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
9896 F:      Documentation/devicetree/bindings/powerpc/
9897 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
9898 F:      Documentation/powerpc/
9899 F:      arch/powerpc/
9900 F:      drivers/*/*/*pasemi*
9901 F:      drivers/*/*pasemi*
9902 F:      drivers/char/tpm/tpm_ibmvtpm*
9903 F:      drivers/crypto/nx/
9904 F:      drivers/crypto/vmx/
9905 F:      drivers/i2c/busses/i2c-opal.c
9906 F:      drivers/net/ethernet/ibm/ibmveth.*
9907 F:      drivers/net/ethernet/ibm/ibmvnic.*
9908 F:      drivers/pci/hotplug/pnv_php.c
9909 F:      drivers/pci/hotplug/rpa*
9910 F:      drivers/rtc/rtc-opal.c
9911 F:      drivers/scsi/ibmvscsi/
9912 F:      drivers/tty/hvc/hvc_opal.c
9913 F:      drivers/watchdog/wdrtas.c
9914 F:      tools/testing/selftests/powerpc
9915 N:      /pmac
9916 N:      powermac
9917 N:      powernv
9918 N:      [^a-z0-9]ps3
9919 N:      pseries
9920
9921 LINUX FOR POWERPC EMBEDDED MPC5XXX
9922 M:      Anatolij Gustschin <agust@denx.de>
9923 L:      linuxppc-dev@lists.ozlabs.org
9924 S:      Odd Fixes
9925 F:      arch/powerpc/platforms/512x/
9926 F:      arch/powerpc/platforms/52xx/
9927
9928 LINUX FOR POWERPC EMBEDDED PPC4XX
9929 L:      linuxppc-dev@lists.ozlabs.org
9930 S:      Orphan
9931 F:      arch/powerpc/platforms/40x/
9932 F:      arch/powerpc/platforms/44x/
9933
9934 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
9935 M:      Scott Wood <oss@buserror.net>
9936 L:      linuxppc-dev@lists.ozlabs.org
9937 S:      Odd fixes
9938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
9939 F:      Documentation/devicetree/bindings/powerpc/fsl/
9940 F:      arch/powerpc/platforms/83xx/
9941 F:      arch/powerpc/platforms/85xx/
9942
9943 LINUX FOR POWERPC EMBEDDED PPC8XX
9944 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
9945 L:      linuxppc-dev@lists.ozlabs.org
9946 S:      Maintained
9947 F:      arch/powerpc/platforms/8xx/
9948
9949 LINUX KERNEL DUMP TEST MODULE (LKDTM)
9950 M:      Kees Cook <keescook@chromium.org>
9951 S:      Maintained
9952 F:      drivers/misc/lkdtm/*
9953 F:      tools/testing/selftests/lkdtm/*
9954
9955 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
9956 M:      Alan Stern <stern@rowland.harvard.edu>
9957 M:      Andrea Parri <parri.andrea@gmail.com>
9958 M:      Will Deacon <will@kernel.org>
9959 M:      Peter Zijlstra <peterz@infradead.org>
9960 M:      Boqun Feng <boqun.feng@gmail.com>
9961 M:      Nicholas Piggin <npiggin@gmail.com>
9962 M:      David Howells <dhowells@redhat.com>
9963 M:      Jade Alglave <j.alglave@ucl.ac.uk>
9964 M:      Luc Maranget <luc.maranget@inria.fr>
9965 M:      "Paul E. McKenney" <paulmck@kernel.org>
9966 R:      Akira Yokosawa <akiyks@gmail.com>
9967 R:      Daniel Lustig <dlustig@nvidia.com>
9968 L:      linux-kernel@vger.kernel.org
9969 L:      linux-arch@vger.kernel.org
9970 S:      Supported
9971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
9972 F:      Documentation/atomic_bitops.txt
9973 F:      Documentation/atomic_t.txt
9974 F:      Documentation/core-api/atomic_ops.rst
9975 F:      Documentation/core-api/refcount-vs-atomic.rst
9976 F:      Documentation/memory-barriers.txt
9977 F:      tools/memory-model/
9978
9979 LIS3LV02D ACCELEROMETER DRIVER
9980 M:      Eric Piel <eric.piel@tremplin-utc.net>
9981 S:      Maintained
9982 F:      Documentation/misc-devices/lis3lv02d.rst
9983 F:      drivers/misc/lis3lv02d/
9984 F:      drivers/platform/x86/hp_accel.c
9985
9986 LIST KUNIT TEST
9987 M:      David Gow <davidgow@google.com>
9988 L:      linux-kselftest@vger.kernel.org
9989 L:      kunit-dev@googlegroups.com
9990 S:      Maintained
9991 F:      lib/list-test.c
9992
9993 LIVE PATCHING
9994 M:      Josh Poimboeuf <jpoimboe@redhat.com>
9995 M:      Jiri Kosina <jikos@kernel.org>
9996 M:      Miroslav Benes <mbenes@suse.cz>
9997 M:      Petr Mladek <pmladek@suse.com>
9998 R:      Joe Lawrence <joe.lawrence@redhat.com>
9999 L:      live-patching@vger.kernel.org
10000 S:      Maintained
10001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10002 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10003 F:      Documentation/livepatch/
10004 F:      arch/powerpc/include/asm/livepatch.h
10005 F:      arch/s390/include/asm/livepatch.h
10006 F:      arch/x86/include/asm/livepatch.h
10007 F:      include/linux/livepatch.h
10008 F:      kernel/livepatch/
10009 F:      lib/livepatch/
10010 F:      samples/livepatch/
10011 F:      tools/testing/selftests/livepatch/
10012
10013 LLC (802.2)
10014 L:      netdev@vger.kernel.org
10015 S:      Odd fixes
10016 F:      include/linux/llc.h
10017 F:      include/net/llc*
10018 F:      include/uapi/linux/llc.h
10019 F:      net/llc/
10020
10021 LM73 HARDWARE MONITOR DRIVER
10022 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10023 L:      linux-hwmon@vger.kernel.org
10024 S:      Maintained
10025 F:      drivers/hwmon/lm73.c
10026
10027 LM78 HARDWARE MONITOR DRIVER
10028 M:      Jean Delvare <jdelvare@suse.com>
10029 L:      linux-hwmon@vger.kernel.org
10030 S:      Maintained
10031 F:      Documentation/hwmon/lm78.rst
10032 F:      drivers/hwmon/lm78.c
10033
10034 LM83 HARDWARE MONITOR DRIVER
10035 M:      Jean Delvare <jdelvare@suse.com>
10036 L:      linux-hwmon@vger.kernel.org
10037 S:      Maintained
10038 F:      Documentation/hwmon/lm83.rst
10039 F:      drivers/hwmon/lm83.c
10040
10041 LM90 HARDWARE MONITOR DRIVER
10042 M:      Jean Delvare <jdelvare@suse.com>
10043 L:      linux-hwmon@vger.kernel.org
10044 S:      Maintained
10045 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10046 F:      Documentation/hwmon/lm90.rst
10047 F:      drivers/hwmon/lm90.c
10048 F:      include/dt-bindings/thermal/lm90.h
10049
10050 LM95234 HARDWARE MONITOR DRIVER
10051 M:      Guenter Roeck <linux@roeck-us.net>
10052 L:      linux-hwmon@vger.kernel.org
10053 S:      Maintained
10054 F:      Documentation/hwmon/lm95234.rst
10055 F:      drivers/hwmon/lm95234.c
10056
10057 LME2510 MEDIA DRIVER
10058 M:      Malcolm Priestley <tvboxspy@gmail.com>
10059 L:      linux-media@vger.kernel.org
10060 S:      Maintained
10061 W:      https://linuxtv.org
10062 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10063 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10064
10065 LOADPIN SECURITY MODULE
10066 M:      Kees Cook <keescook@chromium.org>
10067 S:      Supported
10068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10069 F:      Documentation/admin-guide/LSM/LoadPin.rst
10070 F:      security/loadpin/
10071
10072 LOCKING PRIMITIVES
10073 M:      Peter Zijlstra <peterz@infradead.org>
10074 M:      Ingo Molnar <mingo@redhat.com>
10075 M:      Will Deacon <will@kernel.org>
10076 L:      linux-kernel@vger.kernel.org
10077 S:      Maintained
10078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10079 F:      Documentation/locking/
10080 F:      arch/*/include/asm/spinlock*.h
10081 F:      include/linux/lockdep.h
10082 F:      include/linux/mutex*.h
10083 F:      include/linux/rwlock*.h
10084 F:      include/linux/rwsem*.h
10085 F:      include/linux/seqlock.h
10086 F:      include/linux/spinlock*.h
10087 F:      kernel/locking/
10088 F:      lib/locking*.[ch]
10089 X:      kernel/locking/locktorture.c
10090
10091 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10092 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
10093 L:      linux-ntfs-dev@lists.sourceforge.net
10094 S:      Maintained
10095 W:      http://www.linux-ntfs.org/content/view/19/37/
10096 F:      Documentation/admin-guide/ldm.rst
10097 F:      block/partitions/ldm.*
10098
10099 LOGITECH HID GAMING KEYBOARDS
10100 M:      Hans de Goede <hdegoede@redhat.com>
10101 L:      linux-input@vger.kernel.org
10102 S:      Maintained
10103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10104 F:      drivers/hid/hid-lg-g15.c
10105
10106 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10107 M:      Sathya Prakash <sathya.prakash@broadcom.com>
10108 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10109 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10110 L:      MPT-FusionLinux.pdl@broadcom.com
10111 L:      linux-scsi@vger.kernel.org
10112 S:      Supported
10113 W:      http://www.avagotech.com/support/
10114 F:      drivers/message/fusion/
10115 F:      drivers/scsi/mpt3sas/
10116
10117 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10118 M:      Matthew Wilcox <willy@infradead.org>
10119 L:      linux-scsi@vger.kernel.org
10120 S:      Maintained
10121 F:      drivers/scsi/sym53c8xx_2/
10122
10123 LTC1660 DAC DRIVER
10124 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10125 L:      linux-iio@vger.kernel.org
10126 S:      Maintained
10127 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10128 F:      drivers/iio/dac/ltc1660.c
10129
10130 LTC2947 HARDWARE MONITOR DRIVER
10131 M:      Nuno Sá <nuno.sa@analog.com>
10132 L:      linux-hwmon@vger.kernel.org
10133 S:      Supported
10134 W:      http://ez.analog.com/community/linux-device-drivers
10135 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10136 F:      drivers/hwmon/ltc2947-core.c
10137 F:      drivers/hwmon/ltc2947-i2c.c
10138 F:      drivers/hwmon/ltc2947-spi.c
10139 F:      drivers/hwmon/ltc2947.h
10140
10141 LTC2983 IIO TEMPERATURE DRIVER
10142 M:      Nuno Sá <nuno.sa@analog.com>
10143 L:      linux-iio@vger.kernel.org
10144 S:      Supported
10145 W:      http://ez.analog.com/community/linux-device-drivers
10146 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10147 F:      drivers/iio/temperature/ltc2983.c
10148
10149 LTC4261 HARDWARE MONITOR DRIVER
10150 M:      Guenter Roeck <linux@roeck-us.net>
10151 L:      linux-hwmon@vger.kernel.org
10152 S:      Maintained
10153 F:      Documentation/hwmon/ltc4261.rst
10154 F:      drivers/hwmon/ltc4261.c
10155
10156 LTC4306 I2C MULTIPLEXER DRIVER
10157 M:      Michael Hennerich <michael.hennerich@analog.com>
10158 L:      linux-i2c@vger.kernel.org
10159 S:      Supported
10160 W:      http://ez.analog.com/community/linux-device-drivers
10161 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10162 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10163
10164 LTP (Linux Test Project)
10165 M:      Mike Frysinger <vapier@gentoo.org>
10166 M:      Cyril Hrubis <chrubis@suse.cz>
10167 M:      Wanlong Gao <wanlong.gao@gmail.com>
10168 M:      Jan Stancek <jstancek@redhat.com>
10169 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10170 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
10171 L:      ltp@lists.linux.it (subscribers-only)
10172 S:      Maintained
10173 W:      http://linux-test-project.github.io/
10174 T:      git git://github.com/linux-test-project/ltp.git
10175
10176 M68K ARCHITECTURE
10177 M:      Geert Uytterhoeven <geert@linux-m68k.org>
10178 L:      linux-m68k@lists.linux-m68k.org
10179 S:      Maintained
10180 W:      http://www.linux-m68k.org/
10181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10182 F:      arch/m68k/
10183 F:      drivers/zorro/
10184
10185 M68K ON APPLE MACINTOSH
10186 M:      Joshua Thompson <funaho@jurai.org>
10187 L:      linux-m68k@lists.linux-m68k.org
10188 S:      Maintained
10189 W:      http://www.mac.linux-m68k.org/
10190 F:      arch/m68k/mac/
10191
10192 M68K ON HP9000/300
10193 M:      Philip Blundell <philb@gnu.org>
10194 S:      Maintained
10195 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10196 F:      arch/m68k/hp300/
10197
10198 M88DS3103 MEDIA DRIVER
10199 M:      Antti Palosaari <crope@iki.fi>
10200 L:      linux-media@vger.kernel.org
10201 S:      Maintained
10202 W:      https://linuxtv.org
10203 W:      http://palosaari.fi/linux/
10204 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10205 T:      git git://linuxtv.org/anttip/media_tree.git
10206 F:      drivers/media/dvb-frontends/m88ds3103*
10207
10208 M88RS2000 MEDIA DRIVER
10209 M:      Malcolm Priestley <tvboxspy@gmail.com>
10210 L:      linux-media@vger.kernel.org
10211 S:      Maintained
10212 W:      https://linuxtv.org
10213 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10214 F:      drivers/media/dvb-frontends/m88rs2000*
10215
10216 MA901 MASTERKIT USB FM RADIO DRIVER
10217 M:      Alexey Klimov <klimov.linux@gmail.com>
10218 L:      linux-media@vger.kernel.org
10219 S:      Maintained
10220 T:      git git://linuxtv.org/media_tree.git
10221 F:      drivers/media/radio/radio-ma901.c
10222
10223 MAC80211
10224 M:      Johannes Berg <johannes@sipsolutions.net>
10225 L:      linux-wireless@vger.kernel.org
10226 S:      Maintained
10227 W:      https://wireless.wiki.kernel.org/
10228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10230 F:      Documentation/networking/mac80211-injection.rst
10231 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10232 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10233 F:      include/net/mac80211.h
10234 F:      net/mac80211/
10235
10236 MAILBOX API
10237 M:      Jassi Brar <jassisinghbrar@gmail.com>
10238 L:      linux-kernel@vger.kernel.org
10239 S:      Maintained
10240 F:      drivers/mailbox/
10241 F:      include/linux/mailbox_client.h
10242 F:      include/linux/mailbox_controller.h
10243
10244 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10245 M:      Michael Kerrisk <mtk.manpages@gmail.com>
10246 L:      linux-man@vger.kernel.org
10247 S:      Maintained
10248 W:      http://www.kernel.org/doc/man-pages
10249
10250 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10251 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
10252 L:      linux-mips@vger.kernel.org
10253 S:      Maintained
10254 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10255
10256 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10257 M:      Andrew Lunn <andrew@lunn.ch>
10258 M:      Vivien Didelot <vivien.didelot@gmail.com>
10259 L:      netdev@vger.kernel.org
10260 S:      Maintained
10261 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10262 F:      Documentation/networking/devlink/mv88e6xxx.rst
10263 F:      drivers/net/dsa/mv88e6xxx/
10264 F:      include/linux/platform_data/mv88e6xxx.h
10265
10266 MARVELL ARMADA 3700 PHY DRIVERS
10267 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10268 S:      Maintained
10269 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10270 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10271 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10272 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10273
10274 MARVELL ARMADA DRM SUPPORT
10275 M:      Russell King <linux@armlinux.org.uk>
10276 S:      Maintained
10277 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10278 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10279 F:      Documentation/devicetree/bindings/display/armada/
10280 F:      drivers/gpu/drm/armada/
10281 F:      include/uapi/drm/armada_drm.h
10282
10283 MARVELL CRYPTO DRIVER
10284 M:      Boris Brezillon <bbrezillon@kernel.org>
10285 M:      Arnaud Ebalard <arno@natisbad.org>
10286 M:      Srujana Challa <schalla@marvell.com>
10287 L:      linux-crypto@vger.kernel.org
10288 S:      Maintained
10289 F:      drivers/crypto/marvell/
10290
10291 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10292 M:      Mirko Lindner <mlindner@marvell.com>
10293 M:      Stephen Hemminger <stephen@networkplumber.org>
10294 L:      netdev@vger.kernel.org
10295 S:      Maintained
10296 F:      drivers/net/ethernet/marvell/sk*
10297
10298 MARVELL LIBERTAS WIRELESS DRIVER
10299 L:      libertas-dev@lists.infradead.org
10300 S:      Orphan
10301 F:      drivers/net/wireless/marvell/libertas/
10302
10303 MARVELL MACCHIATOBIN SUPPORT
10304 M:      Russell King <linux@armlinux.org.uk>
10305 L:      linux-arm-kernel@lists.infradead.org
10306 S:      Maintained
10307 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10308
10309 MARVELL MV643XX ETHERNET DRIVER
10310 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
10311 L:      netdev@vger.kernel.org
10312 S:      Maintained
10313 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10314 F:      include/linux/mv643xx.h
10315
10316 MARVELL MV88X3310 PHY DRIVER
10317 M:      Russell King <linux@armlinux.org.uk>
10318 L:      netdev@vger.kernel.org
10319 S:      Maintained
10320 F:      drivers/net/phy/marvell10g.c
10321
10322 MARVELL MVEBU THERMAL DRIVER
10323 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10324 S:      Maintained
10325 F:      drivers/thermal/armada_thermal.c
10326
10327 MARVELL MVNETA ETHERNET DRIVER
10328 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10329 L:      netdev@vger.kernel.org
10330 S:      Maintained
10331 F:      drivers/net/ethernet/marvell/mvneta.*
10332
10333 MARVELL MWIFIEX WIRELESS DRIVER
10334 M:      Amitkumar Karwar <amitkarwar@gmail.com>
10335 M:      Ganapathi Bhat <ganapathi.bhat@nxp.com>
10336 M:      Xinming Hu <huxinming820@gmail.com>
10337 L:      linux-wireless@vger.kernel.org
10338 S:      Maintained
10339 F:      drivers/net/wireless/marvell/mwifiex/
10340
10341 MARVELL MWL8K WIRELESS DRIVER
10342 M:      Lennert Buytenhek <buytenh@wantstofly.org>
10343 L:      linux-wireless@vger.kernel.org
10344 S:      Odd Fixes
10345 F:      drivers/net/wireless/marvell/mwl8k.c
10346
10347 MARVELL NAND CONTROLLER DRIVER
10348 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10349 L:      linux-mtd@lists.infradead.org
10350 S:      Maintained
10351 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10352 F:      drivers/mtd/nand/raw/marvell_nand.c
10353
10354 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10355 M:      Sunil Goutham <sgoutham@marvell.com>
10356 M:      Geetha sowjanya <gakula@marvell.com>
10357 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10358 M:      hariprasad <hkelam@marvell.com>
10359 L:      netdev@vger.kernel.org
10360 S:      Supported
10361 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10362
10363 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10364 M:      Sunil Goutham <sgoutham@marvell.com>
10365 M:      Linu Cherian <lcherian@marvell.com>
10366 M:      Geetha sowjanya <gakula@marvell.com>
10367 M:      Jerin Jacob <jerinj@marvell.com>
10368 L:      netdev@vger.kernel.org
10369 S:      Supported
10370 F:      Documentation/networking/device_drivers/marvell/octeontx2.rst
10371 F:      drivers/net/ethernet/marvell/octeontx2/af/
10372
10373 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10374 M:      Nicolas Pitre <nico@fluxnic.net>
10375 S:      Odd Fixes
10376 F:      drivers/mmc/host/mvsdio.*
10377
10378 MARVELL USB MDIO CONTROLLER DRIVER
10379 M:      Tobias Waldekranz <tobias@waldekranz.com>
10380 L:      netdev@vger.kernel.org
10381 S:      Maintained
10382 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10383 F:      drivers/net/phy/mdio-mvusb.c
10384
10385 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10386 M:      Hu Ziji <huziji@marvell.com>
10387 L:      linux-mmc@vger.kernel.org
10388 S:      Supported
10389 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10390 F:      drivers/mmc/host/sdhci-xenon*
10391
10392 MATROX FRAMEBUFFER DRIVER
10393 L:      linux-fbdev@vger.kernel.org
10394 S:      Orphan
10395 F:      drivers/video/fbdev/matrox/matroxfb_*
10396 F:      include/uapi/linux/matroxfb.h
10397
10398 MAX16065 HARDWARE MONITOR DRIVER
10399 M:      Guenter Roeck <linux@roeck-us.net>
10400 L:      linux-hwmon@vger.kernel.org
10401 S:      Maintained
10402 F:      Documentation/hwmon/max16065.rst
10403 F:      drivers/hwmon/max16065.c
10404
10405 MAX2175 SDR TUNER DRIVER
10406 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10407 L:      linux-media@vger.kernel.org
10408 S:      Maintained
10409 T:      git git://linuxtv.org/media_tree.git
10410 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10411 F:      Documentation/userspace-api/media/drivers/max2175.rst
10412 F:      drivers/media/i2c/max2175*
10413 F:      include/uapi/linux/max2175.h
10414
10415 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10416 L:      linux-hwmon@vger.kernel.org
10417 S:      Orphan
10418 F:      Documentation/hwmon/max6650.rst
10419 F:      drivers/hwmon/max6650.c
10420
10421 MAX6697 HARDWARE MONITOR DRIVER
10422 M:      Guenter Roeck <linux@roeck-us.net>
10423 L:      linux-hwmon@vger.kernel.org
10424 S:      Maintained
10425 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10426 F:      Documentation/hwmon/max6697.rst
10427 F:      drivers/hwmon/max6697.c
10428 F:      include/linux/platform_data/max6697.h
10429
10430 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10431 M:      Peter Rosin <peda@axentia.se>
10432 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10433 S:      Maintained
10434 F:      Documentation/devicetree/bindings/sound/max9860.txt
10435 F:      sound/soc/codecs/max9860.*
10436
10437 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10438 M:      Andreas Klinger <ak@it-klinger.de>
10439 L:      linux-iio@vger.kernel.org
10440 S:      Maintained
10441 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10442 F:      drivers/iio/proximity/mb1232.c
10443
10444 MAXIM MAX77650 PMIC MFD DRIVER
10445 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
10446 L:      linux-kernel@vger.kernel.org
10447 S:      Maintained
10448 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10449 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10450 F:      drivers/gpio/gpio-max77650.c
10451 F:      drivers/input/misc/max77650-onkey.c
10452 F:      drivers/leds/leds-max77650.c
10453 F:      drivers/mfd/max77650.c
10454 F:      drivers/power/supply/max77650-charger.c
10455 F:      drivers/regulator/max77650-regulator.c
10456 F:      include/linux/mfd/max77650.h
10457
10458 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10459 M:      Javier Martinez Canillas <javier@dowhile0.org>
10460 L:      linux-kernel@vger.kernel.org
10461 S:      Supported
10462 F:      Documentation/devicetree/bindings/*/*max77802.txt
10463 F:      drivers/regulator/max77802-regulator.c
10464 F:      include/dt-bindings/*/*max77802.h
10465
10466 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10467 M:      Krzysztof Kozlowski <krzk@kernel.org>
10468 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10469 L:      linux-pm@vger.kernel.org
10470 S:      Supported
10471 F:      drivers/power/supply/max14577_charger.c
10472 F:      drivers/power/supply/max77693_charger.c
10473
10474 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10475 M:      Chanwoo Choi <cw00.choi@samsung.com>
10476 M:      Krzysztof Kozlowski <krzk@kernel.org>
10477 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10478 L:      linux-kernel@vger.kernel.org
10479 S:      Supported
10480 F:      Documentation/devicetree/bindings/*/max77686.txt
10481 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10482 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10483 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10484 F:      drivers/*/max14577*.c
10485 F:      drivers/*/max77686*.c
10486 F:      drivers/*/max77693*.c
10487 F:      drivers/clk/clk-max77686.c
10488 F:      drivers/extcon/extcon-max14577.c
10489 F:      drivers/extcon/extcon-max77693.c
10490 F:      drivers/rtc/rtc-max77686.c
10491 F:      include/linux/mfd/max14577*.h
10492 F:      include/linux/mfd/max77686*.h
10493 F:      include/linux/mfd/max77693*.h
10494
10495 MAXIRADIO FM RADIO RECEIVER DRIVER
10496 M:      Hans Verkuil <hverkuil@xs4all.nl>
10497 L:      linux-media@vger.kernel.org
10498 S:      Maintained
10499 W:      https://linuxtv.org
10500 T:      git git://linuxtv.org/media_tree.git
10501 F:      drivers/media/radio/radio-maxiradio*
10502
10503 MCAN MMIO DEVICE DRIVER
10504 M:      Dan Murphy <dmurphy@ti.com>
10505 M:      Sriram Dash <sriram.dash@samsung.com>
10506 L:      linux-can@vger.kernel.org
10507 S:      Maintained
10508 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10509 F:      drivers/net/can/m_can/m_can.c
10510 F:      drivers/net/can/m_can/m_can.h
10511 F:      drivers/net/can/m_can/m_can_platform.c
10512
10513 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10514 M:      Rishi Gupta <gupt21@gmail.com>
10515 L:      linux-i2c@vger.kernel.org
10516 L:      linux-input@vger.kernel.org
10517 S:      Maintained
10518 F:      drivers/hid/hid-mcp2221.c
10519
10520 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10521 M:      Peter Rosin <peda@axentia.se>
10522 L:      linux-iio@vger.kernel.org
10523 S:      Maintained
10524 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10525 F:      drivers/iio/potentiometer/mcp4018.c
10526 F:      drivers/iio/potentiometer/mcp4531.c
10527
10528 MCR20A IEEE-802.15.4 RADIO DRIVER
10529 M:      Xue Liu <liuxuenetmail@gmail.com>
10530 L:      linux-wpan@vger.kernel.org
10531 S:      Maintained
10532 W:      https://github.com/xueliu/mcr20a-linux
10533 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10534 F:      drivers/net/ieee802154/mcr20a.c
10535 F:      drivers/net/ieee802154/mcr20a.h
10536
10537 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10538 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10539 L:      linux-iio@vger.kernel.org
10540 S:      Maintained
10541 F:      drivers/iio/dac/cio-dac.c
10542
10543 MEDIA CONTROLLER FRAMEWORK
10544 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10545 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10546 L:      linux-media@vger.kernel.org
10547 S:      Supported
10548 W:      https://www.linuxtv.org
10549 T:      git git://linuxtv.org/media_tree.git
10550 F:      drivers/media/mc/
10551 F:      include/media/media-*.h
10552 F:      include/uapi/linux/media.h
10553
10554 MEDIA DRIVER FOR FREESCALE IMX PXP
10555 M:      Philipp Zabel <p.zabel@pengutronix.de>
10556 L:      linux-media@vger.kernel.org
10557 S:      Maintained
10558 T:      git git://linuxtv.org/media_tree.git
10559 F:      drivers/media/platform/imx-pxp.[ch]
10560
10561 MEDIA DRIVERS FOR ASCOT2E
10562 M:      Sergey Kozlov <serjk@netup.ru>
10563 M:      Abylay Ospan <aospan@netup.ru>
10564 L:      linux-media@vger.kernel.org
10565 S:      Supported
10566 W:      https://linuxtv.org
10567 W:      http://netup.tv/
10568 T:      git git://linuxtv.org/media_tree.git
10569 F:      drivers/media/dvb-frontends/ascot2e*
10570
10571 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10572 M:      Jasmin Jessich <jasmin@anw.at>
10573 L:      linux-media@vger.kernel.org
10574 S:      Maintained
10575 W:      https://linuxtv.org
10576 T:      git git://linuxtv.org/media_tree.git
10577 F:      drivers/media/dvb-frontends/cxd2099*
10578
10579 MEDIA DRIVERS FOR CXD2841ER
10580 M:      Sergey Kozlov <serjk@netup.ru>
10581 M:      Abylay Ospan <aospan@netup.ru>
10582 L:      linux-media@vger.kernel.org
10583 S:      Supported
10584 W:      https://linuxtv.org
10585 W:      http://netup.tv/
10586 T:      git git://linuxtv.org/media_tree.git
10587 F:      drivers/media/dvb-frontends/cxd2841er*
10588
10589 MEDIA DRIVERS FOR CXD2880
10590 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10591 L:      linux-media@vger.kernel.org
10592 S:      Supported
10593 W:      http://linuxtv.org/
10594 T:      git git://linuxtv.org/media_tree.git
10595 F:      drivers/media/dvb-frontends/cxd2880/*
10596 F:      drivers/media/spi/cxd2880*
10597
10598 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10599 L:      linux-media@vger.kernel.org
10600 S:      Orphan
10601 W:      https://linuxtv.org
10602 T:      git git://linuxtv.org/media_tree.git
10603 F:      drivers/media/pci/ddbridge/*
10604
10605 MEDIA DRIVERS FOR FREESCALE IMX
10606 M:      Steve Longerbeam <slongerbeam@gmail.com>
10607 M:      Philipp Zabel <p.zabel@pengutronix.de>
10608 L:      linux-media@vger.kernel.org
10609 S:      Maintained
10610 T:      git git://linuxtv.org/media_tree.git
10611 F:      Documentation/admin-guide/media/imx.rst
10612 F:      Documentation/devicetree/bindings/media/imx.txt
10613 F:      drivers/staging/media/imx/
10614 F:      include/linux/imx-media.h
10615 F:      include/media/imx.h
10616
10617 MEDIA DRIVERS FOR FREESCALE IMX7
10618 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10619 L:      linux-media@vger.kernel.org
10620 S:      Maintained
10621 T:      git git://linuxtv.org/media_tree.git
10622 F:      Documentation/admin-guide/media/imx7.rst
10623 F:      Documentation/devicetree/bindings/media/imx7-csi.txt
10624 F:      Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10625 F:      drivers/staging/media/imx/imx7-media-csi.c
10626 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10627
10628 MEDIA DRIVERS FOR HELENE
10629 M:      Abylay Ospan <aospan@netup.ru>
10630 L:      linux-media@vger.kernel.org
10631 S:      Supported
10632 W:      https://linuxtv.org
10633 W:      http://netup.tv/
10634 T:      git git://linuxtv.org/media_tree.git
10635 F:      drivers/media/dvb-frontends/helene*
10636
10637 MEDIA DRIVERS FOR HORUS3A
10638 M:      Sergey Kozlov <serjk@netup.ru>
10639 M:      Abylay Ospan <aospan@netup.ru>
10640 L:      linux-media@vger.kernel.org
10641 S:      Supported
10642 W:      https://linuxtv.org
10643 W:      http://netup.tv/
10644 T:      git git://linuxtv.org/media_tree.git
10645 F:      drivers/media/dvb-frontends/horus3a*
10646
10647 MEDIA DRIVERS FOR LNBH25
10648 M:      Sergey Kozlov <serjk@netup.ru>
10649 M:      Abylay Ospan <aospan@netup.ru>
10650 L:      linux-media@vger.kernel.org
10651 S:      Supported
10652 W:      https://linuxtv.org
10653 W:      http://netup.tv/
10654 T:      git git://linuxtv.org/media_tree.git
10655 F:      drivers/media/dvb-frontends/lnbh25*
10656
10657 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10658 L:      linux-media@vger.kernel.org
10659 S:      Orphan
10660 W:      https://linuxtv.org
10661 T:      git git://linuxtv.org/media_tree.git
10662 F:      drivers/media/dvb-frontends/mxl5xx*
10663
10664 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10665 M:      Sergey Kozlov <serjk@netup.ru>
10666 M:      Abylay Ospan <aospan@netup.ru>
10667 L:      linux-media@vger.kernel.org
10668 S:      Supported
10669 W:      https://linuxtv.org
10670 W:      http://netup.tv/
10671 T:      git git://linuxtv.org/media_tree.git
10672 F:      drivers/media/pci/netup_unidvb/*
10673
10674 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10675 M:      Dmitry Osipenko <digetx@gmail.com>
10676 L:      linux-media@vger.kernel.org
10677 L:      linux-tegra@vger.kernel.org
10678 S:      Maintained
10679 T:      git git://linuxtv.org/media_tree.git
10680 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10681 F:      drivers/staging/media/tegra-vde/
10682
10683 MEDIA DRIVERS FOR RENESAS - CEU
10684 M:      Jacopo Mondi <jacopo@jmondi.org>
10685 L:      linux-media@vger.kernel.org
10686 L:      linux-renesas-soc@vger.kernel.org
10687 S:      Supported
10688 T:      git git://linuxtv.org/media_tree.git
10689 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
10690 F:      drivers/media/platform/renesas-ceu.c
10691 F:      include/media/drv-intf/renesas-ceu.h
10692
10693 MEDIA DRIVERS FOR RENESAS - DRIF
10694 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10695 L:      linux-media@vger.kernel.org
10696 L:      linux-renesas-soc@vger.kernel.org
10697 S:      Supported
10698 T:      git git://linuxtv.org/media_tree.git
10699 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10700 F:      drivers/media/platform/rcar_drif.c
10701
10702 MEDIA DRIVERS FOR RENESAS - FCP
10703 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10704 L:      linux-media@vger.kernel.org
10705 L:      linux-renesas-soc@vger.kernel.org
10706 S:      Supported
10707 T:      git git://linuxtv.org/media_tree.git
10708 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
10709 F:      drivers/media/platform/rcar-fcp.c
10710 F:      include/media/rcar-fcp.h
10711
10712 MEDIA DRIVERS FOR RENESAS - FDP1
10713 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10714 L:      linux-media@vger.kernel.org
10715 L:      linux-renesas-soc@vger.kernel.org
10716 S:      Supported
10717 T:      git git://linuxtv.org/media_tree.git
10718 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
10719 F:      drivers/media/platform/rcar_fdp1.c
10720
10721 MEDIA DRIVERS FOR RENESAS - VIN
10722 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
10723 L:      linux-media@vger.kernel.org
10724 L:      linux-renesas-soc@vger.kernel.org
10725 S:      Supported
10726 T:      git git://linuxtv.org/media_tree.git
10727 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
10728 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
10729 F:      drivers/media/platform/rcar-vin/
10730
10731 MEDIA DRIVERS FOR RENESAS - VSP1
10732 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10733 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10734 L:      linux-media@vger.kernel.org
10735 L:      linux-renesas-soc@vger.kernel.org
10736 S:      Supported
10737 T:      git git://linuxtv.org/media_tree.git
10738 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
10739 F:      drivers/media/platform/vsp1/
10740
10741 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10742 L:      linux-media@vger.kernel.org
10743 S:      Orphan
10744 W:      https://linuxtv.org
10745 T:      git git://linuxtv.org/media_tree.git
10746 F:      drivers/media/dvb-frontends/stv0910*
10747
10748 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10749 L:      linux-media@vger.kernel.org
10750 S:      Orphan
10751 W:      https://linuxtv.org
10752 T:      git git://linuxtv.org/media_tree.git
10753 F:      drivers/media/dvb-frontends/stv6111*
10754
10755 MEDIA DRIVERS FOR STM32 - DCMI
10756 M:      Hugues Fruchet <hugues.fruchet@st.com>
10757 L:      linux-media@vger.kernel.org
10758 S:      Supported
10759 T:      git git://linuxtv.org/media_tree.git
10760 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
10761 F:      drivers/media/platform/stm32/stm32-dcmi.c
10762
10763 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10764 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
10765 L:      linux-media@vger.kernel.org
10766 S:      Maintained
10767 W:      https://linuxtv.org
10768 Q:      http://patchwork.kernel.org/project/linux-media/list/
10769 T:      git git://linuxtv.org/media_tree.git
10770 F:      Documentation/admin-guide/media/
10771 F:      Documentation/devicetree/bindings/media/
10772 F:      Documentation/driver-api/media/
10773 F:      Documentation/userspace-api/media/
10774 F:      drivers/media/
10775 F:      drivers/staging/media/
10776 F:      include/linux/platform_data/media/
10777 F:      include/media/
10778 F:      include/uapi/linux/dvb/
10779 F:      include/uapi/linux/ivtv*
10780 F:      include/uapi/linux/media.h
10781 F:      include/uapi/linux/meye.h
10782 F:      include/uapi/linux/uvcvideo.h
10783 F:      include/uapi/linux/v4l2-*
10784 F:      include/uapi/linux/videodev2.h
10785
10786 MEDIATEK BLUETOOTH DRIVER
10787 M:      Sean Wang <sean.wang@mediatek.com>
10788 L:      linux-bluetooth@vger.kernel.org
10789 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10790 S:      Maintained
10791 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10792 F:      drivers/bluetooth/btmtkuart.c
10793
10794 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
10795 M:      Sean Wang <sean.wang@mediatek.com>
10796 L:      linux-pm@vger.kernel.org
10797 S:      Maintained
10798 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
10799 F:      drivers/power/reset/mt6323-poweroff.c
10800
10801 MEDIATEK CIR DRIVER
10802 M:      Sean Wang <sean.wang@mediatek.com>
10803 S:      Maintained
10804 F:      drivers/media/rc/mtk-cir.c
10805
10806 MEDIATEK DMA DRIVER
10807 M:      Sean Wang <sean.wang@mediatek.com>
10808 L:      dmaengine@vger.kernel.org
10809 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10810 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10811 S:      Maintained
10812 F:      Documentation/devicetree/bindings/dma/mtk-*
10813 F:      drivers/dma/mediatek/
10814
10815 MEDIATEK ETHERNET DRIVER
10816 M:      Felix Fietkau <nbd@nbd.name>
10817 M:      John Crispin <john@phrozen.org>
10818 M:      Sean Wang <sean.wang@mediatek.com>
10819 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
10820 L:      netdev@vger.kernel.org
10821 S:      Maintained
10822 F:      drivers/net/ethernet/mediatek/
10823
10824 MEDIATEK I2C CONTROLLER DRIVER
10825 M:      Qii Wang <qii.wang@mediatek.com>
10826 L:      linux-i2c@vger.kernel.org
10827 S:      Maintained
10828 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
10829 F:      drivers/i2c/busses/i2c-mt65xx.c
10830
10831 MEDIATEK JPEG DRIVER
10832 M:      Rick Chang <rick.chang@mediatek.com>
10833 M:      Bin Liu <bin.liu@mediatek.com>
10834 S:      Supported
10835 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
10836 F:      drivers/media/platform/mtk-jpeg/
10837
10838 MEDIATEK MDP DRIVER
10839 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
10840 M:      Houlong Wei <houlong.wei@mediatek.com>
10841 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10842 S:      Supported
10843 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
10844 F:      drivers/media/platform/mtk-mdp/
10845 F:      drivers/media/platform/mtk-vpu/
10846
10847 MEDIATEK MEDIA DRIVER
10848 M:      Tiffany Lin <tiffany.lin@mediatek.com>
10849 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10850 S:      Supported
10851 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
10852 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
10853 F:      drivers/media/platform/mtk-vcodec/
10854 F:      drivers/media/platform/mtk-vpu/
10855
10856 MEDIATEK MMC/SD/SDIO DRIVER
10857 M:      Chaotian Jing <chaotian.jing@mediatek.com>
10858 S:      Maintained
10859 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
10860 F:      drivers/mmc/host/mtk-sd.c
10861
10862 MEDIATEK MT76 WIRELESS LAN DRIVER
10863 M:      Felix Fietkau <nbd@nbd.name>
10864 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
10865 R:      Ryder Lee <ryder.lee@mediatek.com>
10866 L:      linux-wireless@vger.kernel.org
10867 S:      Maintained
10868 F:      drivers/net/wireless/mediatek/mt76/
10869
10870 MEDIATEK MT7601U WIRELESS LAN DRIVER
10871 M:      Jakub Kicinski <kubakici@wp.pl>
10872 L:      linux-wireless@vger.kernel.org
10873 S:      Maintained
10874 F:      drivers/net/wireless/mediatek/mt7601u/
10875
10876 MEDIATEK MT7621/28/88 I2C DRIVER
10877 M:      Stefan Roese <sr@denx.de>
10878 L:      linux-i2c@vger.kernel.org
10879 S:      Maintained
10880 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
10881 F:      drivers/i2c/busses/i2c-mt7621.c
10882
10883 MEDIATEK NAND CONTROLLER DRIVER
10884 L:      linux-mtd@lists.infradead.org
10885 S:      Orphan
10886 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
10887 F:      drivers/mtd/nand/raw/mtk_*
10888
10889 MEDIATEK PMIC LED DRIVER
10890 M:      Sean Wang <sean.wang@mediatek.com>
10891 S:      Maintained
10892 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
10893 F:      drivers/leds/leds-mt6323.c
10894
10895 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
10896 M:      Sean Wang <sean.wang@mediatek.com>
10897 S:      Maintained
10898 F:      drivers/char/hw_random/mtk-rng.c
10899
10900 MEDIATEK SWITCH DRIVER
10901 M:      Sean Wang <sean.wang@mediatek.com>
10902 L:      netdev@vger.kernel.org
10903 S:      Maintained
10904 F:      drivers/net/dsa/mt7530.*
10905 F:      net/dsa/tag_mtk.c
10906
10907 MEDIATEK USB3 DRD IP DRIVER
10908 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
10909 L:      linux-usb@vger.kernel.org (moderated for non-subscribers)
10910 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10911 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10912 S:      Maintained
10913 F:      drivers/usb/mtu3/
10914
10915 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
10916 M:      Peter Senna Tschudin <peter.senna@gmail.com>
10917 M:      Martin Donnelly <martin.donnelly@ge.com>
10918 M:      Martyn Welch <martyn.welch@collabora.co.uk>
10919 S:      Maintained
10920 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
10921 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
10922
10923 MEGARAID SCSI/SAS DRIVERS
10924 M:      Kashyap Desai <kashyap.desai@broadcom.com>
10925 M:      Sumit Saxena <sumit.saxena@broadcom.com>
10926 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
10927 L:      megaraidlinux.pdl@broadcom.com
10928 L:      linux-scsi@vger.kernel.org
10929 S:      Maintained
10930 W:      http://www.avagotech.com/support/
10931 F:      Documentation/scsi/megaraid.rst
10932 F:      drivers/scsi/megaraid.*
10933 F:      drivers/scsi/megaraid/
10934
10935 MELEXIS MLX90614 DRIVER
10936 M:      Crt Mori <cmo@melexis.com>
10937 L:      linux-iio@vger.kernel.org
10938 S:      Supported
10939 W:      http://www.melexis.com
10940 F:      drivers/iio/temperature/mlx90614.c
10941
10942 MELEXIS MLX90632 DRIVER
10943 M:      Crt Mori <cmo@melexis.com>
10944 L:      linux-iio@vger.kernel.org
10945 S:      Supported
10946 W:      http://www.melexis.com
10947 F:      drivers/iio/temperature/mlx90632.c
10948
10949 MELFAS MIP4 TOUCHSCREEN DRIVER
10950 M:      Sangwon Jee <jeesw@melfas.com>
10951 S:      Supported
10952 W:      http://www.melfas.com
10953 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
10954 F:      drivers/input/touchscreen/melfas_mip4.c
10955
10956 MELLANOX ETHERNET DRIVER (mlx4_en)
10957 M:      Tariq Toukan <tariqt@mellanox.com>
10958 L:      netdev@vger.kernel.org
10959 S:      Supported
10960 W:      http://www.mellanox.com
10961 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10962 F:      drivers/net/ethernet/mellanox/mlx4/en_*
10963
10964 MELLANOX ETHERNET DRIVER (mlx5e)
10965 M:      Saeed Mahameed <saeedm@mellanox.com>
10966 L:      netdev@vger.kernel.org
10967 S:      Supported
10968 W:      http://www.mellanox.com
10969 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10970 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
10971
10972 MELLANOX ETHERNET INNOVA DRIVERS
10973 R:      Boris Pismenny <borisp@mellanox.com>
10974 L:      netdev@vger.kernel.org
10975 S:      Supported
10976 W:      http://www.mellanox.com
10977 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10978 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
10979 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
10980 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
10981 F:      include/linux/mlx5/mlx5_ifc_fpga.h
10982
10983 MELLANOX ETHERNET SWITCH DRIVERS
10984 M:      Jiri Pirko <jiri@mellanox.com>
10985 M:      Ido Schimmel <idosch@mellanox.com>
10986 L:      netdev@vger.kernel.org
10987 S:      Supported
10988 W:      http://www.mellanox.com
10989 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10990 F:      drivers/net/ethernet/mellanox/mlxsw/
10991 F:      tools/testing/selftests/drivers/net/mlxsw/
10992
10993 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
10994 M:      mlxsw@mellanox.com
10995 L:      netdev@vger.kernel.org
10996 S:      Supported
10997 W:      http://www.mellanox.com
10998 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10999 F:      drivers/net/ethernet/mellanox/mlxfw/
11000
11001 MELLANOX HARDWARE PLATFORM SUPPORT
11002 M:      Andy Shevchenko <andy@infradead.org>
11003 M:      Darren Hart <dvhart@infradead.org>
11004 M:      Vadim Pasternak <vadimp@mellanox.com>
11005 L:      platform-driver-x86@vger.kernel.org
11006 S:      Supported
11007 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11008 F:      drivers/platform/mellanox/
11009 F:      include/linux/platform_data/mlxreg.h
11010
11011 MELLANOX MLX4 core VPI driver
11012 M:      Tariq Toukan <tariqt@mellanox.com>
11013 L:      netdev@vger.kernel.org
11014 L:      linux-rdma@vger.kernel.org
11015 S:      Supported
11016 W:      http://www.mellanox.com
11017 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11018 F:      drivers/net/ethernet/mellanox/mlx4/
11019 F:      include/linux/mlx4/
11020
11021 MELLANOX MLX4 IB driver
11022 M:      Yishai Hadas <yishaih@mellanox.com>
11023 L:      linux-rdma@vger.kernel.org
11024 S:      Supported
11025 W:      http://www.mellanox.com
11026 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11027 F:      drivers/infiniband/hw/mlx4/
11028 F:      include/linux/mlx4/
11029 F:      include/uapi/rdma/mlx4-abi.h
11030
11031 MELLANOX MLX5 core VPI driver
11032 M:      Saeed Mahameed <saeedm@mellanox.com>
11033 M:      Leon Romanovsky <leonro@mellanox.com>
11034 L:      netdev@vger.kernel.org
11035 L:      linux-rdma@vger.kernel.org
11036 S:      Supported
11037 W:      http://www.mellanox.com
11038 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11039 F:      Documentation/networking/device_drivers/mellanox/
11040 F:      drivers/net/ethernet/mellanox/mlx5/core/
11041 F:      include/linux/mlx5/
11042
11043 MELLANOX MLX5 IB driver
11044 M:      Leon Romanovsky <leonro@mellanox.com>
11045 L:      linux-rdma@vger.kernel.org
11046 S:      Supported
11047 W:      http://www.mellanox.com
11048 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11049 F:      drivers/infiniband/hw/mlx5/
11050 F:      include/linux/mlx5/
11051 F:      include/uapi/rdma/mlx5-abi.h
11052
11053 MELLANOX MLXCPLD I2C AND MUX DRIVER
11054 M:      Vadim Pasternak <vadimp@mellanox.com>
11055 M:      Michael Shych <michaelsh@mellanox.com>
11056 L:      linux-i2c@vger.kernel.org
11057 S:      Supported
11058 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11059 F:      drivers/i2c/busses/i2c-mlxcpld.c
11060 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11061
11062 MELLANOX MLXCPLD LED DRIVER
11063 M:      Vadim Pasternak <vadimp@mellanox.com>
11064 L:      linux-leds@vger.kernel.org
11065 S:      Supported
11066 F:      Documentation/leds/leds-mlxcpld.rst
11067 F:      drivers/leds/leds-mlxcpld.c
11068 F:      drivers/leds/leds-mlxreg.c
11069
11070 MELLANOX PLATFORM DRIVER
11071 M:      Vadim Pasternak <vadimp@mellanox.com>
11072 L:      platform-driver-x86@vger.kernel.org
11073 S:      Supported
11074 F:      drivers/platform/x86/mlx-platform.c
11075
11076 MEMBARRIER SUPPORT
11077 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11078 M:      "Paul E. McKenney" <paulmck@kernel.org>
11079 L:      linux-kernel@vger.kernel.org
11080 S:      Supported
11081 F:      arch/powerpc/include/asm/membarrier.h
11082 F:      include/uapi/linux/membarrier.h
11083 F:      kernel/sched/membarrier.c
11084
11085 MEMBLOCK
11086 M:      Mike Rapoport <rppt@linux.ibm.com>
11087 L:      linux-mm@kvack.org
11088 S:      Maintained
11089 F:      Documentation/core-api/boot-time-mm.rst
11090 F:      include/linux/memblock.h
11091 F:      mm/memblock.c
11092
11093 MEMORY MANAGEMENT
11094 M:      Andrew Morton <akpm@linux-foundation.org>
11095 L:      linux-mm@kvack.org
11096 S:      Maintained
11097 W:      http://www.linux-mm.org
11098 T:      quilt https://ozlabs.org/~akpm/mmotm/
11099 T:      quilt https://ozlabs.org/~akpm/mmots/
11100 T:      git git://github.com/hnaz/linux-mm.git
11101 F:      include/linux/gfp.h
11102 F:      include/linux/memory_hotplug.h
11103 F:      include/linux/mm.h
11104 F:      include/linux/mmzone.h
11105 F:      include/linux/vmalloc.h
11106 F:      mm/
11107
11108 MEMORY TECHNOLOGY DEVICES (MTD)
11109 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11110 M:      Richard Weinberger <richard@nod.at>
11111 M:      Vignesh Raghavendra <vigneshr@ti.com>
11112 L:      linux-mtd@lists.infradead.org
11113 S:      Maintained
11114 W:      http://www.linux-mtd.infradead.org/
11115 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11116 C:      irc://irc.oftc.net/mtd
11117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11119 F:      Documentation/devicetree/bindings/mtd/
11120 F:      drivers/mtd/
11121 F:      include/linux/mtd/
11122 F:      include/uapi/mtd/
11123
11124 MEN A21 WATCHDOG DRIVER
11125 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11126 L:      linux-watchdog@vger.kernel.org
11127 S:      Maintained
11128 F:      drivers/watchdog/mena21_wdt.c
11129
11130 MEN CHAMELEON BUS (mcb)
11131 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11132 S:      Maintained
11133 F:      Documentation/driver-api/men-chameleon-bus.rst
11134 F:      drivers/mcb/
11135 F:      include/linux/mcb.h
11136
11137 MEN F21BMC (Board Management Controller)
11138 M:      Andreas Werner <andreas.werner@men.de>
11139 S:      Supported
11140 F:      Documentation/hwmon/menf21bmc.rst
11141 F:      drivers/hwmon/menf21bmc_hwmon.c
11142 F:      drivers/leds/leds-menf21bmc.c
11143 F:      drivers/mfd/menf21bmc.c
11144 F:      drivers/watchdog/menf21bmc_wdt.c
11145
11146 MEN Z069 WATCHDOG DRIVER
11147 M:      Johannes Thumshirn <jth@kernel.org>
11148 L:      linux-watchdog@vger.kernel.org
11149 S:      Maintained
11150 F:      drivers/watchdog/menz69_wdt.c
11151
11152 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11153 M:      Neil Armstrong <narmstrong@baylibre.com>
11154 L:      linux-media@vger.kernel.org
11155 L:      linux-amlogic@lists.infradead.org
11156 S:      Supported
11157 W:      http://linux-meson.com/
11158 T:      git git://linuxtv.org/media_tree.git
11159 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11160 F:      drivers/media/platform/meson/ao-cec-g12a.c
11161 F:      drivers/media/platform/meson/ao-cec.c
11162
11163 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11164 M:      Liang Yang <liang.yang@amlogic.com>
11165 L:      linux-mtd@lists.infradead.org
11166 S:      Maintained
11167 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11168 F:      drivers/mtd/nand/raw/meson_*
11169
11170 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11171 M:      Maxime Jourdan <mjourdan@baylibre.com>
11172 M:      Neil Armstrong <narmstrong@baylibre.com>
11173 L:      linux-media@vger.kernel.org
11174 L:      linux-amlogic@lists.infradead.org
11175 S:      Supported
11176 T:      git git://linuxtv.org/media_tree.git
11177 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11178 F:      drivers/staging/media/meson/vdec/
11179
11180 METHODE UDPU SUPPORT
11181 M:      Vladimir Vid <vladimir.vid@sartura.hr>
11182 S:      Maintained
11183 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11184
11185 MHI BUS
11186 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11187 M:      Hemant Kumar <hemantk@codeaurora.org>
11188 L:      linux-arm-msm@vger.kernel.org
11189 S:      Maintained
11190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11191 F:      Documentation/mhi/
11192 F:      drivers/bus/mhi/
11193 F:      include/linux/mhi.h
11194
11195 MICROBLAZE ARCHITECTURE
11196 M:      Michal Simek <monstr@monstr.eu>
11197 S:      Supported
11198 W:      http://www.monstr.eu/fdt/
11199 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11200 F:      arch/microblaze/
11201
11202 MICROCHIP AT91 SERIAL DRIVER
11203 M:      Richard Genoud <richard.genoud@gmail.com>
11204 S:      Maintained
11205 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11206 F:      drivers/tty/serial/atmel_serial.c
11207 F:      drivers/tty/serial/atmel_serial.h
11208
11209 MICROCHIP AT91 USART MFD DRIVER
11210 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11211 L:      linux-kernel@vger.kernel.org
11212 S:      Supported
11213 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11214 F:      drivers/mfd/at91-usart.c
11215 F:      include/dt-bindings/mfd/at91-usart.h
11216
11217 MICROCHIP AT91 USART SPI DRIVER
11218 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11219 L:      linux-spi@vger.kernel.org
11220 S:      Supported
11221 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11222 F:      drivers/spi/spi-at91-usart.c
11223
11224 MICROCHIP AUDIO ASOC DRIVERS
11225 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11226 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11227 S:      Supported
11228 F:      sound/soc/atmel
11229
11230 MICROCHIP DMA DRIVER
11231 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11232 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11233 L:      dmaengine@vger.kernel.org
11234 S:      Supported
11235 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11236 F:      drivers/dma/at_hdmac.c
11237 F:      drivers/dma/at_hdmac_regs.h
11238 F:      include/dt-bindings/dma/at91.h
11239 F:      include/linux/platform_data/dma-atmel.h
11240
11241 MICROCHIP ECC DRIVER
11242 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11243 L:      linux-crypto@vger.kernel.org
11244 S:      Maintained
11245 F:      drivers/crypto/atmel-ecc.*
11246
11247 MICROCHIP I2C DRIVER
11248 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11249 L:      linux-i2c@vger.kernel.org
11250 S:      Supported
11251 F:      drivers/i2c/busses/i2c-at91-*.c
11252 F:      drivers/i2c/busses/i2c-at91.h
11253
11254 MICROCHIP ISC DRIVER
11255 M:      Eugen Hristev <eugen.hristev@microchip.com>
11256 L:      linux-media@vger.kernel.org
11257 S:      Supported
11258 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11259 F:      drivers/media/platform/atmel/atmel-isc-base.c
11260 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11261 F:      drivers/media/platform/atmel/atmel-isc.h
11262 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11263 F:      include/linux/atmel-isc-media.h
11264
11265 MICROCHIP ISI DRIVER
11266 M:      Eugen Hristev <eugen.hristev@microchip.com>
11267 L:      linux-media@vger.kernel.org
11268 S:      Supported
11269 F:      drivers/media/platform/atmel/atmel-isi.c
11270 F:      drivers/media/platform/atmel/atmel-isi.h
11271
11272 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11273 M:      Woojung Huh <woojung.huh@microchip.com>
11274 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11275 L:      netdev@vger.kernel.org
11276 S:      Maintained
11277 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
11278 F:      drivers/net/dsa/microchip/*
11279 F:      include/linux/platform_data/microchip-ksz.h
11280 F:      net/dsa/tag_ksz.c
11281
11282 MICROCHIP LAN743X ETHERNET DRIVER
11283 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
11284 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11285 L:      netdev@vger.kernel.org
11286 S:      Maintained
11287 F:      drivers/net/ethernet/microchip/lan743x_*
11288
11289 MICROCHIP LCDFB DRIVER
11290 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11291 L:      linux-fbdev@vger.kernel.org
11292 S:      Maintained
11293 F:      drivers/video/fbdev/atmel_lcdfb.c
11294 F:      include/video/atmel_lcdc.h
11295
11296 MICROCHIP MCP16502 PMIC DRIVER
11297 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
11298 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11299 S:      Maintained
11300 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11301 F:      drivers/regulator/mcp16502.c
11302
11303 MICROCHIP MCP3911 ADC DRIVER
11304 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11305 M:      Kent Gustavsson <kent@minoris.se>
11306 L:      linux-iio@vger.kernel.org
11307 S:      Supported
11308 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11309 F:      drivers/iio/adc/mcp3911.c
11310
11311 MICROCHIP MMC/SD/SDIO MCI DRIVER
11312 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11313 S:      Maintained
11314 F:      drivers/mmc/host/atmel-mci.c
11315
11316 MICROCHIP NAND DRIVER
11317 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11318 L:      linux-mtd@lists.infradead.org
11319 S:      Supported
11320 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11321 F:      drivers/mtd/nand/raw/atmel/*
11322
11323 MICROCHIP PWM DRIVER
11324 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11325 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11326 L:      linux-pwm@vger.kernel.org
11327 S:      Supported
11328 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11329 F:      drivers/pwm/pwm-atmel.c
11330
11331 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11332 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11333 M:      Eugen Hristev <eugen.hristev@microchip.com>
11334 L:      linux-iio@vger.kernel.org
11335 S:      Supported
11336 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11337 F:      drivers/iio/adc/at91-sama5d2_adc.c
11338 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11339
11340 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11341 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11342 S:      Supported
11343 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11344
11345 MICROCHIP SPI DRIVER
11346 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11347 S:      Supported
11348 F:      drivers/spi/spi-atmel.*
11349
11350 MICROCHIP SSC DRIVER
11351 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11352 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11353 S:      Supported
11354 F:      drivers/misc/atmel-ssc.c
11355 F:      include/linux/atmel-ssc.h
11356
11357 MICROCHIP USB251XB DRIVER
11358 M:      Richard Leitner <richard.leitner@skidata.com>
11359 L:      linux-usb@vger.kernel.org
11360 S:      Maintained
11361 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11362 F:      drivers/usb/misc/usb251xb.c
11363
11364 MICROCHIP USBA UDC DRIVER
11365 M:      Cristian Birsan <cristian.birsan@microchip.com>
11366 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11367 S:      Supported
11368 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11369
11370 MICROCHIP XDMA DRIVER
11371 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11372 L:      linux-arm-kernel@lists.infradead.org
11373 L:      dmaengine@vger.kernel.org
11374 S:      Supported
11375 F:      drivers/dma/at_xdmac.c
11376
11377 MICROSEMI MIPS SOCS
11378 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11379 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11380 L:      linux-mips@vger.kernel.org
11381 S:      Supported
11382 F:      Documentation/devicetree/bindings/mips/mscc.txt
11383 F:      arch/mips/boot/dts/mscc/
11384 F:      arch/mips/configs/generic/board-ocelot.config
11385 F:      arch/mips/generic/board-ocelot.c
11386
11387 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11388 M:      Don Brace <don.brace@microsemi.com>
11389 L:      esc.storagedev@microsemi.com
11390 L:      linux-scsi@vger.kernel.org
11391 S:      Supported
11392 F:      Documentation/scsi/smartpqi.rst
11393 F:      drivers/scsi/smartpqi/Kconfig
11394 F:      drivers/scsi/smartpqi/Makefile
11395 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11396 F:      include/linux/cciss*.h
11397 F:      include/uapi/linux/cciss*.h
11398
11399 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11400 M:      Chen Yu <yu.c.chen@intel.com>
11401 L:      platform-driver-x86@vger.kernel.org
11402 S:      Supported
11403 F:      drivers/platform/x86/surfacepro3_button.c
11404
11405 MICROTEK X6 SCANNER
11406 M:      Oliver Neukum <oliver@neukum.org>
11407 S:      Maintained
11408 F:      drivers/usb/image/microtek.*
11409
11410 MIPS
11411 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11412 L:      linux-mips@vger.kernel.org
11413 S:      Maintained
11414 W:      http://www.linux-mips.org/
11415 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11417 F:      Documentation/devicetree/bindings/mips/
11418 F:      Documentation/mips/
11419 F:      arch/mips/
11420 F:      drivers/platform/mips/
11421
11422 MIPS BOSTON DEVELOPMENT BOARD
11423 M:      Paul Burton <paulburton@kernel.org>
11424 L:      linux-mips@vger.kernel.org
11425 S:      Maintained
11426 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11427 F:      arch/mips/boot/dts/img/boston.dts
11428 F:      arch/mips/configs/generic/board-boston.config
11429 F:      drivers/clk/imgtec/clk-boston.c
11430 F:      include/dt-bindings/clock/boston-clock.h
11431
11432 MIPS GENERIC PLATFORM
11433 M:      Paul Burton <paulburton@kernel.org>
11434 L:      linux-mips@vger.kernel.org
11435 S:      Supported
11436 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
11437 F:      arch/mips/generic/
11438 F:      arch/mips/tools/generic-board-config.sh
11439
11440 MIPS RINT INSTRUCTION EMULATION
11441 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
11442 L:      linux-mips@vger.kernel.org
11443 S:      Supported
11444 F:      arch/mips/math-emu/dp_rint.c
11445 F:      arch/mips/math-emu/sp_rint.c
11446
11447 MIPS/LOONGSON1 ARCHITECTURE
11448 M:      Keguang Zhang <keguang.zhang@gmail.com>
11449 L:      linux-mips@vger.kernel.org
11450 S:      Maintained
11451 F:      arch/mips/include/asm/mach-loongson32/
11452 F:      arch/mips/loongson32/
11453 F:      drivers/*/*/*loongson1*
11454 F:      drivers/*/*loongson1*
11455
11456 MIPS/LOONGSON2EF ARCHITECTURE
11457 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11458 L:      linux-mips@vger.kernel.org
11459 S:      Maintained
11460 F:      arch/mips/include/asm/mach-loongson2ef/
11461 F:      arch/mips/loongson2ef/
11462 F:      drivers/*/*/*loongson2*
11463 F:      drivers/*/*loongson2*
11464
11465 MIPS/LOONGSON64 ARCHITECTURE
11466 M:      Huacai Chen <chenhc@lemote.com>
11467 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11468 L:      linux-mips@vger.kernel.org
11469 S:      Maintained
11470 F:      arch/mips/include/asm/mach-loongson64/
11471 F:      arch/mips/loongson64/
11472 F:      drivers/*/*/*loongson3*
11473 F:      drivers/*/*loongson3*
11474 F:      drivers/irqchip/irq-loongson*
11475 F:      drivers/platform/mips/cpu_hwmon.c
11476
11477 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11478 M:      Hans Verkuil <hverkuil@xs4all.nl>
11479 L:      linux-media@vger.kernel.org
11480 S:      Odd Fixes
11481 W:      https://linuxtv.org
11482 T:      git git://linuxtv.org/media_tree.git
11483 F:      drivers/media/radio/radio-miropcm20*
11484
11485 MMP SUPPORT
11486 R:      Lubomir Rintel <lkundrak@v3.sk>
11487 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11488 S:      Odd Fixes
11489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11490 F:      arch/arm/boot/dts/mmp*
11491 F:      arch/arm/mach-mmp/
11492 F:      linux/soc/mmp/
11493
11494 MMP USB PHY DRIVERS
11495 R:      Lubomir Rintel <lkundrak@v3.sk>
11496 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11497 S:      Maintained
11498 F:      drivers/phy/marvell/phy-mmp3-usb.c
11499 F:      drivers/phy/marvell/phy-pxa-usb.c
11500
11501 MMU GATHER AND TLB INVALIDATION
11502 M:      Will Deacon <will@kernel.org>
11503 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
11504 M:      Andrew Morton <akpm@linux-foundation.org>
11505 M:      Nick Piggin <npiggin@gmail.com>
11506 M:      Peter Zijlstra <peterz@infradead.org>
11507 L:      linux-arch@vger.kernel.org
11508 L:      linux-mm@kvack.org
11509 S:      Maintained
11510 F:      arch/*/include/asm/tlb.h
11511 F:      include/asm-generic/tlb.h
11512 F:      mm/mmu_gather.c
11513
11514 MN88472 MEDIA DRIVER
11515 M:      Antti Palosaari <crope@iki.fi>
11516 L:      linux-media@vger.kernel.org
11517 S:      Maintained
11518 W:      https://linuxtv.org
11519 W:      http://palosaari.fi/linux/
11520 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11521 F:      drivers/media/dvb-frontends/mn88472*
11522
11523 MN88473 MEDIA DRIVER
11524 M:      Antti Palosaari <crope@iki.fi>
11525 L:      linux-media@vger.kernel.org
11526 S:      Maintained
11527 W:      https://linuxtv.org
11528 W:      http://palosaari.fi/linux/
11529 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11530 F:      drivers/media/dvb-frontends/mn88473*
11531
11532 MODULE SUPPORT
11533 M:      Jessica Yu <jeyu@kernel.org>
11534 S:      Maintained
11535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11536 F:      include/linux/module.h
11537 F:      kernel/module.c
11538
11539 MONOLITHIC POWER SYSTEM PMIC DRIVER
11540 M:      Saravanan Sekar <sravanhome@gmail.com>
11541 S:      Maintained
11542 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
11543 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11544 F:      drivers/iio/adc/mp2629_adc.c
11545 F:      drivers/mfd/mp2629.c
11546 F:      drivers/power/supply/mp2629_charger.c
11547 F:      drivers/regulator/mp5416.c
11548 F:      drivers/regulator/mpq7920.c
11549 F:      drivers/regulator/mpq7920.h
11550 F:      include/linux/mfd/mp2629.h
11551
11552 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11553 S:      Orphan
11554 W:      http://popies.net/meye/
11555 F:      Documentation/userspace-api/media/drivers/meye*
11556 F:      drivers/media/pci/meye/
11557 F:      include/uapi/linux/meye.h
11558
11559 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11560 M:      Jiri Slaby <jirislaby@gmail.com>
11561 S:      Maintained
11562 F:      Documentation/driver-api/serial/moxa-smartio.rst
11563 F:      drivers/tty/mxser.*
11564
11565 MR800 AVERMEDIA USB FM RADIO DRIVER
11566 M:      Alexey Klimov <klimov.linux@gmail.com>
11567 L:      linux-media@vger.kernel.org
11568 S:      Maintained
11569 T:      git git://linuxtv.org/media_tree.git
11570 F:      drivers/media/radio/radio-mr800.c
11571
11572 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11573 M:      Alan Ott <alan@signal11.us>
11574 L:      linux-wpan@vger.kernel.org
11575 S:      Maintained
11576 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11577 F:      drivers/net/ieee802154/mrf24j40.c
11578
11579 MSI LAPTOP SUPPORT
11580 M:      "Lee, Chun-Yi" <jlee@suse.com>
11581 L:      platform-driver-x86@vger.kernel.org
11582 S:      Maintained
11583 F:      drivers/platform/x86/msi-laptop.c
11584
11585 MSI WMI SUPPORT
11586 L:      platform-driver-x86@vger.kernel.org
11587 S:      Orphan
11588 F:      drivers/platform/x86/msi-wmi.c
11589
11590 MSI001 MEDIA DRIVER
11591 M:      Antti Palosaari <crope@iki.fi>
11592 L:      linux-media@vger.kernel.org
11593 S:      Maintained
11594 W:      https://linuxtv.org
11595 W:      http://palosaari.fi/linux/
11596 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11597 T:      git git://linuxtv.org/anttip/media_tree.git
11598 F:      drivers/media/tuners/msi001*
11599
11600 MSI2500 MEDIA DRIVER
11601 M:      Antti Palosaari <crope@iki.fi>
11602 L:      linux-media@vger.kernel.org
11603 S:      Maintained
11604 W:      https://linuxtv.org
11605 W:      http://palosaari.fi/linux/
11606 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11607 T:      git git://linuxtv.org/anttip/media_tree.git
11608 F:      drivers/media/usb/msi2500/
11609
11610 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11611 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11612 L:      linux-mtd@lists.infradead.org
11613 S:      Maintained
11614 F:      drivers/mtd/devices/docg3*
11615
11616 MT9M032 APTINA SENSOR DRIVER
11617 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11618 L:      linux-media@vger.kernel.org
11619 S:      Maintained
11620 T:      git git://linuxtv.org/media_tree.git
11621 F:      drivers/media/i2c/mt9m032.c
11622 F:      include/media/i2c/mt9m032.h
11623
11624 MT9P031 APTINA CAMERA SENSOR
11625 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11626 L:      linux-media@vger.kernel.org
11627 S:      Maintained
11628 T:      git git://linuxtv.org/media_tree.git
11629 F:      drivers/media/i2c/mt9p031.c
11630 F:      include/media/i2c/mt9p031.h
11631
11632 MT9T001 APTINA CAMERA SENSOR
11633 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11634 L:      linux-media@vger.kernel.org
11635 S:      Maintained
11636 T:      git git://linuxtv.org/media_tree.git
11637 F:      drivers/media/i2c/mt9t001.c
11638 F:      include/media/i2c/mt9t001.h
11639
11640 MT9T112 APTINA CAMERA SENSOR
11641 M:      Jacopo Mondi <jacopo@jmondi.org>
11642 L:      linux-media@vger.kernel.org
11643 S:      Odd Fixes
11644 T:      git git://linuxtv.org/media_tree.git
11645 F:      drivers/media/i2c/mt9t112.c
11646 F:      include/media/i2c/mt9t112.h
11647
11648 MT9V032 APTINA CAMERA SENSOR
11649 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11650 L:      linux-media@vger.kernel.org
11651 S:      Maintained
11652 T:      git git://linuxtv.org/media_tree.git
11653 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11654 F:      drivers/media/i2c/mt9v032.c
11655 F:      include/media/i2c/mt9v032.h
11656
11657 MT9V111 APTINA CAMERA SENSOR
11658 M:      Jacopo Mondi <jacopo@jmondi.org>
11659 L:      linux-media@vger.kernel.org
11660 S:      Maintained
11661 T:      git git://linuxtv.org/media_tree.git
11662 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11663 F:      drivers/media/i2c/mt9v111.c
11664
11665 MULTIFUNCTION DEVICES (MFD)
11666 M:      Lee Jones <lee.jones@linaro.org>
11667 S:      Supported
11668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11669 F:      Documentation/devicetree/bindings/mfd/
11670 F:      drivers/mfd/
11671 F:      include/dt-bindings/mfd/
11672 F:      include/linux/mfd/
11673
11674 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11675 S:      Orphan
11676 F:      drivers/mmc/host/mmc_spi.c
11677 F:      include/linux/spi/mmc_spi.h
11678
11679 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11680 M:      Ulf Hansson <ulf.hansson@linaro.org>
11681 L:      linux-mmc@vger.kernel.org
11682 S:      Maintained
11683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11684 F:      Documentation/devicetree/bindings/mmc/
11685 F:      drivers/mmc/
11686 F:      include/linux/mmc/
11687 F:      include/uapi/linux/mmc/
11688
11689 MULTIPLEXER SUBSYSTEM
11690 M:      Peter Rosin <peda@axentia.se>
11691 S:      Maintained
11692 F:      Documentation/ABI/testing/sysfs-class-mux*
11693 F:      Documentation/devicetree/bindings/mux/
11694 F:      drivers/mux/
11695 F:      include/dt-bindings/mux/
11696 F:      include/linux/mux/
11697
11698 MULTITECH MULTIPORT CARD (ISICOM)
11699 S:      Orphan
11700 F:      drivers/tty/isicom.c
11701 F:      include/linux/isicom.h
11702
11703 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11704 M:      Bin Liu <b-liu@ti.com>
11705 L:      linux-usb@vger.kernel.org
11706 S:      Maintained
11707 F:      drivers/usb/musb/
11708
11709 MXL301RF MEDIA DRIVER
11710 M:      Akihiro Tsukada <tskd08@gmail.com>
11711 L:      linux-media@vger.kernel.org
11712 S:      Odd Fixes
11713 F:      drivers/media/tuners/mxl301rf*
11714
11715 MXL5007T MEDIA DRIVER
11716 M:      Michael Krufky <mkrufky@linuxtv.org>
11717 L:      linux-media@vger.kernel.org
11718 S:      Maintained
11719 W:      https://linuxtv.org
11720 W:      http://github.com/mkrufky
11721 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11722 T:      git git://linuxtv.org/mkrufky/tuners.git
11723 F:      drivers/media/tuners/mxl5007t.*
11724
11725 MXSFB DRM DRIVER
11726 M:      Marek Vasut <marex@denx.de>
11727 M:      Stefan Agner <stefan@agner.ch>
11728 L:      dri-devel@lists.freedesktop.org
11729 S:      Supported
11730 T:      git git://anongit.freedesktop.org/drm/drm-misc
11731 F:      Documentation/devicetree/bindings/display/mxsfb.txt
11732 F:      drivers/gpu/drm/mxsfb/
11733
11734 MYLEX DAC960 PCI RAID Controller
11735 M:      Hannes Reinecke <hare@kernel.org>
11736 L:      linux-scsi@vger.kernel.org
11737 S:      Supported
11738 F:      drivers/scsi/myrb.*
11739 F:      drivers/scsi/myrs.*
11740
11741 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11742 M:      Chris Lee <christopher.lee@cspi.com>
11743 L:      netdev@vger.kernel.org
11744 S:      Supported
11745 W:      https://www.cspi.com/ethernet-products/support/downloads/
11746 F:      drivers/net/ethernet/myricom/myri10ge/
11747
11748 NAND FLASH SUBSYSTEM
11749 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11750 R:      Richard Weinberger <richard@nod.at>
11751 L:      linux-mtd@lists.infradead.org
11752 S:      Maintained
11753 W:      http://www.linux-mtd.infradead.org/
11754 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11755 C:      irc://irc.oftc.net/mtd
11756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11757 F:      drivers/mtd/nand/
11758 F:      include/linux/mtd/*nand*.h
11759
11760 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11761 M:      Daniel Mack <zonque@gmail.com>
11762 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11763 S:      Maintained
11764 W:      http://www.native-instruments.com
11765 F:      sound/usb/caiaq/
11766
11767 NATSEMI ETHERNET DRIVER (DP8381x)
11768 S:      Orphan
11769 F:      drivers/net/ethernet/natsemi/natsemi.c
11770
11771 NCR 5380 SCSI DRIVERS
11772 M:      Finn Thain <fthain@telegraphics.com.au>
11773 M:      Michael Schmitz <schmitzmic@gmail.com>
11774 L:      linux-scsi@vger.kernel.org
11775 S:      Maintained
11776 F:      Documentation/scsi/g_NCR5380.rst
11777 F:      drivers/scsi/NCR5380.*
11778 F:      drivers/scsi/arm/cumana_1.c
11779 F:      drivers/scsi/arm/oak.c
11780 F:      drivers/scsi/atari_scsi.*
11781 F:      drivers/scsi/dmx3191d.c
11782 F:      drivers/scsi/g_NCR5380.*
11783 F:      drivers/scsi/mac_scsi.*
11784 F:      drivers/scsi/sun3_scsi.*
11785 F:      drivers/scsi/sun3_scsi_vme.c
11786
11787 NCSI LIBRARY
11788 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
11789 S:      Maintained
11790 F:      net/ncsi/
11791
11792 NCT6775 HARDWARE MONITOR DRIVER
11793 M:      Guenter Roeck <linux@roeck-us.net>
11794 L:      linux-hwmon@vger.kernel.org
11795 S:      Maintained
11796 F:      Documentation/hwmon/nct6775.rst
11797 F:      drivers/hwmon/nct6775.c
11798
11799 NETDEVSIM
11800 M:      Jakub Kicinski <kuba@kernel.org>
11801 S:      Maintained
11802 F:      drivers/net/netdevsim/*
11803
11804 NETEM NETWORK EMULATOR
11805 M:      Stephen Hemminger <stephen@networkplumber.org>
11806 L:      netdev@vger.kernel.org
11807 S:      Maintained
11808 F:      net/sched/sch_netem.c
11809
11810 NETERION 10GbE DRIVERS (s2io/vxge)
11811 M:      Jon Mason <jdmason@kudzu.us>
11812 L:      netdev@vger.kernel.org
11813 S:      Supported
11814 F:      Documentation/networking/device_drivers/neterion/s2io.rst
11815 F:      Documentation/networking/device_drivers/neterion/vxge.rst
11816 F:      drivers/net/ethernet/neterion/
11817
11818 NETFILTER
11819 M:      Pablo Neira Ayuso <pablo@netfilter.org>
11820 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
11821 M:      Florian Westphal <fw@strlen.de>
11822 L:      netfilter-devel@vger.kernel.org
11823 L:      coreteam@netfilter.org
11824 S:      Maintained
11825 W:      http://www.netfilter.org/
11826 W:      http://www.iptables.org/
11827 W:      http://www.nftables.org/
11828 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
11829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
11830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
11831 F:      include/linux/netfilter*
11832 F:      include/linux/netfilter/
11833 F:      include/net/netfilter/
11834 F:      include/uapi/linux/netfilter*
11835 F:      include/uapi/linux/netfilter/
11836 F:      net/*/netfilter.c
11837 F:      net/*/netfilter/
11838 F:      net/bridge/br_netfilter*.c
11839 F:      net/netfilter/
11840
11841 NETROM NETWORK LAYER
11842 M:      Ralf Baechle <ralf@linux-mips.org>
11843 L:      linux-hams@vger.kernel.org
11844 S:      Maintained
11845 W:      http://www.linux-ax25.org/
11846 F:      include/net/netrom.h
11847 F:      include/uapi/linux/netrom.h
11848 F:      net/netrom/
11849
11850 NETRONOME ETHERNET DRIVERS
11851 M:      Jakub Kicinski <kuba@kernel.org>
11852 L:      oss-drivers@netronome.com
11853 S:      Maintained
11854 F:      drivers/net/ethernet/netronome/
11855
11856 NETWORK BLOCK DEVICE (NBD)
11857 M:      Josef Bacik <josef@toxicpanda.com>
11858 L:      linux-block@vger.kernel.org
11859 L:      nbd@other.debian.org
11860 S:      Maintained
11861 F:      Documentation/admin-guide/blockdev/nbd.rst
11862 F:      drivers/block/nbd.c
11863 F:      include/trace/events/nbd.h
11864 F:      include/uapi/linux/nbd.h
11865
11866 NETWORK DROP MONITOR
11867 M:      Neil Horman <nhorman@tuxdriver.com>
11868 L:      netdev@vger.kernel.org
11869 S:      Maintained
11870 W:      https://fedorahosted.org/dropwatch/
11871 F:      include/net/drop_monitor.h
11872 F:      include/uapi/linux/net_dropmon.h
11873 F:      net/core/drop_monitor.c
11874
11875 NETWORKING DRIVERS
11876 M:      "David S. Miller" <davem@davemloft.net>
11877 M:      Jakub Kicinski <kuba@kernel.org>
11878 L:      netdev@vger.kernel.org
11879 S:      Maintained
11880 W:      http://www.linuxfoundation.org/en/Net
11881 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11884 F:      Documentation/devicetree/bindings/net/
11885 F:      drivers/net/
11886 F:      include/linux/etherdevice.h
11887 F:      include/linux/fcdevice.h
11888 F:      include/linux/fddidevice.h
11889 F:      include/linux/hippidevice.h
11890 F:      include/linux/if_*
11891 F:      include/linux/inetdevice.h
11892 F:      include/linux/netdevice.h
11893 F:      include/uapi/linux/if_*
11894 F:      include/uapi/linux/netdevice.h
11895
11896 NETWORKING DRIVERS (WIRELESS)
11897 M:      Kalle Valo <kvalo@codeaurora.org>
11898 L:      linux-wireless@vger.kernel.org
11899 S:      Maintained
11900 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
11902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
11903 F:      Documentation/devicetree/bindings/net/wireless/
11904 F:      drivers/net/wireless/
11905
11906 NETWORKING [DSA]
11907 M:      Andrew Lunn <andrew@lunn.ch>
11908 M:      Vivien Didelot <vivien.didelot@gmail.com>
11909 M:      Florian Fainelli <f.fainelli@gmail.com>
11910 S:      Maintained
11911 F:      Documentation/devicetree/bindings/net/dsa/
11912 F:      drivers/net/dsa/
11913 F:      include/linux/dsa/
11914 F:      include/linux/platform_data/dsa.h
11915 F:      include/net/dsa.h
11916 F:      net/dsa/
11917
11918 NETWORKING [GENERAL]
11919 M:      "David S. Miller" <davem@davemloft.net>
11920 M:      Jakub Kicinski <kuba@kernel.org>
11921 L:      netdev@vger.kernel.org
11922 S:      Maintained
11923 W:      http://www.linuxfoundation.org/en/Net
11924 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11925 B:      mailto:netdev@vger.kernel.org
11926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11928 F:      Documentation/networking/
11929 F:      include/linux/in.h
11930 F:      include/linux/net.h
11931 F:      include/linux/netdevice.h
11932 F:      include/net/
11933 F:      include/uapi/linux/in.h
11934 F:      include/uapi/linux/net.h
11935 F:      include/uapi/linux/net_namespace.h
11936 F:      include/uapi/linux/netdevice.h
11937 F:      lib/net_utils.c
11938 F:      lib/random32.c
11939 F:      net/
11940 F:      tools/testing/selftests/net/
11941
11942 NETWORKING [IPSEC]
11943 M:      Steffen Klassert <steffen.klassert@secunet.com>
11944 M:      Herbert Xu <herbert@gondor.apana.org.au>
11945 M:      "David S. Miller" <davem@davemloft.net>
11946 L:      netdev@vger.kernel.org
11947 S:      Maintained
11948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
11949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
11950 F:      include/net/xfrm.h
11951 F:      include/uapi/linux/xfrm.h
11952 F:      net/ipv4/ah4.c
11953 F:      net/ipv4/esp4*
11954 F:      net/ipv4/ip_vti.c
11955 F:      net/ipv4/ipcomp.c
11956 F:      net/ipv4/xfrm*
11957 F:      net/ipv6/ah6.c
11958 F:      net/ipv6/esp6*
11959 F:      net/ipv6/ip6_vti.c
11960 F:      net/ipv6/ipcomp6.c
11961 F:      net/ipv6/xfrm*
11962 F:      net/key/
11963 F:      net/xfrm/
11964
11965 NETWORKING [IPv4/IPv6]
11966 M:      "David S. Miller" <davem@davemloft.net>
11967 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
11968 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
11969 L:      netdev@vger.kernel.org
11970 S:      Maintained
11971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11972 F:      arch/x86/net/*
11973 F:      include/net/ip*
11974 F:      net/ipv4/
11975 F:      net/ipv6/
11976
11977 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
11978 M:      Paul Moore <paul@paul-moore.com>
11979 L:      netdev@vger.kernel.org
11980 L:      linux-security-module@vger.kernel.org
11981 S:      Maintained
11982 W:      https://github.com/netlabel
11983 F:      Documentation/netlabel/
11984 F:      include/net/calipso.h
11985 F:      include/net/cipso_ipv4.h
11986 F:      include/net/netlabel.h
11987 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
11988 F:      include/uapi/linux/netfilter/xt_SECMARK.h
11989 F:      net/ipv4/cipso_ipv4.c
11990 F:      net/ipv6/calipso.c
11991 F:      net/netfilter/xt_CONNSECMARK.c
11992 F:      net/netfilter/xt_SECMARK.c
11993 F:      net/netlabel/
11994
11995 NETWORKING [MPTCP]
11996 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
11997 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
11998 L:      netdev@vger.kernel.org
11999 L:      mptcp@lists.01.org
12000 S:      Maintained
12001 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
12002 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
12003 F:      include/net/mptcp.h
12004 F:      include/uapi/linux/mptcp.h
12005 F:      net/mptcp/
12006 F:      tools/testing/selftests/net/mptcp/
12007
12008 NETWORKING [TCP]
12009 M:      Eric Dumazet <edumazet@google.com>
12010 L:      netdev@vger.kernel.org
12011 S:      Maintained
12012 F:      include/linux/tcp.h
12013 F:      include/net/tcp.h
12014 F:      include/trace/events/tcp.h
12015 F:      include/uapi/linux/tcp.h
12016 F:      net/ipv4/syncookies.c
12017 F:      net/ipv4/tcp*.c
12018 F:      net/ipv6/syncookies.c
12019 F:      net/ipv6/tcp*.c
12020
12021 NETWORKING [TLS]
12022 M:      Boris Pismenny <borisp@mellanox.com>
12023 M:      Aviad Yehezkel <aviadye@mellanox.com>
12024 M:      John Fastabend <john.fastabend@gmail.com>
12025 M:      Daniel Borkmann <daniel@iogearbox.net>
12026 M:      Jakub Kicinski <kuba@kernel.org>
12027 L:      netdev@vger.kernel.org
12028 S:      Maintained
12029 F:      include/net/tls.h
12030 F:      include/uapi/linux/tls.h
12031 F:      net/tls/*
12032
12033 NETWORKING [WIRELESS]
12034 L:      linux-wireless@vger.kernel.org
12035 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12036
12037 NETXEN (1/10) GbE SUPPORT
12038 M:      Manish Chopra <manishc@marvell.com>
12039 M:      Rahul Verma <rahulv@marvell.com>
12040 M:      GR-Linux-NIC-Dev@marvell.com
12041 L:      netdev@vger.kernel.org
12042 S:      Supported
12043 F:      drivers/net/ethernet/qlogic/netxen/
12044
12045 NET_FAILOVER MODULE
12046 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
12047 L:      netdev@vger.kernel.org
12048 S:      Supported
12049 F:      Documentation/networking/net_failover.rst
12050 F:      drivers/net/net_failover.c
12051 F:      include/net/net_failover.h
12052
12053 NEXTHOP
12054 M:      David Ahern <dsahern@kernel.org>
12055 L:      netdev@vger.kernel.org
12056 S:      Maintained
12057 F:      include/net/netns/nexthop.h
12058 F:      include/net/nexthop.h
12059 F:      include/uapi/linux/nexthop.h
12060 F:      net/ipv4/nexthop.c
12061
12062 NFC SUBSYSTEM
12063 L:      netdev@vger.kernel.org
12064 S:      Orphan
12065 F:      Documentation/devicetree/bindings/net/nfc/
12066 F:      drivers/nfc/
12067 F:      include/linux/platform_data/nfcmrvl.h
12068 F:      include/net/nfc/
12069 F:      include/uapi/linux/nfc.h
12070 F:      net/nfc/
12071
12072 NFS, SUNRPC, AND LOCKD CLIENTS
12073 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
12074 M:      Anna Schumaker <anna.schumaker@netapp.com>
12075 L:      linux-nfs@vger.kernel.org
12076 S:      Maintained
12077 W:      http://client.linux-nfs.org
12078 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12079 F:      fs/lockd/
12080 F:      fs/nfs/
12081 F:      fs/nfs_common/
12082 F:      include/linux/lockd/
12083 F:      include/linux/nfs*
12084 F:      include/linux/sunrpc/
12085 F:      include/uapi/linux/nfs*
12086 F:      include/uapi/linux/sunrpc/
12087 F:      net/sunrpc/
12088
12089 NILFS2 FILESYSTEM
12090 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
12091 L:      linux-nilfs@vger.kernel.org
12092 S:      Supported
12093 W:      https://nilfs.sourceforge.io/
12094 W:      https://nilfs.osdn.jp/
12095 T:      git git://github.com/konis/nilfs2.git
12096 F:      Documentation/filesystems/nilfs2.rst
12097 F:      fs/nilfs2/
12098 F:      include/trace/events/nilfs2.h
12099 F:      include/uapi/linux/nilfs2_api.h
12100 F:      include/uapi/linux/nilfs2_ondisk.h
12101
12102 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
12103 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12104 S:      Maintained
12105 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12106 F:      Documentation/scsi/NinjaSCSI.rst
12107 F:      drivers/scsi/pcmcia/nsp_*
12108
12109 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12110 M:      GOTO Masanori <gotom@debian.or.jp>
12111 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12112 S:      Maintained
12113 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12114 F:      Documentation/scsi/NinjaSCSI.rst
12115 F:      drivers/scsi/nsp32*
12116
12117 NIOS2 ARCHITECTURE
12118 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12119 S:      Maintained
12120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12121 F:      arch/nios2/
12122
12123 NOHZ, DYNTICKS SUPPORT
12124 M:      Frederic Weisbecker <fweisbec@gmail.com>
12125 M:      Thomas Gleixner <tglx@linutronix.de>
12126 M:      Ingo Molnar <mingo@kernel.org>
12127 L:      linux-kernel@vger.kernel.org
12128 S:      Maintained
12129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12130 F:      include/linux/sched/nohz.h
12131 F:      include/linux/tick.h
12132 F:      kernel/time/tick*.*
12133
12134 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12135 M:      Pavel Machek <pavel@ucw.cz>
12136 M:      Sakari Ailus <sakari.ailus@iki.fi>
12137 L:      linux-media@vger.kernel.org
12138 S:      Maintained
12139 F:      drivers/media/i2c/ad5820.c
12140 F:      drivers/media/i2c/et8ek8
12141
12142 NOKIA N900 POWER SUPPLY DRIVERS
12143 R:      Pali Rohár <pali@kernel.org>
12144 F:      drivers/power/supply/bq2415x_charger.c
12145 F:      drivers/power/supply/bq27xxx_battery.c
12146 F:      drivers/power/supply/bq27xxx_battery_i2c.c
12147 F:      drivers/power/supply/isp1704_charger.c
12148 F:      drivers/power/supply/rx51_battery.c
12149 F:      include/linux/power/bq2415x_charger.h
12150 F:      include/linux/power/bq27xxx_battery.h
12151
12152 NOLIBC HEADER FILE
12153 M:      Willy Tarreau <w@1wt.eu>
12154 S:      Maintained
12155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12156 F:      tools/include/nolibc/
12157
12158 NSDEPS
12159 M:      Matthias Maennich <maennich@google.com>
12160 S:      Maintained
12161 F:      Documentation/core-api/symbol-namespaces.rst
12162 F:      scripts/nsdeps
12163
12164 NTB AMD DRIVER
12165 M:      Sanjay R Mehta <sanju.mehta@amd.com>
12166 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
12167 L:      linux-ntb@googlegroups.com
12168 S:      Supported
12169 F:      drivers/ntb/hw/amd/
12170
12171 NTB DRIVER CORE
12172 M:      Jon Mason <jdmason@kudzu.us>
12173 M:      Dave Jiang <dave.jiang@intel.com>
12174 M:      Allen Hubbe <allenbh@gmail.com>
12175 L:      linux-ntb@googlegroups.com
12176 S:      Supported
12177 W:      https://github.com/jonmason/ntb/wiki
12178 T:      git git://github.com/jonmason/ntb.git
12179 F:      drivers/net/ntb_netdev.c
12180 F:      drivers/ntb/
12181 F:      include/linux/ntb.h
12182 F:      include/linux/ntb_transport.h
12183 F:      tools/testing/selftests/ntb/
12184
12185 NTB IDT DRIVER
12186 M:      Serge Semin <fancer.lancer@gmail.com>
12187 L:      linux-ntb@googlegroups.com
12188 S:      Supported
12189 F:      drivers/ntb/hw/idt/
12190
12191 NTB INTEL DRIVER
12192 M:      Dave Jiang <dave.jiang@intel.com>
12193 L:      linux-ntb@googlegroups.com
12194 S:      Supported
12195 W:      https://github.com/davejiang/linux/wiki
12196 T:      git https://github.com/davejiang/linux.git
12197 F:      drivers/ntb/hw/intel/
12198
12199 NTFS FILESYSTEM
12200 M:      Anton Altaparmakov <anton@tuxera.com>
12201 L:      linux-ntfs-dev@lists.sourceforge.net
12202 S:      Supported
12203 W:      http://www.tuxera.com/
12204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12205 F:      Documentation/filesystems/ntfs.rst
12206 F:      fs/ntfs/
12207
12208 NUBUS SUBSYSTEM
12209 M:      Finn Thain <fthain@telegraphics.com.au>
12210 L:      linux-m68k@lists.linux-m68k.org
12211 S:      Maintained
12212 F:      arch/*/include/asm/nubus.h
12213 F:      drivers/nubus/
12214 F:      include/linux/nubus.h
12215 F:      include/uapi/linux/nubus.h
12216
12217 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12218 M:      Antonino Daplas <adaplas@gmail.com>
12219 L:      linux-fbdev@vger.kernel.org
12220 S:      Maintained
12221 F:      drivers/video/fbdev/nvidia/
12222 F:      drivers/video/fbdev/riva/
12223
12224 NVM EXPRESS DRIVER
12225 M:      Keith Busch <kbusch@kernel.org>
12226 M:      Jens Axboe <axboe@fb.com>
12227 M:      Christoph Hellwig <hch@lst.de>
12228 M:      Sagi Grimberg <sagi@grimberg.me>
12229 L:      linux-nvme@lists.infradead.org
12230 S:      Supported
12231 W:      http://git.infradead.org/nvme.git
12232 T:      git://git.infradead.org/nvme.git
12233 F:      drivers/nvme/host/
12234 F:      include/linux/nvme.h
12235 F:      include/uapi/linux/nvme_ioctl.h
12236
12237 NVM EXPRESS FC TRANSPORT DRIVERS
12238 M:      James Smart <james.smart@broadcom.com>
12239 L:      linux-nvme@lists.infradead.org
12240 S:      Supported
12241 F:      drivers/nvme/host/fc.c
12242 F:      drivers/nvme/target/fc.c
12243 F:      drivers/nvme/target/fcloop.c
12244 F:      include/linux/nvme-fc-driver.h
12245 F:      include/linux/nvme-fc.h
12246
12247 NVM EXPRESS TARGET DRIVER
12248 M:      Christoph Hellwig <hch@lst.de>
12249 M:      Sagi Grimberg <sagi@grimberg.me>
12250 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
12251 L:      linux-nvme@lists.infradead.org
12252 S:      Supported
12253 W:      http://git.infradead.org/nvme.git
12254 T:      git://git.infradead.org/nvme.git
12255 F:      drivers/nvme/target/
12256
12257 NVMEM FRAMEWORK
12258 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12259 S:      Maintained
12260 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12261 F:      Documentation/devicetree/bindings/nvmem/
12262 F:      drivers/nvmem/
12263 F:      include/linux/nvmem-consumer.h
12264 F:      include/linux/nvmem-provider.h
12265
12266 NXP FSPI DRIVER
12267 M:      Ashish Kumar <ashish.kumar@nxp.com>
12268 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
12269 L:      linux-spi@vger.kernel.org
12270 S:      Maintained
12271 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12272 F:      drivers/spi/spi-nxp-fspi.c
12273
12274 NXP FXAS21002C DRIVER
12275 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12276 L:      linux-iio@vger.kernel.org
12277 S:      Maintained
12278 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
12279 F:      drivers/iio/gyro/fxas21002c.h
12280 F:      drivers/iio/gyro/fxas21002c_core.c
12281 F:      drivers/iio/gyro/fxas21002c_i2c.c
12282 F:      drivers/iio/gyro/fxas21002c_spi.c
12283
12284 NXP SGTL5000 DRIVER
12285 M:      Fabio Estevam <festevam@gmail.com>
12286 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12287 S:      Maintained
12288 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
12289 F:      sound/soc/codecs/sgtl5000*
12290
12291 NXP SJA1105 ETHERNET SWITCH DRIVER
12292 M:      Vladimir Oltean <olteanv@gmail.com>
12293 L:      linux-kernel@vger.kernel.org
12294 S:      Maintained
12295 F:      drivers/net/dsa/sja1105
12296
12297 NXP TDA998X DRM DRIVER
12298 M:      Russell King <linux@armlinux.org.uk>
12299 S:      Maintained
12300 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12301 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12302 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12303 F:      include/drm/i2c/tda998x.h
12304 F:      include/dt-bindings/display/tda998x.h
12305 K:      "nxp,tda998x"
12306
12307 NXP TFA9879 DRIVER
12308 M:      Peter Rosin <peda@axentia.se>
12309 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12310 S:      Maintained
12311 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12312 F:      sound/soc/codecs/tfa9879*
12313
12314 NXP-NCI NFC DRIVER
12315 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
12316 R:      Charles Gorand <charles.gorand@effinnov.com>
12317 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12318 S:      Supported
12319 F:      drivers/nfc/nxp-nci
12320
12321 OBJAGG
12322 M:      Jiri Pirko <jiri@mellanox.com>
12323 L:      netdev@vger.kernel.org
12324 S:      Supported
12325 F:      include/linux/objagg.h
12326 F:      lib/objagg.c
12327 F:      lib/test_objagg.c
12328
12329 OBJTOOL
12330 M:      Josh Poimboeuf <jpoimboe@redhat.com>
12331 M:      Peter Zijlstra <peterz@infradead.org>
12332 S:      Supported
12333 F:      tools/objtool/
12334
12335 OCELOT ETHERNET SWITCH DRIVER
12336 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
12337 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
12338 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
12339 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12340 L:      netdev@vger.kernel.org
12341 S:      Supported
12342 F:      drivers/net/dsa/ocelot/*
12343 F:      drivers/net/ethernet/mscc/
12344 F:      include/soc/mscc/ocelot*
12345 F:      net/dsa/tag_ocelot.c
12346
12347 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12348 M:      Frederic Barrat <fbarrat@linux.ibm.com>
12349 M:      Andrew Donnellan <ajd@linux.ibm.com>
12350 L:      linuxppc-dev@lists.ozlabs.org
12351 S:      Supported
12352 F:      Documentation/userspace-api/accelerators/ocxl.rst
12353 F:      arch/powerpc/include/asm/pnv-ocxl.h
12354 F:      arch/powerpc/platforms/powernv/ocxl.c
12355 F:      drivers/misc/ocxl/
12356 F:      include/misc/ocxl*
12357 F:      include/uapi/misc/ocxl.h
12358
12359 OMAP AUDIO SUPPORT
12360 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
12361 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
12362 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12363 L:      linux-omap@vger.kernel.org
12364 S:      Maintained
12365 F:      sound/soc/ti/n810.c
12366 F:      sound/soc/ti/omap*
12367 F:      sound/soc/ti/rx51.c
12368 F:      sound/soc/ti/sdma-pcm.*
12369
12370 OMAP CLOCK FRAMEWORK SUPPORT
12371 M:      Paul Walmsley <paul@pwsan.com>
12372 L:      linux-omap@vger.kernel.org
12373 S:      Maintained
12374 F:      arch/arm/*omap*/*clock*
12375
12376 OMAP DEVICE TREE SUPPORT
12377 M:      Benoît Cousson <bcousson@baylibre.com>
12378 M:      Tony Lindgren <tony@atomide.com>
12379 L:      linux-omap@vger.kernel.org
12380 L:      devicetree@vger.kernel.org
12381 S:      Maintained
12382 F:      arch/arm/boot/dts/*am3*
12383 F:      arch/arm/boot/dts/*am4*
12384 F:      arch/arm/boot/dts/*am5*
12385 F:      arch/arm/boot/dts/*dra7*
12386 F:      arch/arm/boot/dts/*omap*
12387 F:      arch/arm/boot/dts/logicpd-som-lv*
12388 F:      arch/arm/boot/dts/logicpd-torpedo*
12389
12390 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12391 L:      linux-omap@vger.kernel.org
12392 L:      linux-fbdev@vger.kernel.org
12393 S:      Orphan
12394 F:      Documentation/arm/omap/dss.rst
12395 F:      drivers/video/fbdev/omap2/
12396
12397 OMAP FRAMEBUFFER SUPPORT
12398 L:      linux-fbdev@vger.kernel.org
12399 L:      linux-omap@vger.kernel.org
12400 S:      Orphan
12401 F:      drivers/video/fbdev/omap/
12402
12403 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12404 M:      Roger Quadros <rogerq@ti.com>
12405 M:      Tony Lindgren <tony@atomide.com>
12406 L:      linux-omap@vger.kernel.org
12407 S:      Maintained
12408 F:      arch/arm/mach-omap2/*gpmc*
12409 F:      drivers/memory/omap-gpmc.c
12410
12411 OMAP GPIO DRIVER
12412 M:      Grygorii Strashko <grygorii.strashko@ti.com>
12413 M:      Santosh Shilimkar <ssantosh@kernel.org>
12414 M:      Kevin Hilman <khilman@kernel.org>
12415 L:      linux-omap@vger.kernel.org
12416 S:      Maintained
12417 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12418 F:      drivers/gpio/gpio-omap.c
12419
12420 OMAP HARDWARE SPINLOCK SUPPORT
12421 M:      Ohad Ben-Cohen <ohad@wizery.com>
12422 L:      linux-omap@vger.kernel.org
12423 S:      Maintained
12424 F:      drivers/hwspinlock/omap_hwspinlock.c
12425
12426 OMAP HS MMC SUPPORT
12427 L:      linux-mmc@vger.kernel.org
12428 L:      linux-omap@vger.kernel.org
12429 S:      Orphan
12430 F:      drivers/mmc/host/omap_hsmmc.c
12431
12432 OMAP HWMOD DATA
12433 M:      Paul Walmsley <paul@pwsan.com>
12434 L:      linux-omap@vger.kernel.org
12435 S:      Maintained
12436 F:      arch/arm/mach-omap2/omap_hwmod*data*
12437
12438 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12439 M:      Benoît Cousson <bcousson@baylibre.com>
12440 L:      linux-omap@vger.kernel.org
12441 S:      Maintained
12442 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12443
12444 OMAP HWMOD SUPPORT
12445 M:      Benoît Cousson <bcousson@baylibre.com>
12446 M:      Paul Walmsley <paul@pwsan.com>
12447 L:      linux-omap@vger.kernel.org
12448 S:      Maintained
12449 F:      arch/arm/mach-omap2/omap_hwmod.*
12450
12451 OMAP I2C DRIVER
12452 M:      Vignesh R <vigneshr@ti.com>
12453 L:      linux-omap@vger.kernel.org
12454 L:      linux-i2c@vger.kernel.org
12455 S:      Maintained
12456 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12457 F:      drivers/i2c/busses/i2c-omap.c
12458
12459 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12460 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12461 L:      linux-media@vger.kernel.org
12462 S:      Maintained
12463 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12464 F:      drivers/media/platform/omap3isp/
12465 F:      drivers/staging/media/omap4iss/
12466
12467 OMAP MMC SUPPORT
12468 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12469 L:      linux-omap@vger.kernel.org
12470 S:      Odd Fixes
12471 F:      drivers/mmc/host/omap.c
12472
12473 OMAP POWER MANAGEMENT SUPPORT
12474 M:      Kevin Hilman <khilman@kernel.org>
12475 L:      linux-omap@vger.kernel.org
12476 S:      Maintained
12477 F:      arch/arm/*omap*/*pm*
12478 F:      drivers/cpufreq/omap-cpufreq.c
12479
12480 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12481 M:      Rajendra Nayak <rnayak@codeaurora.org>
12482 M:      Paul Walmsley <paul@pwsan.com>
12483 L:      linux-omap@vger.kernel.org
12484 S:      Maintained
12485 F:      arch/arm/mach-omap2/prm*
12486
12487 OMAP RANDOM NUMBER GENERATOR SUPPORT
12488 M:      Deepak Saxena <dsaxena@plexity.net>
12489 S:      Maintained
12490 F:      drivers/char/hw_random/omap-rng.c
12491
12492 OMAP USB SUPPORT
12493 L:      linux-usb@vger.kernel.org
12494 L:      linux-omap@vger.kernel.org
12495 S:      Orphan
12496 F:      arch/arm/*omap*/usb*
12497 F:      drivers/usb/*/*omap*
12498
12499 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12500 M:      Mark Jackson <mpfj@newflow.co.uk>
12501 L:      linux-omap@vger.kernel.org
12502 S:      Maintained
12503 F:      arch/arm/boot/dts/am335x-nano.dts
12504
12505 OMAP1 SUPPORT
12506 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12507 M:      Tony Lindgren <tony@atomide.com>
12508 L:      linux-omap@vger.kernel.org
12509 S:      Maintained
12510 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12511 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12512 F:      arch/arm/configs/omap1_defconfig
12513 F:      arch/arm/mach-omap1/
12514 F:      arch/arm/plat-omap/
12515 F:      drivers/i2c/busses/i2c-omap.c
12516 F:      include/linux/platform_data/ams-delta-fiq.h
12517 F:      include/linux/platform_data/i2c-omap.h
12518
12519 OMAP2+ SUPPORT
12520 M:      Tony Lindgren <tony@atomide.com>
12521 L:      linux-omap@vger.kernel.org
12522 S:      Maintained
12523 W:      http://www.muru.com/linux/omap/
12524 W:      http://linux.omap.com/
12525 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12527 F:      arch/arm/configs/omap2plus_defconfig
12528 F:      arch/arm/mach-omap2/
12529 F:      arch/arm/plat-omap/
12530 F:      drivers/bus/ti-sysc.c
12531 F:      drivers/i2c/busses/i2c-omap.c
12532 F:      drivers/irqchip/irq-omap-intc.c
12533 F:      drivers/mfd/*omap*.c
12534 F:      drivers/mfd/menelaus.c
12535 F:      drivers/mfd/palmas.c
12536 F:      drivers/mfd/tps65217.c
12537 F:      drivers/mfd/tps65218.c
12538 F:      drivers/mfd/tps65910.c
12539 F:      drivers/mfd/twl-core.[ch]
12540 F:      drivers/mfd/twl4030*.c
12541 F:      drivers/mfd/twl6030*.c
12542 F:      drivers/mfd/twl6040*.c
12543 F:      drivers/regulator/palmas-regulator*.c
12544 F:      drivers/regulator/pbias-regulator.c
12545 F:      drivers/regulator/tps65217-regulator.c
12546 F:      drivers/regulator/tps65218-regulator.c
12547 F:      drivers/regulator/tps65910-regulator.c
12548 F:      drivers/regulator/twl-regulator.c
12549 F:      drivers/regulator/twl6030-regulator.c
12550 F:      include/linux/platform_data/i2c-omap.h
12551 F:      include/linux/platform_data/ti-sysc.h
12552
12553 OMFS FILESYSTEM
12554 M:      Bob Copeland <me@bobcopeland.com>
12555 L:      linux-karma-devel@lists.sourceforge.net
12556 S:      Maintained
12557 F:      Documentation/filesystems/omfs.rst
12558 F:      fs/omfs/
12559
12560 OMNIKEY CARDMAN 4000 DRIVER
12561 M:      Harald Welte <laforge@gnumonks.org>
12562 S:      Maintained
12563 F:      drivers/char/pcmcia/cm4000_cs.c
12564 F:      include/linux/cm4000_cs.h
12565 F:      include/uapi/linux/cm4000_cs.h
12566
12567 OMNIKEY CARDMAN 4040 DRIVER
12568 M:      Harald Welte <laforge@gnumonks.org>
12569 S:      Maintained
12570 F:      drivers/char/pcmcia/cm4040_cs.*
12571
12572 OMNIVISION OV13858 SENSOR DRIVER
12573 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12574 L:      linux-media@vger.kernel.org
12575 S:      Maintained
12576 T:      git git://linuxtv.org/media_tree.git
12577 F:      drivers/media/i2c/ov13858.c
12578
12579 OMNIVISION OV2680 SENSOR DRIVER
12580 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12581 L:      linux-media@vger.kernel.org
12582 S:      Maintained
12583 T:      git git://linuxtv.org/media_tree.git
12584 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
12585 F:      drivers/media/i2c/ov2680.c
12586
12587 OMNIVISION OV2685 SENSOR DRIVER
12588 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12589 L:      linux-media@vger.kernel.org
12590 S:      Maintained
12591 T:      git git://linuxtv.org/media_tree.git
12592 F:      drivers/media/i2c/ov2685.c
12593
12594 OMNIVISION OV2740 SENSOR DRIVER
12595 M:      Tianshu Qiu <tian.shu.qiua@intel.com>
12596 R:      Shawn Tu <shawnx.tu@intel.com>
12597 R:      Bingbu Cao <bingbu.cao@intel.com>
12598 L:      linux-media@vger.kernel.org
12599 S:      Maintained
12600 T:      git git://linuxtv.org/media_tree.git
12601 F:      drivers/media/i2c/ov2740.c
12602
12603 OMNIVISION OV5640 SENSOR DRIVER
12604 M:      Steve Longerbeam <slongerbeam@gmail.com>
12605 L:      linux-media@vger.kernel.org
12606 S:      Maintained
12607 T:      git git://linuxtv.org/media_tree.git
12608 F:      drivers/media/i2c/ov5640.c
12609
12610 OMNIVISION OV5647 SENSOR DRIVER
12611 M:      Luis Oliveira <lolivei@synopsys.com>
12612 L:      linux-media@vger.kernel.org
12613 S:      Maintained
12614 T:      git git://linuxtv.org/media_tree.git
12615 F:      drivers/media/i2c/ov5647.c
12616
12617 OMNIVISION OV5670 SENSOR DRIVER
12618 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
12619 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
12620 L:      linux-media@vger.kernel.org
12621 S:      Maintained
12622 T:      git git://linuxtv.org/media_tree.git
12623 F:      drivers/media/i2c/ov5670.c
12624
12625 OMNIVISION OV5675 SENSOR DRIVER
12626 M:      Shawn Tu <shawnx.tu@intel.com>
12627 L:      linux-media@vger.kernel.org
12628 S:      Maintained
12629 T:      git git://linuxtv.org/media_tree.git
12630 F:      drivers/media/i2c/ov5675.c
12631
12632 OMNIVISION OV5695 SENSOR DRIVER
12633 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12634 L:      linux-media@vger.kernel.org
12635 S:      Maintained
12636 T:      git git://linuxtv.org/media_tree.git
12637 F:      drivers/media/i2c/ov5695.c
12638
12639 OMNIVISION OV7670 SENSOR DRIVER
12640 M:      Jonathan Corbet <corbet@lwn.net>
12641 L:      linux-media@vger.kernel.org
12642 S:      Maintained
12643 T:      git git://linuxtv.org/media_tree.git
12644 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
12645 F:      drivers/media/i2c/ov7670.c
12646
12647 OMNIVISION OV772x SENSOR DRIVER
12648 M:      Jacopo Mondi <jacopo@jmondi.org>
12649 L:      linux-media@vger.kernel.org
12650 S:      Odd fixes
12651 T:      git git://linuxtv.org/media_tree.git
12652 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
12653 F:      drivers/media/i2c/ov772x.c
12654 F:      include/media/i2c/ov772x.h
12655
12656 OMNIVISION OV7740 SENSOR DRIVER
12657 M:      Wenyou Yang <wenyou.yang@microchip.com>
12658 L:      linux-media@vger.kernel.org
12659 S:      Maintained
12660 T:      git git://linuxtv.org/media_tree.git
12661 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
12662 F:      drivers/media/i2c/ov7740.c
12663
12664 OMNIVISION OV8856 SENSOR DRIVER
12665 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
12666 L:      linux-media@vger.kernel.org
12667 S:      Maintained
12668 T:      git git://linuxtv.org/media_tree.git
12669 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
12670 F:      drivers/media/i2c/ov8856.c
12671
12672 OMNIVISION OV9640 SENSOR DRIVER
12673 M:      Petr Cvek <petrcvekcz@gmail.com>
12674 L:      linux-media@vger.kernel.org
12675 S:      Maintained
12676 F:      drivers/media/i2c/ov9640.*
12677
12678 OMNIVISION OV9650 SENSOR DRIVER
12679 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12680 R:      Akinobu Mita <akinobu.mita@gmail.com>
12681 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12682 L:      linux-media@vger.kernel.org
12683 S:      Maintained
12684 T:      git git://linuxtv.org/media_tree.git
12685 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
12686 F:      drivers/media/i2c/ov9650.c
12687
12688 ONENAND FLASH DRIVER
12689 M:      Kyungmin Park <kyungmin.park@samsung.com>
12690 L:      linux-mtd@lists.infradead.org
12691 S:      Maintained
12692 F:      drivers/mtd/nand/onenand/
12693 F:      include/linux/mtd/onenand*.h
12694
12695 ONION OMEGA2+ BOARD
12696 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
12697 L:      linux-mips@vger.kernel.org
12698 S:      Maintained
12699 F:      arch/mips/boot/dts/ralink/omega2p.dts
12700
12701 OP-TEE DRIVER
12702 M:      Jens Wiklander <jens.wiklander@linaro.org>
12703 L:      op-tee@lists.trustedfirmware.org
12704 S:      Maintained
12705 F:      drivers/tee/optee/
12706
12707 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12708 M:      Sumit Garg <sumit.garg@linaro.org>
12709 L:      op-tee@lists.trustedfirmware.org
12710 S:      Maintained
12711 F:      drivers/char/hw_random/optee-rng.c
12712
12713 OPA-VNIC DRIVER
12714 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
12715 M:      Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
12716 L:      linux-rdma@vger.kernel.org
12717 S:      Supported
12718 F:      drivers/infiniband/ulp/opa_vnic
12719
12720 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12721 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
12722 M:      Frank Rowand <frowand.list@gmail.com>
12723 L:      devicetree@vger.kernel.org
12724 S:      Maintained
12725 F:      Documentation/devicetree/dynamic-resolution-notes.rst
12726 F:      Documentation/devicetree/overlay-notes.rst
12727 F:      drivers/of/overlay.c
12728 F:      drivers/of/resolver.c
12729 K:      of_overlay_notifier_
12730
12731 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12732 M:      Rob Herring <robh+dt@kernel.org>
12733 M:      Frank Rowand <frowand.list@gmail.com>
12734 L:      devicetree@vger.kernel.org
12735 S:      Maintained
12736 W:      http://www.devicetree.org/
12737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12738 F:      Documentation/ABI/testing/sysfs-firmware-ofw
12739 F:      drivers/of/
12740 F:      include/linux/of*.h
12741 F:      scripts/dtc/
12742
12743 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
12744 M:      Rob Herring <robh+dt@kernel.org>
12745 L:      devicetree@vger.kernel.org
12746 S:      Maintained
12747 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
12748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12749 F:      Documentation/devicetree/
12750 F:      arch/*/boot/dts/
12751 F:      include/dt-bindings/
12752
12753 OPENCORES I2C BUS DRIVER
12754 M:      Peter Korsgaard <peter@korsgaard.com>
12755 M:      Andrew Lunn <andrew@lunn.ch>
12756 L:      linux-i2c@vger.kernel.org
12757 S:      Maintained
12758 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
12759 F:      Documentation/i2c/busses/i2c-ocores.rst
12760 F:      drivers/i2c/busses/i2c-ocores.c
12761 F:      include/linux/platform_data/i2c-ocores.h
12762
12763 OPENRISC ARCHITECTURE
12764 M:      Jonas Bonn <jonas@southpole.se>
12765 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
12766 M:      Stafford Horne <shorne@gmail.com>
12767 L:      openrisc@lists.librecores.org
12768 S:      Maintained
12769 W:      http://openrisc.io
12770 T:      git git://github.com/openrisc/linux.git
12771 F:      Documentation/devicetree/bindings/openrisc/
12772 F:      Documentation/openrisc/
12773 F:      arch/openrisc/
12774 F:      drivers/irqchip/irq-ompic.c
12775 F:      drivers/irqchip/irq-or1k-*
12776
12777 OPENVSWITCH
12778 M:      Pravin B Shelar <pshelar@ovn.org>
12779 L:      netdev@vger.kernel.org
12780 L:      dev@openvswitch.org
12781 S:      Maintained
12782 W:      http://openvswitch.org
12783 F:      include/uapi/linux/openvswitch.h
12784 F:      net/openvswitch/
12785
12786 OPERATING PERFORMANCE POINTS (OPP)
12787 M:      Viresh Kumar <vireshk@kernel.org>
12788 M:      Nishanth Menon <nm@ti.com>
12789 M:      Stephen Boyd <sboyd@kernel.org>
12790 L:      linux-pm@vger.kernel.org
12791 S:      Maintained
12792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
12793 F:      Documentation/devicetree/bindings/opp/
12794 F:      Documentation/power/opp.rst
12795 F:      drivers/opp/
12796 F:      include/linux/pm_opp.h
12797
12798 OPL4 DRIVER
12799 M:      Clemens Ladisch <clemens@ladisch.de>
12800 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12801 S:      Maintained
12802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12803 F:      sound/drivers/opl4/
12804
12805 OPROFILE
12806 M:      Robert Richter <rric@kernel.org>
12807 L:      oprofile-list@lists.sf.net
12808 S:      Maintained
12809 F:      arch/*/include/asm/oprofile*.h
12810 F:      arch/*/oprofile/
12811 F:      drivers/oprofile/
12812 F:      include/linux/oprofile.h
12813
12814 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
12815 M:      Mark Fasheh <mark@fasheh.com>
12816 M:      Joel Becker <jlbec@evilplan.org>
12817 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
12818 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
12819 S:      Supported
12820 W:      http://ocfs2.wiki.kernel.org
12821 F:      Documentation/filesystems/dlmfs.rst
12822 F:      Documentation/filesystems/ocfs2.rst
12823 F:      fs/ocfs2/
12824
12825 ORANGEFS FILESYSTEM
12826 M:      Mike Marshall <hubcap@omnibond.com>
12827 R:      Martin Brandenburg <martin@omnibond.com>
12828 L:      devel@lists.orangefs.org
12829 S:      Supported
12830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
12831 F:      Documentation/filesystems/orangefs.rst
12832 F:      fs/orangefs/
12833
12834 ORINOCO DRIVER
12835 L:      linux-wireless@vger.kernel.org
12836 S:      Orphan
12837 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
12838 W:      http://www.nongnu.org/orinoco/
12839 F:      drivers/net/wireless/intersil/orinoco/
12840
12841 OV2659 OMNIVISION SENSOR DRIVER
12842 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12843 L:      linux-media@vger.kernel.org
12844 S:      Maintained
12845 W:      https://linuxtv.org
12846 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12847 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12848 F:      drivers/media/i2c/ov2659.c
12849 F:      include/media/i2c/ov2659.h
12850
12851 OVERLAY FILESYSTEM
12852 M:      Miklos Szeredi <miklos@szeredi.hu>
12853 L:      linux-unionfs@vger.kernel.org
12854 S:      Supported
12855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
12856 F:      Documentation/filesystems/overlayfs.rst
12857 F:      fs/overlayfs/
12858
12859 P54 WIRELESS DRIVER
12860 M:      Christian Lamparter <chunkeey@googlemail.com>
12861 L:      linux-wireless@vger.kernel.org
12862 S:      Maintained
12863 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
12864 F:      drivers/net/wireless/intersil/p54/
12865
12866 PACKING
12867 M:      Vladimir Oltean <olteanv@gmail.com>
12868 L:      netdev@vger.kernel.org
12869 S:      Supported
12870 F:      Documentation/core-api/packing.rst
12871 F:      include/linux/packing.h
12872 F:      lib/packing.c
12873
12874 PADATA PARALLEL EXECUTION MECHANISM
12875 M:      Steffen Klassert <steffen.klassert@secunet.com>
12876 L:      linux-crypto@vger.kernel.org
12877 S:      Maintained
12878 F:      Documentation/core-api/padata.rst
12879 F:      include/linux/padata.h
12880 F:      kernel/padata.c
12881
12882 PAGE POOL
12883 M:      Jesper Dangaard Brouer <hawk@kernel.org>
12884 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
12885 L:      netdev@vger.kernel.org
12886 S:      Supported
12887 F:      include/net/page_pool.h
12888 F:      net/core/page_pool.c
12889
12890 PANASONIC LAPTOP ACPI EXTRAS DRIVER
12891 M:      Harald Welte <laforge@gnumonks.org>
12892 L:      platform-driver-x86@vger.kernel.org
12893 S:      Maintained
12894 F:      drivers/platform/x86/panasonic-laptop.c
12895
12896 PARALLAX PING IIO SENSOR DRIVER
12897 M:      Andreas Klinger <ak@it-klinger.de>
12898 L:      linux-iio@vger.kernel.org
12899 S:      Maintained
12900 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
12901 F:      drivers/iio/proximity/ping.c
12902
12903 PARALLEL LCD/KEYPAD PANEL DRIVER
12904 M:      Willy Tarreau <willy@haproxy.com>
12905 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
12906 S:      Odd Fixes
12907 F:      Documentation/admin-guide/lcd-panel-cgram.rst
12908 F:      drivers/auxdisplay/panel.c
12909
12910 PARALLEL PORT SUBSYSTEM
12911 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12912 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12913 L:      linux-parport@lists.infradead.org (subscribers-only)
12914 S:      Maintained
12915 F:      Documentation/driver-api/parport*.rst
12916 F:      drivers/char/ppdev.c
12917 F:      drivers/parport/
12918 F:      include/linux/parport*.h
12919 F:      include/uapi/linux/ppdev.h
12920
12921 PARAVIRT_OPS INTERFACE
12922 M:      Juergen Gross <jgross@suse.com>
12923 M:      Deep Shah <sdeep@vmware.com>
12924 M:      "VMware, Inc." <pv-drivers@vmware.com>
12925 L:      virtualization@lists.linux-foundation.org
12926 S:      Supported
12927 F:      Documentation/virt/paravirt_ops.rst
12928 F:      arch/*/include/asm/paravirt*.h
12929 F:      arch/*/kernel/paravirt*
12930 F:      include/linux/hypervisor.h
12931
12932 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
12933 M:      Tim Waugh <tim@cyberelk.net>
12934 L:      linux-parport@lists.infradead.org (subscribers-only)
12935 S:      Maintained
12936 F:      Documentation/admin-guide/blockdev/paride.rst
12937 F:      drivers/block/paride/
12938
12939 PARISC ARCHITECTURE
12940 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
12941 M:      Helge Deller <deller@gmx.de>
12942 L:      linux-parisc@vger.kernel.org
12943 S:      Maintained
12944 W:      https://parisc.wiki.kernel.org
12945 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
12946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
12947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
12948 F:      Documentation/parisc/
12949 F:      arch/parisc/
12950 F:      drivers/char/agp/parisc-agp.c
12951 F:      drivers/input/misc/hp_sdc_rtc.c
12952 F:      drivers/input/serio/gscps2.c
12953 F:      drivers/input/serio/hp_sdc*
12954 F:      drivers/parisc/
12955 F:      drivers/parport/parport_gsc.*
12956 F:      drivers/tty/serial/8250/8250_gsc.c
12957 F:      drivers/video/console/sti*
12958 F:      drivers/video/fbdev/sti*
12959 F:      drivers/video/logo/logo_parisc*
12960 F:      include/linux/hp_sdc.h
12961
12962 PARMAN
12963 M:      Jiri Pirko <jiri@mellanox.com>
12964 L:      netdev@vger.kernel.org
12965 S:      Supported
12966 F:      include/linux/parman.h
12967 F:      lib/parman.c
12968 F:      lib/test_parman.c
12969
12970 PC ENGINES APU BOARD DRIVER
12971 M:      Enrico Weigelt, metux IT consult <info@metux.net>
12972 S:      Maintained
12973 F:      drivers/platform/x86/pcengines-apuv2.c
12974
12975 PC87360 HARDWARE MONITORING DRIVER
12976 M:      Jim Cromie <jim.cromie@gmail.com>
12977 L:      linux-hwmon@vger.kernel.org
12978 S:      Maintained
12979 F:      Documentation/hwmon/pc87360.rst
12980 F:      drivers/hwmon/pc87360.c
12981
12982 PC8736x GPIO DRIVER
12983 M:      Jim Cromie <jim.cromie@gmail.com>
12984 S:      Maintained
12985 F:      drivers/char/pc8736x_gpio.c
12986
12987 PC87427 HARDWARE MONITORING DRIVER
12988 M:      Jean Delvare <jdelvare@suse.com>
12989 L:      linux-hwmon@vger.kernel.org
12990 S:      Maintained
12991 F:      Documentation/hwmon/pc87427.rst
12992 F:      drivers/hwmon/pc87427.c
12993
12994 PCA9532 LED DRIVER
12995 M:      Riku Voipio <riku.voipio@iki.fi>
12996 S:      Maintained
12997 F:      drivers/leds/leds-pca9532.c
12998 F:      include/linux/leds-pca9532.h
12999
13000 PCA9541 I2C BUS MASTER SELECTOR DRIVER
13001 M:      Guenter Roeck <linux@roeck-us.net>
13002 L:      linux-i2c@vger.kernel.org
13003 S:      Maintained
13004 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
13005
13006 PCDP - PRIMARY CONSOLE AND DEBUG PORT
13007 M:      Khalid Aziz <khalid@gonehiking.org>
13008 S:      Maintained
13009 F:      drivers/firmware/pcdp.*
13010
13011 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
13012 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13013 L:      linux-pci@vger.kernel.org
13014 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13015 S:      Maintained
13016 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
13017 F:      drivers/pci/controller/pci-aardvark.c
13018
13019 PCI DRIVER FOR ALTERA PCIE IP
13020 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13021 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13022 L:      linux-pci@vger.kernel.org
13023 S:      Supported
13024 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
13025 F:      drivers/pci/controller/pcie-altera.c
13026
13027 PCI DRIVER FOR APPLIEDMICRO XGENE
13028 M:      Toan Le <toan@os.amperecomputing.com>
13029 L:      linux-pci@vger.kernel.org
13030 L:      linux-arm-kernel@lists.infradead.org
13031 S:      Maintained
13032 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
13033 F:      drivers/pci/controller/pci-xgene.c
13034
13035 PCI DRIVER FOR ARM VERSATILE PLATFORM
13036 M:      Rob Herring <robh@kernel.org>
13037 L:      linux-pci@vger.kernel.org
13038 L:      linux-arm-kernel@lists.infradead.org
13039 S:      Maintained
13040 F:      Documentation/devicetree/bindings/pci/versatile.yaml
13041 F:      drivers/pci/controller/pci-versatile.c
13042
13043 PCI DRIVER FOR ARMADA 8K
13044 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13045 L:      linux-pci@vger.kernel.org
13046 L:      linux-arm-kernel@lists.infradead.org
13047 S:      Maintained
13048 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
13049 F:      drivers/pci/controller/dwc/pcie-armada8k.c
13050
13051 PCI DRIVER FOR CADENCE PCIE IP
13052 M:      Tom Joseph <tjoseph@cadence.com>
13053 L:      linux-pci@vger.kernel.org
13054 S:      Maintained
13055 F:      Documentation/devicetree/bindings/pci/cdns,*
13056 F:      drivers/pci/controller/cadence/
13057
13058 PCI DRIVER FOR FREESCALE LAYERSCAPE
13059 M:      Minghuan Lian <minghuan.Lian@nxp.com>
13060 M:      Mingkai Hu <mingkai.hu@nxp.com>
13061 M:      Roy Zang <roy.zang@nxp.com>
13062 L:      linuxppc-dev@lists.ozlabs.org
13063 L:      linux-pci@vger.kernel.org
13064 L:      linux-arm-kernel@lists.infradead.org
13065 S:      Maintained
13066 F:      drivers/pci/controller/dwc/*layerscape*
13067
13068 PCI DRIVER FOR GENERIC OF HOSTS
13069 M:      Will Deacon <will@kernel.org>
13070 L:      linux-pci@vger.kernel.org
13071 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13072 S:      Maintained
13073 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13074 F:      drivers/pci/controller/pci-host-common.c
13075 F:      drivers/pci/controller/pci-host-generic.c
13076
13077 PCI DRIVER FOR IMX6
13078 M:      Richard Zhu <hongxing.zhu@nxp.com>
13079 M:      Lucas Stach <l.stach@pengutronix.de>
13080 L:      linux-pci@vger.kernel.org
13081 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13082 S:      Maintained
13083 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
13084 F:      drivers/pci/controller/dwc/*imx6*
13085
13086 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13087 M:      Jonathan Derrick <jonathan.derrick@intel.com>
13088 L:      linux-pci@vger.kernel.org
13089 S:      Supported
13090 F:      drivers/pci/controller/vmd.c
13091
13092 PCI DRIVER FOR MICROSEMI SWITCHTEC
13093 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
13094 M:      Logan Gunthorpe <logang@deltatee.com>
13095 L:      linux-pci@vger.kernel.org
13096 S:      Maintained
13097 F:      Documentation/ABI/testing/sysfs-class-switchtec
13098 F:      Documentation/driver-api/switchtec.rst
13099 F:      drivers/ntb/hw/mscc/
13100 F:      drivers/pci/switch/switchtec*
13101 F:      include/linux/switchtec.h
13102 F:      include/uapi/linux/switchtec_ioctl.h
13103
13104 PCI DRIVER FOR MOBIVEIL PCIE IP
13105 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
13106 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13107 L:      linux-pci@vger.kernel.org
13108 S:      Supported
13109 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
13110 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
13111
13112 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
13113 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13114 M:      Jason Cooper <jason@lakedaemon.net>
13115 L:      linux-pci@vger.kernel.org
13116 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13117 S:      Maintained
13118 F:      drivers/pci/controller/*mvebu*
13119
13120 PCI DRIVER FOR NVIDIA TEGRA
13121 M:      Thierry Reding <thierry.reding@gmail.com>
13122 L:      linux-tegra@vger.kernel.org
13123 L:      linux-pci@vger.kernel.org
13124 S:      Supported
13125 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
13126 F:      drivers/pci/controller/pci-tegra.c
13127
13128 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13129 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13130 L:      linux-pci@vger.kernel.org
13131 L:      linux-arm-kernel@lists.infradead.org
13132 S:      Maintained
13133 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13134 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
13135
13136 PCI DRIVER FOR RENESAS R-CAR
13137 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
13138 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13139 L:      linux-pci@vger.kernel.org
13140 L:      linux-renesas-soc@vger.kernel.org
13141 S:      Maintained
13142 F:      Documentation/devicetree/bindings/pci/*rcar*
13143 F:      drivers/pci/controller/*rcar*
13144
13145 PCI DRIVER FOR SAMSUNG EXYNOS
13146 M:      Jingoo Han <jingoohan1@gmail.com>
13147 L:      linux-pci@vger.kernel.org
13148 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13149 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13150 S:      Maintained
13151 F:      drivers/pci/controller/dwc/pci-exynos.c
13152
13153 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13154 M:      Jingoo Han <jingoohan1@gmail.com>
13155 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
13156 L:      linux-pci@vger.kernel.org
13157 S:      Maintained
13158 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
13159 F:      drivers/pci/controller/dwc/*designware*
13160
13161 PCI DRIVER FOR TI DRA7XX
13162 M:      Kishon Vijay Abraham I <kishon@ti.com>
13163 L:      linux-omap@vger.kernel.org
13164 L:      linux-pci@vger.kernel.org
13165 S:      Supported
13166 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
13167 F:      drivers/pci/controller/dwc/pci-dra7xx.c
13168
13169 PCI DRIVER FOR TI KEYSTONE
13170 M:      Murali Karicheri <m-karicheri2@ti.com>
13171 L:      linux-pci@vger.kernel.org
13172 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13173 S:      Maintained
13174 F:      drivers/pci/controller/dwc/pci-keystone.c
13175
13176 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13177 M:      Linus Walleij <linus.walleij@linaro.org>
13178 L:      linux-pci@vger.kernel.org
13179 S:      Maintained
13180 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13181 F:      drivers/pci/controller/pci-v3-semi.c
13182
13183 PCI ENDPOINT SUBSYSTEM
13184 M:      Kishon Vijay Abraham I <kishon@ti.com>
13185 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13186 L:      linux-pci@vger.kernel.org
13187 S:      Supported
13188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13189 F:      drivers/misc/pci_endpoint_test.c
13190 F:      drivers/pci/endpoint/
13191 F:      tools/pci/
13192
13193 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13194 M:      Russell Currey <ruscur@russell.cc>
13195 M:      Sam Bobroff <sbobroff@linux.ibm.com>
13196 M:      Oliver O'Halloran <oohall@gmail.com>
13197 L:      linuxppc-dev@lists.ozlabs.org
13198 S:      Supported
13199 F:      Documentation/PCI/pci-error-recovery.rst
13200 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
13201 F:      arch/powerpc/include/*/eeh*.h
13202 F:      arch/powerpc/kernel/eeh*.c
13203 F:      arch/powerpc/platforms/*/eeh*.c
13204 F:      drivers/pci/pcie/aer.c
13205 F:      drivers/pci/pcie/dpc.c
13206 F:      drivers/pci/pcie/err.c
13207
13208 PCI ERROR RECOVERY
13209 M:      Linas Vepstas <linasvepstas@gmail.com>
13210 L:      linux-pci@vger.kernel.org
13211 S:      Supported
13212 F:      Documentation/PCI/pci-error-recovery.rst
13213
13214 PCI MSI DRIVER FOR ALTERA MSI IP
13215 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13216 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13217 L:      linux-pci@vger.kernel.org
13218 S:      Supported
13219 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13220 F:      drivers/pci/controller/pcie-altera-msi.c
13221
13222 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13223 M:      Toan Le <toan@os.amperecomputing.com>
13224 L:      linux-pci@vger.kernel.org
13225 L:      linux-arm-kernel@lists.infradead.org
13226 S:      Maintained
13227 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13228 F:      drivers/pci/controller/pci-xgene-msi.c
13229
13230 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13231 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13232 R:      Rob Herring <robh@kernel.org>
13233 L:      linux-pci@vger.kernel.org
13234 S:      Supported
13235 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13237 F:      drivers/pci/controller/
13238
13239 PCI SUBSYSTEM
13240 M:      Bjorn Helgaas <bhelgaas@google.com>
13241 L:      linux-pci@vger.kernel.org
13242 S:      Supported
13243 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13245 F:      Documentation/PCI/
13246 F:      Documentation/devicetree/bindings/pci/
13247 F:      arch/x86/kernel/early-quirks.c
13248 F:      arch/x86/kernel/quirks.c
13249 F:      arch/x86/pci/
13250 F:      drivers/acpi/pci*
13251 F:      drivers/pci/
13252 F:      include/asm-generic/pci*
13253 F:      include/linux/of_pci.h
13254 F:      include/linux/pci*
13255 F:      include/uapi/linux/pci*
13256 F:      lib/pci*
13257
13258 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13259 M:      Jonathan Chocron <jonnyc@amazon.com>
13260 L:      linux-pci@vger.kernel.org
13261 S:      Maintained
13262 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13263 F:      drivers/pci/controller/dwc/pcie-al.c
13264
13265 PCIE DRIVER FOR AMLOGIC MESON
13266 M:      Yue Wang <yue.wang@Amlogic.com>
13267 L:      linux-pci@vger.kernel.org
13268 L:      linux-amlogic@lists.infradead.org
13269 S:      Maintained
13270 F:      drivers/pci/controller/dwc/pci-meson.c
13271
13272 PCIE DRIVER FOR AXIS ARTPEC
13273 M:      Jesper Nilsson <jesper.nilsson@axis.com>
13274 L:      linux-arm-kernel@axis.com
13275 L:      linux-pci@vger.kernel.org
13276 S:      Maintained
13277 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13278 F:      drivers/pci/controller/dwc/*artpec*
13279
13280 PCIE DRIVER FOR CAVIUM THUNDERX
13281 M:      Robert Richter <rrichter@marvell.com>
13282 L:      linux-pci@vger.kernel.org
13283 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13284 S:      Supported
13285 F:      drivers/pci/controller/pci-thunder-*
13286
13287 PCIE DRIVER FOR HISILICON
13288 M:      Zhou Wang <wangzhou1@hisilicon.com>
13289 L:      linux-pci@vger.kernel.org
13290 S:      Maintained
13291 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13292 F:      drivers/pci/controller/dwc/pcie-hisi.c
13293
13294 PCIE DRIVER FOR HISILICON KIRIN
13295 M:      Xiaowei Song <songxiaowei@hisilicon.com>
13296 M:      Binghui Wang <wangbinghui@hisilicon.com>
13297 L:      linux-pci@vger.kernel.org
13298 S:      Maintained
13299 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13300 F:      drivers/pci/controller/dwc/pcie-kirin.c
13301
13302 PCIE DRIVER FOR HISILICON STB
13303 M:      Shawn Guo <shawn.guo@linaro.org>
13304 L:      linux-pci@vger.kernel.org
13305 S:      Maintained
13306 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13307 F:      drivers/pci/controller/dwc/pcie-histb.c
13308
13309 PCIE DRIVER FOR MEDIATEK
13310 M:      Ryder Lee <ryder.lee@mediatek.com>
13311 L:      linux-pci@vger.kernel.org
13312 L:      linux-mediatek@lists.infradead.org
13313 S:      Supported
13314 F:      Documentation/devicetree/bindings/pci/mediatek*
13315 F:      drivers/pci/controller/*mediatek*
13316
13317 PCIE DRIVER FOR QUALCOMM MSM
13318 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
13319 L:      linux-pci@vger.kernel.org
13320 L:      linux-arm-msm@vger.kernel.org
13321 S:      Maintained
13322 F:      drivers/pci/controller/dwc/*qcom*
13323
13324 PCIE DRIVER FOR ROCKCHIP
13325 M:      Shawn Lin <shawn.lin@rock-chips.com>
13326 L:      linux-pci@vger.kernel.org
13327 L:      linux-rockchip@lists.infradead.org
13328 S:      Maintained
13329 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13330 F:      drivers/pci/controller/pcie-rockchip*
13331
13332 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13333 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
13334 L:      linux-pci@vger.kernel.org
13335 S:      Maintained
13336 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
13337 F:      drivers/pci/controller/dwc/pcie-uniphier*
13338
13339 PCIE DRIVER FOR ST SPEAR13XX
13340 M:      Pratyush Anand <pratyush.anand@gmail.com>
13341 L:      linux-pci@vger.kernel.org
13342 S:      Maintained
13343 F:      drivers/pci/controller/dwc/*spear*
13344
13345 PCMCIA SUBSYSTEM
13346 M:      Dominik Brodowski <linux@dominikbrodowski.net>
13347 S:      Odd Fixes
13348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13349 F:      Documentation/pcmcia/
13350 F:      drivers/pcmcia/
13351 F:      include/pcmcia/
13352 F:      tools/pcmcia/
13353
13354 PCNET32 NETWORK DRIVER
13355 M:      Don Fry <pcnet32@frontier.com>
13356 L:      netdev@vger.kernel.org
13357 S:      Maintained
13358 F:      drivers/net/ethernet/amd/pcnet32.c
13359
13360 PCRYPT PARALLEL CRYPTO ENGINE
13361 M:      Steffen Klassert <steffen.klassert@secunet.com>
13362 L:      linux-crypto@vger.kernel.org
13363 S:      Maintained
13364 F:      crypto/pcrypt.c
13365 F:      include/crypto/pcrypt.h
13366
13367 PEAQ WMI HOTKEYS DRIVER
13368 M:      Hans de Goede <hdegoede@redhat.com>
13369 L:      platform-driver-x86@vger.kernel.org
13370 S:      Maintained
13371 F:      drivers/platform/x86/peaq-wmi.c
13372
13373 PENSANDO ETHERNET DRIVERS
13374 M:      Shannon Nelson <snelson@pensando.io>
13375 M:      Pensando Drivers <drivers@pensando.io>
13376 L:      netdev@vger.kernel.org
13377 S:      Supported
13378 F:      Documentation/networking/device_drivers/pensando/ionic.rst
13379 F:      drivers/net/ethernet/pensando/
13380
13381 PER-CPU MEMORY ALLOCATOR
13382 M:      Dennis Zhou <dennis@kernel.org>
13383 M:      Tejun Heo <tj@kernel.org>
13384 M:      Christoph Lameter <cl@linux.com>
13385 S:      Maintained
13386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13387 F:      arch/*/include/asm/percpu.h
13388 F:      include/linux/percpu*.h
13389 F:      mm/percpu*.c
13390
13391 PER-TASK DELAY ACCOUNTING
13392 M:      Balbir Singh <bsingharora@gmail.com>
13393 S:      Maintained
13394 F:      include/linux/delayacct.h
13395 F:      kernel/delayacct.c
13396
13397 PERFORMANCE EVENTS SUBSYSTEM
13398 M:      Peter Zijlstra <peterz@infradead.org>
13399 M:      Ingo Molnar <mingo@redhat.com>
13400 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
13401 R:      Mark Rutland <mark.rutland@arm.com>
13402 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
13403 R:      Jiri Olsa <jolsa@redhat.com>
13404 R:      Namhyung Kim <namhyung@kernel.org>
13405 L:      linux-kernel@vger.kernel.org
13406 S:      Supported
13407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13408 F:      arch/*/events/*
13409 F:      arch/*/events/*/*
13410 F:      arch/*/include/asm/perf_event.h
13411 F:      arch/*/kernel/*/*/perf_event*.c
13412 F:      arch/*/kernel/*/perf_event*.c
13413 F:      arch/*/kernel/perf_callchain.c
13414 F:      arch/*/kernel/perf_event*.c
13415 F:      include/linux/perf_event.h
13416 F:      include/uapi/linux/perf_event.h
13417 F:      kernel/events/*
13418 F:      tools/perf/
13419
13420 PERFORMANCE EVENTS SUBSYSTEM ARM64 PMU EVENTS
13421 R:      John Garry <john.garry@huawei.com>
13422 R:      Will Deacon <will@kernel.org>
13423 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13424 S:      Supported
13425 F:      tools/perf/pmu-events/arch/arm64/
13426
13427 PERSONALITY HANDLING
13428 M:      Christoph Hellwig <hch@infradead.org>
13429 L:      linux-abi-devel@lists.sourceforge.net
13430 S:      Maintained
13431 F:      include/linux/personality.h
13432 F:      include/uapi/linux/personality.h
13433
13434 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13435 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13436 L:      linux-input@vger.kernel.org
13437 S:      Maintained
13438 F:      Documentation/input/devices/pxrc.rst
13439 F:      drivers/input/joystick/pxrc.c
13440
13441 PHONET PROTOCOL
13442 M:      Remi Denis-Courmont <courmisch@gmail.com>
13443 S:      Supported
13444 F:      Documentation/networking/phonet.rst
13445 F:      include/linux/phonet.h
13446 F:      include/net/phonet/
13447 F:      include/uapi/linux/phonet.h
13448 F:      net/phonet/
13449
13450 PHRAM MTD DRIVER
13451 M:      Joern Engel <joern@lazybastard.org>
13452 L:      linux-mtd@lists.infradead.org
13453 S:      Maintained
13454 F:      drivers/mtd/devices/phram.c
13455
13456 PICOLCD HID DRIVER
13457 M:      Bruno Prémont <bonbons@linux-vserver.org>
13458 L:      linux-input@vger.kernel.org
13459 S:      Maintained
13460 F:      drivers/hid/hid-picolcd*
13461
13462 PICOXCELL SUPPORT
13463 M:      Jamie Iles <jamie@jamieiles.com>
13464 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13465 S:      Supported
13466 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13467 F:      arch/arm/boot/dts/picoxcell*
13468 F:      arch/arm/mach-picoxcell/
13469 F:      drivers/crypto/picoxcell*
13470
13471 PIDFD API
13472 M:      Christian Brauner <christian@brauner.io>
13473 L:      linux-kernel@vger.kernel.org
13474 S:      Maintained
13475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13476 F:      samples/pidfd/
13477 F:      tools/testing/selftests/clone3/
13478 F:      tools/testing/selftests/pid_namespace/
13479 F:      tools/testing/selftests/pidfd/
13480 K:      (?i)pidfd
13481 K:      (?i)clone3
13482 K:      \b(clone_args|kernel_clone_args)\b
13483
13484 PIN CONTROL SUBSYSTEM
13485 M:      Linus Walleij <linus.walleij@linaro.org>
13486 L:      linux-gpio@vger.kernel.org
13487 S:      Maintained
13488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13489 F:      Documentation/devicetree/bindings/pinctrl/
13490 F:      Documentation/driver-api/pinctl.rst
13491 F:      drivers/pinctrl/
13492 F:      include/linux/pinctrl/
13493
13494 PIN CONTROLLER - FREESCALE
13495 M:      Dong Aisheng <aisheng.dong@nxp.com>
13496 M:      Fabio Estevam <festevam@gmail.com>
13497 M:      Shawn Guo <shawnguo@kernel.org>
13498 M:      Stefan Agner <stefan@agner.ch>
13499 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
13500 L:      linux-gpio@vger.kernel.org
13501 S:      Maintained
13502 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13503 F:      drivers/pinctrl/freescale/
13504
13505 PIN CONTROLLER - INTEL
13506 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13507 M:      Andy Shevchenko <andy@kernel.org>
13508 S:      Maintained
13509 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13510 F:      drivers/pinctrl/intel/
13511
13512 PIN CONTROLLER - MEDIATEK
13513 M:      Sean Wang <sean.wang@kernel.org>
13514 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13515 S:      Maintained
13516 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13517 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13518 F:      drivers/pinctrl/mediatek/
13519
13520 PIN CONTROLLER - MICROCHIP AT91
13521 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13522 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13523 L:      linux-gpio@vger.kernel.org
13524 S:      Supported
13525 F:      drivers/gpio/gpio-sama5d2-piobu.c
13526 F:      drivers/pinctrl/pinctrl-at91*
13527
13528 PIN CONTROLLER - QUALCOMM
13529 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13530 L:      linux-arm-msm@vger.kernel.org
13531 S:      Maintained
13532 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
13533 F:      drivers/pinctrl/qcom/
13534
13535 PIN CONTROLLER - RENESAS
13536 M:      Geert Uytterhoeven <geert+renesas@glider.be>
13537 L:      linux-renesas-soc@vger.kernel.org
13538 S:      Supported
13539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
13540 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
13541 F:      drivers/pinctrl/pinctrl-rz*
13542 F:      drivers/pinctrl/sh-pfc/
13543
13544 PIN CONTROLLER - SAMSUNG
13545 M:      Tomasz Figa <tomasz.figa@gmail.com>
13546 M:      Krzysztof Kozlowski <krzk@kernel.org>
13547 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13548 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13549 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13550 S:      Maintained
13551 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
13552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
13553 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
13554 F:      drivers/pinctrl/samsung/
13555 F:      include/dt-bindings/pinctrl/samsung.h
13556
13557 PIN CONTROLLER - SINGLE
13558 M:      Tony Lindgren <tony@atomide.com>
13559 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
13560 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13561 L:      linux-omap@vger.kernel.org
13562 S:      Maintained
13563 F:      drivers/pinctrl/pinctrl-single.c
13564
13565 PIN CONTROLLER - ST SPEAR
13566 M:      Viresh Kumar <vireshk@kernel.org>
13567 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13568 S:      Maintained
13569 W:      http://www.st.com/spear
13570 F:      drivers/pinctrl/spear/
13571
13572 PISTACHIO SOC SUPPORT
13573 M:      James Hartley <james.hartley@sondrel.com>
13574 L:      linux-mips@vger.kernel.org
13575 S:      Odd Fixes
13576 F:      arch/mips/boot/dts/img/pistachio*
13577 F:      arch/mips/configs/pistachio*_defconfig
13578 F:      arch/mips/include/asm/mach-pistachio/
13579 F:      arch/mips/pistachio/
13580
13581 PKTCDVD DRIVER
13582 M:      linux-block@vger.kernel.org
13583 S:      Orphan
13584 F:      drivers/block/pktcdvd.c
13585 F:      include/linux/pktcdvd.h
13586 F:      include/uapi/linux/pktcdvd.h
13587
13588 PKUNITY SOC DRIVERS
13589 M:      Guan Xuetao <gxt@pku.edu.cn>
13590 S:      Maintained
13591 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
13592 T:      git git://github.com/gxt/linux.git
13593 F:      drivers/i2c/busses/i2c-puv3.c
13594 F:      drivers/input/serio/i8042-unicore32io.h
13595 F:      drivers/rtc/rtc-puv3.c
13596 F:      drivers/video/fbdev/fb-puv3.c
13597
13598 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
13599 M:      Tomasz Duszynski <tduszyns@gmail.com>
13600 S:      Maintained
13601 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
13602 F:      drivers/iio/chemical/pms7003.c
13603
13604 PLX DMA DRIVER
13605 M:      Logan Gunthorpe <logang@deltatee.com>
13606 S:      Maintained
13607 F:      drivers/dma/plx_dma.c
13608
13609 PM-GRAPH UTILITY
13610 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
13611 L:      linux-pm@vger.kernel.org
13612 S:      Supported
13613 W:      https://01.org/pm-graph
13614 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
13615 T:      git git://github.com/intel/pm-graph
13616 F:      tools/power/pm-graph
13617
13618 PMBUS HARDWARE MONITORING DRIVERS
13619 M:      Guenter Roeck <linux@roeck-us.net>
13620 L:      linux-hwmon@vger.kernel.org
13621 S:      Maintained
13622 W:      http://hwmon.wiki.kernel.org/
13623 W:      http://www.roeck-us.net/linux/drivers/
13624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
13625 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
13626 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
13627 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
13628 F:      Documentation/hwmon/adm1275.rst
13629 F:      Documentation/hwmon/ibm-cffps.rst
13630 F:      Documentation/hwmon/ir35221.rst
13631 F:      Documentation/hwmon/lm25066.rst
13632 F:      Documentation/hwmon/ltc2978.rst
13633 F:      Documentation/hwmon/ltc3815.rst
13634 F:      Documentation/hwmon/max16064.rst
13635 F:      Documentation/hwmon/max20751.rst
13636 F:      Documentation/hwmon/max31785.rst
13637 F:      Documentation/hwmon/max34440.rst
13638 F:      Documentation/hwmon/max8688.rst
13639 F:      Documentation/hwmon/pmbus-core.rst
13640 F:      Documentation/hwmon/pmbus.rst
13641 F:      Documentation/hwmon/tps40422.rst
13642 F:      Documentation/hwmon/ucd9000.rst
13643 F:      Documentation/hwmon/ucd9200.rst
13644 F:      Documentation/hwmon/zl6100.rst
13645 F:      drivers/hwmon/pmbus/
13646 F:      include/linux/pmbus.h
13647
13648 PMC SIERRA MaxRAID DRIVER
13649 L:      linux-scsi@vger.kernel.org
13650 S:      Orphan
13651 W:      http://www.pmc-sierra.com/
13652 F:      drivers/scsi/pmcraid.*
13653
13654 PMC SIERRA PM8001 DRIVER
13655 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
13656 L:      linux-scsi@vger.kernel.org
13657 S:      Supported
13658 F:      drivers/scsi/pm8001/
13659
13660 PNI RM3100 IIO DRIVER
13661 M:      Song Qiang <songqiang1304521@gmail.com>
13662 L:      linux-iio@vger.kernel.org
13663 S:      Maintained
13664 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
13665 F:      drivers/iio/magnetometer/rm3100*
13666
13667 PNP SUPPORT
13668 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
13669 L:      linux-acpi@vger.kernel.org
13670 S:      Maintained
13671 F:      drivers/pnp/
13672 F:      include/linux/pnp.h
13673
13674 POSIX CLOCKS and TIMERS
13675 M:      Thomas Gleixner <tglx@linutronix.de>
13676 L:      linux-kernel@vger.kernel.org
13677 S:      Maintained
13678 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13679 F:      fs/timerfd.c
13680 F:      include/linux/time_namespace.h
13681 F:      include/linux/timer*
13682 F:      kernel/time/*timer*
13683 F:      kernel/time/namespace.c
13684
13685 POWER MANAGEMENT CORE
13686 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
13687 L:      linux-pm@vger.kernel.org
13688 S:      Supported
13689 B:      https://bugzilla.kernel.org
13690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
13691 F:      drivers/base/power/
13692 F:      drivers/powercap/
13693 F:      include/linux/intel_rapl.h
13694 F:      include/linux/pm.h
13695 F:      include/linux/pm_*
13696 F:      include/linux/powercap.h
13697 F:      kernel/configs/nopm.config
13698
13699 POWER STATE COORDINATION INTERFACE (PSCI)
13700 M:      Mark Rutland <mark.rutland@arm.com>
13701 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13702 L:      linux-arm-kernel@lists.infradead.org
13703 S:      Maintained
13704 F:      drivers/firmware/psci/
13705 F:      include/linux/psci.h
13706 F:      include/uapi/linux/psci.h
13707
13708 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
13709 M:      Sebastian Reichel <sre@kernel.org>
13710 L:      linux-pm@vger.kernel.org
13711 S:      Maintained
13712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13713 F:      Documentation/ABI/testing/sysfs-class-power
13714 F:      Documentation/devicetree/bindings/power/supply/
13715 F:      drivers/power/supply/
13716 F:      include/linux/power_supply.h
13717
13718 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
13719 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
13720 L:      linuxppc-dev@lists.ozlabs.org
13721 S:      Maintained
13722 F:      drivers/char/powernv-op-panel.c
13723
13724 PPP OVER ATM (RFC 2364)
13725 M:      Mitchell Blank Jr <mitch@sfgoth.com>
13726 S:      Maintained
13727 F:      include/uapi/linux/atmppp.h
13728 F:      net/atm/pppoatm.c
13729
13730 PPP OVER ETHERNET
13731 M:      Michal Ostrowski <mostrows@earthlink.net>
13732 S:      Maintained
13733 F:      drivers/net/ppp/pppoe.c
13734 F:      drivers/net/ppp/pppox.c
13735
13736 PPP OVER L2TP
13737 M:      James Chapman <jchapman@katalix.com>
13738 S:      Maintained
13739 F:      include/linux/if_pppol2tp.h
13740 F:      include/uapi/linux/if_pppol2tp.h
13741 F:      net/l2tp/l2tp_ppp.c
13742
13743 PPP PROTOCOL DRIVERS AND COMPRESSORS
13744 M:      Paul Mackerras <paulus@samba.org>
13745 L:      linux-ppp@vger.kernel.org
13746 S:      Maintained
13747 F:      drivers/net/ppp/ppp_*
13748
13749 PPS SUPPORT
13750 M:      Rodolfo Giometti <giometti@enneenne.com>
13751 L:      linuxpps@ml.enneenne.com (subscribers-only)
13752 S:      Maintained
13753 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
13754 F:      Documentation/ABI/testing/sysfs-pps
13755 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
13756 F:      Documentation/driver-api/pps.rst
13757 F:      drivers/pps/
13758 F:      include/linux/pps*.h
13759 F:      include/uapi/linux/pps.h
13760
13761 PPTP DRIVER
13762 M:      Dmitry Kozlov <xeb@mail.ru>
13763 L:      netdev@vger.kernel.org
13764 S:      Maintained
13765 W:      http://sourceforge.net/projects/accel-pptp
13766 F:      drivers/net/ppp/pptp.c
13767
13768 PRESSURE STALL INFORMATION (PSI)
13769 M:      Johannes Weiner <hannes@cmpxchg.org>
13770 S:      Maintained
13771 F:      include/linux/psi*
13772 F:      kernel/sched/psi.c
13773
13774 PRINTK
13775 M:      Petr Mladek <pmladek@suse.com>
13776 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
13777 R:      Steven Rostedt <rostedt@goodmis.org>
13778 S:      Maintained
13779 F:      include/linux/printk.h
13780 F:      kernel/printk/
13781
13782 PRISM54 WIRELESS DRIVER
13783 M:      Luis Chamberlain <mcgrof@kernel.org>
13784 L:      linux-wireless@vger.kernel.org
13785 S:      Obsolete
13786 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13787 F:      drivers/net/wireless/intersil/prism54/
13788
13789 PROC FILESYSTEM
13790 R:      Alexey Dobriyan <adobriyan@gmail.com>
13791 L:      linux-kernel@vger.kernel.org
13792 L:      linux-fsdevel@vger.kernel.org
13793 S:      Maintained
13794 F:      Documentation/filesystems/proc.rst
13795 F:      fs/proc/
13796 F:      include/linux/proc_fs.h
13797 F:      tools/testing/selftests/proc/
13798
13799 PROC SYSCTL
13800 M:      Luis Chamberlain <mcgrof@kernel.org>
13801 M:      Kees Cook <keescook@chromium.org>
13802 M:      Iurii Zaikin <yzaikin@google.com>
13803 L:      linux-kernel@vger.kernel.org
13804 L:      linux-fsdevel@vger.kernel.org
13805 S:      Maintained
13806 F:      fs/proc/proc_sysctl.c
13807 F:      include/linux/sysctl.h
13808 F:      kernel/sysctl-test.c
13809 F:      kernel/sysctl.c
13810 F:      tools/testing/selftests/sysctl/
13811
13812 PS3 NETWORK SUPPORT
13813 M:      Geoff Levand <geoff@infradead.org>
13814 L:      netdev@vger.kernel.org
13815 L:      linuxppc-dev@lists.ozlabs.org
13816 S:      Maintained
13817 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
13818
13819 PS3 PLATFORM SUPPORT
13820 M:      Geoff Levand <geoff@infradead.org>
13821 L:      linuxppc-dev@lists.ozlabs.org
13822 S:      Maintained
13823 F:      arch/powerpc/boot/ps3*
13824 F:      arch/powerpc/include/asm/lv1call.h
13825 F:      arch/powerpc/include/asm/ps3*.h
13826 F:      arch/powerpc/platforms/ps3/
13827 F:      drivers/*/ps3*
13828 F:      drivers/ps3/
13829 F:      drivers/rtc/rtc-ps3.c
13830 F:      drivers/usb/host/*ps3.c
13831 F:      sound/ppc/snd_ps3*
13832
13833 PS3VRAM DRIVER
13834 M:      Jim Paris <jim@jtan.com>
13835 M:      Geoff Levand <geoff@infradead.org>
13836 L:      linuxppc-dev@lists.ozlabs.org
13837 S:      Maintained
13838 F:      drivers/block/ps3vram.c
13839
13840 PSAMPLE PACKET SAMPLING SUPPORT
13841 M:      Yotam Gigi <yotam.gi@gmail.com>
13842 S:      Maintained
13843 F:      include/net/psample.h
13844 F:      include/uapi/linux/psample.h
13845 F:      net/psample
13846
13847 PSTORE FILESYSTEM
13848 M:      Kees Cook <keescook@chromium.org>
13849 M:      Anton Vorontsov <anton@enomsg.org>
13850 M:      Colin Cross <ccross@android.com>
13851 M:      Tony Luck <tony.luck@intel.com>
13852 S:      Maintained
13853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
13854 F:      Documentation/admin-guide/ramoops.rst
13855 F:      Documentation/admin-guide/pstore-blk.rst
13856 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
13857 F:      drivers/acpi/apei/erst.c
13858 F:      drivers/firmware/efi/efi-pstore.c
13859 F:      fs/pstore/
13860 F:      include/linux/pstore*
13861 K:      \b(pstore|ramoops)
13862
13863 PTP HARDWARE CLOCK SUPPORT
13864 M:      Richard Cochran <richardcochran@gmail.com>
13865 L:      netdev@vger.kernel.org
13866 S:      Maintained
13867 W:      http://linuxptp.sourceforge.net/
13868 F:      Documentation/ABI/testing/sysfs-ptp
13869 F:      Documentation/driver-api/ptp.rst
13870 F:      drivers/net/phy/dp83640*
13871 F:      drivers/ptp/*
13872 F:      include/linux/ptp_cl*
13873
13874 PTRACE SUPPORT
13875 M:      Oleg Nesterov <oleg@redhat.com>
13876 S:      Maintained
13877 F:      arch/*/*/ptrace*.c
13878 F:      arch/*/include/asm/ptrace*.h
13879 F:      arch/*/ptrace*.c
13880 F:      include/asm-generic/syscall.h
13881 F:      include/linux/ptrace.h
13882 F:      include/linux/regset.h
13883 F:      include/linux/tracehook.h
13884 F:      include/uapi/linux/ptrace.h
13885 F:      include/uapi/linux/ptrace.h
13886 F:      kernel/ptrace.c
13887
13888 PULSE8-CEC DRIVER
13889 M:      Hans Verkuil <hverkuil@xs4all.nl>
13890 L:      linux-media@vger.kernel.org
13891 S:      Maintained
13892 T:      git git://linuxtv.org/media_tree.git
13893 F:      Documentation/admin-guide/media/pulse8-cec.rst
13894 F:      drivers/media/cec/usb/pulse8/
13895
13896 PVRUSB2 VIDEO4LINUX DRIVER
13897 M:      Mike Isely <isely@pobox.com>
13898 L:      pvrusb2@isely.net       (subscribers-only)
13899 L:      linux-media@vger.kernel.org
13900 S:      Maintained
13901 W:      http://www.isely.net/pvrusb2/
13902 T:      git git://linuxtv.org/media_tree.git
13903 F:      Documentation/driver-api/media/drivers/pvrusb2*
13904 F:      drivers/media/usb/pvrusb2/
13905
13906 PWC WEBCAM DRIVER
13907 M:      Hans Verkuil <hverkuil@xs4all.nl>
13908 L:      linux-media@vger.kernel.org
13909 S:      Odd Fixes
13910 T:      git git://linuxtv.org/media_tree.git
13911 F:      drivers/media/usb/pwc/*
13912 F:      include/trace/events/pwc.h
13913
13914 PWM FAN DRIVER
13915 M:      Kamil Debski <kamil@wypas.org>
13916 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
13917 L:      linux-hwmon@vger.kernel.org
13918 S:      Supported
13919 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
13920 F:      Documentation/hwmon/pwm-fan.rst
13921 F:      drivers/hwmon/pwm-fan.c
13922
13923 PWM IR Transmitter
13924 M:      Sean Young <sean@mess.org>
13925 L:      linux-media@vger.kernel.org
13926 S:      Maintained
13927 F:      drivers/media/rc/pwm-ir-tx.c
13928
13929 PWM SUBSYSTEM
13930 M:      Thierry Reding <thierry.reding@gmail.com>
13931 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
13932 M:      Lee Jones <lee.jones@linaro.org>
13933 L:      linux-pwm@vger.kernel.org
13934 S:      Maintained
13935 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
13936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
13937 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
13938 F:      Documentation/devicetree/bindings/pwm/
13939 F:      Documentation/driver-api/pwm.rst
13940 F:      drivers/gpio/gpio-mvebu.c
13941 F:      drivers/pwm/
13942 F:      drivers/video/backlight/pwm_bl.c
13943 F:      include/linux/pwm.h
13944 F:      include/linux/pwm_backlight.h
13945 K:      pwm_(config|apply_state|ops)
13946
13947 PXA GPIO DRIVER
13948 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13949 L:      linux-gpio@vger.kernel.org
13950 S:      Maintained
13951 F:      drivers/gpio/gpio-pxa.c
13952
13953 PXA MMCI DRIVER
13954 S:      Orphan
13955
13956 PXA RTC DRIVER
13957 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13958 L:      linux-rtc@vger.kernel.org
13959 S:      Maintained
13960
13961 PXA2xx/PXA3xx SUPPORT
13962 M:      Daniel Mack <daniel@zonque.org>
13963 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
13964 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13965 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13966 S:      Maintained
13967 T:      git git://github.com/hzhuang1/linux.git
13968 T:      git git://github.com/rjarzmik/linux.git
13969 F:      arch/arm/boot/dts/pxa*
13970 F:      arch/arm/mach-pxa/
13971 F:      drivers/dma/pxa*
13972 F:      drivers/pcmcia/pxa2xx*
13973 F:      drivers/pinctrl/pxa/
13974 F:      drivers/spi/spi-pxa2xx*
13975 F:      drivers/usb/gadget/udc/pxa2*
13976 F:      include/sound/pxa2xx-lib.h
13977 F:      sound/arm/pxa*
13978 F:      sound/soc/pxa/
13979
13980 QAT DRIVER
13981 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
13982 L:      qat-linux@intel.com
13983 S:      Supported
13984 F:      drivers/crypto/qat/
13985
13986 QCOM AUDIO (ASoC) DRIVERS
13987 M:      Patrick Lai <plai@codeaurora.org>
13988 M:      Banajit Goswami <bgoswami@codeaurora.org>
13989 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13990 S:      Supported
13991 F:      sound/soc/qcom/
13992
13993 QCOM IPA DRIVER
13994 M:      Alex Elder <elder@kernel.org>
13995 L:      netdev@vger.kernel.org
13996 S:      Supported
13997 F:      drivers/net/ipa/
13998
13999 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
14000 M:      Gabriel Somlo <somlo@cmu.edu>
14001 M:      "Michael S. Tsirkin" <mst@redhat.com>
14002 L:      qemu-devel@nongnu.org
14003 S:      Maintained
14004 F:      drivers/firmware/qemu_fw_cfg.c
14005 F:      include/uapi/linux/qemu_fw_cfg.h
14006
14007 QIB DRIVER
14008 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
14009 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
14010 L:      linux-rdma@vger.kernel.org
14011 S:      Supported
14012 F:      drivers/infiniband/hw/qib/
14013
14014 QLOGIC QL41xxx FCOE DRIVER
14015 M:      QLogic-Storage-Upstream@cavium.com
14016 L:      linux-scsi@vger.kernel.org
14017 S:      Supported
14018 F:      drivers/scsi/qedf/
14019
14020 QLOGIC QL41xxx ISCSI DRIVER
14021 M:      QLogic-Storage-Upstream@cavium.com
14022 L:      linux-scsi@vger.kernel.org
14023 S:      Supported
14024 F:      drivers/scsi/qedi/
14025
14026 QLOGIC QL4xxx ETHERNET DRIVER
14027 M:      Ariel Elior <aelior@marvell.com>
14028 M:      GR-everest-linux-l2@marvell.com
14029 L:      netdev@vger.kernel.org
14030 S:      Supported
14031 F:      drivers/net/ethernet/qlogic/qed/
14032 F:      drivers/net/ethernet/qlogic/qede/
14033 F:      include/linux/qed/
14034
14035 QLOGIC QL4xxx RDMA DRIVER
14036 M:      Michal Kalderon <mkalderon@marvell.com>
14037 M:      Ariel Elior <aelior@marvell.com>
14038 L:      linux-rdma@vger.kernel.org
14039 S:      Supported
14040 F:      drivers/infiniband/hw/qedr/
14041 F:      include/uapi/rdma/qedr-abi.h
14042
14043 QLOGIC QLA1280 SCSI DRIVER
14044 M:      Michael Reed <mdr@sgi.com>
14045 L:      linux-scsi@vger.kernel.org
14046 S:      Maintained
14047 F:      drivers/scsi/qla1280.[ch]
14048
14049 QLOGIC QLA2XXX FC-SCSI DRIVER
14050 M:      Nilesh Javali <njavali@marvell.com>
14051 M:      GR-QLogic-Storage-Upstream@marvell.com
14052 L:      linux-scsi@vger.kernel.org
14053 S:      Supported
14054 F:      Documentation/scsi/LICENSE.qla2xxx
14055 F:      drivers/scsi/qla2xxx/
14056
14057 QLOGIC QLA3XXX NETWORK DRIVER
14058 M:      GR-Linux-NIC-Dev@marvell.com
14059 L:      netdev@vger.kernel.org
14060 S:      Supported
14061 F:      Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
14062 F:      drivers/net/ethernet/qlogic/qla3xxx.*
14063
14064 QLOGIC QLA4XXX iSCSI DRIVER
14065 M:      QLogic-Storage-Upstream@qlogic.com
14066 L:      linux-scsi@vger.kernel.org
14067 S:      Supported
14068 F:      Documentation/scsi/LICENSE.qla4xxx
14069 F:      drivers/scsi/qla4xxx/
14070
14071 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14072 M:      Shahed Shaikh <shshaikh@marvell.com>
14073 M:      Manish Chopra <manishc@marvell.com>
14074 M:      GR-Linux-NIC-Dev@marvell.com
14075 L:      netdev@vger.kernel.org
14076 S:      Supported
14077 F:      drivers/net/ethernet/qlogic/qlcnic/
14078
14079 QLOGIC QLGE 10Gb ETHERNET DRIVER
14080 M:      Manish Chopra <manishc@marvell.com>
14081 M:      GR-Linux-NIC-Dev@marvell.com
14082 L:      netdev@vger.kernel.org
14083 S:      Supported
14084 F:      drivers/staging/qlge/
14085
14086 QM1D1B0004 MEDIA DRIVER
14087 M:      Akihiro Tsukada <tskd08@gmail.com>
14088 L:      linux-media@vger.kernel.org
14089 S:      Odd Fixes
14090 F:      drivers/media/tuners/qm1d1b0004*
14091
14092 QM1D1C0042 MEDIA DRIVER
14093 M:      Akihiro Tsukada <tskd08@gmail.com>
14094 L:      linux-media@vger.kernel.org
14095 S:      Odd Fixes
14096 F:      drivers/media/tuners/qm1d1c0042*
14097
14098 QNX4 FILESYSTEM
14099 M:      Anders Larsen <al@alarsen.net>
14100 S:      Maintained
14101 W:      http://www.alarsen.net/linux/qnx4fs/
14102 F:      fs/qnx4/
14103 F:      include/uapi/linux/qnx4_fs.h
14104 F:      include/uapi/linux/qnxtypes.h
14105
14106 QORIQ DPAA2 FSL-MC BUS DRIVER
14107 M:      Stuart Yoder <stuyoder@gmail.com>
14108 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
14109 L:      linux-kernel@vger.kernel.org
14110 S:      Maintained
14111 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
14112 F:      Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
14113 F:      drivers/bus/fsl-mc/
14114
14115 QT1010 MEDIA DRIVER
14116 M:      Antti Palosaari <crope@iki.fi>
14117 L:      linux-media@vger.kernel.org
14118 S:      Maintained
14119 W:      https://linuxtv.org
14120 W:      http://palosaari.fi/linux/
14121 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14122 T:      git git://linuxtv.org/anttip/media_tree.git
14123 F:      drivers/media/tuners/qt1010*
14124
14125 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
14126 M:      Kalle Valo <kvalo@codeaurora.org>
14127 L:      ath10k@lists.infradead.org
14128 S:      Supported
14129 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
14130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14131 F:      drivers/net/wireless/ath/ath10k/
14132
14133 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
14134 M:      Kalle Valo <kvalo@codeaurora.org>
14135 L:      ath11k@lists.infradead.org
14136 S:      Supported
14137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14138 F:      drivers/net/wireless/ath/ath11k/
14139
14140 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
14141 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
14142 L:      linux-wireless@vger.kernel.org
14143 S:      Supported
14144 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
14145 F:      drivers/net/wireless/ath/ath9k/
14146
14147 QUALCOMM CAMERA SUBSYSTEM DRIVER
14148 M:      Todor Tomov <todor.too@gmail.com>
14149 L:      linux-media@vger.kernel.org
14150 S:      Maintained
14151 F:      Documentation/admin-guide/media/qcom_camss.rst
14152 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
14153 F:      drivers/media/platform/qcom/camss/
14154
14155 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
14156 M:      Niklas Cassel <nks@flawful.org>
14157 L:      linux-pm@vger.kernel.org
14158 L:      linux-arm-msm@vger.kernel.org
14159 S:      Maintained
14160 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
14161 F:      drivers/power/avs/qcom-cpr.c
14162
14163 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
14164 M:      Ilia Lin <ilia.lin@kernel.org>
14165 L:      linux-pm@vger.kernel.org
14166 S:      Maintained
14167 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
14168 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
14169
14170 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
14171 M:      Timur Tabi <timur@kernel.org>
14172 L:      netdev@vger.kernel.org
14173 S:      Maintained
14174 F:      drivers/net/ethernet/qualcomm/emac/
14175
14176 QUALCOMM ETHQOS ETHERNET DRIVER
14177 M:      Vinod Koul <vkoul@kernel.org>
14178 L:      netdev@vger.kernel.org
14179 S:      Maintained
14180 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
14181 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
14182
14183 QUALCOMM GENERIC INTERFACE I2C DRIVER
14184 M:      Alok Chauhan <alokc@codeaurora.org>
14185 L:      linux-i2c@vger.kernel.org
14186 L:      linux-arm-msm@vger.kernel.org
14187 S:      Supported
14188 F:      drivers/i2c/busses/i2c-qcom-geni.c
14189
14190 QUALCOMM HEXAGON ARCHITECTURE
14191 M:      Brian Cain <bcain@codeaurora.org>
14192 L:      linux-hexagon@vger.kernel.org
14193 S:      Supported
14194 F:      arch/hexagon/
14195
14196 QUALCOMM HIDMA DRIVER
14197 M:      Sinan Kaya <okaya@kernel.org>
14198 L:      linux-arm-kernel@lists.infradead.org
14199 L:      linux-arm-msm@vger.kernel.org
14200 L:      dmaengine@vger.kernel.org
14201 S:      Supported
14202 F:      drivers/dma/qcom/hidma*
14203
14204 QUALCOMM I2C CCI DRIVER
14205 M:      Loic Poulain <loic.poulain@linaro.org>
14206 M:      Robert Foss <robert.foss@linaro.org>
14207 L:      linux-i2c@vger.kernel.org
14208 L:      linux-arm-msm@vger.kernel.org
14209 S:      Maintained
14210 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
14211 F:      drivers/i2c/busses/i2c-qcom-cci.c
14212
14213 QUALCOMM IOMMU
14214 M:      Rob Clark <robdclark@gmail.com>
14215 L:      iommu@lists.linux-foundation.org
14216 L:      linux-arm-msm@vger.kernel.org
14217 S:      Maintained
14218 F:      drivers/iommu/qcom_iommu.c
14219
14220 QUALCOMM IPCC MAILBOX DRIVER
14221 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
14222 L:      linux-arm-msm@vger.kernel.org
14223 S:      Supported
14224 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
14225 F:      drivers/mailbox/qcom-ipcc.c
14226 F:      include/dt-bindings/mailbox/qcom-ipcc.h
14227
14228 QUALCOMM RMNET DRIVER
14229 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
14230 M:      Sean Tranchetti <stranche@codeaurora.org>
14231 L:      netdev@vger.kernel.org
14232 S:      Maintained
14233 F:      Documentation/networking/device_drivers/qualcomm/rmnet.rst
14234 F:      drivers/net/ethernet/qualcomm/rmnet/
14235 F:      include/linux/if_rmnet.h
14236
14237 QUALCOMM TSENS THERMAL DRIVER
14238 M:      Amit Kucheria <amit.kucheria@linaro.org>
14239 L:      linux-pm@vger.kernel.org
14240 L:      linux-arm-msm@vger.kernel.org
14241 S:      Maintained
14242 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14243 F:      drivers/thermal/qcom/
14244
14245 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14246 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
14247 L:      linux-media@vger.kernel.org
14248 L:      linux-arm-msm@vger.kernel.org
14249 S:      Maintained
14250 T:      git git://linuxtv.org/media_tree.git
14251 F:      Documentation/devicetree/bindings/media/*venus*
14252 F:      drivers/media/platform/qcom/venus/
14253
14254 QUALCOMM WCN36XX WIRELESS DRIVER
14255 M:      Kalle Valo <kvalo@codeaurora.org>
14256 L:      wcn36xx@lists.infradead.org
14257 S:      Supported
14258 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
14259 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14260 F:      drivers/net/wireless/ath/wcn36xx/
14261
14262 QUANTENNA QTNFMAC WIRELESS DRIVER
14263 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
14264 R:      Sergey Matyukevich <geomatsi@gmail.com>
14265 L:      linux-wireless@vger.kernel.org
14266 S:      Maintained
14267 F:      drivers/net/wireless/quantenna
14268
14269 RADEON and AMDGPU DRM DRIVERS
14270 M:      Alex Deucher <alexander.deucher@amd.com>
14271 M:      Christian König <christian.koenig@amd.com>
14272 L:      amd-gfx@lists.freedesktop.org
14273 S:      Supported
14274 T:      git git://people.freedesktop.org/~agd5f/linux
14275 F:      drivers/gpu/drm/amd/
14276 F:      drivers/gpu/drm/radeon/
14277 F:      include/uapi/drm/amdgpu_drm.h
14278 F:      include/uapi/drm/radeon_drm.h
14279
14280 RADEON FRAMEBUFFER DISPLAY DRIVER
14281 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
14282 L:      linux-fbdev@vger.kernel.org
14283 S:      Maintained
14284 F:      drivers/video/fbdev/aty/radeon*
14285 F:      include/uapi/linux/radeonfb.h
14286
14287 RADIOSHARK RADIO DRIVER
14288 M:      Hans Verkuil <hverkuil@xs4all.nl>
14289 L:      linux-media@vger.kernel.org
14290 S:      Maintained
14291 T:      git git://linuxtv.org/media_tree.git
14292 F:      drivers/media/radio/radio-shark.c
14293
14294 RADIOSHARK2 RADIO DRIVER
14295 M:      Hans Verkuil <hverkuil@xs4all.nl>
14296 L:      linux-media@vger.kernel.org
14297 S:      Maintained
14298 T:      git git://linuxtv.org/media_tree.git
14299 F:      drivers/media/radio/radio-shark2.c
14300 F:      drivers/media/radio/radio-tea5777.c
14301
14302 RADOS BLOCK DEVICE (RBD)
14303 M:      Ilya Dryomov <idryomov@gmail.com>
14304 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
14305 L:      ceph-devel@vger.kernel.org
14306 S:      Supported
14307 W:      http://ceph.com/
14308 T:      git git://github.com/ceph/ceph-client.git
14309 F:      Documentation/ABI/testing/sysfs-bus-rbd
14310 F:      drivers/block/rbd.c
14311 F:      drivers/block/rbd_types.h
14312
14313 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14314 M:      Paul Mackerras <paulus@samba.org>
14315 L:      linux-fbdev@vger.kernel.org
14316 S:      Maintained
14317 F:      drivers/video/fbdev/aty/aty128fb.c
14318
14319 RAINSHADOW-CEC DRIVER
14320 M:      Hans Verkuil <hverkuil@xs4all.nl>
14321 L:      linux-media@vger.kernel.org
14322 S:      Maintained
14323 T:      git git://linuxtv.org/media_tree.git
14324 F:      drivers/media/cec/usb/rainshadow/
14325
14326 RALINK MIPS ARCHITECTURE
14327 M:      John Crispin <john@phrozen.org>
14328 L:      linux-mips@vger.kernel.org
14329 S:      Maintained
14330 F:      arch/mips/ralink
14331
14332 RALINK RT2X00 WIRELESS LAN DRIVER
14333 M:      Stanislaw Gruszka <stf_xl@wp.pl>
14334 M:      Helmut Schaa <helmut.schaa@googlemail.com>
14335 L:      linux-wireless@vger.kernel.org
14336 S:      Maintained
14337 F:      drivers/net/wireless/ralink/rt2x00/
14338
14339 RAMDISK RAM BLOCK DEVICE DRIVER
14340 M:      Jens Axboe <axboe@kernel.dk>
14341 S:      Maintained
14342 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14343 F:      drivers/block/brd.c
14344
14345 RANCHU VIRTUAL BOARD FOR MIPS
14346 M:      Miodrag Dinic <miodrag.dinic@mips.com>
14347 L:      linux-mips@vger.kernel.org
14348 S:      Supported
14349 F:      arch/mips/configs/generic/board-ranchu.config
14350 F:      arch/mips/generic/board-ranchu.c
14351
14352 RANDOM NUMBER DRIVER
14353 M:      "Theodore Ts'o" <tytso@mit.edu>
14354 S:      Maintained
14355 F:      drivers/char/random.c
14356
14357 RAPIDIO SUBSYSTEM
14358 M:      Matt Porter <mporter@kernel.crashing.org>
14359 M:      Alexandre Bounine <alex.bou9@gmail.com>
14360 S:      Maintained
14361 F:      drivers/rapidio/
14362
14363 RAS INFRASTRUCTURE
14364 M:      Tony Luck <tony.luck@intel.com>
14365 M:      Borislav Petkov <bp@alien8.de>
14366 L:      linux-edac@vger.kernel.org
14367 S:      Maintained
14368 F:      Documentation/admin-guide/ras.rst
14369 F:      drivers/ras/
14370 F:      include/linux/ras.h
14371 F:      include/ras/ras_event.h
14372
14373 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14374 L:      linux-wireless@vger.kernel.org
14375 S:      Orphan
14376 F:      drivers/net/wireless/ray*
14377
14378 RCMM REMOTE CONTROLS DECODER
14379 M:      Patrick Lerda <patrick9876@free.fr>
14380 S:      Maintained
14381 F:      drivers/media/rc/ir-rcmm-decoder.c
14382
14383 RCUTORTURE TEST FRAMEWORK
14384 M:      "Paul E. McKenney" <paulmck@kernel.org>
14385 M:      Josh Triplett <josh@joshtriplett.org>
14386 R:      Steven Rostedt <rostedt@goodmis.org>
14387 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14388 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14389 L:      rcu@vger.kernel.org
14390 S:      Supported
14391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14392 F:      tools/testing/selftests/rcutorture
14393
14394 RDC R-321X SoC
14395 M:      Florian Fainelli <florian@openwrt.org>
14396 S:      Maintained
14397
14398 RDC R6040 FAST ETHERNET DRIVER
14399 M:      Florian Fainelli <f.fainelli@gmail.com>
14400 L:      netdev@vger.kernel.org
14401 S:      Maintained
14402 F:      drivers/net/ethernet/rdc/r6040.c
14403
14404 RDMAVT - RDMA verbs software
14405 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
14406 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
14407 L:      linux-rdma@vger.kernel.org
14408 S:      Supported
14409 F:      drivers/infiniband/sw/rdmavt
14410
14411 RDS - RELIABLE DATAGRAM SOCKETS
14412 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
14413 L:      netdev@vger.kernel.org
14414 L:      linux-rdma@vger.kernel.org
14415 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
14416 S:      Supported
14417 W:      https://oss.oracle.com/projects/rds/
14418 F:      Documentation/networking/rds.rst
14419 F:      net/rds/
14420
14421 RDT - RESOURCE ALLOCATION
14422 M:      Fenghua Yu <fenghua.yu@intel.com>
14423 M:      Reinette Chatre <reinette.chatre@intel.com>
14424 L:      linux-kernel@vger.kernel.org
14425 S:      Supported
14426 F:      Documentation/x86/resctrl*
14427 F:      arch/x86/include/asm/resctrl.h
14428 F:      arch/x86/kernel/cpu/resctrl/
14429 F:      tools/testing/selftests/resctrl/
14430
14431 READ-COPY UPDATE (RCU)
14432 M:      "Paul E. McKenney" <paulmck@kernel.org>
14433 M:      Josh Triplett <josh@joshtriplett.org>
14434 R:      Steven Rostedt <rostedt@goodmis.org>
14435 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14436 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14437 R:      Joel Fernandes <joel@joelfernandes.org>
14438 L:      rcu@vger.kernel.org
14439 S:      Supported
14440 W:      http://www.rdrop.com/users/paulmck/RCU/
14441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14442 F:      Documentation/RCU/
14443 F:      include/linux/rcu*
14444 F:      kernel/rcu/
14445 X:      Documentation/RCU/torture.txt
14446 X:      include/linux/srcu*.h
14447 X:      kernel/rcu/srcu*.c
14448
14449 REAL TIME CLOCK (RTC) SUBSYSTEM
14450 M:      Alessandro Zummo <a.zummo@towertech.it>
14451 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14452 L:      linux-rtc@vger.kernel.org
14453 S:      Maintained
14454 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14456 F:      Documentation/admin-guide/rtc.rst
14457 F:      Documentation/devicetree/bindings/rtc/
14458 F:      drivers/rtc/
14459 F:      include/linux/platform_data/rtc-*
14460 F:      include/linux/rtc.h
14461 F:      include/linux/rtc/
14462 F:      include/uapi/linux/rtc.h
14463 F:      tools/testing/selftests/rtc/
14464
14465 REALTEK AUDIO CODECS
14466 M:      Oder Chiou <oder_chiou@realtek.com>
14467 S:      Maintained
14468 F:      include/sound/rt*.h
14469 F:      sound/soc/codecs/rt*
14470
14471 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14472 M:      Linus Walleij <linus.walleij@linaro.org>
14473 S:      Maintained
14474 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14475 F:      drivers/net/dsa/realtek-smi*
14476 F:      drivers/net/dsa/rtl83*
14477
14478 REALTEK WIRELESS DRIVER (rtlwifi family)
14479 M:      Ping-Ke Shih <pkshih@realtek.com>
14480 L:      linux-wireless@vger.kernel.org
14481 S:      Maintained
14482 W:      https://wireless.wiki.kernel.org/
14483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14484 F:      drivers/net/wireless/realtek/rtlwifi/
14485
14486 REALTEK WIRELESS DRIVER (rtw88)
14487 M:      Yan-Hsuan Chuang <yhchuang@realtek.com>
14488 L:      linux-wireless@vger.kernel.org
14489 S:      Maintained
14490 F:      drivers/net/wireless/realtek/rtw88/
14491
14492 REDPINE WIRELESS DRIVER
14493 M:      Amitkumar Karwar <amitkarwar@gmail.com>
14494 M:      Siva Rebbagondla <siva8118@gmail.com>
14495 L:      linux-wireless@vger.kernel.org
14496 S:      Maintained
14497 F:      drivers/net/wireless/rsi/
14498
14499 REGISTER MAP ABSTRACTION
14500 M:      Mark Brown <broonie@kernel.org>
14501 L:      linux-kernel@vger.kernel.org
14502 S:      Supported
14503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
14504 F:      Documentation/devicetree/bindings/regmap/
14505 F:      drivers/base/regmap/
14506 F:      include/linux/regmap.h
14507
14508 REISERFS FILE SYSTEM
14509 L:      reiserfs-devel@vger.kernel.org
14510 S:      Supported
14511 F:      fs/reiserfs/
14512
14513 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
14514 M:      Ohad Ben-Cohen <ohad@wizery.com>
14515 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14516 L:      linux-remoteproc@vger.kernel.org
14517 S:      Maintained
14518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
14519 F:      Documentation/ABI/testing/sysfs-class-remoteproc
14520 F:      Documentation/devicetree/bindings/remoteproc/
14521 F:      Documentation/remoteproc.txt
14522 F:      drivers/remoteproc/
14523 F:      include/linux/remoteproc.h
14524 F:      include/linux/remoteproc/
14525
14526 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
14527 M:      Ohad Ben-Cohen <ohad@wizery.com>
14528 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14529 L:      linux-remoteproc@vger.kernel.org
14530 S:      Maintained
14531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
14532 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
14533 F:      Documentation/rpmsg.txt
14534 F:      drivers/rpmsg/
14535 F:      include/linux/rpmsg.h
14536 F:      include/linux/rpmsg/
14537 F:      include/uapi/linux/rpmsg.h
14538 F:      samples/rpmsg/
14539
14540 RENESAS CLOCK DRIVERS
14541 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14542 L:      linux-renesas-soc@vger.kernel.org
14543 S:      Supported
14544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
14545 F:      Documentation/devicetree/bindings/clock/renesas,*
14546 F:      drivers/clk/renesas/
14547
14548 RENESAS EMEV2 I2C DRIVER
14549 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14550 S:      Supported
14551 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
14552 F:      drivers/i2c/busses/i2c-emev2.c
14553
14554 RENESAS ETHERNET DRIVERS
14555 R:      Sergei Shtylyov <sergei.shtylyov@gmail.com>
14556 L:      netdev@vger.kernel.org
14557 L:      linux-renesas-soc@vger.kernel.org
14558 F:      Documentation/devicetree/bindings/net/renesas,*.txt
14559 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
14560 F:      drivers/net/ethernet/renesas/
14561 F:      include/linux/sh_eth.h
14562
14563 RENESAS R-CAR GYROADC DRIVER
14564 M:      Marek Vasut <marek.vasut@gmail.com>
14565 L:      linux-iio@vger.kernel.org
14566 S:      Supported
14567 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
14568 F:      drivers/iio/adc/rcar-gyroadc.c
14569
14570 RENESAS R-CAR I2C DRIVERS
14571 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14572 S:      Supported
14573 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
14574 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
14575 F:      drivers/i2c/busses/i2c-rcar.c
14576 F:      drivers/i2c/busses/i2c-sh_mobile.c
14577
14578 RENESAS R-CAR THERMAL DRIVERS
14579 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
14580 L:      linux-renesas-soc@vger.kernel.org
14581 S:      Supported
14582 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
14583 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
14584 F:      drivers/thermal/rcar_gen3_thermal.c
14585 F:      drivers/thermal/rcar_thermal.c
14586
14587 RENESAS RIIC DRIVER
14588 M:      Chris Brandt <chris.brandt@renesas.com>
14589 S:      Supported
14590 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
14591 F:      drivers/i2c/busses/i2c-riic.c
14592
14593 RENESAS USB PHY DRIVER
14594 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14595 L:      linux-renesas-soc@vger.kernel.org
14596 S:      Maintained
14597 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
14598
14599 RESET CONTROLLER FRAMEWORK
14600 M:      Philipp Zabel <p.zabel@pengutronix.de>
14601 S:      Maintained
14602 T:      git git://git.pengutronix.de/git/pza/linux
14603 F:      Documentation/devicetree/bindings/reset/
14604 F:      drivers/reset/
14605 F:      include/dt-bindings/reset/
14606 F:      include/linux/reset-controller.h
14607 F:      include/linux/reset.h
14608 F:      include/linux/reset/
14609 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
14610
14611 RESTARTABLE SEQUENCES SUPPORT
14612 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14613 M:      Peter Zijlstra <peterz@infradead.org>
14614 M:      "Paul E. McKenney" <paulmck@kernel.org>
14615 M:      Boqun Feng <boqun.feng@gmail.com>
14616 L:      linux-kernel@vger.kernel.org
14617 S:      Supported
14618 F:      include/trace/events/rseq.h
14619 F:      include/uapi/linux/rseq.h
14620 F:      kernel/rseq.c
14621 F:      tools/testing/selftests/rseq/
14622
14623 RFKILL
14624 M:      Johannes Berg <johannes@sipsolutions.net>
14625 L:      linux-wireless@vger.kernel.org
14626 S:      Maintained
14627 W:      https://wireless.wiki.kernel.org/
14628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
14629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
14630 F:      Documentation/ABI/stable/sysfs-class-rfkill
14631 F:      Documentation/driver-api/rfkill.rst
14632 F:      include/linux/rfkill.h
14633 F:      include/uapi/linux/rfkill.h
14634 F:      net/rfkill/
14635
14636 RHASHTABLE
14637 M:      Thomas Graf <tgraf@suug.ch>
14638 M:      Herbert Xu <herbert@gondor.apana.org.au>
14639 L:      netdev@vger.kernel.org
14640 S:      Maintained
14641 F:      include/linux/rhashtable-types.h
14642 F:      include/linux/rhashtable.h
14643 F:      lib/rhashtable.c
14644 F:      lib/test_rhashtable.c
14645
14646 RICOH R5C592 MEMORYSTICK DRIVER
14647 M:      Maxim Levitsky <maximlevitsky@gmail.com>
14648 S:      Maintained
14649 F:      drivers/memstick/host/r592.*
14650
14651 RICOH SMARTMEDIA/XD DRIVER
14652 M:      Maxim Levitsky <maximlevitsky@gmail.com>
14653 S:      Maintained
14654 F:      drivers/mtd/nand/raw/r852.c
14655 F:      drivers/mtd/nand/raw/r852.h
14656
14657 RISC-V ARCHITECTURE
14658 M:      Paul Walmsley <paul.walmsley@sifive.com>
14659 M:      Palmer Dabbelt <palmer@dabbelt.com>
14660 M:      Albert Ou <aou@eecs.berkeley.edu>
14661 L:      linux-riscv@lists.infradead.org
14662 S:      Supported
14663 P:      Documentation/riscv/patch-acceptance.rst
14664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
14665 F:      arch/riscv/
14666 N:      riscv
14667 K:      riscv
14668
14669 RNBD BLOCK DRIVERS
14670 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
14671 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14672 L:      linux-block@vger.kernel.org
14673 S:      Maintained
14674 F:      drivers/block/rnbd/
14675
14676 ROCCAT DRIVERS
14677 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
14678 S:      Maintained
14679 W:      http://sourceforge.net/projects/roccat/
14680 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
14681 F:      drivers/hid/hid-roccat*
14682 F:      include/linux/hid-roccat*
14683
14684 ROCKCHIP ISP V1 DRIVER
14685 M:      Helen Koike <helen.koike@collabora.com>
14686 L:      linux-media@vger.kernel.org
14687 S:      Maintained
14688 F:      drivers/staging/media/rkisp1/
14689
14690 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
14691 M:      Jacob Chen <jacob-chen@iotwrt.com>
14692 M:      Ezequiel Garcia <ezequiel@collabora.com>
14693 L:      linux-media@vger.kernel.org
14694 L:      linux-rockchip@lists.infradead.org
14695 S:      Maintained
14696 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
14697 F:      drivers/media/platform/rockchip/rga/
14698
14699 ROCKCHIP VIDEO DECODER DRIVER
14700 M:      Ezequiel Garcia <ezequiel@collabora.com>
14701 L:      linux-media@vger.kernel.org
14702 L:      linux-rockchip@lists.infradead.org
14703 S:      Maintained
14704 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
14705 F:      drivers/staging/media/rkvdec/
14706
14707 ROCKER DRIVER
14708 M:      Jiri Pirko <jiri@resnulli.us>
14709 L:      netdev@vger.kernel.org
14710 S:      Supported
14711 F:      drivers/net/ethernet/rocker/
14712
14713 ROCKETPORT DRIVER
14714 S:      Maintained
14715 W:      http://www.comtrol.com
14716 F:      Documentation/driver-api/serial/rocket.rst
14717 F:      drivers/tty/rocket*
14718
14719 ROCKETPORT EXPRESS/INFINITY DRIVER
14720 M:      Kevin Cernekee <cernekee@gmail.com>
14721 L:      linux-serial@vger.kernel.org
14722 S:      Odd Fixes
14723 F:      drivers/tty/serial/rp2.*
14724
14725 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
14726 M:      Tomasz Duszynski <tduszyns@gmail.com>
14727 S:      Maintained
14728 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
14729 F:      drivers/iio/light/bh1750.c
14730
14731 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
14732 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14733 L:      linux-kernel@vger.kernel.org
14734 L:      linux-renesas-soc@vger.kernel.org
14735 S:      Supported
14736 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
14737 F:      drivers/gpio/gpio-bd9571mwv.c
14738 F:      drivers/mfd/bd9571mwv.c
14739 F:      drivers/regulator/bd9571mwv-regulator.c
14740 F:      include/linux/mfd/bd9571mwv.h
14741
14742 ROSE NETWORK LAYER
14743 M:      Ralf Baechle <ralf@linux-mips.org>
14744 L:      linux-hams@vger.kernel.org
14745 S:      Maintained
14746 W:      http://www.linux-ax25.org/
14747 F:      include/net/rose.h
14748 F:      include/uapi/linux/rose.h
14749 F:      net/rose/
14750
14751 ROTATION DRIVER FOR ALLWINNER A83T
14752 M:      Jernej Skrabec <jernej.skrabec@siol.net>
14753 L:      linux-media@vger.kernel.org
14754 S:      Maintained
14755 T:      git git://linuxtv.org/media_tree.git
14756 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
14757 F:      drivers/media/platform/sunxi/sun8i-rotate/
14758
14759 RTL2830 MEDIA DRIVER
14760 M:      Antti Palosaari <crope@iki.fi>
14761 L:      linux-media@vger.kernel.org
14762 S:      Maintained
14763 W:      https://linuxtv.org
14764 W:      http://palosaari.fi/linux/
14765 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14766 T:      git git://linuxtv.org/anttip/media_tree.git
14767 F:      drivers/media/dvb-frontends/rtl2830*
14768
14769 RTL2832 MEDIA DRIVER
14770 M:      Antti Palosaari <crope@iki.fi>
14771 L:      linux-media@vger.kernel.org
14772 S:      Maintained
14773 W:      https://linuxtv.org
14774 W:      http://palosaari.fi/linux/
14775 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14776 T:      git git://linuxtv.org/anttip/media_tree.git
14777 F:      drivers/media/dvb-frontends/rtl2832*
14778
14779 RTL2832_SDR MEDIA DRIVER
14780 M:      Antti Palosaari <crope@iki.fi>
14781 L:      linux-media@vger.kernel.org
14782 S:      Maintained
14783 W:      https://linuxtv.org
14784 W:      http://palosaari.fi/linux/
14785 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14786 T:      git git://linuxtv.org/anttip/media_tree.git
14787 F:      drivers/media/dvb-frontends/rtl2832_sdr*
14788
14789 RTL8180 WIRELESS DRIVER
14790 L:      linux-wireless@vger.kernel.org
14791 S:      Orphan
14792 W:      https://wireless.wiki.kernel.org/
14793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14794 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
14795
14796 RTL8187 WIRELESS DRIVER
14797 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
14798 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
14799 M:      Larry Finger <Larry.Finger@lwfinger.net>
14800 L:      linux-wireless@vger.kernel.org
14801 S:      Maintained
14802 W:      https://wireless.wiki.kernel.org/
14803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14804 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
14805
14806 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
14807 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
14808 L:      linux-wireless@vger.kernel.org
14809 S:      Maintained
14810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
14811 F:      drivers/net/wireless/realtek/rtl8xxxu/
14812
14813 RTRS TRANSPORT DRIVERS
14814 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
14815 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14816 L:      linux-rdma@vger.kernel.org
14817 S:      Maintained
14818 F:      drivers/infiniband/ulp/rtrs/
14819
14820 RXRPC SOCKETS (AF_RXRPC)
14821 M:      David Howells <dhowells@redhat.com>
14822 L:      linux-afs@lists.infradead.org
14823 S:      Supported
14824 W:      https://www.infradead.org/~dhowells/kafs/
14825 F:      Documentation/networking/rxrpc.rst
14826 F:      include/keys/rxrpc-type.h
14827 F:      include/net/af_rxrpc.h
14828 F:      include/trace/events/rxrpc.h
14829 F:      include/uapi/linux/rxrpc.h
14830 F:      net/rxrpc/
14831
14832 S3 SAVAGE FRAMEBUFFER DRIVER
14833 M:      Antonino Daplas <adaplas@gmail.com>
14834 L:      linux-fbdev@vger.kernel.org
14835 S:      Maintained
14836 F:      drivers/video/fbdev/savage/
14837
14838 S390
14839 M:      Heiko Carstens <hca@linux.ibm.com>
14840 M:      Vasily Gorbik <gor@linux.ibm.com>
14841 M:      Christian Borntraeger <borntraeger@de.ibm.com>
14842 L:      linux-s390@vger.kernel.org
14843 S:      Supported
14844 W:      http://www.ibm.com/developerworks/linux/linux390/
14845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
14846 F:      Documentation/driver-api/s390-drivers.rst
14847 F:      Documentation/s390/
14848 F:      arch/s390/
14849 F:      drivers/s390/
14850
14851 S390 COMMON I/O LAYER
14852 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
14853 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
14854 L:      linux-s390@vger.kernel.org
14855 S:      Supported
14856 W:      http://www.ibm.com/developerworks/linux/linux390/
14857 F:      drivers/s390/cio/
14858
14859 S390 DASD DRIVER
14860 M:      Stefan Haberland <sth@linux.ibm.com>
14861 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
14862 L:      linux-s390@vger.kernel.org
14863 S:      Supported
14864 W:      http://www.ibm.com/developerworks/linux/linux390/
14865 F:      block/partitions/ibm.c
14866 F:      drivers/s390/block/dasd*
14867 F:      include/linux/dasd_mod.h
14868
14869 S390 IOMMU (PCI)
14870 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
14871 L:      linux-s390@vger.kernel.org
14872 S:      Supported
14873 W:      http://www.ibm.com/developerworks/linux/linux390/
14874 F:      drivers/iommu/s390-iommu.c
14875
14876 S390 IUCV NETWORK LAYER
14877 M:      Julian Wiedmann <jwi@linux.ibm.com>
14878 M:      Karsten Graul <kgraul@linux.ibm.com>
14879 M:      Ursula Braun <ubraun@linux.ibm.com>
14880 L:      linux-s390@vger.kernel.org
14881 S:      Supported
14882 W:      http://www.ibm.com/developerworks/linux/linux390/
14883 F:      drivers/s390/net/*iucv*
14884 F:      include/net/iucv/
14885 F:      net/iucv/
14886
14887 S390 NETWORK DRIVERS
14888 M:      Julian Wiedmann <jwi@linux.ibm.com>
14889 M:      Karsten Graul <kgraul@linux.ibm.com>
14890 M:      Ursula Braun <ubraun@linux.ibm.com>
14891 L:      linux-s390@vger.kernel.org
14892 S:      Supported
14893 W:      http://www.ibm.com/developerworks/linux/linux390/
14894 F:      drivers/s390/net/
14895
14896 S390 PCI SUBSYSTEM
14897 M:      Niklas Schnelle <schnelle@linux.ibm.com>
14898 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
14899 L:      linux-s390@vger.kernel.org
14900 S:      Supported
14901 W:      http://www.ibm.com/developerworks/linux/linux390/
14902 F:      arch/s390/pci/
14903 F:      drivers/pci/hotplug/s390_pci_hpc.c
14904 F:      Documentation/s390/pci.rst
14905
14906 S390 VFIO AP DRIVER
14907 M:      Tony Krowiak <akrowiak@linux.ibm.com>
14908 M:      Pierre Morel <pmorel@linux.ibm.com>
14909 M:      Halil Pasic <pasic@linux.ibm.com>
14910 L:      linux-s390@vger.kernel.org
14911 S:      Supported
14912 W:      http://www.ibm.com/developerworks/linux/linux390/
14913 F:      Documentation/s390/vfio-ap.rst
14914 F:      drivers/s390/crypto/vfio_ap_drv.c
14915 F:      drivers/s390/crypto/vfio_ap_ops.c
14916 F:      drivers/s390/crypto/vfio_ap_private.h
14917
14918 S390 VFIO-CCW DRIVER
14919 M:      Cornelia Huck <cohuck@redhat.com>
14920 M:      Eric Farman <farman@linux.ibm.com>
14921 R:      Halil Pasic <pasic@linux.ibm.com>
14922 L:      linux-s390@vger.kernel.org
14923 L:      kvm@vger.kernel.org
14924 S:      Supported
14925 F:      Documentation/s390/vfio-ccw.rst
14926 F:      drivers/s390/cio/vfio_ccw*
14927 F:      include/uapi/linux/vfio_ccw.h
14928
14929 S390 ZCRYPT DRIVER
14930 M:      Harald Freudenberger <freude@linux.ibm.com>
14931 L:      linux-s390@vger.kernel.org
14932 S:      Supported
14933 W:      http://www.ibm.com/developerworks/linux/linux390/
14934 F:      drivers/s390/crypto/
14935
14936 S390 ZFCP DRIVER
14937 M:      Steffen Maier <maier@linux.ibm.com>
14938 M:      Benjamin Block <bblock@linux.ibm.com>
14939 L:      linux-s390@vger.kernel.org
14940 S:      Supported
14941 W:      http://www.ibm.com/developerworks/linux/linux390/
14942 F:      drivers/s390/scsi/zfcp_*
14943
14944 S3C24XX SD/MMC Driver
14945 M:      Ben Dooks <ben-linux@fluff.org>
14946 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14947 S:      Supported
14948 F:      drivers/mmc/host/s3cmci.*
14949
14950 SAA6588 RDS RECEIVER DRIVER
14951 M:      Hans Verkuil <hverkuil@xs4all.nl>
14952 L:      linux-media@vger.kernel.org
14953 S:      Odd Fixes
14954 W:      https://linuxtv.org
14955 T:      git git://linuxtv.org/media_tree.git
14956 F:      drivers/media/i2c/saa6588*
14957
14958 SAA7134 VIDEO4LINUX DRIVER
14959 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14960 L:      linux-media@vger.kernel.org
14961 S:      Odd fixes
14962 W:      https://linuxtv.org
14963 T:      git git://linuxtv.org/media_tree.git
14964 F:      Documentation/driver-api/media/drivers/saa7134*
14965 F:      drivers/media/pci/saa7134/
14966
14967 SAA7146 VIDEO4LINUX-2 DRIVER
14968 M:      Hans Verkuil <hverkuil@xs4all.nl>
14969 L:      linux-media@vger.kernel.org
14970 S:      Maintained
14971 T:      git git://linuxtv.org/media_tree.git
14972 F:      drivers/media/common/saa7146/
14973 F:      drivers/media/pci/saa7146/
14974 F:      include/media/drv-intf/saa7146*
14975
14976 SAFESETID SECURITY MODULE
14977 M:      Micah Morton <mortonm@chromium.org>
14978 S:      Supported
14979 F:      Documentation/admin-guide/LSM/SafeSetID.rst
14980 F:      security/safesetid/
14981
14982 SAMSUNG AUDIO (ASoC) DRIVERS
14983 M:      Krzysztof Kozlowski <krzk@kernel.org>
14984 M:      Sangbeom Kim <sbkim73@samsung.com>
14985 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14986 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14987 S:      Supported
14988 F:      Documentation/devicetree/bindings/sound/samsung*
14989 F:      sound/soc/samsung/
14990
14991 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
14992 M:      Krzysztof Kozlowski <krzk@kernel.org>
14993 L:      linux-crypto@vger.kernel.org
14994 L:      linux-samsung-soc@vger.kernel.org
14995 S:      Maintained
14996 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
14997 F:      drivers/crypto/exynos-rng.c
14998
14999 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
15000 M:      Łukasz Stelmach <l.stelmach@samsung.com>
15001 L:      linux-samsung-soc@vger.kernel.org
15002 S:      Maintained
15003 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
15004 F:      drivers/char/hw_random/exynos-trng.c
15005
15006 SAMSUNG FRAMEBUFFER DRIVER
15007 M:      Jingoo Han <jingoohan1@gmail.com>
15008 L:      linux-fbdev@vger.kernel.org
15009 S:      Maintained
15010 F:      drivers/video/fbdev/s3c-fb.c
15011
15012 SAMSUNG LAPTOP DRIVER
15013 M:      Corentin Chary <corentin.chary@gmail.com>
15014 L:      platform-driver-x86@vger.kernel.org
15015 S:      Maintained
15016 F:      drivers/platform/x86/samsung-laptop.c
15017
15018 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
15019 M:      Sangbeom Kim <sbkim73@samsung.com>
15020 M:      Krzysztof Kozlowski <krzk@kernel.org>
15021 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15022 L:      linux-kernel@vger.kernel.org
15023 L:      linux-samsung-soc@vger.kernel.org
15024 S:      Supported
15025 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
15026 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
15027 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
15028 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
15029 F:      drivers/clk/clk-s2mps11.c
15030 F:      drivers/mfd/sec*.c
15031 F:      drivers/regulator/s2m*.c
15032 F:      drivers/regulator/s5m*.c
15033 F:      drivers/rtc/rtc-s5m.c
15034 F:      include/linux/mfd/samsung/
15035
15036 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
15037 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
15038 L:      linux-media@vger.kernel.org
15039 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
15040 S:      Maintained
15041 F:      drivers/media/platform/s3c-camif/
15042 F:      include/media/drv-intf/s3c_camif.h
15043
15044 SAMSUNG S3FWRN5 NFC DRIVER
15045 M:      Robert Baldyga <r.baldyga@samsung.com>
15046 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
15047 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
15048 S:      Supported
15049 F:      drivers/nfc/s3fwrn5
15050
15051 SAMSUNG S5C73M3 CAMERA DRIVER
15052 M:      Kyungmin Park <kyungmin.park@samsung.com>
15053 M:      Andrzej Hajda <a.hajda@samsung.com>
15054 L:      linux-media@vger.kernel.org
15055 S:      Supported
15056 F:      drivers/media/i2c/s5c73m3/*
15057
15058 SAMSUNG S5K5BAF CAMERA DRIVER
15059 M:      Kyungmin Park <kyungmin.park@samsung.com>
15060 M:      Andrzej Hajda <a.hajda@samsung.com>
15061 L:      linux-media@vger.kernel.org
15062 S:      Supported
15063 F:      drivers/media/i2c/s5k5baf.c
15064
15065 SAMSUNG S5P Security SubSystem (SSS) DRIVER
15066 M:      Krzysztof Kozlowski <krzk@kernel.org>
15067 M:      Vladimir Zapolskiy <vz@mleia.com>
15068 M:      Kamil Konieczny <k.konieczny@samsung.com>
15069 L:      linux-crypto@vger.kernel.org
15070 L:      linux-samsung-soc@vger.kernel.org
15071 S:      Maintained
15072 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
15073 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
15074 F:      drivers/crypto/s5p-sss.c
15075
15076 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
15077 M:      Kyungmin Park <kyungmin.park@samsung.com>
15078 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15079 L:      linux-media@vger.kernel.org
15080 S:      Supported
15081 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15082 F:      drivers/media/platform/exynos4-is/
15083
15084 SAMSUNG SOC CLOCK DRIVERS
15085 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15086 M:      Tomasz Figa <tomasz.figa@gmail.com>
15087 M:      Chanwoo Choi <cw00.choi@samsung.com>
15088 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
15089 S:      Supported
15090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
15091 F:      Documentation/devicetree/bindings/clock/exynos*.txt
15092 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
15093 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
15094 F:      drivers/clk/samsung/
15095 F:      include/dt-bindings/clock/exynos*.h
15096
15097 SAMSUNG SPI DRIVERS
15098 M:      Kukjin Kim <kgene@kernel.org>
15099 M:      Krzysztof Kozlowski <krzk@kernel.org>
15100 M:      Andi Shyti <andi@etezian.org>
15101 L:      linux-spi@vger.kernel.org
15102 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
15103 S:      Maintained
15104 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
15105 F:      drivers/spi/spi-s3c*
15106 F:      include/linux/platform_data/spi-s3c64xx.h
15107
15108 SAMSUNG SXGBE DRIVERS
15109 M:      Byungho An <bh74.an@samsung.com>
15110 L:      netdev@vger.kernel.org
15111 S:      Supported
15112 F:      drivers/net/ethernet/samsung/sxgbe/
15113
15114 SAMSUNG THERMAL DRIVER
15115 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15116 L:      linux-pm@vger.kernel.org
15117 L:      linux-samsung-soc@vger.kernel.org
15118 S:      Supported
15119 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
15120 F:      drivers/thermal/samsung/
15121
15122 SAMSUNG USB2 PHY DRIVER
15123 M:      Kamil Debski <kamil@wypas.org>
15124 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15125 L:      linux-kernel@vger.kernel.org
15126 S:      Supported
15127 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
15128 F:      Documentation/driver-api/phy/samsung-usb2.rst
15129 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
15130 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
15131 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
15132 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
15133 F:      drivers/phy/samsung/phy-samsung-usb2.c
15134 F:      drivers/phy/samsung/phy-samsung-usb2.h
15135
15136 SC1200 WDT DRIVER
15137 M:      Zwane Mwaikambo <zwanem@gmail.com>
15138 S:      Maintained
15139 F:      drivers/watchdog/sc1200wdt.c
15140
15141 SCHEDULER
15142 M:      Ingo Molnar <mingo@redhat.com>
15143 M:      Peter Zijlstra <peterz@infradead.org>
15144 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
15145 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
15146 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
15147 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
15148 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
15149 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
15150 L:      linux-kernel@vger.kernel.org
15151 S:      Maintained
15152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
15153 F:      include/linux/preempt.h
15154 F:      include/linux/sched.h
15155 F:      include/linux/wait.h
15156 F:      include/uapi/linux/sched.h
15157 F:      kernel/sched/
15158
15159 SCR24X CHIP CARD INTERFACE DRIVER
15160 M:      Lubomir Rintel <lkundrak@v3.sk>
15161 S:      Supported
15162 F:      drivers/char/pcmcia/scr24x_cs.c
15163
15164 SCSI CDROM DRIVER
15165 M:      Jens Axboe <axboe@kernel.dk>
15166 L:      linux-scsi@vger.kernel.org
15167 S:      Maintained
15168 W:      http://www.kernel.dk
15169 F:      drivers/scsi/sr*
15170
15171 SCSI RDMA PROTOCOL (SRP) INITIATOR
15172 M:      Bart Van Assche <bvanassche@acm.org>
15173 L:      linux-rdma@vger.kernel.org
15174 S:      Supported
15175 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15176 F:      drivers/infiniband/ulp/srp/
15177 F:      include/scsi/srp.h
15178
15179 SCSI RDMA PROTOCOL (SRP) TARGET
15180 M:      Bart Van Assche <bvanassche@acm.org>
15181 L:      linux-rdma@vger.kernel.org
15182 L:      target-devel@vger.kernel.org
15183 S:      Supported
15184 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15185 F:      drivers/infiniband/ulp/srpt/
15186
15187 SCSI SG DRIVER
15188 M:      Doug Gilbert <dgilbert@interlog.com>
15189 L:      linux-scsi@vger.kernel.org
15190 S:      Maintained
15191 W:      http://sg.danny.cz/sg
15192 F:      Documentation/scsi/scsi-generic.rst
15193 F:      drivers/scsi/sg.c
15194 F:      include/scsi/sg.h
15195
15196 SCSI SUBSYSTEM
15197 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
15198 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15199 L:      linux-scsi@vger.kernel.org
15200 S:      Maintained
15201 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
15202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
15203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15204 F:      Documentation/devicetree/bindings/scsi/
15205 F:      drivers/scsi/
15206 F:      include/scsi/
15207
15208 SCSI TAPE DRIVER
15209 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
15210 L:      linux-scsi@vger.kernel.org
15211 S:      Maintained
15212 F:      Documentation/scsi/st.rst
15213 F:      drivers/scsi/st.*
15214 F:      drivers/scsi/st_*.h
15215
15216 SCSI TARGET SUBSYSTEM
15217 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15218 L:      linux-scsi@vger.kernel.org
15219 L:      target-devel@vger.kernel.org
15220 S:      Supported
15221 W:      http://www.linux-iscsi.org
15222 Q:      https://patchwork.kernel.org/project/target-devel/list/
15223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15224 F:      Documentation/target/
15225 F:      drivers/target/
15226 F:      include/target/
15227
15228 SCTP PROTOCOL
15229 M:      Vlad Yasevich <vyasevich@gmail.com>
15230 M:      Neil Horman <nhorman@tuxdriver.com>
15231 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
15232 L:      linux-sctp@vger.kernel.org
15233 S:      Maintained
15234 W:      http://lksctp.sourceforge.net
15235 F:      Documentation/networking/sctp.rst
15236 F:      include/linux/sctp.h
15237 F:      include/net/sctp/
15238 F:      include/uapi/linux/sctp.h
15239 F:      net/sctp/
15240
15241 SCx200 CPU SUPPORT
15242 M:      Jim Cromie <jim.cromie@gmail.com>
15243 S:      Odd Fixes
15244 F:      Documentation/i2c/busses/scx200_acb.rst
15245 F:      arch/x86/platform/scx200/
15246 F:      drivers/i2c/busses/scx200*
15247 F:      drivers/mtd/maps/scx200_docflash.c
15248 F:      drivers/watchdog/scx200_wdt.c
15249 F:      include/linux/scx200.h
15250
15251 SCx200 GPIO DRIVER
15252 M:      Jim Cromie <jim.cromie@gmail.com>
15253 S:      Maintained
15254 F:      drivers/char/scx200_gpio.c
15255 F:      include/linux/scx200_gpio.h
15256
15257 SCx200 HRT CLOCKSOURCE DRIVER
15258 M:      Jim Cromie <jim.cromie@gmail.com>
15259 S:      Maintained
15260 F:      drivers/clocksource/scx200_hrt.c
15261
15262 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15263 M:      Sascha Sommer <saschasommer@freenet.de>
15264 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
15265 S:      Maintained
15266 F:      drivers/mmc/host/sdricoh_cs.c
15267
15268 SECO BOARDS CEC DRIVER
15269 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
15270 S:      Maintained
15271 F:      drivers/media/platform/seco-cec/seco-cec.c
15272 F:      drivers/media/platform/seco-cec/seco-cec.h
15273
15274 SECURE COMPUTING
15275 M:      Kees Cook <keescook@chromium.org>
15276 R:      Andy Lutomirski <luto@amacapital.net>
15277 R:      Will Drewry <wad@chromium.org>
15278 S:      Supported
15279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15280 F:      Documentation/userspace-api/seccomp_filter.rst
15281 F:      include/linux/seccomp.h
15282 F:      include/uapi/linux/seccomp.h
15283 F:      kernel/seccomp.c
15284 F:      tools/testing/selftests/kselftest_harness.h
15285 F:      tools/testing/selftests/seccomp/*
15286 K:      \bsecure_computing
15287 K:      \bTIF_SECCOMP\b
15288
15289 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15290 M:      Al Cooper <alcooperx@gmail.com>
15291 L:      linux-mmc@vger.kernel.org
15292 L:      bcm-kernel-feedback-list@broadcom.com
15293 S:      Maintained
15294 F:      drivers/mmc/host/sdhci-brcmstb*
15295
15296 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15297 M:      Adrian Hunter <adrian.hunter@intel.com>
15298 L:      linux-mmc@vger.kernel.org
15299 S:      Maintained
15300 F:      drivers/mmc/host/sdhci*
15301 F:      include/linux/mmc/sdhci*
15302
15303 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15304 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15305 L:      linux-mmc@vger.kernel.org
15306 S:      Supported
15307 F:      drivers/mmc/host/sdhci-of-at91.c
15308
15309 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15310 M:      Ben Dooks <ben-linux@fluff.org>
15311 M:      Jaehoon Chung <jh80.chung@samsung.com>
15312 L:      linux-mmc@vger.kernel.org
15313 S:      Maintained
15314 F:      drivers/mmc/host/sdhci-s3c*
15315
15316 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15317 M:      Viresh Kumar <vireshk@kernel.org>
15318 L:      linux-mmc@vger.kernel.org
15319 S:      Maintained
15320 F:      drivers/mmc/host/sdhci-spear.c
15321
15322 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15323 M:      Kishon Vijay Abraham I <kishon@ti.com>
15324 L:      linux-mmc@vger.kernel.org
15325 S:      Maintained
15326 F:      drivers/mmc/host/sdhci-omap.c
15327
15328 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15329 M:      Jonathan Derrick <jonathan.derrick@intel.com>
15330 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
15331 L:      linux-block@vger.kernel.org
15332 S:      Supported
15333 F:      block/opal_proto.h
15334 F:      block/sed*
15335 F:      include/linux/sed*
15336 F:      include/uapi/linux/sed*
15337
15338 SECURITY CONTACT
15339 M:      Security Officers <security@kernel.org>
15340 S:      Supported
15341
15342 SECURITY SUBSYSTEM
15343 M:      James Morris <jmorris@namei.org>
15344 M:      "Serge E. Hallyn" <serge@hallyn.com>
15345 L:      linux-security-module@vger.kernel.org (suggested Cc:)
15346 S:      Supported
15347 W:      http://kernsec.org/
15348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15349 F:      security/
15350 X:      security/selinux/
15351
15352 SELINUX SECURITY MODULE
15353 M:      Paul Moore <paul@paul-moore.com>
15354 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
15355 M:      Eric Paris <eparis@parisplace.org>
15356 L:      selinux@vger.kernel.org
15357 S:      Supported
15358 W:      https://selinuxproject.org
15359 W:      https://github.com/SELinuxProject
15360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15361 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15362 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15363 F:      Documentation/admin-guide/LSM/SELinux.rst
15364 F:      include/uapi/linux/selinux_netlink.h
15365 F:      scripts/selinux/
15366 F:      security/selinux/
15367
15368 SENSABLE PHANTOM
15369 M:      Jiri Slaby <jirislaby@gmail.com>
15370 S:      Maintained
15371 F:      drivers/misc/phantom.c
15372 F:      include/uapi/linux/phantom.h
15373
15374 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15375 M:      Tomasz Duszynski <tduszyns@gmail.com>
15376 S:      Maintained
15377 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15378 F:      drivers/iio/chemical/sps30.c
15379
15380 SERIAL DEVICE BUS
15381 M:      Rob Herring <robh@kernel.org>
15382 L:      linux-serial@vger.kernel.org
15383 S:      Maintained
15384 F:      Documentation/devicetree/bindings/serial/serial.yaml
15385 F:      drivers/tty/serdev/
15386 F:      include/linux/serdev.h
15387
15388 SERIAL DRIVERS
15389 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15390 L:      linux-serial@vger.kernel.org
15391 S:      Maintained
15392 F:      Documentation/devicetree/bindings/serial/
15393 F:      drivers/tty/serial/
15394
15395 SERIAL IR RECEIVER
15396 M:      Sean Young <sean@mess.org>
15397 L:      linux-media@vger.kernel.org
15398 S:      Maintained
15399 F:      drivers/media/rc/serial_ir.c
15400
15401 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15402 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15403 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15404 S:      Maintained
15405 F:      Documentation/devicetree/bindings/slimbus/
15406 F:      drivers/slimbus/
15407 F:      include/linux/slimbus.h
15408
15409 SFC NETWORK DRIVER
15410 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
15411 M:      Edward Cree <ecree@solarflare.com>
15412 M:      Martin Habets <mhabets@solarflare.com>
15413 L:      netdev@vger.kernel.org
15414 S:      Supported
15415 F:      drivers/net/ethernet/sfc/
15416
15417 SFF/SFP/SFP+ MODULE SUPPORT
15418 M:      Russell King <linux@armlinux.org.uk>
15419 L:      netdev@vger.kernel.org
15420 S:      Maintained
15421 F:      drivers/net/phy/phylink.c
15422 F:      drivers/net/phy/sfp*
15423 F:      include/linux/phylink.h
15424 F:      include/linux/sfp.h
15425 K:      phylink
15426
15427 SGI GRU DRIVER
15428 M:      Dimitri Sivanich <sivanich@sgi.com>
15429 S:      Maintained
15430 F:      drivers/misc/sgi-gru/
15431
15432 SGI XP/XPC/XPNET DRIVER
15433 M:      Cliff Whickman <cpw@sgi.com>
15434 M:      Robin Holt <robinmholt@gmail.com>
15435 S:      Maintained
15436 F:      drivers/misc/sgi-xp/
15437
15438 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
15439 M:      Ursula Braun <ubraun@linux.ibm.com>
15440 M:      Karsten Graul <kgraul@linux.ibm.com>
15441 L:      linux-s390@vger.kernel.org
15442 S:      Supported
15443 W:      http://www.ibm.com/developerworks/linux/linux390/
15444 F:      net/smc/
15445
15446 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
15447 M:      Linus Walleij <linus.walleij@linaro.org>
15448 L:      linux-iio@vger.kernel.org
15449 S:      Maintained
15450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
15451 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
15452 F:      drivers/iio/light/gp2ap002.c
15453
15454 SHARP RJ54N1CB0C SENSOR DRIVER
15455 M:      Jacopo Mondi <jacopo@jmondi.org>
15456 L:      linux-media@vger.kernel.org
15457 S:      Odd fixes
15458 T:      git git://linuxtv.org/media_tree.git
15459 F:      drivers/media/i2c/rj54n1cb0c.c
15460 F:      include/media/i2c/rj54n1cb0c.h
15461
15462 SH_VOU V4L2 OUTPUT DRIVER
15463 L:      linux-media@vger.kernel.org
15464 S:      Orphan
15465 F:      drivers/media/platform/sh_vou.c
15466 F:      include/media/drv-intf/sh_vou.h
15467
15468 SI2157 MEDIA DRIVER
15469 M:      Antti Palosaari <crope@iki.fi>
15470 L:      linux-media@vger.kernel.org
15471 S:      Maintained
15472 W:      https://linuxtv.org
15473 W:      http://palosaari.fi/linux/
15474 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15475 T:      git git://linuxtv.org/anttip/media_tree.git
15476 F:      drivers/media/tuners/si2157*
15477
15478 SI2165 MEDIA DRIVER
15479 M:      Matthias Schwarzott <zzam@gentoo.org>
15480 L:      linux-media@vger.kernel.org
15481 S:      Maintained
15482 W:      https://linuxtv.org
15483 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15484 F:      drivers/media/dvb-frontends/si2165*
15485
15486 SI2168 MEDIA DRIVER
15487 M:      Antti Palosaari <crope@iki.fi>
15488 L:      linux-media@vger.kernel.org
15489 S:      Maintained
15490 W:      https://linuxtv.org
15491 W:      http://palosaari.fi/linux/
15492 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15493 T:      git git://linuxtv.org/anttip/media_tree.git
15494 F:      drivers/media/dvb-frontends/si2168*
15495
15496 SI470X FM RADIO RECEIVER I2C DRIVER
15497 M:      Hans Verkuil <hverkuil@xs4all.nl>
15498 L:      linux-media@vger.kernel.org
15499 S:      Odd Fixes
15500 W:      https://linuxtv.org
15501 T:      git git://linuxtv.org/media_tree.git
15502 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
15503
15504 SI470X FM RADIO RECEIVER USB DRIVER
15505 M:      Hans Verkuil <hverkuil@xs4all.nl>
15506 L:      linux-media@vger.kernel.org
15507 S:      Maintained
15508 W:      https://linuxtv.org
15509 T:      git git://linuxtv.org/media_tree.git
15510 F:      drivers/media/radio/si470x/radio-si470x-common.c
15511 F:      drivers/media/radio/si470x/radio-si470x-usb.c
15512 F:      drivers/media/radio/si470x/radio-si470x.h
15513
15514 SI4713 FM RADIO TRANSMITTER I2C DRIVER
15515 M:      Eduardo Valentin <edubezval@gmail.com>
15516 L:      linux-media@vger.kernel.org
15517 S:      Odd Fixes
15518 W:      https://linuxtv.org
15519 T:      git git://linuxtv.org/media_tree.git
15520 F:      drivers/media/radio/si4713/si4713.?
15521
15522 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
15523 M:      Eduardo Valentin <edubezval@gmail.com>
15524 L:      linux-media@vger.kernel.org
15525 S:      Odd Fixes
15526 W:      https://linuxtv.org
15527 T:      git git://linuxtv.org/media_tree.git
15528 F:      drivers/media/radio/si4713/radio-platform-si4713.c
15529
15530 SI4713 FM RADIO TRANSMITTER USB DRIVER
15531 M:      Hans Verkuil <hverkuil@xs4all.nl>
15532 L:      linux-media@vger.kernel.org
15533 S:      Maintained
15534 W:      https://linuxtv.org
15535 T:      git git://linuxtv.org/media_tree.git
15536 F:      drivers/media/radio/si4713/radio-usb-si4713.c
15537
15538 SIANO DVB DRIVER
15539 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15540 L:      linux-media@vger.kernel.org
15541 S:      Odd fixes
15542 W:      https://linuxtv.org
15543 T:      git git://linuxtv.org/media_tree.git
15544 F:      drivers/media/common/siano/
15545 F:      drivers/media/mmc/siano/
15546 F:      drivers/media/usb/siano/
15547 F:      drivers/media/usb/siano/
15548
15549 SIFIVE DRIVERS
15550 M:      Palmer Dabbelt <palmer@dabbelt.com>
15551 M:      Paul Walmsley <paul.walmsley@sifive.com>
15552 L:      linux-riscv@lists.infradead.org
15553 S:      Supported
15554 T:      git git://github.com/sifive/riscv-linux.git
15555 N:      sifive
15556 K:      [^@]sifive
15557
15558 SIFIVE FU540 SYSTEM-ON-CHIP
15559 M:      Paul Walmsley <paul.walmsley@sifive.com>
15560 M:      Palmer Dabbelt <palmer@dabbelt.com>
15561 L:      linux-riscv@lists.infradead.org
15562 S:      Supported
15563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
15564 N:      fu540
15565 K:      fu540
15566
15567 SIFIVE PDMA DRIVER
15568 M:      Green Wan <green.wan@sifive.com>
15569 S:      Maintained
15570 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
15571 F:      drivers/dma/sf-pdma/
15572
15573 SILEAD TOUCHSCREEN DRIVER
15574 M:      Hans de Goede <hdegoede@redhat.com>
15575 L:      linux-input@vger.kernel.org
15576 L:      platform-driver-x86@vger.kernel.org
15577 S:      Maintained
15578 F:      drivers/input/touchscreen/silead.c
15579 F:      drivers/platform/x86/touchscreen_dmi.c
15580
15581 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
15582 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
15583 S:      Supported
15584 F:      drivers/staging/wfx/
15585
15586 SILICON MOTION SM712 FRAME BUFFER DRIVER
15587 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15588 M:      Teddy Wang <teddy.wang@siliconmotion.com>
15589 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15590 L:      linux-fbdev@vger.kernel.org
15591 S:      Maintained
15592 F:      Documentation/fb/sm712fb.rst
15593 F:      drivers/video/fbdev/sm712*
15594
15595 SIMPLE FIRMWARE INTERFACE (SFI)
15596 S:      Obsolete
15597 W:      http://simplefirmware.org/
15598 F:      arch/x86/platform/sfi/
15599 F:      drivers/sfi/
15600 F:      include/linux/sfi*.h
15601
15602 SIMPLEFB FB DRIVER
15603 M:      Hans de Goede <hdegoede@redhat.com>
15604 L:      linux-fbdev@vger.kernel.org
15605 S:      Maintained
15606 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
15607 F:      drivers/video/fbdev/simplefb.c
15608 F:      include/linux/platform_data/simplefb.h
15609
15610 SIMTEC EB110ATX (Chalice CATS)
15611 M:      Vincent Sanders <vince@simtec.co.uk>
15612 M:      Simtec Linux Team <linux@simtec.co.uk>
15613 S:      Supported
15614 W:      http://www.simtec.co.uk/products/EB110ATX/
15615
15616 SIMTEC EB2410ITX (BAST)
15617 M:      Vincent Sanders <vince@simtec.co.uk>
15618 M:      Simtec Linux Team <linux@simtec.co.uk>
15619 S:      Supported
15620 W:      http://www.simtec.co.uk/products/EB2410ITX/
15621 F:      arch/arm/mach-s3c24xx/bast-ide.c
15622 F:      arch/arm/mach-s3c24xx/bast-irq.c
15623 F:      arch/arm/mach-s3c24xx/mach-bast.c
15624
15625 SIOX
15626 M:      Thorsten Scherer <t.scherer@eckelmann.de>
15627 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15628 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15629 S:      Supported
15630 F:      drivers/gpio/gpio-siox.c
15631 F:      drivers/siox/*
15632 F:      include/trace/events/siox.h
15633
15634 SIPHASH PRF ROUTINES
15635 M:      Jason A. Donenfeld <Jason@zx2c4.com>
15636 S:      Maintained
15637 F:      include/linux/siphash.h
15638 F:      lib/siphash.c
15639 F:      lib/test_siphash.c
15640
15641 SIS 190 ETHERNET DRIVER
15642 M:      Francois Romieu <romieu@fr.zoreil.com>
15643 L:      netdev@vger.kernel.org
15644 S:      Maintained
15645 F:      drivers/net/ethernet/sis/sis190.c
15646
15647 SIS 900/7016 FAST ETHERNET DRIVER
15648 M:      Daniele Venzano <venza@brownhat.org>
15649 L:      netdev@vger.kernel.org
15650 S:      Maintained
15651 W:      http://www.brownhat.org/sis900.html
15652 F:      drivers/net/ethernet/sis/sis900.*
15653
15654 SIS FRAMEBUFFER DRIVER
15655 M:      Thomas Winischhofer <thomas@winischhofer.net>
15656 S:      Maintained
15657 W:      http://www.winischhofer.net/linuxsisvga.shtml
15658 F:      Documentation/fb/sisfb.rst
15659 F:      drivers/video/fbdev/sis/
15660 F:      include/video/sisfb.h
15661
15662 SIS USB2VGA DRIVER
15663 M:      Thomas Winischhofer <thomas@winischhofer.net>
15664 S:      Maintained
15665 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
15666 F:      drivers/usb/misc/sisusbvga/
15667
15668 SLAB ALLOCATOR
15669 M:      Christoph Lameter <cl@linux.com>
15670 M:      Pekka Enberg <penberg@kernel.org>
15671 M:      David Rientjes <rientjes@google.com>
15672 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
15673 M:      Andrew Morton <akpm@linux-foundation.org>
15674 L:      linux-mm@kvack.org
15675 S:      Maintained
15676 F:      include/linux/sl?b*.h
15677 F:      mm/sl?b*
15678
15679 SLEEPABLE READ-COPY UPDATE (SRCU)
15680 M:      Lai Jiangshan <jiangshanlai@gmail.com>
15681 M:      "Paul E. McKenney" <paulmck@kernel.org>
15682 M:      Josh Triplett <josh@joshtriplett.org>
15683 R:      Steven Rostedt <rostedt@goodmis.org>
15684 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15685 L:      rcu@vger.kernel.org
15686 S:      Supported
15687 W:      http://www.rdrop.com/users/paulmck/RCU/
15688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15689 F:      include/linux/srcu*.h
15690 F:      kernel/rcu/srcu*.c
15691
15692 SMACK SECURITY MODULE
15693 M:      Casey Schaufler <casey@schaufler-ca.com>
15694 L:      linux-security-module@vger.kernel.org
15695 S:      Maintained
15696 W:      http://schaufler-ca.com
15697 T:      git git://github.com/cschaufler/smack-next
15698 F:      Documentation/admin-guide/LSM/Smack.rst
15699 F:      security/smack/
15700
15701 SMC91x ETHERNET DRIVER
15702 M:      Nicolas Pitre <nico@fluxnic.net>
15703 S:      Odd Fixes
15704 F:      drivers/net/ethernet/smsc/smc91x.*
15705
15706 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
15707 M:      Mark Rutland <mark.rutland@arm.com>
15708 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15709 M:      Sudeep Holla <sudeep.holla@arm.com>
15710 L:      linux-arm-kernel@lists.infradead.org
15711 S:      Maintained
15712 F:      drivers/firmware/smccc/
15713 F:      include/linux/arm-smccc.h
15714
15715 SMIA AND SMIA++ IMAGE SENSOR DRIVER
15716 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15717 L:      linux-media@vger.kernel.org
15718 S:      Maintained
15719 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
15720 F:      drivers/media/i2c/smiapp-pll.c
15721 F:      drivers/media/i2c/smiapp-pll.h
15722 F:      drivers/media/i2c/smiapp/
15723 F:      include/uapi/linux/smiapp.h
15724
15725 SMM665 HARDWARE MONITOR DRIVER
15726 M:      Guenter Roeck <linux@roeck-us.net>
15727 L:      linux-hwmon@vger.kernel.org
15728 S:      Maintained
15729 F:      Documentation/hwmon/smm665.rst
15730 F:      drivers/hwmon/smm665.c
15731
15732 SMSC EMC2103 HARDWARE MONITOR DRIVER
15733 M:      Steve Glendinning <steve.glendinning@shawell.net>
15734 L:      linux-hwmon@vger.kernel.org
15735 S:      Maintained
15736 F:      Documentation/hwmon/emc2103.rst
15737 F:      drivers/hwmon/emc2103.c
15738
15739 SMSC SCH5627 HARDWARE MONITOR DRIVER
15740 M:      Hans de Goede <hdegoede@redhat.com>
15741 L:      linux-hwmon@vger.kernel.org
15742 S:      Supported
15743 F:      Documentation/hwmon/sch5627.rst
15744 F:      drivers/hwmon/sch5627.c
15745
15746 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
15747 M:      Steve Glendinning <steve.glendinning@shawell.net>
15748 L:      linux-fbdev@vger.kernel.org
15749 S:      Maintained
15750 F:      drivers/video/fbdev/smscufx.c
15751
15752 SMSC47B397 HARDWARE MONITOR DRIVER
15753 M:      Jean Delvare <jdelvare@suse.com>
15754 L:      linux-hwmon@vger.kernel.org
15755 S:      Maintained
15756 F:      Documentation/hwmon/smsc47b397.rst
15757 F:      drivers/hwmon/smsc47b397.c
15758
15759 SMSC911x ETHERNET DRIVER
15760 M:      Steve Glendinning <steve.glendinning@shawell.net>
15761 L:      netdev@vger.kernel.org
15762 S:      Maintained
15763 F:      drivers/net/ethernet/smsc/smsc911x.*
15764 F:      include/linux/smsc911x.h
15765
15766 SMSC9420 PCI ETHERNET DRIVER
15767 M:      Steve Glendinning <steve.glendinning@shawell.net>
15768 L:      netdev@vger.kernel.org
15769 S:      Maintained
15770 F:      drivers/net/ethernet/smsc/smsc9420.*
15771
15772 SOC-CAMERA V4L2 SUBSYSTEM
15773 L:      linux-media@vger.kernel.org
15774 S:      Orphan
15775 T:      git git://linuxtv.org/media_tree.git
15776 F:      drivers/staging/media/soc_camera/
15777 F:      include/media/soc_camera.h
15778
15779 SOCIONEXT (SNI) AVE NETWORK DRIVER
15780 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15781 L:      netdev@vger.kernel.org
15782 S:      Maintained
15783 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
15784 F:      drivers/net/ethernet/socionext/sni_ave.c
15785
15786 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
15787 M:      Jassi Brar <jaswinder.singh@linaro.org>
15788 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15789 L:      netdev@vger.kernel.org
15790 S:      Maintained
15791 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
15792 F:      drivers/net/ethernet/socionext/netsec.c
15793
15794 SOCIONEXT (SNI) Synquacer SPI DRIVER
15795 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
15796 M:      Jassi Brar <jaswinder.singh@linaro.org>
15797 L:      linux-spi@vger.kernel.org
15798 S:      Maintained
15799 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
15800 F:      drivers/spi/spi-synquacer.c
15801
15802 SOCIONEXT SYNQUACER I2C DRIVER
15803 M:      Ard Biesheuvel <ardb@kernel.org>
15804 L:      linux-i2c@vger.kernel.org
15805 S:      Maintained
15806 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
15807 F:      drivers/i2c/busses/i2c-synquacer.c
15808
15809 SOCIONEXT UNIPHIER SOUND DRIVER
15810 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15811 S:      Orphan
15812 F:      sound/soc/uniphier/
15813
15814 SOEKRIS NET48XX LED SUPPORT
15815 M:      Chris Boot <bootc@bootc.net>
15816 S:      Maintained
15817 F:      drivers/leds/leds-net48xx.c
15818
15819 SOFT-IWARP DRIVER (siw)
15820 M:      Bernard Metzler <bmt@zurich.ibm.com>
15821 L:      linux-rdma@vger.kernel.org
15822 S:      Supported
15823 F:      drivers/infiniband/sw/siw/
15824 F:      include/uapi/rdma/siw-abi.h
15825
15826 SOFT-ROCE DRIVER (rxe)
15827 M:      Zhu Yanjun <yanjunz@mellanox.com>
15828 L:      linux-rdma@vger.kernel.org
15829 S:      Supported
15830 F:      drivers/infiniband/sw/rxe/
15831 F:      include/uapi/rdma/rdma_user_rxe.h
15832
15833 SOFTLOGIC 6x10 MPEG CODEC
15834 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
15835 M:      Anton Sviridenko <anton@corp.bluecherry.net>
15836 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
15837 M:      Andrey Utkin <andrey_utkin@fastmail.com>
15838 M:      Ismael Luceno <ismael@iodev.co.uk>
15839 L:      linux-media@vger.kernel.org
15840 S:      Supported
15841 F:      drivers/media/pci/solo6x10/
15842
15843 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
15844 M:      James Morse <james.morse@arm.com>
15845 L:      linux-arm-kernel@lists.infradead.org
15846 S:      Maintained
15847 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
15848 F:      drivers/firmware/arm_sdei.c
15849 F:      include/linux/arm_sdei.h
15850 F:      include/uapi/linux/arm_sdei.h
15851
15852 SOFTWARE RAID (Multiple Disks) SUPPORT
15853 M:      Song Liu <song@kernel.org>
15854 L:      linux-raid@vger.kernel.org
15855 S:      Supported
15856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
15857 F:      drivers/md/Kconfig
15858 F:      drivers/md/Makefile
15859 F:      drivers/md/md*
15860 F:      drivers/md/raid*
15861 F:      include/linux/raid/
15862 F:      include/uapi/linux/raid/
15863
15864 SOLIDRUN CLEARFOG SUPPORT
15865 M:      Russell King <linux@armlinux.org.uk>
15866 S:      Maintained
15867 F:      arch/arm/boot/dts/armada-388-clearfog*
15868 F:      arch/arm/boot/dts/armada-38x-solidrun-*
15869
15870 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
15871 M:      Russell King <linux@armlinux.org.uk>
15872 S:      Maintained
15873 F:      arch/arm/boot/dts/imx6*-cubox-i*
15874 F:      arch/arm/boot/dts/imx6*-hummingboard*
15875 F:      arch/arm/boot/dts/imx6*-sr-*
15876
15877 SONIC NETWORK DRIVER
15878 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
15879 L:      netdev@vger.kernel.org
15880 S:      Maintained
15881 F:      drivers/net/ethernet/natsemi/sonic.*
15882
15883 SONICS SILICON BACKPLANE DRIVER (SSB)
15884 M:      Michael Buesch <m@bues.ch>
15885 L:      linux-wireless@vger.kernel.org
15886 S:      Maintained
15887 F:      drivers/ssb/
15888 F:      include/linux/ssb/
15889
15890 SONY IMX214 SENSOR DRIVER
15891 M:      Ricardo Ribalda <ribalda@kernel.org>
15892 L:      linux-media@vger.kernel.org
15893 S:      Maintained
15894 T:      git git://linuxtv.org/media_tree.git
15895 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
15896 F:      drivers/media/i2c/imx214.c
15897
15898 SONY IMX219 SENSOR DRIVER
15899 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
15900 L:      linux-media@vger.kernel.org
15901 S:      Maintained
15902 T:      git git://linuxtv.org/media_tree.git
15903 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
15904 F:      drivers/media/i2c/imx219.c
15905
15906 SONY IMX258 SENSOR DRIVER
15907 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15908 L:      linux-media@vger.kernel.org
15909 S:      Maintained
15910 T:      git git://linuxtv.org/media_tree.git
15911 F:      drivers/media/i2c/imx258.c
15912
15913 SONY IMX274 SENSOR DRIVER
15914 M:      Leon Luo <leonl@leopardimaging.com>
15915 L:      linux-media@vger.kernel.org
15916 S:      Maintained
15917 T:      git git://linuxtv.org/media_tree.git
15918 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
15919 F:      drivers/media/i2c/imx274.c
15920
15921 SONY IMX290 SENSOR DRIVER
15922 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15923 L:      linux-media@vger.kernel.org
15924 S:      Maintained
15925 T:      git git://linuxtv.org/media_tree.git
15926 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
15927 F:      drivers/media/i2c/imx290.c
15928
15929 SONY IMX319 SENSOR DRIVER
15930 M:      Bingbu Cao <bingbu.cao@intel.com>
15931 L:      linux-media@vger.kernel.org
15932 S:      Maintained
15933 T:      git git://linuxtv.org/media_tree.git
15934 F:      drivers/media/i2c/imx319.c
15935
15936 SONY IMX355 SENSOR DRIVER
15937 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15938 L:      linux-media@vger.kernel.org
15939 S:      Maintained
15940 T:      git git://linuxtv.org/media_tree.git
15941 F:      drivers/media/i2c/imx355.c
15942
15943 SONY MEMORYSTICK SUBSYSTEM
15944 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15945 M:      Alex Dubov <oakad@yahoo.com>
15946 M:      Ulf Hansson <ulf.hansson@linaro.org>
15947 L:      linux-mmc@vger.kernel.org
15948 S:      Maintained
15949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15950 F:      drivers/memstick/
15951 F:      include/linux/memstick.h
15952
15953 SONY VAIO CONTROL DEVICE DRIVER
15954 M:      Mattia Dongili <malattia@linux.it>
15955 L:      platform-driver-x86@vger.kernel.org
15956 S:      Maintained
15957 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
15958 F:      Documentation/admin-guide/laptops/sony-laptop.rst
15959 F:      drivers/char/sonypi.c
15960 F:      drivers/platform/x86/sony-laptop.c
15961 F:      include/linux/sony-laptop.h
15962
15963 SOUND
15964 M:      Jaroslav Kysela <perex@perex.cz>
15965 M:      Takashi Iwai <tiwai@suse.com>
15966 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15967 S:      Maintained
15968 W:      http://www.alsa-project.org/
15969 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
15970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15971 F:      Documentation/sound/
15972 F:      include/sound/
15973 F:      include/uapi/sound/
15974 F:      sound/
15975
15976 SOUND - COMPRESSED AUDIO
15977 M:      Vinod Koul <vkoul@kernel.org>
15978 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15979 S:      Supported
15980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15981 F:      Documentation/sound/designs/compress-offload.rst
15982 F:      include/sound/compress_driver.h
15983 F:      include/uapi/sound/compress_*
15984 F:      sound/core/compress_offload.c
15985 F:      sound/soc/soc-compress.c
15986
15987 SOUND - DMAENGINE HELPERS
15988 M:      Lars-Peter Clausen <lars@metafoo.de>
15989 S:      Supported
15990 F:      include/sound/dmaengine_pcm.h
15991 F:      sound/core/pcm_dmaengine.c
15992 F:      sound/soc/soc-generic-dmaengine-pcm.c
15993
15994 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
15995 M:      Liam Girdwood <lgirdwood@gmail.com>
15996 M:      Mark Brown <broonie@kernel.org>
15997 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15998 S:      Supported
15999 W:      http://alsa-project.org/main/index.php/ASoC
16000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
16001 F:      Documentation/devicetree/bindings/sound/
16002 F:      Documentation/sound/soc/
16003 F:      include/dt-bindings/sound/
16004 F:      include/sound/soc*
16005 F:      sound/soc/
16006
16007 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
16008 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16009 M:      Liam Girdwood <lgirdwood@gmail.com>
16010 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
16011 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
16012 M:      Daniel Baluta <daniel.baluta@nxp.com>
16013 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
16014 S:      Supported
16015 W:      https://github.com/thesofproject/linux/
16016 F:      sound/soc/sof/
16017
16018 SOUNDWIRE SUBSYSTEM
16019 M:      Vinod Koul <vkoul@kernel.org>
16020 M:      Sanyog Kale <sanyog.r.kale@intel.com>
16021 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16022 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16023 S:      Supported
16024 F:      Documentation/driver-api/soundwire/
16025 F:      drivers/soundwire/
16026 F:      include/linux/soundwire/
16027
16028 SP2 MEDIA DRIVER
16029 M:      Olli Salonen <olli.salonen@iki.fi>
16030 L:      linux-media@vger.kernel.org
16031 S:      Maintained
16032 W:      https://linuxtv.org
16033 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16034 F:      drivers/media/dvb-frontends/sp2*
16035
16036 SPARC + UltraSPARC (sparc/sparc64)
16037 M:      "David S. Miller" <davem@davemloft.net>
16038 L:      sparclinux@vger.kernel.org
16039 S:      Maintained
16040 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
16041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16043 F:      arch/sparc/
16044 F:      drivers/sbus/
16045
16046 SPARC SERIAL DRIVERS
16047 M:      "David S. Miller" <davem@davemloft.net>
16048 L:      sparclinux@vger.kernel.org
16049 S:      Maintained
16050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16052 F:      drivers/tty/serial/suncore.c
16053 F:      drivers/tty/serial/sunhv.c
16054 F:      drivers/tty/serial/sunsab.c
16055 F:      drivers/tty/serial/sunsab.h
16056 F:      drivers/tty/serial/sunsu.c
16057 F:      drivers/tty/serial/sunzilog.c
16058 F:      drivers/tty/serial/sunzilog.h
16059 F:      drivers/tty/vcc.c
16060 F:      include/linux/sunserialcore.h
16061
16062 SPARSE CHECKER
16063 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
16064 L:      linux-sparse@vger.kernel.org
16065 S:      Maintained
16066 W:      https://sparse.docs.kernel.org/
16067 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
16068 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
16069 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
16070 F:      include/linux/compiler.h
16071
16072 SPEAR CLOCK FRAMEWORK SUPPORT
16073 M:      Viresh Kumar <vireshk@kernel.org>
16074 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16075 S:      Maintained
16076 W:      http://www.st.com/spear
16077 F:      drivers/clk/spear/
16078
16079 SPEAR PLATFORM SUPPORT
16080 M:      Viresh Kumar <vireshk@kernel.org>
16081 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
16082 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16083 S:      Maintained
16084 W:      http://www.st.com/spear
16085 F:      arch/arm/boot/dts/spear*
16086 F:      arch/arm/mach-spear/
16087
16088 SPI NOR SUBSYSTEM
16089 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
16090 L:      linux-mtd@lists.infradead.org
16091 S:      Maintained
16092 W:      http://www.linux-mtd.infradead.org/
16093 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
16094 C:      irc://irc.oftc.net/mtd
16095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
16096 F:      drivers/mtd/spi-nor/
16097 F:      include/linux/mtd/spi-nor.h
16098
16099 SPI SUBSYSTEM
16100 M:      Mark Brown <broonie@kernel.org>
16101 L:      linux-spi@vger.kernel.org
16102 S:      Maintained
16103 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
16104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
16105 F:      Documentation/devicetree/bindings/spi/
16106 F:      Documentation/spi/
16107 F:      drivers/spi/
16108 F:      include/linux/spi/
16109 F:      include/uapi/linux/spi/
16110 F:      tools/spi/
16111
16112 SPIDERNET NETWORK DRIVER for CELL
16113 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
16114 L:      netdev@vger.kernel.org
16115 S:      Supported
16116 F:      Documentation/networking/device_drivers/toshiba/spider_net.rst
16117 F:      drivers/net/ethernet/toshiba/spider_net*
16118
16119 SPMI SUBSYSTEM
16120 R:      Stephen Boyd <sboyd@kernel.org>
16121 L:      linux-arm-msm@vger.kernel.org
16122 F:      Documentation/devicetree/bindings/spmi/
16123 F:      drivers/spmi/
16124 F:      include/dt-bindings/spmi/spmi.h
16125 F:      include/linux/spmi.h
16126 F:      include/trace/events/spmi.h
16127
16128 SPU FILE SYSTEM
16129 M:      Jeremy Kerr <jk@ozlabs.org>
16130 L:      linuxppc-dev@lists.ozlabs.org
16131 S:      Supported
16132 W:      http://www.ibm.com/developerworks/power/cell/
16133 F:      Documentation/filesystems/spufs/spufs.rst
16134 F:      arch/powerpc/platforms/cell/spufs/
16135
16136 SQUASHFS FILE SYSTEM
16137 M:      Phillip Lougher <phillip@squashfs.org.uk>
16138 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
16139 S:      Maintained
16140 W:      http://squashfs.org.uk
16141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
16142 F:      Documentation/filesystems/squashfs.rst
16143 F:      fs/squashfs/
16144
16145 SRM (Alpha) environment access
16146 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
16147 S:      Maintained
16148 F:      arch/alpha/kernel/srm_env.c
16149
16150 ST LSM6DSx IMU IIO DRIVER
16151 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
16152 L:      linux-iio@vger.kernel.org
16153 S:      Maintained
16154 W:      http://www.st.com/
16155 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
16156 F:      drivers/iio/imu/st_lsm6dsx/
16157
16158 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
16159 M:      Mickael Guene <mickael.guene@st.com>
16160 L:      linux-media@vger.kernel.org
16161 S:      Maintained
16162 T:      git git://linuxtv.org/media_tree.git
16163 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
16164 F:      drivers/media/i2c/st-mipid02.c
16165
16166 ST STM32 I2C/SMBUS DRIVER
16167 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
16168 L:      linux-i2c@vger.kernel.org
16169 S:      Maintained
16170 F:      drivers/i2c/busses/i2c-stm32*
16171
16172 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
16173 M:      Song Qiang <songqiang1304521@gmail.com>
16174 L:      linux-iio@vger.kernel.org
16175 S:      Maintained
16176 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
16177 F:      drivers/iio/proximity/vl53l0x-i2c.c
16178
16179 STABLE BRANCH
16180 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16181 M:      Sasha Levin <sashal@kernel.org>
16182 L:      stable@vger.kernel.org
16183 S:      Supported
16184 F:      Documentation/process/stable-kernel-rules.rst
16185
16186 STAGING - ATOMISP DRIVER
16187 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16188 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
16189 L:      linux-media@vger.kernel.org
16190 S:      Maintained
16191 F:      drivers/staging/media/atomisp/
16192
16193 STAGING - COMEDI
16194 M:      Ian Abbott <abbotti@mev.co.uk>
16195 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
16196 S:      Odd Fixes
16197 F:      drivers/staging/comedi/
16198
16199 STAGING - FIELDBUS SUBSYSTEM
16200 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16201 S:      Maintained
16202 F:      drivers/staging/fieldbus/*
16203 F:      drivers/staging/fieldbus/Documentation/
16204
16205 STAGING - HMS ANYBUS-S BUS
16206 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16207 S:      Maintained
16208 F:      drivers/staging/fieldbus/anybuss/
16209
16210 STAGING - INDUSTRIAL IO
16211 M:      Jonathan Cameron <jic23@kernel.org>
16212 L:      linux-iio@vger.kernel.org
16213 S:      Odd Fixes
16214 F:      Documentation/devicetree/bindings/staging/iio/
16215 F:      drivers/staging/iio/
16216
16217 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
16218 M:      Marc Dietrich <marvin24@gmx.de>
16219 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
16220 L:      linux-tegra@vger.kernel.org
16221 S:      Maintained
16222 F:      drivers/staging/nvec/
16223
16224 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
16225 M:      Jens Frederich <jfrederich@gmail.com>
16226 M:      Daniel Drake <dsd@laptop.org>
16227 M:      Jon Nettleton <jon.nettleton@gmail.com>
16228 S:      Maintained
16229 W:      http://wiki.laptop.org/go/DCON
16230 F:      drivers/staging/olpc_dcon/
16231
16232 STAGING - REALTEK RTL8188EU DRIVERS
16233 M:      Larry Finger <Larry.Finger@lwfinger.net>
16234 S:      Odd Fixes
16235 F:      drivers/staging/rtl8188eu/
16236
16237 STAGING - REALTEK RTL8712U DRIVERS
16238 M:      Larry Finger <Larry.Finger@lwfinger.net>
16239 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
16240 S:      Odd Fixes
16241 F:      drivers/staging/rtl8712/
16242
16243 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16244 M:      Michael Hennerich <michael.hennerich@analog.com>
16245 M:      Beniamin Bia <beniamin.bia@analog.com>
16246 L:      linux-fbdev@vger.kernel.org
16247 S:      Supported
16248 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16249 F:      drivers/staging/fbtft/fb_seps525.c
16250
16251 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16252 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16253 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16254 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16255 L:      linux-fbdev@vger.kernel.org
16256 S:      Maintained
16257 F:      drivers/staging/sm750fb/
16258
16259 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
16260 M:      William Hubbs <w.d.hubbs@gmail.com>
16261 M:      Chris Brannon <chris@the-brannons.com>
16262 M:      Kirk Reiser <kirk@reisers.ca>
16263 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
16264 L:      speakup@linux-speakup.org
16265 S:      Odd Fixes
16266 W:      http://www.linux-speakup.org/
16267 F:      drivers/staging/speakup/
16268
16269 STAGING - VIA VT665X DRIVERS
16270 M:      Forest Bond <forest@alittletooquiet.net>
16271 S:      Odd Fixes
16272 F:      drivers/staging/vt665?/
16273
16274 STAGING - WILC1000 WIFI DRIVER
16275 M:      Adham Abozaeid <adham.abozaeid@microchip.com>
16276 M:      Ajay Singh <ajay.kathat@microchip.com>
16277 L:      linux-wireless@vger.kernel.org
16278 S:      Supported
16279 F:      drivers/staging/wilc1000/
16280
16281 STAGING SUBSYSTEM
16282 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16283 L:      devel@driverdev.osuosl.org
16284 S:      Supported
16285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16286 F:      drivers/staging/
16287
16288 STARFIRE/DURALAN NETWORK DRIVER
16289 M:      Ion Badulescu <ionut@badula.org>
16290 S:      Odd Fixes
16291 F:      drivers/net/ethernet/adaptec/starfire*
16292
16293 STEC S1220 SKD DRIVER
16294 M:      Damien Le Moal <Damien.LeMoal@wdc.com>
16295 L:      linux-block@vger.kernel.org
16296 S:      Maintained
16297 F:      drivers/block/skd*[ch]
16298
16299 STI AUDIO (ASoC) DRIVERS
16300 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16301 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16302 S:      Maintained
16303 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16304 F:      sound/soc/sti/
16305
16306 STI CEC DRIVER
16307 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
16308 S:      Maintained
16309 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16310 F:      drivers/media/platform/sti/cec/
16311
16312 STK1160 USB VIDEO CAPTURE DRIVER
16313 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16314 L:      linux-media@vger.kernel.org
16315 S:      Maintained
16316 T:      git git://linuxtv.org/media_tree.git
16317 F:      drivers/media/usb/stk1160/
16318
16319 STM32 AUDIO (ASoC) DRIVERS
16320 M:      Olivier Moysan <olivier.moysan@st.com>
16321 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16322 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16323 S:      Maintained
16324 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
16325 F:      sound/soc/stm/
16326
16327 STM32 TIMER/LPTIMER DRIVERS
16328 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
16329 S:      Maintained
16330 F:      Documentation/ABI/testing/*timer-stm32
16331 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16332 F:      drivers/*/stm32-*timer*
16333 F:      drivers/pwm/pwm-stm32*
16334 F:      include/linux/*/stm32-*tim*
16335
16336 STMMAC ETHERNET DRIVER
16337 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
16338 M:      Alexandre Torgue <alexandre.torgue@st.com>
16339 M:      Jose Abreu <joabreu@synopsys.com>
16340 L:      netdev@vger.kernel.org
16341 S:      Supported
16342 W:      http://www.stlinux.com
16343 F:      Documentation/networking/device_drivers/stmicro/
16344 F:      drivers/net/ethernet/stmicro/stmmac/
16345
16346 SUN3/3X
16347 M:      Sam Creasey <sammy@sammy.net>
16348 S:      Maintained
16349 W:      http://sammy.net/sun3/
16350 F:      arch/m68k/include/asm/sun3*
16351 F:      arch/m68k/kernel/*sun3*
16352 F:      arch/m68k/sun3*/
16353 F:      drivers/net/ethernet/i825xx/sun3*
16354
16355 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16356 M:      Hans de Goede <hdegoede@redhat.com>
16357 L:      linux-input@vger.kernel.org
16358 S:      Maintained
16359 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16360 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16361
16362 SUNDANCE NETWORK DRIVER
16363 M:      Denis Kirjanov <kda@linux-powerpc.org>
16364 L:      netdev@vger.kernel.org
16365 S:      Maintained
16366 F:      drivers/net/ethernet/dlink/sundance.c
16367
16368 SUPERH
16369 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
16370 M:      Rich Felker <dalias@libc.org>
16371 L:      linux-sh@vger.kernel.org
16372 S:      Maintained
16373 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16374 F:      Documentation/sh/
16375 F:      arch/sh/
16376 F:      drivers/sh/
16377
16378 SUSPEND TO RAM
16379 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
16380 M:      Len Brown <len.brown@intel.com>
16381 M:      Pavel Machek <pavel@ucw.cz>
16382 L:      linux-pm@vger.kernel.org
16383 S:      Supported
16384 B:      https://bugzilla.kernel.org
16385 F:      Documentation/power/
16386 F:      arch/x86/kernel/acpi/
16387 F:      drivers/base/power/
16388 F:      include/linux/freezer.h
16389 F:      include/linux/pm.h
16390 F:      include/linux/suspend.h
16391 F:      kernel/power/
16392
16393 SVGA HANDLING
16394 M:      Martin Mares <mj@ucw.cz>
16395 L:      linux-video@atrey.karlin.mff.cuni.cz
16396 S:      Maintained
16397 F:      Documentation/admin-guide/svga.rst
16398 F:      arch/x86/boot/video*
16399
16400 SWIOTLB SUBSYSTEM
16401 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
16402 L:      iommu@lists.linux-foundation.org
16403 S:      Supported
16404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16405 F:      arch/*/kernel/pci-swiotlb.c
16406 F:      include/linux/swiotlb.h
16407 F:      kernel/dma/swiotlb.c
16408
16409 SWITCHDEV
16410 M:      Jiri Pirko <jiri@resnulli.us>
16411 M:      Ivan Vecera <ivecera@redhat.com>
16412 L:      netdev@vger.kernel.org
16413 S:      Supported
16414 F:      include/net/switchdev.h
16415 F:      net/switchdev/
16416
16417 SY8106A REGULATOR DRIVER
16418 M:      Icenowy Zheng <icenowy@aosc.io>
16419 S:      Maintained
16420 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16421 F:      drivers/regulator/sy8106a-regulator.c
16422
16423 SYNC FILE FRAMEWORK
16424 M:      Sumit Semwal <sumit.semwal@linaro.org>
16425 R:      Gustavo Padovan <gustavo@padovan.org>
16426 L:      linux-media@vger.kernel.org
16427 L:      dri-devel@lists.freedesktop.org
16428 S:      Maintained
16429 T:      git git://anongit.freedesktop.org/drm/drm-misc
16430 F:      Documentation/driver-api/sync_file.rst
16431 F:      drivers/dma-buf/dma-fence*
16432 F:      drivers/dma-buf/sw_sync.c
16433 F:      drivers/dma-buf/sync_*
16434 F:      include/linux/sync_file.h
16435 F:      include/uapi/linux/sync_file.h
16436
16437 SYNOPSYS ARC ARCHITECTURE
16438 M:      Vineet Gupta <vgupta@synopsys.com>
16439 L:      linux-snps-arc@lists.infradead.org
16440 S:      Supported
16441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
16442 F:      Documentation/devicetree/bindings/arc/*
16443 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
16444 F:      arch/arc/
16445 F:      drivers/clocksource/arc_timer.c
16446 F:      drivers/tty/serial/arc_uart.c
16447
16448 SYNOPSYS ARC HSDK SDP pll clock driver
16449 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16450 S:      Supported
16451 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
16452 F:      drivers/clk/clk-hsdk-pll.c
16453
16454 SYNOPSYS ARC SDP clock driver
16455 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16456 S:      Supported
16457 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
16458 F:      drivers/clk/axs10x/*
16459
16460 SYNOPSYS ARC SDP platform support
16461 M:      Alexey Brodkin <abrodkin@synopsys.com>
16462 S:      Supported
16463 F:      Documentation/devicetree/bindings/arc/axs10*
16464 F:      arch/arc/boot/dts/ax*
16465 F:      arch/arc/plat-axs10x
16466
16467 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
16468 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16469 S:      Supported
16470 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
16471 F:      drivers/reset/reset-axs10x.c
16472
16473 SYNOPSYS CREG GPIO DRIVER
16474 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16475 S:      Maintained
16476 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
16477 F:      drivers/gpio/gpio-creg-snps.c
16478
16479 SYNOPSYS DESIGNWARE 8250 UART DRIVER
16480 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16481 S:      Maintained
16482 F:      drivers/tty/serial/8250/8250_dw.c
16483 F:      drivers/tty/serial/8250/8250_dwlib.*
16484 F:      drivers/tty/serial/8250/8250_lpss.c
16485
16486 SYNOPSYS DESIGNWARE APB GPIO DRIVER
16487 M:      Hoan Tran <hoan@os.amperecomputing.com>
16488 M:      Serge Semin <fancer.lancer@gmail.com>
16489 L:      linux-gpio@vger.kernel.org
16490 S:      Maintained
16491 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
16492 F:      drivers/gpio/gpio-dwapb.c
16493
16494 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
16495 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16496 S:      Maintained
16497 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
16498 F:      drivers/dma/dw-axi-dmac/
16499
16500 SYNOPSYS DESIGNWARE DMAC DRIVER
16501 M:      Viresh Kumar <vireshk@kernel.org>
16502 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16503 S:      Maintained
16504 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
16505 F:      drivers/dma/dw/
16506 F:      include/dt-bindings/dma/dw-dmac.h
16507 F:      include/linux/dma/dw.h
16508 F:      include/linux/platform_data/dma-dw.h
16509
16510 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
16511 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16512 L:      netdev@vger.kernel.org
16513 S:      Supported
16514 F:      drivers/net/ethernet/synopsys/
16515
16516 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
16517 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16518 L:      netdev@vger.kernel.org
16519 S:      Supported
16520 F:      drivers/net/phy/mdio-xpcs.c
16521 F:      include/linux/mdio-xpcs.h
16522
16523 SYNOPSYS DESIGNWARE I2C DRIVER
16524 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
16525 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16526 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
16527 L:      linux-i2c@vger.kernel.org
16528 S:      Maintained
16529 F:      drivers/i2c/busses/i2c-designware-*
16530 F:      include/linux/platform_data/i2c-designware.h
16531
16532 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
16533 M:      Jaehoon Chung <jh80.chung@samsung.com>
16534 L:      linux-mmc@vger.kernel.org
16535 S:      Maintained
16536 F:      drivers/mmc/host/dw_mmc*
16537
16538 SYNOPSYS HSDK RESET CONTROLLER DRIVER
16539 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16540 S:      Supported
16541 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
16542 F:      drivers/reset/reset-hsdk.c
16543 F:      include/dt-bindings/reset/snps,hsdk-reset.h
16544
16545 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
16546 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
16547 M:      Manjunath M B <manjumb@synopsys.com>
16548 L:      linux-mmc@vger.kernel.org
16549 S:      Maintained
16550 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
16551
16552 SYSTEM CONFIGURATION (SYSCON)
16553 M:      Lee Jones <lee.jones@linaro.org>
16554 M:      Arnd Bergmann <arnd@arndb.de>
16555 S:      Supported
16556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
16557 F:      drivers/mfd/syscon.c
16558
16559 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
16560 M:      Sudeep Holla <sudeep.holla@arm.com>
16561 L:      linux-arm-kernel@lists.infradead.org
16562 S:      Maintained
16563 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
16564 F:      drivers/clk/clk-sc[mp]i.c
16565 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
16566 F:      drivers/firmware/arm_scmi/
16567 F:      drivers/firmware/arm_scpi.c
16568 F:      drivers/reset/reset-scmi.c
16569 F:      include/linux/sc[mp]i_protocol.h
16570 F:      include/trace/events/scmi.h
16571
16572 SYSTEM RESET/SHUTDOWN DRIVERS
16573 M:      Sebastian Reichel <sre@kernel.org>
16574 L:      linux-pm@vger.kernel.org
16575 S:      Maintained
16576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16577 F:      Documentation/devicetree/bindings/power/reset/
16578 F:      drivers/power/reset/
16579
16580 SYSTEM TRACE MODULE CLASS
16581 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
16582 S:      Maintained
16583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
16584 F:      Documentation/trace/stm.rst
16585 F:      drivers/hwtracing/stm/
16586 F:      include/linux/stm.h
16587 F:      include/uapi/linux/stm.h
16588
16589 SYSTEM76 ACPI DRIVER
16590 M:      Jeremy Soller <jeremy@system76.com>
16591 M:      System76 Product Development <productdev@system76.com>
16592 L:      platform-driver-x86@vger.kernel.org
16593 S:      Maintained
16594 F:      drivers/platform/x86/system76_acpi.c
16595
16596 SYSV FILESYSTEM
16597 M:      Christoph Hellwig <hch@infradead.org>
16598 S:      Maintained
16599 F:      Documentation/filesystems/sysv-fs.rst
16600 F:      fs/sysv/
16601 F:      include/linux/sysv_fs.h
16602
16603 TASKSTATS STATISTICS INTERFACE
16604 M:      Balbir Singh <bsingharora@gmail.com>
16605 S:      Maintained
16606 F:      Documentation/accounting/taskstats*
16607 F:      include/linux/taskstats*
16608 F:      kernel/taskstats.c
16609
16610 TC subsystem
16611 M:      Jamal Hadi Salim <jhs@mojatatu.com>
16612 M:      Cong Wang <xiyou.wangcong@gmail.com>
16613 M:      Jiri Pirko <jiri@resnulli.us>
16614 L:      netdev@vger.kernel.org
16615 S:      Maintained
16616 F:      include/net/pkt_cls.h
16617 F:      include/net/pkt_sched.h
16618 F:      include/net/tc_act/
16619 F:      include/uapi/linux/pkt_cls.h
16620 F:      include/uapi/linux/pkt_sched.h
16621 F:      include/uapi/linux/tc_act/
16622 F:      include/uapi/linux/tc_ematch/
16623 F:      net/sched/
16624
16625 TC90522 MEDIA DRIVER
16626 M:      Akihiro Tsukada <tskd08@gmail.com>
16627 L:      linux-media@vger.kernel.org
16628 S:      Odd Fixes
16629 F:      drivers/media/dvb-frontends/tc90522*
16630
16631 TCP LOW PRIORITY MODULE
16632 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
16633 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
16634 S:      Maintained
16635 W:      http://tcp-lp-mod.sourceforge.net/
16636 F:      net/ipv4/tcp_lp.c
16637
16638 TDA10071 MEDIA DRIVER
16639 M:      Antti Palosaari <crope@iki.fi>
16640 L:      linux-media@vger.kernel.org
16641 S:      Maintained
16642 W:      https://linuxtv.org
16643 W:      http://palosaari.fi/linux/
16644 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16645 T:      git git://linuxtv.org/anttip/media_tree.git
16646 F:      drivers/media/dvb-frontends/tda10071*
16647
16648 TDA18212 MEDIA DRIVER
16649 M:      Antti Palosaari <crope@iki.fi>
16650 L:      linux-media@vger.kernel.org
16651 S:      Maintained
16652 W:      https://linuxtv.org
16653 W:      http://palosaari.fi/linux/
16654 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16655 T:      git git://linuxtv.org/anttip/media_tree.git
16656 F:      drivers/media/tuners/tda18212*
16657
16658 TDA18218 MEDIA DRIVER
16659 M:      Antti Palosaari <crope@iki.fi>
16660 L:      linux-media@vger.kernel.org
16661 S:      Maintained
16662 W:      https://linuxtv.org
16663 W:      http://palosaari.fi/linux/
16664 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16665 T:      git git://linuxtv.org/anttip/media_tree.git
16666 F:      drivers/media/tuners/tda18218*
16667
16668 TDA18250 MEDIA DRIVER
16669 M:      Olli Salonen <olli.salonen@iki.fi>
16670 L:      linux-media@vger.kernel.org
16671 S:      Maintained
16672 W:      https://linuxtv.org
16673 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16674 T:      git git://linuxtv.org/media_tree.git
16675 F:      drivers/media/tuners/tda18250*
16676
16677 TDA18271 MEDIA DRIVER
16678 M:      Michael Krufky <mkrufky@linuxtv.org>
16679 L:      linux-media@vger.kernel.org
16680 S:      Maintained
16681 W:      https://linuxtv.org
16682 W:      http://github.com/mkrufky
16683 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16684 T:      git git://linuxtv.org/mkrufky/tuners.git
16685 F:      drivers/media/tuners/tda18271*
16686
16687 TDA1997x MEDIA DRIVER
16688 M:      Tim Harvey <tharvey@gateworks.com>
16689 L:      linux-media@vger.kernel.org
16690 S:      Maintained
16691 W:      https://linuxtv.org
16692 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16693 F:      drivers/media/i2c/tda1997x.*
16694
16695 TDA827x MEDIA DRIVER
16696 M:      Michael Krufky <mkrufky@linuxtv.org>
16697 L:      linux-media@vger.kernel.org
16698 S:      Maintained
16699 W:      https://linuxtv.org
16700 W:      http://github.com/mkrufky
16701 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16702 T:      git git://linuxtv.org/mkrufky/tuners.git
16703 F:      drivers/media/tuners/tda8290.*
16704
16705 TDA8290 MEDIA DRIVER
16706 M:      Michael Krufky <mkrufky@linuxtv.org>
16707 L:      linux-media@vger.kernel.org
16708 S:      Maintained
16709 W:      https://linuxtv.org
16710 W:      http://github.com/mkrufky
16711 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16712 T:      git git://linuxtv.org/mkrufky/tuners.git
16713 F:      drivers/media/tuners/tda8290.*
16714
16715 TDA9840 MEDIA DRIVER
16716 M:      Hans Verkuil <hverkuil@xs4all.nl>
16717 L:      linux-media@vger.kernel.org
16718 S:      Maintained
16719 W:      https://linuxtv.org
16720 T:      git git://linuxtv.org/media_tree.git
16721 F:      drivers/media/i2c/tda9840*
16722
16723 TEA5761 TUNER DRIVER
16724 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16725 L:      linux-media@vger.kernel.org
16726 S:      Odd fixes
16727 W:      https://linuxtv.org
16728 T:      git git://linuxtv.org/media_tree.git
16729 F:      drivers/media/tuners/tea5761.*
16730
16731 TEA5767 TUNER DRIVER
16732 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16733 L:      linux-media@vger.kernel.org
16734 S:      Maintained
16735 W:      https://linuxtv.org
16736 T:      git git://linuxtv.org/media_tree.git
16737 F:      drivers/media/tuners/tea5767.*
16738
16739 TEA6415C MEDIA DRIVER
16740 M:      Hans Verkuil <hverkuil@xs4all.nl>
16741 L:      linux-media@vger.kernel.org
16742 S:      Maintained
16743 W:      https://linuxtv.org
16744 T:      git git://linuxtv.org/media_tree.git
16745 F:      drivers/media/i2c/tea6415c*
16746
16747 TEA6420 MEDIA DRIVER
16748 M:      Hans Verkuil <hverkuil@xs4all.nl>
16749 L:      linux-media@vger.kernel.org
16750 S:      Maintained
16751 W:      https://linuxtv.org
16752 T:      git git://linuxtv.org/media_tree.git
16753 F:      drivers/media/i2c/tea6420*
16754
16755 TEAM DRIVER
16756 M:      Jiri Pirko <jiri@resnulli.us>
16757 L:      netdev@vger.kernel.org
16758 S:      Supported
16759 F:      drivers/net/team/
16760 F:      include/linux/if_team.h
16761 F:      include/uapi/linux/if_team.h
16762
16763 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
16764 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
16765 S:      Maintained
16766 F:      arch/x86/platform/ts5500/
16767
16768 TECHNOTREND USB IR RECEIVER
16769 M:      Sean Young <sean@mess.org>
16770 L:      linux-media@vger.kernel.org
16771 S:      Maintained
16772 F:      drivers/media/rc/ttusbir.c
16773
16774 TECHWELL TW9910 VIDEO DECODER
16775 L:      linux-media@vger.kernel.org
16776 S:      Orphan
16777 F:      drivers/media/i2c/tw9910.c
16778 F:      include/media/i2c/tw9910.h
16779
16780 TEE SUBSYSTEM
16781 M:      Jens Wiklander <jens.wiklander@linaro.org>
16782 L:      op-tee@lists.trustedfirmware.org
16783 S:      Maintained
16784 F:      Documentation/tee.txt
16785 F:      drivers/tee/
16786 F:      include/linux/tee_drv.h
16787 F:      include/uapi/linux/tee.h
16788
16789 TEGRA ARCHITECTURE SUPPORT
16790 M:      Thierry Reding <thierry.reding@gmail.com>
16791 M:      Jonathan Hunter <jonathanh@nvidia.com>
16792 L:      linux-tegra@vger.kernel.org
16793 S:      Supported
16794 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
16795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
16796 N:      [^a-z]tegra
16797
16798 TEGRA CLOCK DRIVER
16799 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
16800 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
16801 S:      Supported
16802 F:      drivers/clk/tegra/
16803
16804 TEGRA DMA DRIVERS
16805 M:      Laxman Dewangan <ldewangan@nvidia.com>
16806 M:      Jon Hunter <jonathanh@nvidia.com>
16807 S:      Supported
16808 F:      drivers/dma/tegra*
16809
16810 TEGRA I2C DRIVER
16811 M:      Laxman Dewangan <ldewangan@nvidia.com>
16812 R:      Dmitry Osipenko <digetx@gmail.com>
16813 S:      Supported
16814 F:      drivers/i2c/busses/i2c-tegra.c
16815
16816 TEGRA IOMMU DRIVERS
16817 M:      Thierry Reding <thierry.reding@gmail.com>
16818 L:      linux-tegra@vger.kernel.org
16819 S:      Supported
16820 F:      drivers/iommu/tegra*
16821
16822 TEGRA KBC DRIVER
16823 M:      Laxman Dewangan <ldewangan@nvidia.com>
16824 S:      Supported
16825 F:      drivers/input/keyboard/tegra-kbc.c
16826
16827 TEGRA NAND DRIVER
16828 M:      Stefan Agner <stefan@agner.ch>
16829 M:      Lucas Stach <dev@lynxeye.de>
16830 S:      Maintained
16831 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
16832 F:      drivers/mtd/nand/raw/tegra_nand.c
16833
16834 TEGRA PWM DRIVER
16835 M:      Thierry Reding <thierry.reding@gmail.com>
16836 S:      Supported
16837 F:      drivers/pwm/pwm-tegra.c
16838
16839 TEGRA SERIAL DRIVER
16840 M:      Laxman Dewangan <ldewangan@nvidia.com>
16841 S:      Supported
16842 F:      drivers/tty/serial/serial-tegra.c
16843
16844 TEGRA SPI DRIVER
16845 M:      Laxman Dewangan <ldewangan@nvidia.com>
16846 S:      Supported
16847 F:      drivers/spi/spi-tegra*
16848
16849 TEGRA VIDEO DRIVER
16850 M:      Thierry Reding <thierry.reding@gmail.com>
16851 M:      Jonathan Hunter <jonathanh@nvidia.com>
16852 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
16853 L:      linux-media@vger.kernel.org
16854 L:      linux-tegra@vger.kernel.org
16855 S:      Maintained
16856 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
16857 F:      drivers/staging/media/tegra-video/
16858
16859 TEGRA XUSB PADCTL DRIVER
16860 M:      JC Kuo <jckuo@nvidia.com>
16861 S:      Supported
16862 F:      drivers/phy/tegra/xusb*
16863
16864 TEHUTI ETHERNET DRIVER
16865 M:      Andy Gospodarek <andy@greyhouse.net>
16866 L:      netdev@vger.kernel.org
16867 S:      Supported
16868 F:      drivers/net/ethernet/tehuti/*
16869
16870 TELECOM CLOCK DRIVER FOR MCPL0010
16871 M:      Mark Gross <mark.gross@intel.com>
16872 S:      Supported
16873 F:      drivers/char/tlclk.c
16874
16875 TEMPO SEMICONDUCTOR DRIVERS
16876 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
16877 S:      Maintained
16878 F:      Documentation/devicetree/bindings/sound/tscs*.txt
16879 F:      sound/soc/codecs/tscs*.c
16880 F:      sound/soc/codecs/tscs*.h
16881
16882 TENSILICA XTENSA PORT (xtensa)
16883 M:      Chris Zankel <chris@zankel.net>
16884 M:      Max Filippov <jcmvbkbc@gmail.com>
16885 L:      linux-xtensa@linux-xtensa.org
16886 S:      Maintained
16887 T:      git git://github.com/czankel/xtensa-linux.git
16888 F:      arch/xtensa/
16889 F:      drivers/irqchip/irq-xtensa-*
16890
16891 TEXAS INSTRUMENTS ASoC DRIVERS
16892 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
16893 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16894 S:      Maintained
16895 F:      sound/soc/ti/
16896
16897 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
16898 M:      Ricardo Ribalda <ribalda@kernel.org>
16899 L:      linux-iio@vger.kernel.org
16900 S:      Supported
16901 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
16902 F:      drivers/iio/dac/ti-dac7612.c
16903
16904 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
16905 M:      Nishanth Menon <nm@ti.com>
16906 M:      Tero Kristo <t-kristo@ti.com>
16907 M:      Santosh Shilimkar <ssantosh@kernel.org>
16908 L:      linux-arm-kernel@lists.infradead.org
16909 S:      Maintained
16910 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
16911 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
16912 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
16913 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
16914 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
16915 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
16916 F:      drivers/clk/keystone/sci-clk.c
16917 F:      drivers/firmware/ti_sci*
16918 F:      drivers/irqchip/irq-ti-sci-inta.c
16919 F:      drivers/irqchip/irq-ti-sci-intr.c
16920 F:      drivers/reset/reset-ti-sci.c
16921 F:      drivers/soc/ti/ti_sci_inta_msi.c
16922 F:      drivers/soc/ti/ti_sci_pm_domains.c
16923 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
16924 F:      include/linux/soc/ti/ti_sci_inta_msi.h
16925 F:      include/linux/soc/ti/ti_sci_protocol.h
16926
16927 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
16928 M:      Hans Verkuil <hverkuil@xs4all.nl>
16929 L:      linux-media@vger.kernel.org
16930 S:      Maintained
16931 W:      https://linuxtv.org
16932 T:      git git://linuxtv.org/media_tree.git
16933 F:      drivers/media/radio/radio-raremono.c
16934
16935 THERMAL
16936 M:      Zhang Rui <rui.zhang@intel.com>
16937 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
16938 R:      Amit Kucheria <amit.kucheria@verdurent.com>
16939 L:      linux-pm@vger.kernel.org
16940 S:      Supported
16941 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
16943 F:      Documentation/devicetree/bindings/thermal/
16944 F:      drivers/thermal/
16945 F:      include/linux/cpu_cooling.h
16946 F:      include/linux/thermal.h
16947 F:      include/uapi/linux/thermal.h
16948
16949 THERMAL DRIVER FOR AMLOGIC SOCS
16950 M:      Guillaume La Roque <glaroque@baylibre.com>
16951 L:      linux-pm@vger.kernel.org
16952 L:      linux-amlogic@lists.infradead.org
16953 S:      Supported
16954 W:      http://linux-meson.com/
16955 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
16956 F:      drivers/thermal/amlogic_thermal.c
16957
16958 THERMAL/CPU_COOLING
16959 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
16960 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
16961 M:      Viresh Kumar <viresh.kumar@linaro.org>
16962 M:      Javi Merino <javi.merino@kernel.org>
16963 L:      linux-pm@vger.kernel.org
16964 S:      Supported
16965 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
16966 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
16967 F:      drivers/thermal/cpufreq_cooling.c
16968 F:      drivers/thermal/cpuidle_cooling.c
16969 F:      include/linux/cpu_cooling.h
16970
16971 THINKPAD ACPI EXTRAS DRIVER
16972 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
16973 L:      ibm-acpi-devel@lists.sourceforge.net
16974 L:      platform-driver-x86@vger.kernel.org
16975 S:      Maintained
16976 W:      http://ibm-acpi.sourceforge.net
16977 W:      http://thinkwiki.org/wiki/Ibm-acpi
16978 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
16979 F:      drivers/platform/x86/thinkpad_acpi.c
16980
16981 THUNDERBOLT DRIVER
16982 M:      Andreas Noever <andreas.noever@gmail.com>
16983 M:      Michael Jamet <michael.jamet@intel.com>
16984 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16985 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16986 L:      linux-usb@vger.kernel.org
16987 S:      Maintained
16988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
16989 F:      Documentation/admin-guide/thunderbolt.rst
16990 F:      drivers/thunderbolt/
16991 F:      include/linux/thunderbolt.h
16992
16993 THUNDERBOLT NETWORK DRIVER
16994 M:      Michael Jamet <michael.jamet@intel.com>
16995 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16996 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16997 L:      netdev@vger.kernel.org
16998 S:      Maintained
16999 F:      drivers/net/thunderbolt.c
17000
17001 THUNDERX GPIO DRIVER
17002 M:      Robert Richter <rrichter@marvell.com>
17003 S:      Maintained
17004 F:      drivers/gpio/gpio-thunderx.c
17005
17006 TI AM437X VPFE DRIVER
17007 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17008 L:      linux-media@vger.kernel.org
17009 S:      Maintained
17010 W:      https://linuxtv.org
17011 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17012 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17013 F:      drivers/media/platform/am437x/
17014
17015 TI BANDGAP AND THERMAL DRIVER
17016 M:      Eduardo Valentin <edubezval@gmail.com>
17017 M:      Keerthy <j-keerthy@ti.com>
17018 L:      linux-pm@vger.kernel.org
17019 L:      linux-omap@vger.kernel.org
17020 S:      Maintained
17021 F:      drivers/thermal/ti-soc-thermal/
17022
17023 TI BQ27XXX POWER SUPPLY DRIVER
17024 R:      Andrew F. Davis <afd@ti.com>
17025 F:      drivers/power/supply/bq27xxx_battery.c
17026 F:      drivers/power/supply/bq27xxx_battery_i2c.c
17027 F:      include/linux/power/bq27xxx_battery.h
17028
17029 TI CDCE706 CLOCK DRIVER
17030 M:      Max Filippov <jcmvbkbc@gmail.com>
17031 S:      Maintained
17032 F:      drivers/clk/clk-cdce706.c
17033
17034 TI CLOCK DRIVER
17035 M:      Tero Kristo <t-kristo@ti.com>
17036 L:      linux-omap@vger.kernel.org
17037 S:      Maintained
17038 F:      drivers/clk/ti/
17039 F:      include/linux/clk/ti.h
17040
17041 TI DAVINCI MACHINE SUPPORT
17042 M:      Sekhar Nori <nsekhar@ti.com>
17043 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
17044 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17045 S:      Supported
17046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
17047 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
17048 F:      arch/arm/boot/dts/da850*
17049 F:      arch/arm/mach-davinci/
17050 F:      drivers/i2c/busses/i2c-davinci.c
17051
17052 TI DAVINCI SERIES CLOCK DRIVER
17053 M:      David Lechner <david@lechnology.com>
17054 R:      Sekhar Nori <nsekhar@ti.com>
17055 S:      Maintained
17056 F:      Documentation/devicetree/bindings/clock/ti/davinci/
17057 F:      drivers/clk/davinci/
17058
17059 TI DAVINCI SERIES GPIO DRIVER
17060 M:      Keerthy <j-keerthy@ti.com>
17061 L:      linux-gpio@vger.kernel.org
17062 S:      Maintained
17063 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
17064 F:      drivers/gpio/gpio-davinci.c
17065
17066 TI DAVINCI SERIES MEDIA DRIVER
17067 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17068 L:      linux-media@vger.kernel.org
17069 S:      Maintained
17070 W:      https://linuxtv.org
17071 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17072 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17073 F:      drivers/media/platform/davinci/
17074 F:      include/media/davinci/
17075
17076 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
17077 R:      David Lechner <david@lechnology.com>
17078 L:      linux-iio@vger.kernel.org
17079 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
17080 F:      drivers/counter/ti-eqep.c
17081
17082 TI ETHERNET SWITCH DRIVER (CPSW)
17083 R:      Grygorii Strashko <grygorii.strashko@ti.com>
17084 L:      linux-omap@vger.kernel.org
17085 L:      netdev@vger.kernel.org
17086 S:      Maintained
17087 F:      drivers/net/ethernet/ti/cpsw*
17088 F:      drivers/net/ethernet/ti/davinci*
17089
17090 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
17091 M:      Alex Dubov <oakad@yahoo.com>
17092 S:      Maintained
17093 W:      http://tifmxx.berlios.de/
17094 F:      drivers/memstick/host/tifm_ms.c
17095 F:      drivers/misc/tifm*
17096 F:      drivers/mmc/host/tifm_sd.c
17097 F:      include/linux/tifm.h
17098
17099 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
17100 M:      Santosh Shilimkar <ssantosh@kernel.org>
17101 L:      linux-kernel@vger.kernel.org
17102 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17103 S:      Maintained
17104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
17105 F:      drivers/soc/ti/*
17106
17107 TI LM49xxx FAMILY ASoC CODEC DRIVERS
17108 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
17109 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
17110 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17111 S:      Maintained
17112 F:      sound/soc/codecs/isabelle*
17113 F:      sound/soc/codecs/lm49453*
17114
17115 TI LP855x BACKLIGHT DRIVER
17116 M:      Milo Kim <milo.kim@ti.com>
17117 S:      Maintained
17118 F:      Documentation/driver-api/backlight/lp855x-driver.rst
17119 F:      drivers/video/backlight/lp855x_bl.c
17120 F:      include/linux/platform_data/lp855x.h
17121
17122 TI LP8727 CHARGER DRIVER
17123 M:      Milo Kim <milo.kim@ti.com>
17124 S:      Maintained
17125 F:      drivers/power/supply/lp8727_charger.c
17126 F:      include/linux/platform_data/lp8727.h
17127
17128 TI LP8788 MFD DRIVER
17129 M:      Milo Kim <milo.kim@ti.com>
17130 S:      Maintained
17131 F:      drivers/iio/adc/lp8788_adc.c
17132 F:      drivers/leds/leds-lp8788.c
17133 F:      drivers/mfd/lp8788*.c
17134 F:      drivers/power/supply/lp8788-charger.c
17135 F:      drivers/regulator/lp8788-*.c
17136 F:      include/linux/mfd/lp8788*.h
17137
17138 TI NETCP ETHERNET DRIVER
17139 M:      Wingman Kwok <w-kwok2@ti.com>
17140 M:      Murali Karicheri <m-karicheri2@ti.com>
17141 L:      netdev@vger.kernel.org
17142 S:      Maintained
17143 F:      drivers/net/ethernet/ti/netcp*
17144
17145 TI PCM3060 ASoC CODEC DRIVER
17146 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
17147 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17148 S:      Maintained
17149 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
17150 F:      sound/soc/codecs/pcm3060*
17151
17152 TI TAS571X FAMILY ASoC CODEC DRIVER
17153 M:      Kevin Cernekee <cernekee@chromium.org>
17154 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17155 S:      Odd Fixes
17156 F:      sound/soc/codecs/tas571x*
17157
17158 TI TCAN4X5X DEVICE DRIVER
17159 M:      Dan Murphy <dmurphy@ti.com>
17160 L:      linux-can@vger.kernel.org
17161 S:      Maintained
17162 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
17163 F:      drivers/net/can/m_can/tcan4x5x.c
17164
17165 TI TRF7970A NFC DRIVER
17166 M:      Mark Greer <mgreer@animalcreek.com>
17167 L:      linux-wireless@vger.kernel.org
17168 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
17169 S:      Supported
17170 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
17171 F:      drivers/nfc/trf7970a.c
17172
17173 TI TWL4030 SERIES SOC CODEC DRIVER
17174 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
17175 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17176 S:      Maintained
17177 F:      sound/soc/codecs/twl4030*
17178
17179 TI VPE/CAL DRIVERS
17180 M:      Benoit Parrot <bparrot@ti.com>
17181 L:      linux-media@vger.kernel.org
17182 S:      Maintained
17183 W:      http://linuxtv.org/
17184 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17185 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
17186 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
17187 F:      drivers/media/platform/ti-vpe/
17188
17189 TI WILINK WIRELESS DRIVERS
17190 L:      linux-wireless@vger.kernel.org
17191 S:      Orphan
17192 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
17193 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
17194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
17195 F:      drivers/net/wireless/ti/
17196 F:      include/linux/wl12xx.h
17197
17198 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
17199 M:      John Stultz <john.stultz@linaro.org>
17200 M:      Thomas Gleixner <tglx@linutronix.de>
17201 R:      Stephen Boyd <sboyd@kernel.org>
17202 L:      linux-kernel@vger.kernel.org
17203 S:      Supported
17204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
17205 F:      include/linux/clocksource.h
17206 F:      include/linux/time.h
17207 F:      include/linux/timex.h
17208 F:      include/uapi/linux/time.h
17209 F:      include/uapi/linux/timex.h
17210 F:      kernel/time/alarmtimer.c
17211 F:      kernel/time/clocksource.c
17212 F:      kernel/time/ntp.c
17213 F:      kernel/time/time*.c
17214 F:      tools/testing/selftests/timers/
17215
17216 TIPC NETWORK LAYER
17217 M:      Jon Maloy <jmaloy@redhat.com>
17218 M:      Ying Xue <ying.xue@windriver.com>
17219 L:      netdev@vger.kernel.org (core kernel code)
17220 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
17221 S:      Maintained
17222 W:      http://tipc.sourceforge.net/
17223 F:      include/uapi/linux/tipc*.h
17224 F:      net/tipc/
17225
17226 TLAN NETWORK DRIVER
17227 M:      Samuel Chessman <chessman@tux.org>
17228 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
17229 S:      Maintained
17230 W:      http://sourceforge.net/projects/tlan/
17231 F:      Documentation/networking/device_drivers/ti/tlan.rst
17232 F:      drivers/net/ethernet/ti/tlan.*
17233
17234 TM6000 VIDEO4LINUX DRIVER
17235 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17236 L:      linux-media@vger.kernel.org
17237 S:      Odd fixes
17238 W:      https://linuxtv.org
17239 T:      git git://linuxtv.org/media_tree.git
17240 F:      Documentation/admin-guide/media/tm6000*
17241 F:      drivers/media/usb/tm6000/
17242
17243 TMIO/SDHI MMC DRIVER
17244 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17245 L:      linux-mmc@vger.kernel.org
17246 S:      Supported
17247 F:      drivers/mmc/host/renesas_sdhi*
17248 F:      drivers/mmc/host/tmio_mmc*
17249 F:      include/linux/mfd/tmio.h
17250
17251 TMP401 HARDWARE MONITOR DRIVER
17252 M:      Guenter Roeck <linux@roeck-us.net>
17253 L:      linux-hwmon@vger.kernel.org
17254 S:      Maintained
17255 F:      Documentation/hwmon/tmp401.rst
17256 F:      drivers/hwmon/tmp401.c
17257
17258 TMP513 HARDWARE MONITOR DRIVER
17259 M:      Eric Tremblay <etremblay@distech-controls.com>
17260 L:      linux-hwmon@vger.kernel.org
17261 S:      Maintained
17262 F:      Documentation/hwmon/tmp513.rst
17263 F:      drivers/hwmon/tmp513.c
17264
17265 TMPFS (SHMEM FILESYSTEM)
17266 M:      Hugh Dickins <hughd@google.com>
17267 L:      linux-mm@kvack.org
17268 S:      Maintained
17269 F:      include/linux/shmem_fs.h
17270 F:      mm/shmem.c
17271
17272 TOMOYO SECURITY MODULE
17273 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
17274 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
17275 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
17276 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
17277 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
17278 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
17279 S:      Maintained
17280 W:      https://tomoyo.osdn.jp/
17281 F:      security/tomoyo/
17282
17283 TOPSTAR LAPTOP EXTRAS DRIVER
17284 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17285 L:      platform-driver-x86@vger.kernel.org
17286 S:      Maintained
17287 F:      drivers/platform/x86/topstar-laptop.c
17288
17289 TORTURE-TEST MODULES
17290 M:      Davidlohr Bueso <dave@stgolabs.net>
17291 M:      "Paul E. McKenney" <paulmck@kernel.org>
17292 M:      Josh Triplett <josh@joshtriplett.org>
17293 L:      linux-kernel@vger.kernel.org
17294 S:      Supported
17295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17296 F:      Documentation/RCU/torture.txt
17297 F:      kernel/locking/locktorture.c
17298 F:      kernel/rcu/rcuperf.c
17299 F:      kernel/rcu/rcutorture.c
17300 F:      kernel/torture.c
17301
17302 TOSHIBA ACPI EXTRAS DRIVER
17303 M:      Azael Avalos <coproscefalo@gmail.com>
17304 L:      platform-driver-x86@vger.kernel.org
17305 S:      Maintained
17306 F:      drivers/platform/x86/toshiba_acpi.c
17307
17308 TOSHIBA BLUETOOTH DRIVER
17309 M:      Azael Avalos <coproscefalo@gmail.com>
17310 L:      platform-driver-x86@vger.kernel.org
17311 S:      Maintained
17312 F:      drivers/platform/x86/toshiba_bluetooth.c
17313
17314 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17315 M:      Azael Avalos <coproscefalo@gmail.com>
17316 L:      platform-driver-x86@vger.kernel.org
17317 S:      Maintained
17318 F:      drivers/platform/x86/toshiba_haps.c
17319
17320 TOSHIBA SMM DRIVER
17321 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
17322 S:      Maintained
17323 W:      http://www.buzzard.org.uk/toshiba/
17324 F:      drivers/char/toshiba.c
17325 F:      include/linux/toshiba.h
17326 F:      include/uapi/linux/toshiba.h
17327
17328 TOSHIBA TC358743 DRIVER
17329 M:      Mats Randgaard <matrandg@cisco.com>
17330 L:      linux-media@vger.kernel.org
17331 S:      Maintained
17332 F:      drivers/media/i2c/tc358743*
17333 F:      include/media/i2c/tc358743.h
17334
17335 TOSHIBA WMI HOTKEYS DRIVER
17336 M:      Azael Avalos <coproscefalo@gmail.com>
17337 L:      platform-driver-x86@vger.kernel.org
17338 S:      Maintained
17339 F:      drivers/platform/x86/toshiba-wmi.c
17340
17341 TPM DEVICE DRIVER
17342 M:      Peter Huewe <peterhuewe@gmx.de>
17343 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
17344 R:      Jason Gunthorpe <jgg@ziepe.ca>
17345 L:      linux-integrity@vger.kernel.org
17346 S:      Maintained
17347 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17348 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
17349 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
17350 F:      drivers/char/tpm/
17351
17352 TRACING
17353 M:      Steven Rostedt <rostedt@goodmis.org>
17354 M:      Ingo Molnar <mingo@redhat.com>
17355 S:      Maintained
17356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17357 F:      Documentation/trace/ftrace.rst
17358 F:      arch/*/*/*/ftrace.h
17359 F:      arch/*/kernel/ftrace.c
17360 F:      include/*/ftrace.h
17361 F:      include/linux/trace*.h
17362 F:      include/trace/
17363 F:      kernel/trace/
17364 F:      tools/testing/selftests/ftrace/
17365
17366 TRACING MMIO ACCESSES (MMIOTRACE)
17367 M:      Steven Rostedt <rostedt@goodmis.org>
17368 M:      Ingo Molnar <mingo@kernel.org>
17369 R:      Karol Herbst <karolherbst@gmail.com>
17370 R:      Pekka Paalanen <ppaalanen@gmail.com>
17371 L:      linux-kernel@vger.kernel.org
17372 L:      nouveau@lists.freedesktop.org
17373 S:      Maintained
17374 F:      arch/x86/mm/kmmio.c
17375 F:      arch/x86/mm/mmio-mod.c
17376 F:      arch/x86/mm/testmmiotrace.c
17377 F:      include/linux/mmiotrace.h
17378 F:      kernel/trace/trace_mmiotrace.c
17379
17380 TRIVIAL PATCHES
17381 M:      Jiri Kosina <trivial@kernel.org>
17382 S:      Maintained
17383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17384 K:      ^Subject:.*(?i)trivial
17385
17386 TTY LAYER
17387 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17388 M:      Jiri Slaby <jslaby@suse.com>
17389 S:      Supported
17390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17391 F:      Documentation/driver-api/serial/
17392 F:      drivers/tty/
17393 F:      drivers/tty/serial/serial_core.c
17394 F:      include/linux/serial.h
17395 F:      include/linux/serial_core.h
17396 F:      include/linux/tty.h
17397 F:      include/uapi/linux/serial.h
17398 F:      include/uapi/linux/serial_core.h
17399 F:      include/uapi/linux/tty.h
17400
17401 TUA9001 MEDIA DRIVER
17402 M:      Antti Palosaari <crope@iki.fi>
17403 L:      linux-media@vger.kernel.org
17404 S:      Maintained
17405 W:      https://linuxtv.org
17406 W:      http://palosaari.fi/linux/
17407 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17408 T:      git git://linuxtv.org/anttip/media_tree.git
17409 F:      drivers/media/tuners/tua9001*
17410
17411 TULIP NETWORK DRIVERS
17412 L:      netdev@vger.kernel.org
17413 L:      linux-parisc@vger.kernel.org
17414 S:      Orphan
17415 F:      drivers/net/ethernet/dec/tulip/
17416
17417 TUN/TAP driver
17418 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
17419 S:      Maintained
17420 W:      http://vtun.sourceforge.net/tun
17421 F:      Documentation/networking/tuntap.rst
17422 F:      arch/um/os-Linux/drivers/
17423
17424 TURBOCHANNEL SUBSYSTEM
17425 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
17426 M:      Ralf Baechle <ralf@linux-mips.org>
17427 L:      linux-mips@vger.kernel.org
17428 S:      Maintained
17429 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
17430 F:      drivers/tc/
17431 F:      include/linux/tc.h
17432
17433 TURBOSTAT UTILITY
17434 M:      "Len Brown" <lenb@kernel.org>
17435 L:      linux-pm@vger.kernel.org
17436 S:      Supported
17437 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17438 B:      https://bugzilla.kernel.org
17439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
17440 F:      tools/power/x86/turbostat/
17441
17442 TW5864 VIDEO4LINUX DRIVER
17443 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17444 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17445 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
17446 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17447 L:      linux-media@vger.kernel.org
17448 S:      Supported
17449 F:      drivers/media/pci/tw5864/
17450
17451 TW68 VIDEO4LINUX DRIVER
17452 M:      Hans Verkuil <hverkuil@xs4all.nl>
17453 L:      linux-media@vger.kernel.org
17454 S:      Odd Fixes
17455 W:      https://linuxtv.org
17456 T:      git git://linuxtv.org/media_tree.git
17457 F:      drivers/media/pci/tw68/
17458
17459 TW686X VIDEO4LINUX DRIVER
17460 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17461 L:      linux-media@vger.kernel.org
17462 S:      Maintained
17463 W:      http://linuxtv.org
17464 T:      git git://linuxtv.org/media_tree.git
17465 F:      drivers/media/pci/tw686x/
17466
17467 UACCE ACCELERATOR FRAMEWORK
17468 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
17469 M:      Zhou Wang <wangzhou1@hisilicon.com>
17470 L:      linux-accelerators@lists.ozlabs.org
17471 L:      linux-kernel@vger.kernel.org
17472 S:      Maintained
17473 F:      Documentation/ABI/testing/sysfs-driver-uacce
17474 F:      Documentation/misc-devices/uacce.rst
17475 F:      drivers/misc/uacce/
17476 F:      include/linux/uacce.h
17477 F:      include/uapi/misc/uacce/
17478
17479 UBI FILE SYSTEM (UBIFS)
17480 M:      Richard Weinberger <richard@nod.at>
17481 L:      linux-mtd@lists.infradead.org
17482 S:      Supported
17483 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
17484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17486 F:      Documentation/filesystems/ubifs.rst
17487 F:      fs/ubifs/
17488
17489 UCLINUX (M68KNOMMU AND COLDFIRE)
17490 M:      Greg Ungerer <gerg@linux-m68k.org>
17491 L:      linux-m68k@lists.linux-m68k.org
17492 L:      uclinux-dev@uclinux.org  (subscribers-only)
17493 S:      Maintained
17494 W:      http://www.linux-m68k.org/
17495 W:      http://www.uclinux.org/
17496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
17497 F:      arch/m68k/*/*_no.*
17498 F:      arch/m68k/68*/
17499 F:      arch/m68k/coldfire/
17500 F:      arch/m68k/include/asm/*_no.*
17501
17502 UDF FILESYSTEM
17503 M:      Jan Kara <jack@suse.com>
17504 S:      Maintained
17505 F:      Documentation/filesystems/udf.rst
17506 F:      fs/udf/
17507
17508 UDRAW TABLET
17509 M:      Bastien Nocera <hadess@hadess.net>
17510 L:      linux-input@vger.kernel.org
17511 S:      Maintained
17512 F:      drivers/hid/hid-udraw-ps3.c
17513
17514 UFS FILESYSTEM
17515 M:      Evgeniy Dushistov <dushistov@mail.ru>
17516 S:      Maintained
17517 F:      Documentation/admin-guide/ufs.rst
17518 F:      fs/ufs/
17519
17520 UHID USERSPACE HID IO DRIVER
17521 M:      David Rheinsberg <david.rheinsberg@gmail.com>
17522 L:      linux-input@vger.kernel.org
17523 S:      Maintained
17524 F:      drivers/hid/uhid.c
17525 F:      include/uapi/linux/uhid.h
17526
17527 ULPI BUS
17528 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17529 L:      linux-usb@vger.kernel.org
17530 S:      Maintained
17531 F:      drivers/usb/common/ulpi.c
17532 F:      include/linux/ulpi/
17533
17534 UNICODE SUBSYSTEM
17535 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
17536 L:      linux-fsdevel@vger.kernel.org
17537 S:      Supported
17538 F:      fs/unicode/
17539
17540 UNICORE32 ARCHITECTURE
17541 M:      Guan Xuetao <gxt@pku.edu.cn>
17542 S:      Maintained
17543 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
17544 T:      git git://github.com/gxt/linux.git
17545 F:      arch/unicore32/
17546
17547 UNIFDEF
17548 M:      Tony Finch <dot@dotat.at>
17549 S:      Maintained
17550 W:      http://dotat.at/prog/unifdef
17551 F:      scripts/unifdef.c
17552
17553 UNIFORM CDROM DRIVER
17554 M:      Jens Axboe <axboe@kernel.dk>
17555 S:      Maintained
17556 W:      http://www.kernel.dk
17557 F:      Documentation/cdrom/
17558 F:      drivers/cdrom/cdrom.c
17559 F:      include/linux/cdrom.h
17560 F:      include/uapi/linux/cdrom.h
17561
17562 UNISYS S-PAR DRIVERS
17563 M:      David Kershner <david.kershner@unisys.com>
17564 L:      sparmaintainer@unisys.com (Unisys internal)
17565 S:      Supported
17566 F:      drivers/staging/unisys/
17567 F:      drivers/visorbus/
17568 F:      include/linux/visorbus.h
17569
17570 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
17571 R:      Alim Akhtar <alim.akhtar@samsung.com>
17572 R:      Avri Altman <avri.altman@wdc.com>
17573 L:      linux-scsi@vger.kernel.org
17574 S:      Supported
17575 F:      Documentation/scsi/ufs.rst
17576 F:      drivers/scsi/ufs/
17577
17578 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
17579 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
17580 L:      linux-scsi@vger.kernel.org
17581 S:      Supported
17582 F:      drivers/scsi/ufs/*dwc*
17583
17584 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
17585 M:      Stanley Chu <stanley.chu@mediatek.com>
17586 L:      linux-scsi@vger.kernel.org
17587 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
17588 S:      Maintained
17589 F:      drivers/scsi/ufs/ufs-mediatek*
17590
17591 UNSORTED BLOCK IMAGES (UBI)
17592 M:      Richard Weinberger <richard@nod.at>
17593 L:      linux-mtd@lists.infradead.org
17594 S:      Supported
17595 W:      http://www.linux-mtd.infradead.org/
17596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17598 F:      drivers/mtd/ubi/
17599 F:      include/linux/mtd/ubi.h
17600 F:      include/uapi/mtd/ubi-user.h
17601
17602 USB "USBNET" DRIVER FRAMEWORK
17603 M:      Oliver Neukum <oneukum@suse.com>
17604 L:      netdev@vger.kernel.org
17605 S:      Maintained
17606 W:      http://www.linux-usb.org/usbnet
17607 F:      drivers/net/usb/usbnet.c
17608 F:      include/linux/usb/usbnet.h
17609
17610 USB ACM DRIVER
17611 M:      Oliver Neukum <oneukum@suse.com>
17612 L:      linux-usb@vger.kernel.org
17613 S:      Maintained
17614 F:      Documentation/usb/acm.rst
17615 F:      drivers/usb/class/cdc-acm.*
17616
17617 USB APPLE MFI FASTCHARGE DRIVER
17618 M:      Bastien Nocera <hadess@hadess.net>
17619 L:      linux-usb@vger.kernel.org
17620 S:      Maintained
17621 F:      drivers/usb/misc/apple-mfi-fastcharge.c
17622
17623 USB AR5523 WIRELESS DRIVER
17624 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
17625 L:      linux-wireless@vger.kernel.org
17626 S:      Maintained
17627 F:      drivers/net/wireless/ath/ar5523/
17628
17629 USB ATTACHED SCSI
17630 M:      Oliver Neukum <oneukum@suse.com>
17631 L:      linux-usb@vger.kernel.org
17632 L:      linux-scsi@vger.kernel.org
17633 S:      Maintained
17634 F:      drivers/usb/storage/uas.c
17635
17636 USB CDC ETHERNET DRIVER
17637 M:      Oliver Neukum <oliver@neukum.org>
17638 L:      linux-usb@vger.kernel.org
17639 S:      Maintained
17640 F:      drivers/net/usb/cdc_*.c
17641 F:      include/uapi/linux/usb/cdc.h
17642
17643 USB CHAOSKEY DRIVER
17644 M:      Keith Packard <keithp@keithp.com>
17645 L:      linux-usb@vger.kernel.org
17646 S:      Maintained
17647 F:      drivers/usb/misc/chaoskey.c
17648
17649 USB CYPRESS C67X00 DRIVER
17650 M:      Peter Korsgaard <jacmet@sunsite.dk>
17651 L:      linux-usb@vger.kernel.org
17652 S:      Maintained
17653 F:      drivers/usb/c67x00/
17654
17655 USB DAVICOM DM9601 DRIVER
17656 M:      Peter Korsgaard <jacmet@sunsite.dk>
17657 L:      netdev@vger.kernel.org
17658 S:      Maintained
17659 W:      http://www.linux-usb.org/usbnet
17660 F:      drivers/net/usb/dm9601.c
17661
17662 USB EHCI DRIVER
17663 M:      Alan Stern <stern@rowland.harvard.edu>
17664 L:      linux-usb@vger.kernel.org
17665 S:      Maintained
17666 F:      Documentation/usb/ehci.rst
17667 F:      drivers/usb/host/ehci*
17668
17669 USB GADGET/PERIPHERAL SUBSYSTEM
17670 M:      Felipe Balbi <balbi@kernel.org>
17671 L:      linux-usb@vger.kernel.org
17672 S:      Maintained
17673 W:      http://www.linux-usb.org/gadget
17674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17675 F:      drivers/usb/gadget/
17676 F:      include/linux/usb/gadget*
17677
17678 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
17679 M:      Jiri Kosina <jikos@kernel.org>
17680 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
17681 L:      linux-usb@vger.kernel.org
17682 S:      Maintained
17683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
17684 F:      Documentation/hid/hiddev.rst
17685 F:      drivers/hid/usbhid/
17686
17687 USB INTEL XHCI ROLE MUX DRIVER
17688 M:      Hans de Goede <hdegoede@redhat.com>
17689 L:      linux-usb@vger.kernel.org
17690 S:      Maintained
17691 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
17692
17693 USB IP DRIVER FOR HISILICON KIRIN
17694 M:      Yu Chen <chenyu56@huawei.com>
17695 M:      Binghui Wang <wangbinghui@hisilicon.com>
17696 L:      linux-usb@vger.kernel.org
17697 S:      Maintained
17698 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
17699 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
17700
17701 USB ISP116X DRIVER
17702 M:      Olav Kongas <ok@artecdesign.ee>
17703 L:      linux-usb@vger.kernel.org
17704 S:      Maintained
17705 F:      drivers/usb/host/isp116x*
17706 F:      include/linux/usb/isp116x.h
17707
17708 USB LAN78XX ETHERNET DRIVER
17709 M:      Woojung Huh <woojung.huh@microchip.com>
17710 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17711 L:      netdev@vger.kernel.org
17712 S:      Maintained
17713 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
17714 F:      drivers/net/usb/lan78xx.*
17715 F:      include/dt-bindings/net/microchip-lan78xx.h
17716
17717 USB MASS STORAGE DRIVER
17718 M:      Alan Stern <stern@rowland.harvard.edu>
17719 L:      linux-usb@vger.kernel.org
17720 L:      usb-storage@lists.one-eyed-alien.net
17721 S:      Maintained
17722 F:      drivers/usb/storage/
17723
17724 USB MIDI DRIVER
17725 M:      Clemens Ladisch <clemens@ladisch.de>
17726 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17727 S:      Maintained
17728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17729 F:      sound/usb/midi.*
17730
17731 USB NETWORKING DRIVERS
17732 L:      linux-usb@vger.kernel.org
17733 S:      Odd Fixes
17734 F:      drivers/net/usb/
17735
17736 USB OHCI DRIVER
17737 M:      Alan Stern <stern@rowland.harvard.edu>
17738 L:      linux-usb@vger.kernel.org
17739 S:      Maintained
17740 F:      Documentation/usb/ohci.rst
17741 F:      drivers/usb/host/ohci*
17742
17743 USB OTG FSM (Finite State Machine)
17744 M:      Peter Chen <Peter.Chen@nxp.com>
17745 L:      linux-usb@vger.kernel.org
17746 S:      Maintained
17747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
17748 F:      drivers/usb/common/usb-otg-fsm.c
17749
17750 USB OVER IP DRIVER
17751 M:      Valentina Manea <valentina.manea.m@gmail.com>
17752 M:      Shuah Khan <shuah@kernel.org>
17753 M:      Shuah Khan <skhan@linuxfoundation.org>
17754 L:      linux-usb@vger.kernel.org
17755 S:      Maintained
17756 F:      Documentation/usb/usbip_protocol.rst
17757 F:      drivers/usb/usbip/
17758 F:      tools/testing/selftests/drivers/usb/usbip/
17759 F:      tools/usb/usbip/
17760
17761 USB PEGASUS DRIVER
17762 M:      Petko Manolov <petkan@nucleusys.com>
17763 L:      linux-usb@vger.kernel.org
17764 L:      netdev@vger.kernel.org
17765 S:      Maintained
17766 W:      https://github.com/petkan/pegasus
17767 T:      git git://github.com/petkan/pegasus.git
17768 F:      drivers/net/usb/pegasus.*
17769
17770 USB PHY LAYER
17771 M:      Felipe Balbi <balbi@kernel.org>
17772 L:      linux-usb@vger.kernel.org
17773 S:      Maintained
17774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17775 F:      drivers/usb/phy/
17776
17777 USB PRINTER DRIVER (usblp)
17778 M:      Pete Zaitcev <zaitcev@redhat.com>
17779 L:      linux-usb@vger.kernel.org
17780 S:      Supported
17781 F:      drivers/usb/class/usblp.c
17782
17783 USB QMI WWAN NETWORK DRIVER
17784 M:      Bjørn Mork <bjorn@mork.no>
17785 L:      netdev@vger.kernel.org
17786 S:      Maintained
17787 F:      Documentation/ABI/testing/sysfs-class-net-qmi
17788 F:      drivers/net/usb/qmi_wwan.c
17789
17790 USB RTL8150 DRIVER
17791 M:      Petko Manolov <petkan@nucleusys.com>
17792 L:      linux-usb@vger.kernel.org
17793 L:      netdev@vger.kernel.org
17794 S:      Maintained
17795 W:      https://github.com/petkan/rtl8150
17796 T:      git git://github.com/petkan/rtl8150.git
17797 F:      drivers/net/usb/rtl8150.c
17798
17799 USB SERIAL SUBSYSTEM
17800 M:      Johan Hovold <johan@kernel.org>
17801 L:      linux-usb@vger.kernel.org
17802 S:      Maintained
17803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
17804 F:      Documentation/usb/usb-serial.rst
17805 F:      drivers/usb/serial/
17806 F:      include/linux/usb/serial.h
17807
17808 USB SMSC75XX ETHERNET DRIVER
17809 M:      Steve Glendinning <steve.glendinning@shawell.net>
17810 L:      netdev@vger.kernel.org
17811 S:      Maintained
17812 F:      drivers/net/usb/smsc75xx.*
17813
17814 USB SMSC95XX ETHERNET DRIVER
17815 M:      Steve Glendinning <steve.glendinning@shawell.net>
17816 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17817 L:      netdev@vger.kernel.org
17818 S:      Maintained
17819 F:      drivers/net/usb/smsc95xx.*
17820
17821 USB SUBSYSTEM
17822 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17823 L:      linux-usb@vger.kernel.org
17824 S:      Supported
17825 W:      http://www.linux-usb.org
17826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
17827 F:      Documentation/devicetree/bindings/usb/
17828 F:      Documentation/usb/
17829 F:      drivers/usb/
17830 F:      include/linux/usb.h
17831 F:      include/linux/usb/
17832
17833 USB TYPEC BUS FOR ALTERNATE MODES
17834 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17835 L:      linux-usb@vger.kernel.org
17836 S:      Maintained
17837 F:      Documentation/ABI/testing/sysfs-bus-typec
17838 F:      Documentation/driver-api/usb/typec_bus.rst
17839 F:      drivers/usb/typec/altmodes/
17840 F:      include/linux/usb/typec_altmode.h
17841
17842 USB TYPEC CLASS
17843 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17844 L:      linux-usb@vger.kernel.org
17845 S:      Maintained
17846 F:      Documentation/ABI/testing/sysfs-class-typec
17847 F:      Documentation/driver-api/usb/typec.rst
17848 F:      drivers/usb/typec/
17849 F:      include/linux/usb/typec.h
17850
17851 USB TYPEC INTEL PMC MUX DRIVER
17852 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17853 L:      linux-usb@vger.kernel.org
17854 S:      Maintained
17855 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
17856 F:      drivers/usb/typec/mux/intel_pmc_mux.c
17857
17858 USB TYPEC PI3USB30532 MUX DRIVER
17859 M:      Hans de Goede <hdegoede@redhat.com>
17860 L:      linux-usb@vger.kernel.org
17861 S:      Maintained
17862 F:      drivers/usb/typec/mux/pi3usb30532.c
17863
17864 USB TYPEC PORT CONTROLLER DRIVERS
17865 M:      Guenter Roeck <linux@roeck-us.net>
17866 L:      linux-usb@vger.kernel.org
17867 S:      Maintained
17868 F:      drivers/usb/typec/tcpm/
17869
17870 USB UHCI DRIVER
17871 M:      Alan Stern <stern@rowland.harvard.edu>
17872 L:      linux-usb@vger.kernel.org
17873 S:      Maintained
17874 F:      drivers/usb/host/uhci*
17875
17876 USB VIDEO CLASS
17877 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17878 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
17879 L:      linux-media@vger.kernel.org
17880 S:      Maintained
17881 W:      http://www.ideasonboard.org/uvc/
17882 T:      git git://linuxtv.org/media_tree.git
17883 F:      drivers/media/usb/uvc/
17884 F:      include/uapi/linux/uvcvideo.h
17885
17886 USB VISION DRIVER
17887 M:      Hans Verkuil <hverkuil@xs4all.nl>
17888 L:      linux-media@vger.kernel.org
17889 S:      Odd Fixes
17890 W:      https://linuxtv.org
17891 T:      git git://linuxtv.org/media_tree.git
17892 F:      drivers/staging/media/usbvision/
17893
17894 USB WEBCAM GADGET
17895 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17896 L:      linux-usb@vger.kernel.org
17897 S:      Maintained
17898 F:      drivers/usb/gadget/function/*uvc*
17899 F:      drivers/usb/gadget/legacy/webcam.c
17900 F:      include/uapi/linux/usb/g_uvc.h
17901
17902 USB WIRELESS RNDIS DRIVER (rndis_wlan)
17903 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
17904 L:      linux-wireless@vger.kernel.org
17905 S:      Maintained
17906 F:      drivers/net/wireless/rndis_wlan.c
17907
17908 USB XHCI DRIVER
17909 M:      Mathias Nyman <mathias.nyman@intel.com>
17910 L:      linux-usb@vger.kernel.org
17911 S:      Supported
17912 F:      drivers/usb/host/pci-quirks*
17913 F:      drivers/usb/host/xhci*
17914
17915 USB ZD1201 DRIVER
17916 L:      linux-wireless@vger.kernel.org
17917 S:      Orphan
17918 W:      http://linux-lc100020.sourceforge.net
17919 F:      drivers/net/wireless/zydas/zd1201.*
17920
17921 USB ZR364XX DRIVER
17922 M:      Antoine Jacquet <royale@zerezo.com>
17923 L:      linux-usb@vger.kernel.org
17924 L:      linux-media@vger.kernel.org
17925 S:      Maintained
17926 W:      http://royale.zerezo.com/zr364xx/
17927 T:      git git://linuxtv.org/media_tree.git
17928 F:      Documentation/admin-guide/media/zr364xx*
17929 F:      drivers/media/usb/zr364xx/
17930
17931 USER-MODE LINUX (UML)
17932 M:      Jeff Dike <jdike@addtoit.com>
17933 M:      Richard Weinberger <richard@nod.at>
17934 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
17935 L:      linux-um@lists.infradead.org
17936 S:      Maintained
17937 W:      http://user-mode-linux.sourceforge.net
17938 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
17939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
17940 F:      Documentation/virt/uml/
17941 F:      arch/um/
17942 F:      arch/x86/um/
17943 F:      fs/hostfs/
17944
17945 USERSPACE COPYIN/COPYOUT (UIOVEC)
17946 M:      Alexander Viro <viro@zeniv.linux.org.uk>
17947 S:      Maintained
17948 F:      include/linux/uio.h
17949 F:      lib/iov_iter.c
17950
17951 USERSPACE DMA BUFFER DRIVER
17952 M:      Gerd Hoffmann <kraxel@redhat.com>
17953 L:      dri-devel@lists.freedesktop.org
17954 S:      Maintained
17955 T:      git git://anongit.freedesktop.org/drm/drm-misc
17956 F:      drivers/dma-buf/udmabuf.c
17957 F:      include/uapi/linux/udmabuf.h
17958
17959 USERSPACE I/O (UIO)
17960 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17961 S:      Maintained
17962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17963 F:      Documentation/driver-api/uio-howto.rst
17964 F:      drivers/uio/
17965 F:      include/linux/uio_driver.h
17966
17967 UTIL-LINUX PACKAGE
17968 M:      Karel Zak <kzak@redhat.com>
17969 L:      util-linux@vger.kernel.org
17970 S:      Maintained
17971 W:      http://en.wikipedia.org/wiki/Util-linux
17972 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
17973
17974 UUID HELPERS
17975 M:      Christoph Hellwig <hch@lst.de>
17976 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17977 L:      linux-kernel@vger.kernel.org
17978 S:      Maintained
17979 T:      git git://git.infradead.org/users/hch/uuid.git
17980 F:      include/linux/uuid.h
17981 F:      include/uapi/linux/uuid.h
17982 F:      lib/test_uuid.c
17983 F:      lib/uuid.c
17984
17985 UVESAFB DRIVER
17986 M:      Michal Januszewski <spock@gentoo.org>
17987 L:      linux-fbdev@vger.kernel.org
17988 S:      Maintained
17989 W:      https://github.com/mjanusz/v86d
17990 F:      Documentation/fb/uvesafb.rst
17991 F:      drivers/video/fbdev/uvesafb.*
17992
17993 Ux500 CLOCK DRIVERS
17994 M:      Ulf Hansson <ulf.hansson@linaro.org>
17995 L:      linux-clk@vger.kernel.org
17996 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17997 S:      Maintained
17998 F:      drivers/clk/ux500/
17999
18000 VF610 NAND DRIVER
18001 M:      Stefan Agner <stefan@agner.ch>
18002 L:      linux-mtd@lists.infradead.org
18003 S:      Supported
18004 F:      drivers/mtd/nand/raw/vf610_nfc.c
18005
18006 VFAT/FAT/MSDOS FILESYSTEM
18007 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
18008 S:      Maintained
18009 F:      Documentation/filesystems/vfat.rst
18010 F:      fs/fat/
18011
18012 VFIO DRIVER
18013 M:      Alex Williamson <alex.williamson@redhat.com>
18014 R:      Cornelia Huck <cohuck@redhat.com>
18015 L:      kvm@vger.kernel.org
18016 S:      Maintained
18017 T:      git git://github.com/awilliam/linux-vfio.git
18018 F:      Documentation/driver-api/vfio.rst
18019 F:      drivers/vfio/
18020 F:      include/linux/vfio.h
18021 F:      include/uapi/linux/vfio.h
18022
18023 VFIO MEDIATED DEVICE DRIVERS
18024 M:      Kirti Wankhede <kwankhede@nvidia.com>
18025 L:      kvm@vger.kernel.org
18026 S:      Maintained
18027 F:      Documentation/driver-api/vfio-mediated-device.rst
18028 F:      drivers/vfio/mdev/
18029 F:      include/linux/mdev.h
18030 F:      samples/vfio-mdev/
18031
18032 VFIO PLATFORM DRIVER
18033 M:      Eric Auger <eric.auger@redhat.com>
18034 L:      kvm@vger.kernel.org
18035 S:      Maintained
18036 F:      drivers/vfio/platform/
18037
18038 VGA_SWITCHEROO
18039 R:      Lukas Wunner <lukas@wunner.de>
18040 S:      Maintained
18041 T:      git git://anongit.freedesktop.org/drm/drm-misc
18042 F:      Documentation/gpu/vga-switcheroo.rst
18043 F:      drivers/gpu/vga/vga_switcheroo.c
18044 F:      include/linux/vga_switcheroo.h
18045
18046 VIA RHINE NETWORK DRIVER
18047 S:      Orphan
18048 F:      drivers/net/ethernet/via/via-rhine.c
18049
18050 VIA SD/MMC CARD CONTROLLER DRIVER
18051 M:      Bruce Chang <brucechang@via.com.tw>
18052 M:      Harald Welte <HaraldWelte@viatech.com>
18053 S:      Maintained
18054 F:      drivers/mmc/host/via-sdmmc.c
18055
18056 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
18057 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
18058 L:      linux-fbdev@vger.kernel.org
18059 S:      Maintained
18060 F:      drivers/video/fbdev/via/
18061 F:      include/linux/via-core.h
18062 F:      include/linux/via-gpio.h
18063 F:      include/linux/via_i2c.h
18064
18065 VIA VELOCITY NETWORK DRIVER
18066 M:      Francois Romieu <romieu@fr.zoreil.com>
18067 L:      netdev@vger.kernel.org
18068 S:      Maintained
18069 F:      drivers/net/ethernet/via/via-velocity.*
18070
18071 VICODEC VIRTUAL CODEC DRIVER
18072 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
18073 L:      linux-media@vger.kernel.org
18074 S:      Maintained
18075 W:      https://linuxtv.org
18076 T:      git git://linuxtv.org/media_tree.git
18077 F:      drivers/media/test-drivers/vicodec/*
18078
18079 VIDEO I2C POLLING DRIVER
18080 M:      Matt Ranostay <matt.ranostay@konsulko.com>
18081 L:      linux-media@vger.kernel.org
18082 S:      Maintained
18083 F:      drivers/media/i2c/video-i2c.c
18084
18085 VIDEO MULTIPLEXER DRIVER
18086 M:      Philipp Zabel <p.zabel@pengutronix.de>
18087 L:      linux-media@vger.kernel.org
18088 S:      Maintained
18089 F:      drivers/media/platform/video-mux.c
18090
18091 VIDEOBUF2 FRAMEWORK
18092 M:      Pawel Osciak <pawel@osciak.com>
18093 M:      Marek Szyprowski <m.szyprowski@samsung.com>
18094 M:      Kyungmin Park <kyungmin.park@samsung.com>
18095 R:      Tomasz Figa <tfiga@chromium.org>
18096 L:      linux-media@vger.kernel.org
18097 S:      Maintained
18098 F:      drivers/media/common/videobuf2/*
18099 F:      include/media/videobuf2-*
18100
18101 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
18102 M:      Helen Koike <helen.koike@collabora.com>
18103 R:      Shuah Khan <skhan@linuxfoundation.org>
18104 L:      linux-media@vger.kernel.org
18105 S:      Maintained
18106 W:      https://linuxtv.org
18107 T:      git git://linuxtv.org/media_tree.git
18108 F:      drivers/media/test-drivers/vimc/*
18109
18110 VIRT LIB
18111 M:      Alex Williamson <alex.williamson@redhat.com>
18112 M:      Paolo Bonzini <pbonzini@redhat.com>
18113 L:      kvm@vger.kernel.org
18114 S:      Supported
18115 F:      virt/lib/
18116
18117 VIRTIO AND VHOST VSOCK DRIVER
18118 M:      Stefan Hajnoczi <stefanha@redhat.com>
18119 M:      Stefano Garzarella <sgarzare@redhat.com>
18120 L:      kvm@vger.kernel.org
18121 L:      virtualization@lists.linux-foundation.org
18122 L:      netdev@vger.kernel.org
18123 S:      Maintained
18124 F:      drivers/net/vsockmon.c
18125 F:      drivers/vhost/vsock.c
18126 F:      include/linux/virtio_vsock.h
18127 F:      include/uapi/linux/virtio_vsock.h
18128 F:      include/uapi/linux/vm_sockets_diag.h
18129 F:      include/uapi/linux/vsockmon.h
18130 F:      net/vmw_vsock/af_vsock_tap.c
18131 F:      net/vmw_vsock/diag.c
18132 F:      net/vmw_vsock/virtio_transport.c
18133 F:      net/vmw_vsock/virtio_transport_common.c
18134 F:      net/vmw_vsock/vsock_loopback.c
18135 F:      tools/testing/vsock/
18136
18137 VIRTIO BLOCK AND SCSI DRIVERS
18138 M:      "Michael S. Tsirkin" <mst@redhat.com>
18139 M:      Jason Wang <jasowang@redhat.com>
18140 R:      Paolo Bonzini <pbonzini@redhat.com>
18141 R:      Stefan Hajnoczi <stefanha@redhat.com>
18142 L:      virtualization@lists.linux-foundation.org
18143 S:      Maintained
18144 F:      drivers/block/virtio_blk.c
18145 F:      drivers/scsi/virtio_scsi.c
18146 F:      drivers/vhost/scsi.c
18147 F:      include/uapi/linux/virtio_blk.h
18148 F:      include/uapi/linux/virtio_scsi.h
18149
18150 VIRTIO CONSOLE DRIVER
18151 M:      Amit Shah <amit@kernel.org>
18152 L:      virtualization@lists.linux-foundation.org
18153 S:      Maintained
18154 F:      drivers/char/virtio_console.c
18155 F:      include/linux/virtio_console.h
18156 F:      include/uapi/linux/virtio_console.h
18157
18158 VIRTIO CORE AND NET DRIVERS
18159 M:      "Michael S. Tsirkin" <mst@redhat.com>
18160 M:      Jason Wang <jasowang@redhat.com>
18161 L:      virtualization@lists.linux-foundation.org
18162 S:      Maintained
18163 F:      Documentation/devicetree/bindings/virtio/
18164 F:      drivers/block/virtio_blk.c
18165 F:      drivers/crypto/virtio/
18166 F:      drivers/net/virtio_net.c
18167 F:      drivers/vdpa/
18168 F:      drivers/virtio/
18169 F:      include/linux/vdpa.h
18170 F:      include/linux/virtio*.h
18171 F:      include/uapi/linux/virtio_*.h
18172 F:      tools/virtio/
18173
18174 VIRTIO BALLOON
18175 M:      "Michael S. Tsirkin" <mst@redhat.com>
18176 M:      David Hildenbrand <david@redhat.com>
18177 L:      virtualization@lists.linux-foundation.org
18178 S:      Maintained
18179 F:      drivers/virtio/virtio_balloon.c
18180 F:      include/uapi/linux/virtio_balloon.h
18181 F:      include/linux/balloon_compaction.h
18182 F:      mm/balloon_compaction.c
18183
18184 VIRTIO CRYPTO DRIVER
18185 M:      Gonglei <arei.gonglei@huawei.com>
18186 L:      virtualization@lists.linux-foundation.org
18187 L:      linux-crypto@vger.kernel.org
18188 S:      Maintained
18189 F:      drivers/crypto/virtio/
18190 F:      include/uapi/linux/virtio_crypto.h
18191
18192 VIRTIO DRIVERS FOR S390
18193 M:      Cornelia Huck <cohuck@redhat.com>
18194 M:      Halil Pasic <pasic@linux.ibm.com>
18195 L:      linux-s390@vger.kernel.org
18196 L:      virtualization@lists.linux-foundation.org
18197 L:      kvm@vger.kernel.org
18198 S:      Supported
18199 F:      arch/s390/include/uapi/asm/virtio-ccw.h
18200 F:      drivers/s390/virtio/
18201
18202 VIRTIO FILE SYSTEM
18203 M:      Vivek Goyal <vgoyal@redhat.com>
18204 M:      Stefan Hajnoczi <stefanha@redhat.com>
18205 M:      Miklos Szeredi <miklos@szeredi.hu>
18206 L:      virtualization@lists.linux-foundation.org
18207 L:      linux-fsdevel@vger.kernel.org
18208 S:      Supported
18209 W:      https://virtio-fs.gitlab.io/
18210 F:      Documentation/filesystems/virtiofs.rst
18211 F:      fs/fuse/virtio_fs.c
18212 F:      include/uapi/linux/virtio_fs.h
18213
18214 VIRTIO GPU DRIVER
18215 M:      David Airlie <airlied@linux.ie>
18216 M:      Gerd Hoffmann <kraxel@redhat.com>
18217 L:      dri-devel@lists.freedesktop.org
18218 L:      virtualization@lists.linux-foundation.org
18219 S:      Maintained
18220 T:      git git://anongit.freedesktop.org/drm/drm-misc
18221 F:      drivers/gpu/drm/virtio/
18222 F:      include/uapi/linux/virtio_gpu.h
18223
18224 VIRTIO HOST (VHOST)
18225 M:      "Michael S. Tsirkin" <mst@redhat.com>
18226 M:      Jason Wang <jasowang@redhat.com>
18227 L:      kvm@vger.kernel.org
18228 L:      virtualization@lists.linux-foundation.org
18229 L:      netdev@vger.kernel.org
18230 S:      Maintained
18231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
18232 F:      drivers/vhost/
18233 F:      include/linux/vhost_iotlb.h
18234 F:      include/uapi/linux/vhost.h
18235
18236 VIRTIO INPUT DRIVER
18237 M:      Gerd Hoffmann <kraxel@redhat.com>
18238 S:      Maintained
18239 F:      drivers/virtio/virtio_input.c
18240 F:      include/uapi/linux/virtio_input.h
18241
18242 VIRTIO IOMMU DRIVER
18243 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
18244 L:      virtualization@lists.linux-foundation.org
18245 S:      Maintained
18246 F:      drivers/iommu/virtio-iommu.c
18247 F:      include/uapi/linux/virtio_iommu.h
18248
18249 VIRTIO MEM DRIVER
18250 M:      David Hildenbrand <david@redhat.com>
18251 L:      virtualization@lists.linux-foundation.org
18252 S:      Maintained
18253 F:      drivers/virtio/virtio_mem.c
18254 F:      include/uapi/linux/virtio_mem.h
18255
18256 VIRTUAL BOX GUEST DEVICE DRIVER
18257 M:      Hans de Goede <hdegoede@redhat.com>
18258 M:      Arnd Bergmann <arnd@arndb.de>
18259 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18260 S:      Maintained
18261 F:      drivers/virt/vboxguest/
18262 F:      include/linux/vbox_utils.h
18263 F:      include/uapi/linux/vbox*.h
18264
18265 VIRTUAL BOX SHARED FOLDER VFS DRIVER
18266 M:      Hans de Goede <hdegoede@redhat.com>
18267 L:      linux-fsdevel@vger.kernel.org
18268 S:      Maintained
18269 F:      fs/vboxsf/*
18270
18271 VIRTUAL SERIO DEVICE DRIVER
18272 M:      Stephen Chandler Paul <thatslyude@gmail.com>
18273 S:      Maintained
18274 F:      drivers/input/serio/userio.c
18275 F:      include/uapi/linux/userio.h
18276
18277 VIVID VIRTUAL VIDEO DRIVER
18278 M:      Hans Verkuil <hverkuil@xs4all.nl>
18279 L:      linux-media@vger.kernel.org
18280 S:      Maintained
18281 W:      https://linuxtv.org
18282 T:      git git://linuxtv.org/media_tree.git
18283 F:      drivers/media/test-drivers/vivid/*
18284
18285 VLYNQ BUS
18286 M:      Florian Fainelli <f.fainelli@gmail.com>
18287 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
18288 S:      Maintained
18289 F:      drivers/vlynq/vlynq.c
18290 F:      include/linux/vlynq.h
18291
18292 VME SUBSYSTEM
18293 M:      Martyn Welch <martyn@welchs.me.uk>
18294 M:      Manohar Vanga <manohar.vanga@gmail.com>
18295 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18296 L:      devel@driverdev.osuosl.org
18297 S:      Maintained
18298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18299 F:      Documentation/driver-api/vme.rst
18300 F:      drivers/staging/vme/
18301 F:      drivers/vme/
18302 F:      include/linux/vme*
18303
18304 VMWARE BALLOON DRIVER
18305 M:      Nadav Amit <namit@vmware.com>
18306 M:      "VMware, Inc." <pv-drivers@vmware.com>
18307 L:      linux-kernel@vger.kernel.org
18308 S:      Maintained
18309 F:      drivers/misc/vmw_balloon.c
18310
18311 VMWARE HYPERVISOR INTERFACE
18312 M:      Deep Shah <sdeep@vmware.com>
18313 M:      "VMware, Inc." <pv-drivers@vmware.com>
18314 L:      virtualization@lists.linux-foundation.org
18315 S:      Supported
18316 F:      arch/x86/include/asm/vmware.h
18317 F:      arch/x86/kernel/cpu/vmware.c
18318
18319 VMWARE PVRDMA DRIVER
18320 M:      Adit Ranadive <aditr@vmware.com>
18321 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18322 L:      linux-rdma@vger.kernel.org
18323 S:      Maintained
18324 F:      drivers/infiniband/hw/vmw_pvrdma/
18325
18326 VMware PVSCSI driver
18327 M:      Jim Gill <jgill@vmware.com>
18328 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18329 L:      linux-scsi@vger.kernel.org
18330 S:      Maintained
18331 F:      drivers/scsi/vmw_pvscsi.c
18332 F:      drivers/scsi/vmw_pvscsi.h
18333
18334 VMWARE VIRTUAL PTP CLOCK DRIVER
18335 M:      Vivek Thampi <vithampi@vmware.com>
18336 M:      "VMware, Inc." <pv-drivers@vmware.com>
18337 L:      netdev@vger.kernel.org
18338 S:      Supported
18339 F:      drivers/ptp/ptp_vmw.c
18340
18341 VMWARE VMMOUSE SUBDRIVER
18342 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
18343 M:      "VMware, Inc." <pv-drivers@vmware.com>
18344 L:      linux-input@vger.kernel.org
18345 S:      Maintained
18346 F:      drivers/input/mouse/vmmouse.c
18347 F:      drivers/input/mouse/vmmouse.h
18348
18349 VMWARE VMXNET3 ETHERNET DRIVER
18350 M:      Ronak Doshi <doshir@vmware.com>
18351 M:      "VMware, Inc." <pv-drivers@vmware.com>
18352 L:      netdev@vger.kernel.org
18353 S:      Maintained
18354 F:      drivers/net/vmxnet3/
18355
18356 VOCORE VOCORE2 BOARD
18357 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
18358 L:      linux-mips@vger.kernel.org
18359 S:      Maintained
18360 F:      arch/mips/boot/dts/ralink/vocore2.dts
18361
18362 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18363 M:      Liam Girdwood <lgirdwood@gmail.com>
18364 M:      Mark Brown <broonie@kernel.org>
18365 L:      linux-kernel@vger.kernel.org
18366 S:      Supported
18367 W:      http://www.slimlogic.co.uk/?p=48
18368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18369 F:      Documentation/devicetree/bindings/regulator/
18370 F:      Documentation/power/regulator/
18371 F:      drivers/regulator/
18372 F:      include/dt-bindings/regulator/
18373 F:      include/linux/regulator/
18374 K:      regulator_get_optional
18375
18376 VRF
18377 M:      David Ahern <dsahern@kernel.org>
18378 M:      Shrijeet Mukherjee <shrijeet@gmail.com>
18379 L:      netdev@vger.kernel.org
18380 S:      Maintained
18381 F:      Documentation/networking/vrf.rst
18382 F:      drivers/net/vrf.c
18383
18384 VSPRINTF
18385 M:      Petr Mladek <pmladek@suse.com>
18386 M:      Steven Rostedt <rostedt@goodmis.org>
18387 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
18388 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18389 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
18390 S:      Maintained
18391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
18392 F:      Documentation/core-api/printk-formats.rst
18393 F:      lib/test_printf.c
18394 F:      lib/vsprintf.c
18395
18396 VT1211 HARDWARE MONITOR DRIVER
18397 M:      Juerg Haefliger <juergh@gmail.com>
18398 L:      linux-hwmon@vger.kernel.org
18399 S:      Maintained
18400 F:      Documentation/hwmon/vt1211.rst
18401 F:      drivers/hwmon/vt1211.c
18402
18403 VT8231 HARDWARE MONITOR DRIVER
18404 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
18405 L:      linux-hwmon@vger.kernel.org
18406 S:      Maintained
18407 F:      drivers/hwmon/vt8231.c
18408
18409 VUB300 USB to SDIO/SD/MMC bridge chip
18410 L:      linux-mmc@vger.kernel.org
18411 S:      Orphan
18412 F:      drivers/mmc/host/vub300.c
18413
18414 W1 DALLAS'S 1-WIRE BUS
18415 M:      Evgeniy Polyakov <zbr@ioremap.net>
18416 S:      Maintained
18417 F:      Documentation/devicetree/bindings/w1/
18418 F:      Documentation/w1/
18419 F:      drivers/w1/
18420 F:      include/linux/w1.h
18421
18422 W83791D HARDWARE MONITORING DRIVER
18423 M:      Marc Hulsman <m.hulsman@tudelft.nl>
18424 L:      linux-hwmon@vger.kernel.org
18425 S:      Maintained
18426 F:      Documentation/hwmon/w83791d.rst
18427 F:      drivers/hwmon/w83791d.c
18428
18429 W83793 HARDWARE MONITORING DRIVER
18430 M:      Rudolf Marek <r.marek@assembler.cz>
18431 L:      linux-hwmon@vger.kernel.org
18432 S:      Maintained
18433 F:      Documentation/hwmon/w83793.rst
18434 F:      drivers/hwmon/w83793.c
18435
18436 W83795 HARDWARE MONITORING DRIVER
18437 M:      Jean Delvare <jdelvare@suse.com>
18438 L:      linux-hwmon@vger.kernel.org
18439 S:      Maintained
18440 F:      drivers/hwmon/w83795.c
18441
18442 W83L51xD SD/MMC CARD INTERFACE DRIVER
18443 M:      Pierre Ossman <pierre@ossman.eu>
18444 S:      Maintained
18445 F:      drivers/mmc/host/wbsd.*
18446
18447 WACOM PROTOCOL 4 SERIAL TABLETS
18448 M:      Julian Squires <julian@cipht.net>
18449 M:      Hans de Goede <hdegoede@redhat.com>
18450 L:      linux-input@vger.kernel.org
18451 S:      Maintained
18452 F:      drivers/input/tablet/wacom_serial4.c
18453
18454 WATCHDOG DEVICE DRIVERS
18455 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
18456 M:      Guenter Roeck <linux@roeck-us.net>
18457 L:      linux-watchdog@vger.kernel.org
18458 S:      Maintained
18459 W:      http://www.linux-watchdog.org/
18460 T:      git git://www.linux-watchdog.org/linux-watchdog.git
18461 F:      Documentation/devicetree/bindings/watchdog/
18462 F:      Documentation/watchdog/
18463 F:      drivers/watchdog/
18464 F:      include/linux/watchdog.h
18465 F:      include/uapi/linux/watchdog.h
18466
18467 WHISKEYCOVE PMIC GPIO DRIVER
18468 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
18469 L:      linux-gpio@vger.kernel.org
18470 S:      Maintained
18471 F:      drivers/gpio/gpio-wcove.c
18472
18473 WHWAVE RTC DRIVER
18474 M:      Dianlong Li <long17.cool@163.com>
18475 L:      linux-rtc@vger.kernel.org
18476 S:      Maintained
18477 F:      drivers/rtc/rtc-sd3078.c
18478
18479 WIIMOTE HID DRIVER
18480 M:      David Rheinsberg <david.rheinsberg@gmail.com>
18481 L:      linux-input@vger.kernel.org
18482 S:      Maintained
18483 F:      drivers/hid/hid-wiimote*
18484
18485 WILOCITY WIL6210 WIRELESS DRIVER
18486 M:      Maya Erez <merez@codeaurora.org>
18487 L:      linux-wireless@vger.kernel.org
18488 L:      wil6210@qti.qualcomm.com
18489 S:      Supported
18490 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
18491 F:      drivers/net/wireless/ath/wil6210/
18492
18493 WIMAX STACK
18494 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
18495 M:      linux-wimax@intel.com
18496 L:      wimax@linuxwimax.org (subscribers-only)
18497 S:      Supported
18498 W:      http://linuxwimax.org
18499 F:      Documentation/admin-guide/wimax/wimax.rst
18500 F:      include/linux/wimax/debug.h
18501 F:      include/net/wimax.h
18502 F:      include/uapi/linux/wimax.h
18503 F:      net/wimax/
18504
18505 WINBOND CIR DRIVER
18506 M:      David Härdeman <david@hardeman.nu>
18507 S:      Maintained
18508 F:      drivers/media/rc/winbond-cir.c
18509
18510 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
18511 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18512 L:      linux-watchdog@vger.kernel.org
18513 S:      Maintained
18514 F:      drivers/watchdog/ebc-c384_wdt.c
18515
18516 WINSYSTEMS WS16C48 GPIO DRIVER
18517 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18518 L:      linux-gpio@vger.kernel.org
18519 S:      Maintained
18520 F:      drivers/gpio/gpio-ws16c48.c
18521
18522 WIREGUARD SECURE NETWORK TUNNEL
18523 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18524 L:      wireguard@lists.zx2c4.com
18525 L:      netdev@vger.kernel.org
18526 S:      Maintained
18527 F:      drivers/net/wireguard/
18528 F:      tools/testing/selftests/wireguard/
18529
18530 WISTRON LAPTOP BUTTON DRIVER
18531 M:      Miloslav Trmac <mitr@volny.cz>
18532 S:      Maintained
18533 F:      drivers/input/misc/wistron_btns.c
18534
18535 WL3501 WIRELESS PCMCIA CARD DRIVER
18536 L:      linux-wireless@vger.kernel.org
18537 S:      Odd fixes
18538 F:      drivers/net/wireless/wl3501*
18539
18540 WOLFSON MICROELECTRONICS DRIVERS
18541 L:      patches@opensource.cirrus.com
18542 S:      Supported
18543 W:      https://github.com/CirrusLogic/linux-drivers/wiki
18544 T:      git https://github.com/CirrusLogic/linux-drivers.git
18545 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
18546 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
18547 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
18548 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
18549 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
18550 F:      Documentation/hwmon/wm83??.rst
18551 F:      arch/arm/mach-s3c64xx/mach-crag6410*
18552 F:      drivers/clk/clk-wm83*.c
18553 F:      drivers/extcon/extcon-arizona.c
18554 F:      drivers/gpio/gpio-*wm*.c
18555 F:      drivers/gpio/gpio-arizona.c
18556 F:      drivers/hwmon/wm83??-hwmon.c
18557 F:      drivers/input/misc/wm831x-on.c
18558 F:      drivers/input/touchscreen/wm831x-ts.c
18559 F:      drivers/input/touchscreen/wm97*.c
18560 F:      drivers/leds/leds-wm83*.c
18561 F:      drivers/mfd/arizona*
18562 F:      drivers/mfd/cs47l24*
18563 F:      drivers/mfd/wm*.c
18564 F:      drivers/power/supply/wm83*.c
18565 F:      drivers/regulator/arizona*
18566 F:      drivers/regulator/wm8*.c
18567 F:      drivers/rtc/rtc-wm83*.c
18568 F:      drivers/video/backlight/wm83*_bl.c
18569 F:      drivers/watchdog/wm83*_wdt.c
18570 F:      include/linux/mfd/arizona/
18571 F:      include/linux/mfd/wm831x/
18572 F:      include/linux/mfd/wm8350/
18573 F:      include/linux/mfd/wm8400*
18574 F:      include/linux/regulator/arizona*
18575 F:      include/linux/wm97xx.h
18576 F:      include/sound/wm????.h
18577 F:      sound/soc/codecs/arizona.?
18578 F:      sound/soc/codecs/cs47l24*
18579 F:      sound/soc/codecs/wm*
18580
18581 WORKQUEUE
18582 M:      Tejun Heo <tj@kernel.org>
18583 R:      Lai Jiangshan <jiangshanlai@gmail.com>
18584 S:      Maintained
18585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
18586 F:      Documentation/core-api/workqueue.rst
18587 F:      include/linux/workqueue.h
18588 F:      kernel/workqueue.c
18589
18590 X-POWERS AXP288 PMIC DRIVERS
18591 M:      Hans de Goede <hdegoede@redhat.com>
18592 S:      Maintained
18593 F:      drivers/acpi/pmic/intel_pmic_xpower.c
18594 N:      axp288
18595
18596 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
18597 M:      Chen-Yu Tsai <wens@csie.org>
18598 L:      linux-kernel@vger.kernel.org
18599 S:      Maintained
18600 N:      axp[128]
18601
18602 X.25 NETWORK LAYER
18603 M:      Andrew Hendry <andrew.hendry@gmail.com>
18604 L:      linux-x25@vger.kernel.org
18605 S:      Odd Fixes
18606 F:      Documentation/networking/x25*
18607 F:      include/net/x25*
18608 F:      net/x25/
18609
18610 X86 ARCHITECTURE (32-BIT AND 64-BIT)
18611 M:      Thomas Gleixner <tglx@linutronix.de>
18612 M:      Ingo Molnar <mingo@redhat.com>
18613 M:      Borislav Petkov <bp@alien8.de>
18614 M:      x86@kernel.org
18615 R:      "H. Peter Anvin" <hpa@zytor.com>
18616 L:      linux-kernel@vger.kernel.org
18617 S:      Maintained
18618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18619 F:      Documentation/devicetree/bindings/x86/
18620 F:      Documentation/x86/
18621 F:      arch/x86/
18622
18623 X86 ENTRY CODE
18624 M:      Andy Lutomirski <luto@kernel.org>
18625 L:      linux-kernel@vger.kernel.org
18626 S:      Maintained
18627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
18628 F:      arch/x86/entry/
18629
18630 X86 MCE INFRASTRUCTURE
18631 M:      Tony Luck <tony.luck@intel.com>
18632 M:      Borislav Petkov <bp@alien8.de>
18633 L:      linux-edac@vger.kernel.org
18634 S:      Maintained
18635 F:      arch/x86/kernel/cpu/mce/*
18636
18637 X86 MICROCODE UPDATE SUPPORT
18638 M:      Borislav Petkov <bp@alien8.de>
18639 S:      Maintained
18640 F:      arch/x86/kernel/cpu/microcode/*
18641
18642 X86 MM
18643 M:      Dave Hansen <dave.hansen@linux.intel.com>
18644 M:      Andy Lutomirski <luto@kernel.org>
18645 M:      Peter Zijlstra <peterz@infradead.org>
18646 L:      linux-kernel@vger.kernel.org
18647 S:      Maintained
18648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
18649 F:      arch/x86/mm/
18650
18651 X86 PLATFORM DRIVERS
18652 M:      Darren Hart <dvhart@infradead.org>
18653 M:      Andy Shevchenko <andy@infradead.org>
18654 L:      platform-driver-x86@vger.kernel.org
18655 S:      Odd Fixes
18656 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
18657 F:      drivers/platform/olpc/
18658 F:      drivers/platform/x86/
18659
18660 X86 PLATFORM DRIVERS - ARCH
18661 R:      Darren Hart <dvhart@infradead.org>
18662 R:      Andy Shevchenko <andy@infradead.org>
18663 L:      platform-driver-x86@vger.kernel.org
18664 L:      x86@kernel.org
18665 S:      Maintained
18666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18667 F:      arch/x86/platform
18668
18669 X86 VDSO
18670 M:      Andy Lutomirski <luto@kernel.org>
18671 L:      linux-kernel@vger.kernel.org
18672 S:      Maintained
18673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
18674 F:      arch/x86/entry/vdso/
18675
18676 XARRAY
18677 M:      Matthew Wilcox <willy@infradead.org>
18678 L:      linux-fsdevel@vger.kernel.org
18679 S:      Supported
18680 F:      Documentation/core-api/xarray.rst
18681 F:      include/linux/idr.h
18682 F:      include/linux/xarray.h
18683 F:      lib/idr.c
18684 F:      lib/xarray.c
18685 F:      tools/testing/radix-tree
18686
18687 XBOX DVD IR REMOTE
18688 M:      Benjamin Valentin <benpicco@googlemail.com>
18689 S:      Maintained
18690 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
18691 F:      drivers/media/rc/xbox_remote.c
18692
18693 XC2028/3028 TUNER DRIVER
18694 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18695 L:      linux-media@vger.kernel.org
18696 S:      Maintained
18697 W:      https://linuxtv.org
18698 T:      git git://linuxtv.org/media_tree.git
18699 F:      drivers/media/tuners/tuner-xc2028.*
18700
18701 XDP (eXpress Data Path)
18702 M:      Alexei Starovoitov <ast@kernel.org>
18703 M:      Daniel Borkmann <daniel@iogearbox.net>
18704 M:      David S. Miller <davem@davemloft.net>
18705 M:      Jakub Kicinski <kuba@kernel.org>
18706 M:      Jesper Dangaard Brouer <hawk@kernel.org>
18707 M:      John Fastabend <john.fastabend@gmail.com>
18708 L:      netdev@vger.kernel.org
18709 L:      bpf@vger.kernel.org
18710 S:      Supported
18711 F:      include/net/xdp.h
18712 F:      include/trace/events/xdp.h
18713 F:      kernel/bpf/cpumap.c
18714 F:      kernel/bpf/devmap.c
18715 F:      net/core/xdp.c
18716 N:      xdp
18717 K:      xdp
18718
18719 XDP SOCKETS (AF_XDP)
18720 M:      Björn Töpel <bjorn.topel@intel.com>
18721 M:      Magnus Karlsson <magnus.karlsson@intel.com>
18722 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
18723 L:      netdev@vger.kernel.org
18724 L:      bpf@vger.kernel.org
18725 S:      Maintained
18726 F:      include/net/xdp_sock*
18727 F:      include/net/xsk_buff_pool.h
18728 F:      include/uapi/linux/if_xdp.h
18729 F:      net/xdp/
18730 F:      samples/bpf/xdpsock*
18731 F:      tools/lib/bpf/xsk*
18732
18733 XEN BLOCK SUBSYSTEM
18734 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18735 M:      Roger Pau Monné <roger.pau@citrix.com>
18736 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18737 S:      Supported
18738 F:      drivers/block/xen*
18739 F:      drivers/block/xen-blkback/*
18740
18741 XEN HYPERVISOR ARM
18742 M:      Stefano Stabellini <sstabellini@kernel.org>
18743 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18744 S:      Maintained
18745 F:      arch/arm/include/asm/xen/
18746 F:      arch/arm/xen/
18747
18748 XEN HYPERVISOR ARM64
18749 M:      Stefano Stabellini <sstabellini@kernel.org>
18750 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18751 S:      Maintained
18752 F:      arch/arm64/include/asm/xen/
18753 F:      arch/arm64/xen/
18754
18755 XEN HYPERVISOR INTERFACE
18756 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
18757 M:      Juergen Gross <jgross@suse.com>
18758 R:      Stefano Stabellini <sstabellini@kernel.org>
18759 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18760 S:      Supported
18761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
18762 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
18763 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
18764 F:      arch/x86/include/asm/pvclock-abi.h
18765 F:      arch/x86/include/asm/xen/
18766 F:      arch/x86/platform/pvh/
18767 F:      arch/x86/xen/
18768 F:      drivers/*/xen-*front.c
18769 F:      drivers/xen/
18770 F:      include/uapi/xen/
18771 F:      include/xen/
18772
18773 XEN NETWORK BACKEND DRIVER
18774 M:      Wei Liu <wei.liu@kernel.org>
18775 M:      Paul Durrant <paul@xen.org>
18776 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18777 L:      netdev@vger.kernel.org
18778 S:      Supported
18779 F:      drivers/net/xen-netback/*
18780
18781 XEN PCI SUBSYSTEM
18782 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18783 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18784 S:      Supported
18785 F:      arch/x86/pci/*xen*
18786 F:      drivers/pci/*xen*
18787
18788 XEN PVSCSI DRIVERS
18789 M:      Juergen Gross <jgross@suse.com>
18790 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18791 L:      linux-scsi@vger.kernel.org
18792 S:      Supported
18793 F:      drivers/scsi/xen-scsifront.c
18794 F:      drivers/xen/xen-scsiback.c
18795 F:      include/xen/interface/io/vscsiif.h
18796
18797 XEN SOUND FRONTEND DRIVER
18798 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
18799 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18800 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18801 S:      Supported
18802 F:      sound/xen/*
18803
18804 XEN SWIOTLB SUBSYSTEM
18805 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18806 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18807 L:      iommu@lists.linux-foundation.org
18808 S:      Supported
18809 F:      arch/x86/xen/*swiotlb*
18810 F:      drivers/xen/*swiotlb*
18811
18812 XFS FILESYSTEM
18813 M:      Darrick J. Wong <darrick.wong@oracle.com>
18814 M:      linux-xfs@vger.kernel.org
18815 L:      linux-xfs@vger.kernel.org
18816 S:      Supported
18817 W:      http://xfs.org/
18818 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
18819 F:      Documentation/ABI/testing/sysfs-fs-xfs
18820 F:      Documentation/admin-guide/xfs.rst
18821 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
18822 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
18823 F:      fs/xfs/
18824 F:      include/uapi/linux/dqblk_xfs.h
18825 F:      include/uapi/linux/fsmap.h
18826
18827 XILINX AXI ETHERNET DRIVER
18828 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
18829 S:      Maintained
18830 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
18831
18832 XILINX CAN DRIVER
18833 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
18834 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
18835 L:      linux-can@vger.kernel.org
18836 S:      Maintained
18837 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
18838 F:      drivers/net/can/xilinx_can.c
18839
18840 XILINX SD-FEC IP CORES
18841 M:      Derek Kiernan <derek.kiernan@xilinx.com>
18842 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
18843 S:      Maintained
18844 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
18845 F:      Documentation/misc-devices/xilinx_sdfec.rst
18846 F:      drivers/misc/Kconfig
18847 F:      drivers/misc/Makefile
18848 F:      drivers/misc/xilinx_sdfec.c
18849 F:      include/uapi/misc/xilinx_sdfec.h
18850
18851 XILINX UARTLITE SERIAL DRIVER
18852 M:      Peter Korsgaard <jacmet@sunsite.dk>
18853 L:      linux-serial@vger.kernel.org
18854 S:      Maintained
18855 F:      drivers/tty/serial/uartlite.c
18856
18857 XILINX VIDEO IP CORES
18858 M:      Hyun Kwon <hyun.kwon@xilinx.com>
18859 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18860 L:      linux-media@vger.kernel.org
18861 S:      Supported
18862 T:      git git://linuxtv.org/media_tree.git
18863 F:      Documentation/devicetree/bindings/media/xilinx/
18864 F:      drivers/media/platform/xilinx/
18865 F:      include/uapi/linux/xilinx-v4l2-controls.h
18866
18867 XILINX ZYNQMP DPDMA DRIVER
18868 M:      Hyun Kwon <hyun.kwon@xilinx.com>
18869 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18870 L:      dmaengine@vger.kernel.org
18871 S:      Supported
18872 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
18873 F:      drivers/dma/xilinx/xilinx_dpdma.c
18874 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
18875
18876 XILLYBUS DRIVER
18877 M:      Eli Billauer <eli.billauer@gmail.com>
18878 L:      linux-kernel@vger.kernel.org
18879 S:      Supported
18880 F:      drivers/char/xillybus/
18881
18882 XLP9XX I2C DRIVER
18883 M:      George Cherian <gcherian@marvell.com>
18884 L:      linux-i2c@vger.kernel.org
18885 S:      Supported
18886 W:      http://www.marvell.com
18887 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
18888 F:      drivers/i2c/busses/i2c-xlp9xx.c
18889
18890 XRA1403 GPIO EXPANDER
18891 M:      Nandor Han <nandor.han@ge.com>
18892 M:      Semi Malinen <semi.malinen@ge.com>
18893 L:      linux-gpio@vger.kernel.org
18894 S:      Maintained
18895 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
18896 F:      drivers/gpio/gpio-xra1403.c
18897
18898 XTENSA XTFPGA PLATFORM SUPPORT
18899 M:      Max Filippov <jcmvbkbc@gmail.com>
18900 L:      linux-xtensa@linux-xtensa.org
18901 S:      Maintained
18902 F:      drivers/spi/spi-xtensa-xtfpga.c
18903 F:      sound/soc/xtensa/xtfpga-i2s.c
18904
18905 YAM DRIVER FOR AX.25
18906 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
18907 L:      linux-hams@vger.kernel.org
18908 S:      Maintained
18909 F:      drivers/net/hamradio/yam*
18910 F:      include/linux/yam.h
18911
18912 YAMA SECURITY MODULE
18913 M:      Kees Cook <keescook@chromium.org>
18914 S:      Supported
18915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
18916 F:      Documentation/admin-guide/LSM/Yama.rst
18917 F:      security/yama/
18918
18919 YEALINK PHONE DRIVER
18920 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
18921 L:      usbb2k-api-dev@nongnu.org
18922 S:      Maintained
18923 F:      Documentation/input/devices/yealink.rst
18924 F:      drivers/input/misc/yealink.*
18925
18926 Z8530 DRIVER FOR AX.25
18927 M:      Joerg Reuter <jreuter@yaina.de>
18928 L:      linux-hams@vger.kernel.org
18929 S:      Maintained
18930 W:      http://yaina.de/jreuter/
18931 W:      http://www.qsl.net/dl1bke/
18932 F:      Documentation/networking/z8530drv.rst
18933 F:      drivers/net/hamradio/*scc.c
18934 F:      drivers/net/hamradio/z8530.h
18935
18936 ZBUD COMPRESSED PAGE ALLOCATOR
18937 M:      Seth Jennings <sjenning@redhat.com>
18938 M:      Dan Streetman <ddstreet@ieee.org>
18939 L:      linux-mm@kvack.org
18940 S:      Maintained
18941 F:      include/linux/zbud.h
18942 F:      mm/zbud.c
18943
18944 ZD1211RW WIRELESS DRIVER
18945 M:      Daniel Drake <dsd@gentoo.org>
18946 M:      Ulrich Kunitz <kune@deine-taler.de>
18947 L:      linux-wireless@vger.kernel.org
18948 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
18949 S:      Maintained
18950 W:      http://zd1211.ath.cx/wiki/DriverRewrite
18951 F:      drivers/net/wireless/zydas/zd1211rw/
18952
18953 ZD1301 MEDIA DRIVER
18954 M:      Antti Palosaari <crope@iki.fi>
18955 L:      linux-media@vger.kernel.org
18956 S:      Maintained
18957 W:      https://linuxtv.org/
18958 W:      http://palosaari.fi/linux/
18959 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18960 F:      drivers/media/usb/dvb-usb-v2/zd1301*
18961
18962 ZD1301_DEMOD MEDIA DRIVER
18963 M:      Antti Palosaari <crope@iki.fi>
18964 L:      linux-media@vger.kernel.org
18965 S:      Maintained
18966 W:      https://linuxtv.org/
18967 W:      http://palosaari.fi/linux/
18968 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18969 F:      drivers/media/dvb-frontends/zd1301_demod*
18970
18971 ZHAOXIN PROCESSOR SUPPORT
18972 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
18973 L:      linux-kernel@vger.kernel.org
18974 S:      Maintained
18975 F:      arch/x86/kernel/cpu/zhaoxin.c
18976
18977 ZONEFS FILESYSTEM
18978 M:      Damien Le Moal <damien.lemoal@wdc.com>
18979 M:      Naohiro Aota <naohiro.aota@wdc.com>
18980 R:      Johannes Thumshirn <jth@kernel.org>
18981 L:      linux-fsdevel@vger.kernel.org
18982 S:      Maintained
18983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
18984 F:      Documentation/filesystems/zonefs.rst
18985 F:      fs/zonefs/
18986
18987 ZPOOL COMPRESSED PAGE STORAGE API
18988 M:      Dan Streetman <ddstreet@ieee.org>
18989 L:      linux-mm@kvack.org
18990 S:      Maintained
18991 F:      include/linux/zpool.h
18992 F:      mm/zpool.c
18993
18994 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
18995 M:      Minchan Kim <minchan@kernel.org>
18996 M:      Nitin Gupta <ngupta@vflare.org>
18997 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18998 L:      linux-kernel@vger.kernel.org
18999 S:      Maintained
19000 F:      Documentation/admin-guide/blockdev/zram.rst
19001 F:      drivers/block/zram/
19002
19003 ZS DECSTATION Z85C30 SERIAL DRIVER
19004 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
19005 S:      Maintained
19006 F:      drivers/tty/serial/zs.*
19007
19008 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
19009 M:      Minchan Kim <minchan@kernel.org>
19010 M:      Nitin Gupta <ngupta@vflare.org>
19011 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19012 L:      linux-mm@kvack.org
19013 S:      Maintained
19014 F:      Documentation/vm/zsmalloc.rst
19015 F:      include/linux/zsmalloc.h
19016 F:      mm/zsmalloc.c
19017
19018 ZSWAP COMPRESSED SWAP CACHING
19019 M:      Seth Jennings <sjenning@redhat.com>
19020 M:      Dan Streetman <ddstreet@ieee.org>
19021 M:      Vitaly Wool <vitaly.wool@konsulko.com>
19022 L:      linux-mm@kvack.org
19023 S:      Maintained
19024 F:      mm/zswap.c
19025
19026 THE REST
19027 M:      Linus Torvalds <torvalds@linux-foundation.org>
19028 L:      linux-kernel@vger.kernel.org
19029 S:      Buried alive in reporters
19030 Q:      http://patchwork.kernel.org/project/LKML/list/
19031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
19032 F:      *
19033 F:      */