kconfig: qconf: drop more localization code
[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:      Joyce Ooi <joyce.ooi@intel.com>
786 L:      netdev@vger.kernel.org
787 S:      Maintained
788 F:      drivers/net/ethernet/altera/
789
790 ALTERA UART/JTAG UART SERIAL DRIVERS
791 M:      Tobias Klauser <tklauser@distanz.ch>
792 L:      linux-serial@vger.kernel.org
793 S:      Maintained
794 F:      drivers/tty/serial/altera_jtaguart.c
795 F:      drivers/tty/serial/altera_uart.c
796 F:      include/linux/altera_jtaguart.h
797 F:      include/linux/altera_uart.h
798
799 AMAZON ANNAPURNA LABS FIC DRIVER
800 M:      Talel Shenhar <talel@amazon.com>
801 S:      Maintained
802 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
803 F:      drivers/irqchip/irq-al-fic.c
804
805 AMAZON ANNAPURNA LABS 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 CLCD PL110 DRIVER
1452 M:      Russell King <linux@armlinux.org.uk>
1453 S:      Odd Fixes
1454 F:      drivers/video/fbdev/amba-clcd.*
1455
1456 ARM PRIMECELL KMI PL050 DRIVER
1457 M:      Russell King <linux@armlinux.org.uk>
1458 S:      Odd Fixes
1459 F:      drivers/input/serio/ambakmi.*
1460 F:      include/linux/amba/kmi.h
1461
1462 ARM PRIMECELL MMCI PL180/1 DRIVER
1463 M:      Russell King <linux@armlinux.org.uk>
1464 S:      Odd Fixes
1465 F:      drivers/mmc/host/mmci.*
1466 F:      include/linux/amba/mmci.h
1467
1468 ARM PRIMECELL SSP PL022 SPI DRIVER
1469 M:      Linus Walleij <linus.walleij@linaro.org>
1470 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1471 S:      Maintained
1472 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1473 F:      drivers/spi/spi-pl022.c
1474
1475 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1476 M:      Russell King <linux@armlinux.org.uk>
1477 S:      Odd Fixes
1478 F:      drivers/tty/serial/amba-pl01*.c
1479 F:      include/linux/amba/serial.h
1480
1481 ARM PRIMECELL VIC PL190/PL192 DRIVER
1482 M:      Linus Walleij <linus.walleij@linaro.org>
1483 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1484 S:      Maintained
1485 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1486 F:      drivers/irqchip/irq-vic.c
1487
1488 ARM SMC WATCHDOG DRIVER
1489 M:      Julius Werner <jwerner@chromium.org>
1490 R:      Evan Benn <evanbenn@chromium.org>
1491 S:      Maintained
1492 F:      devicetree/bindings/watchdog/arm-smc-wdt.yaml
1493 F:      drivers/watchdog/arm_smc_wdt.c
1494
1495 ARM SMMU DRIVERS
1496 M:      Will Deacon <will@kernel.org>
1497 R:      Robin Murphy <robin.murphy@arm.com>
1498 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1499 S:      Maintained
1500 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1501 F:      drivers/iommu/arm-smmu*
1502 F:      drivers/iommu/io-pgtable-arm-v7s.c
1503 F:      drivers/iommu/io-pgtable-arm.c
1504
1505 ARM SUB-ARCHITECTURES
1506 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1507 S:      Maintained
1508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1509 F:      arch/arm/mach-*/
1510 F:      arch/arm/plat-*/
1511
1512 ARM/ACTIONS SEMI ARCHITECTURE
1513 M:      Andreas Färber <afaerber@suse.de>
1514 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1515 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1516 S:      Maintained
1517 F:      Documentation/devicetree/bindings/arm/actions.yaml
1518 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1519 F:      Documentation/devicetree/bindings/dma/owl-dma.txt
1520 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1521 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1522 F:      Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1523 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1524 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1525 F:      arch/arm/boot/dts/owl-*
1526 F:      arch/arm/mach-actions/
1527 F:      arch/arm64/boot/dts/actions/
1528 F:      drivers/clk/actions/
1529 F:      drivers/clocksource/timer-owl*
1530 F:      drivers/dma/owl-dma.c
1531 F:      drivers/i2c/busses/i2c-owl.c
1532 F:      drivers/mmc/host/owl-mmc.c
1533 F:      drivers/pinctrl/actions/*
1534 F:      drivers/soc/actions/
1535 F:      include/dt-bindings/power/owl-*
1536 F:      include/linux/soc/actions/
1537 N:      owl
1538
1539 ARM/ADS SPHERE MACHINE SUPPORT
1540 M:      Lennert Buytenhek <kernel@wantstofly.org>
1541 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1542 S:      Maintained
1543
1544 ARM/AFEB9260 MACHINE SUPPORT
1545 M:      Sergey Lapin <slapin@ossfans.org>
1546 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1547 S:      Maintained
1548
1549 ARM/AJECO 1ARM MACHINE SUPPORT
1550 M:      Lennert Buytenhek <kernel@wantstofly.org>
1551 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1552 S:      Maintained
1553
1554 ARM/Allwinner SoC Clock Support
1555 M:      Emilio López <emilio@elopez.com.ar>
1556 S:      Maintained
1557 F:      drivers/clk/sunxi/
1558
1559 ARM/Allwinner sunXi SoC support
1560 M:      Maxime Ripard <mripard@kernel.org>
1561 M:      Chen-Yu Tsai <wens@csie.org>
1562 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1563 S:      Maintained
1564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1565 F:      arch/arm/mach-sunxi/
1566 F:      arch/arm64/boot/dts/allwinner/
1567 F:      drivers/clk/sunxi-ng/
1568 F:      drivers/pinctrl/sunxi/
1569 F:      drivers/soc/sunxi/
1570 N:      sun[x456789]i
1571 N:      sun50i
1572
1573 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1574 M:      Neil Armstrong <narmstrong@baylibre.com>
1575 M:      Jerome Brunet <jbrunet@baylibre.com>
1576 L:      linux-amlogic@lists.infradead.org
1577 S:      Maintained
1578 F:      Documentation/devicetree/bindings/clock/amlogic*
1579 F:      drivers/clk/meson/
1580 F:      include/dt-bindings/clock/gxbb*
1581 F:      include/dt-bindings/clock/meson*
1582
1583 ARM/Amlogic Meson SoC Crypto Drivers
1584 M:      Corentin Labbe <clabbe@baylibre.com>
1585 L:      linux-crypto@vger.kernel.org
1586 L:      linux-amlogic@lists.infradead.org
1587 S:      Maintained
1588 F:      Documentation/devicetree/bindings/crypto/amlogic*
1589 F:      drivers/crypto/amlogic/
1590
1591 ARM/Amlogic Meson SoC Sound Drivers
1592 M:      Jerome Brunet <jbrunet@baylibre.com>
1593 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1594 S:      Maintained
1595 F:      Documentation/devicetree/bindings/sound/amlogic*
1596 F:      sound/soc/meson/
1597
1598 ARM/Amlogic Meson SoC support
1599 M:      Kevin Hilman <khilman@baylibre.com>
1600 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1601 L:      linux-amlogic@lists.infradead.org
1602 S:      Maintained
1603 W:      http://linux-meson.com/
1604 F:      arch/arm/boot/dts/meson*
1605 F:      arch/arm/mach-meson/
1606 F:      arch/arm64/boot/dts/amlogic/
1607 F:      drivers/mmc/host/meson*
1608 F:      drivers/pinctrl/meson/
1609 F:      drivers/rtc/rtc-meson*
1610 F:      drivers/soc/amlogic/
1611 N:      meson
1612
1613 ARM/Annapurna Labs ALPINE ARCHITECTURE
1614 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1615 M:      Antoine Tenart <antoine.tenart@bootlin.com>
1616 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1617 S:      Maintained
1618 F:      arch/arm/boot/dts/alpine*
1619 F:      arch/arm/mach-alpine/
1620 F:      arch/arm64/boot/dts/al/
1621 F:      drivers/*/*alpine*
1622
1623 ARM/ARTPEC MACHINE SUPPORT
1624 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1625 M:      Lars Persson <lars.persson@axis.com>
1626 L:      linux-arm-kernel@axis.com
1627 S:      Maintained
1628 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1629 F:      arch/arm/boot/dts/artpec6*
1630 F:      arch/arm/mach-artpec
1631 F:      drivers/clk/axis
1632 F:      drivers/crypto/axis
1633 F:      drivers/mmc/host/usdhi6rol0.c
1634 F:      drivers/pinctrl/pinctrl-artpec*
1635
1636 ARM/ASPEED I2C DRIVER
1637 M:      Brendan Higgins <brendanhiggins@google.com>
1638 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1639 R:      Joel Stanley <joel@jms.id.au>
1640 L:      linux-i2c@vger.kernel.org
1641 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1642 S:      Maintained
1643 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1644 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1645 F:      drivers/i2c/busses/i2c-aspeed.c
1646 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1647
1648 ARM/ASPEED MACHINE SUPPORT
1649 M:      Joel Stanley <joel@jms.id.au>
1650 R:      Andrew Jeffery <andrew@aj.id.au>
1651 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1652 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1653 S:      Supported
1654 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1656 F:      arch/arm/boot/dts/aspeed-*
1657 F:      arch/arm/mach-aspeed/
1658 N:      aspeed
1659
1660 ARM/BITMAIN ARCHITECTURE
1661 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1662 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1663 S:      Maintained
1664 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1665 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1666 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1667 F:      arch/arm64/boot/dts/bitmain/
1668 F:      drivers/clk/clk-bm1880.c
1669 F:      drivers/pinctrl/pinctrl-bm1880.c
1670
1671 ARM/CALXEDA HIGHBANK ARCHITECTURE
1672 M:      Andre Przywara <andre.przywara@arm.com>
1673 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1674 S:      Maintained
1675 F:      arch/arm/boot/dts/ecx-*.dts*
1676 F:      arch/arm/boot/dts/highbank.dts
1677 F:      arch/arm/mach-highbank/
1678
1679 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1680 M:      Krzysztof Halasa <khalasa@piap.pl>
1681 S:      Maintained
1682 F:      arch/arm/mach-cns3xxx/
1683
1684 ARM/CAVIUM THUNDER NETWORK DRIVER
1685 M:      Sunil Goutham <sgoutham@marvell.com>
1686 M:      Robert Richter <rrichter@marvell.com>
1687 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1688 S:      Supported
1689 F:      drivers/net/ethernet/cavium/thunder/
1690
1691 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1692 M:      Lukasz Majewski <lukma@denx.de>
1693 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1694 S:      Maintained
1695 F:      arch/arm/mach-ep93xx/ts72xx.c
1696
1697 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1698 M:      Alexander Shiyan <shc_work@mail.ru>
1699 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1700 S:      Odd Fixes
1701 N:      clps711x
1702
1703 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1704 M:      Lennert Buytenhek <kernel@wantstofly.org>
1705 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1706 S:      Maintained
1707
1708 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1709 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1710 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1711 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1712 S:      Maintained
1713 F:      arch/arm/mach-ep93xx/
1714 F:      arch/arm/mach-ep93xx/include/mach/
1715
1716 ARM/CLKDEV SUPPORT
1717 M:      Russell King <linux@armlinux.org.uk>
1718 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1719 S:      Maintained
1720 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1721 F:      drivers/clk/clkdev.c
1722
1723 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1724 M:      Baruch Siach <baruch@tkos.co.il>
1725 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1726 S:      Maintained
1727 F:      arch/arm/boot/dts/cx92755*
1728 N:      digicolor
1729
1730 ARM/CONTEC MICRO9 MACHINE SUPPORT
1731 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1732 S:      Maintained
1733 F:      arch/arm/mach-ep93xx/micro9.c
1734
1735 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1736 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1737 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
1738 R:      Mike Leach <mike.leach@linaro.org>
1739 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1740 S:      Maintained
1741 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1742 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1743 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1744 F:      Documentation/devicetree/bindings/arm/coresight.txt
1745 F:      Documentation/trace/coresight/*
1746 F:      drivers/hwtracing/coresight/*
1747 F:      include/dt-bindings/arm/coresight-cti-dt.h
1748 F:      tools/perf/arch/arm/util/auxtrace.c
1749 F:      tools/perf/arch/arm/util/cs-etm.c
1750 F:      tools/perf/arch/arm/util/cs-etm.h
1751 F:      tools/perf/arch/arm/util/pmu.c
1752 F:      tools/perf/util/cs-etm-decoder/*
1753 F:      tools/perf/util/cs-etm.*
1754
1755 ARM/CORGI MACHINE SUPPORT
1756 M:      Richard Purdie <rpurdie@rpsys.net>
1757 S:      Maintained
1758
1759 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1760 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1761 M:      Linus Walleij <linus.walleij@linaro.org>
1762 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1763 S:      Maintained
1764 T:      git git://github.com/ulli-kroll/linux.git
1765 F:      Documentation/devicetree/bindings/arm/gemini.txt
1766 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1767 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1768 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1769 F:      arch/arm/mach-gemini/
1770 F:      drivers/net/ethernet/cortina/
1771 F:      drivers/pinctrl/pinctrl-gemini.c
1772 F:      drivers/rtc/rtc-ftrtc010.c
1773
1774 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1775 M:      Barry Song <baohua@kernel.org>
1776 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1777 S:      Maintained
1778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1779 F:      arch/arm/boot/dts/prima2*
1780 F:      arch/arm/mach-prima2/
1781 F:      drivers/clk/sirf/
1782 F:      drivers/clocksource/timer-atlas7.c
1783 F:      drivers/clocksource/timer-prima2.c
1784 X:      drivers/gnss
1785 N:      [^a-z]sirf
1786
1787 ARM/CZ.NIC TURRIS MOX SUPPORT
1788 M:      Marek Behun <marek.behun@nic.cz>
1789 S:      Maintained
1790 W:      http://mox.turris.cz
1791 F:      Documentation/ABI/testing/debugfs-moxtet
1792 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1793 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1794 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1795 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1796 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1797 F:      drivers/bus/moxtet.c
1798 F:      drivers/firmware/turris-mox-rwtm.c
1799 F:      drivers/gpio/gpio-moxtet.c
1800 F:      include/linux/moxtet.h
1801
1802 ARM/EBSA110 MACHINE SUPPORT
1803 M:      Russell King <linux@armlinux.org.uk>
1804 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1805 S:      Maintained
1806 W:      http://www.armlinux.org.uk/
1807 F:      arch/arm/mach-ebsa110/
1808 F:      drivers/net/ethernet/amd/am79c961a.*
1809
1810 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1811 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1812 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1813 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1814 S:      Maintained
1815 N:      efm32
1816
1817 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1818 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1819 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1820 S:      Maintained
1821 F:      arch/arm/mach-pxa/ezx.c
1822
1823 ARM/FARADAY FA526 PORT
1824 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1825 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1826 S:      Maintained
1827 T:      git git://git.berlios.de/gemini-board
1828 F:      arch/arm/mm/*-fa*
1829
1830 ARM/FOOTBRIDGE ARCHITECTURE
1831 M:      Russell King <linux@armlinux.org.uk>
1832 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1833 S:      Maintained
1834 W:      http://www.armlinux.org.uk/
1835 F:      arch/arm/include/asm/hardware/dec21285.h
1836 F:      arch/arm/mach-footbridge/
1837
1838 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1839 M:      Shawn Guo <shawnguo@kernel.org>
1840 M:      Sascha Hauer <s.hauer@pengutronix.de>
1841 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1842 R:      Fabio Estevam <festevam@gmail.com>
1843 R:      NXP Linux Team <linux-imx@nxp.com>
1844 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1845 S:      Maintained
1846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1847 X:      drivers/media/i2c/
1848 N:      imx
1849 N:      mxs
1850
1851 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1852 M:      Shawn Guo <shawnguo@kernel.org>
1853 M:      Li Yang <leoyang.li@nxp.com>
1854 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1855 S:      Maintained
1856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1857 F:      arch/arm/boot/dts/ls1021a*
1858 F:      arch/arm64/boot/dts/freescale/fsl-*
1859 F:      arch/arm64/boot/dts/freescale/qoriq-*
1860
1861 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1862 M:      Shawn Guo <shawnguo@kernel.org>
1863 M:      Sascha Hauer <s.hauer@pengutronix.de>
1864 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1865 R:      Stefan Agner <stefan@agner.ch>
1866 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1867 S:      Maintained
1868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1869 F:      arch/arm/boot/dts/vf*
1870 F:      arch/arm/mach-imx/*vf610*
1871
1872 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1873 M:      Lennert Buytenhek <kernel@wantstofly.org>
1874 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1875 S:      Maintained
1876
1877 ARM/GUMSTIX MACHINE SUPPORT
1878 M:      Steve Sakoman <sakoman@gmail.com>
1879 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1880 S:      Maintained
1881
1882 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1883 M:      Philipp Zabel <philipp.zabel@gmail.com>
1884 M:      Paul Parsons <lost.distance@yahoo.com>
1885 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1886 S:      Maintained
1887 F:      arch/arm/mach-pxa/hx4700.c
1888 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1889 F:      sound/soc/pxa/hx4700.c
1890
1891 ARM/HISILICON SOC SUPPORT
1892 M:      Wei Xu <xuwei5@hisilicon.com>
1893 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1894 S:      Supported
1895 W:      http://www.hisilicon.com
1896 T:      git git://github.com/hisilicon/linux-hisi.git
1897 F:      arch/arm/boot/dts/hi3*
1898 F:      arch/arm/boot/dts/hip*
1899 F:      arch/arm/boot/dts/hisi*
1900 F:      arch/arm/mach-hisi/
1901 F:      arch/arm64/boot/dts/hisilicon/
1902
1903 ARM/HP JORNADA 7XX MACHINE SUPPORT
1904 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1905 S:      Maintained
1906 W:      www.jlime.com
1907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1908 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1909 F:      arch/arm/mach-sa1100/jornada720.c
1910
1911 ARM/IGEP MACHINE SUPPORT
1912 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1913 M:      Javier Martinez Canillas <javier@dowhile0.org>
1914 L:      linux-omap@vger.kernel.org
1915 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1916 S:      Maintained
1917 F:      arch/arm/boot/dts/omap3-igep*
1918
1919 ARM/INCOME PXA270 SUPPORT
1920 M:      Marek Vasut <marek.vasut@gmail.com>
1921 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1922 S:      Maintained
1923 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1924
1925 ARM/INTEL IOP32X ARM ARCHITECTURE
1926 M:      Lennert Buytenhek <kernel@wantstofly.org>
1927 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1928 S:      Maintained
1929
1930 ARM/INTEL IQ81342EX MACHINE SUPPORT
1931 M:      Lennert Buytenhek <kernel@wantstofly.org>
1932 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1933 S:      Maintained
1934
1935 ARM/INTEL IXDP2850 MACHINE SUPPORT
1936 M:      Lennert Buytenhek <kernel@wantstofly.org>
1937 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1938 S:      Maintained
1939
1940 ARM/INTEL IXP4XX ARM ARCHITECTURE
1941 M:      Linus Walleij <linusw@kernel.org>
1942 M:      Imre Kaloz <kaloz@openwrt.org>
1943 M:      Krzysztof Halasa <khalasa@piap.pl>
1944 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1945 S:      Maintained
1946 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1947 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1948 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1949 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1950 F:      arch/arm/mach-ixp4xx/
1951 F:      drivers/clocksource/timer-ixp4xx.c
1952 F:      drivers/gpio/gpio-ixp4xx.c
1953 F:      drivers/irqchip/irq-ixp4xx.c
1954 F:      include/linux/irqchip/irq-ixp4xx.h
1955 F:      include/linux/platform_data/timer-ixp4xx.h
1956
1957 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1958 M:      Jonathan Cameron <jic23@cam.ac.uk>
1959 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1960 S:      Maintained
1961 F:      arch/arm/mach-pxa/stargate2.c
1962 F:      drivers/pcmcia/pxa2xx_stargate2.c
1963
1964 ARM/INTEL XSC3 (MANZANO) ARM CORE
1965 M:      Lennert Buytenhek <kernel@wantstofly.org>
1966 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1967 S:      Maintained
1968
1969 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1970 M:      Lennert Buytenhek <kernel@wantstofly.org>
1971 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1972 S:      Maintained
1973
1974 ARM/LG1K ARCHITECTURE
1975 M:      Chanho Min <chanho.min@lge.com>
1976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1977 S:      Maintained
1978 F:      arch/arm64/boot/dts/lg/
1979
1980 ARM/LOGICPD PXA270 MACHINE SUPPORT
1981 M:      Lennert Buytenhek <kernel@wantstofly.org>
1982 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1983 S:      Maintained
1984
1985 ARM/LPC18XX ARCHITECTURE
1986 M:      Vladimir Zapolskiy <vz@mleia.com>
1987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1988 S:      Maintained
1989 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1990 F:      arch/arm/boot/dts/lpc43*
1991 F:      drivers/i2c/busses/i2c-lpc2k.c
1992 F:      drivers/memory/pl172.c
1993 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
1994 F:      drivers/rtc/rtc-lpc24xx.c
1995 N:      lpc18xx
1996
1997 ARM/LPC32XX SOC SUPPORT
1998 M:      Vladimir Zapolskiy <vz@mleia.com>
1999 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
2000 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2001 S:      Maintained
2002 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2003 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2004 F:      arch/arm/boot/dts/lpc32*
2005 F:      arch/arm/mach-lpc32xx/
2006 F:      drivers/i2c/busses/i2c-pnx.c
2007 F:      drivers/net/ethernet/nxp/lpc_eth.c
2008 F:      drivers/usb/host/ohci-nxp.c
2009 F:      drivers/watchdog/pnx4008_wdt.c
2010 N:      lpc32xx
2011
2012 ARM/MAGICIAN MACHINE SUPPORT
2013 M:      Philipp Zabel <philipp.zabel@gmail.com>
2014 S:      Maintained
2015
2016 ARM/Marvell Dove/MV78xx0/Orion SOC support
2017 M:      Jason Cooper <jason@lakedaemon.net>
2018 M:      Andrew Lunn <andrew@lunn.ch>
2019 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2020 M:      Gregory Clement <gregory.clement@bootlin.com>
2021 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2022 S:      Maintained
2023 T:      git git://git.infradead.org/linux-mvebu.git
2024 F:      Documentation/devicetree/bindings/soc/dove/
2025 F:      arch/arm/boot/dts/dove*
2026 F:      arch/arm/boot/dts/orion5x*
2027 F:      arch/arm/mach-dove/
2028 F:      arch/arm/mach-mv78xx0/
2029 F:      arch/arm/mach-orion5x/
2030 F:      arch/arm/plat-orion/
2031 F:      drivers/soc/dove/
2032
2033 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2034 M:      Jason Cooper <jason@lakedaemon.net>
2035 M:      Andrew Lunn <andrew@lunn.ch>
2036 M:      Gregory Clement <gregory.clement@bootlin.com>
2037 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2038 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2039 S:      Maintained
2040 T:      git git://git.infradead.org/linux-mvebu.git
2041 F:      arch/arm/boot/dts/armada*
2042 F:      arch/arm/boot/dts/kirkwood*
2043 F:      arch/arm/configs/mvebu_*_defconfig
2044 F:      arch/arm/mach-mvebu/
2045 F:      arch/arm64/boot/dts/marvell/armada*
2046 F:      arch/arm64/boot/dts/marvell/cn913*
2047 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2048 F:      drivers/cpufreq/armada-8k-cpufreq.c
2049 F:      drivers/cpufreq/mvebu-cpufreq.c
2050 F:      drivers/irqchip/irq-armada-370-xp.c
2051 F:      drivers/irqchip/irq-mvebu-*
2052 F:      drivers/pinctrl/mvebu/
2053 F:      drivers/rtc/rtc-armada38x.c
2054
2055 ARM/Mediatek RTC DRIVER
2056 M:      Eddie Huang <eddie.huang@mediatek.com>
2057 M:      Sean Wang <sean.wang@mediatek.com>
2058 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2059 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2060 S:      Maintained
2061 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2062 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2063 F:      drivers/rtc/rtc-mt2712.c
2064 F:      drivers/rtc/rtc-mt6397.c
2065 F:      drivers/rtc/rtc-mt7622.c
2066
2067 ARM/Mediatek SoC support
2068 M:      Matthias Brugger <matthias.bgg@gmail.com>
2069 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2070 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2071 S:      Maintained
2072 W:      https://mtk.bcnfs.org/
2073 C:      irc://chat.freenode.net/linux-mediatek
2074 F:      arch/arm/boot/dts/mt6*
2075 F:      arch/arm/boot/dts/mt7*
2076 F:      arch/arm/boot/dts/mt8*
2077 F:      arch/arm/mach-mediatek/
2078 F:      arch/arm64/boot/dts/mediatek/
2079 F:      drivers/soc/mediatek/
2080 N:      mtk
2081 N:      mt[678]
2082 K:      mediatek
2083
2084 ARM/Mediatek USB3 PHY DRIVER
2085 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2086 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2087 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2088 S:      Maintained
2089 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2090 F:      drivers/phy/mediatek/
2091
2092 ARM/Microchip (AT91) SoC support
2093 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2094 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2095 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2096 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2097 S:      Supported
2098 W:      http://www.linux4sam.org
2099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2100 F:      arch/arm/boot/dts/at91*.dts
2101 F:      arch/arm/boot/dts/at91*.dtsi
2102 F:      arch/arm/boot/dts/sama*.dts
2103 F:      arch/arm/boot/dts/sama*.dtsi
2104 F:      arch/arm/include/debug/at91.S
2105 F:      arch/arm/mach-at91/
2106 F:      drivers/memory/atmel*
2107 F:      drivers/watchdog/sama5d4_wdt.c
2108 F:      include/soc/at91/
2109 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2110 X:      drivers/net/wireless/atmel/
2111 N:      at91
2112 N:      atmel
2113
2114 ARM/MIOA701 MACHINE SUPPORT
2115 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2116 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2117 S:      Maintained
2118 F:      arch/arm/mach-pxa/mioa701.c
2119
2120 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2121 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2122 S:      Maintained
2123
2124 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2125 M:      Linus Walleij <linus.walleij@linaro.org>
2126 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2127 S:      Maintained
2128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2129 F:      Documentation/devicetree/bindings/arm/ste-*
2130 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2131 F:      Documentation/devicetree/bindings/arm/ux500/
2132 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2133 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2134 F:      arch/arm/boot/dts/ste-*
2135 F:      arch/arm/mach-nomadik/
2136 F:      arch/arm/mach-u300/
2137 F:      arch/arm/mach-ux500/
2138 F:      drivers/clk/clk-nomadik.c
2139 F:      drivers/clk/clk-u300.c
2140 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2141 F:      drivers/clocksource/timer-u300.c
2142 F:      drivers/dma/coh901318*
2143 F:      drivers/dma/ste_dma40*
2144 F:      drivers/hwspinlock/u8500_hsem.c
2145 F:      drivers/i2c/busses/i2c-nomadik.c
2146 F:      drivers/i2c/busses/i2c-stu300.c
2147 F:      drivers/iio/adc/ab8500-gpadc.c
2148 F:      drivers/mfd/ab3100*
2149 F:      drivers/mfd/ab8500*
2150 F:      drivers/mfd/abx500*
2151 F:      drivers/mfd/db8500*
2152 F:      drivers/mfd/dbx500*
2153 F:      drivers/pinctrl/nomadik/
2154 F:      drivers/pinctrl/pinctrl-coh901*
2155 F:      drivers/pinctrl/pinctrl-u300.c
2156 F:      drivers/rtc/rtc-ab3100.c
2157 F:      drivers/rtc/rtc-ab8500.c
2158 F:      drivers/rtc/rtc-coh901331.c
2159 F:      drivers/rtc/rtc-pl031.c
2160 F:      drivers/soc/ux500/
2161 F:      drivers/watchdog/coh901327_wdt.c
2162
2163 ARM/NUVOTON NPCM ARCHITECTURE
2164 M:      Avi Fishman <avifishman70@gmail.com>
2165 M:      Tomer Maimon <tmaimon77@gmail.com>
2166 M:      Tali Perry <tali.perry1@gmail.com>
2167 R:      Patrick Venture <venture@google.com>
2168 R:      Nancy Yuen <yuenn@google.com>
2169 R:      Benjamin Fair <benjaminfair@google.com>
2170 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2171 S:      Supported
2172 F:      Documentation/devicetree/bindings/*/*/*npcm*
2173 F:      Documentation/devicetree/bindings/*/*npcm*
2174 F:      arch/arm/boot/dts/nuvoton-npcm*
2175 F:      arch/arm/mach-npcm/
2176 F:      drivers/*/*npcm*
2177 F:      drivers/*/*/*npcm*
2178 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2179
2180 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2181 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2182 S:      Orphan
2183 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2184 F:      arch/arm/mach-s3c24xx/gta02.h
2185 F:      arch/arm/mach-s3c24xx/mach-gta02.c
2186
2187 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2188 M:      Alexander Clouter <alex@digriz.org.uk>
2189 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2190 S:      Maintained
2191 W:      http://www.digriz.org.uk/ts78xx/kernel
2192 F:      arch/arm/mach-orion5x/ts78xx-*
2193
2194 ARM/OXNAS platform support
2195 M:      Neil Armstrong <narmstrong@baylibre.com>
2196 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2197 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2198 S:      Maintained
2199 F:      arch/arm/boot/dts/ox8*.dts*
2200 F:      arch/arm/mach-oxnas/
2201 F:      drivers/power/reset/oxnas-restart.c
2202 N:      oxnas
2203
2204 ARM/PALM TREO SUPPORT
2205 M:      Tomas Cech <sleep_walker@suse.com>
2206 L:      linux-arm-kernel@lists.infradead.org
2207 S:      Maintained
2208 W:      http://hackndev.com
2209 F:      arch/arm/mach-pxa/palmtreo.*
2210
2211 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2212 M:      Marek Vasut <marek.vasut@gmail.com>
2213 L:      linux-arm-kernel@lists.infradead.org
2214 S:      Maintained
2215 W:      http://hackndev.com
2216 F:      arch/arm/mach-pxa/include/mach/palmld.h
2217 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2218 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2219 F:      arch/arm/mach-pxa/palmld.c
2220 F:      arch/arm/mach-pxa/palmt5.*
2221 F:      arch/arm/mach-pxa/palmtc.c
2222 F:      arch/arm/mach-pxa/palmte2.*
2223 F:      arch/arm/mach-pxa/palmtx.c
2224
2225 ARM/PALMZ72 SUPPORT
2226 M:      Sergey Lapin <slapin@ossfans.org>
2227 L:      linux-arm-kernel@lists.infradead.org
2228 S:      Maintained
2229 W:      http://hackndev.com
2230 F:      arch/arm/mach-pxa/palmz72.*
2231
2232 ARM/PLEB SUPPORT
2233 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2234 S:      Maintained
2235 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2236
2237 ARM/PT DIGITAL BOARD PORT
2238 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2239 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2240 S:      Maintained
2241 W:      http://www.armlinux.org.uk/
2242
2243 ARM/QUALCOMM SUPPORT
2244 M:      Andy Gross <agross@kernel.org>
2245 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2246 L:      linux-arm-msm@vger.kernel.org
2247 S:      Maintained
2248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2249 F:      Documentation/devicetree/bindings/*/qcom*
2250 F:      Documentation/devicetree/bindings/soc/qcom/
2251 F:      arch/arm/boot/dts/qcom-*.dts
2252 F:      arch/arm/boot/dts/qcom-*.dtsi
2253 F:      arch/arm/mach-qcom/
2254 F:      arch/arm64/boot/dts/qcom/
2255 F:      drivers/*/*/qcom*
2256 F:      drivers/*/*/qcom/
2257 F:      drivers/*/pm8???-*
2258 F:      drivers/*/qcom*
2259 F:      drivers/*/qcom/
2260 F:      drivers/bluetooth/btqcomsmd.c
2261 F:      drivers/clocksource/timer-qcom.c
2262 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2263 F:      drivers/extcon/extcon-qcom*
2264 F:      drivers/i2c/busses/i2c-qcom-geni.c
2265 F:      drivers/i2c/busses/i2c-qup.c
2266 F:      drivers/iommu/msm*
2267 F:      drivers/mfd/ssbi.c
2268 F:      drivers/mmc/host/mmci_qcom*
2269 F:      drivers/mmc/host/sdhci-msm.c
2270 F:      drivers/pci/controller/dwc/pcie-qcom.c
2271 F:      drivers/phy/qualcomm/
2272 F:      drivers/power/*/msm*
2273 F:      drivers/reset/reset-qcom-*
2274 F:      drivers/scsi/ufs/ufs-qcom.*
2275 F:      drivers/spi/spi-geni-qcom.c
2276 F:      drivers/spi/spi-qcom-qspi.c
2277 F:      drivers/spi/spi-qup.c
2278 F:      drivers/tty/serial/msm_serial.c
2279 F:      drivers/usb/dwc3/dwc3-qcom.c
2280 F:      include/dt-bindings/*/qcom*
2281 F:      include/linux/*/qcom*
2282
2283 ARM/RADISYS ENP2611 MACHINE SUPPORT
2284 M:      Lennert Buytenhek <kernel@wantstofly.org>
2285 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2286 S:      Maintained
2287
2288 ARM/RDA MICRO ARCHITECTURE
2289 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2290 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2291 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2292 S:      Maintained
2293 F:      Documentation/devicetree/bindings/arm/rda.yaml
2294 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2295 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2296 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2297 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2298 F:      arch/arm/boot/dts/rda8810pl-*
2299 F:      drivers/clocksource/timer-rda.c
2300 F:      drivers/gpio/gpio-rda.c
2301 F:      drivers/irqchip/irq-rda-intc.c
2302 F:      drivers/tty/serial/rda-uart.c
2303
2304 ARM/REALTEK ARCHITECTURE
2305 M:      Andreas Färber <afaerber@suse.de>
2306 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2307 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2308 S:      Maintained
2309 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2310 F:      arch/arm/boot/dts/rtd*
2311 F:      arch/arm/mach-realtek/
2312 F:      arch/arm64/boot/dts/realtek/
2313
2314 ARM/RENESAS ARM64 ARCHITECTURE
2315 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2316 M:      Magnus Damm <magnus.damm@gmail.com>
2317 L:      linux-renesas-soc@vger.kernel.org
2318 S:      Supported
2319 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2321 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2322 F:      arch/arm64/boot/dts/renesas/
2323 F:      drivers/soc/renesas/
2324 F:      include/linux/soc/renesas/
2325
2326 ARM/RISCPC ARCHITECTURE
2327 M:      Russell King <linux@armlinux.org.uk>
2328 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2329 S:      Maintained
2330 W:      http://www.armlinux.org.uk/
2331 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2332 F:      arch/arm/include/asm/hardware/ioc.h
2333 F:      arch/arm/include/asm/hardware/iomd.h
2334 F:      arch/arm/include/asm/hardware/memc.h
2335 F:      arch/arm/mach-rpc/
2336 F:      drivers/net/ethernet/8390/etherh.c
2337 F:      drivers/net/ethernet/i825xx/ether1*
2338 F:      drivers/net/ethernet/seeq/ether3*
2339 F:      drivers/scsi/arm/
2340
2341 ARM/Rockchip SoC support
2342 M:      Heiko Stuebner <heiko@sntech.de>
2343 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2344 L:      linux-rockchip@lists.infradead.org
2345 S:      Maintained
2346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2347 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2348 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2349 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2350 F:      arch/arm/boot/dts/rk3*
2351 F:      arch/arm/boot/dts/rv1108*
2352 F:      arch/arm/mach-rockchip/
2353 F:      drivers/*/*/*rockchip*
2354 F:      drivers/*/*rockchip*
2355 F:      drivers/clk/rockchip/
2356 F:      drivers/i2c/busses/i2c-rk3x.c
2357 F:      sound/soc/rockchip/
2358 N:      rockchip
2359
2360 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2361 M:      Kukjin Kim <kgene@kernel.org>
2362 M:      Krzysztof Kozlowski <krzk@kernel.org>
2363 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2364 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2365 S:      Maintained
2366 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2367 F:      Documentation/arm/samsung/
2368 F:      Documentation/devicetree/bindings/arm/samsung/
2369 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2370 F:      arch/arm/boot/dts/exynos*
2371 F:      arch/arm/boot/dts/s3c*
2372 F:      arch/arm/boot/dts/s5p*
2373 F:      arch/arm/mach-exynos*/
2374 F:      arch/arm/mach-s3c24*/
2375 F:      arch/arm/mach-s3c64xx/
2376 F:      arch/arm/mach-s5p*/
2377 F:      arch/arm/plat-samsung/
2378 F:      arch/arm64/boot/dts/exynos/
2379 F:      drivers/*/*/*s3c24*
2380 F:      drivers/*/*s3c24*
2381 F:      drivers/*/*s3c64xx*
2382 F:      drivers/*/*s5pv210*
2383 F:      drivers/memory/samsung/
2384 F:      drivers/soc/samsung/
2385 F:      drivers/tty/serial/samsung*
2386 F:      include/linux/soc/samsung/
2387 N:      exynos
2388
2389 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2390 M:      Kyungmin Park <kyungmin.park@samsung.com>
2391 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2392 S:      Maintained
2393 F:      arch/arm/mach-s5pv210/
2394
2395 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2396 M:      Kyungmin Park <kyungmin.park@samsung.com>
2397 M:      Kamil Debski <kamil@wypas.org>
2398 M:      Andrzej Hajda <a.hajda@samsung.com>
2399 L:      linux-arm-kernel@lists.infradead.org
2400 L:      linux-media@vger.kernel.org
2401 S:      Maintained
2402 F:      drivers/media/platform/s5p-g2d/
2403
2404 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2405 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2406 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2407 L:      linux-media@vger.kernel.org
2408 S:      Maintained
2409 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2410 F:      drivers/media/platform/s5p-cec/
2411
2412 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2413 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2414 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2415 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2416 L:      linux-arm-kernel@lists.infradead.org
2417 L:      linux-media@vger.kernel.org
2418 S:      Maintained
2419 F:      drivers/media/platform/s5p-jpeg/
2420
2421 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2422 M:      Kyungmin Park <kyungmin.park@samsung.com>
2423 M:      Kamil Debski <kamil@wypas.org>
2424 M:      Jeongtae Park <jtp.park@samsung.com>
2425 M:      Andrzej Hajda <a.hajda@samsung.com>
2426 L:      linux-arm-kernel@lists.infradead.org
2427 L:      linux-media@vger.kernel.org
2428 S:      Maintained
2429 F:      drivers/media/platform/s5p-mfc/
2430
2431 ARM/SHMOBILE ARM ARCHITECTURE
2432 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2433 M:      Magnus Damm <magnus.damm@gmail.com>
2434 L:      linux-renesas-soc@vger.kernel.org
2435 S:      Supported
2436 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2438 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2439 F:      arch/arm/boot/dts/emev2*
2440 F:      arch/arm/boot/dts/gr-peach*
2441 F:      arch/arm/boot/dts/iwg20d-q7*
2442 F:      arch/arm/boot/dts/r7s*
2443 F:      arch/arm/boot/dts/r8a*
2444 F:      arch/arm/boot/dts/r9a*
2445 F:      arch/arm/boot/dts/sh*
2446 F:      arch/arm/configs/shmobile_defconfig
2447 F:      arch/arm/include/debug/renesas-scif.S
2448 F:      arch/arm/mach-shmobile/
2449 F:      drivers/soc/renesas/
2450 F:      include/linux/soc/renesas/
2451
2452 ARM/SOCFPGA ARCHITECTURE
2453 M:      Dinh Nguyen <dinguyen@kernel.org>
2454 S:      Maintained
2455 W:      http://www.rocketboards.org
2456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2457 F:      arch/arm/boot/dts/socfpga*
2458 F:      arch/arm/configs/socfpga_defconfig
2459 F:      arch/arm/mach-socfpga/
2460 F:      arch/arm64/boot/dts/altera/
2461 F:      arch/arm64/boot/dts/intel/
2462
2463 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2464 M:      Dinh Nguyen <dinguyen@kernel.org>
2465 S:      Maintained
2466 F:      drivers/clk/socfpga/
2467
2468 ARM/SOCFPGA EDAC SUPPORT
2469 M:      Thor Thayer <thor.thayer@linux.intel.com>
2470 S:      Maintained
2471 F:      drivers/edac/altera_edac.
2472
2473 ARM/SPREADTRUM SoC SUPPORT
2474 M:      Orson Zhai <orsonzhai@gmail.com>
2475 M:      Baolin Wang <baolin.wang7@gmail.com>
2476 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2477 S:      Maintained
2478 F:      arch/arm64/boot/dts/sprd
2479 N:      sprd
2480 N:      sc27xx
2481 N:      sc2731
2482
2483 ARM/STI ARCHITECTURE
2484 M:      Patrice Chotard <patrice.chotard@st.com>
2485 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2486 S:      Maintained
2487 W:      http://www.stlinux.com
2488 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2489 F:      arch/arm/boot/dts/sti*
2490 F:      arch/arm/mach-sti/
2491 F:      drivers/ata/ahci_st.c
2492 F:      drivers/char/hw_random/st-rng.c
2493 F:      drivers/clocksource/arm_global_timer.c
2494 F:      drivers/clocksource/clksrc_st_lpc.c
2495 F:      drivers/cpufreq/sti-cpufreq.c
2496 F:      drivers/dma/st_fdma*
2497 F:      drivers/i2c/busses/i2c-st.c
2498 F:      drivers/media/platform/sti/c8sectpfe/
2499 F:      drivers/media/rc/st_rc.c
2500 F:      drivers/mmc/host/sdhci-st.c
2501 F:      drivers/phy/st/phy-miphy28lp.c
2502 F:      drivers/phy/st/phy-stih407-usb.c
2503 F:      drivers/pinctrl/pinctrl-st.c
2504 F:      drivers/remoteproc/st_remoteproc.c
2505 F:      drivers/remoteproc/st_slim_rproc.c
2506 F:      drivers/reset/sti/
2507 F:      drivers/rtc/rtc-st-lpc.c
2508 F:      drivers/tty/serial/st-asc.c
2509 F:      drivers/usb/dwc3/dwc3-st.c
2510 F:      drivers/usb/host/ehci-st.c
2511 F:      drivers/usb/host/ohci-st.c
2512 F:      drivers/watchdog/st_lpc_wdt.c
2513 F:      include/linux/remoteproc/st_slim_rproc.h
2514
2515 ARM/STM32 ARCHITECTURE
2516 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2517 M:      Alexandre Torgue <alexandre.torgue@st.com>
2518 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2519 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2520 S:      Maintained
2521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2522 F:      arch/arm/boot/dts/stm32*
2523 F:      arch/arm/mach-stm32/
2524 F:      drivers/clocksource/armv7m_systick.c
2525 N:      stm32
2526 N:      stm
2527
2528 ARM/Synaptics SoC support
2529 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2530 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2531 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2532 S:      Maintained
2533 F:      arch/arm/boot/dts/berlin*
2534 F:      arch/arm/mach-berlin/
2535 F:      arch/arm64/boot/dts/synaptics/
2536
2537 ARM/TANGO ARCHITECTURE
2538 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2539 M:      Mans Rullgard <mans@mansr.com>
2540 L:      linux-arm-kernel@lists.infradead.org
2541 S:      Odd Fixes
2542 N:      tango
2543
2544 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2545 M:      Lennert Buytenhek <kernel@wantstofly.org>
2546 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2547 S:      Maintained
2548
2549 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2550 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2551 L:      linux-tegra@vger.kernel.org
2552 L:      linux-media@vger.kernel.org
2553 S:      Maintained
2554 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2555 F:      drivers/media/platform/tegra-cec/
2556
2557 ARM/TETON BGA MACHINE SUPPORT
2558 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2559 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2560 S:      Maintained
2561
2562 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2563 M:      Santosh Shilimkar <ssantosh@kernel.org>
2564 L:      linux-kernel@vger.kernel.org
2565 S:      Maintained
2566 F:      drivers/memory/*emif*
2567
2568 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2569 M:      Santosh Shilimkar <ssantosh@kernel.org>
2570 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2571 S:      Maintained
2572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2573 F:      arch/arm/boot/dts/keystone-*
2574 F:      arch/arm/mach-keystone/
2575
2576 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2577 M:      Santosh Shilimkar <ssantosh@kernel.org>
2578 L:      linux-kernel@vger.kernel.org
2579 S:      Maintained
2580 F:      drivers/clk/keystone/
2581
2582 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2583 M:      Santosh Shilimkar <ssantosh@kernel.org>
2584 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2585 L:      linux-kernel@vger.kernel.org
2586 S:      Maintained
2587 F:      drivers/clocksource/timer-keystone.c
2588
2589 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2590 M:      Santosh Shilimkar <ssantosh@kernel.org>
2591 L:      linux-kernel@vger.kernel.org
2592 S:      Maintained
2593 F:      drivers/power/reset/keystone-reset.c
2594
2595 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2596 M:      Tero Kristo <t-kristo@ti.com>
2597 M:      Nishanth Menon <nm@ti.com>
2598 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2599 S:      Supported
2600 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2601 F:      arch/arm64/boot/dts/ti/Makefile
2602 F:      arch/arm64/boot/dts/ti/k3-*
2603 F:      include/dt-bindings/pinctrl/k3.h
2604
2605 ARM/THECUS N2100 MACHINE SUPPORT
2606 M:      Lennert Buytenhek <kernel@wantstofly.org>
2607 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2608 S:      Maintained
2609
2610 ARM/TOSA MACHINE SUPPORT
2611 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2612 M:      Dirk Opfer <dirk@opfer-online.de>
2613 S:      Maintained
2614
2615 ARM/UNIPHIER ARCHITECTURE
2616 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
2617 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2618 S:      Maintained
2619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2620 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2621 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2622 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2623 F:      arch/arm/boot/dts/uniphier*
2624 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2625 F:      arch/arm/mach-uniphier/
2626 F:      arch/arm/mm/cache-uniphier.c
2627 F:      arch/arm64/boot/dts/socionext/uniphier*
2628 F:      drivers/bus/uniphier-system-bus.c
2629 F:      drivers/clk/uniphier/
2630 F:      drivers/dma/uniphier-mdmac.c
2631 F:      drivers/gpio/gpio-uniphier.c
2632 F:      drivers/i2c/busses/i2c-uniphier*
2633 F:      drivers/irqchip/irq-uniphier-aidet.c
2634 F:      drivers/mmc/host/uniphier-sd.c
2635 F:      drivers/pinctrl/uniphier/
2636 F:      drivers/reset/reset-uniphier.c
2637 F:      drivers/tty/serial/8250/8250_uniphier.c
2638 N:      uniphier
2639
2640 ARM/VERSATILE EXPRESS PLATFORM
2641 M:      Liviu Dudau <liviu.dudau@arm.com>
2642 M:      Sudeep Holla <sudeep.holla@arm.com>
2643 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2644 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2645 S:      Maintained
2646 F:      */*/*/vexpress*
2647 F:      */*/vexpress*
2648 F:      arch/arm/boot/dts/vexpress*
2649 F:      arch/arm/mach-vexpress/
2650 F:      arch/arm64/boot/dts/arm/
2651 F:      drivers/clk/versatile/clk-vexpress-osc.c
2652 F:      drivers/clocksource/timer-versatile.c
2653 N:      mps2
2654
2655 ARM/VFP SUPPORT
2656 M:      Russell King <linux@armlinux.org.uk>
2657 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2658 S:      Maintained
2659 W:      http://www.armlinux.org.uk/
2660 F:      arch/arm/vfp/
2661
2662 ARM/VOIPAC PXA270 SUPPORT
2663 M:      Marek Vasut <marek.vasut@gmail.com>
2664 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2665 S:      Maintained
2666 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2667 F:      arch/arm/mach-pxa/vpac270.c
2668
2669 ARM/VT8500 ARM ARCHITECTURE
2670 M:      Tony Prisk <linux@prisktech.co.nz>
2671 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2672 S:      Maintained
2673 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2674 F:      arch/arm/mach-vt8500/
2675 F:      drivers/clocksource/timer-vt8500.c
2676 F:      drivers/i2c/busses/i2c-wmt.c
2677 F:      drivers/mmc/host/wmt-sdmmc.c
2678 F:      drivers/pwm/pwm-vt8500.c
2679 F:      drivers/rtc/rtc-vt8500.c
2680 F:      drivers/tty/serial/vt8500_serial.c
2681 F:      drivers/usb/host/ehci-platform.c
2682 F:      drivers/usb/host/uhci-platform.c
2683 F:      drivers/video/fbdev/vt8500lcdfb.*
2684 F:      drivers/video/fbdev/wm8505fb*
2685 F:      drivers/video/fbdev/wmt_ge_rops.*
2686
2687 ARM/ZIPIT Z2 SUPPORT
2688 M:      Marek Vasut <marek.vasut@gmail.com>
2689 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2690 S:      Maintained
2691 F:      arch/arm/mach-pxa/include/mach/z2.h
2692 F:      arch/arm/mach-pxa/z2.c
2693
2694 ARM/ZTE ARCHITECTURE
2695 M:      Jun Nie <jun.nie@linaro.org>
2696 M:      Shawn Guo <shawnguo@kernel.org>
2697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2698 S:      Maintained
2699 F:      Documentation/devicetree/bindings/arm/zte.yaml
2700 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2701 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2702 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2703 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2704 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2705 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2706 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2707 F:      Documentation/devicetree/bindings/soc/zte/
2708 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2709 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2710 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2711 F:      arch/arm/boot/dts/zx2967*
2712 F:      arch/arm/mach-zx/
2713 F:      arch/arm64/boot/dts/zte/
2714 F:      drivers/clk/zte/
2715 F:      drivers/dma/zx_dma.c
2716 F:      drivers/gpio/gpio-zx.c
2717 F:      drivers/i2c/busses/i2c-zx2967.c
2718 F:      drivers/mmc/host/dw_mmc-zx.*
2719 F:      drivers/pinctrl/zte/
2720 F:      drivers/soc/zte/
2721 F:      drivers/thermal/zx2967_thermal.c
2722 F:      drivers/watchdog/zx2967_wdt.c
2723 F:      include/dt-bindings/clock/zx2967*.h
2724 F:      include/dt-bindings/soc/zte,*.h
2725 F:      sound/soc/codecs/zx_aud96p22.c
2726 F:      sound/soc/zte/
2727
2728 ARM/ZYNQ ARCHITECTURE
2729 M:      Michal Simek <michal.simek@xilinx.com>
2730 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2731 S:      Supported
2732 W:      http://wiki.xilinx.com
2733 T:      git https://github.com/Xilinx/linux-xlnx.git
2734 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2735 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2736 F:      arch/arm/mach-zynq/
2737 F:      drivers/block/xsysace.c
2738 F:      drivers/clocksource/timer-cadence-ttc.c
2739 F:      drivers/cpuidle/cpuidle-zynq.c
2740 F:      drivers/edac/synopsys_edac.c
2741 F:      drivers/i2c/busses/i2c-cadence.c
2742 F:      drivers/i2c/busses/i2c-xiic.c
2743 F:      drivers/mmc/host/sdhci-of-arasan.c
2744 N:      zynq
2745 N:      xilinx
2746
2747 ARM64 PORT (AARCH64 ARCHITECTURE)
2748 M:      Catalin Marinas <catalin.marinas@arm.com>
2749 M:      Will Deacon <will@kernel.org>
2750 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2751 S:      Maintained
2752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2753 F:      Documentation/arm64/
2754 F:      arch/arm64/
2755 F:      tools/testing/selftests/arm64/
2756 X:      arch/arm64/boot/dts/
2757
2758 AS3645A LED FLASH CONTROLLER DRIVER
2759 M:      Sakari Ailus <sakari.ailus@iki.fi>
2760 L:      linux-leds@vger.kernel.org
2761 S:      Maintained
2762 F:      drivers/leds/leds-as3645a.c
2763
2764 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2765 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2766 L:      linux-media@vger.kernel.org
2767 S:      Maintained
2768 T:      git git://linuxtv.org/media_tree.git
2769 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2770 F:      drivers/media/i2c/ak7375.c
2771
2772 ASAHI KASEI AK8974 DRIVER
2773 M:      Linus Walleij <linus.walleij@linaro.org>
2774 L:      linux-iio@vger.kernel.org
2775 S:      Supported
2776 W:      http://www.akm.com/
2777 F:      drivers/iio/magnetometer/ak8974.c
2778
2779 ASC7621 HARDWARE MONITOR DRIVER
2780 M:      George Joseph <george.joseph@fairview5.com>
2781 L:      linux-hwmon@vger.kernel.org
2782 S:      Maintained
2783 F:      Documentation/hwmon/asc7621.rst
2784 F:      drivers/hwmon/asc7621.c
2785
2786 ASPEED PINCTRL DRIVERS
2787 M:      Andrew Jeffery <andrew@aj.id.au>
2788 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2789 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2790 L:      linux-gpio@vger.kernel.org
2791 S:      Maintained
2792 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2793 F:      drivers/pinctrl/aspeed/
2794
2795 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2796 M:      Eddie James <eajames@linux.ibm.com>
2797 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2798 S:      Maintained
2799 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2800 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2801 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2802
2803 ASPEED VIDEO ENGINE DRIVER
2804 M:      Eddie James <eajames@linux.ibm.com>
2805 L:      linux-media@vger.kernel.org
2806 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2807 S:      Maintained
2808 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2809 F:      drivers/media/platform/aspeed-video.c
2810
2811 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2812 M:      Corentin Chary <corentin.chary@gmail.com>
2813 L:      acpi4asus-user@lists.sourceforge.net
2814 L:      platform-driver-x86@vger.kernel.org
2815 S:      Maintained
2816 W:      http://acpi4asus.sf.net
2817 F:      drivers/platform/x86/asus*.c
2818 F:      drivers/platform/x86/eeepc*.c
2819
2820 ASUS WIRELESS RADIO CONTROL DRIVER
2821 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2822 L:      platform-driver-x86@vger.kernel.org
2823 S:      Maintained
2824 F:      drivers/platform/x86/asus-wireless.c
2825
2826 ASYMMETRIC KEYS
2827 M:      David Howells <dhowells@redhat.com>
2828 L:      keyrings@vger.kernel.org
2829 S:      Maintained
2830 F:      Documentation/crypto/asymmetric-keys.txt
2831 F:      crypto/asymmetric_keys/
2832 F:      include/crypto/pkcs7.h
2833 F:      include/crypto/public_key.h
2834 F:      include/linux/verification.h
2835
2836 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2837 R:      Dan Williams <dan.j.williams@intel.com>
2838 S:      Odd fixes
2839 W:      http://sourceforge.net/projects/xscaleiop
2840 F:      Documentation/crypto/async-tx-api.txt
2841 F:      crypto/async_tx/
2842 F:      drivers/dma/
2843 F:      include/linux/async_tx.h
2844 F:      include/linux/dmaengine.h
2845
2846 AT24 EEPROM DRIVER
2847 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2848 L:      linux-i2c@vger.kernel.org
2849 S:      Maintained
2850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2851 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2852 F:      drivers/misc/eeprom/at24.c
2853
2854 ATA OVER ETHERNET (AOE) DRIVER
2855 M:      "Justin Sanders" <justin@coraid.com>
2856 S:      Supported
2857 W:      http://www.openaoe.org/
2858 F:      Documentation/admin-guide/aoe/
2859 F:      drivers/block/aoe/
2860
2861 ATHEROS 71XX/9XXX GPIO DRIVER
2862 M:      Alban Bedel <albeu@free.fr>
2863 S:      Maintained
2864 W:      https://github.com/AlbanBedel/linux
2865 T:      git git://github.com/AlbanBedel/linux
2866 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2867 F:      drivers/gpio/gpio-ath79.c
2868
2869 ATHEROS 71XX/9XXX USB PHY DRIVER
2870 M:      Alban Bedel <albeu@free.fr>
2871 S:      Maintained
2872 W:      https://github.com/AlbanBedel/linux
2873 T:      git git://github.com/AlbanBedel/linux
2874 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2875 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2876
2877 ATHEROS ATH GENERIC UTILITIES
2878 M:      Kalle Valo <kvalo@codeaurora.org>
2879 L:      linux-wireless@vger.kernel.org
2880 S:      Supported
2881 F:      drivers/net/wireless/ath/*
2882
2883 ATHEROS ATH5K WIRELESS DRIVER
2884 M:      Jiri Slaby <jirislaby@gmail.com>
2885 M:      Nick Kossifidis <mickflemm@gmail.com>
2886 M:      Luis Chamberlain <mcgrof@kernel.org>
2887 L:      linux-wireless@vger.kernel.org
2888 S:      Maintained
2889 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2890 F:      drivers/net/wireless/ath/ath5k/
2891
2892 ATHEROS ATH6KL WIRELESS DRIVER
2893 M:      Kalle Valo <kvalo@codeaurora.org>
2894 L:      linux-wireless@vger.kernel.org
2895 S:      Supported
2896 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2898 F:      drivers/net/wireless/ath/ath6kl/
2899
2900 ATI_REMOTE2 DRIVER
2901 M:      Ville Syrjala <syrjala@sci.fi>
2902 S:      Maintained
2903 F:      drivers/input/misc/ati_remote2.c
2904
2905 ATK0110 HWMON DRIVER
2906 M:      Luca Tettamanti <kronos.it@gmail.com>
2907 L:      linux-hwmon@vger.kernel.org
2908 S:      Maintained
2909 F:      drivers/hwmon/asus_atk0110.c
2910
2911 ATLX ETHERNET DRIVERS
2912 M:      Jay Cliburn <jcliburn@gmail.com>
2913 M:      Chris Snook <chris.snook@gmail.com>
2914 L:      netdev@vger.kernel.org
2915 S:      Maintained
2916 W:      http://sourceforge.net/projects/atl1
2917 W:      http://atl1.sourceforge.net
2918 F:      drivers/net/ethernet/atheros/
2919
2920 ATM
2921 M:      Chas Williams <3chas3@gmail.com>
2922 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2923 L:      netdev@vger.kernel.org
2924 S:      Maintained
2925 W:      http://linux-atm.sourceforge.net
2926 F:      drivers/atm/
2927 F:      include/linux/atm*
2928 F:      include/uapi/linux/atm*
2929
2930 ATMEL MACB ETHERNET DRIVER
2931 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2932 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2933 S:      Supported
2934 F:      drivers/net/ethernet/cadence/
2935
2936 ATMEL MAXTOUCH DRIVER
2937 M:      Nick Dyer <nick@shmanahar.org>
2938 S:      Maintained
2939 T:      git git://github.com/ndyer/linux.git
2940 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2941 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2942
2943 ATMEL WIRELESS DRIVER
2944 M:      Simon Kelley <simon@thekelleys.org.uk>
2945 L:      linux-wireless@vger.kernel.org
2946 S:      Maintained
2947 W:      http://www.thekelleys.org.uk/atmel
2948 W:      http://atmelwlandriver.sourceforge.net/
2949 F:      drivers/net/wireless/atmel/atmel*
2950
2951 ATOMIC INFRASTRUCTURE
2952 M:      Will Deacon <will@kernel.org>
2953 M:      Peter Zijlstra <peterz@infradead.org>
2954 R:      Boqun Feng <boqun.feng@gmail.com>
2955 L:      linux-kernel@vger.kernel.org
2956 S:      Maintained
2957 F:      arch/*/include/asm/atomic*.h
2958 F:      include/*/atomic*.h
2959 F:      scripts/atomic/
2960
2961 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2962 M:      Bradley Grove <linuxdrivers@attotech.com>
2963 L:      linux-scsi@vger.kernel.org
2964 S:      Supported
2965 W:      http://www.attotech.com
2966 F:      drivers/scsi/esas2r
2967
2968 ATUSB IEEE 802.15.4 RADIO DRIVER
2969 M:      Stefan Schmidt <stefan@datenfreihafen.org>
2970 L:      linux-wpan@vger.kernel.org
2971 S:      Maintained
2972 F:      drivers/net/ieee802154/at86rf230.h
2973 F:      drivers/net/ieee802154/atusb.c
2974 F:      drivers/net/ieee802154/atusb.h
2975
2976 AUDIT SUBSYSTEM
2977 M:      Paul Moore <paul@paul-moore.com>
2978 M:      Eric Paris <eparis@redhat.com>
2979 L:      linux-audit@redhat.com (moderated for non-subscribers)
2980 S:      Supported
2981 W:      https://github.com/linux-audit
2982 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2983 F:      include/linux/audit.h
2984 F:      include/uapi/linux/audit.h
2985 F:      kernel/audit*
2986
2987 AUXILIARY DISPLAY DRIVERS
2988 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2989 S:      Maintained
2990 F:      drivers/auxdisplay/
2991 F:      include/linux/cfag12864b.h
2992
2993 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2994 M:      Andreas Klinger <ak@it-klinger.de>
2995 L:      linux-iio@vger.kernel.org
2996 S:      Maintained
2997 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
2998 F:      drivers/iio/adc/hx711.c
2999
3000 AX.25 NETWORK LAYER
3001 M:      Ralf Baechle <ralf@linux-mips.org>
3002 L:      linux-hams@vger.kernel.org
3003 S:      Maintained
3004 W:      http://www.linux-ax25.org/
3005 F:      include/net/ax25.h
3006 F:      include/uapi/linux/ax25.h
3007 F:      net/ax25/
3008
3009 AXENTIA ARM DEVICES
3010 M:      Peter Rosin <peda@axentia.se>
3011 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3012 S:      Maintained
3013 F:      arch/arm/boot/dts/at91-linea.dtsi
3014 F:      arch/arm/boot/dts/at91-natte.dtsi
3015 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3016 F:      arch/arm/boot/dts/at91-tse850-3.dts
3017
3018 AXENTIA ASOC DRIVERS
3019 M:      Peter Rosin <peda@axentia.se>
3020 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3021 S:      Maintained
3022 F:      Documentation/devicetree/bindings/sound/axentia,*
3023 F:      sound/soc/atmel/tse850-pcm5142.c
3024
3025 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3026 M:      Nuno Sá <nuno.sa@analog.com>
3027 L:      linux-hwmon@vger.kernel.org
3028 S:      Supported
3029 W:      http://ez.analog.com/community/linux-device-drivers
3030 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3031 F:      drivers/hwmon/axi-fan-control.c
3032
3033 AXXIA I2C CONTROLLER
3034 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3035 L:      linux-i2c@vger.kernel.org
3036 S:      Maintained
3037 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3038 F:      drivers/i2c/busses/i2c-axxia.c
3039
3040 AZ6007 DVB DRIVER
3041 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3042 L:      linux-media@vger.kernel.org
3043 S:      Maintained
3044 W:      https://linuxtv.org
3045 T:      git git://linuxtv.org/media_tree.git
3046 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3047
3048 AZTECH FM RADIO RECEIVER DRIVER
3049 M:      Hans Verkuil <hverkuil@xs4all.nl>
3050 L:      linux-media@vger.kernel.org
3051 S:      Maintained
3052 W:      https://linuxtv.org
3053 T:      git git://linuxtv.org/media_tree.git
3054 F:      drivers/media/radio/radio-aztech*
3055
3056 B43 WIRELESS DRIVER
3057 L:      linux-wireless@vger.kernel.org
3058 L:      b43-dev@lists.infradead.org
3059 S:      Odd Fixes
3060 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3061 F:      drivers/net/wireless/broadcom/b43/
3062
3063 B43LEGACY WIRELESS DRIVER
3064 M:      Larry Finger <Larry.Finger@lwfinger.net>
3065 L:      linux-wireless@vger.kernel.org
3066 L:      b43-dev@lists.infradead.org
3067 S:      Maintained
3068 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3069 F:      drivers/net/wireless/broadcom/b43legacy/
3070
3071 BACKLIGHT CLASS/SUBSYSTEM
3072 M:      Lee Jones <lee.jones@linaro.org>
3073 M:      Daniel Thompson <daniel.thompson@linaro.org>
3074 M:      Jingoo Han <jingoohan1@gmail.com>
3075 L:      dri-devel@lists.freedesktop.org
3076 S:      Maintained
3077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3078 F:      Documentation/ABI/stable/sysfs-class-backlight
3079 F:      Documentation/ABI/testing/sysfs-class-backlight
3080 F:      Documentation/devicetree/bindings/leds/backlight
3081 F:      drivers/video/backlight/
3082 F:      include/linux/backlight.h
3083 F:      include/linux/pwm_backlight.h
3084
3085 BATMAN ADVANCED
3086 M:      Marek Lindner <mareklindner@neomailbox.ch>
3087 M:      Simon Wunderlich <sw@simonwunderlich.de>
3088 M:      Antonio Quartulli <a@unstable.cc>
3089 M:      Sven Eckelmann <sven@narfation.org>
3090 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3091 S:      Maintained
3092 W:      https://www.open-mesh.org/
3093 Q:      https://patchwork.open-mesh.org/project/batman/list/
3094 B:      https://www.open-mesh.org/projects/batman-adv/issues
3095 C:      irc://chat.freenode.net/batman
3096 T:      git https://git.open-mesh.org/linux-merge.git
3097 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
3098 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
3099 F:      Documentation/networking/batman-adv.rst
3100 F:      include/uapi/linux/batadv_packet.h
3101 F:      include/uapi/linux/batman_adv.h
3102 F:      net/batman-adv/
3103
3104 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3105 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3106 L:      linux-hams@vger.kernel.org
3107 S:      Maintained
3108 W:      http://www.baycom.org/~tom/ham/ham.html
3109 F:      drivers/net/hamradio/baycom*
3110
3111 BCACHE (BLOCK LAYER CACHE)
3112 M:      Coly Li <colyli@suse.de>
3113 M:      Kent Overstreet <kent.overstreet@gmail.com>
3114 L:      linux-bcache@vger.kernel.org
3115 S:      Maintained
3116 W:      http://bcache.evilpiepirate.org
3117 C:      irc://irc.oftc.net/bcache
3118 F:      drivers/md/bcache/
3119
3120 BDISP ST MEDIA DRIVER
3121 M:      Fabien Dessenne <fabien.dessenne@st.com>
3122 L:      linux-media@vger.kernel.org
3123 S:      Supported
3124 W:      https://linuxtv.org
3125 T:      git git://linuxtv.org/media_tree.git
3126 F:      drivers/media/platform/sti/bdisp
3127
3128 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3129 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3130 L:      netdev@vger.kernel.org
3131 S:      Maintained
3132 F:      drivers/net/ethernet/ec_bhf.c
3133
3134 BEFS FILE SYSTEM
3135 M:      Luis de Bethencourt <luisbg@kernel.org>
3136 M:      Salah Triki <salah.triki@gmail.com>
3137 S:      Maintained
3138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3139 F:      Documentation/filesystems/befs.rst
3140 F:      fs/befs/
3141
3142 BFQ I/O SCHEDULER
3143 M:      Paolo Valente <paolo.valente@linaro.org>
3144 M:      Jens Axboe <axboe@kernel.dk>
3145 L:      linux-block@vger.kernel.org
3146 S:      Maintained
3147 F:      Documentation/block/bfq-iosched.rst
3148 F:      block/bfq-*
3149
3150 BFS FILE SYSTEM
3151 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3152 S:      Maintained
3153 F:      Documentation/filesystems/bfs.rst
3154 F:      fs/bfs/
3155 F:      include/uapi/linux/bfs_fs.h
3156
3157 BLINKM RGB LED DRIVER
3158 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3159 S:      Maintained
3160 F:      drivers/leds/leds-blinkm.c
3161
3162 BLOCK LAYER
3163 M:      Jens Axboe <axboe@kernel.dk>
3164 L:      linux-block@vger.kernel.org
3165 S:      Maintained
3166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3167 F:      block/
3168 F:      drivers/block/
3169 F:      kernel/trace/blktrace.c
3170 F:      lib/sbitmap.c
3171
3172 BLOCK2MTD DRIVER
3173 M:      Joern Engel <joern@lazybastard.org>
3174 L:      linux-mtd@lists.infradead.org
3175 S:      Maintained
3176 F:      drivers/mtd/devices/block2mtd.c
3177
3178 BLUETOOTH DRIVERS
3179 M:      Marcel Holtmann <marcel@holtmann.org>
3180 M:      Johan Hedberg <johan.hedberg@gmail.com>
3181 L:      linux-bluetooth@vger.kernel.org
3182 S:      Maintained
3183 W:      http://www.bluez.org/
3184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3186 F:      drivers/bluetooth/
3187
3188 BLUETOOTH SUBSYSTEM
3189 M:      Marcel Holtmann <marcel@holtmann.org>
3190 M:      Johan Hedberg <johan.hedberg@gmail.com>
3191 L:      linux-bluetooth@vger.kernel.org
3192 S:      Maintained
3193 W:      http://www.bluez.org/
3194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3196 F:      include/net/bluetooth/
3197 F:      net/bluetooth/
3198
3199 BONDING DRIVER
3200 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3201 M:      Veaceslav Falico <vfalico@gmail.com>
3202 M:      Andy Gospodarek <andy@greyhouse.net>
3203 L:      netdev@vger.kernel.org
3204 S:      Supported
3205 W:      http://sourceforge.net/projects/bonding/
3206 F:      drivers/net/bonding/
3207 F:      include/uapi/linux/if_bonding.h
3208
3209 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3210 M:      Dan Robertson <dan@dlrobertson.com>
3211 L:      linux-iio@vger.kernel.org
3212 S:      Maintained
3213 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3214 F:      drivers/iio/accel/bma400*
3215
3216 BPF (Safe dynamic programs and tools)
3217 M:      Alexei Starovoitov <ast@kernel.org>
3218 M:      Daniel Borkmann <daniel@iogearbox.net>
3219 R:      Martin KaFai Lau <kafai@fb.com>
3220 R:      Song Liu <songliubraving@fb.com>
3221 R:      Yonghong Song <yhs@fb.com>
3222 R:      Andrii Nakryiko <andriin@fb.com>
3223 R:      John Fastabend <john.fastabend@gmail.com>
3224 R:      KP Singh <kpsingh@chromium.org>
3225 L:      netdev@vger.kernel.org
3226 L:      bpf@vger.kernel.org
3227 S:      Supported
3228 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3231 F:      Documentation/bpf/
3232 F:      Documentation/networking/filter.rst
3233 F:      arch/*/net/*
3234 F:      include/linux/bpf*
3235 F:      include/linux/filter.h
3236 F:      include/trace/events/xdp.h
3237 F:      include/uapi/linux/bpf*
3238 F:      include/uapi/linux/filter.h
3239 F:      kernel/bpf/
3240 F:      kernel/trace/bpf_trace.c
3241 F:      lib/test_bpf.c
3242 F:      net/bpf/
3243 F:      net/core/filter.c
3244 F:      net/sched/act_bpf.c
3245 F:      net/sched/cls_bpf.c
3246 F:      samples/bpf/
3247 F:      tools/bpf/
3248 F:      tools/lib/bpf/
3249 F:      tools/testing/selftests/bpf/
3250 N:      bpf
3251 K:      bpf
3252
3253 BPF JIT for ARM
3254 M:      Shubham Bansal <illusionist.neo@gmail.com>
3255 L:      netdev@vger.kernel.org
3256 L:      bpf@vger.kernel.org
3257 S:      Maintained
3258 F:      arch/arm/net/
3259
3260 BPF JIT for ARM64
3261 M:      Daniel Borkmann <daniel@iogearbox.net>
3262 M:      Alexei Starovoitov <ast@kernel.org>
3263 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3264 L:      netdev@vger.kernel.org
3265 L:      bpf@vger.kernel.org
3266 S:      Supported
3267 F:      arch/arm64/net/
3268
3269 BPF JIT for MIPS (32-BIT AND 64-BIT)
3270 M:      Paul Burton <paulburton@kernel.org>
3271 L:      netdev@vger.kernel.org
3272 L:      bpf@vger.kernel.org
3273 S:      Maintained
3274 F:      arch/mips/net/
3275
3276 BPF JIT for NFP NICs
3277 M:      Jakub Kicinski <kuba@kernel.org>
3278 L:      netdev@vger.kernel.org
3279 L:      bpf@vger.kernel.org
3280 S:      Supported
3281 F:      drivers/net/ethernet/netronome/nfp/bpf/
3282
3283 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3284 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3285 M:      Sandipan Das <sandipan@linux.ibm.com>
3286 L:      netdev@vger.kernel.org
3287 L:      bpf@vger.kernel.org
3288 S:      Maintained
3289 F:      arch/powerpc/net/
3290
3291 BPF JIT for RISC-V (32-bit)
3292 M:      Luke Nelson <luke.r.nels@gmail.com>
3293 M:      Xi Wang <xi.wang@gmail.com>
3294 L:      netdev@vger.kernel.org
3295 L:      bpf@vger.kernel.org
3296 S:      Maintained
3297 F:      arch/riscv/net/
3298 X:      arch/riscv/net/bpf_jit_comp64.c
3299
3300 BPF JIT for RISC-V (64-bit)
3301 M:      Björn Töpel <bjorn.topel@gmail.com>
3302 L:      netdev@vger.kernel.org
3303 L:      bpf@vger.kernel.org
3304 S:      Maintained
3305 F:      arch/riscv/net/
3306 X:      arch/riscv/net/bpf_jit_comp32.c
3307
3308 BPF JIT for S390
3309 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3310 M:      Heiko Carstens <hca@linux.ibm.com>
3311 M:      Vasily Gorbik <gor@linux.ibm.com>
3312 L:      netdev@vger.kernel.org
3313 L:      bpf@vger.kernel.org
3314 S:      Maintained
3315 F:      arch/s390/net/
3316 X:      arch/s390/net/pnet.c
3317
3318 BPF JIT for SPARC (32-BIT AND 64-BIT)
3319 M:      David S. Miller <davem@davemloft.net>
3320 L:      netdev@vger.kernel.org
3321 L:      bpf@vger.kernel.org
3322 S:      Maintained
3323 F:      arch/sparc/net/
3324
3325 BPF JIT for X86 32-BIT
3326 M:      Wang YanQing <udknight@gmail.com>
3327 L:      netdev@vger.kernel.org
3328 L:      bpf@vger.kernel.org
3329 S:      Maintained
3330 F:      arch/x86/net/bpf_jit_comp32.c
3331
3332 BPF JIT for X86 64-BIT
3333 M:      Alexei Starovoitov <ast@kernel.org>
3334 M:      Daniel Borkmann <daniel@iogearbox.net>
3335 L:      netdev@vger.kernel.org
3336 L:      bpf@vger.kernel.org
3337 S:      Supported
3338 F:      arch/x86/net/
3339 X:      arch/x86/net/bpf_jit_comp32.c
3340
3341 BROADCOM B44 10/100 ETHERNET DRIVER
3342 M:      Michael Chan <michael.chan@broadcom.com>
3343 L:      netdev@vger.kernel.org
3344 S:      Supported
3345 F:      drivers/net/ethernet/broadcom/b44.*
3346
3347 BROADCOM B53 ETHERNET SWITCH DRIVER
3348 M:      Florian Fainelli <f.fainelli@gmail.com>
3349 L:      netdev@vger.kernel.org
3350 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3351 S:      Supported
3352 F:      drivers/net/dsa/b53/*
3353 F:      include/linux/platform_data/b53.h
3354
3355 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3356 M:      Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
3357 L:      bcm-kernel-feedback-list@broadcom.com
3358 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3359 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3360 S:      Maintained
3361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3362 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3363 F:      drivers/pci/controller/pcie-brcmstb.c
3364 F:      drivers/staging/vc04_services
3365 N:      bcm2711
3366 N:      bcm2835
3367
3368 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3369 M:      Florian Fainelli <f.fainelli@gmail.com>
3370 M:      Ray Jui <rjui@broadcom.com>
3371 M:      Scott Branden <sbranden@broadcom.com>
3372 M:      bcm-kernel-feedback-list@broadcom.com
3373 S:      Maintained
3374 T:      git git://github.com/broadcom/mach-bcm
3375 F:      arch/arm/mach-bcm/
3376 N:      bcm281*
3377 N:      bcm113*
3378 N:      bcm216*
3379 N:      kona
3380
3381 BROADCOM BCM47XX MIPS ARCHITECTURE
3382 M:      Hauke Mehrtens <hauke@hauke-m.de>
3383 M:      Rafał Miłecki <zajec5@gmail.com>
3384 L:      linux-mips@vger.kernel.org
3385 S:      Maintained
3386 F:      Documentation/devicetree/bindings/mips/brcm/
3387 F:      arch/mips/bcm47xx/*
3388 F:      arch/mips/include/asm/mach-bcm47xx/*
3389
3390 BROADCOM BCM5301X ARM ARCHITECTURE
3391 M:      Hauke Mehrtens <hauke@hauke-m.de>
3392 M:      Rafał Miłecki <zajec5@gmail.com>
3393 M:      bcm-kernel-feedback-list@broadcom.com
3394 L:      linux-arm-kernel@lists.infradead.org
3395 S:      Maintained
3396 F:      arch/arm/boot/dts/bcm470*
3397 F:      arch/arm/boot/dts/bcm5301x*.dtsi
3398 F:      arch/arm/boot/dts/bcm953012*
3399 F:      arch/arm/mach-bcm/bcm_5301x.c
3400
3401 BROADCOM BCM53573 ARM ARCHITECTURE
3402 M:      Rafał Miłecki <rafal@milecki.pl>
3403 L:      bcm-kernel-feedback-list@broadcom.com
3404 L:      linux-arm-kernel@lists.infradead.org
3405 S:      Maintained
3406 F:      arch/arm/boot/dts/bcm47189*
3407 F:      arch/arm/boot/dts/bcm53573*
3408
3409 BROADCOM BCM63XX ARM ARCHITECTURE
3410 M:      Florian Fainelli <f.fainelli@gmail.com>
3411 M:      bcm-kernel-feedback-list@broadcom.com
3412 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3413 S:      Maintained
3414 T:      git git://github.com/broadcom/stblinux.git
3415 N:      bcm63xx
3416
3417 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3418 M:      Kevin Cernekee <cernekee@gmail.com>
3419 L:      linux-usb@vger.kernel.org
3420 S:      Maintained
3421 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3422
3423 BROADCOM BCM7XXX ARM ARCHITECTURE
3424 M:      Florian Fainelli <f.fainelli@gmail.com>
3425 M:      bcm-kernel-feedback-list@broadcom.com
3426 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3427 S:      Maintained
3428 T:      git git://github.com/broadcom/stblinux.git
3429 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3430 F:      arch/arm/boot/dts/bcm7*.dts*
3431 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3432 F:      arch/arm/mach-bcm/*brcmstb*
3433 F:      arch/arm/mm/cache-b15-rac.c
3434 F:      drivers/bus/brcmstb_gisb.c
3435 F:      drivers/pci/controller/pcie-brcmstb.c
3436 N:      brcmstb
3437
3438 BROADCOM BMIPS CPUFREQ DRIVER
3439 M:      Markus Mayer <mmayer@broadcom.com>
3440 M:      bcm-kernel-feedback-list@broadcom.com
3441 L:      linux-pm@vger.kernel.org
3442 S:      Maintained
3443 F:      drivers/cpufreq/bmips-cpufreq.c
3444
3445 BROADCOM BMIPS MIPS ARCHITECTURE
3446 M:      Florian Fainelli <f.fainelli@gmail.com>
3447 L:      bcm-kernel-feedback-list@broadcom.com
3448 L:      linux-mips@vger.kernel.org
3449 S:      Maintained
3450 T:      git git://github.com/broadcom/stblinux.git
3451 F:      arch/mips/bmips/*
3452 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3453 F:      arch/mips/include/asm/mach-bmips/*
3454 F:      arch/mips/kernel/*bmips*
3455 F:      drivers/irqchip/irq-bcm63*
3456 F:      drivers/irqchip/irq-bcm7*
3457 F:      drivers/irqchip/irq-brcmstb*
3458 F:      include/linux/bcm963xx_nvram.h
3459 F:      include/linux/bcm963xx_tag.h
3460
3461 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3462 M:      Rasesh Mody <rmody@marvell.com>
3463 M:      GR-Linux-NIC-Dev@marvell.com
3464 L:      netdev@vger.kernel.org
3465 S:      Supported
3466 F:      drivers/net/ethernet/broadcom/bnx2.*
3467 F:      drivers/net/ethernet/broadcom/bnx2_*
3468
3469 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3470 M:      QLogic-Storage-Upstream@qlogic.com
3471 L:      linux-scsi@vger.kernel.org
3472 S:      Supported
3473 F:      drivers/scsi/bnx2fc/
3474
3475 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3476 M:      QLogic-Storage-Upstream@qlogic.com
3477 L:      linux-scsi@vger.kernel.org
3478 S:      Supported
3479 F:      drivers/scsi/bnx2i/
3480
3481 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3482 M:      Ariel Elior <aelior@marvell.com>
3483 M:      Sudarsana Kalluru <skalluru@marvell.com>
3484 M:      GR-everest-linux-l2@marvell.com
3485 L:      netdev@vger.kernel.org
3486 S:      Supported
3487 F:      drivers/net/ethernet/broadcom/bnx2x/
3488
3489 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3490 M:      Michael Chan <michael.chan@broadcom.com>
3491 L:      netdev@vger.kernel.org
3492 S:      Supported
3493 F:      drivers/net/ethernet/broadcom/bnxt/
3494
3495 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3496 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
3497 M:      Franky Lin <franky.lin@broadcom.com>
3498 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3499 M:      Chi-Hsien Lin <chi-hsien.lin@cypress.com>
3500 M:      Wright Feng <wright.feng@cypress.com>
3501 L:      linux-wireless@vger.kernel.org
3502 L:      brcm80211-dev-list.pdl@broadcom.com
3503 L:      brcm80211-dev-list@cypress.com
3504 S:      Supported
3505 F:      drivers/net/wireless/broadcom/brcm80211/
3506
3507 BROADCOM BRCMSTB GPIO DRIVER
3508 M:      Gregory Fong <gregory.0xf0@gmail.com>
3509 L:      bcm-kernel-feedback-list@broadcom.com
3510 S:      Supported
3511 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3512 F:      drivers/gpio/gpio-brcmstb.c
3513
3514 BROADCOM BRCMSTB I2C DRIVER
3515 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3516 L:      linux-i2c@vger.kernel.org
3517 L:      bcm-kernel-feedback-list@broadcom.com
3518 S:      Supported
3519 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3520 F:      drivers/i2c/busses/i2c-brcmstb.c
3521
3522 BROADCOM BRCMSTB USB EHCI DRIVER
3523 M:      Al Cooper <alcooperx@gmail.com>
3524 L:      linux-usb@vger.kernel.org
3525 L:      bcm-kernel-feedback-list@broadcom.com
3526 S:      Maintained
3527 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3528 F:      drivers/usb/host/ehci-brcm.*
3529
3530 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3531 M:      Al Cooper <alcooperx@gmail.com>
3532 L:      linux-kernel@vger.kernel.org
3533 L:      bcm-kernel-feedback-list@broadcom.com
3534 S:      Maintained
3535 F:      drivers/phy/broadcom/phy-brcm-usb*
3536
3537 BROADCOM GENET ETHERNET DRIVER
3538 M:      Doug Berger <opendmb@gmail.com>
3539 M:      Florian Fainelli <f.fainelli@gmail.com>
3540 L:      bcm-kernel-feedback-list@broadcom.com
3541 L:      netdev@vger.kernel.org
3542 S:      Supported
3543 F:      drivers/net/ethernet/broadcom/genet/
3544
3545 BROADCOM IPROC ARM ARCHITECTURE
3546 M:      Ray Jui <rjui@broadcom.com>
3547 M:      Scott Branden <sbranden@broadcom.com>
3548 M:      bcm-kernel-feedback-list@broadcom.com
3549 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3550 S:      Maintained
3551 T:      git git://github.com/broadcom/cygnus-linux.git
3552 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3553 F:      arch/arm64/boot/dts/broadcom/stingray/*
3554 F:      drivers/clk/bcm/clk-ns*
3555 F:      drivers/clk/bcm/clk-sr*
3556 F:      drivers/pinctrl/bcm/pinctrl-ns*
3557 F:      include/dt-bindings/clock/bcm-sr*
3558 N:      iproc
3559 N:      cygnus
3560 N:      bcm[-_]nsp
3561 N:      bcm9113*
3562 N:      bcm9583*
3563 N:      bcm9585*
3564 N:      bcm9586*
3565 N:      bcm988312
3566 N:      bcm113*
3567 N:      bcm583*
3568 N:      bcm585*
3569 N:      bcm586*
3570 N:      bcm88312
3571 N:      hr2
3572 N:      stingray
3573
3574 BROADCOM KONA GPIO DRIVER
3575 M:      Ray Jui <rjui@broadcom.com>
3576 L:      bcm-kernel-feedback-list@broadcom.com
3577 S:      Supported
3578 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3579 F:      drivers/gpio/gpio-bcm-kona.c
3580
3581 BROADCOM NETXTREME-E ROCE DRIVER
3582 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3583 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3584 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3585 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3586 L:      linux-rdma@vger.kernel.org
3587 S:      Supported
3588 W:      http://www.broadcom.com
3589 F:      drivers/infiniband/hw/bnxt_re/
3590 F:      include/uapi/rdma/bnxt_re-abi.h
3591
3592 BROADCOM NVRAM DRIVER
3593 M:      Rafał Miłecki <zajec5@gmail.com>
3594 L:      linux-mips@vger.kernel.org
3595 S:      Maintained
3596 F:      drivers/firmware/broadcom/*
3597
3598 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3599 M:      Rafał Miłecki <zajec5@gmail.com>
3600 L:      linux-wireless@vger.kernel.org
3601 S:      Maintained
3602 F:      drivers/bcma/
3603 F:      include/linux/bcma/
3604
3605 BROADCOM SPI DRIVER
3606 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3607 M:      bcm-kernel-feedback-list@broadcom.com
3608 S:      Maintained
3609 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3610 F:      drivers/spi/spi-bcm-qspi.*
3611 F:      drivers/spi/spi-brcmstb-qspi.c
3612 F:      drivers/spi/spi-iproc-qspi.c
3613
3614 BROADCOM STB AVS CPUFREQ DRIVER
3615 M:      Markus Mayer <mmayer@broadcom.com>
3616 M:      bcm-kernel-feedback-list@broadcom.com
3617 L:      linux-pm@vger.kernel.org
3618 S:      Maintained
3619 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3620 F:      drivers/cpufreq/brcmstb*
3621
3622 BROADCOM STB AVS TMON DRIVER
3623 M:      Markus Mayer <mmayer@broadcom.com>
3624 M:      bcm-kernel-feedback-list@broadcom.com
3625 L:      linux-pm@vger.kernel.org
3626 S:      Maintained
3627 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3628 F:      drivers/thermal/broadcom/brcmstb*
3629
3630 BROADCOM STB DPFE DRIVER
3631 M:      Markus Mayer <mmayer@broadcom.com>
3632 M:      bcm-kernel-feedback-list@broadcom.com
3633 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3634 S:      Maintained
3635 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3636 F:      drivers/memory/brcmstb_dpfe.c
3637
3638 BROADCOM STB NAND FLASH DRIVER
3639 M:      Brian Norris <computersforpeace@gmail.com>
3640 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3641 L:      linux-mtd@lists.infradead.org
3642 L:      bcm-kernel-feedback-list@broadcom.com
3643 S:      Maintained
3644 F:      drivers/mtd/nand/raw/brcmnand/
3645
3646 BROADCOM SYSTEMPORT ETHERNET DRIVER
3647 M:      Florian Fainelli <f.fainelli@gmail.com>
3648 L:      bcm-kernel-feedback-list@broadcom.com
3649 L:      netdev@vger.kernel.org
3650 S:      Supported
3651 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3652
3653 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3654 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3655 M:      Prashant Sreedharan <prashant@broadcom.com>
3656 M:      Michael Chan <mchan@broadcom.com>
3657 L:      netdev@vger.kernel.org
3658 S:      Supported
3659 F:      drivers/net/ethernet/broadcom/tg3.*
3660
3661 BROCADE BFA FC SCSI DRIVER
3662 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3663 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3664 L:      linux-scsi@vger.kernel.org
3665 S:      Supported
3666 F:      drivers/scsi/bfa/
3667
3668 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3669 M:      Rasesh Mody <rmody@marvell.com>
3670 M:      Sudarsana Kalluru <skalluru@marvell.com>
3671 M:      GR-Linux-NIC-Dev@marvell.com
3672 L:      netdev@vger.kernel.org
3673 S:      Supported
3674 F:      drivers/net/ethernet/brocade/bna/
3675
3676 BSG (block layer generic sg v4 driver)
3677 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3678 L:      linux-scsi@vger.kernel.org
3679 S:      Supported
3680 F:      block/bsg.c
3681 F:      include/linux/bsg.h
3682 F:      include/uapi/linux/bsg.h
3683
3684 BT87X AUDIO DRIVER
3685 M:      Clemens Ladisch <clemens@ladisch.de>
3686 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3687 S:      Maintained
3688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3689 F:      Documentation/sound/cards/bt87x.rst
3690 F:      sound/pci/bt87x.c
3691
3692 BT8XXGPIO DRIVER
3693 M:      Michael Buesch <m@bues.ch>
3694 S:      Maintained
3695 W:      http://bu3sch.de/btgpio.php
3696 F:      drivers/gpio/gpio-bt8xx.c
3697
3698 BTRFS FILE SYSTEM
3699 M:      Chris Mason <clm@fb.com>
3700 M:      Josef Bacik <josef@toxicpanda.com>
3701 M:      David Sterba <dsterba@suse.com>
3702 L:      linux-btrfs@vger.kernel.org
3703 S:      Maintained
3704 W:      http://btrfs.wiki.kernel.org/
3705 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3707 F:      Documentation/filesystems/btrfs.rst
3708 F:      fs/btrfs/
3709 F:      include/linux/btrfs*
3710 F:      include/uapi/linux/btrfs*
3711
3712 BTTV VIDEO4LINUX DRIVER
3713 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3714 L:      linux-media@vger.kernel.org
3715 S:      Odd fixes
3716 W:      https://linuxtv.org
3717 T:      git git://linuxtv.org/media_tree.git
3718 F:      Documentation/driver-api/media/drivers/bttv*
3719 F:      drivers/media/pci/bt8xx/bttv*
3720
3721 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3722 M:      Chanwoo Choi <cw00.choi@samsung.com>
3723 L:      linux-pm@vger.kernel.org
3724 L:      linux-samsung-soc@vger.kernel.org
3725 S:      Maintained
3726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3727 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3728 F:      drivers/devfreq/exynos-bus.c
3729
3730 BUSLOGIC SCSI DRIVER
3731 M:      Khalid Aziz <khalid@gonehiking.org>
3732 L:      linux-scsi@vger.kernel.org
3733 S:      Maintained
3734 F:      drivers/scsi/BusLogic.*
3735 F:      drivers/scsi/FlashPoint.*
3736
3737 C-MEDIA CMI8788 DRIVER
3738 M:      Clemens Ladisch <clemens@ladisch.de>
3739 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3740 S:      Maintained
3741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3742 F:      sound/pci/oxygen/
3743
3744 C-SKY ARCHITECTURE
3745 M:      Guo Ren <guoren@kernel.org>
3746 L:      linux-csky@vger.kernel.org
3747 S:      Supported
3748 T:      git https://github.com/c-sky/csky-linux.git
3749 F:      Documentation/devicetree/bindings/csky/
3750 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3751 F:      Documentation/devicetree/bindings/timer/csky,*
3752 F:      arch/csky/
3753 F:      drivers/clocksource/timer-gx6605s.c
3754 F:      drivers/clocksource/timer-mp-csky.c
3755 F:      drivers/irqchip/irq-csky-*
3756 N:      csky
3757 K:      csky
3758
3759 C6X ARCHITECTURE
3760 M:      Mark Salter <msalter@redhat.com>
3761 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3762 L:      linux-c6x-dev@linux-c6x.org
3763 S:      Maintained
3764 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3765 F:      arch/c6x/
3766
3767 CA8210 IEEE-802.15.4 RADIO DRIVER
3768 M:      Harry Morris <h.morris@cascoda.com>
3769 L:      linux-wpan@vger.kernel.org
3770 S:      Maintained
3771 W:      https://github.com/Cascoda/ca8210-linux.git
3772 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3773 F:      drivers/net/ieee802154/ca8210.c
3774
3775 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3776 M:      David Howells <dhowells@redhat.com>
3777 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3778 S:      Supported
3779 F:      Documentation/filesystems/caching/cachefiles.rst
3780 F:      fs/cachefiles/
3781
3782 CADENCE MIPI-CSI2 BRIDGES
3783 M:      Maxime Ripard <mripard@kernel.org>
3784 L:      linux-media@vger.kernel.org
3785 S:      Maintained
3786 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3787 F:      drivers/media/platform/cadence/cdns-csi2*
3788
3789 CADENCE NAND DRIVER
3790 L:      linux-mtd@lists.infradead.org
3791 S:      Orphan
3792 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3793 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3794
3795 CADET FM/AM RADIO RECEIVER DRIVER
3796 M:      Hans Verkuil <hverkuil@xs4all.nl>
3797 L:      linux-media@vger.kernel.org
3798 S:      Maintained
3799 W:      https://linuxtv.org
3800 T:      git git://linuxtv.org/media_tree.git
3801 F:      drivers/media/radio/radio-cadet*
3802
3803 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3804 M:      Jonathan Corbet <corbet@lwn.net>
3805 L:      linux-media@vger.kernel.org
3806 S:      Maintained
3807 T:      git git://linuxtv.org/media_tree.git
3808 F:      Documentation/admin-guide/media/cafe_ccic*
3809 F:      drivers/media/platform/marvell-ccic/
3810
3811 CAIF NETWORK LAYER
3812 L:      netdev@vger.kernel.org
3813 S:      Orphan
3814 F:      Documentation/networking/caif/
3815 F:      drivers/net/caif/
3816 F:      include/net/caif/
3817 F:      include/uapi/linux/caif/
3818 F:      net/caif/
3819
3820 CAKE QDISC
3821 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3822 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3823 S:      Maintained
3824 F:      net/sched/sch_cake.c
3825
3826 CAN NETWORK DRIVERS
3827 M:      Wolfgang Grandegger <wg@grandegger.com>
3828 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3829 L:      linux-can@vger.kernel.org
3830 S:      Maintained
3831 W:      https://github.com/linux-can
3832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3834 F:      Documentation/devicetree/bindings/net/can/
3835 F:      drivers/net/can/
3836 F:      include/linux/can/dev.h
3837 F:      include/linux/can/led.h
3838 F:      include/linux/can/platform/
3839 F:      include/linux/can/rx-offload.h
3840 F:      include/uapi/linux/can/error.h
3841 F:      include/uapi/linux/can/netlink.h
3842 F:      include/uapi/linux/can/vxcan.h
3843
3844 CAN NETWORK LAYER
3845 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3846 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3847 L:      linux-can@vger.kernel.org
3848 S:      Maintained
3849 W:      https://github.com/linux-can
3850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3852 F:      Documentation/networking/can.rst
3853 F:      include/linux/can/core.h
3854 F:      include/linux/can/skb.h
3855 F:      include/net/netns/can.h
3856 F:      include/uapi/linux/can.h
3857 F:      include/uapi/linux/can/bcm.h
3858 F:      include/uapi/linux/can/gw.h
3859 F:      include/uapi/linux/can/raw.h
3860 F:      net/can/
3861
3862 CAN-J1939 NETWORK LAYER
3863 M:      Robin van der Gracht <robin@protonic.nl>
3864 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3865 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
3866 L:      linux-can@vger.kernel.org
3867 S:      Maintained
3868 F:      Documentation/networking/j1939.rst
3869 F:      include/uapi/linux/can/j1939.h
3870 F:      net/can/j1939/
3871
3872 CAPABILITIES
3873 M:      Serge Hallyn <serge@hallyn.com>
3874 L:      linux-security-module@vger.kernel.org
3875 S:      Supported
3876 F:      include/linux/capability.h
3877 F:      include/uapi/linux/capability.h
3878 F:      kernel/capability.c
3879 F:      security/commoncap.c
3880
3881 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3882 M:      Kevin Tsai <ktsai@capellamicro.com>
3883 S:      Maintained
3884 F:      drivers/iio/light/cm*
3885
3886 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3887 M:      Christian Lamparter <chunkeey@googlemail.com>
3888 L:      linux-wireless@vger.kernel.org
3889 S:      Maintained
3890 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
3891 F:      drivers/net/wireless/ath/carl9170/
3892
3893 CAVIUM I2C DRIVER
3894 M:      Robert Richter <rrichter@marvell.com>
3895 S:      Supported
3896 W:      http://www.marvell.com
3897 F:      drivers/i2c/busses/i2c-octeon*
3898 F:      drivers/i2c/busses/i2c-thunderx*
3899
3900 CAVIUM LIQUIDIO NETWORK DRIVER
3901 M:      Derek Chickles <dchickles@marvell.com>
3902 M:      Satanand Burla <sburla@marvell.com>
3903 M:      Felix Manlunas <fmanlunas@marvell.com>
3904 L:      netdev@vger.kernel.org
3905 S:      Supported
3906 W:      http://www.marvell.com
3907 F:      drivers/net/ethernet/cavium/liquidio/
3908
3909 CAVIUM MMC DRIVER
3910 M:      Robert Richter <rrichter@marvell.com>
3911 S:      Supported
3912 W:      http://www.marvell.com
3913 F:      drivers/mmc/host/cavium*
3914
3915 CAVIUM OCTEON-TX CRYPTO DRIVER
3916 M:      George Cherian <gcherian@marvell.com>
3917 L:      linux-crypto@vger.kernel.org
3918 S:      Supported
3919 W:      http://www.marvell.com
3920 F:      drivers/crypto/cavium/cpt/
3921
3922 CAVIUM THUNDERX2 ARM64 SOC
3923 M:      Robert Richter <rrichter@marvell.com>
3924 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3925 S:      Maintained
3926 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3927 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3928
3929 CC2520 IEEE-802.15.4 RADIO DRIVER
3930 M:      Varka Bhadram <varkabhadram@gmail.com>
3931 L:      linux-wpan@vger.kernel.org
3932 S:      Maintained
3933 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3934 F:      drivers/net/ieee802154/cc2520.c
3935 F:      include/linux/spi/cc2520.h
3936
3937 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3938 M:      Gilad Ben-Yossef <gilad@benyossef.com>
3939 L:      linux-crypto@vger.kernel.org
3940 S:      Supported
3941 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3942 F:      drivers/crypto/ccree/
3943
3944 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
3945 M:      Hadar Gat <hadar.gat@arm.com>
3946 L:      linux-crypto@vger.kernel.org
3947 S:      Supported
3948 F:      drivers/char/hw_random/cctrng.c
3949 F:      drivers/char/hw_random/cctrng.h
3950 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
3951 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3952
3953 CEC FRAMEWORK
3954 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3955 L:      linux-media@vger.kernel.org
3956 S:      Supported
3957 W:      http://linuxtv.org
3958 T:      git git://linuxtv.org/media_tree.git
3959 F:      Documentation/ABI/testing/debugfs-cec-error-inj
3960 F:      Documentation/devicetree/bindings/media/cec.txt
3961 F:      Documentation/driver-api/media/cec-core.rst
3962 F:      Documentation/userspace-api/media/cec
3963 F:      drivers/media/cec/
3964 F:      drivers/media/rc/keymaps/rc-cec.c
3965 F:      include/media/cec-notifier.h
3966 F:      include/media/cec.h
3967 F:      include/uapi/linux/cec-funcs.h
3968 F:      include/uapi/linux/cec.h
3969
3970 CEC GPIO DRIVER
3971 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3972 L:      linux-media@vger.kernel.org
3973 S:      Supported
3974 W:      http://linuxtv.org
3975 T:      git git://linuxtv.org/media_tree.git
3976 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3977 F:      drivers/media/platform/cec-gpio/
3978
3979 CELL BROADBAND ENGINE ARCHITECTURE
3980 M:      Arnd Bergmann <arnd@arndb.de>
3981 L:      linuxppc-dev@lists.ozlabs.org
3982 S:      Supported
3983 W:      http://www.ibm.com/developerworks/power/cell/
3984 F:      arch/powerpc/include/asm/cell*.h
3985 F:      arch/powerpc/include/asm/spu*.h
3986 F:      arch/powerpc/include/uapi/asm/spu*.h
3987 F:      arch/powerpc/oprofile/*cell*
3988 F:      arch/powerpc/platforms/cell/
3989
3990 CELLWISE CW2015 BATTERY DRIVER
3991 M:      Tobias Schrammm <t.schramm@manjaro.org>
3992 S:      Maintained
3993 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
3994 F:      drivers/power/supply/cw2015_battery.c
3995
3996 CEPH COMMON CODE (LIBCEPH)
3997 M:      Ilya Dryomov <idryomov@gmail.com>
3998 M:      Jeff Layton <jlayton@kernel.org>
3999 L:      ceph-devel@vger.kernel.org
4000 S:      Supported
4001 W:      http://ceph.com/
4002 T:      git git://github.com/ceph/ceph-client.git
4003 F:      include/linux/ceph/
4004 F:      include/linux/crush/
4005 F:      net/ceph/
4006
4007 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4008 M:      Jeff Layton <jlayton@kernel.org>
4009 M:      Ilya Dryomov <idryomov@gmail.com>
4010 L:      ceph-devel@vger.kernel.org
4011 S:      Supported
4012 W:      http://ceph.com/
4013 T:      git git://github.com/ceph/ceph-client.git
4014 F:      Documentation/filesystems/ceph.rst
4015 F:      fs/ceph/
4016
4017 CERTIFICATE HANDLING
4018 M:      David Howells <dhowells@redhat.com>
4019 M:      David Woodhouse <dwmw2@infradead.org>
4020 L:      keyrings@vger.kernel.org
4021 S:      Maintained
4022 F:      Documentation/admin-guide/module-signing.rst
4023 F:      certs/
4024 F:      scripts/extract-cert.c
4025 F:      scripts/sign-file.c
4026
4027 CFAG12864B LCD DRIVER
4028 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4029 S:      Maintained
4030 F:      drivers/auxdisplay/cfag12864b.c
4031 F:      include/linux/cfag12864b.h
4032
4033 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4034 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4035 S:      Maintained
4036 F:      drivers/auxdisplay/cfag12864bfb.c
4037 F:      include/linux/cfag12864b.h
4038
4039 CHAR and MISC DRIVERS
4040 M:      Arnd Bergmann <arnd@arndb.de>
4041 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4042 S:      Supported
4043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4044 F:      drivers/char/
4045 F:      drivers/misc/
4046 F:      include/linux/miscdevice.h
4047
4048 CHECKPATCH
4049 M:      Andy Whitcroft <apw@canonical.com>
4050 M:      Joe Perches <joe@perches.com>
4051 S:      Maintained
4052 F:      scripts/checkpatch.pl
4053
4054 CHINESE DOCUMENTATION
4055 M:      Harry Wei <harryxiyou@gmail.com>
4056 M:      Alex Shi <alex.shi@linux.alibaba.com>
4057 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
4058 S:      Maintained
4059 F:      Documentation/translations/zh_CN/
4060
4061 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4062 M:      Peter Chen <Peter.Chen@nxp.com>
4063 L:      linux-usb@vger.kernel.org
4064 S:      Maintained
4065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4066 F:      drivers/usb/chipidea/
4067
4068 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4069 M:      Hans de Goede <hdegoede@redhat.com>
4070 L:      linux-input@vger.kernel.org
4071 S:      Maintained
4072 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4073 F:      drivers/input/touchscreen/chipone_icn8318.c
4074
4075 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4076 M:      Hans de Goede <hdegoede@redhat.com>
4077 L:      linux-input@vger.kernel.org
4078 S:      Maintained
4079 F:      drivers/input/touchscreen/chipone_icn8505.c
4080
4081 CHROME HARDWARE PLATFORM SUPPORT
4082 M:      Benson Leung <bleung@chromium.org>
4083 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4084 S:      Maintained
4085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4086 F:      drivers/platform/chrome/
4087
4088 CHROMEOS EC CODEC DRIVER
4089 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4090 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4091 R:      Guenter Roeck <groeck@chromium.org>
4092 S:      Maintained
4093 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4094 F:      sound/soc/codecs/cros_ec_codec.*
4095
4096 CHROMEOS EC SUBDRIVERS
4097 M:      Benson Leung <bleung@chromium.org>
4098 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4099 R:      Guenter Roeck <groeck@chromium.org>
4100 S:      Maintained
4101 F:      drivers/power/supply/cros_usbpd-charger.c
4102 N:      cros_ec
4103 N:      cros-ec
4104
4105 CIRRUS LOGIC AUDIO CODEC DRIVERS
4106 M:      James Schulman <james.schulman@cirrus.com>
4107 M:      David Rhodes <david.rhodes@cirrus.com>
4108 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4109 S:      Maintained
4110 F:      sound/soc/codecs/cs*
4111
4112 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4113 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4114 L:      netdev@vger.kernel.org
4115 S:      Maintained
4116 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4117
4118 CIRRUS LOGIC LOCHNAGAR DRIVER
4119 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4120 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4121 L:      patches@opensource.cirrus.com
4122 S:      Supported
4123 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4124 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4125 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4126 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4127 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4128 F:      Documentation/hwmon/lochnagar.rst
4129 F:      drivers/clk/clk-lochnagar.c
4130 F:      drivers/hwmon/lochnagar-hwmon.c
4131 F:      drivers/mfd/lochnagar-i2c.c
4132 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4133 F:      drivers/regulator/lochnagar-regulator.c
4134 F:      include/dt-bindings/clk/lochnagar.h
4135 F:      include/dt-bindings/pinctrl/lochnagar.h
4136 F:      include/linux/mfd/lochnagar*
4137 F:      sound/soc/codecs/lochnagar-sc.c
4138
4139 CIRRUS LOGIC MADERA CODEC DRIVERS
4140 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4141 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4142 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4143 L:      patches@opensource.cirrus.com
4144 S:      Supported
4145 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4146 T:      git https://github.com/CirrusLogic/linux-drivers.git
4147 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4148 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4149 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4150 F:      drivers/gpio/gpio-madera*
4151 F:      drivers/irqchip/irq-madera*
4152 F:      drivers/mfd/cs47l*
4153 F:      drivers/mfd/madera*
4154 F:      drivers/pinctrl/cirrus/*
4155 F:      include/dt-bindings/sound/madera*
4156 F:      include/linux/irqchip/irq-madera*
4157 F:      include/linux/mfd/madera/*
4158 F:      include/sound/madera*
4159 F:      sound/soc/codecs/cs47l*
4160 F:      sound/soc/codecs/madera*
4161
4162 CISCO FCOE HBA DRIVER
4163 M:      Satish Kharat <satishkh@cisco.com>
4164 M:      Sesidhar Baddela <sebaddel@cisco.com>
4165 M:      Karan Tilak Kumar <kartilak@cisco.com>
4166 L:      linux-scsi@vger.kernel.org
4167 S:      Supported
4168 F:      drivers/scsi/fnic/
4169
4170 CISCO SCSI HBA DRIVER
4171 M:      Karan Tilak Kumar <kartilak@cisco.com>
4172 M:      Sesidhar Baddela <sebaddel@cisco.com>
4173 L:      linux-scsi@vger.kernel.org
4174 S:      Supported
4175 F:      drivers/scsi/snic/
4176
4177 CISCO VIC ETHERNET NIC DRIVER
4178 M:      Christian Benvenuti <benve@cisco.com>
4179 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4180 S:      Supported
4181 F:      drivers/net/ethernet/cisco/enic/
4182
4183 CISCO VIC LOW LATENCY NIC DRIVER
4184 M:      Christian Benvenuti <benve@cisco.com>
4185 M:      Nelson Escobar <neescoba@cisco.com>
4186 M:      Parvi Kaustubhi <pkaustub@cisco.com>
4187 S:      Supported
4188 F:      drivers/infiniband/hw/usnic/
4189
4190 CLANG-FORMAT FILE
4191 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4192 S:      Maintained
4193 F:      .clang-format
4194
4195 CLANG/LLVM BUILD SUPPORT
4196 L:      clang-built-linux@googlegroups.com
4197 S:      Supported
4198 W:      https://clangbuiltlinux.github.io/
4199 B:      https://github.com/ClangBuiltLinux/linux/issues
4200 C:      irc://chat.freenode.net/clangbuiltlinux
4201 F:      Documentation/kbuild/llvm.rst
4202 K:      \b(?i:clang|llvm)\b
4203
4204 CLEANCACHE API
4205 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4206 L:      linux-kernel@vger.kernel.org
4207 S:      Maintained
4208 F:      include/linux/cleancache.h
4209 F:      mm/cleancache.c
4210
4211 CLK API
4212 M:      Russell King <linux@armlinux.org.uk>
4213 L:      linux-clk@vger.kernel.org
4214 S:      Maintained
4215 F:      include/linux/clk.h
4216
4217 CLOCKSOURCE, CLOCKEVENT DRIVERS
4218 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4219 M:      Thomas Gleixner <tglx@linutronix.de>
4220 L:      linux-kernel@vger.kernel.org
4221 S:      Supported
4222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4223 F:      Documentation/devicetree/bindings/timer/
4224 F:      drivers/clocksource/
4225
4226 CMPC ACPI DRIVER
4227 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4228 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4229 L:      platform-driver-x86@vger.kernel.org
4230 S:      Supported
4231 F:      drivers/platform/x86/classmate-laptop.c
4232
4233 COBALT MEDIA DRIVER
4234 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4235 L:      linux-media@vger.kernel.org
4236 S:      Supported
4237 W:      https://linuxtv.org
4238 T:      git git://linuxtv.org/media_tree.git
4239 F:      drivers/media/pci/cobalt/
4240
4241 COCCINELLE/Semantic Patches (SmPL)
4242 M:      Julia Lawall <Julia.Lawall@lip6.fr>
4243 M:      Gilles Muller <Gilles.Muller@lip6.fr>
4244 M:      Nicolas Palix <nicolas.palix@imag.fr>
4245 M:      Michal Marek <michal.lkml@markovi.net>
4246 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4247 S:      Supported
4248 W:      http://coccinelle.lip6.fr/
4249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4250 F:      Documentation/dev-tools/coccinelle.rst
4251 F:      scripts/coccicheck
4252 F:      scripts/coccinelle/
4253
4254 CODA FILE SYSTEM
4255 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4256 M:      coda@cs.cmu.edu
4257 L:      codalist@coda.cs.cmu.edu
4258 S:      Maintained
4259 W:      http://www.coda.cs.cmu.edu/
4260 F:      Documentation/filesystems/coda.rst
4261 F:      fs/coda/
4262 F:      include/linux/coda*.h
4263 F:      include/uapi/linux/coda*.h
4264
4265 CODA V4L2 MEM2MEM DRIVER
4266 M:      Philipp Zabel <p.zabel@pengutronix.de>
4267 L:      linux-media@vger.kernel.org
4268 S:      Maintained
4269 F:      Documentation/devicetree/bindings/media/coda.txt
4270 F:      drivers/media/platform/coda/
4271
4272 CODE OF CONDUCT
4273 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4274 S:      Supported
4275 F:      Documentation/process/code-of-conduct-interpretation.rst
4276 F:      Documentation/process/code-of-conduct.rst
4277
4278 COMMON CLK FRAMEWORK
4279 M:      Michael Turquette <mturquette@baylibre.com>
4280 M:      Stephen Boyd <sboyd@kernel.org>
4281 L:      linux-clk@vger.kernel.org
4282 S:      Maintained
4283 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4285 F:      Documentation/devicetree/bindings/clock/
4286 F:      drivers/clk/
4287 F:      include/linux/clk-pr*
4288 F:      include/linux/clk/
4289 F:      include/linux/of_clk.h
4290 X:      drivers/clk/clkdev.c
4291
4292 COMMON INTERNET FILE SYSTEM (CIFS)
4293 M:      Steve French <sfrench@samba.org>
4294 L:      linux-cifs@vger.kernel.org
4295 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4296 S:      Supported
4297 W:      http://linux-cifs.samba.org/
4298 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4299 F:      Documentation/admin-guide/cifs/
4300 F:      fs/cifs/
4301
4302 COMPACTPCI HOTPLUG CORE
4303 M:      Scott Murray <scott@spiteful.org>
4304 L:      linux-pci@vger.kernel.org
4305 S:      Maintained
4306 F:      drivers/pci/hotplug/cpci_hotplug*
4307
4308 COMPACTPCI HOTPLUG GENERIC DRIVER
4309 M:      Scott Murray <scott@spiteful.org>
4310 L:      linux-pci@vger.kernel.org
4311 S:      Maintained
4312 F:      drivers/pci/hotplug/cpcihp_generic.c
4313
4314 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4315 M:      Scott Murray <scott@spiteful.org>
4316 L:      linux-pci@vger.kernel.org
4317 S:      Maintained
4318 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4319
4320 COMPAL LAPTOP SUPPORT
4321 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4322 L:      platform-driver-x86@vger.kernel.org
4323 S:      Maintained
4324 F:      drivers/platform/x86/compal-laptop.c
4325
4326 COMPILER ATTRIBUTES
4327 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4328 S:      Maintained
4329 F:      include/linux/compiler_attributes.h
4330
4331 CONEXANT ACCESSRUNNER USB DRIVER
4332 L:      accessrunner-general@lists.sourceforge.net
4333 S:      Orphan
4334 W:      http://accessrunner.sourceforge.net/
4335 F:      drivers/usb/atm/cxacru.c
4336
4337 CONFIGFS
4338 M:      Joel Becker <jlbec@evilplan.org>
4339 M:      Christoph Hellwig <hch@lst.de>
4340 S:      Supported
4341 T:      git git://git.infradead.org/users/hch/configfs.git
4342 F:      fs/configfs/
4343 F:      include/linux/configfs.h
4344
4345 CONNECTOR
4346 M:      Evgeniy Polyakov <zbr@ioremap.net>
4347 L:      netdev@vger.kernel.org
4348 S:      Maintained
4349 F:      drivers/connector/
4350
4351 CONTROL GROUP (CGROUP)
4352 M:      Tejun Heo <tj@kernel.org>
4353 M:      Li Zefan <lizefan@huawei.com>
4354 M:      Johannes Weiner <hannes@cmpxchg.org>
4355 L:      cgroups@vger.kernel.org
4356 S:      Maintained
4357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4358 F:      Documentation/admin-guide/cgroup-v1/
4359 F:      Documentation/admin-guide/cgroup-v2.rst
4360 F:      include/linux/cgroup*
4361 F:      kernel/cgroup/
4362
4363 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4364 M:      Tejun Heo <tj@kernel.org>
4365 M:      Jens Axboe <axboe@kernel.dk>
4366 L:      cgroups@vger.kernel.org
4367 L:      linux-block@vger.kernel.org
4368 T:      git git://git.kernel.dk/linux-block
4369 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4370 F:      block/bfq-cgroup.c
4371 F:      block/blk-cgroup.c
4372 F:      block/blk-iolatency.c
4373 F:      block/blk-throttle.c
4374 F:      include/linux/blk-cgroup.h
4375
4376 CONTROL GROUP - CPUSET
4377 M:      Li Zefan <lizefan@huawei.com>
4378 L:      cgroups@vger.kernel.org
4379 S:      Maintained
4380 W:      http://www.bullopensource.org/cpuset/
4381 W:      http://oss.sgi.com/projects/cpusets/
4382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4383 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4384 F:      include/linux/cpuset.h
4385 F:      kernel/cgroup/cpuset.c
4386
4387 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4388 M:      Johannes Weiner <hannes@cmpxchg.org>
4389 M:      Michal Hocko <mhocko@kernel.org>
4390 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4391 L:      cgroups@vger.kernel.org
4392 L:      linux-mm@kvack.org
4393 S:      Maintained
4394 F:      mm/memcontrol.c
4395 F:      mm/swap_cgroup.c
4396
4397 CORETEMP HARDWARE MONITORING DRIVER
4398 M:      Fenghua Yu <fenghua.yu@intel.com>
4399 L:      linux-hwmon@vger.kernel.org
4400 S:      Maintained
4401 F:      Documentation/hwmon/coretemp.rst
4402 F:      drivers/hwmon/coretemp.c
4403
4404 COSA/SRP SYNC SERIAL DRIVER
4405 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4406 S:      Maintained
4407 W:      http://www.fi.muni.cz/~kas/cosa/
4408 F:      drivers/net/wan/cosa*
4409
4410 COUNTER SUBSYSTEM
4411 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4412 L:      linux-iio@vger.kernel.org
4413 S:      Maintained
4414 F:      Documentation/ABI/testing/sysfs-bus-counter*
4415 F:      Documentation/driver-api/generic-counter.rst
4416 F:      drivers/counter/
4417 F:      include/linux/counter.h
4418 F:      include/linux/counter_enum.h
4419
4420 CPMAC ETHERNET DRIVER
4421 M:      Florian Fainelli <f.fainelli@gmail.com>
4422 L:      netdev@vger.kernel.org
4423 S:      Maintained
4424 F:      drivers/net/ethernet/ti/cpmac.c
4425
4426 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4427 M:      Viresh Kumar <viresh.kumar@linaro.org>
4428 M:      Sudeep Holla <sudeep.holla@arm.com>
4429 L:      linux-pm@vger.kernel.org
4430 S:      Maintained
4431 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4432 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4433
4434 CPU FREQUENCY SCALING FRAMEWORK
4435 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4436 M:      Viresh Kumar <viresh.kumar@linaro.org>
4437 L:      linux-pm@vger.kernel.org
4438 S:      Maintained
4439 B:      https://bugzilla.kernel.org
4440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4442 F:      Documentation/admin-guide/pm/cpufreq.rst
4443 F:      Documentation/admin-guide/pm/intel_pstate.rst
4444 F:      Documentation/cpu-freq/
4445 F:      Documentation/devicetree/bindings/cpufreq/
4446 F:      drivers/cpufreq/
4447 F:      include/linux/cpufreq.h
4448 F:      include/linux/sched/cpufreq.h
4449 F:      kernel/sched/cpufreq*.c
4450 F:      tools/testing/selftests/cpufreq/
4451
4452 CPU IDLE TIME MANAGEMENT FRAMEWORK
4453 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4454 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4455 L:      linux-pm@vger.kernel.org
4456 S:      Maintained
4457 B:      https://bugzilla.kernel.org
4458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4459 F:      Documentation/admin-guide/pm/cpuidle.rst
4460 F:      Documentation/driver-api/pm/cpuidle.rst
4461 F:      drivers/cpuidle/*
4462 F:      include/linux/cpuidle.h
4463
4464 CPU POWER MONITORING SUBSYSTEM
4465 M:      Thomas Renninger <trenn@suse.com>
4466 M:      Shuah Khan <shuah@kernel.org>
4467 M:      Shuah Khan <skhan@linuxfoundation.org>
4468 L:      linux-pm@vger.kernel.org
4469 S:      Maintained
4470 F:      tools/power/cpupower/
4471
4472 CPUID/MSR DRIVER
4473 M:      "H. Peter Anvin" <hpa@zytor.com>
4474 S:      Maintained
4475 F:      arch/x86/kernel/cpuid.c
4476 F:      arch/x86/kernel/msr.c
4477
4478 CPUIDLE DRIVER - ARM BIG LITTLE
4479 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4480 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4481 L:      linux-pm@vger.kernel.org
4482 L:      linux-arm-kernel@lists.infradead.org
4483 S:      Maintained
4484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4485 F:      drivers/cpuidle/cpuidle-big_little.c
4486
4487 CPUIDLE DRIVER - ARM EXYNOS
4488 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4489 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4490 M:      Kukjin Kim <kgene@kernel.org>
4491 L:      linux-pm@vger.kernel.org
4492 L:      linux-samsung-soc@vger.kernel.org
4493 S:      Supported
4494 F:      arch/arm/mach-exynos/pm.c
4495 F:      drivers/cpuidle/cpuidle-exynos.c
4496
4497 CPUIDLE DRIVER - ARM PSCI
4498 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4499 M:      Sudeep Holla <sudeep.holla@arm.com>
4500 L:      linux-pm@vger.kernel.org
4501 L:      linux-arm-kernel@lists.infradead.org
4502 S:      Supported
4503 F:      drivers/cpuidle/cpuidle-psci.c
4504
4505 CRAMFS FILESYSTEM
4506 M:      Nicolas Pitre <nico@fluxnic.net>
4507 S:      Maintained
4508 F:      Documentation/filesystems/cramfs.rst
4509 F:      fs/cramfs/
4510
4511 CREATIVE SB0540
4512 M:      Bastien Nocera <hadess@hadess.net>
4513 L:      linux-input@vger.kernel.org
4514 S:      Maintained
4515 F:      drivers/hid/hid-creative-sb0540.c
4516
4517 CRYPTO API
4518 M:      Herbert Xu <herbert@gondor.apana.org.au>
4519 M:      "David S. Miller" <davem@davemloft.net>
4520 L:      linux-crypto@vger.kernel.org
4521 S:      Maintained
4522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4524 F:      Documentation/crypto/
4525 F:      Documentation/devicetree/bindings/crypto/
4526 F:      arch/*/crypto/
4527 F:      crypto/
4528 F:      drivers/crypto/
4529 F:      include/crypto/
4530 F:      include/linux/crypto*
4531 F:      lib/crypto/
4532
4533 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4534 M:      Neil Horman <nhorman@tuxdriver.com>
4535 L:      linux-crypto@vger.kernel.org
4536 S:      Maintained
4537 F:      crypto/ansi_cprng.c
4538 F:      crypto/rng.c
4539
4540 CS3308 MEDIA DRIVER
4541 M:      Hans Verkuil <hverkuil@xs4all.nl>
4542 L:      linux-media@vger.kernel.org
4543 S:      Odd Fixes
4544 W:      http://linuxtv.org
4545 T:      git git://linuxtv.org/media_tree.git
4546 F:      drivers/media/i2c/cs3308.c
4547
4548 CS5535 Audio ALSA driver
4549 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4550 S:      Maintained
4551 F:      sound/pci/cs5535audio/
4552
4553 CSI DRIVERS FOR ALLWINNER V3s
4554 M:      Yong Deng <yong.deng@magewell.com>
4555 L:      linux-media@vger.kernel.org
4556 S:      Maintained
4557 T:      git git://linuxtv.org/media_tree.git
4558 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4559 F:      drivers/media/platform/sunxi/sun6i-csi/
4560
4561 CW1200 WLAN driver
4562 M:      Solomon Peachy <pizza@shaftnet.org>
4563 S:      Maintained
4564 F:      drivers/net/wireless/st/cw1200/
4565
4566 CX18 VIDEO4LINUX DRIVER
4567 M:      Andy Walls <awalls@md.metrocast.net>
4568 L:      linux-media@vger.kernel.org
4569 S:      Maintained
4570 W:      https://linuxtv.org
4571 T:      git git://linuxtv.org/media_tree.git
4572 F:      drivers/media/pci/cx18/
4573 F:      include/uapi/linux/ivtv*
4574
4575 CX2341X MPEG ENCODER HELPER MODULE
4576 M:      Hans Verkuil <hverkuil@xs4all.nl>
4577 L:      linux-media@vger.kernel.org
4578 S:      Maintained
4579 W:      https://linuxtv.org
4580 T:      git git://linuxtv.org/media_tree.git
4581 F:      drivers/media/common/cx2341x*
4582 F:      include/media/drv-intf/cx2341x.h
4583
4584 CX24120 MEDIA DRIVER
4585 M:      Jemma Denson <jdenson@gmail.com>
4586 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4587 L:      linux-media@vger.kernel.org
4588 S:      Maintained
4589 W:      https://linuxtv.org
4590 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4591 F:      drivers/media/dvb-frontends/cx24120*
4592
4593 CX88 VIDEO4LINUX DRIVER
4594 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4595 L:      linux-media@vger.kernel.org
4596 S:      Odd fixes
4597 W:      https://linuxtv.org
4598 T:      git git://linuxtv.org/media_tree.git
4599 F:      Documentation/driver-api/media/drivers/cx88*
4600 F:      drivers/media/pci/cx88/
4601
4602 CXD2820R MEDIA DRIVER
4603 M:      Antti Palosaari <crope@iki.fi>
4604 L:      linux-media@vger.kernel.org
4605 S:      Maintained
4606 W:      https://linuxtv.org
4607 W:      http://palosaari.fi/linux/
4608 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4609 T:      git git://linuxtv.org/anttip/media_tree.git
4610 F:      drivers/media/dvb-frontends/cxd2820r*
4611
4612 CXGB3 ETHERNET DRIVER (CXGB3)
4613 M:      Vishal Kulkarni <vishal@chelsio.com>
4614 L:      netdev@vger.kernel.org
4615 S:      Supported
4616 W:      http://www.chelsio.com
4617 F:      drivers/net/ethernet/chelsio/cxgb3/
4618
4619 CXGB3 ISCSI DRIVER (CXGB3I)
4620 M:      Karen Xie <kxie@chelsio.com>
4621 L:      linux-scsi@vger.kernel.org
4622 S:      Supported
4623 W:      http://www.chelsio.com
4624 F:      drivers/scsi/cxgbi/cxgb3i
4625
4626 CXGB4 CRYPTO DRIVER (chcr)
4627 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4628 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4629 M:      Rohit Maheshwari <rohitm@chelsio.com>
4630 L:      linux-crypto@vger.kernel.org
4631 S:      Supported
4632 W:      http://www.chelsio.com
4633 F:      drivers/crypto/chelsio
4634
4635 CXGB4 ETHERNET DRIVER (CXGB4)
4636 M:      Vishal Kulkarni <vishal@chelsio.com>
4637 L:      netdev@vger.kernel.org
4638 S:      Supported
4639 W:      http://www.chelsio.com
4640 F:      drivers/net/ethernet/chelsio/cxgb4/
4641
4642 CXGB4 ISCSI DRIVER (CXGB4I)
4643 M:      Karen Xie <kxie@chelsio.com>
4644 L:      linux-scsi@vger.kernel.org
4645 S:      Supported
4646 W:      http://www.chelsio.com
4647 F:      drivers/scsi/cxgbi/cxgb4i
4648
4649 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4650 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4651 L:      linux-rdma@vger.kernel.org
4652 S:      Supported
4653 W:      http://www.openfabrics.org
4654 F:      drivers/infiniband/hw/cxgb4/
4655 F:      include/uapi/rdma/cxgb4-abi.h
4656
4657 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4658 M:      Vishal Kulkarni <vishal@gmail.com>
4659 L:      netdev@vger.kernel.org
4660 S:      Supported
4661 W:      http://www.chelsio.com
4662 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4663
4664 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4665 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4666 M:      Andrew Donnellan <ajd@linux.ibm.com>
4667 L:      linuxppc-dev@lists.ozlabs.org
4668 S:      Supported
4669 F:      Documentation/ABI/testing/sysfs-class-cxl
4670 F:      Documentation/powerpc/cxl.rst
4671 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4672 F:      drivers/misc/cxl/
4673 F:      include/misc/cxl*
4674 F:      include/uapi/misc/cxl.h
4675
4676 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4677 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4678 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4679 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4680 L:      linux-scsi@vger.kernel.org
4681 S:      Supported
4682 F:      Documentation/powerpc/cxlflash.rst
4683 F:      drivers/scsi/cxlflash/
4684 F:      include/uapi/scsi/cxlflash_ioctl.h
4685
4686 CYBERPRO FB DRIVER
4687 M:      Russell King <linux@armlinux.org.uk>
4688 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4689 S:      Maintained
4690 W:      http://www.armlinux.org.uk/
4691 F:      drivers/video/fbdev/cyber2000fb.*
4692
4693 CYCLADES ASYNC MUX DRIVER
4694 S:      Orphan
4695 W:      http://www.cyclades.com/
4696 F:      drivers/tty/cyclades.c
4697 F:      include/linux/cyclades.h
4698 F:      include/uapi/linux/cyclades.h
4699
4700 CYCLADES PC300 DRIVER
4701 S:      Orphan
4702 W:      http://www.cyclades.com/
4703 F:      drivers/net/wan/pc300*
4704
4705 CYPRESS_FIRMWARE MEDIA DRIVER
4706 M:      Antti Palosaari <crope@iki.fi>
4707 L:      linux-media@vger.kernel.org
4708 S:      Maintained
4709 W:      https://linuxtv.org
4710 W:      http://palosaari.fi/linux/
4711 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4712 T:      git git://linuxtv.org/anttip/media_tree.git
4713 F:      drivers/media/common/cypress_firmware*
4714
4715 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
4716 M:      Linus Walleij <linus.walleij@linaro.org>
4717 L:      linux-input@vger.kernel.org
4718 S:      Maintained
4719 F:      drivers/input/touchscreen/cy8ctma140.c
4720
4721 CYTTSP TOUCHSCREEN DRIVER
4722 M:      Ferruh Yigit <fery@cypress.com>
4723 L:      linux-input@vger.kernel.org
4724 S:      Supported
4725 F:      drivers/input/touchscreen/cyttsp*
4726 F:      include/linux/input/cyttsp.h
4727
4728 D-LINK DIR-685 TOUCHKEYS DRIVER
4729 M:      Linus Walleij <linus.walleij@linaro.org>
4730 L:      linux-input@vger.kernel.org
4731 S:      Supported
4732 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4733
4734 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4735 M:      Joshua Kinard <kumba@gentoo.org>
4736 S:      Maintained
4737 F:      drivers/rtc/rtc-ds1685.c
4738 F:      include/linux/rtc/ds1685.h
4739
4740 DAMA SLAVE for AX.25
4741 M:      Joerg Reuter <jreuter@yaina.de>
4742 L:      linux-hams@vger.kernel.org
4743 S:      Maintained
4744 W:      http://yaina.de/jreuter/
4745 W:      http://www.qsl.net/dl1bke/
4746 F:      net/ax25/af_ax25.c
4747 F:      net/ax25/ax25_dev.c
4748 F:      net/ax25/ax25_ds_*
4749 F:      net/ax25/ax25_in.c
4750 F:      net/ax25/ax25_out.c
4751 F:      net/ax25/ax25_timer.c
4752 F:      net/ax25/sysctl_net_ax25.c
4753
4754 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4755 L:      netdev@vger.kernel.org
4756 S:      Orphan
4757 F:      Documentation/networking/device_drivers/dec/dmfe.rst
4758 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4759
4760 DC390/AM53C974 SCSI driver
4761 M:      Hannes Reinecke <hare@suse.com>
4762 L:      linux-scsi@vger.kernel.org
4763 S:      Maintained
4764 F:      drivers/scsi/am53c974.c
4765
4766 DC395x SCSI driver
4767 M:      Oliver Neukum <oliver@neukum.org>
4768 M:      Ali Akcaagac <aliakc@web.de>
4769 M:      Jamie Lenehan <lenehan@twibble.org>
4770 L:      dc395x@twibble.org
4771 S:      Maintained
4772 W:      http://twibble.org/dist/dc395x/
4773 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4774 F:      Documentation/scsi/dc395x.rst
4775 F:      drivers/scsi/dc395x.*
4776
4777 DCCP PROTOCOL
4778 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4779 L:      dccp@vger.kernel.org
4780 S:      Maintained
4781 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4782 F:      include/linux/dccp.h
4783 F:      include/linux/tfrc.h
4784 F:      include/uapi/linux/dccp.h
4785 F:      net/dccp/
4786
4787 DECnet NETWORK LAYER
4788 L:      linux-decnet-user@lists.sourceforge.net
4789 S:      Orphan
4790 W:      http://linux-decnet.sourceforge.net
4791 F:      Documentation/networking/decnet.rst
4792 F:      net/decnet/
4793
4794 DECSTATION PLATFORM SUPPORT
4795 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4796 L:      linux-mips@vger.kernel.org
4797 S:      Maintained
4798 W:      http://www.linux-mips.org/wiki/DECstation
4799 F:      arch/mips/dec/
4800 F:      arch/mips/include/asm/dec/
4801 F:      arch/mips/include/asm/mach-dec/
4802
4803 DEFXX FDDI NETWORK DRIVER
4804 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4805 S:      Maintained
4806 F:      drivers/net/fddi/defxx.*
4807
4808 DEFZA FDDI NETWORK DRIVER
4809 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4810 S:      Maintained
4811 F:      drivers/net/fddi/defza.*
4812
4813 DEINTERLACE DRIVERS FOR ALLWINNER H3
4814 M:      Jernej Skrabec <jernej.skrabec@siol.net>
4815 L:      linux-media@vger.kernel.org
4816 S:      Maintained
4817 T:      git git://linuxtv.org/media_tree.git
4818 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4819 F:      drivers/media/platform/sunxi/sun8i-di/
4820
4821 DELL LAPTOP DRIVER
4822 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4823 M:      Pali Rohár <pali@kernel.org>
4824 L:      platform-driver-x86@vger.kernel.org
4825 S:      Maintained
4826 F:      drivers/platform/x86/dell-laptop.c
4827
4828 DELL LAPTOP FREEFALL DRIVER
4829 M:      Pali Rohár <pali@kernel.org>
4830 S:      Maintained
4831 F:      drivers/platform/x86/dell-smo8800.c
4832
4833 DELL LAPTOP RBTN DRIVER
4834 M:      Pali Rohár <pali@kernel.org>
4835 S:      Maintained
4836 F:      drivers/platform/x86/dell-rbtn.*
4837
4838 DELL LAPTOP SMM DRIVER
4839 M:      Pali Rohár <pali@kernel.org>
4840 S:      Maintained
4841 F:      drivers/hwmon/dell-smm-hwmon.c
4842 F:      include/uapi/linux/i8k.h
4843
4844 DELL REMOTE BIOS UPDATE DRIVER
4845 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4846 L:      platform-driver-x86@vger.kernel.org
4847 S:      Maintained
4848 F:      drivers/platform/x86/dell_rbu.c
4849
4850 DELL SMBIOS DRIVER
4851 M:      Pali Rohár <pali@kernel.org>
4852 M:      Mario Limonciello <mario.limonciello@dell.com>
4853 L:      platform-driver-x86@vger.kernel.org
4854 S:      Maintained
4855 F:      drivers/platform/x86/dell-smbios.*
4856
4857 DELL SMBIOS SMM DRIVER
4858 M:      Mario Limonciello <mario.limonciello@dell.com>
4859 L:      platform-driver-x86@vger.kernel.org
4860 S:      Maintained
4861 F:      drivers/platform/x86/dell-smbios-smm.c
4862
4863 DELL SMBIOS WMI DRIVER
4864 M:      Mario Limonciello <mario.limonciello@dell.com>
4865 L:      platform-driver-x86@vger.kernel.org
4866 S:      Maintained
4867 F:      drivers/platform/x86/dell-smbios-wmi.c
4868 F:      tools/wmi/dell-smbios-example.c
4869
4870 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4871 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4872 L:      platform-driver-x86@vger.kernel.org
4873 S:      Maintained
4874 F:      Documentation/driver-api/dcdbas.rst
4875 F:      drivers/platform/x86/dcdbas.*
4876
4877 DELL WMI DESCRIPTOR DRIVER
4878 M:      Mario Limonciello <mario.limonciello@dell.com>
4879 S:      Maintained
4880 F:      drivers/platform/x86/dell-wmi-descriptor.c
4881
4882 DELL WMI NOTIFICATIONS DRIVER
4883 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4884 M:      Pali Rohár <pali@kernel.org>
4885 S:      Maintained
4886 F:      drivers/platform/x86/dell-wmi.c
4887
4888 DELTA ST MEDIA DRIVER
4889 M:      Hugues Fruchet <hugues.fruchet@st.com>
4890 L:      linux-media@vger.kernel.org
4891 S:      Supported
4892 W:      https://linuxtv.org
4893 T:      git git://linuxtv.org/media_tree.git
4894 F:      drivers/media/platform/sti/delta
4895
4896 DENALI NAND DRIVER
4897 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
4898 L:      linux-mtd@lists.infradead.org
4899 S:      Supported
4900 F:      drivers/mtd/nand/raw/denali*
4901
4902 DESIGNWARE EDMA CORE IP DRIVER
4903 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
4904 L:      dmaengine@vger.kernel.org
4905 S:      Maintained
4906 F:      drivers/dma/dw-edma/
4907 F:      include/linux/dma/edma.h
4908
4909 DESIGNWARE USB2 DRD IP DRIVER
4910 M:      Minas Harutyunyan <hminas@synopsys.com>
4911 L:      linux-usb@vger.kernel.org
4912 S:      Maintained
4913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4914 F:      drivers/usb/dwc2/
4915
4916 DESIGNWARE USB3 DRD IP DRIVER
4917 M:      Felipe Balbi <balbi@kernel.org>
4918 L:      linux-usb@vger.kernel.org
4919 S:      Maintained
4920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4921 F:      drivers/usb/dwc3/
4922
4923 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4924 M:      Andreas Klinger <ak@it-klinger.de>
4925 L:      linux-iio@vger.kernel.org
4926 S:      Maintained
4927 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4928 F:      drivers/iio/proximity/srf*.c
4929
4930 DEVICE COREDUMP (DEV_COREDUMP)
4931 M:      Johannes Berg <johannes@sipsolutions.net>
4932 L:      linux-kernel@vger.kernel.org
4933 S:      Maintained
4934 F:      drivers/base/devcoredump.c
4935 F:      include/linux/devcoredump.h
4936
4937 DEVICE DIRECT ACCESS (DAX)
4938 M:      Dan Williams <dan.j.williams@intel.com>
4939 M:      Vishal Verma <vishal.l.verma@intel.com>
4940 M:      Dave Jiang <dave.jiang@intel.com>
4941 L:      linux-nvdimm@lists.01.org
4942 S:      Supported
4943 F:      drivers/dax/
4944
4945 DEVICE FREQUENCY (DEVFREQ)
4946 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4947 M:      Kyungmin Park <kyungmin.park@samsung.com>
4948 M:      Chanwoo Choi <cw00.choi@samsung.com>
4949 L:      linux-pm@vger.kernel.org
4950 S:      Maintained
4951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4952 F:      Documentation/devicetree/bindings/devfreq/
4953 F:      drivers/devfreq/
4954 F:      include/linux/devfreq.h
4955 F:      include/trace/events/devfreq.h
4956
4957 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4958 M:      Chanwoo Choi <cw00.choi@samsung.com>
4959 L:      linux-pm@vger.kernel.org
4960 S:      Supported
4961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4962 F:      Documentation/devicetree/bindings/devfreq/event/
4963 F:      drivers/devfreq/devfreq-event.c
4964 F:      drivers/devfreq/event/
4965 F:      include/dt-bindings/pmu/exynos_ppmu.h
4966 F:      include/linux/devfreq-event.h
4967
4968 DEVICE NUMBER REGISTRY
4969 M:      Torben Mathiasen <device@lanana.org>
4970 S:      Maintained
4971 W:      http://lanana.org/docs/device-list/index.html
4972
4973 DEVICE-MAPPER  (LVM)
4974 M:      Alasdair Kergon <agk@redhat.com>
4975 M:      Mike Snitzer <snitzer@redhat.com>
4976 M:      dm-devel@redhat.com
4977 L:      dm-devel@redhat.com
4978 S:      Maintained
4979 W:      http://sources.redhat.com/dm
4980 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4982 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4983 F:      Documentation/admin-guide/device-mapper/
4984 F:      drivers/md/Kconfig
4985 F:      drivers/md/Makefile
4986 F:      drivers/md/dm*
4987 F:      drivers/md/persistent-data/
4988 F:      include/linux/device-mapper.h
4989 F:      include/linux/dm-*.h
4990 F:      include/uapi/linux/dm-*.h
4991
4992 DEVLINK
4993 M:      Jiri Pirko <jiri@mellanox.com>
4994 L:      netdev@vger.kernel.org
4995 S:      Supported
4996 F:      Documentation/networking/devlink
4997 F:      include/net/devlink.h
4998 F:      include/uapi/linux/devlink.h
4999 F:      net/core/devlink.c
5000
5001 DIALOG SEMICONDUCTOR DRIVERS
5002 M:      Support Opensource <support.opensource@diasemi.com>
5003 S:      Supported
5004 W:      http://www.dialog-semiconductor.com/products
5005 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5006 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5007 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5008 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5009 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5010 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5011 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5012 F:      Documentation/hwmon/da90??.rst
5013 F:      drivers/gpio/gpio-da90??.c
5014 F:      drivers/hwmon/da90??-hwmon.c
5015 F:      drivers/iio/adc/da91??-*.c
5016 F:      drivers/input/misc/da90??_onkey.c
5017 F:      drivers/input/touchscreen/da9052_tsi.c
5018 F:      drivers/leds/leds-da90??.c
5019 F:      drivers/mfd/da903x.c
5020 F:      drivers/mfd/da90??-*.c
5021 F:      drivers/mfd/da91??-*.c
5022 F:      drivers/pinctrl/pinctrl-da90??.c
5023 F:      drivers/power/supply/da9052-battery.c
5024 F:      drivers/power/supply/da91??-*.c
5025 F:      drivers/regulator/da9???-regulator.[ch]
5026 F:      drivers/regulator/slg51000-regulator.[ch]
5027 F:      drivers/rtc/rtc-da90??.c
5028 F:      drivers/thermal/da90??-thermal.c
5029 F:      drivers/video/backlight/da90??_bl.c
5030 F:      drivers/watchdog/da90??_wdt.c
5031 F:      include/linux/mfd/da903x.h
5032 F:      include/linux/mfd/da9052/
5033 F:      include/linux/mfd/da9055/
5034 F:      include/linux/mfd/da9062/
5035 F:      include/linux/mfd/da9063/
5036 F:      include/linux/mfd/da9150/
5037 F:      include/linux/regulator/da9211.h
5038 F:      include/sound/da[79]*.h
5039 F:      sound/soc/codecs/da[79]*.[ch]
5040
5041 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5042 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5043 L:      linux-gpio@vger.kernel.org
5044 S:      Maintained
5045 F:      drivers/gpio/gpio-gpio-mm.c
5046
5047 DIOLAN U2C-12 I2C DRIVER
5048 M:      Guenter Roeck <linux@roeck-us.net>
5049 L:      linux-i2c@vger.kernel.org
5050 S:      Maintained
5051 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5052
5053 DIRECTORY NOTIFICATION (DNOTIFY)
5054 M:      Jan Kara <jack@suse.cz>
5055 R:      Amir Goldstein <amir73il@gmail.com>
5056 L:      linux-fsdevel@vger.kernel.org
5057 S:      Maintained
5058 F:      Documentation/filesystems/dnotify.rst
5059 F:      fs/notify/dnotify/
5060 F:      include/linux/dnotify.h
5061
5062 DISK GEOMETRY AND PARTITION HANDLING
5063 M:      Andries Brouwer <aeb@cwi.nl>
5064 S:      Maintained
5065 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5066 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5067 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5068
5069 DISKQUOTA
5070 M:      Jan Kara <jack@suse.com>
5071 S:      Maintained
5072 F:      Documentation/filesystems/quota.rst
5073 F:      fs/quota/
5074 F:      include/linux/quota*.h
5075 F:      include/uapi/linux/quota*.h
5076
5077 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5078 M:      Bernie Thompson <bernie@plugable.com>
5079 L:      linux-fbdev@vger.kernel.org
5080 S:      Maintained
5081 W:      http://plugable.com/category/projects/udlfb/
5082 F:      Documentation/fb/udlfb.rst
5083 F:      drivers/video/fbdev/udlfb.c
5084 F:      include/video/udlfb.h
5085
5086 DISTRIBUTED LOCK MANAGER (DLM)
5087 M:      Christine Caulfield <ccaulfie@redhat.com>
5088 M:      David Teigland <teigland@redhat.com>
5089 L:      cluster-devel@redhat.com
5090 S:      Supported
5091 W:      http://sources.redhat.com/cluster/
5092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5093 F:      fs/dlm/
5094
5095 DMA BUFFER SHARING FRAMEWORK
5096 M:      Sumit Semwal <sumit.semwal@linaro.org>
5097 L:      linux-media@vger.kernel.org
5098 L:      dri-devel@lists.freedesktop.org
5099 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5100 S:      Maintained
5101 T:      git git://anongit.freedesktop.org/drm/drm-misc
5102 F:      Documentation/driver-api/dma-buf.rst
5103 F:      drivers/dma-buf/
5104 F:      include/linux/*fence.h
5105 F:      include/linux/dma-buf*
5106 F:      include/linux/dma-resv.h
5107 K:      \bdma_(?:buf|fence|resv)\b
5108
5109 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5110 M:      Vinod Koul <vkoul@kernel.org>
5111 L:      dmaengine@vger.kernel.org
5112 S:      Maintained
5113 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5115 F:      Documentation/devicetree/bindings/dma/
5116 F:      Documentation/driver-api/dmaengine/
5117 F:      drivers/dma/
5118 F:      include/linux/dmaengine.h
5119 F:      include/linux/of_dma.h
5120
5121 DMA MAPPING HELPERS
5122 M:      Christoph Hellwig <hch@lst.de>
5123 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5124 R:      Robin Murphy <robin.murphy@arm.com>
5125 L:      iommu@lists.linux-foundation.org
5126 S:      Supported
5127 W:      http://git.infradead.org/users/hch/dma-mapping.git
5128 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5129 F:      include/asm-generic/dma-mapping.h
5130 F:      include/linux/dma-direct.h
5131 F:      include/linux/dma-mapping.h
5132 F:      include/linux/dma-noncoherent.h
5133 F:      kernel/dma/
5134
5135 DMA-BUF HEAPS FRAMEWORK
5136 M:      Sumit Semwal <sumit.semwal@linaro.org>
5137 R:      Andrew F. Davis <afd@ti.com>
5138 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5139 R:      Liam Mark <lmark@codeaurora.org>
5140 R:      Laura Abbott <labbott@redhat.com>
5141 R:      Brian Starkey <Brian.Starkey@arm.com>
5142 R:      John Stultz <john.stultz@linaro.org>
5143 L:      linux-media@vger.kernel.org
5144 L:      dri-devel@lists.freedesktop.org
5145 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5146 S:      Maintained
5147 T:      git git://anongit.freedesktop.org/drm/drm-misc
5148 F:      drivers/dma-buf/dma-heap.c
5149 F:      drivers/dma-buf/heaps/*
5150 F:      include/linux/dma-heap.h
5151 F:      include/uapi/linux/dma-heap.h
5152
5153 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5154 M:      Lukasz Luba <lukasz.luba@arm.com>
5155 L:      linux-pm@vger.kernel.org
5156 L:      linux-samsung-soc@vger.kernel.org
5157 S:      Maintained
5158 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5159 F:      drivers/memory/samsung/exynos5422-dmc.c
5160
5161 DME1737 HARDWARE MONITOR DRIVER
5162 M:      Juerg Haefliger <juergh@gmail.com>
5163 L:      linux-hwmon@vger.kernel.org
5164 S:      Maintained
5165 F:      Documentation/hwmon/dme1737.rst
5166 F:      drivers/hwmon/dme1737.c
5167
5168 DMI/SMBIOS SUPPORT
5169 M:      Jean Delvare <jdelvare@suse.com>
5170 S:      Maintained
5171 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5172 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5173 F:      drivers/firmware/dmi-id.c
5174 F:      drivers/firmware/dmi_scan.c
5175 F:      include/linux/dmi.h
5176
5177 DOCUMENTATION
5178 M:      Jonathan Corbet <corbet@lwn.net>
5179 L:      linux-doc@vger.kernel.org
5180 S:      Maintained
5181 T:      git git://git.lwn.net/linux.git docs-next
5182 F:      Documentation/
5183 F:      scripts/documentation-file-ref-check
5184 F:      scripts/kernel-doc
5185 F:      scripts/sphinx-pre-install
5186 X:      Documentation/ABI/
5187 X:      Documentation/admin-guide/media/
5188 X:      Documentation/devicetree/
5189 X:      Documentation/driver-api/media/
5190 X:      Documentation/firmware-guide/acpi/
5191 X:      Documentation/i2c/
5192 X:      Documentation/power/
5193 X:      Documentation/spi/
5194 X:      Documentation/userspace-api/media/
5195
5196 DOCUMENTATION SCRIPTS
5197 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5198 L:      linux-doc@vger.kernel.org
5199 S:      Maintained
5200 F:      Documentation/sphinx/parse-headers.pl
5201 F:      scripts/documentation-file-ref-check
5202 F:      scripts/sphinx-pre-install
5203
5204 DOCUMENTATION/ITALIAN
5205 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5206 L:      linux-doc@vger.kernel.org
5207 S:      Maintained
5208 F:      Documentation/translations/it_IT
5209
5210 DONGWOON DW9714 LENS VOICE COIL DRIVER
5211 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5212 L:      linux-media@vger.kernel.org
5213 S:      Maintained
5214 T:      git git://linuxtv.org/media_tree.git
5215 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5216 F:      drivers/media/i2c/dw9714.c
5217
5218 DONGWOON DW9807 LENS VOICE COIL DRIVER
5219 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5220 L:      linux-media@vger.kernel.org
5221 S:      Maintained
5222 T:      git git://linuxtv.org/media_tree.git
5223 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5224 F:      drivers/media/i2c/dw9807-vcm.c
5225
5226 DOUBLETALK DRIVER
5227 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5228 L:      blinux-list@redhat.com
5229 S:      Maintained
5230 F:      drivers/char/dtlk.c
5231 F:      include/linux/dtlk.h
5232
5233 DPAA2 DATAPATH I/O (DPIO) DRIVER
5234 M:      Roy Pledge <Roy.Pledge@nxp.com>
5235 L:      linux-kernel@vger.kernel.org
5236 S:      Maintained
5237 F:      drivers/soc/fsl/dpio
5238
5239 DPAA2 ETHERNET DRIVER
5240 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5241 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5242 L:      netdev@vger.kernel.org
5243 S:      Maintained
5244 F:      Documentation/networking/device_drivers/freescale/dpaa2/ethernet-driver.rst
5245 F:      Documentation/networking/device_drivers/freescale/dpaa2/mac-phy-support.rst
5246 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5247 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5248 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5249 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5250 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5251 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5252 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5253
5254 DPAA2 ETHERNET SWITCH DRIVER
5255 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5256 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5257 L:      linux-kernel@vger.kernel.org
5258 S:      Maintained
5259 F:      drivers/staging/fsl-dpaa2/ethsw
5260
5261 DPT_I2O SCSI RAID DRIVER
5262 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5263 L:      linux-scsi@vger.kernel.org
5264 S:      Maintained
5265 W:      http://www.adaptec.com/
5266 F:      drivers/scsi/dpt*
5267 F:      drivers/scsi/dpt/
5268
5269 DRBD DRIVER
5270 M:      Philipp Reisner <philipp.reisner@linbit.com>
5271 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5272 L:      drbd-dev@lists.linbit.com
5273 S:      Supported
5274 W:      http://www.drbd.org
5275 T:      git git://git.linbit.com/linux-drbd.git
5276 T:      git git://git.linbit.com/drbd-8.4.git
5277 F:      Documentation/admin-guide/blockdev/
5278 F:      drivers/block/drbd/
5279 F:      lib/lru_cache.c
5280
5281 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5282 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5283 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5284 S:      Supported
5285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5286 F:      Documentation/core-api/kobject.rst
5287 F:      drivers/base/
5288 F:      fs/debugfs/
5289 F:      fs/sysfs/
5290 F:      include/linux/debugfs.h
5291 F:      include/linux/kobj*
5292 F:      lib/kobj*
5293
5294 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
5295 M:      Kevin Hilman <khilman@kernel.org>
5296 M:      Nishanth Menon <nm@ti.com>
5297 L:      linux-pm@vger.kernel.org
5298 S:      Maintained
5299 F:      drivers/power/avs/
5300 F:      include/linux/power/smartreflex.h
5301
5302 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5303 M:      Maxime Ripard <mripard@kernel.org>
5304 M:      Chen-Yu Tsai <wens@csie.org>
5305 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5306 L:      dri-devel@lists.freedesktop.org
5307 S:      Supported
5308 T:      git git://anongit.freedesktop.org/drm/drm-misc
5309 F:      drivers/gpu/drm/sun4i/sun8i*
5310
5311 DRM DRIVER FOR ARM PL111 CLCD
5312 M:      Eric Anholt <eric@anholt.net>
5313 S:      Supported
5314 T:      git git://anongit.freedesktop.org/drm/drm-misc
5315 F:      drivers/gpu/drm/pl111/
5316
5317 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5318 M:      Linus Walleij <linus.walleij@linaro.org>
5319 S:      Maintained
5320 T:      git git://anongit.freedesktop.org/drm/drm-misc
5321 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5322 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5323
5324 DRM DRIVER FOR ASPEED BMC GFX
5325 M:      Joel Stanley <joel@jms.id.au>
5326 L:      linux-aspeed@lists.ozlabs.org
5327 S:      Supported
5328 T:      git git://anongit.freedesktop.org/drm/drm-misc
5329 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5330 F:      drivers/gpu/drm/aspeed/
5331
5332 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5333 M:      Dave Airlie <airlied@redhat.com>
5334 S:      Odd Fixes
5335 F:      drivers/gpu/drm/ast/
5336
5337 DRM DRIVER FOR BOCHS VIRTUAL GPU
5338 M:      Gerd Hoffmann <kraxel@redhat.com>
5339 L:      virtualization@lists.linux-foundation.org
5340 S:      Maintained
5341 T:      git git://anongit.freedesktop.org/drm/drm-misc
5342 F:      drivers/gpu/drm/bochs/
5343
5344 DRM DRIVER FOR BOE HIMAX8279D PANELS
5345 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5346 S:      Maintained
5347 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5348 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5349
5350 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5351 M:      Linus Walleij <linus.walleij@linaro.org>
5352 S:      Maintained
5353 T:      git git://anongit.freedesktop.org/drm/drm-misc
5354 F:      drivers/gpu/drm/tve200/
5355
5356 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5357 M:      Icenowy Zheng <icenowy@aosc.io>
5358 S:      Maintained
5359 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5360 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5361
5362 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5363 M:      Jagan Teki <jagan@amarulasolutions.com>
5364 S:      Maintained
5365 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5366 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5367
5368 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5369 M:      Hans de Goede <hdegoede@redhat.com>
5370 S:      Maintained
5371 T:      git git://anongit.freedesktop.org/drm/drm-misc
5372 F:      drivers/gpu/drm/tiny/gm12u320.c
5373
5374 DRM DRIVER FOR HX8357D PANELS
5375 M:      Eric Anholt <eric@anholt.net>
5376 S:      Maintained
5377 T:      git git://anongit.freedesktop.org/drm/drm-misc
5378 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5379 F:      drivers/gpu/drm/tiny/hx8357d.c
5380
5381 DRM DRIVER FOR ILITEK ILI9225 PANELS
5382 M:      David Lechner <david@lechnology.com>
5383 S:      Maintained
5384 T:      git git://anongit.freedesktop.org/drm/drm-misc
5385 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5386 F:      drivers/gpu/drm/tiny/ili9225.c
5387
5388 DRM DRIVER FOR ILITEK ILI9486 PANELS
5389 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5390 S:      Maintained
5391 T:      git git://anongit.freedesktop.org/drm/drm-misc
5392 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5393 F:      drivers/gpu/drm/tiny/ili9486.c
5394
5395 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5396 S:      Orphan / Obsolete
5397 F:      drivers/gpu/drm/i810/
5398 F:      include/uapi/drm/i810_drm.h
5399
5400 DRM DRIVER FOR LVDS PANELS
5401 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5402 L:      dri-devel@lists.freedesktop.org
5403 T:      git git://anongit.freedesktop.org/drm/drm-misc
5404 S:      Maintained
5405 F:      drivers/gpu/drm/panel/panel-lvds.c
5406 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5407
5408 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5409 S:      Orphan / Obsolete
5410 F:      drivers/gpu/drm/mga/
5411 F:      include/uapi/drm/mga_drm.h
5412
5413 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
5414 M:      Dave Airlie <airlied@redhat.com>
5415 S:      Odd Fixes
5416 F:      drivers/gpu/drm/mgag200/
5417
5418 DRM DRIVER FOR MI0283QT
5419 M:      Noralf Trønnes <noralf@tronnes.org>
5420 S:      Maintained
5421 T:      git git://anongit.freedesktop.org/drm/drm-misc
5422 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5423 F:      drivers/gpu/drm/tiny/mi0283qt.c
5424
5425 DRM DRIVER FOR MSM ADRENO GPU
5426 M:      Rob Clark <robdclark@gmail.com>
5427 M:      Sean Paul <sean@poorly.run>
5428 L:      linux-arm-msm@vger.kernel.org
5429 L:      dri-devel@lists.freedesktop.org
5430 L:      freedreno@lists.freedesktop.org
5431 S:      Maintained
5432 T:      git https://gitlab.freedesktop.org/drm/msm.git
5433 F:      Documentation/devicetree/bindings/display/msm/
5434 F:      drivers/gpu/drm/msm/
5435 F:      include/uapi/drm/msm_drm.h
5436
5437 DRM DRIVER FOR NOVATEK NT35510 PANELS
5438 M:      Linus Walleij <linus.walleij@linaro.org>
5439 S:      Maintained
5440 T:      git git://anongit.freedesktop.org/drm/drm-misc
5441 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5442 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5443
5444 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5445 M:      Ben Skeggs <bskeggs@redhat.com>
5446 L:      dri-devel@lists.freedesktop.org
5447 L:      nouveau@lists.freedesktop.org
5448 S:      Supported
5449 T:      git git://github.com/skeggsb/linux
5450 F:      drivers/gpu/drm/nouveau/
5451 F:      include/uapi/drm/nouveau_drm.h
5452
5453 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5454 M:      Stefan Mavrodiev <stefan@olimex.com>
5455 S:      Maintained
5456 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5457 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5458
5459 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5460 M:      Noralf Trønnes <noralf@tronnes.org>
5461 S:      Maintained
5462 T:      git git://anongit.freedesktop.org/drm/drm-misc
5463 F:      Documentation/devicetree/bindings/display/repaper.txt
5464 F:      drivers/gpu/drm/tiny/repaper.c
5465
5466 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5467 M:      Dave Airlie <airlied@redhat.com>
5468 M:      Gerd Hoffmann <kraxel@redhat.com>
5469 L:      virtualization@lists.linux-foundation.org
5470 S:      Obsolete
5471 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5472 T:      git git://anongit.freedesktop.org/drm/drm-misc
5473 F:      drivers/gpu/drm/tiny/cirrus.c
5474
5475 DRM DRIVER FOR QXL VIRTUAL GPU
5476 M:      Dave Airlie <airlied@redhat.com>
5477 M:      Gerd Hoffmann <kraxel@redhat.com>
5478 L:      virtualization@lists.linux-foundation.org
5479 L:      spice-devel@lists.freedesktop.org
5480 S:      Maintained
5481 T:      git git://anongit.freedesktop.org/drm/drm-misc
5482 F:      drivers/gpu/drm/qxl/
5483 F:      include/uapi/drm/qxl_drm.h
5484
5485 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5486 S:      Orphan / Obsolete
5487 F:      drivers/gpu/drm/r128/
5488 F:      include/uapi/drm/r128_drm.h
5489
5490 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5491 M:      Robert Chiras <robert.chiras@nxp.com>
5492 S:      Maintained
5493 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5494 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5495
5496 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5497 M:      Guido Günther <agx@sigxcpu.org>
5498 R:      Purism Kernel Team <kernel@puri.sm>
5499 S:      Maintained
5500 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5501 F:      drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5502
5503 DRM DRIVER FOR SAVAGE VIDEO CARDS
5504 S:      Orphan / Obsolete
5505 F:      drivers/gpu/drm/savage/
5506 F:      include/uapi/drm/savage_drm.h
5507
5508 DRM DRIVER FOR SIS VIDEO CARDS
5509 S:      Orphan / Obsolete
5510 F:      drivers/gpu/drm/sis/
5511 F:      include/uapi/drm/sis_drm.h
5512
5513 DRM DRIVER FOR SITRONIX ST7586 PANELS
5514 M:      David Lechner <david@lechnology.com>
5515 S:      Maintained
5516 T:      git git://anongit.freedesktop.org/drm/drm-misc
5517 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5518 F:      drivers/gpu/drm/tiny/st7586.c
5519
5520 DRM DRIVER FOR SITRONIX ST7701 PANELS
5521 M:      Jagan Teki <jagan@amarulasolutions.com>
5522 S:      Maintained
5523 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5524 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5525
5526 DRM DRIVER FOR SITRONIX ST7735R PANELS
5527 M:      David Lechner <david@lechnology.com>
5528 S:      Maintained
5529 T:      git git://anongit.freedesktop.org/drm/drm-misc
5530 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5531 F:      drivers/gpu/drm/tiny/st7735r.c
5532
5533 DRM DRIVER FOR SONY ACX424AKP PANELS
5534 M:      Linus Walleij <linus.walleij@linaro.org>
5535 S:      Maintained
5536 T:      git git://anongit.freedesktop.org/drm/drm-misc
5537 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5538
5539 DRM DRIVER FOR ST-ERICSSON MCDE
5540 M:      Linus Walleij <linus.walleij@linaro.org>
5541 S:      Maintained
5542 T:      git git://anongit.freedesktop.org/drm/drm-misc
5543 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5544 F:      drivers/gpu/drm/mcde/
5545
5546 DRM DRIVER FOR TDFX VIDEO CARDS
5547 S:      Orphan / Obsolete
5548 F:      drivers/gpu/drm/tdfx/
5549
5550 DRM DRIVER FOR TPO TPG110 PANELS
5551 M:      Linus Walleij <linus.walleij@linaro.org>
5552 S:      Maintained
5553 T:      git git://anongit.freedesktop.org/drm/drm-misc
5554 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5555 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5556
5557 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5558 M:      Dave Airlie <airlied@redhat.com>
5559 R:      Sean Paul <sean@poorly.run>
5560 L:      dri-devel@lists.freedesktop.org
5561 S:      Odd Fixes
5562 T:      git git://anongit.freedesktop.org/drm/drm-misc
5563 F:      drivers/gpu/drm/udl/
5564
5565 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5566 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5567 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5568 R:      Daniel Vetter <daniel@ffwll.ch>
5569 L:      dri-devel@lists.freedesktop.org
5570 S:      Maintained
5571 T:      git git://anongit.freedesktop.org/drm/drm-misc
5572 F:      Documentation/gpu/vkms.rst
5573 F:      drivers/gpu/drm/vkms/
5574
5575 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5576 M:      Hans de Goede <hdegoede@redhat.com>
5577 L:      dri-devel@lists.freedesktop.org
5578 S:      Maintained
5579 T:      git git://anongit.freedesktop.org/drm/drm-misc
5580 F:      drivers/gpu/drm/vboxvideo/
5581
5582 DRM DRIVER FOR VMWARE VIRTUAL GPU
5583 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5584 M:      Roland Scheidegger <sroland@vmware.com>
5585 L:      dri-devel@lists.freedesktop.org
5586 S:      Supported
5587 T:      git git://people.freedesktop.org/~sroland/linux
5588 F:      drivers/gpu/drm/vmwgfx/
5589 F:      include/uapi/drm/vmwgfx_drm.h
5590
5591 DRM DRIVERS
5592 M:      David Airlie <airlied@linux.ie>
5593 M:      Daniel Vetter <daniel@ffwll.ch>
5594 L:      dri-devel@lists.freedesktop.org
5595 S:      Maintained
5596 B:      https://bugs.freedesktop.org/
5597 C:      irc://chat.freenode.net/dri-devel
5598 T:      git git://anongit.freedesktop.org/drm/drm
5599 F:      Documentation/devicetree/bindings/display/
5600 F:      Documentation/devicetree/bindings/gpu/
5601 F:      Documentation/gpu/
5602 F:      drivers/gpu/drm/
5603 F:      drivers/gpu/vga/
5604 F:      include/drm/
5605 F:      include/linux/vga*
5606 F:      include/uapi/drm/
5607
5608 DRM DRIVERS AND MISC GPU PATCHES
5609 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5610 M:      Maxime Ripard <mripard@kernel.org>
5611 M:      Thomas Zimmermann <tzimmermann@suse.de>
5612 S:      Maintained
5613 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5614 T:      git git://anongit.freedesktop.org/drm/drm-misc
5615 F:      Documentation/gpu/
5616 F:      drivers/gpu/drm/*
5617 F:      drivers/gpu/vga/
5618 F:      include/drm/drm*
5619 F:      include/linux/vga*
5620 F:      include/uapi/drm/drm*
5621
5622 DRM DRIVERS FOR ALLWINNER A10
5623 M:      Maxime Ripard <mripard@kernel.org>
5624 M:      Chen-Yu Tsai <wens@csie.org>
5625 L:      dri-devel@lists.freedesktop.org
5626 S:      Supported
5627 T:      git git://anongit.freedesktop.org/drm/drm-misc
5628 F:      Documentation/devicetree/bindings/display/allwinner*
5629 F:      drivers/gpu/drm/sun4i/
5630
5631 DRM DRIVERS FOR AMLOGIC SOCS
5632 M:      Neil Armstrong <narmstrong@baylibre.com>
5633 L:      dri-devel@lists.freedesktop.org
5634 L:      linux-amlogic@lists.infradead.org
5635 S:      Supported
5636 W:      http://linux-meson.com/
5637 T:      git git://anongit.freedesktop.org/drm/drm-misc
5638 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5639 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5640 F:      Documentation/gpu/meson.rst
5641 F:      drivers/gpu/drm/meson/
5642
5643 DRM DRIVERS FOR ATMEL HLCDC
5644 M:      Sam Ravnborg <sam@ravnborg.org>
5645 M:      Boris Brezillon <bbrezillon@kernel.org>
5646 L:      dri-devel@lists.freedesktop.org
5647 S:      Supported
5648 T:      git git://anongit.freedesktop.org/drm/drm-misc
5649 F:      Documentation/devicetree/bindings/display/atmel/
5650 F:      drivers/gpu/drm/atmel-hlcdc/
5651
5652 DRM DRIVERS FOR BRIDGE CHIPS
5653 M:      Andrzej Hajda <a.hajda@samsung.com>
5654 M:      Neil Armstrong <narmstrong@baylibre.com>
5655 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5656 R:      Jonas Karlman <jonas@kwiboo.se>
5657 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5658 S:      Maintained
5659 T:      git git://anongit.freedesktop.org/drm/drm-misc
5660 F:      drivers/gpu/drm/bridge/
5661
5662 DRM DRIVERS FOR EXYNOS
5663 M:      Inki Dae <inki.dae@samsung.com>
5664 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5665 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5666 M:      Kyungmin Park <kyungmin.park@samsung.com>
5667 L:      dri-devel@lists.freedesktop.org
5668 S:      Supported
5669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5670 F:      Documentation/devicetree/bindings/display/exynos/
5671 F:      drivers/gpu/drm/exynos/
5672 F:      include/uapi/drm/exynos_drm.h
5673
5674 DRM DRIVERS FOR FREESCALE DCU
5675 M:      Stefan Agner <stefan@agner.ch>
5676 M:      Alison Wang <alison.wang@nxp.com>
5677 L:      dri-devel@lists.freedesktop.org
5678 S:      Supported
5679 T:      git git://anongit.freedesktop.org/drm/drm-misc
5680 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5681 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5682 F:      drivers/gpu/drm/fsl-dcu/
5683
5684 DRM DRIVERS FOR FREESCALE IMX
5685 M:      Philipp Zabel <p.zabel@pengutronix.de>
5686 L:      dri-devel@lists.freedesktop.org
5687 S:      Maintained
5688 F:      Documentation/devicetree/bindings/display/imx/
5689 F:      drivers/gpu/drm/imx/
5690 F:      drivers/gpu/ipu-v3/
5691
5692 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5693 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5694 L:      dri-devel@lists.freedesktop.org
5695 S:      Maintained
5696 T:      git git://github.com/patjak/drm-gma500
5697 F:      drivers/gpu/drm/gma500/
5698
5699 DRM DRIVERS FOR HISILICON
5700 M:      Xinliang Liu <xinliang.liu@linaro.org>
5701 M:      Rongrong Zou <zourongrong@gmail.com>
5702 R:      John Stultz <john.stultz@linaro.org>
5703 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5704 R:      Chen Feng <puck.chen@hisilicon.com>
5705 L:      dri-devel@lists.freedesktop.org
5706 S:      Maintained
5707 T:      git git://anongit.freedesktop.org/drm/drm-misc
5708 F:      Documentation/devicetree/bindings/display/hisilicon/
5709 F:      drivers/gpu/drm/hisilicon/
5710
5711 DRM DRIVERS FOR LIMA
5712 M:      Qiang Yu <yuq825@gmail.com>
5713 L:      dri-devel@lists.freedesktop.org
5714 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5715 S:      Maintained
5716 T:      git git://anongit.freedesktop.org/drm/drm-misc
5717 F:      drivers/gpu/drm/lima/
5718 F:      include/uapi/drm/lima_drm.h
5719
5720 DRM DRIVERS FOR MEDIATEK
5721 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
5722 M:      Philipp Zabel <p.zabel@pengutronix.de>
5723 L:      dri-devel@lists.freedesktop.org
5724 S:      Supported
5725 F:      Documentation/devicetree/bindings/display/mediatek/
5726 F:      drivers/gpu/drm/mediatek/
5727
5728 DRM DRIVERS FOR NVIDIA TEGRA
5729 M:      Thierry Reding <thierry.reding@gmail.com>
5730 L:      dri-devel@lists.freedesktop.org
5731 L:      linux-tegra@vger.kernel.org
5732 S:      Supported
5733 T:      git git://anongit.freedesktop.org/tegra/linux.git
5734 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5735 F:      drivers/gpu/drm/tegra/
5736 F:      drivers/gpu/host1x/
5737 F:      include/linux/host1x.h
5738 F:      include/uapi/drm/tegra_drm.h
5739
5740 DRM DRIVERS FOR RENESAS
5741 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5742 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5743 L:      dri-devel@lists.freedesktop.org
5744 L:      linux-renesas-soc@vger.kernel.org
5745 S:      Supported
5746 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5747 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5748 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5749 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5750 F:      drivers/gpu/drm/rcar-du/
5751 F:      drivers/gpu/drm/shmobile/
5752 F:      include/linux/platform_data/shmob_drm.h
5753
5754 DRM DRIVERS FOR ROCKCHIP
5755 M:      Sandy Huang <hjc@rock-chips.com>
5756 M:      Heiko Stübner <heiko@sntech.de>
5757 L:      dri-devel@lists.freedesktop.org
5758 S:      Maintained
5759 T:      git git://anongit.freedesktop.org/drm/drm-misc
5760 F:      Documentation/devicetree/bindings/display/rockchip/
5761 F:      drivers/gpu/drm/rockchip/
5762
5763 DRM DRIVERS FOR STI
5764 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5765 M:      Vincent Abriou <vincent.abriou@st.com>
5766 L:      dri-devel@lists.freedesktop.org
5767 S:      Maintained
5768 T:      git git://anongit.freedesktop.org/drm/drm-misc
5769 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5770 F:      drivers/gpu/drm/sti
5771
5772 DRM DRIVERS FOR STM
5773 M:      Yannick Fertre <yannick.fertre@st.com>
5774 M:      Philippe Cornu <philippe.cornu@st.com>
5775 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5776 M:      Vincent Abriou <vincent.abriou@st.com>
5777 L:      dri-devel@lists.freedesktop.org
5778 S:      Maintained
5779 T:      git git://anongit.freedesktop.org/drm/drm-misc
5780 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5781 F:      drivers/gpu/drm/stm
5782
5783 DRM DRIVERS FOR TI KEYSTONE
5784 M:      Jyri Sarha <jsarha@ti.com>
5785 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5786 L:      dri-devel@lists.freedesktop.org
5787 S:      Maintained
5788 T:      git git://anongit.freedesktop.org/drm/drm-misc
5789 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5790 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5791 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5792 F:      drivers/gpu/drm/tidss/
5793
5794 DRM DRIVERS FOR TI LCDC
5795 M:      Jyri Sarha <jsarha@ti.com>
5796 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5797 L:      dri-devel@lists.freedesktop.org
5798 S:      Maintained
5799 F:      Documentation/devicetree/bindings/display/tilcdc/
5800 F:      drivers/gpu/drm/tilcdc/
5801
5802 DRM DRIVERS FOR TI OMAP
5803 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5804 L:      dri-devel@lists.freedesktop.org
5805 S:      Maintained
5806 F:      Documentation/devicetree/bindings/display/ti/
5807 F:      drivers/gpu/drm/omapdrm/
5808
5809 DRM DRIVERS FOR V3D
5810 M:      Eric Anholt <eric@anholt.net>
5811 S:      Supported
5812 T:      git git://anongit.freedesktop.org/drm/drm-misc
5813 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5814 F:      drivers/gpu/drm/v3d/
5815 F:      include/uapi/drm/v3d_drm.h
5816
5817 DRM DRIVERS FOR VC4
5818 M:      Eric Anholt <eric@anholt.net>
5819 S:      Supported
5820 T:      git git://github.com/anholt/linux
5821 T:      git git://anongit.freedesktop.org/drm/drm-misc
5822 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
5823 F:      drivers/gpu/drm/vc4/
5824 F:      include/uapi/drm/vc4_drm.h
5825
5826 DRM DRIVERS FOR VIVANTE GPU IP
5827 M:      Lucas Stach <l.stach@pengutronix.de>
5828 R:      Russell King <linux+etnaviv@armlinux.org.uk>
5829 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
5830 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
5831 L:      dri-devel@lists.freedesktop.org
5832 S:      Maintained
5833 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
5834 F:      drivers/gpu/drm/etnaviv/
5835 F:      include/uapi/drm/etnaviv_drm.h
5836
5837 DRM DRIVERS FOR XEN
5838 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
5839 L:      dri-devel@lists.freedesktop.org
5840 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
5841 S:      Supported
5842 T:      git git://anongit.freedesktop.org/drm/drm-misc
5843 F:      Documentation/gpu/xen-front.rst
5844 F:      drivers/gpu/drm/xen/
5845
5846 DRM DRIVERS FOR ZTE ZX
5847 M:      Shawn Guo <shawnguo@kernel.org>
5848 L:      dri-devel@lists.freedesktop.org
5849 S:      Maintained
5850 T:      git git://anongit.freedesktop.org/drm/drm-misc
5851 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5852 F:      drivers/gpu/drm/zte/
5853
5854 DRM PANEL DRIVERS
5855 M:      Thierry Reding <thierry.reding@gmail.com>
5856 R:      Sam Ravnborg <sam@ravnborg.org>
5857 L:      dri-devel@lists.freedesktop.org
5858 S:      Maintained
5859 T:      git git://anongit.freedesktop.org/drm/drm-misc
5860 F:      Documentation/devicetree/bindings/display/panel/
5861 F:      drivers/gpu/drm/drm_panel.c
5862 F:      drivers/gpu/drm/panel/
5863 F:      include/drm/drm_panel.h
5864
5865 DRM TTM SUBSYSTEM
5866 M:      Christian Koenig <christian.koenig@amd.com>
5867 M:      Huang Rui <ray.huang@amd.com>
5868 L:      dri-devel@lists.freedesktop.org
5869 S:      Maintained
5870 T:      git git://people.freedesktop.org/~agd5f/linux
5871 F:      drivers/gpu/drm/ttm/
5872 F:      include/drm/ttm/
5873
5874 DSBR100 USB FM RADIO DRIVER
5875 M:      Alexey Klimov <klimov.linux@gmail.com>
5876 L:      linux-media@vger.kernel.org
5877 S:      Maintained
5878 T:      git git://linuxtv.org/media_tree.git
5879 F:      drivers/media/radio/dsbr100.c
5880
5881 DT3155 MEDIA DRIVER
5882 M:      Hans Verkuil <hverkuil@xs4all.nl>
5883 L:      linux-media@vger.kernel.org
5884 S:      Odd Fixes
5885 W:      https://linuxtv.org
5886 T:      git git://linuxtv.org/media_tree.git
5887 F:      drivers/media/pci/dt3155/
5888
5889 DVB_USB_AF9015 MEDIA DRIVER
5890 M:      Antti Palosaari <crope@iki.fi>
5891 L:      linux-media@vger.kernel.org
5892 S:      Maintained
5893 W:      https://linuxtv.org
5894 W:      http://palosaari.fi/linux/
5895 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5896 T:      git git://linuxtv.org/anttip/media_tree.git
5897 F:      drivers/media/usb/dvb-usb-v2/af9015*
5898
5899 DVB_USB_AF9035 MEDIA DRIVER
5900 M:      Antti Palosaari <crope@iki.fi>
5901 L:      linux-media@vger.kernel.org
5902 S:      Maintained
5903 W:      https://linuxtv.org
5904 W:      http://palosaari.fi/linux/
5905 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5906 T:      git git://linuxtv.org/anttip/media_tree.git
5907 F:      drivers/media/usb/dvb-usb-v2/af9035*
5908
5909 DVB_USB_ANYSEE MEDIA DRIVER
5910 M:      Antti Palosaari <crope@iki.fi>
5911 L:      linux-media@vger.kernel.org
5912 S:      Maintained
5913 W:      https://linuxtv.org
5914 W:      http://palosaari.fi/linux/
5915 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5916 T:      git git://linuxtv.org/anttip/media_tree.git
5917 F:      drivers/media/usb/dvb-usb-v2/anysee*
5918
5919 DVB_USB_AU6610 MEDIA DRIVER
5920 M:      Antti Palosaari <crope@iki.fi>
5921 L:      linux-media@vger.kernel.org
5922 S:      Maintained
5923 W:      https://linuxtv.org
5924 W:      http://palosaari.fi/linux/
5925 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5926 T:      git git://linuxtv.org/anttip/media_tree.git
5927 F:      drivers/media/usb/dvb-usb-v2/au6610*
5928
5929 DVB_USB_CE6230 MEDIA DRIVER
5930 M:      Antti Palosaari <crope@iki.fi>
5931 L:      linux-media@vger.kernel.org
5932 S:      Maintained
5933 W:      https://linuxtv.org
5934 W:      http://palosaari.fi/linux/
5935 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5936 T:      git git://linuxtv.org/anttip/media_tree.git
5937 F:      drivers/media/usb/dvb-usb-v2/ce6230*
5938
5939 DVB_USB_CXUSB MEDIA DRIVER
5940 M:      Michael Krufky <mkrufky@linuxtv.org>
5941 L:      linux-media@vger.kernel.org
5942 S:      Maintained
5943 W:      https://linuxtv.org
5944 W:      http://github.com/mkrufky
5945 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5946 T:      git git://linuxtv.org/media_tree.git
5947 F:      drivers/media/usb/dvb-usb/cxusb*
5948
5949 DVB_USB_EC168 MEDIA DRIVER
5950 M:      Antti Palosaari <crope@iki.fi>
5951 L:      linux-media@vger.kernel.org
5952 S:      Maintained
5953 W:      https://linuxtv.org
5954 W:      http://palosaari.fi/linux/
5955 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5956 T:      git git://linuxtv.org/anttip/media_tree.git
5957 F:      drivers/media/usb/dvb-usb-v2/ec168*
5958
5959 DVB_USB_GL861 MEDIA DRIVER
5960 M:      Antti Palosaari <crope@iki.fi>
5961 L:      linux-media@vger.kernel.org
5962 S:      Maintained
5963 W:      https://linuxtv.org
5964 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5965 T:      git git://linuxtv.org/anttip/media_tree.git
5966 F:      drivers/media/usb/dvb-usb-v2/gl861*
5967
5968 DVB_USB_MXL111SF MEDIA DRIVER
5969 M:      Michael Krufky <mkrufky@linuxtv.org>
5970 L:      linux-media@vger.kernel.org
5971 S:      Maintained
5972 W:      https://linuxtv.org
5973 W:      http://github.com/mkrufky
5974 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5975 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
5976 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
5977
5978 DVB_USB_RTL28XXU MEDIA DRIVER
5979 M:      Antti Palosaari <crope@iki.fi>
5980 L:      linux-media@vger.kernel.org
5981 S:      Maintained
5982 W:      https://linuxtv.org
5983 W:      http://palosaari.fi/linux/
5984 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5985 T:      git git://linuxtv.org/anttip/media_tree.git
5986 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
5987
5988 DVB_USB_V2 MEDIA DRIVER
5989 M:      Antti Palosaari <crope@iki.fi>
5990 L:      linux-media@vger.kernel.org
5991 S:      Maintained
5992 W:      https://linuxtv.org
5993 W:      http://palosaari.fi/linux/
5994 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5995 T:      git git://linuxtv.org/anttip/media_tree.git
5996 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
5997 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
5998
5999 DYNAMIC DEBUG
6000 M:      Jason Baron <jbaron@akamai.com>
6001 S:      Maintained
6002 F:      include/linux/dynamic_debug.h
6003 F:      lib/dynamic_debug.c
6004
6005 DYNAMIC INTERRUPT MODERATION
6006 M:      Tal Gilboa <talgi@mellanox.com>
6007 S:      Maintained
6008 F:      Documentation/networking/net_dim.rst
6009 F:      include/linux/dim.h
6010 F:      lib/dim/
6011
6012 DZ DECSTATION DZ11 SERIAL DRIVER
6013 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
6014 S:      Maintained
6015 F:      drivers/tty/serial/dz.*
6016
6017 E3X0 POWER BUTTON DRIVER
6018 M:      Moritz Fischer <moritz.fischer@ettus.com>
6019 L:      usrp-users@lists.ettus.com
6020 S:      Supported
6021 W:      http://www.ettus.com
6022 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6023 F:      drivers/input/misc/e3x0-button.c
6024
6025 E4000 MEDIA DRIVER
6026 M:      Antti Palosaari <crope@iki.fi>
6027 L:      linux-media@vger.kernel.org
6028 S:      Maintained
6029 W:      https://linuxtv.org
6030 W:      http://palosaari.fi/linux/
6031 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6032 T:      git git://linuxtv.org/anttip/media_tree.git
6033 F:      drivers/media/tuners/e4000*
6034
6035 EARTH_PT1 MEDIA DRIVER
6036 M:      Akihiro Tsukada <tskd08@gmail.com>
6037 L:      linux-media@vger.kernel.org
6038 S:      Odd Fixes
6039 F:      drivers/media/pci/pt1/
6040
6041 EARTH_PT3 MEDIA DRIVER
6042 M:      Akihiro Tsukada <tskd08@gmail.com>
6043 L:      linux-media@vger.kernel.org
6044 S:      Odd Fixes
6045 F:      drivers/media/pci/pt3/
6046
6047 EC100 MEDIA DRIVER
6048 M:      Antti Palosaari <crope@iki.fi>
6049 L:      linux-media@vger.kernel.org
6050 S:      Maintained
6051 W:      https://linuxtv.org
6052 W:      http://palosaari.fi/linux/
6053 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6054 T:      git git://linuxtv.org/anttip/media_tree.git
6055 F:      drivers/media/dvb-frontends/ec100*
6056
6057 ECRYPT FILE SYSTEM
6058 M:      Tyler Hicks <code@tyhicks.com>
6059 L:      ecryptfs@vger.kernel.org
6060 S:      Odd Fixes
6061 W:      http://ecryptfs.org
6062 W:      https://launchpad.net/ecryptfs
6063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6064 F:      Documentation/filesystems/ecryptfs.rst
6065 F:      fs/ecryptfs/
6066
6067 EDAC-AMD64
6068 M:      Borislav Petkov <bp@alien8.de>
6069 L:      linux-edac@vger.kernel.org
6070 S:      Maintained
6071 F:      drivers/edac/amd64_edac*
6072
6073 EDAC-ARMADA
6074 M:      Jan Luebbe <jlu@pengutronix.de>
6075 L:      linux-edac@vger.kernel.org
6076 S:      Maintained
6077 F:      drivers/edac/armada_xp_*
6078
6079 EDAC-AST2500
6080 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6081 S:      Supported
6082 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6083 F:      drivers/edac/aspeed_edac.c
6084
6085 EDAC-BLUEFIELD
6086 M:      Shravan Kumar Ramani <sramani@mellanox.com>
6087 S:      Supported
6088 F:      drivers/edac/bluefield_edac.c
6089
6090 EDAC-CALXEDA
6091 M:      Robert Richter <rric@kernel.org>
6092 L:      linux-edac@vger.kernel.org
6093 S:      Maintained
6094 F:      drivers/edac/highbank*
6095
6096 EDAC-CAVIUM OCTEON
6097 M:      Ralf Baechle <ralf@linux-mips.org>
6098 M:      Robert Richter <rrichter@marvell.com>
6099 L:      linux-edac@vger.kernel.org
6100 L:      linux-mips@vger.kernel.org
6101 S:      Supported
6102 F:      drivers/edac/octeon_edac*
6103
6104 EDAC-CAVIUM THUNDERX
6105 M:      Robert Richter <rrichter@marvell.com>
6106 L:      linux-edac@vger.kernel.org
6107 S:      Supported
6108 F:      drivers/edac/thunderx_edac*
6109
6110 EDAC-CORE
6111 M:      Borislav Petkov <bp@alien8.de>
6112 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6113 M:      Tony Luck <tony.luck@intel.com>
6114 R:      James Morse <james.morse@arm.com>
6115 R:      Robert Richter <rrichter@marvell.com>
6116 L:      linux-edac@vger.kernel.org
6117 S:      Supported
6118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6119 F:      Documentation/admin-guide/ras.rst
6120 F:      Documentation/driver-api/edac.rst
6121 F:      drivers/edac/
6122 F:      include/linux/edac.h
6123
6124 EDAC-DMC520
6125 M:      Lei Wang <lewan@microsoft.com>
6126 L:      linux-edac@vger.kernel.org
6127 S:      Supported
6128 F:      drivers/edac/dmc520_edac.c
6129
6130 EDAC-E752X
6131 M:      Mark Gross <mark.gross@intel.com>
6132 L:      linux-edac@vger.kernel.org
6133 S:      Maintained
6134 F:      drivers/edac/e752x_edac.c
6135
6136 EDAC-E7XXX
6137 L:      linux-edac@vger.kernel.org
6138 S:      Maintained
6139 F:      drivers/edac/e7xxx_edac.c
6140
6141 EDAC-FSL_DDR
6142 M:      York Sun <york.sun@nxp.com>
6143 L:      linux-edac@vger.kernel.org
6144 S:      Maintained
6145 F:      drivers/edac/fsl_ddr_edac.*
6146
6147 EDAC-GHES
6148 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6149 L:      linux-edac@vger.kernel.org
6150 S:      Maintained
6151 F:      drivers/edac/ghes_edac.c
6152
6153 EDAC-I10NM
6154 M:      Tony Luck <tony.luck@intel.com>
6155 L:      linux-edac@vger.kernel.org
6156 S:      Maintained
6157 F:      drivers/edac/i10nm_base.c
6158
6159 EDAC-I3000
6160 L:      linux-edac@vger.kernel.org
6161 S:      Orphan
6162 F:      drivers/edac/i3000_edac.c
6163
6164 EDAC-I5000
6165 L:      linux-edac@vger.kernel.org
6166 S:      Maintained
6167 F:      drivers/edac/i5000_edac.c
6168
6169 EDAC-I5400
6170 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6171 L:      linux-edac@vger.kernel.org
6172 S:      Maintained
6173 F:      drivers/edac/i5400_edac.c
6174
6175 EDAC-I7300
6176 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6177 L:      linux-edac@vger.kernel.org
6178 S:      Maintained
6179 F:      drivers/edac/i7300_edac.c
6180
6181 EDAC-I7CORE
6182 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6183 L:      linux-edac@vger.kernel.org
6184 S:      Maintained
6185 F:      drivers/edac/i7core_edac.c
6186
6187 EDAC-I82443BXGX
6188 M:      Tim Small <tim@buttersideup.com>
6189 L:      linux-edac@vger.kernel.org
6190 S:      Maintained
6191 F:      drivers/edac/i82443bxgx_edac.c
6192
6193 EDAC-I82975X
6194 M:      "Arvind R." <arvino55@gmail.com>
6195 L:      linux-edac@vger.kernel.org
6196 S:      Maintained
6197 F:      drivers/edac/i82975x_edac.c
6198
6199 EDAC-IE31200
6200 M:      Jason Baron <jbaron@akamai.com>
6201 L:      linux-edac@vger.kernel.org
6202 S:      Maintained
6203 F:      drivers/edac/ie31200_edac.c
6204
6205 EDAC-MPC85XX
6206 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6207 L:      linux-edac@vger.kernel.org
6208 S:      Maintained
6209 F:      drivers/edac/mpc85xx_edac.[ch]
6210
6211 EDAC-PASEMI
6212 M:      Egor Martovetsky <egor@pasemi.com>
6213 L:      linux-edac@vger.kernel.org
6214 S:      Maintained
6215 F:      drivers/edac/pasemi_edac.c
6216
6217 EDAC-PND2
6218 M:      Tony Luck <tony.luck@intel.com>
6219 L:      linux-edac@vger.kernel.org
6220 S:      Maintained
6221 F:      drivers/edac/pnd2_edac.[ch]
6222
6223 EDAC-QCOM
6224 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6225 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6226 L:      linux-arm-msm@vger.kernel.org
6227 L:      linux-edac@vger.kernel.org
6228 S:      Maintained
6229 F:      drivers/edac/qcom_edac.c
6230
6231 EDAC-R82600
6232 M:      Tim Small <tim@buttersideup.com>
6233 L:      linux-edac@vger.kernel.org
6234 S:      Maintained
6235 F:      drivers/edac/r82600_edac.c
6236
6237 EDAC-SBRIDGE
6238 M:      Tony Luck <tony.luck@intel.com>
6239 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6240 L:      linux-edac@vger.kernel.org
6241 S:      Maintained
6242 F:      drivers/edac/sb_edac.c
6243
6244 EDAC-SIFIVE
6245 M:      Yash Shah <yash.shah@sifive.com>
6246 L:      linux-edac@vger.kernel.org
6247 S:      Supported
6248 F:      drivers/edac/sifive_edac.c
6249
6250 EDAC-SKYLAKE
6251 M:      Tony Luck <tony.luck@intel.com>
6252 L:      linux-edac@vger.kernel.org
6253 S:      Maintained
6254 F:      drivers/edac/skx_*.c
6255
6256 EDAC-TI
6257 M:      Tero Kristo <t-kristo@ti.com>
6258 L:      linux-edac@vger.kernel.org
6259 S:      Maintained
6260 F:      drivers/edac/ti_edac.c
6261
6262 EDIROL UA-101/UA-1000 DRIVER
6263 M:      Clemens Ladisch <clemens@ladisch.de>
6264 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6265 S:      Maintained
6266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6267 F:      sound/usb/misc/ua101.c
6268
6269 EFI TEST DRIVER
6270 M:      Ivan Hu <ivan.hu@canonical.com>
6271 M:      Ard Biesheuvel <ardb@kernel.org>
6272 L:      linux-efi@vger.kernel.org
6273 S:      Maintained
6274 F:      drivers/firmware/efi/test/
6275
6276 EFI VARIABLE FILESYSTEM
6277 M:      Matthew Garrett <matthew.garrett@nebula.com>
6278 M:      Jeremy Kerr <jk@ozlabs.org>
6279 M:      Ard Biesheuvel <ardb@kernel.org>
6280 L:      linux-efi@vger.kernel.org
6281 S:      Maintained
6282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6283 F:      fs/efivarfs/
6284
6285 EFIFB FRAMEBUFFER DRIVER
6286 M:      Peter Jones <pjones@redhat.com>
6287 L:      linux-fbdev@vger.kernel.org
6288 S:      Maintained
6289 F:      drivers/video/fbdev/efifb.c
6290
6291 EFS FILESYSTEM
6292 S:      Orphan
6293 W:      http://aeschi.ch.eu.org/efs/
6294 F:      fs/efs/
6295
6296 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6297 M:      Douglas Miller <dougmill@linux.ibm.com>
6298 L:      netdev@vger.kernel.org
6299 S:      Maintained
6300 F:      drivers/net/ethernet/ibm/ehea/
6301
6302 EM28XX VIDEO4LINUX DRIVER
6303 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6304 L:      linux-media@vger.kernel.org
6305 S:      Maintained
6306 W:      https://linuxtv.org
6307 T:      git git://linuxtv.org/media_tree.git
6308 F:      Documentation/admin-guide/media/em28xx*
6309 F:      drivers/media/usb/em28xx/
6310
6311 EMBEDDED LINUX
6312 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6313 M:      Matt Mackall <mpm@selenic.com>
6314 M:      David Woodhouse <dwmw2@infradead.org>
6315 L:      linux-embedded@vger.kernel.org
6316 S:      Maintained
6317
6318 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6319 M:      Adrian Hunter <adrian.hunter@intel.com>
6320 M:      Ritesh Harjani <riteshh@codeaurora.org>
6321 M:      Asutosh Das <asutoshd@codeaurora.org>
6322 L:      linux-mmc@vger.kernel.org
6323 S:      Maintained
6324 F:      drivers/mmc/host/cqhci*
6325
6326 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6327 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6328 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6329 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6330 L:      linux-scsi@vger.kernel.org
6331 S:      Supported
6332 W:      http://www.broadcom.com
6333 F:      drivers/scsi/be2iscsi/
6334
6335 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6336 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6337 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6338 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6339 L:      netdev@vger.kernel.org
6340 S:      Supported
6341 W:      http://www.emulex.com
6342 F:      drivers/net/ethernet/emulex/benet/
6343
6344 EMULEX ONECONNECT ROCE DRIVER
6345 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6346 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6347 L:      linux-rdma@vger.kernel.org
6348 S:      Odd Fixes
6349 W:      http://www.broadcom.com
6350 F:      drivers/infiniband/hw/ocrdma/
6351 F:      include/uapi/rdma/ocrdma-abi.h
6352
6353 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6354 M:      James Smart <james.smart@broadcom.com>
6355 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6356 L:      linux-scsi@vger.kernel.org
6357 S:      Supported
6358 W:      http://www.broadcom.com
6359 F:      drivers/scsi/lpfc/
6360
6361 ENE CB710 FLASH CARD READER DRIVER
6362 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6363 S:      Maintained
6364 F:      drivers/misc/cb710/
6365 F:      drivers/mmc/host/cb710-mmc.*
6366 F:      include/linux/cb710.h
6367
6368 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6369 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6370 S:      Maintained
6371 F:      drivers/media/rc/ene_ir.*
6372
6373 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6374 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6375 L:      linuxppc-dev@lists.ozlabs.org
6376 S:      Maintained
6377 F:      drivers/tty/ehv_bytechan.c
6378
6379 EPSON S1D13XXX FRAMEBUFFER DRIVER
6380 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6381 S:      Maintained
6382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6383 F:      drivers/video/fbdev/s1d13xxxfb.c
6384 F:      include/video/s1d13xxxfb.h
6385
6386 EROFS FILE SYSTEM
6387 M:      Gao Xiang <xiang@kernel.org>
6388 M:      Chao Yu <yuchao0@huawei.com>
6389 L:      linux-erofs@lists.ozlabs.org
6390 S:      Maintained
6391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6392 F:      Documentation/filesystems/erofs.rst
6393 F:      fs/erofs/
6394 F:      include/trace/events/erofs.h
6395
6396 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6397 M:      Jeff Layton <jlayton@kernel.org>
6398 S:      Maintained
6399 F:      include/linux/errseq.h
6400 F:      lib/errseq.c
6401
6402 ET131X NETWORK DRIVER
6403 M:      Mark Einon <mark.einon@gmail.com>
6404 S:      Odd Fixes
6405 F:      drivers/net/ethernet/agere/
6406
6407 ETHERNET BRIDGE
6408 M:      Roopa Prabhu <roopa@cumulusnetworks.com>
6409 M:      Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
6410 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6411 L:      netdev@vger.kernel.org
6412 S:      Maintained
6413 W:      http://www.linuxfoundation.org/en/Net:Bridge
6414 F:      include/linux/netfilter_bridge/
6415 F:      net/bridge/
6416
6417 ETHERNET PHY LIBRARY
6418 M:      Andrew Lunn <andrew@lunn.ch>
6419 M:      Florian Fainelli <f.fainelli@gmail.com>
6420 M:      Heiner Kallweit <hkallweit1@gmail.com>
6421 R:      Russell King <linux@armlinux.org.uk>
6422 L:      netdev@vger.kernel.org
6423 S:      Maintained
6424 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6425 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6426 F:      Documentation/devicetree/bindings/net/mdio*
6427 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6428 F:      Documentation/networking/phy.rst
6429 F:      drivers/net/phy/
6430 F:      drivers/of/of_mdio.c
6431 F:      drivers/of/of_net.c
6432 F:      include/dt-bindings/net/qca-ar803x.h
6433 F:      include/linux/*mdio*.h
6434 F:      include/linux/of_net.h
6435 F:      include/linux/phy.h
6436 F:      include/linux/phy_fixed.h
6437 F:      include/linux/platform_data/mdio-bcm-unimac.h
6438 F:      include/linux/platform_data/mdio-gpio.h
6439 F:      include/trace/events/mdio.h
6440 F:      include/uapi/linux/mdio.h
6441 F:      include/uapi/linux/mii.h
6442
6443 EXFAT FILE SYSTEM
6444 M:      Namjae Jeon <namjae.jeon@samsung.com>
6445 M:      Sungjong Seo <sj1557.seo@samsung.com>
6446 L:      linux-fsdevel@vger.kernel.org
6447 S:      Maintained
6448 F:      fs/exfat/
6449
6450 EXT2 FILE SYSTEM
6451 M:      Jan Kara <jack@suse.com>
6452 L:      linux-ext4@vger.kernel.org
6453 S:      Maintained
6454 F:      Documentation/filesystems/ext2.rst
6455 F:      fs/ext2/
6456 F:      include/linux/ext2*
6457
6458 EXT4 FILE SYSTEM
6459 M:      "Theodore Ts'o" <tytso@mit.edu>
6460 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6461 L:      linux-ext4@vger.kernel.org
6462 S:      Maintained
6463 W:      http://ext4.wiki.kernel.org
6464 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6466 F:      Documentation/filesystems/ext4/
6467 F:      fs/ext4/
6468
6469 Extended Verification Module (EVM)
6470 M:      Mimi Zohar <zohar@linux.ibm.com>
6471 L:      linux-integrity@vger.kernel.org
6472 S:      Supported
6473 F:      security/integrity/evm/
6474
6475 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6476 M:      Ard Biesheuvel <ardb@kernel.org>
6477 L:      linux-efi@vger.kernel.org
6478 S:      Maintained
6479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6480 F:      Documentation/admin-guide/efi-stub.rst
6481 F:      arch/*/include/asm/efi.h
6482 F:      arch/*/kernel/efi.c
6483 F:      arch/arm/boot/compressed/efi-header.S
6484 F:      arch/arm64/kernel/efi-entry.S
6485 F:      arch/x86/platform/efi/
6486 F:      drivers/firmware/efi/
6487 F:      include/linux/efi*.h
6488
6489 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6490 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6491 M:      Chanwoo Choi <cw00.choi@samsung.com>
6492 L:      linux-kernel@vger.kernel.org
6493 S:      Maintained
6494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6495 F:      Documentation/devicetree/bindings/extcon/
6496 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6497 F:      drivers/extcon/
6498 F:      include/linux/extcon.h
6499 F:      include/linux/extcon/
6500
6501 EXTRA BOOT CONFIG
6502 M:      Masami Hiramatsu <mhiramat@kernel.org>
6503 S:      Maintained
6504 F:      Documentation/admin-guide/bootconfig.rst
6505 F:      fs/proc/bootconfig.c
6506 F:      include/linux/bootconfig.h
6507 F:      lib/bootconfig.c
6508 F:      tools/bootconfig/*
6509
6510 EXYNOS DP DRIVER
6511 M:      Jingoo Han <jingoohan1@gmail.com>
6512 L:      dri-devel@lists.freedesktop.org
6513 S:      Maintained
6514 F:      drivers/gpu/drm/exynos/exynos_dp*
6515
6516 EXYNOS SYSMMU (IOMMU) driver
6517 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6518 L:      iommu@lists.linux-foundation.org
6519 S:      Maintained
6520 F:      drivers/iommu/exynos-iommu.c
6521
6522 EZchip NPS platform support
6523 M:      Vineet Gupta <vgupta@synopsys.com>
6524 M:      Ofer Levi <oferle@mellanox.com>
6525 S:      Supported
6526 F:      arch/arc/boot/dts/eznps.dts
6527 F:      arch/arc/plat-eznps
6528
6529 F2FS FILE SYSTEM
6530 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6531 M:      Chao Yu <yuchao0@huawei.com>
6532 L:      linux-f2fs-devel@lists.sourceforge.net
6533 S:      Maintained
6534 W:      https://f2fs.wiki.kernel.org/
6535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6536 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6537 F:      Documentation/filesystems/f2fs.rst
6538 F:      fs/f2fs/
6539 F:      include/linux/f2fs_fs.h
6540 F:      include/trace/events/f2fs.h
6541
6542 F71805F HARDWARE MONITORING DRIVER
6543 M:      Jean Delvare <jdelvare@suse.com>
6544 L:      linux-hwmon@vger.kernel.org
6545 S:      Maintained
6546 F:      Documentation/hwmon/f71805f.rst
6547 F:      drivers/hwmon/f71805f.c
6548
6549 FADDR2LINE
6550 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6551 S:      Maintained
6552 F:      scripts/faddr2line
6553
6554 FAILOVER MODULE
6555 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6556 L:      netdev@vger.kernel.org
6557 S:      Supported
6558 F:      Documentation/networking/failover.rst
6559 F:      include/net/failover.h
6560 F:      net/core/failover.c
6561
6562 FANOTIFY
6563 M:      Jan Kara <jack@suse.cz>
6564 R:      Amir Goldstein <amir73il@gmail.com>
6565 L:      linux-fsdevel@vger.kernel.org
6566 S:      Maintained
6567 F:      fs/notify/fanotify/
6568 F:      include/linux/fanotify.h
6569 F:      include/uapi/linux/fanotify.h
6570
6571 FARSYNC SYNCHRONOUS DRIVER
6572 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6573 S:      Supported
6574 W:      http://www.farsite.co.uk/
6575 F:      drivers/net/wan/farsync.*
6576
6577 FAULT INJECTION SUPPORT
6578 M:      Akinobu Mita <akinobu.mita@gmail.com>
6579 S:      Supported
6580 F:      Documentation/fault-injection/
6581 F:      lib/fault-inject.c
6582
6583 FBTFT Framebuffer drivers
6584 L:      dri-devel@lists.freedesktop.org
6585 L:      linux-fbdev@vger.kernel.org
6586 S:      Orphan
6587 F:      drivers/staging/fbtft/
6588
6589 FC0011 TUNER DRIVER
6590 M:      Michael Buesch <m@bues.ch>
6591 L:      linux-media@vger.kernel.org
6592 S:      Maintained
6593 F:      drivers/media/tuners/fc0011.c
6594 F:      drivers/media/tuners/fc0011.h
6595
6596 FC2580 MEDIA DRIVER
6597 M:      Antti Palosaari <crope@iki.fi>
6598 L:      linux-media@vger.kernel.org
6599 S:      Maintained
6600 W:      https://linuxtv.org
6601 W:      http://palosaari.fi/linux/
6602 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6603 T:      git git://linuxtv.org/anttip/media_tree.git
6604 F:      drivers/media/tuners/fc2580*
6605
6606 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6607 M:      Hannes Reinecke <hare@suse.de>
6608 L:      linux-scsi@vger.kernel.org
6609 S:      Supported
6610 W:      www.Open-FCoE.org
6611 F:      drivers/scsi/fcoe/
6612 F:      drivers/scsi/libfc/
6613 F:      include/scsi/fc/
6614 F:      include/scsi/libfc.h
6615 F:      include/scsi/libfcoe.h
6616 F:      include/uapi/scsi/fc/
6617
6618 FILE LOCKING (flock() and fcntl()/lockf())
6619 M:      Jeff Layton <jlayton@kernel.org>
6620 M:      "J. Bruce Fields" <bfields@fieldses.org>
6621 L:      linux-fsdevel@vger.kernel.org
6622 S:      Maintained
6623 F:      fs/fcntl.c
6624 F:      fs/locks.c
6625 F:      include/linux/fcntl.h
6626 F:      include/uapi/linux/fcntl.h
6627
6628 FILESYSTEM DIRECT ACCESS (DAX)
6629 M:      Dan Williams <dan.j.williams@intel.com>
6630 R:      Matthew Wilcox <willy@infradead.org>
6631 R:      Jan Kara <jack@suse.cz>
6632 L:      linux-fsdevel@vger.kernel.org
6633 L:      linux-nvdimm@lists.01.org
6634 S:      Supported
6635 F:      fs/dax.c
6636 F:      include/linux/dax.h
6637 F:      include/trace/events/fs_dax.h
6638
6639 FILESYSTEMS (VFS and infrastructure)
6640 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6641 L:      linux-fsdevel@vger.kernel.org
6642 S:      Maintained
6643 F:      fs/*
6644 F:      include/linux/fs.h
6645 F:      include/linux/fs_types.h
6646 F:      include/uapi/linux/fs.h
6647 F:      include/uapi/linux/openat2.h
6648
6649 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6650 M:      Riku Voipio <riku.voipio@iki.fi>
6651 L:      linux-hwmon@vger.kernel.org
6652 S:      Maintained
6653 F:      drivers/hwmon/f75375s.c
6654 F:      include/linux/f75375s.h
6655
6656 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6657 M:      Clemens Ladisch <clemens@ladisch.de>
6658 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
6659 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6660 S:      Maintained
6661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6662 F:      include/uapi/sound/firewire.h
6663 F:      sound/firewire/
6664
6665 FIREWIRE MEDIA DRIVERS (firedtv)
6666 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6667 L:      linux-media@vger.kernel.org
6668 L:      linux1394-devel@lists.sourceforge.net
6669 S:      Maintained
6670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6671 F:      drivers/media/firewire/
6672
6673 FIREWIRE SBP-2 TARGET
6674 M:      Chris Boot <bootc@bootc.net>
6675 L:      linux-scsi@vger.kernel.org
6676 L:      target-devel@vger.kernel.org
6677 L:      linux1394-devel@lists.sourceforge.net
6678 S:      Maintained
6679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6680 F:      drivers/target/sbp/
6681
6682 FIREWIRE SUBSYSTEM
6683 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6684 L:      linux1394-devel@lists.sourceforge.net
6685 S:      Maintained
6686 W:      http://ieee1394.wiki.kernel.org/
6687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6688 F:      drivers/firewire/
6689 F:      include/linux/firewire.h
6690 F:      include/uapi/linux/firewire*.h
6691 F:      tools/firewire/
6692
6693 FIRMWARE LOADER (request_firmware)
6694 M:      Luis Chamberlain <mcgrof@kernel.org>
6695 L:      linux-kernel@vger.kernel.org
6696 S:      Maintained
6697 F:      Documentation/firmware_class/
6698 F:      drivers/base/firmware_loader/
6699 F:      include/linux/firmware.h
6700
6701 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6702 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6703 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6704 S:      Maintained
6705 F:      drivers/block/rsxx/
6706
6707 FLEXTIMER FTM-QUADDEC DRIVER
6708 M:      Patrick Havelange <patrick.havelange@essensium.com>
6709 L:      linux-iio@vger.kernel.org
6710 S:      Maintained
6711 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6712 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6713 F:      drivers/counter/ftm-quaddec.c
6714
6715 FLOPPY DRIVER
6716 M:      Denis Efremov <efremov@linux.com>
6717 L:      linux-block@vger.kernel.org
6718 S:      Odd Fixes
6719 F:      drivers/block/floppy.c
6720
6721 FLYSKY FSIA6B RC RECEIVER
6722 M:      Markus Koch <markus@notsyncing.net>
6723 L:      linux-input@vger.kernel.org
6724 S:      Maintained
6725 F:      drivers/input/joystick/fsia6b.c
6726
6727 FORCEDETH GIGABIT ETHERNET DRIVER
6728 M:      Rain River <rain.1986.08.12@gmail.com>
6729 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
6730 L:      netdev@vger.kernel.org
6731 S:      Maintained
6732 F:      drivers/net/ethernet/nvidia/*
6733
6734 FPGA DFL DRIVERS
6735 M:      Wu Hao <hao.wu@intel.com>
6736 L:      linux-fpga@vger.kernel.org
6737 S:      Maintained
6738 F:      Documentation/fpga/dfl.rst
6739 F:      drivers/fpga/dfl*
6740 F:      include/uapi/linux/fpga-dfl.h
6741
6742 FPGA MANAGER FRAMEWORK
6743 M:      Moritz Fischer <mdf@kernel.org>
6744 L:      linux-fpga@vger.kernel.org
6745 S:      Maintained
6746 W:      http://www.rocketboards.org
6747 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6749 F:      Documentation/devicetree/bindings/fpga/
6750 F:      Documentation/driver-api/fpga/
6751 F:      Documentation/fpga/
6752 F:      drivers/fpga/
6753 F:      include/linux/fpga/
6754
6755 FPU EMULATOR
6756 M:      Bill Metzenthen <billm@melbpc.org.au>
6757 S:      Maintained
6758 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6759 F:      arch/x86/math-emu/
6760
6761 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6762 L:      netdev@vger.kernel.org
6763 S:      Orphan
6764 F:      drivers/net/wan/dlci.c
6765 F:      drivers/net/wan/sdla.c
6766
6767 FRAMEBUFFER LAYER
6768 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6769 L:      dri-devel@lists.freedesktop.org
6770 L:      linux-fbdev@vger.kernel.org
6771 S:      Maintained
6772 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6773 T:      git git://anongit.freedesktop.org/drm/drm-misc
6774 F:      Documentation/fb/
6775 F:      drivers/video/
6776 F:      include/linux/fb.h
6777 F:      include/uapi/linux/fb.h
6778 F:      include/uapi/video/
6779 F:      include/video/
6780
6781 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6782 M:      Horia Geantă <horia.geanta@nxp.com>
6783 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6784 L:      linux-crypto@vger.kernel.org
6785 S:      Maintained
6786 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6787 F:      drivers/crypto/caam/
6788
6789 FREESCALE COLDFIRE M5441X MMC DRIVER
6790 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
6791 L:      linux-mmc@vger.kernel.org
6792 S:      Maintained
6793 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
6794 F:      include/linux/platform_data/mmc-esdhc-mcf.h
6795
6796 FREESCALE DIU FRAMEBUFFER DRIVER
6797 M:      Timur Tabi <timur@kernel.org>
6798 L:      linux-fbdev@vger.kernel.org
6799 S:      Maintained
6800 F:      drivers/video/fbdev/fsl-diu-fb.*
6801
6802 FREESCALE DMA DRIVER
6803 M:      Li Yang <leoyang.li@nxp.com>
6804 M:      Zhang Wei <zw@zh-kernel.org>
6805 L:      linuxppc-dev@lists.ozlabs.org
6806 S:      Maintained
6807 F:      drivers/dma/fsldma.*
6808
6809 FREESCALE ENETC ETHERNET DRIVERS
6810 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6811 L:      netdev@vger.kernel.org
6812 S:      Maintained
6813 F:      drivers/net/ethernet/freescale/enetc/
6814
6815 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6816 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6817 L:      netdev@vger.kernel.org
6818 S:      Maintained
6819 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6820 F:      drivers/net/ethernet/freescale/gianfar*
6821
6822 FREESCALE GPMI NAND DRIVER
6823 M:      Han Xu <han.xu@nxp.com>
6824 L:      linux-mtd@lists.infradead.org
6825 S:      Maintained
6826 F:      drivers/mtd/nand/raw/gpmi-nand/*
6827
6828 FREESCALE I2C CPM DRIVER
6829 M:      Jochen Friedrich <jochen@scram.de>
6830 L:      linuxppc-dev@lists.ozlabs.org
6831 L:      linux-i2c@vger.kernel.org
6832 S:      Maintained
6833 F:      drivers/i2c/busses/i2c-cpm.c
6834
6835 FREESCALE IMX / MXC FEC DRIVER
6836 M:      Fugang Duan <fugang.duan@nxp.com>
6837 L:      netdev@vger.kernel.org
6838 S:      Maintained
6839 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6840 F:      drivers/net/ethernet/freescale/fec.h
6841 F:      drivers/net/ethernet/freescale/fec_main.c
6842 F:      drivers/net/ethernet/freescale/fec_ptp.c
6843
6844 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6845 M:      Sascha Hauer <s.hauer@pengutronix.de>
6846 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6847 L:      linux-fbdev@vger.kernel.org
6848 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6849 S:      Maintained
6850 F:      drivers/video/fbdev/imxfb.c
6851 F:      include/linux/platform_data/video-imxfb.h
6852
6853 FREESCALE IMX DDR PMU DRIVER
6854 M:      Frank Li <Frank.li@nxp.com>
6855 L:      linux-arm-kernel@lists.infradead.org
6856 S:      Maintained
6857 F:      Documentation/admin-guide/perf/imx-ddr.rst
6858 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.txt
6859 F:      drivers/perf/fsl_imx8_ddr_perf.c
6860
6861 FREESCALE IMX I2C DRIVER
6862 M:      Oleksij Rempel <o.rempel@pengutronix.de>
6863 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6864 L:      linux-i2c@vger.kernel.org
6865 S:      Maintained
6866 F:      Documentation/devicetree/bindings/i2c/i2c-imx.txt
6867 F:      drivers/i2c/busses/i2c-imx.c
6868
6869 FREESCALE IMX LPI2C DRIVER
6870 M:      Dong Aisheng <aisheng.dong@nxp.com>
6871 L:      linux-i2c@vger.kernel.org
6872 L:      linux-imx@nxp.com
6873 S:      Maintained
6874 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6875 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
6876
6877 FREESCALE QORIQ DPAA ETHERNET DRIVER
6878 M:      Madalin Bucur <madalin.bucur@nxp.com>
6879 L:      netdev@vger.kernel.org
6880 S:      Maintained
6881 F:      drivers/net/ethernet/freescale/dpaa
6882
6883 FREESCALE QORIQ DPAA FMAN DRIVER
6884 M:      Madalin Bucur <madalin.bucur@nxp.com>
6885 L:      netdev@vger.kernel.org
6886 S:      Maintained
6887 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
6888 F:      drivers/net/ethernet/freescale/fman
6889
6890 FREESCALE QORIQ PTP CLOCK DRIVER
6891 M:      Yangbo Lu <yangbo.lu@nxp.com>
6892 L:      netdev@vger.kernel.org
6893 S:      Maintained
6894 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
6895 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
6896 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
6897 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
6898 F:      drivers/ptp/ptp_qoriq.c
6899 F:      drivers/ptp/ptp_qoriq_debugfs.c
6900 F:      include/linux/fsl/ptp_qoriq.h
6901
6902 FREESCALE QUAD SPI DRIVER
6903 M:      Han Xu <han.xu@nxp.com>
6904 L:      linux-spi@vger.kernel.org
6905 S:      Maintained
6906 F:      drivers/spi/spi-fsl-qspi.c
6907
6908 FREESCALE QUICC ENGINE LIBRARY
6909 M:      Qiang Zhao <qiang.zhao@nxp.com>
6910 L:      linuxppc-dev@lists.ozlabs.org
6911 S:      Maintained
6912 F:      drivers/soc/fsl/qe/
6913 F:      include/soc/fsl/*qe*.h
6914 F:      include/soc/fsl/*ucc*.h
6915
6916 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
6917 M:      Li Yang <leoyang.li@nxp.com>
6918 L:      netdev@vger.kernel.org
6919 L:      linuxppc-dev@lists.ozlabs.org
6920 S:      Maintained
6921 F:      drivers/net/ethernet/freescale/ucc_geth*
6922
6923 FREESCALE QUICC ENGINE UCC HDLC DRIVER
6924 M:      Zhao Qiang <qiang.zhao@nxp.com>
6925 L:      netdev@vger.kernel.org
6926 L:      linuxppc-dev@lists.ozlabs.org
6927 S:      Maintained
6928 F:      drivers/net/wan/fsl_ucc_hdlc*
6929
6930 FREESCALE QUICC ENGINE UCC UART DRIVER
6931 M:      Timur Tabi <timur@kernel.org>
6932 L:      linuxppc-dev@lists.ozlabs.org
6933 S:      Maintained
6934 F:      drivers/tty/serial/ucc_uart.c
6935
6936 FREESCALE SOC DRIVERS
6937 M:      Li Yang <leoyang.li@nxp.com>
6938 L:      linuxppc-dev@lists.ozlabs.org
6939 L:      linux-arm-kernel@lists.infradead.org
6940 S:      Maintained
6941 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
6942 F:      Documentation/devicetree/bindings/soc/fsl/
6943 F:      drivers/soc/fsl/
6944 F:      include/linux/fsl/
6945
6946 FREESCALE SOC FS_ENET DRIVER
6947 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
6948 L:      linuxppc-dev@lists.ozlabs.org
6949 L:      netdev@vger.kernel.org
6950 S:      Maintained
6951 F:      drivers/net/ethernet/freescale/fs_enet/
6952 F:      include/linux/fs_enet_pd.h
6953
6954 FREESCALE SOC SOUND DRIVERS
6955 M:      Timur Tabi <timur@kernel.org>
6956 M:      Nicolin Chen <nicoleotsuka@gmail.com>
6957 M:      Xiubo Li <Xiubo.Lee@gmail.com>
6958 R:      Fabio Estevam <festevam@gmail.com>
6959 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
6960 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6961 L:      linuxppc-dev@lists.ozlabs.org
6962 S:      Maintained
6963 F:      sound/soc/fsl/fsl*
6964 F:      sound/soc/fsl/imx*
6965 F:      sound/soc/fsl/mpc8610_hpcd.c
6966
6967 FREESCALE USB PERIPHERAL DRIVERS
6968 M:      Li Yang <leoyang.li@nxp.com>
6969 L:      linux-usb@vger.kernel.org
6970 L:      linuxppc-dev@lists.ozlabs.org
6971 S:      Maintained
6972 F:      drivers/usb/gadget/udc/fsl*
6973
6974 FREEVXFS FILESYSTEM
6975 M:      Christoph Hellwig <hch@infradead.org>
6976 S:      Maintained
6977 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
6978 F:      fs/freevxfs/
6979
6980 FREEZER
6981 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6982 M:      Pavel Machek <pavel@ucw.cz>
6983 L:      linux-pm@vger.kernel.org
6984 S:      Supported
6985 F:      Documentation/power/freezing-of-tasks.rst
6986 F:      include/linux/freezer.h
6987 F:      kernel/freezer.c
6988
6989 FRONTSWAP API
6990 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
6991 L:      linux-kernel@vger.kernel.org
6992 S:      Maintained
6993 F:      include/linux/frontswap.h
6994 F:      mm/frontswap.c
6995
6996 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
6997 M:      David Howells <dhowells@redhat.com>
6998 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
6999 S:      Supported
7000 F:      Documentation/filesystems/caching/
7001 F:      fs/fscache/
7002 F:      include/linux/fscache*.h
7003
7004 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7005 M:      Theodore Y. Ts'o <tytso@mit.edu>
7006 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7007 M:      Eric Biggers <ebiggers@kernel.org>
7008 L:      linux-fscrypt@vger.kernel.org
7009 S:      Supported
7010 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7011 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7012 F:      Documentation/filesystems/fscrypt.rst
7013 F:      fs/crypto/
7014 F:      include/linux/fscrypt*.h
7015 F:      include/uapi/linux/fscrypt.h
7016
7017 FSI SUBSYSTEM
7018 M:      Jeremy Kerr <jk@ozlabs.org>
7019 M:      Joel Stanley <joel@jms.id.au>
7020 R:      Alistar Popple <alistair@popple.id.au>
7021 R:      Eddie James <eajames@linux.ibm.com>
7022 L:      linux-fsi@lists.ozlabs.org
7023 S:      Supported
7024 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7026 F:      drivers/fsi/
7027 F:      include/linux/fsi*.h
7028 F:      include/trace/events/fsi*.h
7029
7030 FSI-ATTACHED I2C DRIVER
7031 M:      Eddie James <eajames@linux.ibm.com>
7032 L:      linux-i2c@vger.kernel.org
7033 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7034 S:      Maintained
7035 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7036 F:      drivers/i2c/busses/i2c-fsi.c
7037
7038 FSI-ATTACHED SPI DRIVER
7039 M:      Eddie James <eajames@linux.ibm.com>
7040 L:      linux-spi@vger.kernel.org
7041 S:      Maintained
7042 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7043 F:      drivers/spi/spi-fsi.c
7044
7045 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7046 M:      Jan Kara <jack@suse.cz>
7047 R:      Amir Goldstein <amir73il@gmail.com>
7048 L:      linux-fsdevel@vger.kernel.org
7049 S:      Maintained
7050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7051 F:      fs/notify/
7052 F:      include/linux/fsnotify*.h
7053
7054 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7055 M:      Eric Biggers <ebiggers@kernel.org>
7056 M:      Theodore Y. Ts'o <tytso@mit.edu>
7057 L:      linux-fscrypt@vger.kernel.org
7058 S:      Supported
7059 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7060 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7061 F:      Documentation/filesystems/fsverity.rst
7062 F:      fs/verity/
7063 F:      include/linux/fsverity.h
7064 F:      include/uapi/linux/fsverity.h
7065
7066 FUJITSU LAPTOP EXTRAS
7067 M:      Jonathan Woithe <jwoithe@just42.net>
7068 L:      platform-driver-x86@vger.kernel.org
7069 S:      Maintained
7070 F:      drivers/platform/x86/fujitsu-laptop.c
7071
7072 FUJITSU M-5MO LS CAMERA ISP DRIVER
7073 M:      Kyungmin Park <kyungmin.park@samsung.com>
7074 M:      Heungjun Kim <riverful.kim@samsung.com>
7075 L:      linux-media@vger.kernel.org
7076 S:      Maintained
7077 F:      drivers/media/i2c/m5mols/
7078 F:      include/media/i2c/m5mols.h
7079
7080 FUJITSU TABLET EXTRAS
7081 M:      Robert Gerlach <khnz@gmx.de>
7082 L:      platform-driver-x86@vger.kernel.org
7083 S:      Maintained
7084 F:      drivers/platform/x86/fujitsu-tablet.c
7085
7086 FUSE: FILESYSTEM IN USERSPACE
7087 M:      Miklos Szeredi <miklos@szeredi.hu>
7088 L:      linux-fsdevel@vger.kernel.org
7089 S:      Maintained
7090 W:      http://fuse.sourceforge.net/
7091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7092 F:      Documentation/filesystems/fuse.rst
7093 F:      fs/fuse/
7094 F:      include/uapi/linux/fuse.h
7095
7096 FUTEX SUBSYSTEM
7097 M:      Thomas Gleixner <tglx@linutronix.de>
7098 M:      Ingo Molnar <mingo@redhat.com>
7099 R:      Peter Zijlstra <peterz@infradead.org>
7100 R:      Darren Hart <dvhart@infradead.org>
7101 L:      linux-kernel@vger.kernel.org
7102 S:      Maintained
7103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7104 F:      Documentation/locking/*futex*
7105 F:      include/asm-generic/futex.h
7106 F:      include/linux/futex.h
7107 F:      include/uapi/linux/futex.h
7108 F:      kernel/futex.c
7109 F:      tools/perf/bench/futex*
7110 F:      Documentation/locking/*futex*
7111
7112 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7113 M:      Tim Harvey <tharvey@gateworks.com>
7114 M:      Robert Jones <rjones@gateworks.com>
7115 S:      Maintained
7116 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7117 F:      drivers/mfd/gateworks-gsc.c
7118 F:      include/linux/mfd/gsc.h
7119 F:      Documentation/hwmon/gsc-hwmon.rst
7120 F:      drivers/hwmon/gsc-hwmon.c
7121 F:      include/linux/platform_data/gsc_hwmon.h
7122
7123 GASKET DRIVER FRAMEWORK
7124 M:      Rob Springer <rspringer@google.com>
7125 M:      Todd Poynor <toddpoynor@google.com>
7126 M:      Ben Chan <benchan@chromium.org>
7127 M:      Richard Yeh <rcy@google.com>
7128 S:      Maintained
7129 F:      drivers/staging/gasket/
7130
7131 GCC PLUGINS
7132 M:      Kees Cook <keescook@chromium.org>
7133 R:      Emese Revfy <re.emese@gmail.com>
7134 L:      kernel-hardening@lists.openwall.com
7135 S:      Maintained
7136 F:      Documentation/kbuild/gcc-plugins.rst
7137 F:      scripts/Makefile.gcc-plugins
7138 F:      scripts/gcc-plugin.sh
7139 F:      scripts/gcc-plugins/
7140
7141 GCOV BASED KERNEL PROFILING
7142 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7143 S:      Maintained
7144 F:      Documentation/dev-tools/gcov.rst
7145 F:      kernel/gcov/
7146
7147 GDB KERNEL DEBUGGING HELPER SCRIPTS
7148 M:      Jan Kiszka <jan.kiszka@siemens.com>
7149 M:      Kieran Bingham <kbingham@kernel.org>
7150 S:      Supported
7151 F:      scripts/gdb/
7152
7153 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7154 M:      Achim Leubner <achim_leubner@adaptec.com>
7155 L:      linux-scsi@vger.kernel.org
7156 S:      Supported
7157 W:      http://www.icp-vortex.com/
7158 F:      drivers/scsi/gdt*
7159
7160 GEMTEK FM RADIO RECEIVER DRIVER
7161 M:      Hans Verkuil <hverkuil@xs4all.nl>
7162 L:      linux-media@vger.kernel.org
7163 S:      Maintained
7164 W:      https://linuxtv.org
7165 T:      git git://linuxtv.org/media_tree.git
7166 F:      drivers/media/radio/radio-gemtek*
7167
7168 GENERIC ARCHITECTURE TOPOLOGY
7169 M:      Sudeep Holla <sudeep.holla@arm.com>
7170 L:      linux-kernel@vger.kernel.org
7171 S:      Maintained
7172 F:      drivers/base/arch_topology.c
7173 F:      include/linux/arch_topology.h
7174
7175 GENERIC GPIO I2C DRIVER
7176 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7177 S:      Supported
7178 F:      drivers/i2c/busses/i2c-gpio.c
7179 F:      include/linux/platform_data/i2c-gpio.h
7180
7181 GENERIC GPIO I2C MULTIPLEXER DRIVER
7182 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7183 L:      linux-i2c@vger.kernel.org
7184 S:      Supported
7185 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7186 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7187 F:      include/linux/platform_data/i2c-mux-gpio.h
7188
7189 GENERIC HDLC (WAN) DRIVERS
7190 M:      Krzysztof Halasa <khc@pm.waw.pl>
7191 S:      Maintained
7192 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7193 F:      drivers/net/wan/c101.c
7194 F:      drivers/net/wan/hd6457*
7195 F:      drivers/net/wan/hdlc*
7196 F:      drivers/net/wan/n2.c
7197 F:      drivers/net/wan/pc300too.c
7198 F:      drivers/net/wan/pci200syn.c
7199 F:      drivers/net/wan/wanxl*
7200
7201 GENERIC INCLUDE/ASM HEADER FILES
7202 M:      Arnd Bergmann <arnd@arndb.de>
7203 L:      linux-arch@vger.kernel.org
7204 S:      Maintained
7205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7206 F:      include/asm-generic/
7207 F:      include/uapi/asm-generic/
7208
7209 GENERIC PHY FRAMEWORK
7210 M:      Kishon Vijay Abraham I <kishon@ti.com>
7211 M:      Vinod Koul <vkoul@kernel.org>
7212 L:      linux-kernel@vger.kernel.org
7213 S:      Supported
7214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7215 F:      Documentation/devicetree/bindings/phy/
7216 F:      drivers/phy/
7217 F:      include/linux/phy/
7218
7219 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7220 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7221 S:      Supported
7222 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7223
7224 GENERIC PM DOMAINS
7225 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7226 M:      Kevin Hilman <khilman@kernel.org>
7227 M:      Ulf Hansson <ulf.hansson@linaro.org>
7228 L:      linux-pm@vger.kernel.org
7229 S:      Supported
7230 F:      Documentation/devicetree/bindings/power/power?domain*
7231 F:      drivers/base/power/domain*.c
7232 F:      include/linux/pm_domain.h
7233
7234 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7235 M:      Eugen Hristev <eugen.hristev@microchip.com>
7236 L:      linux-input@vger.kernel.org
7237 S:      Maintained
7238 F:      drivers/input/touchscreen/resistive-adc-touch.c
7239
7240 GENERIC UIO DRIVER FOR PCI DEVICES
7241 M:      "Michael S. Tsirkin" <mst@redhat.com>
7242 L:      kvm@vger.kernel.org
7243 S:      Supported
7244 F:      drivers/uio/uio_pci_generic.c
7245
7246 GENERIC VDSO LIBRARY
7247 M:      Andy Lutomirski <luto@kernel.org>
7248 M:      Thomas Gleixner <tglx@linutronix.de>
7249 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7250 L:      linux-kernel@vger.kernel.org
7251 S:      Maintained
7252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7253 F:      include/asm-generic/vdso/vsyscall.h
7254 F:      include/vdso/
7255 F:      kernel/time/vsyscall.c
7256 F:      lib/vdso/
7257
7258 GENWQE (IBM Generic Workqueue Card)
7259 M:      Frank Haverkamp <haver@linux.ibm.com>
7260 S:      Supported
7261 F:      drivers/misc/genwqe/
7262
7263 GET_MAINTAINER SCRIPT
7264 M:      Joe Perches <joe@perches.com>
7265 S:      Maintained
7266 F:      scripts/get_maintainer.pl
7267
7268 GFS2 FILE SYSTEM
7269 M:      Bob Peterson <rpeterso@redhat.com>
7270 M:      Andreas Gruenbacher <agruenba@redhat.com>
7271 L:      cluster-devel@redhat.com
7272 S:      Supported
7273 W:      http://sources.redhat.com/cluster/
7274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7275 F:      Documentation/filesystems/gfs2*
7276 F:      fs/gfs2/
7277 F:      include/uapi/linux/gfs2_ondisk.h
7278
7279 GNSS SUBSYSTEM
7280 M:      Johan Hovold <johan@kernel.org>
7281 S:      Maintained
7282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7283 F:      Documentation/ABI/testing/sysfs-class-gnss
7284 F:      Documentation/devicetree/bindings/gnss/
7285 F:      drivers/gnss/
7286 F:      include/linux/gnss.h
7287
7288 GO7007 MPEG CODEC
7289 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7290 L:      linux-media@vger.kernel.org
7291 S:      Maintained
7292 F:      drivers/media/usb/go7007/
7293
7294 GOODIX TOUCHSCREEN
7295 M:      Bastien Nocera <hadess@hadess.net>
7296 L:      linux-input@vger.kernel.org
7297 S:      Maintained
7298 F:      drivers/input/touchscreen/goodix.c
7299
7300 GOOGLE ETHERNET DRIVERS
7301 M:      Catherine Sullivan <csully@google.com>
7302 R:      Sagi Shahar <sagis@google.com>
7303 R:      Jon Olson <jonolson@google.com>
7304 L:      netdev@vger.kernel.org
7305 S:      Supported
7306 F:      Documentation/networking/device_drivers/google/gve.rst
7307 F:      drivers/net/ethernet/google
7308
7309 GPD POCKET FAN DRIVER
7310 M:      Hans de Goede <hdegoede@redhat.com>
7311 L:      platform-driver-x86@vger.kernel.org
7312 S:      Maintained
7313 F:      drivers/platform/x86/gpd-pocket-fan.c
7314
7315 GPIO ACPI SUPPORT
7316 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7317 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7318 L:      linux-gpio@vger.kernel.org
7319 L:      linux-acpi@vger.kernel.org
7320 S:      Maintained
7321 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7322 F:      drivers/gpio/gpiolib-acpi.c
7323 F:      drivers/gpio/gpiolib-acpi.h
7324
7325 GPIO AGGREGATOR
7326 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7327 L:      linux-gpio@vger.kernel.org
7328 S:      Supported
7329 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7330 F:      drivers/gpio/gpio-aggregator.c
7331
7332 GPIO IR Transmitter
7333 M:      Sean Young <sean@mess.org>
7334 L:      linux-media@vger.kernel.org
7335 S:      Maintained
7336 F:      drivers/media/rc/gpio-ir-tx.c
7337
7338 GPIO MOCKUP DRIVER
7339 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7340 L:      linux-gpio@vger.kernel.org
7341 S:      Maintained
7342 F:      drivers/gpio/gpio-mockup.c
7343 F:      tools/testing/selftests/gpio/
7344
7345 GPIO REGMAP
7346 R:      Michael Walle <michael@walle.cc>
7347 S:      Maintained
7348 F:      drivers/gpio/gpio-regmap.c
7349 F:      include/linux/gpio/regmap.h
7350
7351 GPIO SUBSYSTEM
7352 M:      Linus Walleij <linus.walleij@linaro.org>
7353 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7354 L:      linux-gpio@vger.kernel.org
7355 S:      Maintained
7356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7357 F:      Documentation/ABI/obsolete/sysfs-gpio
7358 F:      Documentation/ABI/testing/gpio-cdev
7359 F:      Documentation/admin-guide/gpio/
7360 F:      Documentation/devicetree/bindings/gpio/
7361 F:      Documentation/driver-api/gpio/
7362 F:      drivers/gpio/
7363 F:      include/asm-generic/gpio.h
7364 F:      include/linux/gpio.h
7365 F:      include/linux/gpio/
7366 F:      include/linux/of_gpio.h
7367 F:      include/uapi/linux/gpio.h
7368 F:      tools/gpio/
7369
7370 GRE DEMULTIPLEXER DRIVER
7371 M:      Dmitry Kozlov <xeb@mail.ru>
7372 L:      netdev@vger.kernel.org
7373 S:      Maintained
7374 F:      include/net/gre.h
7375 F:      net/ipv4/gre_demux.c
7376 F:      net/ipv4/gre_offload.c
7377
7378 GRETH 10/100/1G Ethernet MAC device driver
7379 M:      Andreas Larsson <andreas@gaisler.com>
7380 L:      netdev@vger.kernel.org
7381 S:      Maintained
7382 F:      drivers/net/ethernet/aeroflex/
7383
7384 GREYBUS AUDIO PROTOCOLS DRIVERS
7385 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7386 M:      Mark Greer <mgreer@animalcreek.com>
7387 S:      Maintained
7388 F:      drivers/staging/greybus/audio_apbridgea.c
7389 F:      drivers/staging/greybus/audio_apbridgea.h
7390 F:      drivers/staging/greybus/audio_codec.c
7391 F:      drivers/staging/greybus/audio_codec.h
7392 F:      drivers/staging/greybus/audio_gb.c
7393 F:      drivers/staging/greybus/audio_manager.c
7394 F:      drivers/staging/greybus/audio_manager.h
7395 F:      drivers/staging/greybus/audio_manager_module.c
7396 F:      drivers/staging/greybus/audio_manager_private.h
7397 F:      drivers/staging/greybus/audio_manager_sysfs.c
7398 F:      drivers/staging/greybus/audio_module.c
7399 F:      drivers/staging/greybus/audio_topology.c
7400
7401 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7402 M:      Viresh Kumar <vireshk@kernel.org>
7403 S:      Maintained
7404 F:      drivers/staging/greybus/authentication.c
7405 F:      drivers/staging/greybus/bootrom.c
7406 F:      drivers/staging/greybus/firmware.h
7407 F:      drivers/staging/greybus/fw-core.c
7408 F:      drivers/staging/greybus/fw-download.c
7409 F:      drivers/staging/greybus/fw-management.c
7410 F:      drivers/staging/greybus/greybus_authentication.h
7411 F:      drivers/staging/greybus/greybus_firmware.h
7412 F:      drivers/staging/greybus/hid.c
7413 F:      drivers/staging/greybus/i2c.c
7414 F:      drivers/staging/greybus/spi.c
7415 F:      drivers/staging/greybus/spilib.c
7416 F:      drivers/staging/greybus/spilib.h
7417
7418 GREYBUS LOOPBACK DRIVER
7419 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7420 S:      Maintained
7421 F:      drivers/staging/greybus/loopback.c
7422
7423 GREYBUS PLATFORM DRIVERS
7424 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7425 S:      Maintained
7426 F:      drivers/staging/greybus/arche-apb-ctrl.c
7427 F:      drivers/staging/greybus/arche-platform.c
7428 F:      drivers/staging/greybus/arche_platform.h
7429
7430 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7431 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7432 S:      Maintained
7433 F:      drivers/staging/greybus/gpio.c
7434 F:      drivers/staging/greybus/light.c
7435 F:      drivers/staging/greybus/power_supply.c
7436 F:      drivers/staging/greybus/sdio.c
7437 F:      drivers/staging/greybus/spi.c
7438 F:      drivers/staging/greybus/spilib.c
7439
7440 GREYBUS SUBSYSTEM
7441 M:      Johan Hovold <johan@kernel.org>
7442 M:      Alex Elder <elder@kernel.org>
7443 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7444 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7445 S:      Maintained
7446 F:      drivers/greybus/
7447 F:      drivers/staging/greybus/
7448 F:      include/linux/greybus.h
7449 F:      include/linux/greybus/
7450
7451 GREYBUS UART PROTOCOLS DRIVERS
7452 M:      David Lin <dtwlin@gmail.com>
7453 S:      Maintained
7454 F:      drivers/staging/greybus/log.c
7455 F:      drivers/staging/greybus/uart.c
7456
7457 GS1662 VIDEO SERIALIZER
7458 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7459 L:      linux-media@vger.kernel.org
7460 S:      Maintained
7461 T:      git git://linuxtv.org/media_tree.git
7462 F:      drivers/media/spi/gs1662.c
7463
7464 GSPCA FINEPIX SUBDRIVER
7465 M:      Frank Zago <frank@zago.net>
7466 L:      linux-media@vger.kernel.org
7467 S:      Maintained
7468 T:      git git://linuxtv.org/media_tree.git
7469 F:      drivers/media/usb/gspca/finepix.c
7470
7471 GSPCA GL860 SUBDRIVER
7472 M:      Olivier Lorin <o.lorin@laposte.net>
7473 L:      linux-media@vger.kernel.org
7474 S:      Maintained
7475 T:      git git://linuxtv.org/media_tree.git
7476 F:      drivers/media/usb/gspca/gl860/
7477
7478 GSPCA M5602 SUBDRIVER
7479 M:      Erik Andren <erik.andren@gmail.com>
7480 L:      linux-media@vger.kernel.org
7481 S:      Maintained
7482 T:      git git://linuxtv.org/media_tree.git
7483 F:      drivers/media/usb/gspca/m5602/
7484
7485 GSPCA PAC207 SONIXB SUBDRIVER
7486 M:      Hans Verkuil <hverkuil@xs4all.nl>
7487 L:      linux-media@vger.kernel.org
7488 S:      Odd Fixes
7489 T:      git git://linuxtv.org/media_tree.git
7490 F:      drivers/media/usb/gspca/pac207.c
7491
7492 GSPCA SN9C20X SUBDRIVER
7493 M:      Brian Johnson <brijohn@gmail.com>
7494 L:      linux-media@vger.kernel.org
7495 S:      Maintained
7496 T:      git git://linuxtv.org/media_tree.git
7497 F:      drivers/media/usb/gspca/sn9c20x.c
7498
7499 GSPCA T613 SUBDRIVER
7500 M:      Leandro Costantino <lcostantino@gmail.com>
7501 L:      linux-media@vger.kernel.org
7502 S:      Maintained
7503 T:      git git://linuxtv.org/media_tree.git
7504 F:      drivers/media/usb/gspca/t613.c
7505
7506 GSPCA USB WEBCAM DRIVER
7507 M:      Hans Verkuil <hverkuil@xs4all.nl>
7508 L:      linux-media@vger.kernel.org
7509 S:      Odd Fixes
7510 T:      git git://linuxtv.org/media_tree.git
7511 F:      drivers/media/usb/gspca/
7512
7513 GTP (GPRS Tunneling Protocol)
7514 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7515 M:      Harald Welte <laforge@gnumonks.org>
7516 L:      osmocom-net-gprs@lists.osmocom.org
7517 S:      Maintained
7518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7519 F:      drivers/net/gtp.c
7520
7521 GUID PARTITION TABLE (GPT)
7522 M:      Davidlohr Bueso <dave@stgolabs.net>
7523 L:      linux-efi@vger.kernel.org
7524 S:      Maintained
7525 F:      block/partitions/efi.*
7526
7527 H8/300 ARCHITECTURE
7528 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7529 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7530 S:      Maintained
7531 W:      http://uclinux-h8.sourceforge.jp
7532 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7533 F:      arch/h8300/
7534 F:      drivers/clk/h8300/
7535 F:      drivers/clocksource/h8300_*.c
7536 F:      drivers/irqchip/irq-renesas-h8*.c
7537
7538 HABANALABS PCI DRIVER
7539 M:      Oded Gabbay <oded.gabbay@gmail.com>
7540 S:      Supported
7541 T:      git https://github.com/HabanaAI/linux.git
7542 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7543 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7544 F:      drivers/misc/habanalabs/
7545 F:      include/uapi/misc/habanalabs.h
7546
7547 HACKRF MEDIA DRIVER
7548 M:      Antti Palosaari <crope@iki.fi>
7549 L:      linux-media@vger.kernel.org
7550 S:      Maintained
7551 W:      https://linuxtv.org
7552 W:      http://palosaari.fi/linux/
7553 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7554 T:      git git://linuxtv.org/anttip/media_tree.git
7555 F:      drivers/media/usb/hackrf/
7556
7557 HANTRO VPU CODEC DRIVER
7558 M:      Ezequiel Garcia <ezequiel@collabora.com>
7559 M:      Philipp Zabel <p.zabel@pengutronix.de>
7560 L:      linux-media@vger.kernel.org
7561 L:      linux-rockchip@lists.infradead.org
7562 S:      Maintained
7563 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7564 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7565 F:      drivers/staging/media/hantro/
7566
7567 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7568 M:      Frank Seidel <frank@f-seidel.de>
7569 L:      platform-driver-x86@vger.kernel.org
7570 S:      Maintained
7571 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7572 F:      drivers/platform/x86/hdaps.c
7573
7574 HARDWARE MONITORING
7575 M:      Jean Delvare <jdelvare@suse.com>
7576 M:      Guenter Roeck <linux@roeck-us.net>
7577 L:      linux-hwmon@vger.kernel.org
7578 S:      Maintained
7579 W:      http://hwmon.wiki.kernel.org/
7580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7581 F:      Documentation/devicetree/bindings/hwmon/
7582 F:      Documentation/hwmon/
7583 F:      drivers/hwmon/
7584 F:      include/linux/hwmon*.h
7585 F:      include/trace/events/hwmon*.h
7586
7587 HARDWARE RANDOM NUMBER GENERATOR CORE
7588 M:      Matt Mackall <mpm@selenic.com>
7589 M:      Herbert Xu <herbert@gondor.apana.org.au>
7590 L:      linux-crypto@vger.kernel.org
7591 S:      Odd fixes
7592 F:      Documentation/admin-guide/hw_random.rst
7593 F:      Documentation/devicetree/bindings/rng/
7594 F:      drivers/char/hw_random/
7595 F:      include/linux/hw_random.h
7596
7597 HARDWARE SPINLOCK CORE
7598 M:      Ohad Ben-Cohen <ohad@wizery.com>
7599 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7600 R:      Baolin Wang <baolin.wang7@gmail.com>
7601 L:      linux-remoteproc@vger.kernel.org
7602 S:      Maintained
7603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7604 F:      Documentation/devicetree/bindings/hwlock/
7605 F:      Documentation/locking/hwspinlock.rst
7606 F:      drivers/hwspinlock/
7607 F:      include/linux/hwspinlock.h
7608
7609 HARDWARE TRACING FACILITIES
7610 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7611 S:      Maintained
7612 F:      drivers/hwtracing/
7613
7614 HARMONY SOUND DRIVER
7615 L:      linux-parisc@vger.kernel.org
7616 S:      Maintained
7617 F:      sound/parisc/harmony.*
7618
7619 HDPVR USB VIDEO ENCODER DRIVER
7620 M:      Hans Verkuil <hverkuil@xs4all.nl>
7621 L:      linux-media@vger.kernel.org
7622 S:      Odd Fixes
7623 W:      https://linuxtv.org
7624 T:      git git://linuxtv.org/media_tree.git
7625 F:      drivers/media/usb/hdpvr/
7626
7627 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7628 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
7629 S:      Supported
7630 F:      Documentation/watchdog/hpwdt.rst
7631 F:      drivers/watchdog/hpwdt.c
7632
7633 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7634 M:      Don Brace <don.brace@microsemi.com>
7635 L:      esc.storagedev@microsemi.com
7636 L:      linux-scsi@vger.kernel.org
7637 S:      Supported
7638 F:      Documentation/scsi/hpsa.rst
7639 F:      drivers/scsi/hpsa*.[ch]
7640 F:      include/linux/cciss*.h
7641 F:      include/uapi/linux/cciss*.h
7642
7643 HFI1 DRIVER
7644 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
7645 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
7646 L:      linux-rdma@vger.kernel.org
7647 S:      Supported
7648 F:      drivers/infiniband/hw/hfi1
7649
7650 HFS FILESYSTEM
7651 L:      linux-fsdevel@vger.kernel.org
7652 S:      Orphan
7653 F:      Documentation/filesystems/hfs.rst
7654 F:      fs/hfs/
7655
7656 HFSPLUS FILESYSTEM
7657 L:      linux-fsdevel@vger.kernel.org
7658 S:      Orphan
7659 F:      Documentation/filesystems/hfsplus.rst
7660 F:      fs/hfsplus/
7661
7662 HGA FRAMEBUFFER DRIVER
7663 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7664 L:      linux-nvidia@lists.surfsouth.com
7665 S:      Maintained
7666 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7667 F:      drivers/video/fbdev/hgafb.c
7668
7669 HIBERNATION (aka Software Suspend, aka swsusp)
7670 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7671 M:      Pavel Machek <pavel@ucw.cz>
7672 L:      linux-pm@vger.kernel.org
7673 S:      Supported
7674 B:      https://bugzilla.kernel.org
7675 F:      arch/*/include/asm/suspend*.h
7676 F:      arch/x86/power/
7677 F:      drivers/base/power/
7678 F:      include/linux/freezer.h
7679 F:      include/linux/pm.h
7680 F:      include/linux/suspend.h
7681 F:      kernel/power/
7682
7683 HID CORE LAYER
7684 M:      Jiri Kosina <jikos@kernel.org>
7685 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7686 L:      linux-input@vger.kernel.org
7687 S:      Maintained
7688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7689 F:      drivers/hid/
7690 F:      include/linux/hid*
7691 F:      include/uapi/linux/hid*
7692
7693 HID SENSOR HUB DRIVERS
7694 M:      Jiri Kosina <jikos@kernel.org>
7695 M:      Jonathan Cameron <jic23@kernel.org>
7696 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7697 L:      linux-input@vger.kernel.org
7698 L:      linux-iio@vger.kernel.org
7699 S:      Maintained
7700 F:      Documentation/hid/hid-sensor*
7701 F:      drivers/hid/hid-sensor-*
7702 F:      drivers/iio/*/hid-*
7703 F:      include/linux/hid-sensor-*
7704
7705 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7706 M:      Thomas Gleixner <tglx@linutronix.de>
7707 L:      linux-kernel@vger.kernel.org
7708 S:      Maintained
7709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7710 F:      Documentation/timers/
7711 F:      include/linux/clockchips.h
7712 F:      include/linux/hrtimer.h
7713 F:      kernel/time/clockevents.c
7714 F:      kernel/time/hrtimer.c
7715 F:      kernel/time/timer_*.c
7716
7717 HIGH-SPEED SCC DRIVER FOR AX.25
7718 L:      linux-hams@vger.kernel.org
7719 S:      Orphan
7720 F:      drivers/net/hamradio/dmascc.c
7721 F:      drivers/net/hamradio/scc.c
7722
7723 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7724 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7725 S:      Supported
7726 W:      http://www.highpoint-tech.com
7727 F:      Documentation/scsi/hptiop.rst
7728 F:      drivers/scsi/hptiop.c
7729
7730 HIPPI
7731 M:      Jes Sorensen <jes@trained-monkey.org>
7732 L:      linux-hippi@sunsite.dk
7733 S:      Maintained
7734 F:      drivers/net/hippi/
7735 F:      include/linux/hippidevice.h
7736 F:      include/uapi/linux/if_hippi.h
7737 F:      net/802/hippi.c
7738
7739 HISILICON DMA DRIVER
7740 M:      Zhou Wang <wangzhou1@hisilicon.com>
7741 L:      dmaengine@vger.kernel.org
7742 S:      Maintained
7743 F:      drivers/dma/hisi_dma.c
7744
7745 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7746 M:      Zaibo Xu <xuzaibo@huawei.com>
7747 L:      linux-crypto@vger.kernel.org
7748 S:      Maintained
7749 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7750 F:      drivers/crypto/hisilicon/hpre/hpre.h
7751 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7752 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7753
7754 HISILICON LPC BUS DRIVER
7755 M:      john.garry@huawei.com
7756 S:      Maintained
7757 W:      http://www.hisilicon.com
7758 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7759 F:      drivers/bus/hisi_lpc.c
7760
7761 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7762 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7763 M:      Salil Mehta <salil.mehta@huawei.com>
7764 L:      netdev@vger.kernel.org
7765 S:      Maintained
7766 W:      http://www.hisilicon.com
7767 F:      drivers/net/ethernet/hisilicon/hns3/
7768
7769 HISILICON NETWORK SUBSYSTEM DRIVER
7770 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7771 M:      Salil Mehta <salil.mehta@huawei.com>
7772 L:      netdev@vger.kernel.org
7773 S:      Maintained
7774 W:      http://www.hisilicon.com
7775 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7776 F:      drivers/net/ethernet/hisilicon/
7777
7778 HISILICON PMU DRIVER
7779 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
7780 S:      Supported
7781 W:      http://www.hisilicon.com
7782 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7783 F:      drivers/perf/hisilicon
7784
7785 HISILICON QM AND ZIP Controller DRIVER
7786 M:      Zhou Wang <wangzhou1@hisilicon.com>
7787 L:      linux-crypto@vger.kernel.org
7788 S:      Maintained
7789 F:      Documentation/ABI/testing/debugfs-hisi-zip
7790 F:      drivers/crypto/hisilicon/qm.c
7791 F:      drivers/crypto/hisilicon/qm.h
7792 F:      drivers/crypto/hisilicon/sgl.c
7793 F:      drivers/crypto/hisilicon/zip/
7794
7795 HISILICON ROCE DRIVER
7796 M:      Lijun Ou <oulijun@huawei.com>
7797 M:      Wei Hu(Xavier) <huwei87@hisilicon.com>
7798 M:      Weihang Li <liweihang@huawei.com>
7799 L:      linux-rdma@vger.kernel.org
7800 S:      Maintained
7801 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7802 F:      drivers/infiniband/hw/hns/
7803
7804 HISILICON SAS Controller
7805 M:      John Garry <john.garry@huawei.com>
7806 S:      Supported
7807 W:      http://www.hisilicon.com
7808 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7809 F:      drivers/scsi/hisi_sas/
7810
7811 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
7812 M:      Zaibo Xu <xuzaibo@huawei.com>
7813 L:      linux-crypto@vger.kernel.org
7814 S:      Maintained
7815 F:      Documentation/ABI/testing/debugfs-hisi-sec
7816 F:      drivers/crypto/hisilicon/sec2/sec.h
7817 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
7818 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
7819 F:      drivers/crypto/hisilicon/sec2/sec_main.c
7820
7821 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
7822 M:      Zaibo Xu <xuzaibo@huawei.com>
7823 S:      Maintained
7824 F:      drivers/char/hw_random/hisi-trng-v2.c
7825
7826 HISILICON V3XX SPI NOR FLASH Controller Driver
7827 M:      John Garry <john.garry@huawei.com>
7828 S:      Maintained
7829 W:      http://www.hisilicon.com
7830 F:      drivers/spi/spi-hisi-sfc-v3xx.c
7831
7832 HMM - Heterogeneous Memory Management
7833 M:      Jérôme Glisse <jglisse@redhat.com>
7834 L:      linux-mm@kvack.org
7835 S:      Maintained
7836 F:      Documentation/vm/hmm.rst
7837 F:      include/linux/hmm*
7838 F:      lib/test_hmm*
7839 F:      mm/hmm*
7840 F:      tools/testing/selftests/vm/*hmm*
7841
7842 HOST AP DRIVER
7843 M:      Jouni Malinen <j@w1.fi>
7844 L:      linux-wireless@vger.kernel.org
7845 S:      Obsolete
7846 W:      http://w1.fi/hostap-driver.html
7847 F:      drivers/net/wireless/intersil/hostap/
7848
7849 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
7850 L:      platform-driver-x86@vger.kernel.org
7851 S:      Orphan
7852 F:      drivers/platform/x86/tc1100-wmi.c
7853
7854 HPET:   High Precision Event Timers driver
7855 M:      Clemens Ladisch <clemens@ladisch.de>
7856 S:      Maintained
7857 F:      Documentation/timers/hpet.rst
7858 F:      drivers/char/hpet.c
7859 F:      include/linux/hpet.h
7860 F:      include/uapi/linux/hpet.h
7861
7862 HPET:   x86
7863 S:      Orphan
7864 F:      arch/x86/include/asm/hpet.h
7865 F:      arch/x86/kernel/hpet.c
7866
7867 HPFS FILESYSTEM
7868 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
7869 S:      Maintained
7870 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
7871 F:      fs/hpfs/
7872
7873 HSI SUBSYSTEM
7874 M:      Sebastian Reichel <sre@kernel.org>
7875 S:      Maintained
7876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
7877 F:      Documentation/ABI/testing/sysfs-bus-hsi
7878 F:      Documentation/driver-api/hsi.rst
7879 F:      drivers/hsi/
7880 F:      include/linux/hsi/
7881 F:      include/uapi/linux/hsi/
7882
7883 HSO 3G MODEM DRIVER
7884 L:      linux-usb@vger.kernel.org
7885 S:      Orphan
7886 F:      drivers/net/usb/hso.c
7887
7888 HSR NETWORK PROTOCOL
7889 L:      netdev@vger.kernel.org
7890 S:      Orphan
7891 F:      net/hsr/
7892
7893 HT16K33 LED CONTROLLER DRIVER
7894 M:      Robin van der Gracht <robin@protonic.nl>
7895 S:      Maintained
7896 F:      Documentation/devicetree/bindings/display/ht16k33.txt
7897 F:      drivers/auxdisplay/ht16k33.c
7898
7899 HTCPEN TOUCHSCREEN DRIVER
7900 M:      Pau Oliva Fora <pof@eslack.org>
7901 L:      linux-input@vger.kernel.org
7902 S:      Maintained
7903 F:      drivers/input/touchscreen/htcpen.c
7904
7905 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
7906 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
7907 L:      linux-iio@vger.kernel.org
7908 S:      Maintained
7909 W:      http://www.st.com/
7910 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
7911 F:      drivers/iio/humidity/hts221*
7912
7913 HUAWEI ETHERNET DRIVER
7914 M:      Bin Luo <luobin9@huawei.com>
7915 L:      netdev@vger.kernel.org
7916 S:      Supported
7917 F:      Documentation/networking/hinic.rst
7918 F:      drivers/net/ethernet/huawei/hinic/
7919
7920 HUGETLB FILESYSTEM
7921 M:      Mike Kravetz <mike.kravetz@oracle.com>
7922 L:      linux-mm@kvack.org
7923 S:      Maintained
7924 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
7925 F:      Documentation/admin-guide/mm/hugetlbpage.rst
7926 F:      Documentation/vm/hugetlbfs_reserv.rst
7927 F:      fs/hugetlbfs/
7928 F:      include/linux/hugetlb.h
7929 F:      mm/hugetlb.c
7930
7931 HVA ST MEDIA DRIVER
7932 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
7933 L:      linux-media@vger.kernel.org
7934 S:      Supported
7935 W:      https://linuxtv.org
7936 T:      git git://linuxtv.org/media_tree.git
7937 F:      drivers/media/platform/sti/hva
7938
7939 HWPOISON MEMORY FAILURE HANDLING
7940 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
7941 L:      linux-mm@kvack.org
7942 S:      Maintained
7943 F:      mm/hwpoison-inject.c
7944 F:      mm/memory-failure.c
7945
7946 HYGON PROCESSOR SUPPORT
7947 M:      Pu Wen <puwen@hygon.cn>
7948 L:      linux-kernel@vger.kernel.org
7949 S:      Maintained
7950 F:      arch/x86/kernel/cpu/hygon.c
7951
7952 HYNIX HI556 SENSOR DRIVER
7953 M:      Shawn Tu <shawnx.tu@intel.com>
7954 L:      linux-media@vger.kernel.org
7955 S:      Maintained
7956 T:      git git://linuxtv.org/media_tree.git
7957 F:      drivers/media/i2c/hi556.c
7958
7959 Hyper-V CORE AND DRIVERS
7960 M:      "K. Y. Srinivasan" <kys@microsoft.com>
7961 M:      Haiyang Zhang <haiyangz@microsoft.com>
7962 M:      Stephen Hemminger <sthemmin@microsoft.com>
7963 M:      Wei Liu <wei.liu@kernel.org>
7964 L:      linux-hyperv@vger.kernel.org
7965 S:      Supported
7966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
7967 F:      Documentation/ABI/stable/sysfs-bus-vmbus
7968 F:      Documentation/ABI/testing/debugfs-hyperv
7969 F:      Documentation/networking/device_drivers/microsoft/netvsc.rst
7970 F:      arch/x86/hyperv
7971 F:      arch/x86/include/asm/hyperv-tlfs.h
7972 F:      arch/x86/include/asm/mshyperv.h
7973 F:      arch/x86/include/asm/trace/hyperv.h
7974 F:      arch/x86/kernel/cpu/mshyperv.c
7975 F:      drivers/clocksource/hyperv_timer.c
7976 F:      drivers/hid/hid-hyperv.c
7977 F:      drivers/hv/
7978 F:      drivers/input/serio/hyperv-keyboard.c
7979 F:      drivers/iommu/hyperv-iommu.c
7980 F:      drivers/net/hyperv/
7981 F:      drivers/pci/controller/pci-hyperv-intf.c
7982 F:      drivers/pci/controller/pci-hyperv.c
7983 F:      drivers/scsi/storvsc_drv.c
7984 F:      drivers/uio/uio_hv_generic.c
7985 F:      drivers/video/fbdev/hyperv_fb.c
7986 F:      include/asm-generic/hyperv-tlfs.h
7987 F:      include/asm-generic/mshyperv.h
7988 F:      include/clocksource/hyperv_timer.h
7989 F:      include/linux/hyperv.h
7990 F:      include/uapi/linux/hyperv.h
7991 F:      net/vmw_vsock/hyperv_transport.c
7992 F:      tools/hv/
7993
7994 HYPERBUS SUPPORT
7995 M:      Vignesh Raghavendra <vigneshr@ti.com>
7996 L:      linux-mtd@lists.infradead.org
7997 S:      Supported
7998 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7999 C:      irc://irc.oftc.net/mtd
8000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8001 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8002 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8003 F:      drivers/mtd/hyperbus/
8004 F:      include/linux/mtd/hyperbus.h
8005
8006 HYPERVISOR VIRTUAL CONSOLE DRIVER
8007 L:      linuxppc-dev@lists.ozlabs.org
8008 S:      Odd Fixes
8009 F:      drivers/tty/hvc/
8010
8011 I2C ACPI SUPPORT
8012 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8013 L:      linux-i2c@vger.kernel.org
8014 L:      linux-acpi@vger.kernel.org
8015 S:      Maintained
8016 F:      drivers/i2c/i2c-core-acpi.c
8017
8018 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8019 M:      Ajay Gupta <ajayg@nvidia.com>
8020 L:      linux-i2c@vger.kernel.org
8021 S:      Maintained
8022 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8023 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8024
8025 I2C MUXES
8026 M:      Peter Rosin <peda@axentia.se>
8027 L:      linux-i2c@vger.kernel.org
8028 S:      Maintained
8029 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8030 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8031 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8032 F:      Documentation/i2c/i2c-topology.rst
8033 F:      Documentation/i2c/muxes/
8034 F:      drivers/i2c/i2c-mux.c
8035 F:      drivers/i2c/muxes/
8036 F:      include/linux/i2c-mux.h
8037
8038 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8039 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8040 L:      linux-i2c@vger.kernel.org
8041 S:      Maintained
8042 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8043 F:      drivers/i2c/busses/i2c-mv64xxx.c
8044
8045 I2C OVER PARALLEL PORT
8046 M:      Jean Delvare <jdelvare@suse.com>
8047 L:      linux-i2c@vger.kernel.org
8048 S:      Maintained
8049 F:      Documentation/i2c/busses/i2c-parport.rst
8050 F:      drivers/i2c/busses/i2c-parport.c
8051
8052 I2C SUBSYSTEM
8053 M:      Wolfram Sang <wsa@kernel.org>
8054 L:      linux-i2c@vger.kernel.org
8055 S:      Maintained
8056 W:      https://i2c.wiki.kernel.org/
8057 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8059 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8060 F:      Documentation/i2c/
8061 F:      drivers/i2c/*
8062 F:      include/linux/i2c-dev.h
8063 F:      include/linux/i2c-smbus.h
8064 F:      include/linux/i2c.h
8065 F:      include/uapi/linux/i2c-*.h
8066 F:      include/uapi/linux/i2c.h
8067
8068 I2C SUBSYSTEM HOST DRIVERS
8069 L:      linux-i2c@vger.kernel.org
8070 S:      Odd Fixes
8071 W:      https://i2c.wiki.kernel.org/
8072 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8074 F:      Documentation/devicetree/bindings/i2c/
8075 F:      drivers/i2c/algos/
8076 F:      drivers/i2c/busses/
8077
8078 I2C-TAOS-EVM DRIVER
8079 M:      Jean Delvare <jdelvare@suse.com>
8080 L:      linux-i2c@vger.kernel.org
8081 S:      Maintained
8082 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8083 F:      drivers/i2c/busses/i2c-taos-evm.c
8084
8085 I2C-TINY-USB DRIVER
8086 M:      Till Harbaum <till@harbaum.org>
8087 L:      linux-i2c@vger.kernel.org
8088 S:      Maintained
8089 W:      http://www.harbaum.org/till/i2c_tiny_usb
8090 F:      drivers/i2c/busses/i2c-tiny-usb.c
8091
8092 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8093 M:      Jean Delvare <jdelvare@suse.com>
8094 L:      linux-i2c@vger.kernel.org
8095 S:      Maintained
8096 F:      Documentation/i2c/busses/i2c-ali1535.rst
8097 F:      Documentation/i2c/busses/i2c-ali1563.rst
8098 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8099 F:      Documentation/i2c/busses/i2c-amd756.rst
8100 F:      Documentation/i2c/busses/i2c-amd8111.rst
8101 F:      Documentation/i2c/busses/i2c-i801.rst
8102 F:      Documentation/i2c/busses/i2c-nforce2.rst
8103 F:      Documentation/i2c/busses/i2c-piix4.rst
8104 F:      Documentation/i2c/busses/i2c-sis5595.rst
8105 F:      Documentation/i2c/busses/i2c-sis630.rst
8106 F:      Documentation/i2c/busses/i2c-sis96x.rst
8107 F:      Documentation/i2c/busses/i2c-via.rst
8108 F:      Documentation/i2c/busses/i2c-viapro.rst
8109 F:      drivers/i2c/busses/i2c-ali1535.c
8110 F:      drivers/i2c/busses/i2c-ali1563.c
8111 F:      drivers/i2c/busses/i2c-ali15x3.c
8112 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8113 F:      drivers/i2c/busses/i2c-amd756.c
8114 F:      drivers/i2c/busses/i2c-amd8111.c
8115 F:      drivers/i2c/busses/i2c-i801.c
8116 F:      drivers/i2c/busses/i2c-isch.c
8117 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8118 F:      drivers/i2c/busses/i2c-nforce2.c
8119 F:      drivers/i2c/busses/i2c-piix4.c
8120 F:      drivers/i2c/busses/i2c-sis5595.c
8121 F:      drivers/i2c/busses/i2c-sis630.c
8122 F:      drivers/i2c/busses/i2c-sis96x.c
8123 F:      drivers/i2c/busses/i2c-via.c
8124 F:      drivers/i2c/busses/i2c-viapro.c
8125
8126 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8127 M:      Hans de Goede <hdegoede@redhat.com>
8128 L:      linux-i2c@vger.kernel.org
8129 S:      Maintained
8130 F:      drivers/i2c/busses/i2c-cht-wc.c
8131
8132 I2C/SMBUS ISMT DRIVER
8133 M:      Seth Heasley <seth.heasley@intel.com>
8134 M:      Neil Horman <nhorman@tuxdriver.com>
8135 L:      linux-i2c@vger.kernel.org
8136 F:      Documentation/i2c/busses/i2c-ismt.rst
8137 F:      drivers/i2c/busses/i2c-ismt.c
8138
8139 I2C/SMBUS STUB DRIVER
8140 M:      Jean Delvare <jdelvare@suse.com>
8141 L:      linux-i2c@vger.kernel.org
8142 S:      Maintained
8143 F:      drivers/i2c/i2c-stub.c
8144
8145 I3C DRIVER FOR CADENCE I3C MASTER IP
8146 M:      Przemysław Gaj <pgaj@cadence.com>
8147 S:      Maintained
8148 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8149 F:      drivers/i3c/master/i3c-master-cdns.c
8150
8151 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8152 M:      Vitor Soares <vitor.soares@synopsys.com>
8153 S:      Maintained
8154 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8155 F:      drivers/i3c/master/dw*
8156
8157 I3C SUBSYSTEM
8158 M:      Boris Brezillon <bbrezillon@kernel.org>
8159 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8160 S:      Maintained
8161 C:      irc://chat.freenode.net/linux-i3c
8162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8163 F:      Documentation/ABI/testing/sysfs-bus-i3c
8164 F:      Documentation/devicetree/bindings/i3c/
8165 F:      Documentation/driver-api/i3c
8166 F:      drivers/i3c/
8167 F:      include/linux/i3c/
8168
8169 IA64 (Itanium) PLATFORM
8170 M:      Tony Luck <tony.luck@intel.com>
8171 M:      Fenghua Yu <fenghua.yu@intel.com>
8172 L:      linux-ia64@vger.kernel.org
8173 S:      Maintained
8174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8175 F:      Documentation/ia64/
8176 F:      arch/ia64/
8177
8178 IBM Power 842 compression accelerator
8179 M:      Haren Myneni <haren@us.ibm.com>
8180 S:      Supported
8181 F:      crypto/842.c
8182 F:      drivers/crypto/nx/Kconfig
8183 F:      drivers/crypto/nx/Makefile
8184 F:      drivers/crypto/nx/nx-842*
8185 F:      include/linux/sw842.h
8186 F:      lib/842/
8187
8188 IBM Power in-Nest Crypto Acceleration
8189 M:      Breno Leitão <leitao@debian.org>
8190 M:      Nayna Jain <nayna@linux.ibm.com>
8191 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8192 L:      linux-crypto@vger.kernel.org
8193 S:      Supported
8194 F:      drivers/crypto/nx/Kconfig
8195 F:      drivers/crypto/nx/Makefile
8196 F:      drivers/crypto/nx/nx-aes*
8197 F:      drivers/crypto/nx/nx-sha*
8198 F:      drivers/crypto/nx/nx.*
8199 F:      drivers/crypto/nx/nx_csbcpb.h
8200 F:      drivers/crypto/nx/nx_debugfs.c
8201
8202 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8203 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8204 L:      linux-pci@vger.kernel.org
8205 L:      linuxppc-dev@lists.ozlabs.org
8206 S:      Supported
8207 F:      drivers/pci/hotplug/rpadlpar*
8208
8209 IBM Power Linux RAID adapter
8210 M:      Brian King <brking@us.ibm.com>
8211 S:      Supported
8212 F:      drivers/scsi/ipr.*
8213
8214 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8215 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8216 L:      linux-pci@vger.kernel.org
8217 L:      linuxppc-dev@lists.ozlabs.org
8218 S:      Supported
8219 F:      drivers/pci/hotplug/rpaphp*
8220
8221 IBM Power SRIOV Virtual NIC Device Driver
8222 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
8223 M:      John Allen <jallen@linux.ibm.com>
8224 L:      netdev@vger.kernel.org
8225 S:      Supported
8226 F:      drivers/net/ethernet/ibm/ibmvnic.*
8227
8228 IBM Power Virtual Accelerator Switchboard
8229 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8230 L:      linuxppc-dev@lists.ozlabs.org
8231 S:      Supported
8232 F:      arch/powerpc/include/asm/vas.h
8233 F:      arch/powerpc/platforms/powernv/copy-paste.h
8234 F:      arch/powerpc/platforms/powernv/vas*
8235
8236 IBM Power Virtual Ethernet Device Driver
8237 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
8238 L:      netdev@vger.kernel.org
8239 S:      Supported
8240 F:      drivers/net/ethernet/ibm/ibmveth.*
8241
8242 IBM Power Virtual FC Device Drivers
8243 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8244 L:      linux-scsi@vger.kernel.org
8245 S:      Supported
8246 F:      drivers/scsi/ibmvscsi/ibmvfc*
8247
8248 IBM Power Virtual Management Channel Driver
8249 M:      Steven Royer <seroyer@linux.ibm.com>
8250 S:      Supported
8251 F:      drivers/misc/ibmvmc.*
8252
8253 IBM Power Virtual SCSI Device Drivers
8254 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8255 L:      linux-scsi@vger.kernel.org
8256 S:      Supported
8257 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8258 F:      include/scsi/viosrp.h
8259
8260 IBM Power Virtual SCSI Device Target Driver
8261 M:      Michael Cyr <mikecyr@linux.ibm.com>
8262 L:      linux-scsi@vger.kernel.org
8263 L:      target-devel@vger.kernel.org
8264 S:      Supported
8265 F:      drivers/scsi/ibmvscsi_tgt/
8266
8267 IBM Power VMX Cryptographic instructions
8268 M:      Breno Leitão <leitao@debian.org>
8269 M:      Nayna Jain <nayna@linux.ibm.com>
8270 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8271 L:      linux-crypto@vger.kernel.org
8272 S:      Supported
8273 F:      drivers/crypto/vmx/Kconfig
8274 F:      drivers/crypto/vmx/Makefile
8275 F:      drivers/crypto/vmx/aes*
8276 F:      drivers/crypto/vmx/ghash*
8277 F:      drivers/crypto/vmx/ppc-xlate.pl
8278 F:      drivers/crypto/vmx/vmx.c
8279
8280 IBM ServeRAID RAID DRIVER
8281 S:      Orphan
8282 F:      drivers/scsi/ips.*
8283
8284 ICH LPC AND GPIO DRIVER
8285 M:      Peter Tyser <ptyser@xes-inc.com>
8286 S:      Maintained
8287 F:      drivers/gpio/gpio-ich.c
8288 F:      drivers/mfd/lpc_ich.c
8289
8290 ICY I2C DRIVER
8291 M:      Max Staudt <max@enpas.org>
8292 L:      linux-i2c@vger.kernel.org
8293 S:      Maintained
8294 F:      drivers/i2c/busses/i2c-icy.c
8295
8296 IDE SUBSYSTEM
8297 M:      "David S. Miller" <davem@davemloft.net>
8298 L:      linux-ide@vger.kernel.org
8299 S:      Maintained
8300 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8302 F:      Documentation/ide/
8303 F:      drivers/ide/
8304 F:      include/linux/ide.h
8305
8306 IDE/ATAPI DRIVERS
8307 M:      Borislav Petkov <bp@alien8.de>
8308 L:      linux-ide@vger.kernel.org
8309 S:      Maintained
8310 F:      Documentation/cdrom/ide-cd.rst
8311 F:      drivers/ide/ide-cd*
8312
8313 IDEAPAD LAPTOP EXTRAS DRIVER
8314 M:      Ike Panhc <ike.pan@canonical.com>
8315 L:      platform-driver-x86@vger.kernel.org
8316 S:      Maintained
8317 W:      http://launchpad.net/ideapad-laptop
8318 F:      drivers/platform/x86/ideapad-laptop.c
8319
8320 IDEAPAD LAPTOP SLIDEBAR DRIVER
8321 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8322 L:      linux-input@vger.kernel.org
8323 S:      Maintained
8324 W:      https://github.com/o2genum/ideapad-slidebar
8325 F:      drivers/input/misc/ideapad_slidebar.c
8326
8327 IDT VersaClock 5 CLOCK DRIVER
8328 M:      Marek Vasut <marek.vasut@gmail.com>
8329 S:      Maintained
8330 F:      drivers/clk/clk-versaclock5.c
8331
8332 IEEE 802.15.4 SUBSYSTEM
8333 M:      Alexander Aring <alex.aring@gmail.com>
8334 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8335 L:      linux-wpan@vger.kernel.org
8336 S:      Maintained
8337 W:      https://linux-wpan.org/
8338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8340 F:      Documentation/networking/ieee802154.rst
8341 F:      drivers/net/ieee802154/
8342 F:      include/linux/ieee802154.h
8343 F:      include/linux/nl802154.h
8344 F:      include/net/af_ieee802154.h
8345 F:      include/net/cfg802154.h
8346 F:      include/net/ieee802154_netdev.h
8347 F:      include/net/mac802154.h
8348 F:      include/net/nl802154.h
8349 F:      net/ieee802154/
8350 F:      net/mac802154/
8351
8352 IFE PROTOCOL
8353 M:      Yotam Gigi <yotam.gi@gmail.com>
8354 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8355 F:      include/net/ife.h
8356 F:      include/uapi/linux/ife.h
8357 F:      net/ife
8358
8359 IGORPLUG-USB IR RECEIVER
8360 M:      Sean Young <sean@mess.org>
8361 L:      linux-media@vger.kernel.org
8362 S:      Maintained
8363 F:      drivers/media/rc/igorplugusb.c
8364
8365 IGUANAWORKS USB IR TRANSCEIVER
8366 M:      Sean Young <sean@mess.org>
8367 L:      linux-media@vger.kernel.org
8368 S:      Maintained
8369 F:      drivers/media/rc/iguanair.c
8370
8371 IIO DIGITAL POTENTIOMETER DAC
8372 M:      Peter Rosin <peda@axentia.se>
8373 L:      linux-iio@vger.kernel.org
8374 S:      Maintained
8375 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8376 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8377 F:      drivers/iio/dac/dpot-dac.c
8378
8379 IIO ENVELOPE DETECTOR
8380 M:      Peter Rosin <peda@axentia.se>
8381 L:      linux-iio@vger.kernel.org
8382 S:      Maintained
8383 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8384 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8385 F:      drivers/iio/adc/envelope-detector.c
8386
8387 IIO MULTIPLEXER
8388 M:      Peter Rosin <peda@axentia.se>
8389 L:      linux-iio@vger.kernel.org
8390 S:      Maintained
8391 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8392 F:      drivers/iio/multiplexer/iio-mux.c
8393
8394 IIO SUBSYSTEM AND DRIVERS
8395 M:      Jonathan Cameron <jic23@kernel.org>
8396 R:      Hartmut Knaack <knaack.h@gmx.de>
8397 R:      Lars-Peter Clausen <lars@metafoo.de>
8398 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
8399 L:      linux-iio@vger.kernel.org
8400 S:      Maintained
8401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8402 F:      Documentation/ABI/testing/configfs-iio*
8403 F:      Documentation/ABI/testing/sysfs-bus-iio*
8404 F:      Documentation/devicetree/bindings/iio/
8405 F:      drivers/iio/
8406 F:      drivers/staging/iio/
8407 F:      include/linux/iio/
8408 F:      tools/iio/
8409
8410 IIO UNIT CONVERTER
8411 M:      Peter Rosin <peda@axentia.se>
8412 L:      linux-iio@vger.kernel.org
8413 S:      Maintained
8414 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8415 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8416 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8417 F:      drivers/iio/afe/iio-rescale.c
8418
8419 IKANOS/ADI EAGLE ADSL USB DRIVER
8420 M:      Matthieu Castet <castet.matthieu@free.fr>
8421 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8422 S:      Maintained
8423 F:      drivers/usb/atm/ueagle-atm.c
8424
8425 IMGTEC ASCII LCD DRIVER
8426 M:      Paul Burton <paulburton@kernel.org>
8427 S:      Maintained
8428 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8429 F:      drivers/auxdisplay/img-ascii-lcd.c
8430
8431 IMGTEC IR DECODER DRIVER
8432 S:      Orphan
8433 F:      drivers/media/rc/img-ir/
8434
8435 IMON SOUNDGRAPH USB IR RECEIVER
8436 M:      Sean Young <sean@mess.org>
8437 L:      linux-media@vger.kernel.org
8438 S:      Maintained
8439 F:      drivers/media/rc/imon.c
8440 F:      drivers/media/rc/imon_raw.c
8441
8442 IMS TWINTURBO FRAMEBUFFER DRIVER
8443 L:      linux-fbdev@vger.kernel.org
8444 S:      Orphan
8445 F:      drivers/video/fbdev/imsttfb.c
8446
8447 INA209 HARDWARE MONITOR DRIVER
8448 M:      Guenter Roeck <linux@roeck-us.net>
8449 L:      linux-hwmon@vger.kernel.org
8450 S:      Maintained
8451 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
8452 F:      Documentation/hwmon/ina209.rst
8453 F:      drivers/hwmon/ina209.c
8454
8455 INA2XX HARDWARE MONITOR DRIVER
8456 M:      Guenter Roeck <linux@roeck-us.net>
8457 L:      linux-hwmon@vger.kernel.org
8458 S:      Maintained
8459 F:      Documentation/hwmon/ina2xx.rst
8460 F:      drivers/hwmon/ina2xx.c
8461 F:      include/linux/platform_data/ina2xx.h
8462
8463 INDUSTRY PACK SUBSYSTEM (IPACK)
8464 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8465 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8466 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8467 L:      industrypack-devel@lists.sourceforge.net
8468 S:      Maintained
8469 W:      http://industrypack.sourceforge.net
8470 F:      drivers/ipack/
8471
8472 INFINEON DPS310 Driver
8473 M:      Eddie James <eajames@linux.ibm.com>
8474 L:      linux-iio@vger.kernel.org
8475 S:      Maintained
8476 F:      drivers/iio/pressure/dps310.c
8477
8478 INFINIBAND SUBSYSTEM
8479 M:      Doug Ledford <dledford@redhat.com>
8480 M:      Jason Gunthorpe <jgg@mellanox.com>
8481 L:      linux-rdma@vger.kernel.org
8482 S:      Supported
8483 W:      https://github.com/linux-rdma/rdma-core
8484 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8486 F:      Documentation/devicetree/bindings/infiniband/
8487 F:      Documentation/infiniband/
8488 F:      drivers/infiniband/
8489 F:      include/rdma/
8490 F:      include/trace/events/ib_mad.h
8491 F:      include/trace/events/ib_umad.h
8492 F:      include/uapi/linux/if_infiniband.h
8493 F:      include/uapi/rdma/
8494 F:      samples/bpf/ibumad_kern.c
8495 F:      samples/bpf/ibumad_user.c
8496
8497 INGENIC JZ4780 DMA Driver
8498 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
8499 S:      Maintained
8500 F:      drivers/dma/dma-jz4780.c
8501
8502 INGENIC JZ4780 NAND DRIVER
8503 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8504 L:      linux-mtd@lists.infradead.org
8505 S:      Maintained
8506 F:      drivers/mtd/nand/raw/ingenic/
8507
8508 INGENIC JZ47xx SoCs
8509 M:      Paul Cercueil <paul@crapouillou.net>
8510 S:      Maintained
8511 F:      arch/mips/boot/dts/ingenic/
8512 F:      arch/mips/include/asm/mach-jz4740/
8513 F:      arch/mips/jz4740/
8514 F:      drivers/clk/ingenic/
8515 F:      drivers/dma/dma-jz4780.c
8516 F:      drivers/gpu/drm/ingenic/
8517 F:      drivers/i2c/busses/i2c-jz4780.c
8518 F:      drivers/iio/adc/ingenic-adc.c
8519 F:      drivers/irqchip/irq-ingenic.c
8520 F:      drivers/memory/jz4780-nemc.c
8521 F:      drivers/mmc/host/jz4740_mmc.c
8522 F:      drivers/mtd/nand/raw/ingenic/
8523 F:      drivers/pinctrl/pinctrl-ingenic.c
8524 F:      drivers/power/supply/ingenic-battery.c
8525 F:      drivers/pwm/pwm-jz4740.c
8526 F:      drivers/remoteproc/ingenic_rproc.c
8527 F:      drivers/rtc/rtc-jz4740.c
8528 F:      drivers/tty/serial/8250/8250_ingenic.c
8529 F:      drivers/usb/musb/jz4740.c
8530 F:      drivers/watchdog/jz4740_wdt.c
8531 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8532 F:      include/linux/mfd/ingenic-tcu.h
8533 F:      sound/soc/codecs/jz47*
8534 F:      sound/soc/jz4740/
8535
8536 INOTIFY
8537 M:      Jan Kara <jack@suse.cz>
8538 R:      Amir Goldstein <amir73il@gmail.com>
8539 L:      linux-fsdevel@vger.kernel.org
8540 S:      Maintained
8541 F:      Documentation/filesystems/inotify.rst
8542 F:      fs/notify/inotify/
8543 F:      include/linux/inotify.h
8544 F:      include/uapi/linux/inotify.h
8545
8546 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8547 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8548 L:      linux-input@vger.kernel.org
8549 S:      Maintained
8550 Q:      http://patchwork.kernel.org/project/linux-input/list/
8551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8552 F:      Documentation/devicetree/bindings/input/
8553 F:      Documentation/devicetree/bindings/serio/
8554 F:      Documentation/input/
8555 F:      drivers/input/
8556 F:      include/linux/input.h
8557 F:      include/linux/input/
8558 F:      include/uapi/linux/input-event-codes.h
8559 F:      include/uapi/linux/input.h
8560
8561 INPUT MULTITOUCH (MT) PROTOCOL
8562 M:      Henrik Rydberg <rydberg@bitmath.org>
8563 L:      linux-input@vger.kernel.org
8564 S:      Odd fixes
8565 F:      Documentation/input/multi-touch-protocol.rst
8566 F:      drivers/input/input-mt.c
8567 K:      \b(ABS|SYN)_MT_
8568
8569 INSIDE SECURE CRYPTO DRIVER
8570 M:      Antoine Tenart <antoine.tenart@bootlin.com>
8571 L:      linux-crypto@vger.kernel.org
8572 S:      Maintained
8573 F:      drivers/crypto/inside-secure/
8574
8575 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8576 M:      Mimi Zohar <zohar@linux.ibm.com>
8577 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8578 L:      linux-integrity@vger.kernel.org
8579 S:      Supported
8580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8581 F:      security/integrity/ima/
8582
8583 INTEL 810/815 FRAMEBUFFER DRIVER
8584 M:      Antonino Daplas <adaplas@gmail.com>
8585 L:      linux-fbdev@vger.kernel.org
8586 S:      Maintained
8587 F:      drivers/video/fbdev/i810/
8588
8589 INTEL ASoC DRIVERS
8590 M:      Cezary Rojewski <cezary.rojewski@intel.com>
8591 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8592 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
8593 M:      Jie Yang <yang.jie@linux.intel.com>
8594 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8595 S:      Supported
8596 F:      sound/soc/intel/
8597
8598 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8599 M:      Hans de Goede <hdegoede@redhat.com>
8600 L:      platform-driver-x86@vger.kernel.org
8601 S:      Maintained
8602 F:      drivers/platform/x86/intel_atomisp2_pm.c
8603
8604 INTEL BROXTON PMC DRIVER
8605 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8606 M:      Zha Qipeng <qipeng.zha@intel.com>
8607 S:      Maintained
8608 F:      drivers/mfd/intel_pmc_bxt.c
8609 F:      include/linux/mfd/intel_pmc_bxt.h
8610
8611 INTEL C600 SERIES SAS CONTROLLER DRIVER
8612 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
8613 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8614 L:      linux-scsi@vger.kernel.org
8615 S:      Supported
8616 T:      git git://git.code.sf.net/p/intel-sas/isci
8617 F:      drivers/scsi/isci/
8618
8619 INTEL CPU family model numbers
8620 M:      Tony Luck <tony.luck@intel.com>
8621 M:      x86@kernel.org
8622 L:      linux-kernel@vger.kernel.org
8623 S:      Supported
8624 F:      arch/x86/include/asm/intel-family.h
8625
8626 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8627 M:      Jani Nikula <jani.nikula@linux.intel.com>
8628 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8629 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
8630 L:      intel-gfx@lists.freedesktop.org
8631 S:      Supported
8632 W:      https://01.org/linuxgraphics/
8633 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8634 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8635 C:      irc://chat.freenode.net/intel-gfx
8636 T:      git git://anongit.freedesktop.org/drm-intel
8637 F:      Documentation/gpu/i915.rst
8638 F:      drivers/gpu/drm/i915/
8639 F:      include/drm/i915*
8640 F:      include/uapi/drm/i915_drm.h
8641
8642 INTEL ETHERNET DRIVERS
8643 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
8644 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8645 S:      Supported
8646 W:      http://www.intel.com/support/feedback.htm
8647 W:      http://e1000.sourceforge.net/
8648 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8651 F:      Documentation/networking/device_drivers/intel/e100.rst
8652 F:      Documentation/networking/device_drivers/intel/e1000.rst
8653 F:      Documentation/networking/device_drivers/intel/e1000e.rst
8654 F:      Documentation/networking/device_drivers/intel/fm10k.rst
8655 F:      Documentation/networking/device_drivers/intel/i40e.rst
8656 F:      Documentation/networking/device_drivers/intel/iavf.rst
8657 F:      Documentation/networking/device_drivers/intel/ice.rst
8658 F:      Documentation/networking/device_drivers/intel/igb.rst
8659 F:      Documentation/networking/device_drivers/intel/igbvf.rst
8660 F:      Documentation/networking/device_drivers/intel/ixgb.rst
8661 F:      Documentation/networking/device_drivers/intel/ixgbe.rst
8662 F:      Documentation/networking/device_drivers/intel/ixgbevf.rst
8663 F:      drivers/net/ethernet/intel/
8664 F:      drivers/net/ethernet/intel/*/
8665 F:      include/linux/avf/virtchnl.h
8666
8667 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8668 M:      Maik Broemme <mbroemme@libmpq.org>
8669 L:      linux-fbdev@vger.kernel.org
8670 S:      Maintained
8671 F:      Documentation/fb/intelfb.rst
8672 F:      drivers/video/fbdev/intelfb/
8673
8674 INTEL GPIO DRIVERS
8675 M:      Andy Shevchenko <andy@kernel.org>
8676 L:      linux-gpio@vger.kernel.org
8677 S:      Maintained
8678 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8679 F:      drivers/gpio/gpio-ich.c
8680 F:      drivers/gpio/gpio-intel-mid.c
8681 F:      drivers/gpio/gpio-merrifield.c
8682 F:      drivers/gpio/gpio-ml-ioh.c
8683 F:      drivers/gpio/gpio-pch.c
8684 F:      drivers/gpio/gpio-sch.c
8685 F:      drivers/gpio/gpio-sodaville.c
8686
8687 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8688 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
8689 M:      Zhi Wang <zhi.a.wang@intel.com>
8690 L:      intel-gvt-dev@lists.freedesktop.org
8691 L:      intel-gfx@lists.freedesktop.org
8692 S:      Supported
8693 W:      https://01.org/igvt-g
8694 T:      git https://github.com/intel/gvt-linux.git
8695 F:      drivers/gpu/drm/i915/gvt/
8696
8697 INTEL HID EVENT DRIVER
8698 M:      Alex Hung <alex.hung@canonical.com>
8699 L:      platform-driver-x86@vger.kernel.org
8700 S:      Maintained
8701 F:      drivers/platform/x86/intel-hid.c
8702
8703 INTEL I/OAT DMA DRIVER
8704 M:      Dave Jiang <dave.jiang@intel.com>
8705 R:      Dan Williams <dan.j.williams@intel.com>
8706 L:      dmaengine@vger.kernel.org
8707 S:      Supported
8708 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8709 F:      drivers/dma/ioat*
8710
8711 INTEL IADX DRIVER
8712 M:      Dave Jiang <dave.jiang@intel.com>
8713 L:      dmaengine@vger.kernel.org
8714 S:      Supported
8715 F:      drivers/dma/idxd/*
8716 F:      include/uapi/linux/idxd.h
8717
8718 INTEL IDLE DRIVER
8719 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
8720 M:      Len Brown <lenb@kernel.org>
8721 L:      linux-pm@vger.kernel.org
8722 S:      Supported
8723 B:      https://bugzilla.kernel.org
8724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8725 F:      drivers/idle/intel_idle.c
8726
8727 INTEL INTEGRATED SENSOR HUB DRIVER
8728 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8729 M:      Jiri Kosina <jikos@kernel.org>
8730 L:      linux-input@vger.kernel.org
8731 S:      Maintained
8732 F:      drivers/hid/intel-ish-hid/
8733
8734 INTEL IOMMU (VT-d)
8735 M:      David Woodhouse <dwmw2@infradead.org>
8736 M:      Lu Baolu <baolu.lu@linux.intel.com>
8737 L:      iommu@lists.linux-foundation.org
8738 S:      Supported
8739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8740 F:      drivers/iommu/intel/
8741 F:      include/linux/intel-iommu.h
8742 F:      include/linux/intel-svm.h
8743
8744 INTEL IOP-ADMA DMA DRIVER
8745 R:      Dan Williams <dan.j.williams@intel.com>
8746 S:      Odd fixes
8747 F:      drivers/dma/iop-adma.c
8748
8749 INTEL IPU3 CSI-2 CIO2 DRIVER
8750 M:      Yong Zhi <yong.zhi@intel.com>
8751 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8752 M:      Bingbu Cao <bingbu.cao@intel.com>
8753 R:      Tian Shu Qiu <tian.shu.qiu@intel.com>
8754 L:      linux-media@vger.kernel.org
8755 S:      Maintained
8756 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
8757 F:      drivers/media/pci/intel/ipu3/
8758
8759 INTEL IPU3 CSI-2 IMGU DRIVER
8760 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8761 R:      Bingbu Cao <bingbu.cao@intel.com>
8762 R:      Tian Shu Qiu <tian.shu.qiu@intel.com>
8763 L:      linux-media@vger.kernel.org
8764 S:      Maintained
8765 F:      Documentation/admin-guide/media/ipu3.rst
8766 F:      Documentation/admin-guide/media/ipu3_rcb.svg
8767 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
8768 F:      drivers/staging/media/ipu3/
8769
8770 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8771 M:      Krzysztof Halasa <khalasa@piap.pl>
8772 S:      Maintained
8773 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8774 F:      drivers/net/wan/ixp4xx_hss.c
8775 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8776 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8777 F:      include/linux/soc/ixp4xx/npe.h
8778 F:      include/linux/soc/ixp4xx/qmgr.h
8779
8780 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8781 M:      Deepak Saxena <dsaxena@plexity.net>
8782 S:      Maintained
8783 F:      drivers/char/hw_random/ixp4xx-rng.c
8784
8785 INTEL MANAGEMENT ENGINE (mei)
8786 M:      Tomas Winkler <tomas.winkler@intel.com>
8787 L:      linux-kernel@vger.kernel.org
8788 S:      Supported
8789 F:      Documentation/driver-api/mei/*
8790 F:      drivers/misc/mei/*
8791 F:      drivers/watchdog/mei_wdt.c
8792 F:      include/linux/mei_cl_bus.h
8793 F:      include/uapi/linux/mei.h
8794 F:      samples/mei/*
8795
8796 INTEL MENLOW THERMAL DRIVER
8797 M:      Sujith Thomas <sujith.thomas@intel.com>
8798 L:      platform-driver-x86@vger.kernel.org
8799 S:      Supported
8800 W:      https://01.org/linux-acpi
8801 F:      drivers/platform/x86/intel_menlow.c
8802
8803 INTEL MIC DRIVERS (mic)
8804 M:      Sudeep Dutt <sudeep.dutt@intel.com>
8805 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
8806 S:      Supported
8807 W:      https://github.com/sudeepdutt/mic
8808 W:      http://software.intel.com/en-us/mic-developer
8809 F:      Documentation/misc-devices/mic/
8810 F:      drivers/dma/mic_x100_dma.c
8811 F:      drivers/dma/mic_x100_dma.h
8812 F:      drivers/misc/mic/
8813 F:      include/linux/mic_bus.h
8814 F:      include/linux/scif.h
8815 F:      include/uapi/linux/mic_common.h
8816 F:      include/uapi/linux/mic_ioctl.h
8817 F:      include/uapi/linux/scif_ioctl.h
8818
8819 INTEL P-Unit IPC DRIVER
8820 M:      Zha Qipeng <qipeng.zha@intel.com>
8821 L:      platform-driver-x86@vger.kernel.org
8822 S:      Maintained
8823 F:      arch/x86/include/asm/intel_punit_ipc.h
8824 F:      drivers/platform/x86/intel_punit_ipc.c
8825
8826 INTEL PMC CORE DRIVER
8827 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
8828 M:      Vishwanath Somayaji <vishwanath.somayaji@intel.com>
8829 L:      platform-driver-x86@vger.kernel.org
8830 S:      Maintained
8831 F:      drivers/platform/x86/intel_pmc_core*
8832
8833 INTEL PMIC GPIO DRIVERS
8834 M:      Andy Shevchenko <andy@kernel.org>
8835 S:      Maintained
8836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8837 F:      drivers/gpio/gpio-*cove.c
8838 F:      drivers/gpio/gpio-msic.c
8839
8840 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
8841 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8842 S:      Maintained
8843 F:      drivers/mfd/intel_msic.c
8844 F:      drivers/mfd/intel_soc_pmic*
8845 F:      include/linux/mfd/intel_msic.h
8846 F:      include/linux/mfd/intel_soc_pmic*
8847
8848 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8849 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
8850 L:      linux-wireless@vger.kernel.org
8851 S:      Maintained
8852 F:      Documentation/networking/device_drivers/intel/ipw2100.rst
8853 F:      Documentation/networking/device_drivers/intel/ipw2200.rst
8854 F:      drivers/net/wireless/intel/ipw2x00/
8855
8856 INTEL PSTATE DRIVER
8857 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8858 M:      Len Brown <lenb@kernel.org>
8859 L:      linux-pm@vger.kernel.org
8860 S:      Supported
8861 F:      drivers/cpufreq/intel_pstate.c
8862
8863 INTEL RDMA RNIC DRIVER
8864 M:      Faisal Latif <faisal.latif@intel.com>
8865 M:      Shiraz Saleem <shiraz.saleem@intel.com>
8866 L:      linux-rdma@vger.kernel.org
8867 S:      Supported
8868 F:      drivers/infiniband/hw/i40iw/
8869 F:      include/uapi/rdma/i40iw-abi.h
8870
8871 INTEL SCU DRIVERS
8872 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8873 S:      Maintained
8874 F:      arch/x86/include/asm/intel_scu_ipc.h
8875 F:      drivers/platform/x86/intel_scu_*
8876
8877 INTEL SPEED SELECT TECHNOLOGY
8878 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8879 L:      platform-driver-x86@vger.kernel.org
8880 S:      Maintained
8881 F:      drivers/platform/x86/intel_speed_select_if/
8882 F:      include/uapi/linux/isst_if.h
8883 F:      tools/power/x86/intel-speed-select/
8884
8885 INTEL STRATIX10 FIRMWARE DRIVERS
8886 M:      Richard Gong <richard.gong@linux.intel.com>
8887 L:      linux-kernel@vger.kernel.org
8888 S:      Maintained
8889 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
8890 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
8891 F:      drivers/firmware/stratix10-rsu.c
8892 F:      drivers/firmware/stratix10-svc.c
8893 F:      include/linux/firmware/intel/stratix10-smc.h
8894 F:      include/linux/firmware/intel/stratix10-svc-client.h
8895
8896 INTEL TELEMETRY DRIVER
8897 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
8898 M:      "David E. Box" <david.e.box@linux.intel.com>
8899 L:      platform-driver-x86@vger.kernel.org
8900 S:      Maintained
8901 F:      arch/x86/include/asm/intel_telemetry.h
8902 F:      drivers/platform/x86/intel_telemetry*
8903
8904 INTEL UNCORE FREQUENCY CONTROL
8905 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8906 L:      platform-driver-x86@vger.kernel.org
8907 S:      Maintained
8908 F:      drivers/platform/x86/intel-uncore-frequency.c
8909
8910 INTEL VIRTUAL BUTTON DRIVER
8911 M:      AceLan Kao <acelan.kao@canonical.com>
8912 L:      platform-driver-x86@vger.kernel.org
8913 S:      Maintained
8914 F:      drivers/platform/x86/intel-vbtn.c
8915
8916 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
8917 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8918 L:      linux-wireless@vger.kernel.org
8919 S:      Supported
8920 F:      drivers/net/wireless/intel/iwlegacy/
8921
8922 INTEL WIRELESS WIFI LINK (iwlwifi)
8923 M:      Johannes Berg <johannes.berg@intel.com>
8924 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
8925 M:      Luca Coelho <luciano.coelho@intel.com>
8926 M:      Intel Linux Wireless <linuxwifi@intel.com>
8927 L:      linux-wireless@vger.kernel.org
8928 S:      Supported
8929 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
8930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
8931 F:      drivers/net/wireless/intel/iwlwifi/
8932
8933 INTEL WIRELESS WIMAX CONNECTION 2400
8934 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
8935 M:      linux-wimax@intel.com
8936 L:      wimax@linuxwimax.org (subscribers-only)
8937 S:      Supported
8938 W:      http://linuxwimax.org
8939 F:      Documentation/admin-guide/wimax/i2400m.rst
8940 F:      drivers/net/wimax/i2400m/
8941 F:      include/uapi/linux/wimax/i2400m.h
8942
8943 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
8944 M:      Jithu Joseph <jithu.joseph@intel.com>
8945 R:      Maurice Ma <maurice.ma@intel.com>
8946 S:      Maintained
8947 W:      https://slimbootloader.github.io/security/firmware-update.html
8948 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
8949
8950 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
8951 M:      Mario Limonciello <mario.limonciello@dell.com>
8952 S:      Maintained
8953 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
8954
8955 INTEL(R) TRACE HUB
8956 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8957 S:      Supported
8958 F:      Documentation/trace/intel_th.rst
8959 F:      drivers/hwtracing/intel_th/
8960 F:      include/linux/intel_th.h
8961
8962 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
8963 M:      Ning Sun <ning.sun@intel.com>
8964 L:      tboot-devel@lists.sourceforge.net
8965 S:      Supported
8966 W:      http://tboot.sourceforge.net
8967 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
8968 F:      Documentation/x86/intel_txt.rst
8969 F:      arch/x86/kernel/tboot.c
8970 F:      include/linux/tboot.h
8971
8972 INTERCONNECT API
8973 M:      Georgi Djakov <georgi.djakov@linaro.org>
8974 L:      linux-pm@vger.kernel.org
8975 S:      Maintained
8976 F:      Documentation/devicetree/bindings/interconnect/
8977 F:      Documentation/driver-api/interconnect.rst
8978 F:      drivers/interconnect/
8979 F:      include/dt-bindings/interconnect/
8980 F:      include/linux/interconnect-provider.h
8981 F:      include/linux/interconnect.h
8982
8983 INVENSENSE MPU-3050 GYROSCOPE DRIVER
8984 M:      Linus Walleij <linus.walleij@linaro.org>
8985 L:      linux-iio@vger.kernel.org
8986 S:      Maintained
8987 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
8988 F:      drivers/iio/gyro/mpu3050*
8989
8990 IOC3 ETHERNET DRIVER
8991 M:      Ralf Baechle <ralf@linux-mips.org>
8992 L:      linux-mips@vger.kernel.org
8993 S:      Maintained
8994 F:      drivers/net/ethernet/sgi/ioc3-eth.c
8995
8996 IOMAP FILESYSTEM LIBRARY
8997 M:      Christoph Hellwig <hch@infradead.org>
8998 M:      Darrick J. Wong <darrick.wong@oracle.com>
8999 M:      linux-xfs@vger.kernel.org
9000 M:      linux-fsdevel@vger.kernel.org
9001 L:      linux-xfs@vger.kernel.org
9002 L:      linux-fsdevel@vger.kernel.org
9003 S:      Supported
9004 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9005 F:      fs/iomap/
9006 F:      include/linux/iomap.h
9007
9008 IOMMU DRIVERS
9009 M:      Joerg Roedel <joro@8bytes.org>
9010 L:      iommu@lists.linux-foundation.org
9011 S:      Maintained
9012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9013 F:      Documentation/devicetree/bindings/iommu/
9014 F:      drivers/iommu/
9015 F:      include/linux/iommu.h
9016 F:      include/linux/iova.h
9017 F:      include/linux/of_iommu.h
9018
9019 IO_URING
9020 M:      Jens Axboe <axboe@kernel.dk>
9021 L:      io-uring@vger.kernel.org
9022 S:      Maintained
9023 T:      git git://git.kernel.dk/linux-block
9024 T:      git git://git.kernel.dk/liburing
9025 F:      fs/io-wq.c
9026 F:      fs/io-wq.h
9027 F:      fs/io_uring.c
9028 F:      include/uapi/linux/io_uring.h
9029
9030 IPMI SUBSYSTEM
9031 M:      Corey Minyard <minyard@acm.org>
9032 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9033 S:      Supported
9034 W:      http://openipmi.sourceforge.net/
9035 F:      Documentation/driver-api/ipmi.rst
9036 F:      Documentation/devicetree/bindings/ipmi/
9037 F:      drivers/char/ipmi/
9038 F:      include/linux/ipmi*
9039 F:      include/uapi/linux/ipmi*
9040
9041 IPS SCSI RAID DRIVER
9042 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9043 L:      linux-scsi@vger.kernel.org
9044 S:      Maintained
9045 W:      http://www.adaptec.com/
9046 F:      drivers/scsi/ips*
9047
9048 IPVS
9049 M:      Wensong Zhang <wensong@linux-vs.org>
9050 M:      Simon Horman <horms@verge.net.au>
9051 M:      Julian Anastasov <ja@ssi.bg>
9052 L:      netdev@vger.kernel.org
9053 L:      lvs-devel@vger.kernel.org
9054 S:      Maintained
9055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9057 F:      Documentation/networking/ipvs-sysctl.rst
9058 F:      include/net/ip_vs.h
9059 F:      include/uapi/linux/ip_vs.h
9060 F:      net/netfilter/ipvs/
9061
9062 IPWIRELESS DRIVER
9063 M:      Jiri Kosina <jikos@kernel.org>
9064 M:      David Sterba <dsterba@suse.com>
9065 S:      Odd Fixes
9066 F:      drivers/tty/ipwireless/
9067
9068 IPX NETWORK LAYER
9069 L:      netdev@vger.kernel.org
9070 S:      Obsolete
9071 F:      include/uapi/linux/ipx.h
9072
9073 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9074 M:      Marc Zyngier <maz@kernel.org>
9075 S:      Maintained
9076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9077 F:      Documentation/core-api/irq/irq-domain.rst
9078 F:      include/linux/irqdomain.h
9079 F:      kernel/irq/irqdomain.c
9080 F:      kernel/irq/msi.c
9081
9082 IRQ SUBSYSTEM
9083 M:      Thomas Gleixner <tglx@linutronix.de>
9084 L:      linux-kernel@vger.kernel.org
9085 S:      Maintained
9086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9087 F:      kernel/irq/
9088
9089 IRQCHIP DRIVERS
9090 M:      Thomas Gleixner <tglx@linutronix.de>
9091 M:      Jason Cooper <jason@lakedaemon.net>
9092 M:      Marc Zyngier <maz@kernel.org>
9093 L:      linux-kernel@vger.kernel.org
9094 S:      Maintained
9095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9096 F:      Documentation/devicetree/bindings/interrupt-controller/
9097 F:      drivers/irqchip/
9098
9099 ISA
9100 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9101 S:      Maintained
9102 F:      Documentation/driver-api/isa.rst
9103 F:      drivers/base/isa.c
9104 F:      include/linux/isa.h
9105
9106 ISA RADIO MODULE
9107 M:      Hans Verkuil <hverkuil@xs4all.nl>
9108 L:      linux-media@vger.kernel.org
9109 S:      Maintained
9110 W:      https://linuxtv.org
9111 T:      git git://linuxtv.org/media_tree.git
9112 F:      drivers/media/radio/radio-isa*
9113
9114 ISAPNP
9115 M:      Jaroslav Kysela <perex@perex.cz>
9116 S:      Maintained
9117 F:      Documentation/driver-api/isapnp.rst
9118 F:      drivers/pnp/isapnp/
9119 F:      include/linux/isapnp.h
9120
9121 ISCSI
9122 M:      Lee Duncan <lduncan@suse.com>
9123 M:      Chris Leech <cleech@redhat.com>
9124 L:      open-iscsi@googlegroups.com
9125 L:      linux-scsi@vger.kernel.org
9126 S:      Maintained
9127 W:      www.open-iscsi.com
9128 F:      drivers/scsi/*iscsi*
9129 F:      include/scsi/*iscsi*
9130
9131 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9132 M:      Peter Jones <pjones@redhat.com>
9133 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9134 S:      Maintained
9135 F:      drivers/firmware/iscsi_ibft*
9136
9137 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9138 M:      Sagi Grimberg <sagi@grimberg.me>
9139 M:      Max Gurtovoy <maxg@mellanox.com>
9140 L:      linux-rdma@vger.kernel.org
9141 S:      Supported
9142 W:      http://www.openfabrics.org
9143 W:      www.open-iscsi.org
9144 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9145 F:      drivers/infiniband/ulp/iser/
9146
9147 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9148 M:      Sagi Grimberg <sagi@grimberg.me>
9149 L:      linux-rdma@vger.kernel.org
9150 L:      target-devel@vger.kernel.org
9151 S:      Supported
9152 W:      http://www.linux-iscsi.org
9153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9154 F:      drivers/infiniband/ulp/isert
9155
9156 ISDN/CMTP OVER BLUETOOTH
9157 M:      Karsten Keil <isdn@linux-pingi.de>
9158 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9159 L:      netdev@vger.kernel.org
9160 S:      Odd Fixes
9161 W:      http://www.isdn4linux.de
9162 F:      Documentation/isdn/
9163 F:      drivers/isdn/capi/
9164 F:      include/linux/isdn/
9165 F:      include/uapi/linux/isdn/
9166 F:      net/bluetooth/cmtp/
9167
9168 ISDN/mISDN SUBSYSTEM
9169 M:      Karsten Keil <isdn@linux-pingi.de>
9170 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9171 L:      netdev@vger.kernel.org
9172 S:      Maintained
9173 W:      http://www.isdn4linux.de
9174 F:      drivers/isdn/Kconfig
9175 F:      drivers/isdn/Makefile
9176 F:      drivers/isdn/hardware/
9177 F:      drivers/isdn/mISDN/
9178
9179 IT87 HARDWARE MONITORING DRIVER
9180 M:      Jean Delvare <jdelvare@suse.com>
9181 L:      linux-hwmon@vger.kernel.org
9182 S:      Maintained
9183 F:      Documentation/hwmon/it87.rst
9184 F:      drivers/hwmon/it87.c
9185
9186 IT913X MEDIA DRIVER
9187 M:      Antti Palosaari <crope@iki.fi>
9188 L:      linux-media@vger.kernel.org
9189 S:      Maintained
9190 W:      https://linuxtv.org
9191 W:      http://palosaari.fi/linux/
9192 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9193 T:      git git://linuxtv.org/anttip/media_tree.git
9194 F:      drivers/media/tuners/it913x*
9195
9196 IVTV VIDEO4LINUX DRIVER
9197 M:      Andy Walls <awalls@md.metrocast.net>
9198 L:      linux-media@vger.kernel.org
9199 S:      Maintained
9200 W:      https://linuxtv.org
9201 T:      git git://linuxtv.org/media_tree.git
9202 F:      Documentation/admin-guide/media/ivtv*
9203 F:      drivers/media/pci/ivtv/
9204 F:      include/uapi/linux/ivtv*
9205
9206 IX2505V MEDIA DRIVER
9207 M:      Malcolm Priestley <tvboxspy@gmail.com>
9208 L:      linux-media@vger.kernel.org
9209 S:      Maintained
9210 W:      https://linuxtv.org
9211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9212 F:      drivers/media/dvb-frontends/ix2505v*
9213
9214 JAILHOUSE HYPERVISOR INTERFACE
9215 M:      Jan Kiszka <jan.kiszka@siemens.com>
9216 L:      jailhouse-dev@googlegroups.com
9217 S:      Maintained
9218 F:      arch/x86/include/asm/jailhouse_para.h
9219 F:      arch/x86/kernel/jailhouse.c
9220
9221 JC42.4 TEMPERATURE SENSOR DRIVER
9222 M:      Guenter Roeck <linux@roeck-us.net>
9223 L:      linux-hwmon@vger.kernel.org
9224 S:      Maintained
9225 F:      Documentation/hwmon/jc42.rst
9226 F:      drivers/hwmon/jc42.c
9227
9228 JFS FILESYSTEM
9229 M:      Dave Kleikamp <shaggy@kernel.org>
9230 L:      jfs-discussion@lists.sourceforge.net
9231 S:      Maintained
9232 W:      http://jfs.sourceforge.net/
9233 T:      git git://github.com/kleikamp/linux-shaggy.git
9234 F:      Documentation/admin-guide/jfs.rst
9235 F:      fs/jfs/
9236
9237 JME NETWORK DRIVER
9238 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9239 L:      netdev@vger.kernel.org
9240 S:      Maintained
9241 F:      drivers/net/ethernet/jme.*
9242
9243 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9244 M:      David Woodhouse <dwmw2@infradead.org>
9245 M:      Richard Weinberger <richard@nod.at>
9246 L:      linux-mtd@lists.infradead.org
9247 S:      Odd Fixes
9248 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9249 T:      git git://git.infradead.org/ubifs-2.6.git
9250 F:      fs/jffs2/
9251 F:      include/uapi/linux/jffs2.h
9252
9253 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9254 M:      "Theodore Ts'o" <tytso@mit.edu>
9255 M:      Jan Kara <jack@suse.com>
9256 L:      linux-ext4@vger.kernel.org
9257 S:      Maintained
9258 F:      fs/jbd2/
9259 F:      include/linux/jbd2.h
9260
9261 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9262 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9263 L:      linux-media@vger.kernel.org
9264 S:      Maintained
9265 F:      drivers/media/platform/rcar_jpu.c
9266
9267 JSM Neo PCI based serial card
9268 L:      linux-serial@vger.kernel.org
9269 S:      Orphan
9270 F:      drivers/tty/serial/jsm/
9271
9272 K10TEMP HARDWARE MONITORING DRIVER
9273 M:      Clemens Ladisch <clemens@ladisch.de>
9274 L:      linux-hwmon@vger.kernel.org
9275 S:      Maintained
9276 F:      Documentation/hwmon/k10temp.rst
9277 F:      drivers/hwmon/k10temp.c
9278
9279 K8TEMP HARDWARE MONITORING DRIVER
9280 M:      Rudolf Marek <r.marek@assembler.cz>
9281 L:      linux-hwmon@vger.kernel.org
9282 S:      Maintained
9283 F:      Documentation/hwmon/k8temp.rst
9284 F:      drivers/hwmon/k8temp.c
9285
9286 KASAN
9287 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
9288 R:      Alexander Potapenko <glider@google.com>
9289 R:      Dmitry Vyukov <dvyukov@google.com>
9290 L:      kasan-dev@googlegroups.com
9291 S:      Maintained
9292 F:      Documentation/dev-tools/kasan.rst
9293 F:      arch/*/include/asm/kasan.h
9294 F:      arch/*/mm/kasan_init*
9295 F:      include/linux/kasan*.h
9296 F:      lib/test_kasan.c
9297 F:      mm/kasan/
9298 F:      scripts/Makefile.kasan
9299
9300 KCONFIG
9301 M:      Masahiro Yamada <masahiroy@kernel.org>
9302 L:      linux-kbuild@vger.kernel.org
9303 S:      Maintained
9304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9305 F:      Documentation/kbuild/kconfig*
9306 F:      scripts/Kconfig.include
9307 F:      scripts/kconfig/
9308
9309 KCOV
9310 R:      Dmitry Vyukov <dvyukov@google.com>
9311 R:      Andrey Konovalov <andreyknvl@google.com>
9312 L:      kasan-dev@googlegroups.com
9313 S:      Maintained
9314 F:      Documentation/dev-tools/kcov.rst
9315 F:      include/linux/kcov.h
9316 F:      include/uapi/linux/kcov.h
9317 F:      kernel/kcov.c
9318 F:      scripts/Makefile.kcov
9319
9320 KCSAN
9321 M:      Marco Elver <elver@google.com>
9322 R:      Dmitry Vyukov <dvyukov@google.com>
9323 L:      kasan-dev@googlegroups.com
9324 S:      Maintained
9325 F:      Documentation/dev-tools/kcsan.rst
9326 F:      include/linux/kcsan*.h
9327 F:      kernel/kcsan/
9328 F:      lib/Kconfig.kcsan
9329 F:      scripts/Makefile.kcsan
9330
9331 KDUMP
9332 M:      Dave Young <dyoung@redhat.com>
9333 M:      Baoquan He <bhe@redhat.com>
9334 R:      Vivek Goyal <vgoyal@redhat.com>
9335 L:      kexec@lists.infradead.org
9336 S:      Maintained
9337 W:      http://lse.sourceforge.net/kdump/
9338 F:      Documentation/admin-guide/kdump/
9339 F:      fs/proc/vmcore.c
9340 F:      include/linux/crash_core.h
9341 F:      include/linux/crash_dump.h
9342 F:      include/uapi/linux/vmcore.h
9343 F:      kernel/crash_*.c
9344
9345 KEENE FM RADIO TRANSMITTER DRIVER
9346 M:      Hans Verkuil <hverkuil@xs4all.nl>
9347 L:      linux-media@vger.kernel.org
9348 S:      Maintained
9349 W:      https://linuxtv.org
9350 T:      git git://linuxtv.org/media_tree.git
9351 F:      drivers/media/radio/radio-keene*
9352
9353 KERNEL AUTOMOUNTER
9354 M:      Ian Kent <raven@themaw.net>
9355 L:      autofs@vger.kernel.org
9356 S:      Maintained
9357 F:      fs/autofs/
9358
9359 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9360 M:      Masahiro Yamada <masahiroy@kernel.org>
9361 M:      Michal Marek <michal.lkml@markovi.net>
9362 L:      linux-kbuild@vger.kernel.org
9363 S:      Maintained
9364 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9365 F:      Documentation/kbuild/
9366 F:      Makefile
9367 F:      scripts/*vmlinux*
9368 F:      scripts/Kbuild*
9369 F:      scripts/Makefile*
9370 F:      scripts/basic/
9371 F:      scripts/mk*
9372 F:      scripts/mod/
9373 F:      scripts/package/
9374
9375 KERNEL JANITORS
9376 L:      kernel-janitors@vger.kernel.org
9377 S:      Odd Fixes
9378 W:      http://kernelnewbies.org/KernelJanitors
9379
9380 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9381 M:      "J. Bruce Fields" <bfields@fieldses.org>
9382 M:      Chuck Lever <chuck.lever@oracle.com>
9383 L:      linux-nfs@vger.kernel.org
9384 S:      Supported
9385 W:      http://nfs.sourceforge.net/
9386 T:      git git://linux-nfs.org/~bfields/linux.git
9387 F:      fs/lockd/
9388 F:      fs/nfs_common/
9389 F:      fs/nfsd/
9390 F:      include/linux/lockd/
9391 F:      include/linux/sunrpc/
9392 F:      include/uapi/linux/nfsd/
9393 F:      include/uapi/linux/sunrpc/
9394 F:      net/sunrpc/
9395
9396 KERNEL SELFTEST FRAMEWORK
9397 M:      Shuah Khan <shuah@kernel.org>
9398 M:      Shuah Khan <skhan@linuxfoundation.org>
9399 L:      linux-kselftest@vger.kernel.org
9400 S:      Maintained
9401 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9403 F:      Documentation/dev-tools/kselftest*
9404 F:      tools/testing/selftests/
9405
9406 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9407 M:      Brendan Higgins <brendanhiggins@google.com>
9408 L:      linux-kselftest@vger.kernel.org
9409 L:      kunit-dev@googlegroups.com
9410 S:      Maintained
9411 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9412 F:      Documentation/dev-tools/kunit/
9413 F:      include/kunit/
9414 F:      lib/kunit/
9415 F:      tools/testing/kunit/
9416
9417 KERNEL USERMODE HELPER
9418 M:      Luis Chamberlain <mcgrof@kernel.org>
9419 L:      linux-kernel@vger.kernel.org
9420 S:      Maintained
9421 F:      include/linux/umh.h
9422 F:      kernel/umh.c
9423
9424 KERNEL VIRTUAL MACHINE (KVM)
9425 M:      Paolo Bonzini <pbonzini@redhat.com>
9426 L:      kvm@vger.kernel.org
9427 S:      Supported
9428 W:      http://www.linux-kvm.org
9429 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9430 F:      Documentation/virt/kvm/
9431 F:      include/asm-generic/kvm*
9432 F:      include/kvm/iodev.h
9433 F:      include/linux/kvm*
9434 F:      include/trace/events/kvm.h
9435 F:      include/uapi/asm-generic/kvm*
9436 F:      include/uapi/linux/kvm*
9437 F:      tools/kvm/
9438 F:      tools/testing/selftests/kvm/
9439 F:      virt/kvm/*
9440
9441 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9442 M:      Marc Zyngier <maz@kernel.org>
9443 R:      James Morse <james.morse@arm.com>
9444 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
9445 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
9446 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9447 L:      kvmarm@lists.cs.columbia.edu
9448 S:      Maintained
9449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9450 F:      arch/arm64/include/asm/kvm*
9451 F:      arch/arm64/include/uapi/asm/kvm*
9452 F:      arch/arm64/kvm/
9453 F:      include/kvm/arm_*
9454
9455 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9456 L:      linux-mips@vger.kernel.org
9457 L:      kvm@vger.kernel.org
9458 S:      Orphan
9459 F:      arch/mips/include/asm/kvm*
9460 F:      arch/mips/include/uapi/asm/kvm*
9461 F:      arch/mips/kvm/
9462
9463 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9464 M:      Paul Mackerras <paulus@ozlabs.org>
9465 L:      kvm-ppc@vger.kernel.org
9466 S:      Supported
9467 W:      http://www.linux-kvm.org/
9468 T:      git git://github.com/agraf/linux-2.6.git
9469 F:      arch/powerpc/include/asm/kvm*
9470 F:      arch/powerpc/include/uapi/asm/kvm*
9471 F:      arch/powerpc/kernel/kvm*
9472 F:      arch/powerpc/kvm/
9473
9474 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9475 M:      Christian Borntraeger <borntraeger@de.ibm.com>
9476 M:      Janosch Frank <frankja@linux.ibm.com>
9477 R:      David Hildenbrand <david@redhat.com>
9478 R:      Cornelia Huck <cohuck@redhat.com>
9479 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
9480 L:      kvm@vger.kernel.org
9481 S:      Supported
9482 W:      http://www.ibm.com/developerworks/linux/linux390/
9483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9484 F:      Documentation/virt/kvm/s390*
9485 F:      arch/s390/include/asm/gmap.h
9486 F:      arch/s390/include/asm/kvm*
9487 F:      arch/s390/include/uapi/asm/kvm*
9488 F:      arch/s390/kvm/
9489 F:      arch/s390/mm/gmap.c
9490 F:      tools/testing/selftests/kvm/*/s390x/
9491 F:      tools/testing/selftests/kvm/s390x/
9492
9493 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9494 M:      Paolo Bonzini <pbonzini@redhat.com>
9495 R:      Sean Christopherson <sean.j.christopherson@intel.com>
9496 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
9497 R:      Wanpeng Li <wanpengli@tencent.com>
9498 R:      Jim Mattson <jmattson@google.com>
9499 R:      Joerg Roedel <joro@8bytes.org>
9500 L:      kvm@vger.kernel.org
9501 S:      Supported
9502 W:      http://www.linux-kvm.org
9503 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9504 F:      arch/x86/include/asm/kvm*
9505 F:      arch/x86/include/asm/pvclock-abi.h
9506 F:      arch/x86/include/asm/svm.h
9507 F:      arch/x86/include/asm/vmx*.h
9508 F:      arch/x86/include/uapi/asm/kvm*
9509 F:      arch/x86/include/uapi/asm/svm.h
9510 F:      arch/x86/include/uapi/asm/vmx.h
9511 F:      arch/x86/kernel/kvm.c
9512 F:      arch/x86/kernel/kvmclock.c
9513 F:      arch/x86/kvm/
9514 F:      arch/x86/kvm/*/
9515
9516 KERNFS
9517 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9518 M:      Tejun Heo <tj@kernel.org>
9519 S:      Supported
9520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9521 F:      fs/kernfs/
9522 F:      include/linux/kernfs.h
9523
9524 KEXEC
9525 M:      Eric Biederman <ebiederm@xmission.com>
9526 L:      kexec@lists.infradead.org
9527 S:      Maintained
9528 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9529 F:      include/linux/kexec.h
9530 F:      include/uapi/linux/kexec.h
9531 F:      kernel/kexec*
9532
9533 KEYS-ENCRYPTED
9534 M:      Mimi Zohar <zohar@linux.ibm.com>
9535 L:      linux-integrity@vger.kernel.org
9536 L:      keyrings@vger.kernel.org
9537 S:      Supported
9538 F:      Documentation/security/keys/trusted-encrypted.rst
9539 F:      include/keys/encrypted-type.h
9540 F:      security/keys/encrypted-keys/
9541
9542 KEYS-TRUSTED
9543 M:      James Bottomley <jejb@linux.ibm.com>
9544 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9545 M:      Mimi Zohar <zohar@linux.ibm.com>
9546 L:      linux-integrity@vger.kernel.org
9547 L:      keyrings@vger.kernel.org
9548 S:      Supported
9549 F:      Documentation/security/keys/trusted-encrypted.rst
9550 F:      include/keys/trusted-type.h
9551 F:      include/keys/trusted_tpm.h
9552 F:      security/keys/trusted-keys/
9553
9554 KEYS/KEYRINGS
9555 M:      David Howells <dhowells@redhat.com>
9556 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9557 L:      keyrings@vger.kernel.org
9558 S:      Maintained
9559 F:      Documentation/security/keys/core.rst
9560 F:      include/keys/
9561 F:      include/linux/key-type.h
9562 F:      include/linux/key.h
9563 F:      include/linux/keyctl.h
9564 F:      include/uapi/linux/keyctl.h
9565 F:      security/keys/
9566
9567 KFIFO
9568 M:      Stefani Seibold <stefani@seibold.net>
9569 S:      Maintained
9570 F:      include/linux/kfifo.h
9571 F:      lib/kfifo.c
9572 F:      samples/kfifo/
9573
9574 KGDB / KDB /debug_core
9575 M:      Jason Wessel <jason.wessel@windriver.com>
9576 M:      Daniel Thompson <daniel.thompson@linaro.org>
9577 R:      Douglas Anderson <dianders@chromium.org>
9578 L:      kgdb-bugreport@lists.sourceforge.net
9579 S:      Maintained
9580 W:      http://kgdb.wiki.kernel.org/
9581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9582 F:      Documentation/dev-tools/kgdb.rst
9583 F:      drivers/misc/kgdbts.c
9584 F:      drivers/tty/serial/kgdboc.c
9585 F:      include/linux/kdb.h
9586 F:      include/linux/kgdb.h
9587 F:      kernel/debug/
9588
9589 KMEMLEAK
9590 M:      Catalin Marinas <catalin.marinas@arm.com>
9591 S:      Maintained
9592 F:      Documentation/dev-tools/kmemleak.rst
9593 F:      include/linux/kmemleak.h
9594 F:      mm/kmemleak-test.c
9595 F:      mm/kmemleak.c
9596
9597 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9598 M:      Luis Chamberlain <mcgrof@kernel.org>
9599 L:      linux-kernel@vger.kernel.org
9600 S:      Maintained
9601 F:      include/linux/kmod.h
9602 F:      kernel/kmod.c
9603 F:      lib/test_kmod.c
9604 F:      tools/testing/selftests/kmod/
9605
9606 KPROBES
9607 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9608 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9609 M:      "David S. Miller" <davem@davemloft.net>
9610 M:      Masami Hiramatsu <mhiramat@kernel.org>
9611 S:      Maintained
9612 F:      Documentation/kprobes.txt
9613 F:      include/asm-generic/kprobes.h
9614 F:      include/linux/kprobes.h
9615 F:      kernel/kprobes.c
9616
9617 KS0108 LCD CONTROLLER DRIVER
9618 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9619 S:      Maintained
9620 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9621 F:      drivers/auxdisplay/ks0108.c
9622 F:      include/linux/ks0108.h
9623
9624 L3MDEV
9625 M:      David Ahern <dsahern@kernel.org>
9626 L:      netdev@vger.kernel.org
9627 S:      Maintained
9628 F:      include/net/l3mdev.h
9629 F:      net/l3mdev
9630
9631 L7 BPF FRAMEWORK
9632 M:      John Fastabend <john.fastabend@gmail.com>
9633 M:      Daniel Borkmann <daniel@iogearbox.net>
9634 M:      Jakub Sitnicki <jakub@cloudflare.com>
9635 M:      Lorenz Bauer <lmb@cloudflare.com>
9636 L:      netdev@vger.kernel.org
9637 L:      bpf@vger.kernel.org
9638 S:      Maintained
9639 F:      include/linux/skmsg.h
9640 F:      net/core/skmsg.c
9641 F:      net/core/sock_map.c
9642 F:      net/ipv4/tcp_bpf.c
9643 F:      net/ipv4/udp_bpf.c
9644
9645 LANTIQ / INTEL Ethernet drivers
9646 M:      Hauke Mehrtens <hauke@hauke-m.de>
9647 L:      netdev@vger.kernel.org
9648 S:      Maintained
9649 F:      drivers/net/dsa/lantiq_gswip.c
9650 F:      drivers/net/dsa/lantiq_pce.h
9651 F:      drivers/net/ethernet/lantiq_xrx200.c
9652 F:      net/dsa/tag_gswip.c
9653
9654 LANTIQ MIPS ARCHITECTURE
9655 M:      John Crispin <john@phrozen.org>
9656 L:      linux-mips@vger.kernel.org
9657 S:      Maintained
9658 F:      arch/mips/lantiq
9659 F:      drivers/soc/lantiq
9660
9661 LAPB module
9662 L:      linux-x25@vger.kernel.org
9663 S:      Orphan
9664 F:      Documentation/networking/lapb-module.rst
9665 F:      include/*/lapb.h
9666 F:      net/lapb/
9667
9668 LASI 53c700 driver for PARISC
9669 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9670 L:      linux-scsi@vger.kernel.org
9671 S:      Maintained
9672 F:      Documentation/scsi/53c700.rst
9673 F:      drivers/scsi/53c700*
9674
9675 LEAKING_ADDRESSES
9676 M:      Tobin C. Harding <me@tobin.cc>
9677 M:      Tycho Andersen <tycho@tycho.ws>
9678 L:      kernel-hardening@lists.openwall.com
9679 S:      Maintained
9680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9681 F:      scripts/leaking_addresses.pl
9682
9683 LED SUBSYSTEM
9684 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
9685 M:      Pavel Machek <pavel@ucw.cz>
9686 R:      Dan Murphy <dmurphy@ti.com>
9687 L:      linux-leds@vger.kernel.org
9688 S:      Maintained
9689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
9690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9691 F:      Documentation/devicetree/bindings/leds/
9692 F:      drivers/leds/
9693 F:      include/linux/leds.h
9694
9695 LEGACY EEPROM DRIVER
9696 M:      Jean Delvare <jdelvare@suse.com>
9697 S:      Maintained
9698 F:      Documentation/misc-devices/eeprom.rst
9699 F:      drivers/misc/eeprom/eeprom.c
9700
9701 LEGO MINDSTORMS EV3
9702 R:      David Lechner <david@lechnology.com>
9703 S:      Maintained
9704 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9705 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9706 F:      drivers/power/supply/lego_ev3_battery.c
9707
9708 LEGO USB Tower driver
9709 M:      Juergen Stuber <starblue@users.sourceforge.net>
9710 L:      legousb-devel@lists.sourceforge.net
9711 S:      Maintained
9712 W:      http://legousb.sourceforge.net/
9713 F:      drivers/usb/misc/legousbtower.c
9714
9715 LG LAPTOP EXTRAS
9716 M:      Matan Ziv-Av <matan@svgalib.org>
9717 L:      platform-driver-x86@vger.kernel.org
9718 S:      Maintained
9719 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9720 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9721 F:      drivers/platform/x86/lg-laptop.c
9722
9723 LG2160 MEDIA DRIVER
9724 M:      Michael Krufky <mkrufky@linuxtv.org>
9725 L:      linux-media@vger.kernel.org
9726 S:      Maintained
9727 W:      https://linuxtv.org
9728 W:      http://github.com/mkrufky
9729 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9730 T:      git git://linuxtv.org/mkrufky/tuners.git
9731 F:      drivers/media/dvb-frontends/lg2160.*
9732
9733 LGDT3305 MEDIA DRIVER
9734 M:      Michael Krufky <mkrufky@linuxtv.org>
9735 L:      linux-media@vger.kernel.org
9736 S:      Maintained
9737 W:      https://linuxtv.org
9738 W:      http://github.com/mkrufky
9739 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9740 T:      git git://linuxtv.org/mkrufky/tuners.git
9741 F:      drivers/media/dvb-frontends/lgdt3305.*
9742
9743 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9744 M:      Viresh Kumar <vireshk@kernel.org>
9745 L:      linux-ide@vger.kernel.org
9746 S:      Maintained
9747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9748 F:      drivers/ata/pata_arasan_cf.c
9749 F:      include/linux/pata_arasan_cf_data.h
9750
9751 LIBATA PATA DRIVERS
9752 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9753 M:      Jens Axboe <axboe@kernel.dk>
9754 L:      linux-ide@vger.kernel.org
9755 S:      Maintained
9756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9757 F:      drivers/ata/ata_generic.c
9758 F:      drivers/ata/pata_*.c
9759
9760 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9761 M:      Linus Walleij <linus.walleij@linaro.org>
9762 L:      linux-ide@vger.kernel.org
9763 S:      Maintained
9764 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9765 F:      drivers/ata/pata_ftide010.c
9766 F:      drivers/ata/sata_gemini.c
9767 F:      drivers/ata/sata_gemini.h
9768
9769 LIBATA SATA AHCI PLATFORM devices support
9770 M:      Hans de Goede <hdegoede@redhat.com>
9771 M:      Jens Axboe <axboe@kernel.dk>
9772 L:      linux-ide@vger.kernel.org
9773 S:      Maintained
9774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9775 F:      drivers/ata/ahci_platform.c
9776 F:      drivers/ata/libahci_platform.c
9777 F:      include/linux/ahci_platform.h
9778
9779 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9780 M:      Mikael Pettersson <mikpelinux@gmail.com>
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:      drivers/ata/sata_promise.*
9785
9786 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9787 M:      Jens Axboe <axboe@kernel.dk>
9788 L:      linux-ide@vger.kernel.org
9789 S:      Maintained
9790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9791 F:      Documentation/devicetree/bindings/ata/
9792 F:      drivers/ata/
9793 F:      include/linux/ata.h
9794 F:      include/linux/libata.h
9795
9796 LIBLOCKDEP
9797 M:      Sasha Levin <alexander.levin@microsoft.com>
9798 S:      Maintained
9799 F:      tools/lib/lockdep/
9800
9801 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9802 M:      Dan Williams <dan.j.williams@intel.com>
9803 M:      Vishal Verma <vishal.l.verma@intel.com>
9804 M:      Dave Jiang <dave.jiang@intel.com>
9805 L:      linux-nvdimm@lists.01.org
9806 S:      Supported
9807 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9808 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9809 F:      drivers/nvdimm/blk.c
9810 F:      drivers/nvdimm/region_devs.c
9811
9812 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
9813 M:      Vishal Verma <vishal.l.verma@intel.com>
9814 M:      Dan Williams <dan.j.williams@intel.com>
9815 M:      Dave Jiang <dave.jiang@intel.com>
9816 L:      linux-nvdimm@lists.01.org
9817 S:      Supported
9818 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9819 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9820 F:      drivers/nvdimm/btt*
9821
9822 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
9823 M:      Dan Williams <dan.j.williams@intel.com>
9824 M:      Vishal Verma <vishal.l.verma@intel.com>
9825 M:      Dave Jiang <dave.jiang@intel.com>
9826 L:      linux-nvdimm@lists.01.org
9827 S:      Supported
9828 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9829 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9830 F:      drivers/nvdimm/pmem*
9831
9832 LIBNVDIMM: DEVICETREE BINDINGS
9833 M:      Oliver O'Halloran <oohall@gmail.com>
9834 L:      linux-nvdimm@lists.01.org
9835 S:      Supported
9836 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9837 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
9838 F:      drivers/nvdimm/of_pmem.c
9839
9840 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
9841 M:      Dan Williams <dan.j.williams@intel.com>
9842 M:      Vishal Verma <vishal.l.verma@intel.com>
9843 M:      Dave Jiang <dave.jiang@intel.com>
9844 M:      Ira Weiny <ira.weiny@intel.com>
9845 L:      linux-nvdimm@lists.01.org
9846 S:      Supported
9847 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9848 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
9850 F:      drivers/acpi/nfit/*
9851 F:      drivers/nvdimm/*
9852 F:      include/linux/libnvdimm.h
9853 F:      include/linux/nd.h
9854 F:      include/uapi/linux/ndctl.h
9855 F:      tools/testing/nvdimm/
9856
9857 LICENSES and SPDX stuff
9858 M:      Thomas Gleixner <tglx@linutronix.de>
9859 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9860 L:      linux-spdx@vger.kernel.org
9861 S:      Maintained
9862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
9863 F:      COPYING
9864 F:      Documentation/process/license-rules.rst
9865 F:      LICENSES/
9866 F:      scripts/spdxcheck-test.sh
9867 F:      scripts/spdxcheck.py
9868
9869 LIGHTNVM PLATFORM SUPPORT
9870 M:      Matias Bjorling <mb@lightnvm.io>
9871 L:      linux-block@vger.kernel.org
9872 S:      Maintained
9873 W:      http://github/OpenChannelSSD
9874 F:      drivers/lightnvm/
9875 F:      include/linux/lightnvm.h
9876 F:      include/uapi/linux/lightnvm.h
9877
9878 LINEAR RANGES HELPERS
9879 M:      Mark Brown <broonie@kernel.org>
9880 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
9881 F:      lib/linear_ranges.c
9882 F:      lib/test_linear_ranges.c
9883 F:      include/linux/linear_range.h
9884
9885 LINUX FOR POWER MACINTOSH
9886 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9887 L:      linuxppc-dev@lists.ozlabs.org
9888 S:      Odd Fixes
9889 F:      arch/powerpc/platforms/powermac/
9890 F:      drivers/macintosh/
9891
9892 LINUX FOR POWERPC (32-BIT AND 64-BIT)
9893 M:      Michael Ellerman <mpe@ellerman.id.au>
9894 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9895 R:      Paul Mackerras <paulus@samba.org>
9896 L:      linuxppc-dev@lists.ozlabs.org
9897 S:      Supported
9898 W:      https://github.com/linuxppc/wiki/wiki
9899 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
9900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
9901 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
9902 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
9903 F:      Documentation/devicetree/bindings/powerpc/
9904 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
9905 F:      Documentation/powerpc/
9906 F:      arch/powerpc/
9907 F:      drivers/*/*/*pasemi*
9908 F:      drivers/*/*pasemi*
9909 F:      drivers/char/tpm/tpm_ibmvtpm*
9910 F:      drivers/crypto/nx/
9911 F:      drivers/crypto/vmx/
9912 F:      drivers/i2c/busses/i2c-opal.c
9913 F:      drivers/net/ethernet/ibm/ibmveth.*
9914 F:      drivers/net/ethernet/ibm/ibmvnic.*
9915 F:      drivers/pci/hotplug/pnv_php.c
9916 F:      drivers/pci/hotplug/rpa*
9917 F:      drivers/rtc/rtc-opal.c
9918 F:      drivers/scsi/ibmvscsi/
9919 F:      drivers/tty/hvc/hvc_opal.c
9920 F:      drivers/watchdog/wdrtas.c
9921 F:      tools/testing/selftests/powerpc
9922 N:      /pmac
9923 N:      powermac
9924 N:      powernv
9925 N:      [^a-z0-9]ps3
9926 N:      pseries
9927
9928 LINUX FOR POWERPC EMBEDDED MPC5XXX
9929 M:      Anatolij Gustschin <agust@denx.de>
9930 L:      linuxppc-dev@lists.ozlabs.org
9931 S:      Odd Fixes
9932 F:      arch/powerpc/platforms/512x/
9933 F:      arch/powerpc/platforms/52xx/
9934
9935 LINUX FOR POWERPC EMBEDDED PPC4XX
9936 L:      linuxppc-dev@lists.ozlabs.org
9937 S:      Orphan
9938 F:      arch/powerpc/platforms/40x/
9939 F:      arch/powerpc/platforms/44x/
9940
9941 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
9942 M:      Scott Wood <oss@buserror.net>
9943 L:      linuxppc-dev@lists.ozlabs.org
9944 S:      Odd fixes
9945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
9946 F:      Documentation/devicetree/bindings/powerpc/fsl/
9947 F:      arch/powerpc/platforms/83xx/
9948 F:      arch/powerpc/platforms/85xx/
9949
9950 LINUX FOR POWERPC EMBEDDED PPC8XX
9951 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
9952 L:      linuxppc-dev@lists.ozlabs.org
9953 S:      Maintained
9954 F:      arch/powerpc/platforms/8xx/
9955
9956 LINUX KERNEL DUMP TEST MODULE (LKDTM)
9957 M:      Kees Cook <keescook@chromium.org>
9958 S:      Maintained
9959 F:      drivers/misc/lkdtm/*
9960 F:      tools/testing/selftests/lkdtm/*
9961
9962 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
9963 M:      Alan Stern <stern@rowland.harvard.edu>
9964 M:      Andrea Parri <parri.andrea@gmail.com>
9965 M:      Will Deacon <will@kernel.org>
9966 M:      Peter Zijlstra <peterz@infradead.org>
9967 M:      Boqun Feng <boqun.feng@gmail.com>
9968 M:      Nicholas Piggin <npiggin@gmail.com>
9969 M:      David Howells <dhowells@redhat.com>
9970 M:      Jade Alglave <j.alglave@ucl.ac.uk>
9971 M:      Luc Maranget <luc.maranget@inria.fr>
9972 M:      "Paul E. McKenney" <paulmck@kernel.org>
9973 R:      Akira Yokosawa <akiyks@gmail.com>
9974 R:      Daniel Lustig <dlustig@nvidia.com>
9975 L:      linux-kernel@vger.kernel.org
9976 L:      linux-arch@vger.kernel.org
9977 S:      Supported
9978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
9979 F:      Documentation/atomic_bitops.txt
9980 F:      Documentation/atomic_t.txt
9981 F:      Documentation/core-api/atomic_ops.rst
9982 F:      Documentation/core-api/refcount-vs-atomic.rst
9983 F:      Documentation/memory-barriers.txt
9984 F:      tools/memory-model/
9985
9986 LIS3LV02D ACCELEROMETER DRIVER
9987 M:      Eric Piel <eric.piel@tremplin-utc.net>
9988 S:      Maintained
9989 F:      Documentation/misc-devices/lis3lv02d.rst
9990 F:      drivers/misc/lis3lv02d/
9991 F:      drivers/platform/x86/hp_accel.c
9992
9993 LIST KUNIT TEST
9994 M:      David Gow <davidgow@google.com>
9995 L:      linux-kselftest@vger.kernel.org
9996 L:      kunit-dev@googlegroups.com
9997 S:      Maintained
9998 F:      lib/list-test.c
9999
10000 LIVE PATCHING
10001 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10002 M:      Jiri Kosina <jikos@kernel.org>
10003 M:      Miroslav Benes <mbenes@suse.cz>
10004 M:      Petr Mladek <pmladek@suse.com>
10005 R:      Joe Lawrence <joe.lawrence@redhat.com>
10006 L:      live-patching@vger.kernel.org
10007 S:      Maintained
10008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10009 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10010 F:      Documentation/livepatch/
10011 F:      arch/powerpc/include/asm/livepatch.h
10012 F:      arch/s390/include/asm/livepatch.h
10013 F:      arch/x86/include/asm/livepatch.h
10014 F:      include/linux/livepatch.h
10015 F:      kernel/livepatch/
10016 F:      lib/livepatch/
10017 F:      samples/livepatch/
10018 F:      tools/testing/selftests/livepatch/
10019
10020 LLC (802.2)
10021 L:      netdev@vger.kernel.org
10022 S:      Odd fixes
10023 F:      include/linux/llc.h
10024 F:      include/net/llc*
10025 F:      include/uapi/linux/llc.h
10026 F:      net/llc/
10027
10028 LM73 HARDWARE MONITOR DRIVER
10029 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10030 L:      linux-hwmon@vger.kernel.org
10031 S:      Maintained
10032 F:      drivers/hwmon/lm73.c
10033
10034 LM78 HARDWARE MONITOR DRIVER
10035 M:      Jean Delvare <jdelvare@suse.com>
10036 L:      linux-hwmon@vger.kernel.org
10037 S:      Maintained
10038 F:      Documentation/hwmon/lm78.rst
10039 F:      drivers/hwmon/lm78.c
10040
10041 LM83 HARDWARE MONITOR DRIVER
10042 M:      Jean Delvare <jdelvare@suse.com>
10043 L:      linux-hwmon@vger.kernel.org
10044 S:      Maintained
10045 F:      Documentation/hwmon/lm83.rst
10046 F:      drivers/hwmon/lm83.c
10047
10048 LM90 HARDWARE MONITOR DRIVER
10049 M:      Jean Delvare <jdelvare@suse.com>
10050 L:      linux-hwmon@vger.kernel.org
10051 S:      Maintained
10052 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10053 F:      Documentation/hwmon/lm90.rst
10054 F:      drivers/hwmon/lm90.c
10055 F:      include/dt-bindings/thermal/lm90.h
10056
10057 LM95234 HARDWARE MONITOR DRIVER
10058 M:      Guenter Roeck <linux@roeck-us.net>
10059 L:      linux-hwmon@vger.kernel.org
10060 S:      Maintained
10061 F:      Documentation/hwmon/lm95234.rst
10062 F:      drivers/hwmon/lm95234.c
10063
10064 LME2510 MEDIA DRIVER
10065 M:      Malcolm Priestley <tvboxspy@gmail.com>
10066 L:      linux-media@vger.kernel.org
10067 S:      Maintained
10068 W:      https://linuxtv.org
10069 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10070 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10071
10072 LOADPIN SECURITY MODULE
10073 M:      Kees Cook <keescook@chromium.org>
10074 S:      Supported
10075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10076 F:      Documentation/admin-guide/LSM/LoadPin.rst
10077 F:      security/loadpin/
10078
10079 LOCKING PRIMITIVES
10080 M:      Peter Zijlstra <peterz@infradead.org>
10081 M:      Ingo Molnar <mingo@redhat.com>
10082 M:      Will Deacon <will@kernel.org>
10083 L:      linux-kernel@vger.kernel.org
10084 S:      Maintained
10085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10086 F:      Documentation/locking/
10087 F:      arch/*/include/asm/spinlock*.h
10088 F:      include/linux/lockdep.h
10089 F:      include/linux/mutex*.h
10090 F:      include/linux/rwlock*.h
10091 F:      include/linux/rwsem*.h
10092 F:      include/linux/seqlock.h
10093 F:      include/linux/spinlock*.h
10094 F:      kernel/locking/
10095 F:      lib/locking*.[ch]
10096 X:      kernel/locking/locktorture.c
10097
10098 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10099 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
10100 L:      linux-ntfs-dev@lists.sourceforge.net
10101 S:      Maintained
10102 W:      http://www.linux-ntfs.org/content/view/19/37/
10103 F:      Documentation/admin-guide/ldm.rst
10104 F:      block/partitions/ldm.*
10105
10106 LOGITECH HID GAMING KEYBOARDS
10107 M:      Hans de Goede <hdegoede@redhat.com>
10108 L:      linux-input@vger.kernel.org
10109 S:      Maintained
10110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10111 F:      drivers/hid/hid-lg-g15.c
10112
10113 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10114 M:      Sathya Prakash <sathya.prakash@broadcom.com>
10115 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10116 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10117 L:      MPT-FusionLinux.pdl@broadcom.com
10118 L:      linux-scsi@vger.kernel.org
10119 S:      Supported
10120 W:      http://www.avagotech.com/support/
10121 F:      drivers/message/fusion/
10122 F:      drivers/scsi/mpt3sas/
10123
10124 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10125 M:      Matthew Wilcox <willy@infradead.org>
10126 L:      linux-scsi@vger.kernel.org
10127 S:      Maintained
10128 F:      drivers/scsi/sym53c8xx_2/
10129
10130 LTC1660 DAC DRIVER
10131 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10132 L:      linux-iio@vger.kernel.org
10133 S:      Maintained
10134 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10135 F:      drivers/iio/dac/ltc1660.c
10136
10137 LTC2947 HARDWARE MONITOR DRIVER
10138 M:      Nuno Sá <nuno.sa@analog.com>
10139 L:      linux-hwmon@vger.kernel.org
10140 S:      Supported
10141 W:      http://ez.analog.com/community/linux-device-drivers
10142 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10143 F:      drivers/hwmon/ltc2947-core.c
10144 F:      drivers/hwmon/ltc2947-i2c.c
10145 F:      drivers/hwmon/ltc2947-spi.c
10146 F:      drivers/hwmon/ltc2947.h
10147
10148 LTC2983 IIO TEMPERATURE DRIVER
10149 M:      Nuno Sá <nuno.sa@analog.com>
10150 L:      linux-iio@vger.kernel.org
10151 S:      Supported
10152 W:      http://ez.analog.com/community/linux-device-drivers
10153 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10154 F:      drivers/iio/temperature/ltc2983.c
10155
10156 LTC4261 HARDWARE MONITOR DRIVER
10157 M:      Guenter Roeck <linux@roeck-us.net>
10158 L:      linux-hwmon@vger.kernel.org
10159 S:      Maintained
10160 F:      Documentation/hwmon/ltc4261.rst
10161 F:      drivers/hwmon/ltc4261.c
10162
10163 LTC4306 I2C MULTIPLEXER DRIVER
10164 M:      Michael Hennerich <michael.hennerich@analog.com>
10165 L:      linux-i2c@vger.kernel.org
10166 S:      Supported
10167 W:      http://ez.analog.com/community/linux-device-drivers
10168 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10169 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10170
10171 LTP (Linux Test Project)
10172 M:      Mike Frysinger <vapier@gentoo.org>
10173 M:      Cyril Hrubis <chrubis@suse.cz>
10174 M:      Wanlong Gao <wanlong.gao@gmail.com>
10175 M:      Jan Stancek <jstancek@redhat.com>
10176 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10177 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
10178 L:      ltp@lists.linux.it (subscribers-only)
10179 S:      Maintained
10180 W:      http://linux-test-project.github.io/
10181 T:      git git://github.com/linux-test-project/ltp.git
10182
10183 M68K ARCHITECTURE
10184 M:      Geert Uytterhoeven <geert@linux-m68k.org>
10185 L:      linux-m68k@lists.linux-m68k.org
10186 S:      Maintained
10187 W:      http://www.linux-m68k.org/
10188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10189 F:      arch/m68k/
10190 F:      drivers/zorro/
10191
10192 M68K ON APPLE MACINTOSH
10193 M:      Joshua Thompson <funaho@jurai.org>
10194 L:      linux-m68k@lists.linux-m68k.org
10195 S:      Maintained
10196 W:      http://www.mac.linux-m68k.org/
10197 F:      arch/m68k/mac/
10198
10199 M68K ON HP9000/300
10200 M:      Philip Blundell <philb@gnu.org>
10201 S:      Maintained
10202 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10203 F:      arch/m68k/hp300/
10204
10205 M88DS3103 MEDIA DRIVER
10206 M:      Antti Palosaari <crope@iki.fi>
10207 L:      linux-media@vger.kernel.org
10208 S:      Maintained
10209 W:      https://linuxtv.org
10210 W:      http://palosaari.fi/linux/
10211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10212 T:      git git://linuxtv.org/anttip/media_tree.git
10213 F:      drivers/media/dvb-frontends/m88ds3103*
10214
10215 M88RS2000 MEDIA DRIVER
10216 M:      Malcolm Priestley <tvboxspy@gmail.com>
10217 L:      linux-media@vger.kernel.org
10218 S:      Maintained
10219 W:      https://linuxtv.org
10220 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10221 F:      drivers/media/dvb-frontends/m88rs2000*
10222
10223 MA901 MASTERKIT USB FM RADIO DRIVER
10224 M:      Alexey Klimov <klimov.linux@gmail.com>
10225 L:      linux-media@vger.kernel.org
10226 S:      Maintained
10227 T:      git git://linuxtv.org/media_tree.git
10228 F:      drivers/media/radio/radio-ma901.c
10229
10230 MAC80211
10231 M:      Johannes Berg <johannes@sipsolutions.net>
10232 L:      linux-wireless@vger.kernel.org
10233 S:      Maintained
10234 W:      https://wireless.wiki.kernel.org/
10235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10237 F:      Documentation/networking/mac80211-injection.rst
10238 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10239 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10240 F:      include/net/mac80211.h
10241 F:      net/mac80211/
10242
10243 MAILBOX API
10244 M:      Jassi Brar <jassisinghbrar@gmail.com>
10245 L:      linux-kernel@vger.kernel.org
10246 S:      Maintained
10247 F:      drivers/mailbox/
10248 F:      include/linux/mailbox_client.h
10249 F:      include/linux/mailbox_controller.h
10250
10251 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10252 M:      Michael Kerrisk <mtk.manpages@gmail.com>
10253 L:      linux-man@vger.kernel.org
10254 S:      Maintained
10255 W:      http://www.kernel.org/doc/man-pages
10256
10257 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10258 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
10259 L:      linux-mips@vger.kernel.org
10260 S:      Maintained
10261 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10262
10263 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10264 M:      Andrew Lunn <andrew@lunn.ch>
10265 M:      Vivien Didelot <vivien.didelot@gmail.com>
10266 L:      netdev@vger.kernel.org
10267 S:      Maintained
10268 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10269 F:      Documentation/networking/devlink/mv88e6xxx.rst
10270 F:      drivers/net/dsa/mv88e6xxx/
10271 F:      include/linux/platform_data/mv88e6xxx.h
10272
10273 MARVELL ARMADA 3700 PHY DRIVERS
10274 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10275 S:      Maintained
10276 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10277 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10278 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10279 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10280
10281 MARVELL ARMADA DRM SUPPORT
10282 M:      Russell King <linux@armlinux.org.uk>
10283 S:      Maintained
10284 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10285 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10286 F:      Documentation/devicetree/bindings/display/armada/
10287 F:      drivers/gpu/drm/armada/
10288 F:      include/uapi/drm/armada_drm.h
10289
10290 MARVELL CRYPTO DRIVER
10291 M:      Boris Brezillon <bbrezillon@kernel.org>
10292 M:      Arnaud Ebalard <arno@natisbad.org>
10293 M:      Srujana Challa <schalla@marvell.com>
10294 L:      linux-crypto@vger.kernel.org
10295 S:      Maintained
10296 F:      drivers/crypto/marvell/
10297
10298 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10299 M:      Mirko Lindner <mlindner@marvell.com>
10300 M:      Stephen Hemminger <stephen@networkplumber.org>
10301 L:      netdev@vger.kernel.org
10302 S:      Maintained
10303 F:      drivers/net/ethernet/marvell/sk*
10304
10305 MARVELL LIBERTAS WIRELESS DRIVER
10306 L:      libertas-dev@lists.infradead.org
10307 S:      Orphan
10308 F:      drivers/net/wireless/marvell/libertas/
10309
10310 MARVELL MACCHIATOBIN SUPPORT
10311 M:      Russell King <linux@armlinux.org.uk>
10312 L:      linux-arm-kernel@lists.infradead.org
10313 S:      Maintained
10314 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10315
10316 MARVELL MV643XX ETHERNET DRIVER
10317 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
10318 L:      netdev@vger.kernel.org
10319 S:      Maintained
10320 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10321 F:      include/linux/mv643xx.h
10322
10323 MARVELL MV88X3310 PHY DRIVER
10324 M:      Russell King <linux@armlinux.org.uk>
10325 L:      netdev@vger.kernel.org
10326 S:      Maintained
10327 F:      drivers/net/phy/marvell10g.c
10328
10329 MARVELL MVEBU THERMAL DRIVER
10330 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10331 S:      Maintained
10332 F:      drivers/thermal/armada_thermal.c
10333
10334 MARVELL MVNETA ETHERNET DRIVER
10335 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10336 L:      netdev@vger.kernel.org
10337 S:      Maintained
10338 F:      drivers/net/ethernet/marvell/mvneta.*
10339
10340 MARVELL MWIFIEX WIRELESS DRIVER
10341 M:      Amitkumar Karwar <amitkarwar@gmail.com>
10342 M:      Ganapathi Bhat <ganapathi.bhat@nxp.com>
10343 M:      Xinming Hu <huxinming820@gmail.com>
10344 L:      linux-wireless@vger.kernel.org
10345 S:      Maintained
10346 F:      drivers/net/wireless/marvell/mwifiex/
10347
10348 MARVELL MWL8K WIRELESS DRIVER
10349 M:      Lennert Buytenhek <buytenh@wantstofly.org>
10350 L:      linux-wireless@vger.kernel.org
10351 S:      Odd Fixes
10352 F:      drivers/net/wireless/marvell/mwl8k.c
10353
10354 MARVELL NAND CONTROLLER DRIVER
10355 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10356 L:      linux-mtd@lists.infradead.org
10357 S:      Maintained
10358 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10359 F:      drivers/mtd/nand/raw/marvell_nand.c
10360
10361 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10362 M:      Sunil Goutham <sgoutham@marvell.com>
10363 M:      Geetha sowjanya <gakula@marvell.com>
10364 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10365 M:      hariprasad <hkelam@marvell.com>
10366 L:      netdev@vger.kernel.org
10367 S:      Supported
10368 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10369
10370 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10371 M:      Sunil Goutham <sgoutham@marvell.com>
10372 M:      Linu Cherian <lcherian@marvell.com>
10373 M:      Geetha sowjanya <gakula@marvell.com>
10374 M:      Jerin Jacob <jerinj@marvell.com>
10375 L:      netdev@vger.kernel.org
10376 S:      Supported
10377 F:      Documentation/networking/device_drivers/marvell/octeontx2.rst
10378 F:      drivers/net/ethernet/marvell/octeontx2/af/
10379
10380 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10381 M:      Nicolas Pitre <nico@fluxnic.net>
10382 S:      Odd Fixes
10383 F:      drivers/mmc/host/mvsdio.*
10384
10385 MARVELL USB MDIO CONTROLLER DRIVER
10386 M:      Tobias Waldekranz <tobias@waldekranz.com>
10387 L:      netdev@vger.kernel.org
10388 S:      Maintained
10389 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10390 F:      drivers/net/phy/mdio-mvusb.c
10391
10392 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10393 M:      Hu Ziji <huziji@marvell.com>
10394 L:      linux-mmc@vger.kernel.org
10395 S:      Supported
10396 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10397 F:      drivers/mmc/host/sdhci-xenon*
10398
10399 MATROX FRAMEBUFFER DRIVER
10400 L:      linux-fbdev@vger.kernel.org
10401 S:      Orphan
10402 F:      drivers/video/fbdev/matrox/matroxfb_*
10403 F:      include/uapi/linux/matroxfb.h
10404
10405 MAX16065 HARDWARE MONITOR DRIVER
10406 M:      Guenter Roeck <linux@roeck-us.net>
10407 L:      linux-hwmon@vger.kernel.org
10408 S:      Maintained
10409 F:      Documentation/hwmon/max16065.rst
10410 F:      drivers/hwmon/max16065.c
10411
10412 MAX2175 SDR TUNER DRIVER
10413 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10414 L:      linux-media@vger.kernel.org
10415 S:      Maintained
10416 T:      git git://linuxtv.org/media_tree.git
10417 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10418 F:      Documentation/userspace-api/media/drivers/max2175.rst
10419 F:      drivers/media/i2c/max2175*
10420 F:      include/uapi/linux/max2175.h
10421
10422 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10423 L:      linux-hwmon@vger.kernel.org
10424 S:      Orphan
10425 F:      Documentation/hwmon/max6650.rst
10426 F:      drivers/hwmon/max6650.c
10427
10428 MAX6697 HARDWARE MONITOR DRIVER
10429 M:      Guenter Roeck <linux@roeck-us.net>
10430 L:      linux-hwmon@vger.kernel.org
10431 S:      Maintained
10432 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10433 F:      Documentation/hwmon/max6697.rst
10434 F:      drivers/hwmon/max6697.c
10435 F:      include/linux/platform_data/max6697.h
10436
10437 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10438 M:      Peter Rosin <peda@axentia.se>
10439 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10440 S:      Maintained
10441 F:      Documentation/devicetree/bindings/sound/max9860.txt
10442 F:      sound/soc/codecs/max9860.*
10443
10444 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10445 M:      Andreas Klinger <ak@it-klinger.de>
10446 L:      linux-iio@vger.kernel.org
10447 S:      Maintained
10448 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10449 F:      drivers/iio/proximity/mb1232.c
10450
10451 MAXIM MAX77650 PMIC MFD DRIVER
10452 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
10453 L:      linux-kernel@vger.kernel.org
10454 S:      Maintained
10455 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10456 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10457 F:      drivers/gpio/gpio-max77650.c
10458 F:      drivers/input/misc/max77650-onkey.c
10459 F:      drivers/leds/leds-max77650.c
10460 F:      drivers/mfd/max77650.c
10461 F:      drivers/power/supply/max77650-charger.c
10462 F:      drivers/regulator/max77650-regulator.c
10463 F:      include/linux/mfd/max77650.h
10464
10465 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10466 M:      Javier Martinez Canillas <javier@dowhile0.org>
10467 L:      linux-kernel@vger.kernel.org
10468 S:      Supported
10469 F:      Documentation/devicetree/bindings/*/*max77802.txt
10470 F:      drivers/regulator/max77802-regulator.c
10471 F:      include/dt-bindings/*/*max77802.h
10472
10473 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10474 M:      Krzysztof Kozlowski <krzk@kernel.org>
10475 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10476 L:      linux-pm@vger.kernel.org
10477 S:      Supported
10478 F:      drivers/power/supply/max14577_charger.c
10479 F:      drivers/power/supply/max77693_charger.c
10480
10481 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10482 M:      Chanwoo Choi <cw00.choi@samsung.com>
10483 M:      Krzysztof Kozlowski <krzk@kernel.org>
10484 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10485 L:      linux-kernel@vger.kernel.org
10486 S:      Supported
10487 F:      Documentation/devicetree/bindings/*/max77686.txt
10488 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10489 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10490 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10491 F:      drivers/*/max14577*.c
10492 F:      drivers/*/max77686*.c
10493 F:      drivers/*/max77693*.c
10494 F:      drivers/clk/clk-max77686.c
10495 F:      drivers/extcon/extcon-max14577.c
10496 F:      drivers/extcon/extcon-max77693.c
10497 F:      drivers/rtc/rtc-max77686.c
10498 F:      include/linux/mfd/max14577*.h
10499 F:      include/linux/mfd/max77686*.h
10500 F:      include/linux/mfd/max77693*.h
10501
10502 MAXIRADIO FM RADIO RECEIVER DRIVER
10503 M:      Hans Verkuil <hverkuil@xs4all.nl>
10504 L:      linux-media@vger.kernel.org
10505 S:      Maintained
10506 W:      https://linuxtv.org
10507 T:      git git://linuxtv.org/media_tree.git
10508 F:      drivers/media/radio/radio-maxiradio*
10509
10510 MCAN MMIO DEVICE DRIVER
10511 M:      Dan Murphy <dmurphy@ti.com>
10512 M:      Sriram Dash <sriram.dash@samsung.com>
10513 L:      linux-can@vger.kernel.org
10514 S:      Maintained
10515 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10516 F:      drivers/net/can/m_can/m_can.c
10517 F:      drivers/net/can/m_can/m_can.h
10518 F:      drivers/net/can/m_can/m_can_platform.c
10519
10520 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10521 M:      Rishi Gupta <gupt21@gmail.com>
10522 L:      linux-i2c@vger.kernel.org
10523 L:      linux-input@vger.kernel.org
10524 S:      Maintained
10525 F:      drivers/hid/hid-mcp2221.c
10526
10527 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10528 M:      Peter Rosin <peda@axentia.se>
10529 L:      linux-iio@vger.kernel.org
10530 S:      Maintained
10531 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10532 F:      drivers/iio/potentiometer/mcp4018.c
10533 F:      drivers/iio/potentiometer/mcp4531.c
10534
10535 MCR20A IEEE-802.15.4 RADIO DRIVER
10536 M:      Xue Liu <liuxuenetmail@gmail.com>
10537 L:      linux-wpan@vger.kernel.org
10538 S:      Maintained
10539 W:      https://github.com/xueliu/mcr20a-linux
10540 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10541 F:      drivers/net/ieee802154/mcr20a.c
10542 F:      drivers/net/ieee802154/mcr20a.h
10543
10544 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10545 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10546 L:      linux-iio@vger.kernel.org
10547 S:      Maintained
10548 F:      drivers/iio/dac/cio-dac.c
10549
10550 MEDIA CONTROLLER FRAMEWORK
10551 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10552 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10553 L:      linux-media@vger.kernel.org
10554 S:      Supported
10555 W:      https://www.linuxtv.org
10556 T:      git git://linuxtv.org/media_tree.git
10557 F:      drivers/media/mc/
10558 F:      include/media/media-*.h
10559 F:      include/uapi/linux/media.h
10560
10561 MEDIA DRIVER FOR FREESCALE IMX PXP
10562 M:      Philipp Zabel <p.zabel@pengutronix.de>
10563 L:      linux-media@vger.kernel.org
10564 S:      Maintained
10565 T:      git git://linuxtv.org/media_tree.git
10566 F:      drivers/media/platform/imx-pxp.[ch]
10567
10568 MEDIA DRIVERS FOR ASCOT2E
10569 M:      Sergey Kozlov <serjk@netup.ru>
10570 M:      Abylay Ospan <aospan@netup.ru>
10571 L:      linux-media@vger.kernel.org
10572 S:      Supported
10573 W:      https://linuxtv.org
10574 W:      http://netup.tv/
10575 T:      git git://linuxtv.org/media_tree.git
10576 F:      drivers/media/dvb-frontends/ascot2e*
10577
10578 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10579 M:      Jasmin Jessich <jasmin@anw.at>
10580 L:      linux-media@vger.kernel.org
10581 S:      Maintained
10582 W:      https://linuxtv.org
10583 T:      git git://linuxtv.org/media_tree.git
10584 F:      drivers/media/dvb-frontends/cxd2099*
10585
10586 MEDIA DRIVERS FOR CXD2841ER
10587 M:      Sergey Kozlov <serjk@netup.ru>
10588 M:      Abylay Ospan <aospan@netup.ru>
10589 L:      linux-media@vger.kernel.org
10590 S:      Supported
10591 W:      https://linuxtv.org
10592 W:      http://netup.tv/
10593 T:      git git://linuxtv.org/media_tree.git
10594 F:      drivers/media/dvb-frontends/cxd2841er*
10595
10596 MEDIA DRIVERS FOR CXD2880
10597 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10598 L:      linux-media@vger.kernel.org
10599 S:      Supported
10600 W:      http://linuxtv.org/
10601 T:      git git://linuxtv.org/media_tree.git
10602 F:      drivers/media/dvb-frontends/cxd2880/*
10603 F:      drivers/media/spi/cxd2880*
10604
10605 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10606 L:      linux-media@vger.kernel.org
10607 S:      Orphan
10608 W:      https://linuxtv.org
10609 T:      git git://linuxtv.org/media_tree.git
10610 F:      drivers/media/pci/ddbridge/*
10611
10612 MEDIA DRIVERS FOR FREESCALE IMX
10613 M:      Steve Longerbeam <slongerbeam@gmail.com>
10614 M:      Philipp Zabel <p.zabel@pengutronix.de>
10615 L:      linux-media@vger.kernel.org
10616 S:      Maintained
10617 T:      git git://linuxtv.org/media_tree.git
10618 F:      Documentation/admin-guide/media/imx.rst
10619 F:      Documentation/devicetree/bindings/media/imx.txt
10620 F:      drivers/staging/media/imx/
10621 F:      include/linux/imx-media.h
10622 F:      include/media/imx.h
10623
10624 MEDIA DRIVERS FOR FREESCALE IMX7
10625 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10626 L:      linux-media@vger.kernel.org
10627 S:      Maintained
10628 T:      git git://linuxtv.org/media_tree.git
10629 F:      Documentation/admin-guide/media/imx7.rst
10630 F:      Documentation/devicetree/bindings/media/imx7-csi.txt
10631 F:      Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10632 F:      drivers/staging/media/imx/imx7-media-csi.c
10633 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10634
10635 MEDIA DRIVERS FOR HELENE
10636 M:      Abylay Ospan <aospan@netup.ru>
10637 L:      linux-media@vger.kernel.org
10638 S:      Supported
10639 W:      https://linuxtv.org
10640 W:      http://netup.tv/
10641 T:      git git://linuxtv.org/media_tree.git
10642 F:      drivers/media/dvb-frontends/helene*
10643
10644 MEDIA DRIVERS FOR HORUS3A
10645 M:      Sergey Kozlov <serjk@netup.ru>
10646 M:      Abylay Ospan <aospan@netup.ru>
10647 L:      linux-media@vger.kernel.org
10648 S:      Supported
10649 W:      https://linuxtv.org
10650 W:      http://netup.tv/
10651 T:      git git://linuxtv.org/media_tree.git
10652 F:      drivers/media/dvb-frontends/horus3a*
10653
10654 MEDIA DRIVERS FOR LNBH25
10655 M:      Sergey Kozlov <serjk@netup.ru>
10656 M:      Abylay Ospan <aospan@netup.ru>
10657 L:      linux-media@vger.kernel.org
10658 S:      Supported
10659 W:      https://linuxtv.org
10660 W:      http://netup.tv/
10661 T:      git git://linuxtv.org/media_tree.git
10662 F:      drivers/media/dvb-frontends/lnbh25*
10663
10664 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10665 L:      linux-media@vger.kernel.org
10666 S:      Orphan
10667 W:      https://linuxtv.org
10668 T:      git git://linuxtv.org/media_tree.git
10669 F:      drivers/media/dvb-frontends/mxl5xx*
10670
10671 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10672 M:      Sergey Kozlov <serjk@netup.ru>
10673 M:      Abylay Ospan <aospan@netup.ru>
10674 L:      linux-media@vger.kernel.org
10675 S:      Supported
10676 W:      https://linuxtv.org
10677 W:      http://netup.tv/
10678 T:      git git://linuxtv.org/media_tree.git
10679 F:      drivers/media/pci/netup_unidvb/*
10680
10681 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10682 M:      Dmitry Osipenko <digetx@gmail.com>
10683 L:      linux-media@vger.kernel.org
10684 L:      linux-tegra@vger.kernel.org
10685 S:      Maintained
10686 T:      git git://linuxtv.org/media_tree.git
10687 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10688 F:      drivers/staging/media/tegra-vde/
10689
10690 MEDIA DRIVERS FOR RENESAS - CEU
10691 M:      Jacopo Mondi <jacopo@jmondi.org>
10692 L:      linux-media@vger.kernel.org
10693 L:      linux-renesas-soc@vger.kernel.org
10694 S:      Supported
10695 T:      git git://linuxtv.org/media_tree.git
10696 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
10697 F:      drivers/media/platform/renesas-ceu.c
10698 F:      include/media/drv-intf/renesas-ceu.h
10699
10700 MEDIA DRIVERS FOR RENESAS - DRIF
10701 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10702 L:      linux-media@vger.kernel.org
10703 L:      linux-renesas-soc@vger.kernel.org
10704 S:      Supported
10705 T:      git git://linuxtv.org/media_tree.git
10706 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10707 F:      drivers/media/platform/rcar_drif.c
10708
10709 MEDIA DRIVERS FOR RENESAS - FCP
10710 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10711 L:      linux-media@vger.kernel.org
10712 L:      linux-renesas-soc@vger.kernel.org
10713 S:      Supported
10714 T:      git git://linuxtv.org/media_tree.git
10715 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
10716 F:      drivers/media/platform/rcar-fcp.c
10717 F:      include/media/rcar-fcp.h
10718
10719 MEDIA DRIVERS FOR RENESAS - FDP1
10720 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10721 L:      linux-media@vger.kernel.org
10722 L:      linux-renesas-soc@vger.kernel.org
10723 S:      Supported
10724 T:      git git://linuxtv.org/media_tree.git
10725 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
10726 F:      drivers/media/platform/rcar_fdp1.c
10727
10728 MEDIA DRIVERS FOR RENESAS - VIN
10729 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
10730 L:      linux-media@vger.kernel.org
10731 L:      linux-renesas-soc@vger.kernel.org
10732 S:      Supported
10733 T:      git git://linuxtv.org/media_tree.git
10734 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
10735 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
10736 F:      drivers/media/platform/rcar-vin/
10737
10738 MEDIA DRIVERS FOR RENESAS - VSP1
10739 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10740 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10741 L:      linux-media@vger.kernel.org
10742 L:      linux-renesas-soc@vger.kernel.org
10743 S:      Supported
10744 T:      git git://linuxtv.org/media_tree.git
10745 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
10746 F:      drivers/media/platform/vsp1/
10747
10748 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR 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/stv0910*
10754
10755 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10756 L:      linux-media@vger.kernel.org
10757 S:      Orphan
10758 W:      https://linuxtv.org
10759 T:      git git://linuxtv.org/media_tree.git
10760 F:      drivers/media/dvb-frontends/stv6111*
10761
10762 MEDIA DRIVERS FOR STM32 - DCMI
10763 M:      Hugues Fruchet <hugues.fruchet@st.com>
10764 L:      linux-media@vger.kernel.org
10765 S:      Supported
10766 T:      git git://linuxtv.org/media_tree.git
10767 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
10768 F:      drivers/media/platform/stm32/stm32-dcmi.c
10769
10770 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10771 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
10772 L:      linux-media@vger.kernel.org
10773 S:      Maintained
10774 W:      https://linuxtv.org
10775 Q:      http://patchwork.kernel.org/project/linux-media/list/
10776 T:      git git://linuxtv.org/media_tree.git
10777 F:      Documentation/admin-guide/media/
10778 F:      Documentation/devicetree/bindings/media/
10779 F:      Documentation/driver-api/media/
10780 F:      Documentation/userspace-api/media/
10781 F:      drivers/media/
10782 F:      drivers/staging/media/
10783 F:      include/linux/platform_data/media/
10784 F:      include/media/
10785 F:      include/uapi/linux/dvb/
10786 F:      include/uapi/linux/ivtv*
10787 F:      include/uapi/linux/media.h
10788 F:      include/uapi/linux/meye.h
10789 F:      include/uapi/linux/uvcvideo.h
10790 F:      include/uapi/linux/v4l2-*
10791 F:      include/uapi/linux/videodev2.h
10792
10793 MEDIATEK BLUETOOTH DRIVER
10794 M:      Sean Wang <sean.wang@mediatek.com>
10795 L:      linux-bluetooth@vger.kernel.org
10796 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10797 S:      Maintained
10798 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10799 F:      drivers/bluetooth/btmtkuart.c
10800
10801 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
10802 M:      Sean Wang <sean.wang@mediatek.com>
10803 L:      linux-pm@vger.kernel.org
10804 S:      Maintained
10805 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
10806 F:      drivers/power/reset/mt6323-poweroff.c
10807
10808 MEDIATEK CIR DRIVER
10809 M:      Sean Wang <sean.wang@mediatek.com>
10810 S:      Maintained
10811 F:      drivers/media/rc/mtk-cir.c
10812
10813 MEDIATEK DMA DRIVER
10814 M:      Sean Wang <sean.wang@mediatek.com>
10815 L:      dmaengine@vger.kernel.org
10816 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10817 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10818 S:      Maintained
10819 F:      Documentation/devicetree/bindings/dma/mtk-*
10820 F:      drivers/dma/mediatek/
10821
10822 MEDIATEK ETHERNET DRIVER
10823 M:      Felix Fietkau <nbd@nbd.name>
10824 M:      John Crispin <john@phrozen.org>
10825 M:      Sean Wang <sean.wang@mediatek.com>
10826 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
10827 L:      netdev@vger.kernel.org
10828 S:      Maintained
10829 F:      drivers/net/ethernet/mediatek/
10830
10831 MEDIATEK I2C CONTROLLER DRIVER
10832 M:      Qii Wang <qii.wang@mediatek.com>
10833 L:      linux-i2c@vger.kernel.org
10834 S:      Maintained
10835 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
10836 F:      drivers/i2c/busses/i2c-mt65xx.c
10837
10838 MEDIATEK JPEG DRIVER
10839 M:      Rick Chang <rick.chang@mediatek.com>
10840 M:      Bin Liu <bin.liu@mediatek.com>
10841 S:      Supported
10842 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
10843 F:      drivers/media/platform/mtk-jpeg/
10844
10845 MEDIATEK MDP DRIVER
10846 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
10847 M:      Houlong Wei <houlong.wei@mediatek.com>
10848 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10849 S:      Supported
10850 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
10851 F:      drivers/media/platform/mtk-mdp/
10852 F:      drivers/media/platform/mtk-vpu/
10853
10854 MEDIATEK MEDIA DRIVER
10855 M:      Tiffany Lin <tiffany.lin@mediatek.com>
10856 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10857 S:      Supported
10858 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
10859 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
10860 F:      drivers/media/platform/mtk-vcodec/
10861 F:      drivers/media/platform/mtk-vpu/
10862
10863 MEDIATEK MMC/SD/SDIO DRIVER
10864 M:      Chaotian Jing <chaotian.jing@mediatek.com>
10865 S:      Maintained
10866 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
10867 F:      drivers/mmc/host/mtk-sd.c
10868
10869 MEDIATEK MT76 WIRELESS LAN DRIVER
10870 M:      Felix Fietkau <nbd@nbd.name>
10871 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
10872 R:      Ryder Lee <ryder.lee@mediatek.com>
10873 L:      linux-wireless@vger.kernel.org
10874 S:      Maintained
10875 F:      drivers/net/wireless/mediatek/mt76/
10876
10877 MEDIATEK MT7601U WIRELESS LAN DRIVER
10878 M:      Jakub Kicinski <kubakici@wp.pl>
10879 L:      linux-wireless@vger.kernel.org
10880 S:      Maintained
10881 F:      drivers/net/wireless/mediatek/mt7601u/
10882
10883 MEDIATEK MT7621/28/88 I2C DRIVER
10884 M:      Stefan Roese <sr@denx.de>
10885 L:      linux-i2c@vger.kernel.org
10886 S:      Maintained
10887 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
10888 F:      drivers/i2c/busses/i2c-mt7621.c
10889
10890 MEDIATEK NAND CONTROLLER DRIVER
10891 L:      linux-mtd@lists.infradead.org
10892 S:      Orphan
10893 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
10894 F:      drivers/mtd/nand/raw/mtk_*
10895
10896 MEDIATEK PMIC LED DRIVER
10897 M:      Sean Wang <sean.wang@mediatek.com>
10898 S:      Maintained
10899 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
10900 F:      drivers/leds/leds-mt6323.c
10901
10902 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
10903 M:      Sean Wang <sean.wang@mediatek.com>
10904 S:      Maintained
10905 F:      drivers/char/hw_random/mtk-rng.c
10906
10907 MEDIATEK SWITCH DRIVER
10908 M:      Sean Wang <sean.wang@mediatek.com>
10909 L:      netdev@vger.kernel.org
10910 S:      Maintained
10911 F:      drivers/net/dsa/mt7530.*
10912 F:      net/dsa/tag_mtk.c
10913
10914 MEDIATEK USB3 DRD IP DRIVER
10915 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
10916 L:      linux-usb@vger.kernel.org (moderated for non-subscribers)
10917 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10918 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10919 S:      Maintained
10920 F:      drivers/usb/mtu3/
10921
10922 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
10923 M:      Peter Senna Tschudin <peter.senna@gmail.com>
10924 M:      Martin Donnelly <martin.donnelly@ge.com>
10925 M:      Martyn Welch <martyn.welch@collabora.co.uk>
10926 S:      Maintained
10927 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
10928 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
10929
10930 MEGARAID SCSI/SAS DRIVERS
10931 M:      Kashyap Desai <kashyap.desai@broadcom.com>
10932 M:      Sumit Saxena <sumit.saxena@broadcom.com>
10933 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
10934 L:      megaraidlinux.pdl@broadcom.com
10935 L:      linux-scsi@vger.kernel.org
10936 S:      Maintained
10937 W:      http://www.avagotech.com/support/
10938 F:      Documentation/scsi/megaraid.rst
10939 F:      drivers/scsi/megaraid.*
10940 F:      drivers/scsi/megaraid/
10941
10942 MELEXIS MLX90614 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/mlx90614.c
10948
10949 MELEXIS MLX90632 DRIVER
10950 M:      Crt Mori <cmo@melexis.com>
10951 L:      linux-iio@vger.kernel.org
10952 S:      Supported
10953 W:      http://www.melexis.com
10954 F:      drivers/iio/temperature/mlx90632.c
10955
10956 MELFAS MIP4 TOUCHSCREEN DRIVER
10957 M:      Sangwon Jee <jeesw@melfas.com>
10958 S:      Supported
10959 W:      http://www.melfas.com
10960 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
10961 F:      drivers/input/touchscreen/melfas_mip4.c
10962
10963 MELLANOX ETHERNET DRIVER (mlx4_en)
10964 M:      Tariq Toukan <tariqt@mellanox.com>
10965 L:      netdev@vger.kernel.org
10966 S:      Supported
10967 W:      http://www.mellanox.com
10968 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10969 F:      drivers/net/ethernet/mellanox/mlx4/en_*
10970
10971 MELLANOX ETHERNET DRIVER (mlx5e)
10972 M:      Saeed Mahameed <saeedm@mellanox.com>
10973 L:      netdev@vger.kernel.org
10974 S:      Supported
10975 W:      http://www.mellanox.com
10976 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10977 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
10978
10979 MELLANOX ETHERNET INNOVA DRIVERS
10980 R:      Boris Pismenny <borisp@mellanox.com>
10981 L:      netdev@vger.kernel.org
10982 S:      Supported
10983 W:      http://www.mellanox.com
10984 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10985 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
10986 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
10987 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
10988 F:      include/linux/mlx5/mlx5_ifc_fpga.h
10989
10990 MELLANOX ETHERNET SWITCH DRIVERS
10991 M:      Jiri Pirko <jiri@mellanox.com>
10992 M:      Ido Schimmel <idosch@mellanox.com>
10993 L:      netdev@vger.kernel.org
10994 S:      Supported
10995 W:      http://www.mellanox.com
10996 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10997 F:      drivers/net/ethernet/mellanox/mlxsw/
10998 F:      tools/testing/selftests/drivers/net/mlxsw/
10999
11000 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11001 M:      mlxsw@mellanox.com
11002 L:      netdev@vger.kernel.org
11003 S:      Supported
11004 W:      http://www.mellanox.com
11005 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11006 F:      drivers/net/ethernet/mellanox/mlxfw/
11007
11008 MELLANOX HARDWARE PLATFORM SUPPORT
11009 M:      Andy Shevchenko <andy@infradead.org>
11010 M:      Darren Hart <dvhart@infradead.org>
11011 M:      Vadim Pasternak <vadimp@mellanox.com>
11012 L:      platform-driver-x86@vger.kernel.org
11013 S:      Supported
11014 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11015 F:      drivers/platform/mellanox/
11016 F:      include/linux/platform_data/mlxreg.h
11017
11018 MELLANOX MLX4 core VPI driver
11019 M:      Tariq Toukan <tariqt@mellanox.com>
11020 L:      netdev@vger.kernel.org
11021 L:      linux-rdma@vger.kernel.org
11022 S:      Supported
11023 W:      http://www.mellanox.com
11024 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11025 F:      drivers/net/ethernet/mellanox/mlx4/
11026 F:      include/linux/mlx4/
11027
11028 MELLANOX MLX4 IB driver
11029 M:      Yishai Hadas <yishaih@mellanox.com>
11030 L:      linux-rdma@vger.kernel.org
11031 S:      Supported
11032 W:      http://www.mellanox.com
11033 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11034 F:      drivers/infiniband/hw/mlx4/
11035 F:      include/linux/mlx4/
11036 F:      include/uapi/rdma/mlx4-abi.h
11037
11038 MELLANOX MLX5 core VPI driver
11039 M:      Saeed Mahameed <saeedm@mellanox.com>
11040 M:      Leon Romanovsky <leonro@mellanox.com>
11041 L:      netdev@vger.kernel.org
11042 L:      linux-rdma@vger.kernel.org
11043 S:      Supported
11044 W:      http://www.mellanox.com
11045 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11046 F:      Documentation/networking/device_drivers/mellanox/
11047 F:      drivers/net/ethernet/mellanox/mlx5/core/
11048 F:      include/linux/mlx5/
11049
11050 MELLANOX MLX5 IB driver
11051 M:      Leon Romanovsky <leonro@mellanox.com>
11052 L:      linux-rdma@vger.kernel.org
11053 S:      Supported
11054 W:      http://www.mellanox.com
11055 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11056 F:      drivers/infiniband/hw/mlx5/
11057 F:      include/linux/mlx5/
11058 F:      include/uapi/rdma/mlx5-abi.h
11059
11060 MELLANOX MLXCPLD I2C AND MUX DRIVER
11061 M:      Vadim Pasternak <vadimp@mellanox.com>
11062 M:      Michael Shych <michaelsh@mellanox.com>
11063 L:      linux-i2c@vger.kernel.org
11064 S:      Supported
11065 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11066 F:      drivers/i2c/busses/i2c-mlxcpld.c
11067 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11068
11069 MELLANOX MLXCPLD LED DRIVER
11070 M:      Vadim Pasternak <vadimp@mellanox.com>
11071 L:      linux-leds@vger.kernel.org
11072 S:      Supported
11073 F:      Documentation/leds/leds-mlxcpld.rst
11074 F:      drivers/leds/leds-mlxcpld.c
11075 F:      drivers/leds/leds-mlxreg.c
11076
11077 MELLANOX PLATFORM DRIVER
11078 M:      Vadim Pasternak <vadimp@mellanox.com>
11079 L:      platform-driver-x86@vger.kernel.org
11080 S:      Supported
11081 F:      drivers/platform/x86/mlx-platform.c
11082
11083 MEMBARRIER SUPPORT
11084 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11085 M:      "Paul E. McKenney" <paulmck@kernel.org>
11086 L:      linux-kernel@vger.kernel.org
11087 S:      Supported
11088 F:      arch/powerpc/include/asm/membarrier.h
11089 F:      include/uapi/linux/membarrier.h
11090 F:      kernel/sched/membarrier.c
11091
11092 MEMBLOCK
11093 M:      Mike Rapoport <rppt@linux.ibm.com>
11094 L:      linux-mm@kvack.org
11095 S:      Maintained
11096 F:      Documentation/core-api/boot-time-mm.rst
11097 F:      include/linux/memblock.h
11098 F:      mm/memblock.c
11099
11100 MEMORY MANAGEMENT
11101 M:      Andrew Morton <akpm@linux-foundation.org>
11102 L:      linux-mm@kvack.org
11103 S:      Maintained
11104 W:      http://www.linux-mm.org
11105 T:      quilt https://ozlabs.org/~akpm/mmotm/
11106 T:      quilt https://ozlabs.org/~akpm/mmots/
11107 T:      git git://github.com/hnaz/linux-mm.git
11108 F:      include/linux/gfp.h
11109 F:      include/linux/memory_hotplug.h
11110 F:      include/linux/mm.h
11111 F:      include/linux/mmzone.h
11112 F:      include/linux/vmalloc.h
11113 F:      mm/
11114
11115 MEMORY TECHNOLOGY DEVICES (MTD)
11116 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11117 M:      Richard Weinberger <richard@nod.at>
11118 M:      Vignesh Raghavendra <vigneshr@ti.com>
11119 L:      linux-mtd@lists.infradead.org
11120 S:      Maintained
11121 W:      http://www.linux-mtd.infradead.org/
11122 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11123 C:      irc://irc.oftc.net/mtd
11124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11126 F:      Documentation/devicetree/bindings/mtd/
11127 F:      drivers/mtd/
11128 F:      include/linux/mtd/
11129 F:      include/uapi/mtd/
11130
11131 MEN A21 WATCHDOG DRIVER
11132 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11133 L:      linux-watchdog@vger.kernel.org
11134 S:      Maintained
11135 F:      drivers/watchdog/mena21_wdt.c
11136
11137 MEN CHAMELEON BUS (mcb)
11138 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11139 S:      Maintained
11140 F:      Documentation/driver-api/men-chameleon-bus.rst
11141 F:      drivers/mcb/
11142 F:      include/linux/mcb.h
11143
11144 MEN F21BMC (Board Management Controller)
11145 M:      Andreas Werner <andreas.werner@men.de>
11146 S:      Supported
11147 F:      Documentation/hwmon/menf21bmc.rst
11148 F:      drivers/hwmon/menf21bmc_hwmon.c
11149 F:      drivers/leds/leds-menf21bmc.c
11150 F:      drivers/mfd/menf21bmc.c
11151 F:      drivers/watchdog/menf21bmc_wdt.c
11152
11153 MEN Z069 WATCHDOG DRIVER
11154 M:      Johannes Thumshirn <jth@kernel.org>
11155 L:      linux-watchdog@vger.kernel.org
11156 S:      Maintained
11157 F:      drivers/watchdog/menz69_wdt.c
11158
11159 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11160 M:      Neil Armstrong <narmstrong@baylibre.com>
11161 L:      linux-media@vger.kernel.org
11162 L:      linux-amlogic@lists.infradead.org
11163 S:      Supported
11164 W:      http://linux-meson.com/
11165 T:      git git://linuxtv.org/media_tree.git
11166 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11167 F:      drivers/media/platform/meson/ao-cec-g12a.c
11168 F:      drivers/media/platform/meson/ao-cec.c
11169
11170 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11171 M:      Liang Yang <liang.yang@amlogic.com>
11172 L:      linux-mtd@lists.infradead.org
11173 S:      Maintained
11174 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11175 F:      drivers/mtd/nand/raw/meson_*
11176
11177 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11178 M:      Maxime Jourdan <mjourdan@baylibre.com>
11179 M:      Neil Armstrong <narmstrong@baylibre.com>
11180 L:      linux-media@vger.kernel.org
11181 L:      linux-amlogic@lists.infradead.org
11182 S:      Supported
11183 T:      git git://linuxtv.org/media_tree.git
11184 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11185 F:      drivers/staging/media/meson/vdec/
11186
11187 METHODE UDPU SUPPORT
11188 M:      Vladimir Vid <vladimir.vid@sartura.hr>
11189 S:      Maintained
11190 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11191
11192 MHI BUS
11193 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11194 M:      Hemant Kumar <hemantk@codeaurora.org>
11195 L:      linux-arm-msm@vger.kernel.org
11196 S:      Maintained
11197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11198 F:      Documentation/mhi/
11199 F:      drivers/bus/mhi/
11200 F:      include/linux/mhi.h
11201
11202 MICROBLAZE ARCHITECTURE
11203 M:      Michal Simek <monstr@monstr.eu>
11204 S:      Supported
11205 W:      http://www.monstr.eu/fdt/
11206 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11207 F:      arch/microblaze/
11208
11209 MICROCHIP AT91 SERIAL DRIVER
11210 M:      Richard Genoud <richard.genoud@gmail.com>
11211 S:      Maintained
11212 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11213 F:      drivers/tty/serial/atmel_serial.c
11214 F:      drivers/tty/serial/atmel_serial.h
11215
11216 MICROCHIP AT91 USART MFD DRIVER
11217 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11218 L:      linux-kernel@vger.kernel.org
11219 S:      Supported
11220 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11221 F:      drivers/mfd/at91-usart.c
11222 F:      include/dt-bindings/mfd/at91-usart.h
11223
11224 MICROCHIP AT91 USART SPI DRIVER
11225 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11226 L:      linux-spi@vger.kernel.org
11227 S:      Supported
11228 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11229 F:      drivers/spi/spi-at91-usart.c
11230
11231 MICROCHIP AUDIO ASOC DRIVERS
11232 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11233 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11234 S:      Supported
11235 F:      sound/soc/atmel
11236
11237 MICROCHIP DMA DRIVER
11238 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11239 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11240 L:      dmaengine@vger.kernel.org
11241 S:      Supported
11242 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11243 F:      drivers/dma/at_hdmac.c
11244 F:      drivers/dma/at_hdmac_regs.h
11245 F:      include/dt-bindings/dma/at91.h
11246 F:      include/linux/platform_data/dma-atmel.h
11247
11248 MICROCHIP ECC DRIVER
11249 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11250 L:      linux-crypto@vger.kernel.org
11251 S:      Maintained
11252 F:      drivers/crypto/atmel-ecc.*
11253
11254 MICROCHIP I2C DRIVER
11255 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11256 L:      linux-i2c@vger.kernel.org
11257 S:      Supported
11258 F:      drivers/i2c/busses/i2c-at91-*.c
11259 F:      drivers/i2c/busses/i2c-at91.h
11260
11261 MICROCHIP ISC DRIVER
11262 M:      Eugen Hristev <eugen.hristev@microchip.com>
11263 L:      linux-media@vger.kernel.org
11264 S:      Supported
11265 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11266 F:      drivers/media/platform/atmel/atmel-isc-base.c
11267 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11268 F:      drivers/media/platform/atmel/atmel-isc.h
11269 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11270 F:      include/linux/atmel-isc-media.h
11271
11272 MICROCHIP ISI DRIVER
11273 M:      Eugen Hristev <eugen.hristev@microchip.com>
11274 L:      linux-media@vger.kernel.org
11275 S:      Supported
11276 F:      drivers/media/platform/atmel/atmel-isi.c
11277 F:      drivers/media/platform/atmel/atmel-isi.h
11278
11279 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11280 M:      Woojung Huh <woojung.huh@microchip.com>
11281 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11282 L:      netdev@vger.kernel.org
11283 S:      Maintained
11284 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
11285 F:      drivers/net/dsa/microchip/*
11286 F:      include/linux/platform_data/microchip-ksz.h
11287 F:      net/dsa/tag_ksz.c
11288
11289 MICROCHIP LAN743X ETHERNET DRIVER
11290 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
11291 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11292 L:      netdev@vger.kernel.org
11293 S:      Maintained
11294 F:      drivers/net/ethernet/microchip/lan743x_*
11295
11296 MICROCHIP LCDFB DRIVER
11297 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11298 L:      linux-fbdev@vger.kernel.org
11299 S:      Maintained
11300 F:      drivers/video/fbdev/atmel_lcdfb.c
11301 F:      include/video/atmel_lcdc.h
11302
11303 MICROCHIP MCP16502 PMIC DRIVER
11304 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
11305 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11306 S:      Maintained
11307 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11308 F:      drivers/regulator/mcp16502.c
11309
11310 MICROCHIP MCP3911 ADC DRIVER
11311 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11312 M:      Kent Gustavsson <kent@minoris.se>
11313 L:      linux-iio@vger.kernel.org
11314 S:      Supported
11315 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11316 F:      drivers/iio/adc/mcp3911.c
11317
11318 MICROCHIP MMC/SD/SDIO MCI DRIVER
11319 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11320 S:      Maintained
11321 F:      drivers/mmc/host/atmel-mci.c
11322
11323 MICROCHIP NAND DRIVER
11324 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11325 L:      linux-mtd@lists.infradead.org
11326 S:      Supported
11327 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11328 F:      drivers/mtd/nand/raw/atmel/*
11329
11330 MICROCHIP PWM DRIVER
11331 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11332 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11333 L:      linux-pwm@vger.kernel.org
11334 S:      Supported
11335 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11336 F:      drivers/pwm/pwm-atmel.c
11337
11338 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11339 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11340 M:      Eugen Hristev <eugen.hristev@microchip.com>
11341 L:      linux-iio@vger.kernel.org
11342 S:      Supported
11343 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11344 F:      drivers/iio/adc/at91-sama5d2_adc.c
11345 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11346
11347 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11348 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11349 S:      Supported
11350 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11351
11352 MICROCHIP SPI DRIVER
11353 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11354 S:      Supported
11355 F:      drivers/spi/spi-atmel.*
11356
11357 MICROCHIP SSC DRIVER
11358 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11359 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11360 S:      Supported
11361 F:      drivers/misc/atmel-ssc.c
11362 F:      include/linux/atmel-ssc.h
11363
11364 MICROCHIP USB251XB DRIVER
11365 M:      Richard Leitner <richard.leitner@skidata.com>
11366 L:      linux-usb@vger.kernel.org
11367 S:      Maintained
11368 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11369 F:      drivers/usb/misc/usb251xb.c
11370
11371 MICROCHIP USBA UDC DRIVER
11372 M:      Cristian Birsan <cristian.birsan@microchip.com>
11373 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11374 S:      Supported
11375 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11376
11377 MICROCHIP XDMA DRIVER
11378 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11379 L:      linux-arm-kernel@lists.infradead.org
11380 L:      dmaengine@vger.kernel.org
11381 S:      Supported
11382 F:      drivers/dma/at_xdmac.c
11383
11384 MICROSEMI MIPS SOCS
11385 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11386 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11387 L:      linux-mips@vger.kernel.org
11388 S:      Supported
11389 F:      Documentation/devicetree/bindings/mips/mscc.txt
11390 F:      arch/mips/boot/dts/mscc/
11391 F:      arch/mips/configs/generic/board-ocelot.config
11392 F:      arch/mips/generic/board-ocelot.c
11393
11394 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11395 M:      Don Brace <don.brace@microsemi.com>
11396 L:      esc.storagedev@microsemi.com
11397 L:      linux-scsi@vger.kernel.org
11398 S:      Supported
11399 F:      Documentation/scsi/smartpqi.rst
11400 F:      drivers/scsi/smartpqi/Kconfig
11401 F:      drivers/scsi/smartpqi/Makefile
11402 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11403 F:      include/linux/cciss*.h
11404 F:      include/uapi/linux/cciss*.h
11405
11406 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11407 M:      Chen Yu <yu.c.chen@intel.com>
11408 L:      platform-driver-x86@vger.kernel.org
11409 S:      Supported
11410 F:      drivers/platform/x86/surfacepro3_button.c
11411
11412 MICROTEK X6 SCANNER
11413 M:      Oliver Neukum <oliver@neukum.org>
11414 S:      Maintained
11415 F:      drivers/usb/image/microtek.*
11416
11417 MIPS
11418 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11419 L:      linux-mips@vger.kernel.org
11420 S:      Maintained
11421 W:      http://www.linux-mips.org/
11422 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11424 F:      Documentation/devicetree/bindings/mips/
11425 F:      Documentation/mips/
11426 F:      arch/mips/
11427 F:      drivers/platform/mips/
11428
11429 MIPS BOSTON DEVELOPMENT BOARD
11430 M:      Paul Burton <paulburton@kernel.org>
11431 L:      linux-mips@vger.kernel.org
11432 S:      Maintained
11433 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11434 F:      arch/mips/boot/dts/img/boston.dts
11435 F:      arch/mips/configs/generic/board-boston.config
11436 F:      drivers/clk/imgtec/clk-boston.c
11437 F:      include/dt-bindings/clock/boston-clock.h
11438
11439 MIPS GENERIC PLATFORM
11440 M:      Paul Burton <paulburton@kernel.org>
11441 L:      linux-mips@vger.kernel.org
11442 S:      Supported
11443 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
11444 F:      arch/mips/generic/
11445 F:      arch/mips/tools/generic-board-config.sh
11446
11447 MIPS RINT INSTRUCTION EMULATION
11448 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
11449 L:      linux-mips@vger.kernel.org
11450 S:      Supported
11451 F:      arch/mips/math-emu/dp_rint.c
11452 F:      arch/mips/math-emu/sp_rint.c
11453
11454 MIPS/LOONGSON1 ARCHITECTURE
11455 M:      Keguang Zhang <keguang.zhang@gmail.com>
11456 L:      linux-mips@vger.kernel.org
11457 S:      Maintained
11458 F:      arch/mips/include/asm/mach-loongson32/
11459 F:      arch/mips/loongson32/
11460 F:      drivers/*/*/*loongson1*
11461 F:      drivers/*/*loongson1*
11462
11463 MIPS/LOONGSON2EF ARCHITECTURE
11464 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11465 L:      linux-mips@vger.kernel.org
11466 S:      Maintained
11467 F:      arch/mips/include/asm/mach-loongson2ef/
11468 F:      arch/mips/loongson2ef/
11469 F:      drivers/*/*/*loongson2*
11470 F:      drivers/*/*loongson2*
11471
11472 MIPS/LOONGSON64 ARCHITECTURE
11473 M:      Huacai Chen <chenhc@lemote.com>
11474 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11475 L:      linux-mips@vger.kernel.org
11476 S:      Maintained
11477 F:      arch/mips/include/asm/mach-loongson64/
11478 F:      arch/mips/loongson64/
11479 F:      drivers/*/*/*loongson3*
11480 F:      drivers/*/*loongson3*
11481 F:      drivers/irqchip/irq-loongson*
11482 F:      drivers/platform/mips/cpu_hwmon.c
11483
11484 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11485 M:      Hans Verkuil <hverkuil@xs4all.nl>
11486 L:      linux-media@vger.kernel.org
11487 S:      Odd Fixes
11488 W:      https://linuxtv.org
11489 T:      git git://linuxtv.org/media_tree.git
11490 F:      drivers/media/radio/radio-miropcm20*
11491
11492 MMP SUPPORT
11493 R:      Lubomir Rintel <lkundrak@v3.sk>
11494 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11495 S:      Odd Fixes
11496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11497 F:      arch/arm/boot/dts/mmp*
11498 F:      arch/arm/mach-mmp/
11499 F:      linux/soc/mmp/
11500
11501 MMP USB PHY DRIVERS
11502 R:      Lubomir Rintel <lkundrak@v3.sk>
11503 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11504 S:      Maintained
11505 F:      drivers/phy/marvell/phy-mmp3-usb.c
11506 F:      drivers/phy/marvell/phy-pxa-usb.c
11507
11508 MMU GATHER AND TLB INVALIDATION
11509 M:      Will Deacon <will@kernel.org>
11510 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
11511 M:      Andrew Morton <akpm@linux-foundation.org>
11512 M:      Nick Piggin <npiggin@gmail.com>
11513 M:      Peter Zijlstra <peterz@infradead.org>
11514 L:      linux-arch@vger.kernel.org
11515 L:      linux-mm@kvack.org
11516 S:      Maintained
11517 F:      arch/*/include/asm/tlb.h
11518 F:      include/asm-generic/tlb.h
11519 F:      mm/mmu_gather.c
11520
11521 MN88472 MEDIA DRIVER
11522 M:      Antti Palosaari <crope@iki.fi>
11523 L:      linux-media@vger.kernel.org
11524 S:      Maintained
11525 W:      https://linuxtv.org
11526 W:      http://palosaari.fi/linux/
11527 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11528 F:      drivers/media/dvb-frontends/mn88472*
11529
11530 MN88473 MEDIA DRIVER
11531 M:      Antti Palosaari <crope@iki.fi>
11532 L:      linux-media@vger.kernel.org
11533 S:      Maintained
11534 W:      https://linuxtv.org
11535 W:      http://palosaari.fi/linux/
11536 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11537 F:      drivers/media/dvb-frontends/mn88473*
11538
11539 MODULE SUPPORT
11540 M:      Jessica Yu <jeyu@kernel.org>
11541 S:      Maintained
11542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11543 F:      include/linux/module.h
11544 F:      kernel/module.c
11545
11546 MONOLITHIC POWER SYSTEM PMIC DRIVER
11547 M:      Saravanan Sekar <sravanhome@gmail.com>
11548 S:      Maintained
11549 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
11550 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11551 F:      drivers/iio/adc/mp2629_adc.c
11552 F:      drivers/mfd/mp2629.c
11553 F:      drivers/power/supply/mp2629_charger.c
11554 F:      drivers/regulator/mp5416.c
11555 F:      drivers/regulator/mpq7920.c
11556 F:      drivers/regulator/mpq7920.h
11557 F:      include/linux/mfd/mp2629.h
11558
11559 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11560 S:      Orphan
11561 W:      http://popies.net/meye/
11562 F:      Documentation/userspace-api/media/drivers/meye*
11563 F:      drivers/media/pci/meye/
11564 F:      include/uapi/linux/meye.h
11565
11566 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11567 M:      Jiri Slaby <jirislaby@gmail.com>
11568 S:      Maintained
11569 F:      Documentation/driver-api/serial/moxa-smartio.rst
11570 F:      drivers/tty/mxser.*
11571
11572 MR800 AVERMEDIA USB FM RADIO DRIVER
11573 M:      Alexey Klimov <klimov.linux@gmail.com>
11574 L:      linux-media@vger.kernel.org
11575 S:      Maintained
11576 T:      git git://linuxtv.org/media_tree.git
11577 F:      drivers/media/radio/radio-mr800.c
11578
11579 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11580 M:      Alan Ott <alan@signal11.us>
11581 L:      linux-wpan@vger.kernel.org
11582 S:      Maintained
11583 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11584 F:      drivers/net/ieee802154/mrf24j40.c
11585
11586 MSI LAPTOP SUPPORT
11587 M:      "Lee, Chun-Yi" <jlee@suse.com>
11588 L:      platform-driver-x86@vger.kernel.org
11589 S:      Maintained
11590 F:      drivers/platform/x86/msi-laptop.c
11591
11592 MSI WMI SUPPORT
11593 L:      platform-driver-x86@vger.kernel.org
11594 S:      Orphan
11595 F:      drivers/platform/x86/msi-wmi.c
11596
11597 MSI001 MEDIA DRIVER
11598 M:      Antti Palosaari <crope@iki.fi>
11599 L:      linux-media@vger.kernel.org
11600 S:      Maintained
11601 W:      https://linuxtv.org
11602 W:      http://palosaari.fi/linux/
11603 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11604 T:      git git://linuxtv.org/anttip/media_tree.git
11605 F:      drivers/media/tuners/msi001*
11606
11607 MSI2500 MEDIA DRIVER
11608 M:      Antti Palosaari <crope@iki.fi>
11609 L:      linux-media@vger.kernel.org
11610 S:      Maintained
11611 W:      https://linuxtv.org
11612 W:      http://palosaari.fi/linux/
11613 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11614 T:      git git://linuxtv.org/anttip/media_tree.git
11615 F:      drivers/media/usb/msi2500/
11616
11617 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11618 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11619 L:      linux-mtd@lists.infradead.org
11620 S:      Maintained
11621 F:      drivers/mtd/devices/docg3*
11622
11623 MT9M032 APTINA SENSOR DRIVER
11624 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11625 L:      linux-media@vger.kernel.org
11626 S:      Maintained
11627 T:      git git://linuxtv.org/media_tree.git
11628 F:      drivers/media/i2c/mt9m032.c
11629 F:      include/media/i2c/mt9m032.h
11630
11631 MT9P031 APTINA CAMERA SENSOR
11632 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11633 L:      linux-media@vger.kernel.org
11634 S:      Maintained
11635 T:      git git://linuxtv.org/media_tree.git
11636 F:      drivers/media/i2c/mt9p031.c
11637 F:      include/media/i2c/mt9p031.h
11638
11639 MT9T001 APTINA CAMERA SENSOR
11640 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11641 L:      linux-media@vger.kernel.org
11642 S:      Maintained
11643 T:      git git://linuxtv.org/media_tree.git
11644 F:      drivers/media/i2c/mt9t001.c
11645 F:      include/media/i2c/mt9t001.h
11646
11647 MT9T112 APTINA CAMERA SENSOR
11648 M:      Jacopo Mondi <jacopo@jmondi.org>
11649 L:      linux-media@vger.kernel.org
11650 S:      Odd Fixes
11651 T:      git git://linuxtv.org/media_tree.git
11652 F:      drivers/media/i2c/mt9t112.c
11653 F:      include/media/i2c/mt9t112.h
11654
11655 MT9V032 APTINA CAMERA SENSOR
11656 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11657 L:      linux-media@vger.kernel.org
11658 S:      Maintained
11659 T:      git git://linuxtv.org/media_tree.git
11660 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11661 F:      drivers/media/i2c/mt9v032.c
11662 F:      include/media/i2c/mt9v032.h
11663
11664 MT9V111 APTINA CAMERA SENSOR
11665 M:      Jacopo Mondi <jacopo@jmondi.org>
11666 L:      linux-media@vger.kernel.org
11667 S:      Maintained
11668 T:      git git://linuxtv.org/media_tree.git
11669 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11670 F:      drivers/media/i2c/mt9v111.c
11671
11672 MULTIFUNCTION DEVICES (MFD)
11673 M:      Lee Jones <lee.jones@linaro.org>
11674 S:      Supported
11675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11676 F:      Documentation/devicetree/bindings/mfd/
11677 F:      drivers/mfd/
11678 F:      include/dt-bindings/mfd/
11679 F:      include/linux/mfd/
11680
11681 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11682 S:      Orphan
11683 F:      drivers/mmc/host/mmc_spi.c
11684 F:      include/linux/spi/mmc_spi.h
11685
11686 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11687 M:      Ulf Hansson <ulf.hansson@linaro.org>
11688 L:      linux-mmc@vger.kernel.org
11689 S:      Maintained
11690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11691 F:      Documentation/devicetree/bindings/mmc/
11692 F:      drivers/mmc/
11693 F:      include/linux/mmc/
11694 F:      include/uapi/linux/mmc/
11695
11696 MULTIPLEXER SUBSYSTEM
11697 M:      Peter Rosin <peda@axentia.se>
11698 S:      Maintained
11699 F:      Documentation/ABI/testing/sysfs-class-mux*
11700 F:      Documentation/devicetree/bindings/mux/
11701 F:      drivers/mux/
11702 F:      include/dt-bindings/mux/
11703 F:      include/linux/mux/
11704
11705 MULTITECH MULTIPORT CARD (ISICOM)
11706 S:      Orphan
11707 F:      drivers/tty/isicom.c
11708 F:      include/linux/isicom.h
11709
11710 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11711 M:      Bin Liu <b-liu@ti.com>
11712 L:      linux-usb@vger.kernel.org
11713 S:      Maintained
11714 F:      drivers/usb/musb/
11715
11716 MXL301RF MEDIA DRIVER
11717 M:      Akihiro Tsukada <tskd08@gmail.com>
11718 L:      linux-media@vger.kernel.org
11719 S:      Odd Fixes
11720 F:      drivers/media/tuners/mxl301rf*
11721
11722 MXL5007T MEDIA DRIVER
11723 M:      Michael Krufky <mkrufky@linuxtv.org>
11724 L:      linux-media@vger.kernel.org
11725 S:      Maintained
11726 W:      https://linuxtv.org
11727 W:      http://github.com/mkrufky
11728 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11729 T:      git git://linuxtv.org/mkrufky/tuners.git
11730 F:      drivers/media/tuners/mxl5007t.*
11731
11732 MXSFB DRM DRIVER
11733 M:      Marek Vasut <marex@denx.de>
11734 M:      Stefan Agner <stefan@agner.ch>
11735 L:      dri-devel@lists.freedesktop.org
11736 S:      Supported
11737 T:      git git://anongit.freedesktop.org/drm/drm-misc
11738 F:      Documentation/devicetree/bindings/display/mxsfb.txt
11739 F:      drivers/gpu/drm/mxsfb/
11740
11741 MYLEX DAC960 PCI RAID Controller
11742 M:      Hannes Reinecke <hare@kernel.org>
11743 L:      linux-scsi@vger.kernel.org
11744 S:      Supported
11745 F:      drivers/scsi/myrb.*
11746 F:      drivers/scsi/myrs.*
11747
11748 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11749 M:      Chris Lee <christopher.lee@cspi.com>
11750 L:      netdev@vger.kernel.org
11751 S:      Supported
11752 W:      https://www.cspi.com/ethernet-products/support/downloads/
11753 F:      drivers/net/ethernet/myricom/myri10ge/
11754
11755 NAND FLASH SUBSYSTEM
11756 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11757 R:      Richard Weinberger <richard@nod.at>
11758 L:      linux-mtd@lists.infradead.org
11759 S:      Maintained
11760 W:      http://www.linux-mtd.infradead.org/
11761 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11762 C:      irc://irc.oftc.net/mtd
11763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11764 F:      drivers/mtd/nand/
11765 F:      include/linux/mtd/*nand*.h
11766
11767 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11768 M:      Daniel Mack <zonque@gmail.com>
11769 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11770 S:      Maintained
11771 W:      http://www.native-instruments.com
11772 F:      sound/usb/caiaq/
11773
11774 NATSEMI ETHERNET DRIVER (DP8381x)
11775 S:      Orphan
11776 F:      drivers/net/ethernet/natsemi/natsemi.c
11777
11778 NCR 5380 SCSI DRIVERS
11779 M:      Finn Thain <fthain@telegraphics.com.au>
11780 M:      Michael Schmitz <schmitzmic@gmail.com>
11781 L:      linux-scsi@vger.kernel.org
11782 S:      Maintained
11783 F:      Documentation/scsi/g_NCR5380.rst
11784 F:      drivers/scsi/NCR5380.*
11785 F:      drivers/scsi/arm/cumana_1.c
11786 F:      drivers/scsi/arm/oak.c
11787 F:      drivers/scsi/atari_scsi.*
11788 F:      drivers/scsi/dmx3191d.c
11789 F:      drivers/scsi/g_NCR5380.*
11790 F:      drivers/scsi/mac_scsi.*
11791 F:      drivers/scsi/sun3_scsi.*
11792 F:      drivers/scsi/sun3_scsi_vme.c
11793
11794 NCSI LIBRARY
11795 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
11796 S:      Maintained
11797 F:      net/ncsi/
11798
11799 NCT6775 HARDWARE MONITOR DRIVER
11800 M:      Guenter Roeck <linux@roeck-us.net>
11801 L:      linux-hwmon@vger.kernel.org
11802 S:      Maintained
11803 F:      Documentation/hwmon/nct6775.rst
11804 F:      drivers/hwmon/nct6775.c
11805
11806 NETDEVSIM
11807 M:      Jakub Kicinski <kuba@kernel.org>
11808 S:      Maintained
11809 F:      drivers/net/netdevsim/*
11810
11811 NETEM NETWORK EMULATOR
11812 M:      Stephen Hemminger <stephen@networkplumber.org>
11813 L:      netdev@vger.kernel.org
11814 S:      Maintained
11815 F:      net/sched/sch_netem.c
11816
11817 NETERION 10GbE DRIVERS (s2io/vxge)
11818 M:      Jon Mason <jdmason@kudzu.us>
11819 L:      netdev@vger.kernel.org
11820 S:      Supported
11821 F:      Documentation/networking/device_drivers/neterion/s2io.rst
11822 F:      Documentation/networking/device_drivers/neterion/vxge.rst
11823 F:      drivers/net/ethernet/neterion/
11824
11825 NETFILTER
11826 M:      Pablo Neira Ayuso <pablo@netfilter.org>
11827 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
11828 M:      Florian Westphal <fw@strlen.de>
11829 L:      netfilter-devel@vger.kernel.org
11830 L:      coreteam@netfilter.org
11831 S:      Maintained
11832 W:      http://www.netfilter.org/
11833 W:      http://www.iptables.org/
11834 W:      http://www.nftables.org/
11835 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
11836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
11837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
11838 F:      include/linux/netfilter*
11839 F:      include/linux/netfilter/
11840 F:      include/net/netfilter/
11841 F:      include/uapi/linux/netfilter*
11842 F:      include/uapi/linux/netfilter/
11843 F:      net/*/netfilter.c
11844 F:      net/*/netfilter/
11845 F:      net/bridge/br_netfilter*.c
11846 F:      net/netfilter/
11847
11848 NETROM NETWORK LAYER
11849 M:      Ralf Baechle <ralf@linux-mips.org>
11850 L:      linux-hams@vger.kernel.org
11851 S:      Maintained
11852 W:      http://www.linux-ax25.org/
11853 F:      include/net/netrom.h
11854 F:      include/uapi/linux/netrom.h
11855 F:      net/netrom/
11856
11857 NETRONOME ETHERNET DRIVERS
11858 M:      Jakub Kicinski <kuba@kernel.org>
11859 L:      oss-drivers@netronome.com
11860 S:      Maintained
11861 F:      drivers/net/ethernet/netronome/
11862
11863 NETWORK BLOCK DEVICE (NBD)
11864 M:      Josef Bacik <josef@toxicpanda.com>
11865 L:      linux-block@vger.kernel.org
11866 L:      nbd@other.debian.org
11867 S:      Maintained
11868 F:      Documentation/admin-guide/blockdev/nbd.rst
11869 F:      drivers/block/nbd.c
11870 F:      include/trace/events/nbd.h
11871 F:      include/uapi/linux/nbd.h
11872
11873 NETWORK DROP MONITOR
11874 M:      Neil Horman <nhorman@tuxdriver.com>
11875 L:      netdev@vger.kernel.org
11876 S:      Maintained
11877 W:      https://fedorahosted.org/dropwatch/
11878 F:      include/net/drop_monitor.h
11879 F:      include/uapi/linux/net_dropmon.h
11880 F:      net/core/drop_monitor.c
11881
11882 NETWORKING DRIVERS
11883 M:      "David S. Miller" <davem@davemloft.net>
11884 M:      Jakub Kicinski <kuba@kernel.org>
11885 L:      netdev@vger.kernel.org
11886 S:      Maintained
11887 W:      http://www.linuxfoundation.org/en/Net
11888 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11889 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11891 F:      Documentation/devicetree/bindings/net/
11892 F:      drivers/net/
11893 F:      include/linux/etherdevice.h
11894 F:      include/linux/fcdevice.h
11895 F:      include/linux/fddidevice.h
11896 F:      include/linux/hippidevice.h
11897 F:      include/linux/if_*
11898 F:      include/linux/inetdevice.h
11899 F:      include/linux/netdevice.h
11900 F:      include/uapi/linux/if_*
11901 F:      include/uapi/linux/netdevice.h
11902
11903 NETWORKING DRIVERS (WIRELESS)
11904 M:      Kalle Valo <kvalo@codeaurora.org>
11905 L:      linux-wireless@vger.kernel.org
11906 S:      Maintained
11907 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
11909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
11910 F:      Documentation/devicetree/bindings/net/wireless/
11911 F:      drivers/net/wireless/
11912
11913 NETWORKING [DSA]
11914 M:      Andrew Lunn <andrew@lunn.ch>
11915 M:      Vivien Didelot <vivien.didelot@gmail.com>
11916 M:      Florian Fainelli <f.fainelli@gmail.com>
11917 S:      Maintained
11918 F:      Documentation/devicetree/bindings/net/dsa/
11919 F:      drivers/net/dsa/
11920 F:      include/linux/dsa/
11921 F:      include/linux/platform_data/dsa.h
11922 F:      include/net/dsa.h
11923 F:      net/dsa/
11924
11925 NETWORKING [GENERAL]
11926 M:      "David S. Miller" <davem@davemloft.net>
11927 M:      Jakub Kicinski <kuba@kernel.org>
11928 L:      netdev@vger.kernel.org
11929 S:      Maintained
11930 W:      http://www.linuxfoundation.org/en/Net
11931 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11932 B:      mailto:netdev@vger.kernel.org
11933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11935 F:      Documentation/networking/
11936 F:      include/linux/in.h
11937 F:      include/linux/net.h
11938 F:      include/linux/netdevice.h
11939 F:      include/net/
11940 F:      include/uapi/linux/in.h
11941 F:      include/uapi/linux/net.h
11942 F:      include/uapi/linux/net_namespace.h
11943 F:      include/uapi/linux/netdevice.h
11944 F:      lib/net_utils.c
11945 F:      lib/random32.c
11946 F:      net/
11947 F:      tools/testing/selftests/net/
11948
11949 NETWORKING [IPSEC]
11950 M:      Steffen Klassert <steffen.klassert@secunet.com>
11951 M:      Herbert Xu <herbert@gondor.apana.org.au>
11952 M:      "David S. Miller" <davem@davemloft.net>
11953 L:      netdev@vger.kernel.org
11954 S:      Maintained
11955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
11956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
11957 F:      include/net/xfrm.h
11958 F:      include/uapi/linux/xfrm.h
11959 F:      net/ipv4/ah4.c
11960 F:      net/ipv4/esp4*
11961 F:      net/ipv4/ip_vti.c
11962 F:      net/ipv4/ipcomp.c
11963 F:      net/ipv4/xfrm*
11964 F:      net/ipv6/ah6.c
11965 F:      net/ipv6/esp6*
11966 F:      net/ipv6/ip6_vti.c
11967 F:      net/ipv6/ipcomp6.c
11968 F:      net/ipv6/xfrm*
11969 F:      net/key/
11970 F:      net/xfrm/
11971
11972 NETWORKING [IPv4/IPv6]
11973 M:      "David S. Miller" <davem@davemloft.net>
11974 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
11975 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
11976 L:      netdev@vger.kernel.org
11977 S:      Maintained
11978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11979 F:      arch/x86/net/*
11980 F:      include/net/ip*
11981 F:      net/ipv4/
11982 F:      net/ipv6/
11983
11984 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
11985 M:      Paul Moore <paul@paul-moore.com>
11986 L:      netdev@vger.kernel.org
11987 L:      linux-security-module@vger.kernel.org
11988 S:      Maintained
11989 W:      https://github.com/netlabel
11990 F:      Documentation/netlabel/
11991 F:      include/net/calipso.h
11992 F:      include/net/cipso_ipv4.h
11993 F:      include/net/netlabel.h
11994 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
11995 F:      include/uapi/linux/netfilter/xt_SECMARK.h
11996 F:      net/ipv4/cipso_ipv4.c
11997 F:      net/ipv6/calipso.c
11998 F:      net/netfilter/xt_CONNSECMARK.c
11999 F:      net/netfilter/xt_SECMARK.c
12000 F:      net/netlabel/
12001
12002 NETWORKING [MPTCP]
12003 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
12004 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
12005 L:      netdev@vger.kernel.org
12006 L:      mptcp@lists.01.org
12007 S:      Maintained
12008 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
12009 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
12010 F:      include/net/mptcp.h
12011 F:      include/uapi/linux/mptcp.h
12012 F:      net/mptcp/
12013 F:      tools/testing/selftests/net/mptcp/
12014
12015 NETWORKING [TCP]
12016 M:      Eric Dumazet <edumazet@google.com>
12017 L:      netdev@vger.kernel.org
12018 S:      Maintained
12019 F:      include/linux/tcp.h
12020 F:      include/net/tcp.h
12021 F:      include/trace/events/tcp.h
12022 F:      include/uapi/linux/tcp.h
12023 F:      net/ipv4/syncookies.c
12024 F:      net/ipv4/tcp*.c
12025 F:      net/ipv6/syncookies.c
12026 F:      net/ipv6/tcp*.c
12027
12028 NETWORKING [TLS]
12029 M:      Boris Pismenny <borisp@mellanox.com>
12030 M:      Aviad Yehezkel <aviadye@mellanox.com>
12031 M:      John Fastabend <john.fastabend@gmail.com>
12032 M:      Daniel Borkmann <daniel@iogearbox.net>
12033 M:      Jakub Kicinski <kuba@kernel.org>
12034 L:      netdev@vger.kernel.org
12035 S:      Maintained
12036 F:      include/net/tls.h
12037 F:      include/uapi/linux/tls.h
12038 F:      net/tls/*
12039
12040 NETWORKING [WIRELESS]
12041 L:      linux-wireless@vger.kernel.org
12042 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12043
12044 NETXEN (1/10) GbE SUPPORT
12045 M:      Manish Chopra <manishc@marvell.com>
12046 M:      Rahul Verma <rahulv@marvell.com>
12047 M:      GR-Linux-NIC-Dev@marvell.com
12048 L:      netdev@vger.kernel.org
12049 S:      Supported
12050 F:      drivers/net/ethernet/qlogic/netxen/
12051
12052 NET_FAILOVER MODULE
12053 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
12054 L:      netdev@vger.kernel.org
12055 S:      Supported
12056 F:      Documentation/networking/net_failover.rst
12057 F:      drivers/net/net_failover.c
12058 F:      include/net/net_failover.h
12059
12060 NEXTHOP
12061 M:      David Ahern <dsahern@kernel.org>
12062 L:      netdev@vger.kernel.org
12063 S:      Maintained
12064 F:      include/net/netns/nexthop.h
12065 F:      include/net/nexthop.h
12066 F:      include/uapi/linux/nexthop.h
12067 F:      net/ipv4/nexthop.c
12068
12069 NFC SUBSYSTEM
12070 L:      netdev@vger.kernel.org
12071 S:      Orphan
12072 F:      Documentation/devicetree/bindings/net/nfc/
12073 F:      drivers/nfc/
12074 F:      include/linux/platform_data/nfcmrvl.h
12075 F:      include/net/nfc/
12076 F:      include/uapi/linux/nfc.h
12077 F:      net/nfc/
12078
12079 NFS, SUNRPC, AND LOCKD CLIENTS
12080 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
12081 M:      Anna Schumaker <anna.schumaker@netapp.com>
12082 L:      linux-nfs@vger.kernel.org
12083 S:      Maintained
12084 W:      http://client.linux-nfs.org
12085 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12086 F:      fs/lockd/
12087 F:      fs/nfs/
12088 F:      fs/nfs_common/
12089 F:      include/linux/lockd/
12090 F:      include/linux/nfs*
12091 F:      include/linux/sunrpc/
12092 F:      include/uapi/linux/nfs*
12093 F:      include/uapi/linux/sunrpc/
12094 F:      net/sunrpc/
12095
12096 NILFS2 FILESYSTEM
12097 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
12098 L:      linux-nilfs@vger.kernel.org
12099 S:      Supported
12100 W:      https://nilfs.sourceforge.io/
12101 W:      https://nilfs.osdn.jp/
12102 T:      git git://github.com/konis/nilfs2.git
12103 F:      Documentation/filesystems/nilfs2.rst
12104 F:      fs/nilfs2/
12105 F:      include/trace/events/nilfs2.h
12106 F:      include/uapi/linux/nilfs2_api.h
12107 F:      include/uapi/linux/nilfs2_ondisk.h
12108
12109 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
12110 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12111 S:      Maintained
12112 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12113 F:      Documentation/scsi/NinjaSCSI.rst
12114 F:      drivers/scsi/pcmcia/nsp_*
12115
12116 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12117 M:      GOTO Masanori <gotom@debian.or.jp>
12118 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12119 S:      Maintained
12120 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12121 F:      Documentation/scsi/NinjaSCSI.rst
12122 F:      drivers/scsi/nsp32*
12123
12124 NIOS2 ARCHITECTURE
12125 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12126 S:      Maintained
12127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12128 F:      arch/nios2/
12129
12130 NOHZ, DYNTICKS SUPPORT
12131 M:      Frederic Weisbecker <fweisbec@gmail.com>
12132 M:      Thomas Gleixner <tglx@linutronix.de>
12133 M:      Ingo Molnar <mingo@kernel.org>
12134 L:      linux-kernel@vger.kernel.org
12135 S:      Maintained
12136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12137 F:      include/linux/sched/nohz.h
12138 F:      include/linux/tick.h
12139 F:      kernel/time/tick*.*
12140
12141 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12142 M:      Pavel Machek <pavel@ucw.cz>
12143 M:      Sakari Ailus <sakari.ailus@iki.fi>
12144 L:      linux-media@vger.kernel.org
12145 S:      Maintained
12146 F:      drivers/media/i2c/ad5820.c
12147 F:      drivers/media/i2c/et8ek8
12148
12149 NOKIA N900 POWER SUPPLY DRIVERS
12150 R:      Pali Rohár <pali@kernel.org>
12151 F:      drivers/power/supply/bq2415x_charger.c
12152 F:      drivers/power/supply/bq27xxx_battery.c
12153 F:      drivers/power/supply/bq27xxx_battery_i2c.c
12154 F:      drivers/power/supply/isp1704_charger.c
12155 F:      drivers/power/supply/rx51_battery.c
12156 F:      include/linux/power/bq2415x_charger.h
12157 F:      include/linux/power/bq27xxx_battery.h
12158
12159 NOLIBC HEADER FILE
12160 M:      Willy Tarreau <w@1wt.eu>
12161 S:      Maintained
12162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12163 F:      tools/include/nolibc/
12164
12165 NSDEPS
12166 M:      Matthias Maennich <maennich@google.com>
12167 S:      Maintained
12168 F:      Documentation/core-api/symbol-namespaces.rst
12169 F:      scripts/nsdeps
12170
12171 NTB AMD DRIVER
12172 M:      Sanjay R Mehta <sanju.mehta@amd.com>
12173 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
12174 L:      linux-ntb@googlegroups.com
12175 S:      Supported
12176 F:      drivers/ntb/hw/amd/
12177
12178 NTB DRIVER CORE
12179 M:      Jon Mason <jdmason@kudzu.us>
12180 M:      Dave Jiang <dave.jiang@intel.com>
12181 M:      Allen Hubbe <allenbh@gmail.com>
12182 L:      linux-ntb@googlegroups.com
12183 S:      Supported
12184 W:      https://github.com/jonmason/ntb/wiki
12185 T:      git git://github.com/jonmason/ntb.git
12186 F:      drivers/net/ntb_netdev.c
12187 F:      drivers/ntb/
12188 F:      include/linux/ntb.h
12189 F:      include/linux/ntb_transport.h
12190 F:      tools/testing/selftests/ntb/
12191
12192 NTB IDT DRIVER
12193 M:      Serge Semin <fancer.lancer@gmail.com>
12194 L:      linux-ntb@googlegroups.com
12195 S:      Supported
12196 F:      drivers/ntb/hw/idt/
12197
12198 NTB INTEL DRIVER
12199 M:      Dave Jiang <dave.jiang@intel.com>
12200 L:      linux-ntb@googlegroups.com
12201 S:      Supported
12202 W:      https://github.com/davejiang/linux/wiki
12203 T:      git https://github.com/davejiang/linux.git
12204 F:      drivers/ntb/hw/intel/
12205
12206 NTFS FILESYSTEM
12207 M:      Anton Altaparmakov <anton@tuxera.com>
12208 L:      linux-ntfs-dev@lists.sourceforge.net
12209 S:      Supported
12210 W:      http://www.tuxera.com/
12211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12212 F:      Documentation/filesystems/ntfs.rst
12213 F:      fs/ntfs/
12214
12215 NUBUS SUBSYSTEM
12216 M:      Finn Thain <fthain@telegraphics.com.au>
12217 L:      linux-m68k@lists.linux-m68k.org
12218 S:      Maintained
12219 F:      arch/*/include/asm/nubus.h
12220 F:      drivers/nubus/
12221 F:      include/linux/nubus.h
12222 F:      include/uapi/linux/nubus.h
12223
12224 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12225 M:      Antonino Daplas <adaplas@gmail.com>
12226 L:      linux-fbdev@vger.kernel.org
12227 S:      Maintained
12228 F:      drivers/video/fbdev/nvidia/
12229 F:      drivers/video/fbdev/riva/
12230
12231 NVM EXPRESS DRIVER
12232 M:      Keith Busch <kbusch@kernel.org>
12233 M:      Jens Axboe <axboe@fb.com>
12234 M:      Christoph Hellwig <hch@lst.de>
12235 M:      Sagi Grimberg <sagi@grimberg.me>
12236 L:      linux-nvme@lists.infradead.org
12237 S:      Supported
12238 W:      http://git.infradead.org/nvme.git
12239 T:      git://git.infradead.org/nvme.git
12240 F:      drivers/nvme/host/
12241 F:      include/linux/nvme.h
12242 F:      include/uapi/linux/nvme_ioctl.h
12243
12244 NVM EXPRESS FC TRANSPORT DRIVERS
12245 M:      James Smart <james.smart@broadcom.com>
12246 L:      linux-nvme@lists.infradead.org
12247 S:      Supported
12248 F:      drivers/nvme/host/fc.c
12249 F:      drivers/nvme/target/fc.c
12250 F:      drivers/nvme/target/fcloop.c
12251 F:      include/linux/nvme-fc-driver.h
12252 F:      include/linux/nvme-fc.h
12253
12254 NVM EXPRESS TARGET DRIVER
12255 M:      Christoph Hellwig <hch@lst.de>
12256 M:      Sagi Grimberg <sagi@grimberg.me>
12257 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
12258 L:      linux-nvme@lists.infradead.org
12259 S:      Supported
12260 W:      http://git.infradead.org/nvme.git
12261 T:      git://git.infradead.org/nvme.git
12262 F:      drivers/nvme/target/
12263
12264 NVMEM FRAMEWORK
12265 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12266 S:      Maintained
12267 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12268 F:      Documentation/devicetree/bindings/nvmem/
12269 F:      drivers/nvmem/
12270 F:      include/linux/nvmem-consumer.h
12271 F:      include/linux/nvmem-provider.h
12272
12273 NXP FSPI DRIVER
12274 M:      Ashish Kumar <ashish.kumar@nxp.com>
12275 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
12276 L:      linux-spi@vger.kernel.org
12277 S:      Maintained
12278 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12279 F:      drivers/spi/spi-nxp-fspi.c
12280
12281 NXP FXAS21002C DRIVER
12282 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12283 L:      linux-iio@vger.kernel.org
12284 S:      Maintained
12285 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
12286 F:      drivers/iio/gyro/fxas21002c.h
12287 F:      drivers/iio/gyro/fxas21002c_core.c
12288 F:      drivers/iio/gyro/fxas21002c_i2c.c
12289 F:      drivers/iio/gyro/fxas21002c_spi.c
12290
12291 NXP SGTL5000 DRIVER
12292 M:      Fabio Estevam <festevam@gmail.com>
12293 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12294 S:      Maintained
12295 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
12296 F:      sound/soc/codecs/sgtl5000*
12297
12298 NXP SJA1105 ETHERNET SWITCH DRIVER
12299 M:      Vladimir Oltean <olteanv@gmail.com>
12300 L:      linux-kernel@vger.kernel.org
12301 S:      Maintained
12302 F:      drivers/net/dsa/sja1105
12303
12304 NXP TDA998X DRM DRIVER
12305 M:      Russell King <linux@armlinux.org.uk>
12306 S:      Maintained
12307 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12308 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12309 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12310 F:      include/drm/i2c/tda998x.h
12311 F:      include/dt-bindings/display/tda998x.h
12312 K:      "nxp,tda998x"
12313
12314 NXP TFA9879 DRIVER
12315 M:      Peter Rosin <peda@axentia.se>
12316 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12317 S:      Maintained
12318 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12319 F:      sound/soc/codecs/tfa9879*
12320
12321 NXP-NCI NFC DRIVER
12322 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
12323 R:      Charles Gorand <charles.gorand@effinnov.com>
12324 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12325 S:      Supported
12326 F:      drivers/nfc/nxp-nci
12327
12328 OBJAGG
12329 M:      Jiri Pirko <jiri@mellanox.com>
12330 L:      netdev@vger.kernel.org
12331 S:      Supported
12332 F:      include/linux/objagg.h
12333 F:      lib/objagg.c
12334 F:      lib/test_objagg.c
12335
12336 OBJTOOL
12337 M:      Josh Poimboeuf <jpoimboe@redhat.com>
12338 M:      Peter Zijlstra <peterz@infradead.org>
12339 S:      Supported
12340 F:      tools/objtool/
12341
12342 OCELOT ETHERNET SWITCH DRIVER
12343 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
12344 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
12345 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
12346 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12347 L:      netdev@vger.kernel.org
12348 S:      Supported
12349 F:      drivers/net/dsa/ocelot/*
12350 F:      drivers/net/ethernet/mscc/
12351 F:      include/soc/mscc/ocelot*
12352 F:      net/dsa/tag_ocelot.c
12353
12354 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12355 M:      Frederic Barrat <fbarrat@linux.ibm.com>
12356 M:      Andrew Donnellan <ajd@linux.ibm.com>
12357 L:      linuxppc-dev@lists.ozlabs.org
12358 S:      Supported
12359 F:      Documentation/userspace-api/accelerators/ocxl.rst
12360 F:      arch/powerpc/include/asm/pnv-ocxl.h
12361 F:      arch/powerpc/platforms/powernv/ocxl.c
12362 F:      drivers/misc/ocxl/
12363 F:      include/misc/ocxl*
12364 F:      include/uapi/misc/ocxl.h
12365
12366 OMAP AUDIO SUPPORT
12367 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
12368 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
12369 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12370 L:      linux-omap@vger.kernel.org
12371 S:      Maintained
12372 F:      sound/soc/ti/n810.c
12373 F:      sound/soc/ti/omap*
12374 F:      sound/soc/ti/rx51.c
12375 F:      sound/soc/ti/sdma-pcm.*
12376
12377 OMAP CLOCK FRAMEWORK SUPPORT
12378 M:      Paul Walmsley <paul@pwsan.com>
12379 L:      linux-omap@vger.kernel.org
12380 S:      Maintained
12381 F:      arch/arm/*omap*/*clock*
12382
12383 OMAP DEVICE TREE SUPPORT
12384 M:      Benoît Cousson <bcousson@baylibre.com>
12385 M:      Tony Lindgren <tony@atomide.com>
12386 L:      linux-omap@vger.kernel.org
12387 L:      devicetree@vger.kernel.org
12388 S:      Maintained
12389 F:      arch/arm/boot/dts/*am3*
12390 F:      arch/arm/boot/dts/*am4*
12391 F:      arch/arm/boot/dts/*am5*
12392 F:      arch/arm/boot/dts/*dra7*
12393 F:      arch/arm/boot/dts/*omap*
12394 F:      arch/arm/boot/dts/logicpd-som-lv*
12395 F:      arch/arm/boot/dts/logicpd-torpedo*
12396
12397 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12398 L:      linux-omap@vger.kernel.org
12399 L:      linux-fbdev@vger.kernel.org
12400 S:      Orphan
12401 F:      Documentation/arm/omap/dss.rst
12402 F:      drivers/video/fbdev/omap2/
12403
12404 OMAP FRAMEBUFFER SUPPORT
12405 L:      linux-fbdev@vger.kernel.org
12406 L:      linux-omap@vger.kernel.org
12407 S:      Orphan
12408 F:      drivers/video/fbdev/omap/
12409
12410 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12411 M:      Roger Quadros <rogerq@ti.com>
12412 M:      Tony Lindgren <tony@atomide.com>
12413 L:      linux-omap@vger.kernel.org
12414 S:      Maintained
12415 F:      arch/arm/mach-omap2/*gpmc*
12416 F:      drivers/memory/omap-gpmc.c
12417
12418 OMAP GPIO DRIVER
12419 M:      Grygorii Strashko <grygorii.strashko@ti.com>
12420 M:      Santosh Shilimkar <ssantosh@kernel.org>
12421 M:      Kevin Hilman <khilman@kernel.org>
12422 L:      linux-omap@vger.kernel.org
12423 S:      Maintained
12424 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12425 F:      drivers/gpio/gpio-omap.c
12426
12427 OMAP HARDWARE SPINLOCK SUPPORT
12428 M:      Ohad Ben-Cohen <ohad@wizery.com>
12429 L:      linux-omap@vger.kernel.org
12430 S:      Maintained
12431 F:      drivers/hwspinlock/omap_hwspinlock.c
12432
12433 OMAP HS MMC SUPPORT
12434 L:      linux-mmc@vger.kernel.org
12435 L:      linux-omap@vger.kernel.org
12436 S:      Orphan
12437 F:      drivers/mmc/host/omap_hsmmc.c
12438
12439 OMAP HWMOD DATA
12440 M:      Paul Walmsley <paul@pwsan.com>
12441 L:      linux-omap@vger.kernel.org
12442 S:      Maintained
12443 F:      arch/arm/mach-omap2/omap_hwmod*data*
12444
12445 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12446 M:      Benoît Cousson <bcousson@baylibre.com>
12447 L:      linux-omap@vger.kernel.org
12448 S:      Maintained
12449 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12450
12451 OMAP HWMOD SUPPORT
12452 M:      Benoît Cousson <bcousson@baylibre.com>
12453 M:      Paul Walmsley <paul@pwsan.com>
12454 L:      linux-omap@vger.kernel.org
12455 S:      Maintained
12456 F:      arch/arm/mach-omap2/omap_hwmod.*
12457
12458 OMAP I2C DRIVER
12459 M:      Vignesh R <vigneshr@ti.com>
12460 L:      linux-omap@vger.kernel.org
12461 L:      linux-i2c@vger.kernel.org
12462 S:      Maintained
12463 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12464 F:      drivers/i2c/busses/i2c-omap.c
12465
12466 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12467 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12468 L:      linux-media@vger.kernel.org
12469 S:      Maintained
12470 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12471 F:      drivers/media/platform/omap3isp/
12472 F:      drivers/staging/media/omap4iss/
12473
12474 OMAP MMC SUPPORT
12475 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12476 L:      linux-omap@vger.kernel.org
12477 S:      Odd Fixes
12478 F:      drivers/mmc/host/omap.c
12479
12480 OMAP POWER MANAGEMENT SUPPORT
12481 M:      Kevin Hilman <khilman@kernel.org>
12482 L:      linux-omap@vger.kernel.org
12483 S:      Maintained
12484 F:      arch/arm/*omap*/*pm*
12485 F:      drivers/cpufreq/omap-cpufreq.c
12486
12487 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12488 M:      Rajendra Nayak <rnayak@codeaurora.org>
12489 M:      Paul Walmsley <paul@pwsan.com>
12490 L:      linux-omap@vger.kernel.org
12491 S:      Maintained
12492 F:      arch/arm/mach-omap2/prm*
12493
12494 OMAP RANDOM NUMBER GENERATOR SUPPORT
12495 M:      Deepak Saxena <dsaxena@plexity.net>
12496 S:      Maintained
12497 F:      drivers/char/hw_random/omap-rng.c
12498
12499 OMAP USB SUPPORT
12500 L:      linux-usb@vger.kernel.org
12501 L:      linux-omap@vger.kernel.org
12502 S:      Orphan
12503 F:      arch/arm/*omap*/usb*
12504 F:      drivers/usb/*/*omap*
12505
12506 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12507 M:      Mark Jackson <mpfj@newflow.co.uk>
12508 L:      linux-omap@vger.kernel.org
12509 S:      Maintained
12510 F:      arch/arm/boot/dts/am335x-nano.dts
12511
12512 OMAP1 SUPPORT
12513 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12514 M:      Tony Lindgren <tony@atomide.com>
12515 L:      linux-omap@vger.kernel.org
12516 S:      Maintained
12517 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12519 F:      arch/arm/configs/omap1_defconfig
12520 F:      arch/arm/mach-omap1/
12521 F:      arch/arm/plat-omap/
12522 F:      drivers/i2c/busses/i2c-omap.c
12523 F:      include/linux/platform_data/ams-delta-fiq.h
12524 F:      include/linux/platform_data/i2c-omap.h
12525
12526 OMAP2+ SUPPORT
12527 M:      Tony Lindgren <tony@atomide.com>
12528 L:      linux-omap@vger.kernel.org
12529 S:      Maintained
12530 W:      http://www.muru.com/linux/omap/
12531 W:      http://linux.omap.com/
12532 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12534 F:      arch/arm/configs/omap2plus_defconfig
12535 F:      arch/arm/mach-omap2/
12536 F:      arch/arm/plat-omap/
12537 F:      drivers/bus/ti-sysc.c
12538 F:      drivers/i2c/busses/i2c-omap.c
12539 F:      drivers/irqchip/irq-omap-intc.c
12540 F:      drivers/mfd/*omap*.c
12541 F:      drivers/mfd/menelaus.c
12542 F:      drivers/mfd/palmas.c
12543 F:      drivers/mfd/tps65217.c
12544 F:      drivers/mfd/tps65218.c
12545 F:      drivers/mfd/tps65910.c
12546 F:      drivers/mfd/twl-core.[ch]
12547 F:      drivers/mfd/twl4030*.c
12548 F:      drivers/mfd/twl6030*.c
12549 F:      drivers/mfd/twl6040*.c
12550 F:      drivers/regulator/palmas-regulator*.c
12551 F:      drivers/regulator/pbias-regulator.c
12552 F:      drivers/regulator/tps65217-regulator.c
12553 F:      drivers/regulator/tps65218-regulator.c
12554 F:      drivers/regulator/tps65910-regulator.c
12555 F:      drivers/regulator/twl-regulator.c
12556 F:      drivers/regulator/twl6030-regulator.c
12557 F:      include/linux/platform_data/i2c-omap.h
12558 F:      include/linux/platform_data/ti-sysc.h
12559
12560 OMFS FILESYSTEM
12561 M:      Bob Copeland <me@bobcopeland.com>
12562 L:      linux-karma-devel@lists.sourceforge.net
12563 S:      Maintained
12564 F:      Documentation/filesystems/omfs.rst
12565 F:      fs/omfs/
12566
12567 OMNIKEY CARDMAN 4000 DRIVER
12568 M:      Harald Welte <laforge@gnumonks.org>
12569 S:      Maintained
12570 F:      drivers/char/pcmcia/cm4000_cs.c
12571 F:      include/linux/cm4000_cs.h
12572 F:      include/uapi/linux/cm4000_cs.h
12573
12574 OMNIKEY CARDMAN 4040 DRIVER
12575 M:      Harald Welte <laforge@gnumonks.org>
12576 S:      Maintained
12577 F:      drivers/char/pcmcia/cm4040_cs.*
12578
12579 OMNIVISION OV13858 SENSOR DRIVER
12580 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12581 L:      linux-media@vger.kernel.org
12582 S:      Maintained
12583 T:      git git://linuxtv.org/media_tree.git
12584 F:      drivers/media/i2c/ov13858.c
12585
12586 OMNIVISION OV2680 SENSOR DRIVER
12587 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12588 L:      linux-media@vger.kernel.org
12589 S:      Maintained
12590 T:      git git://linuxtv.org/media_tree.git
12591 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
12592 F:      drivers/media/i2c/ov2680.c
12593
12594 OMNIVISION OV2685 SENSOR DRIVER
12595 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12596 L:      linux-media@vger.kernel.org
12597 S:      Maintained
12598 T:      git git://linuxtv.org/media_tree.git
12599 F:      drivers/media/i2c/ov2685.c
12600
12601 OMNIVISION OV2740 SENSOR DRIVER
12602 M:      Tianshu Qiu <tian.shu.qiua@intel.com>
12603 R:      Shawn Tu <shawnx.tu@intel.com>
12604 R:      Bingbu Cao <bingbu.cao@intel.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/ov2740.c
12609
12610 OMNIVISION OV5640 SENSOR DRIVER
12611 M:      Steve Longerbeam <slongerbeam@gmail.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/ov5640.c
12616
12617 OMNIVISION OV5647 SENSOR DRIVER
12618 M:      Luis Oliveira <lolivei@synopsys.com>
12619 L:      linux-media@vger.kernel.org
12620 S:      Maintained
12621 T:      git git://linuxtv.org/media_tree.git
12622 F:      drivers/media/i2c/ov5647.c
12623
12624 OMNIVISION OV5670 SENSOR DRIVER
12625 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
12626 M:      Hyungwoo Yang <hyungwoo.yang@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/ov5670.c
12631
12632 OMNIVISION OV5675 SENSOR DRIVER
12633 M:      Shawn Tu <shawnx.tu@intel.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/ov5675.c
12638
12639 OMNIVISION OV5695 SENSOR DRIVER
12640 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12641 L:      linux-media@vger.kernel.org
12642 S:      Maintained
12643 T:      git git://linuxtv.org/media_tree.git
12644 F:      drivers/media/i2c/ov5695.c
12645
12646 OMNIVISION OV7670 SENSOR DRIVER
12647 M:      Jonathan Corbet <corbet@lwn.net>
12648 L:      linux-media@vger.kernel.org
12649 S:      Maintained
12650 T:      git git://linuxtv.org/media_tree.git
12651 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
12652 F:      drivers/media/i2c/ov7670.c
12653
12654 OMNIVISION OV772x SENSOR DRIVER
12655 M:      Jacopo Mondi <jacopo@jmondi.org>
12656 L:      linux-media@vger.kernel.org
12657 S:      Odd fixes
12658 T:      git git://linuxtv.org/media_tree.git
12659 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
12660 F:      drivers/media/i2c/ov772x.c
12661 F:      include/media/i2c/ov772x.h
12662
12663 OMNIVISION OV7740 SENSOR DRIVER
12664 M:      Wenyou Yang <wenyou.yang@microchip.com>
12665 L:      linux-media@vger.kernel.org
12666 S:      Maintained
12667 T:      git git://linuxtv.org/media_tree.git
12668 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
12669 F:      drivers/media/i2c/ov7740.c
12670
12671 OMNIVISION OV8856 SENSOR DRIVER
12672 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
12673 L:      linux-media@vger.kernel.org
12674 S:      Maintained
12675 T:      git git://linuxtv.org/media_tree.git
12676 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
12677 F:      drivers/media/i2c/ov8856.c
12678
12679 OMNIVISION OV9640 SENSOR DRIVER
12680 M:      Petr Cvek <petrcvekcz@gmail.com>
12681 L:      linux-media@vger.kernel.org
12682 S:      Maintained
12683 F:      drivers/media/i2c/ov9640.*
12684
12685 OMNIVISION OV9650 SENSOR DRIVER
12686 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12687 R:      Akinobu Mita <akinobu.mita@gmail.com>
12688 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12689 L:      linux-media@vger.kernel.org
12690 S:      Maintained
12691 T:      git git://linuxtv.org/media_tree.git
12692 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
12693 F:      drivers/media/i2c/ov9650.c
12694
12695 ONENAND FLASH DRIVER
12696 M:      Kyungmin Park <kyungmin.park@samsung.com>
12697 L:      linux-mtd@lists.infradead.org
12698 S:      Maintained
12699 F:      drivers/mtd/nand/onenand/
12700 F:      include/linux/mtd/onenand*.h
12701
12702 ONION OMEGA2+ BOARD
12703 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
12704 L:      linux-mips@vger.kernel.org
12705 S:      Maintained
12706 F:      arch/mips/boot/dts/ralink/omega2p.dts
12707
12708 OP-TEE DRIVER
12709 M:      Jens Wiklander <jens.wiklander@linaro.org>
12710 L:      op-tee@lists.trustedfirmware.org
12711 S:      Maintained
12712 F:      drivers/tee/optee/
12713
12714 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12715 M:      Sumit Garg <sumit.garg@linaro.org>
12716 L:      op-tee@lists.trustedfirmware.org
12717 S:      Maintained
12718 F:      drivers/char/hw_random/optee-rng.c
12719
12720 OPA-VNIC DRIVER
12721 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
12722 M:      Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
12723 L:      linux-rdma@vger.kernel.org
12724 S:      Supported
12725 F:      drivers/infiniband/ulp/opa_vnic
12726
12727 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12728 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
12729 M:      Frank Rowand <frowand.list@gmail.com>
12730 L:      devicetree@vger.kernel.org
12731 S:      Maintained
12732 F:      Documentation/devicetree/dynamic-resolution-notes.rst
12733 F:      Documentation/devicetree/overlay-notes.rst
12734 F:      drivers/of/overlay.c
12735 F:      drivers/of/resolver.c
12736 K:      of_overlay_notifier_
12737
12738 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12739 M:      Rob Herring <robh+dt@kernel.org>
12740 M:      Frank Rowand <frowand.list@gmail.com>
12741 L:      devicetree@vger.kernel.org
12742 S:      Maintained
12743 W:      http://www.devicetree.org/
12744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12745 F:      Documentation/ABI/testing/sysfs-firmware-ofw
12746 F:      drivers/of/
12747 F:      include/linux/of*.h
12748 F:      scripts/dtc/
12749
12750 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
12751 M:      Rob Herring <robh+dt@kernel.org>
12752 L:      devicetree@vger.kernel.org
12753 S:      Maintained
12754 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
12755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12756 F:      Documentation/devicetree/
12757 F:      arch/*/boot/dts/
12758 F:      include/dt-bindings/
12759
12760 OPENCORES I2C BUS DRIVER
12761 M:      Peter Korsgaard <peter@korsgaard.com>
12762 M:      Andrew Lunn <andrew@lunn.ch>
12763 L:      linux-i2c@vger.kernel.org
12764 S:      Maintained
12765 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
12766 F:      Documentation/i2c/busses/i2c-ocores.rst
12767 F:      drivers/i2c/busses/i2c-ocores.c
12768 F:      include/linux/platform_data/i2c-ocores.h
12769
12770 OPENRISC ARCHITECTURE
12771 M:      Jonas Bonn <jonas@southpole.se>
12772 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
12773 M:      Stafford Horne <shorne@gmail.com>
12774 L:      openrisc@lists.librecores.org
12775 S:      Maintained
12776 W:      http://openrisc.io
12777 T:      git git://github.com/openrisc/linux.git
12778 F:      Documentation/devicetree/bindings/openrisc/
12779 F:      Documentation/openrisc/
12780 F:      arch/openrisc/
12781 F:      drivers/irqchip/irq-ompic.c
12782 F:      drivers/irqchip/irq-or1k-*
12783
12784 OPENVSWITCH
12785 M:      Pravin B Shelar <pshelar@ovn.org>
12786 L:      netdev@vger.kernel.org
12787 L:      dev@openvswitch.org
12788 S:      Maintained
12789 W:      http://openvswitch.org
12790 F:      include/uapi/linux/openvswitch.h
12791 F:      net/openvswitch/
12792
12793 OPERATING PERFORMANCE POINTS (OPP)
12794 M:      Viresh Kumar <vireshk@kernel.org>
12795 M:      Nishanth Menon <nm@ti.com>
12796 M:      Stephen Boyd <sboyd@kernel.org>
12797 L:      linux-pm@vger.kernel.org
12798 S:      Maintained
12799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
12800 F:      Documentation/devicetree/bindings/opp/
12801 F:      Documentation/power/opp.rst
12802 F:      drivers/opp/
12803 F:      include/linux/pm_opp.h
12804
12805 OPL4 DRIVER
12806 M:      Clemens Ladisch <clemens@ladisch.de>
12807 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12808 S:      Maintained
12809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12810 F:      sound/drivers/opl4/
12811
12812 OPROFILE
12813 M:      Robert Richter <rric@kernel.org>
12814 L:      oprofile-list@lists.sf.net
12815 S:      Maintained
12816 F:      arch/*/include/asm/oprofile*.h
12817 F:      arch/*/oprofile/
12818 F:      drivers/oprofile/
12819 F:      include/linux/oprofile.h
12820
12821 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
12822 M:      Mark Fasheh <mark@fasheh.com>
12823 M:      Joel Becker <jlbec@evilplan.org>
12824 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
12825 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
12826 S:      Supported
12827 W:      http://ocfs2.wiki.kernel.org
12828 F:      Documentation/filesystems/dlmfs.rst
12829 F:      Documentation/filesystems/ocfs2.rst
12830 F:      fs/ocfs2/
12831
12832 ORANGEFS FILESYSTEM
12833 M:      Mike Marshall <hubcap@omnibond.com>
12834 R:      Martin Brandenburg <martin@omnibond.com>
12835 L:      devel@lists.orangefs.org
12836 S:      Supported
12837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
12838 F:      Documentation/filesystems/orangefs.rst
12839 F:      fs/orangefs/
12840
12841 ORINOCO DRIVER
12842 L:      linux-wireless@vger.kernel.org
12843 S:      Orphan
12844 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
12845 W:      http://www.nongnu.org/orinoco/
12846 F:      drivers/net/wireless/intersil/orinoco/
12847
12848 OV2659 OMNIVISION SENSOR DRIVER
12849 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12850 L:      linux-media@vger.kernel.org
12851 S:      Maintained
12852 W:      https://linuxtv.org
12853 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12854 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12855 F:      drivers/media/i2c/ov2659.c
12856 F:      include/media/i2c/ov2659.h
12857
12858 OVERLAY FILESYSTEM
12859 M:      Miklos Szeredi <miklos@szeredi.hu>
12860 L:      linux-unionfs@vger.kernel.org
12861 S:      Supported
12862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
12863 F:      Documentation/filesystems/overlayfs.rst
12864 F:      fs/overlayfs/
12865
12866 P54 WIRELESS DRIVER
12867 M:      Christian Lamparter <chunkeey@googlemail.com>
12868 L:      linux-wireless@vger.kernel.org
12869 S:      Maintained
12870 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
12871 F:      drivers/net/wireless/intersil/p54/
12872
12873 PACKING
12874 M:      Vladimir Oltean <olteanv@gmail.com>
12875 L:      netdev@vger.kernel.org
12876 S:      Supported
12877 F:      Documentation/core-api/packing.rst
12878 F:      include/linux/packing.h
12879 F:      lib/packing.c
12880
12881 PADATA PARALLEL EXECUTION MECHANISM
12882 M:      Steffen Klassert <steffen.klassert@secunet.com>
12883 L:      linux-crypto@vger.kernel.org
12884 S:      Maintained
12885 F:      Documentation/core-api/padata.rst
12886 F:      include/linux/padata.h
12887 F:      kernel/padata.c
12888
12889 PAGE POOL
12890 M:      Jesper Dangaard Brouer <hawk@kernel.org>
12891 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
12892 L:      netdev@vger.kernel.org
12893 S:      Supported
12894 F:      include/net/page_pool.h
12895 F:      net/core/page_pool.c
12896
12897 PANASONIC LAPTOP ACPI EXTRAS DRIVER
12898 M:      Harald Welte <laforge@gnumonks.org>
12899 L:      platform-driver-x86@vger.kernel.org
12900 S:      Maintained
12901 F:      drivers/platform/x86/panasonic-laptop.c
12902
12903 PARALLAX PING IIO SENSOR DRIVER
12904 M:      Andreas Klinger <ak@it-klinger.de>
12905 L:      linux-iio@vger.kernel.org
12906 S:      Maintained
12907 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
12908 F:      drivers/iio/proximity/ping.c
12909
12910 PARALLEL LCD/KEYPAD PANEL DRIVER
12911 M:      Willy Tarreau <willy@haproxy.com>
12912 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
12913 S:      Odd Fixes
12914 F:      Documentation/admin-guide/lcd-panel-cgram.rst
12915 F:      drivers/auxdisplay/panel.c
12916
12917 PARALLEL PORT SUBSYSTEM
12918 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12919 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12920 L:      linux-parport@lists.infradead.org (subscribers-only)
12921 S:      Maintained
12922 F:      Documentation/driver-api/parport*.rst
12923 F:      drivers/char/ppdev.c
12924 F:      drivers/parport/
12925 F:      include/linux/parport*.h
12926 F:      include/uapi/linux/ppdev.h
12927
12928 PARAVIRT_OPS INTERFACE
12929 M:      Juergen Gross <jgross@suse.com>
12930 M:      Deep Shah <sdeep@vmware.com>
12931 M:      "VMware, Inc." <pv-drivers@vmware.com>
12932 L:      virtualization@lists.linux-foundation.org
12933 S:      Supported
12934 F:      Documentation/virt/paravirt_ops.rst
12935 F:      arch/*/include/asm/paravirt*.h
12936 F:      arch/*/kernel/paravirt*
12937 F:      include/linux/hypervisor.h
12938
12939 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
12940 M:      Tim Waugh <tim@cyberelk.net>
12941 L:      linux-parport@lists.infradead.org (subscribers-only)
12942 S:      Maintained
12943 F:      Documentation/admin-guide/blockdev/paride.rst
12944 F:      drivers/block/paride/
12945
12946 PARISC ARCHITECTURE
12947 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
12948 M:      Helge Deller <deller@gmx.de>
12949 L:      linux-parisc@vger.kernel.org
12950 S:      Maintained
12951 W:      https://parisc.wiki.kernel.org
12952 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
12953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
12954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
12955 F:      Documentation/parisc/
12956 F:      arch/parisc/
12957 F:      drivers/char/agp/parisc-agp.c
12958 F:      drivers/input/misc/hp_sdc_rtc.c
12959 F:      drivers/input/serio/gscps2.c
12960 F:      drivers/input/serio/hp_sdc*
12961 F:      drivers/parisc/
12962 F:      drivers/parport/parport_gsc.*
12963 F:      drivers/tty/serial/8250/8250_gsc.c
12964 F:      drivers/video/console/sti*
12965 F:      drivers/video/fbdev/sti*
12966 F:      drivers/video/logo/logo_parisc*
12967 F:      include/linux/hp_sdc.h
12968
12969 PARMAN
12970 M:      Jiri Pirko <jiri@mellanox.com>
12971 L:      netdev@vger.kernel.org
12972 S:      Supported
12973 F:      include/linux/parman.h
12974 F:      lib/parman.c
12975 F:      lib/test_parman.c
12976
12977 PC ENGINES APU BOARD DRIVER
12978 M:      Enrico Weigelt, metux IT consult <info@metux.net>
12979 S:      Maintained
12980 F:      drivers/platform/x86/pcengines-apuv2.c
12981
12982 PC87360 HARDWARE MONITORING DRIVER
12983 M:      Jim Cromie <jim.cromie@gmail.com>
12984 L:      linux-hwmon@vger.kernel.org
12985 S:      Maintained
12986 F:      Documentation/hwmon/pc87360.rst
12987 F:      drivers/hwmon/pc87360.c
12988
12989 PC8736x GPIO DRIVER
12990 M:      Jim Cromie <jim.cromie@gmail.com>
12991 S:      Maintained
12992 F:      drivers/char/pc8736x_gpio.c
12993
12994 PC87427 HARDWARE MONITORING DRIVER
12995 M:      Jean Delvare <jdelvare@suse.com>
12996 L:      linux-hwmon@vger.kernel.org
12997 S:      Maintained
12998 F:      Documentation/hwmon/pc87427.rst
12999 F:      drivers/hwmon/pc87427.c
13000
13001 PCA9532 LED DRIVER
13002 M:      Riku Voipio <riku.voipio@iki.fi>
13003 S:      Maintained
13004 F:      drivers/leds/leds-pca9532.c
13005 F:      include/linux/leds-pca9532.h
13006
13007 PCA9541 I2C BUS MASTER SELECTOR DRIVER
13008 M:      Guenter Roeck <linux@roeck-us.net>
13009 L:      linux-i2c@vger.kernel.org
13010 S:      Maintained
13011 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
13012
13013 PCDP - PRIMARY CONSOLE AND DEBUG PORT
13014 M:      Khalid Aziz <khalid@gonehiking.org>
13015 S:      Maintained
13016 F:      drivers/firmware/pcdp.*
13017
13018 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
13019 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13020 L:      linux-pci@vger.kernel.org
13021 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13022 S:      Maintained
13023 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
13024 F:      drivers/pci/controller/pci-aardvark.c
13025
13026 PCI DRIVER FOR ALTERA PCIE IP
13027 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13028 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13029 L:      linux-pci@vger.kernel.org
13030 S:      Supported
13031 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
13032 F:      drivers/pci/controller/pcie-altera.c
13033
13034 PCI DRIVER FOR APPLIEDMICRO XGENE
13035 M:      Toan Le <toan@os.amperecomputing.com>
13036 L:      linux-pci@vger.kernel.org
13037 L:      linux-arm-kernel@lists.infradead.org
13038 S:      Maintained
13039 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
13040 F:      drivers/pci/controller/pci-xgene.c
13041
13042 PCI DRIVER FOR ARM VERSATILE PLATFORM
13043 M:      Rob Herring <robh@kernel.org>
13044 L:      linux-pci@vger.kernel.org
13045 L:      linux-arm-kernel@lists.infradead.org
13046 S:      Maintained
13047 F:      Documentation/devicetree/bindings/pci/versatile.yaml
13048 F:      drivers/pci/controller/pci-versatile.c
13049
13050 PCI DRIVER FOR ARMADA 8K
13051 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13052 L:      linux-pci@vger.kernel.org
13053 L:      linux-arm-kernel@lists.infradead.org
13054 S:      Maintained
13055 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
13056 F:      drivers/pci/controller/dwc/pcie-armada8k.c
13057
13058 PCI DRIVER FOR CADENCE PCIE IP
13059 M:      Tom Joseph <tjoseph@cadence.com>
13060 L:      linux-pci@vger.kernel.org
13061 S:      Maintained
13062 F:      Documentation/devicetree/bindings/pci/cdns,*
13063 F:      drivers/pci/controller/cadence/
13064
13065 PCI DRIVER FOR FREESCALE LAYERSCAPE
13066 M:      Minghuan Lian <minghuan.Lian@nxp.com>
13067 M:      Mingkai Hu <mingkai.hu@nxp.com>
13068 M:      Roy Zang <roy.zang@nxp.com>
13069 L:      linuxppc-dev@lists.ozlabs.org
13070 L:      linux-pci@vger.kernel.org
13071 L:      linux-arm-kernel@lists.infradead.org
13072 S:      Maintained
13073 F:      drivers/pci/controller/dwc/*layerscape*
13074
13075 PCI DRIVER FOR GENERIC OF HOSTS
13076 M:      Will Deacon <will@kernel.org>
13077 L:      linux-pci@vger.kernel.org
13078 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13079 S:      Maintained
13080 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13081 F:      drivers/pci/controller/pci-host-common.c
13082 F:      drivers/pci/controller/pci-host-generic.c
13083
13084 PCI DRIVER FOR IMX6
13085 M:      Richard Zhu <hongxing.zhu@nxp.com>
13086 M:      Lucas Stach <l.stach@pengutronix.de>
13087 L:      linux-pci@vger.kernel.org
13088 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13089 S:      Maintained
13090 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
13091 F:      drivers/pci/controller/dwc/*imx6*
13092
13093 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13094 M:      Jonathan Derrick <jonathan.derrick@intel.com>
13095 L:      linux-pci@vger.kernel.org
13096 S:      Supported
13097 F:      drivers/pci/controller/vmd.c
13098
13099 PCI DRIVER FOR MICROSEMI SWITCHTEC
13100 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
13101 M:      Logan Gunthorpe <logang@deltatee.com>
13102 L:      linux-pci@vger.kernel.org
13103 S:      Maintained
13104 F:      Documentation/ABI/testing/sysfs-class-switchtec
13105 F:      Documentation/driver-api/switchtec.rst
13106 F:      drivers/ntb/hw/mscc/
13107 F:      drivers/pci/switch/switchtec*
13108 F:      include/linux/switchtec.h
13109 F:      include/uapi/linux/switchtec_ioctl.h
13110
13111 PCI DRIVER FOR MOBIVEIL PCIE IP
13112 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
13113 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13114 L:      linux-pci@vger.kernel.org
13115 S:      Supported
13116 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
13117 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
13118
13119 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
13120 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13121 M:      Jason Cooper <jason@lakedaemon.net>
13122 L:      linux-pci@vger.kernel.org
13123 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13124 S:      Maintained
13125 F:      drivers/pci/controller/*mvebu*
13126
13127 PCI DRIVER FOR NVIDIA TEGRA
13128 M:      Thierry Reding <thierry.reding@gmail.com>
13129 L:      linux-tegra@vger.kernel.org
13130 L:      linux-pci@vger.kernel.org
13131 S:      Supported
13132 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
13133 F:      drivers/pci/controller/pci-tegra.c
13134
13135 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13136 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13137 L:      linux-pci@vger.kernel.org
13138 L:      linux-arm-kernel@lists.infradead.org
13139 S:      Maintained
13140 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13141 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
13142
13143 PCI DRIVER FOR RENESAS R-CAR
13144 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
13145 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13146 L:      linux-pci@vger.kernel.org
13147 L:      linux-renesas-soc@vger.kernel.org
13148 S:      Maintained
13149 F:      Documentation/devicetree/bindings/pci/*rcar*
13150 F:      drivers/pci/controller/*rcar*
13151
13152 PCI DRIVER FOR SAMSUNG EXYNOS
13153 M:      Jingoo Han <jingoohan1@gmail.com>
13154 L:      linux-pci@vger.kernel.org
13155 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13156 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13157 S:      Maintained
13158 F:      drivers/pci/controller/dwc/pci-exynos.c
13159
13160 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13161 M:      Jingoo Han <jingoohan1@gmail.com>
13162 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
13163 L:      linux-pci@vger.kernel.org
13164 S:      Maintained
13165 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
13166 F:      drivers/pci/controller/dwc/*designware*
13167
13168 PCI DRIVER FOR TI DRA7XX
13169 M:      Kishon Vijay Abraham I <kishon@ti.com>
13170 L:      linux-omap@vger.kernel.org
13171 L:      linux-pci@vger.kernel.org
13172 S:      Supported
13173 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
13174 F:      drivers/pci/controller/dwc/pci-dra7xx.c
13175
13176 PCI DRIVER FOR TI KEYSTONE
13177 M:      Murali Karicheri <m-karicheri2@ti.com>
13178 L:      linux-pci@vger.kernel.org
13179 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13180 S:      Maintained
13181 F:      drivers/pci/controller/dwc/pci-keystone.c
13182
13183 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13184 M:      Linus Walleij <linus.walleij@linaro.org>
13185 L:      linux-pci@vger.kernel.org
13186 S:      Maintained
13187 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13188 F:      drivers/pci/controller/pci-v3-semi.c
13189
13190 PCI ENDPOINT SUBSYSTEM
13191 M:      Kishon Vijay Abraham I <kishon@ti.com>
13192 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13193 L:      linux-pci@vger.kernel.org
13194 S:      Supported
13195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13196 F:      drivers/misc/pci_endpoint_test.c
13197 F:      drivers/pci/endpoint/
13198 F:      tools/pci/
13199
13200 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13201 M:      Russell Currey <ruscur@russell.cc>
13202 M:      Sam Bobroff <sbobroff@linux.ibm.com>
13203 M:      Oliver O'Halloran <oohall@gmail.com>
13204 L:      linuxppc-dev@lists.ozlabs.org
13205 S:      Supported
13206 F:      Documentation/PCI/pci-error-recovery.rst
13207 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
13208 F:      arch/powerpc/include/*/eeh*.h
13209 F:      arch/powerpc/kernel/eeh*.c
13210 F:      arch/powerpc/platforms/*/eeh*.c
13211 F:      drivers/pci/pcie/aer.c
13212 F:      drivers/pci/pcie/dpc.c
13213 F:      drivers/pci/pcie/err.c
13214
13215 PCI ERROR RECOVERY
13216 M:      Linas Vepstas <linasvepstas@gmail.com>
13217 L:      linux-pci@vger.kernel.org
13218 S:      Supported
13219 F:      Documentation/PCI/pci-error-recovery.rst
13220
13221 PCI MSI DRIVER FOR ALTERA MSI IP
13222 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13223 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13224 L:      linux-pci@vger.kernel.org
13225 S:      Supported
13226 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13227 F:      drivers/pci/controller/pcie-altera-msi.c
13228
13229 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13230 M:      Toan Le <toan@os.amperecomputing.com>
13231 L:      linux-pci@vger.kernel.org
13232 L:      linux-arm-kernel@lists.infradead.org
13233 S:      Maintained
13234 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13235 F:      drivers/pci/controller/pci-xgene-msi.c
13236
13237 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13238 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13239 R:      Rob Herring <robh@kernel.org>
13240 L:      linux-pci@vger.kernel.org
13241 S:      Supported
13242 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13244 F:      drivers/pci/controller/
13245
13246 PCI SUBSYSTEM
13247 M:      Bjorn Helgaas <bhelgaas@google.com>
13248 L:      linux-pci@vger.kernel.org
13249 S:      Supported
13250 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13252 F:      Documentation/PCI/
13253 F:      Documentation/devicetree/bindings/pci/
13254 F:      arch/x86/kernel/early-quirks.c
13255 F:      arch/x86/kernel/quirks.c
13256 F:      arch/x86/pci/
13257 F:      drivers/acpi/pci*
13258 F:      drivers/pci/
13259 F:      include/asm-generic/pci*
13260 F:      include/linux/of_pci.h
13261 F:      include/linux/pci*
13262 F:      include/uapi/linux/pci*
13263 F:      lib/pci*
13264
13265 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13266 M:      Jonathan Chocron <jonnyc@amazon.com>
13267 L:      linux-pci@vger.kernel.org
13268 S:      Maintained
13269 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13270 F:      drivers/pci/controller/dwc/pcie-al.c
13271
13272 PCIE DRIVER FOR AMLOGIC MESON
13273 M:      Yue Wang <yue.wang@Amlogic.com>
13274 L:      linux-pci@vger.kernel.org
13275 L:      linux-amlogic@lists.infradead.org
13276 S:      Maintained
13277 F:      drivers/pci/controller/dwc/pci-meson.c
13278
13279 PCIE DRIVER FOR AXIS ARTPEC
13280 M:      Jesper Nilsson <jesper.nilsson@axis.com>
13281 L:      linux-arm-kernel@axis.com
13282 L:      linux-pci@vger.kernel.org
13283 S:      Maintained
13284 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13285 F:      drivers/pci/controller/dwc/*artpec*
13286
13287 PCIE DRIVER FOR CAVIUM THUNDERX
13288 M:      Robert Richter <rrichter@marvell.com>
13289 L:      linux-pci@vger.kernel.org
13290 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13291 S:      Supported
13292 F:      drivers/pci/controller/pci-thunder-*
13293
13294 PCIE DRIVER FOR HISILICON
13295 M:      Zhou Wang <wangzhou1@hisilicon.com>
13296 L:      linux-pci@vger.kernel.org
13297 S:      Maintained
13298 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13299 F:      drivers/pci/controller/dwc/pcie-hisi.c
13300
13301 PCIE DRIVER FOR HISILICON KIRIN
13302 M:      Xiaowei Song <songxiaowei@hisilicon.com>
13303 M:      Binghui Wang <wangbinghui@hisilicon.com>
13304 L:      linux-pci@vger.kernel.org
13305 S:      Maintained
13306 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13307 F:      drivers/pci/controller/dwc/pcie-kirin.c
13308
13309 PCIE DRIVER FOR HISILICON STB
13310 M:      Shawn Guo <shawn.guo@linaro.org>
13311 L:      linux-pci@vger.kernel.org
13312 S:      Maintained
13313 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13314 F:      drivers/pci/controller/dwc/pcie-histb.c
13315
13316 PCIE DRIVER FOR MEDIATEK
13317 M:      Ryder Lee <ryder.lee@mediatek.com>
13318 L:      linux-pci@vger.kernel.org
13319 L:      linux-mediatek@lists.infradead.org
13320 S:      Supported
13321 F:      Documentation/devicetree/bindings/pci/mediatek*
13322 F:      drivers/pci/controller/*mediatek*
13323
13324 PCIE DRIVER FOR QUALCOMM MSM
13325 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
13326 L:      linux-pci@vger.kernel.org
13327 L:      linux-arm-msm@vger.kernel.org
13328 S:      Maintained
13329 F:      drivers/pci/controller/dwc/*qcom*
13330
13331 PCIE DRIVER FOR ROCKCHIP
13332 M:      Shawn Lin <shawn.lin@rock-chips.com>
13333 L:      linux-pci@vger.kernel.org
13334 L:      linux-rockchip@lists.infradead.org
13335 S:      Maintained
13336 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13337 F:      drivers/pci/controller/pcie-rockchip*
13338
13339 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13340 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
13341 L:      linux-pci@vger.kernel.org
13342 S:      Maintained
13343 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
13344 F:      drivers/pci/controller/dwc/pcie-uniphier*
13345
13346 PCIE DRIVER FOR ST SPEAR13XX
13347 M:      Pratyush Anand <pratyush.anand@gmail.com>
13348 L:      linux-pci@vger.kernel.org
13349 S:      Maintained
13350 F:      drivers/pci/controller/dwc/*spear*
13351
13352 PCMCIA SUBSYSTEM
13353 M:      Dominik Brodowski <linux@dominikbrodowski.net>
13354 S:      Odd Fixes
13355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13356 F:      Documentation/pcmcia/
13357 F:      drivers/pcmcia/
13358 F:      include/pcmcia/
13359 F:      tools/pcmcia/
13360
13361 PCNET32 NETWORK DRIVER
13362 M:      Don Fry <pcnet32@frontier.com>
13363 L:      netdev@vger.kernel.org
13364 S:      Maintained
13365 F:      drivers/net/ethernet/amd/pcnet32.c
13366
13367 PCRYPT PARALLEL CRYPTO ENGINE
13368 M:      Steffen Klassert <steffen.klassert@secunet.com>
13369 L:      linux-crypto@vger.kernel.org
13370 S:      Maintained
13371 F:      crypto/pcrypt.c
13372 F:      include/crypto/pcrypt.h
13373
13374 PEAQ WMI HOTKEYS DRIVER
13375 M:      Hans de Goede <hdegoede@redhat.com>
13376 L:      platform-driver-x86@vger.kernel.org
13377 S:      Maintained
13378 F:      drivers/platform/x86/peaq-wmi.c
13379
13380 PENSANDO ETHERNET DRIVERS
13381 M:      Shannon Nelson <snelson@pensando.io>
13382 M:      Pensando Drivers <drivers@pensando.io>
13383 L:      netdev@vger.kernel.org
13384 S:      Supported
13385 F:      Documentation/networking/device_drivers/pensando/ionic.rst
13386 F:      drivers/net/ethernet/pensando/
13387
13388 PER-CPU MEMORY ALLOCATOR
13389 M:      Dennis Zhou <dennis@kernel.org>
13390 M:      Tejun Heo <tj@kernel.org>
13391 M:      Christoph Lameter <cl@linux.com>
13392 S:      Maintained
13393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13394 F:      arch/*/include/asm/percpu.h
13395 F:      include/linux/percpu*.h
13396 F:      mm/percpu*.c
13397
13398 PER-TASK DELAY ACCOUNTING
13399 M:      Balbir Singh <bsingharora@gmail.com>
13400 S:      Maintained
13401 F:      include/linux/delayacct.h
13402 F:      kernel/delayacct.c
13403
13404 PERFORMANCE EVENTS SUBSYSTEM
13405 M:      Peter Zijlstra <peterz@infradead.org>
13406 M:      Ingo Molnar <mingo@redhat.com>
13407 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
13408 R:      Mark Rutland <mark.rutland@arm.com>
13409 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
13410 R:      Jiri Olsa <jolsa@redhat.com>
13411 R:      Namhyung Kim <namhyung@kernel.org>
13412 L:      linux-kernel@vger.kernel.org
13413 S:      Supported
13414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13415 F:      arch/*/events/*
13416 F:      arch/*/events/*/*
13417 F:      arch/*/include/asm/perf_event.h
13418 F:      arch/*/kernel/*/*/perf_event*.c
13419 F:      arch/*/kernel/*/perf_event*.c
13420 F:      arch/*/kernel/perf_callchain.c
13421 F:      arch/*/kernel/perf_event*.c
13422 F:      include/linux/perf_event.h
13423 F:      include/uapi/linux/perf_event.h
13424 F:      kernel/events/*
13425 F:      tools/perf/
13426
13427 PERFORMANCE EVENTS SUBSYSTEM ARM64 PMU EVENTS
13428 R:      John Garry <john.garry@huawei.com>
13429 R:      Will Deacon <will@kernel.org>
13430 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13431 S:      Supported
13432 F:      tools/perf/pmu-events/arch/arm64/
13433
13434 PERSONALITY HANDLING
13435 M:      Christoph Hellwig <hch@infradead.org>
13436 L:      linux-abi-devel@lists.sourceforge.net
13437 S:      Maintained
13438 F:      include/linux/personality.h
13439 F:      include/uapi/linux/personality.h
13440
13441 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13442 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13443 L:      linux-input@vger.kernel.org
13444 S:      Maintained
13445 F:      Documentation/input/devices/pxrc.rst
13446 F:      drivers/input/joystick/pxrc.c
13447
13448 PHONET PROTOCOL
13449 M:      Remi Denis-Courmont <courmisch@gmail.com>
13450 S:      Supported
13451 F:      Documentation/networking/phonet.rst
13452 F:      include/linux/phonet.h
13453 F:      include/net/phonet/
13454 F:      include/uapi/linux/phonet.h
13455 F:      net/phonet/
13456
13457 PHRAM MTD DRIVER
13458 M:      Joern Engel <joern@lazybastard.org>
13459 L:      linux-mtd@lists.infradead.org
13460 S:      Maintained
13461 F:      drivers/mtd/devices/phram.c
13462
13463 PICOLCD HID DRIVER
13464 M:      Bruno Prémont <bonbons@linux-vserver.org>
13465 L:      linux-input@vger.kernel.org
13466 S:      Maintained
13467 F:      drivers/hid/hid-picolcd*
13468
13469 PICOXCELL SUPPORT
13470 M:      Jamie Iles <jamie@jamieiles.com>
13471 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13472 S:      Supported
13473 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13474 F:      arch/arm/boot/dts/picoxcell*
13475 F:      arch/arm/mach-picoxcell/
13476 F:      drivers/crypto/picoxcell*
13477
13478 PIDFD API
13479 M:      Christian Brauner <christian@brauner.io>
13480 L:      linux-kernel@vger.kernel.org
13481 S:      Maintained
13482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13483 F:      samples/pidfd/
13484 F:      tools/testing/selftests/clone3/
13485 F:      tools/testing/selftests/pid_namespace/
13486 F:      tools/testing/selftests/pidfd/
13487 K:      (?i)pidfd
13488 K:      (?i)clone3
13489 K:      \b(clone_args|kernel_clone_args)\b
13490
13491 PIN CONTROL SUBSYSTEM
13492 M:      Linus Walleij <linus.walleij@linaro.org>
13493 L:      linux-gpio@vger.kernel.org
13494 S:      Maintained
13495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13496 F:      Documentation/devicetree/bindings/pinctrl/
13497 F:      Documentation/driver-api/pinctl.rst
13498 F:      drivers/pinctrl/
13499 F:      include/linux/pinctrl/
13500
13501 PIN CONTROLLER - FREESCALE
13502 M:      Dong Aisheng <aisheng.dong@nxp.com>
13503 M:      Fabio Estevam <festevam@gmail.com>
13504 M:      Shawn Guo <shawnguo@kernel.org>
13505 M:      Stefan Agner <stefan@agner.ch>
13506 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
13507 L:      linux-gpio@vger.kernel.org
13508 S:      Maintained
13509 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13510 F:      drivers/pinctrl/freescale/
13511
13512 PIN CONTROLLER - INTEL
13513 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13514 M:      Andy Shevchenko <andy@kernel.org>
13515 S:      Maintained
13516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13517 F:      drivers/pinctrl/intel/
13518
13519 PIN CONTROLLER - MEDIATEK
13520 M:      Sean Wang <sean.wang@kernel.org>
13521 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13522 S:      Maintained
13523 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13524 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13525 F:      drivers/pinctrl/mediatek/
13526
13527 PIN CONTROLLER - MICROCHIP AT91
13528 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13529 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13530 L:      linux-gpio@vger.kernel.org
13531 S:      Supported
13532 F:      drivers/gpio/gpio-sama5d2-piobu.c
13533 F:      drivers/pinctrl/pinctrl-at91*
13534
13535 PIN CONTROLLER - QUALCOMM
13536 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13537 L:      linux-arm-msm@vger.kernel.org
13538 S:      Maintained
13539 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
13540 F:      drivers/pinctrl/qcom/
13541
13542 PIN CONTROLLER - RENESAS
13543 M:      Geert Uytterhoeven <geert+renesas@glider.be>
13544 L:      linux-renesas-soc@vger.kernel.org
13545 S:      Supported
13546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
13547 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
13548 F:      drivers/pinctrl/pinctrl-rz*
13549 F:      drivers/pinctrl/sh-pfc/
13550
13551 PIN CONTROLLER - SAMSUNG
13552 M:      Tomasz Figa <tomasz.figa@gmail.com>
13553 M:      Krzysztof Kozlowski <krzk@kernel.org>
13554 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13555 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13556 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13557 S:      Maintained
13558 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
13559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
13560 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
13561 F:      drivers/pinctrl/samsung/
13562 F:      include/dt-bindings/pinctrl/samsung.h
13563
13564 PIN CONTROLLER - SINGLE
13565 M:      Tony Lindgren <tony@atomide.com>
13566 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
13567 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13568 L:      linux-omap@vger.kernel.org
13569 S:      Maintained
13570 F:      drivers/pinctrl/pinctrl-single.c
13571
13572 PIN CONTROLLER - ST SPEAR
13573 M:      Viresh Kumar <vireshk@kernel.org>
13574 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13575 S:      Maintained
13576 W:      http://www.st.com/spear
13577 F:      drivers/pinctrl/spear/
13578
13579 PISTACHIO SOC SUPPORT
13580 M:      James Hartley <james.hartley@sondrel.com>
13581 L:      linux-mips@vger.kernel.org
13582 S:      Odd Fixes
13583 F:      arch/mips/boot/dts/img/pistachio*
13584 F:      arch/mips/configs/pistachio*_defconfig
13585 F:      arch/mips/include/asm/mach-pistachio/
13586 F:      arch/mips/pistachio/
13587
13588 PKTCDVD DRIVER
13589 M:      linux-block@vger.kernel.org
13590 S:      Orphan
13591 F:      drivers/block/pktcdvd.c
13592 F:      include/linux/pktcdvd.h
13593 F:      include/uapi/linux/pktcdvd.h
13594
13595 PKUNITY SOC DRIVERS
13596 M:      Guan Xuetao <gxt@pku.edu.cn>
13597 S:      Maintained
13598 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
13599 T:      git git://github.com/gxt/linux.git
13600 F:      drivers/i2c/busses/i2c-puv3.c
13601 F:      drivers/input/serio/i8042-unicore32io.h
13602 F:      drivers/rtc/rtc-puv3.c
13603 F:      drivers/video/fbdev/fb-puv3.c
13604
13605 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
13606 M:      Tomasz Duszynski <tduszyns@gmail.com>
13607 S:      Maintained
13608 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
13609 F:      drivers/iio/chemical/pms7003.c
13610
13611 PLX DMA DRIVER
13612 M:      Logan Gunthorpe <logang@deltatee.com>
13613 S:      Maintained
13614 F:      drivers/dma/plx_dma.c
13615
13616 PM-GRAPH UTILITY
13617 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
13618 L:      linux-pm@vger.kernel.org
13619 S:      Supported
13620 W:      https://01.org/pm-graph
13621 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
13622 T:      git git://github.com/intel/pm-graph
13623 F:      tools/power/pm-graph
13624
13625 PMBUS HARDWARE MONITORING DRIVERS
13626 M:      Guenter Roeck <linux@roeck-us.net>
13627 L:      linux-hwmon@vger.kernel.org
13628 S:      Maintained
13629 W:      http://hwmon.wiki.kernel.org/
13630 W:      http://www.roeck-us.net/linux/drivers/
13631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
13632 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
13633 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
13634 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
13635 F:      Documentation/hwmon/adm1275.rst
13636 F:      Documentation/hwmon/ibm-cffps.rst
13637 F:      Documentation/hwmon/ir35221.rst
13638 F:      Documentation/hwmon/lm25066.rst
13639 F:      Documentation/hwmon/ltc2978.rst
13640 F:      Documentation/hwmon/ltc3815.rst
13641 F:      Documentation/hwmon/max16064.rst
13642 F:      Documentation/hwmon/max20751.rst
13643 F:      Documentation/hwmon/max31785.rst
13644 F:      Documentation/hwmon/max34440.rst
13645 F:      Documentation/hwmon/max8688.rst
13646 F:      Documentation/hwmon/pmbus-core.rst
13647 F:      Documentation/hwmon/pmbus.rst
13648 F:      Documentation/hwmon/tps40422.rst
13649 F:      Documentation/hwmon/ucd9000.rst
13650 F:      Documentation/hwmon/ucd9200.rst
13651 F:      Documentation/hwmon/zl6100.rst
13652 F:      drivers/hwmon/pmbus/
13653 F:      include/linux/pmbus.h
13654
13655 PMC SIERRA MaxRAID DRIVER
13656 L:      linux-scsi@vger.kernel.org
13657 S:      Orphan
13658 W:      http://www.pmc-sierra.com/
13659 F:      drivers/scsi/pmcraid.*
13660
13661 PMC SIERRA PM8001 DRIVER
13662 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
13663 L:      linux-scsi@vger.kernel.org
13664 S:      Supported
13665 F:      drivers/scsi/pm8001/
13666
13667 PNI RM3100 IIO DRIVER
13668 M:      Song Qiang <songqiang1304521@gmail.com>
13669 L:      linux-iio@vger.kernel.org
13670 S:      Maintained
13671 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
13672 F:      drivers/iio/magnetometer/rm3100*
13673
13674 PNP SUPPORT
13675 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
13676 L:      linux-acpi@vger.kernel.org
13677 S:      Maintained
13678 F:      drivers/pnp/
13679 F:      include/linux/pnp.h
13680
13681 POSIX CLOCKS and TIMERS
13682 M:      Thomas Gleixner <tglx@linutronix.de>
13683 L:      linux-kernel@vger.kernel.org
13684 S:      Maintained
13685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13686 F:      fs/timerfd.c
13687 F:      include/linux/time_namespace.h
13688 F:      include/linux/timer*
13689 F:      kernel/time/*timer*
13690 F:      kernel/time/namespace.c
13691
13692 POWER MANAGEMENT CORE
13693 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
13694 L:      linux-pm@vger.kernel.org
13695 S:      Supported
13696 B:      https://bugzilla.kernel.org
13697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
13698 F:      drivers/base/power/
13699 F:      drivers/powercap/
13700 F:      include/linux/intel_rapl.h
13701 F:      include/linux/pm.h
13702 F:      include/linux/pm_*
13703 F:      include/linux/powercap.h
13704 F:      kernel/configs/nopm.config
13705
13706 POWER STATE COORDINATION INTERFACE (PSCI)
13707 M:      Mark Rutland <mark.rutland@arm.com>
13708 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13709 L:      linux-arm-kernel@lists.infradead.org
13710 S:      Maintained
13711 F:      drivers/firmware/psci/
13712 F:      include/linux/psci.h
13713 F:      include/uapi/linux/psci.h
13714
13715 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
13716 M:      Sebastian Reichel <sre@kernel.org>
13717 L:      linux-pm@vger.kernel.org
13718 S:      Maintained
13719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13720 F:      Documentation/ABI/testing/sysfs-class-power
13721 F:      Documentation/devicetree/bindings/power/supply/
13722 F:      drivers/power/supply/
13723 F:      include/linux/power_supply.h
13724
13725 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
13726 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
13727 L:      linuxppc-dev@lists.ozlabs.org
13728 S:      Maintained
13729 F:      drivers/char/powernv-op-panel.c
13730
13731 PPP OVER ATM (RFC 2364)
13732 M:      Mitchell Blank Jr <mitch@sfgoth.com>
13733 S:      Maintained
13734 F:      include/uapi/linux/atmppp.h
13735 F:      net/atm/pppoatm.c
13736
13737 PPP OVER ETHERNET
13738 M:      Michal Ostrowski <mostrows@earthlink.net>
13739 S:      Maintained
13740 F:      drivers/net/ppp/pppoe.c
13741 F:      drivers/net/ppp/pppox.c
13742
13743 PPP OVER L2TP
13744 M:      James Chapman <jchapman@katalix.com>
13745 S:      Maintained
13746 F:      include/linux/if_pppol2tp.h
13747 F:      include/uapi/linux/if_pppol2tp.h
13748 F:      net/l2tp/l2tp_ppp.c
13749
13750 PPP PROTOCOL DRIVERS AND COMPRESSORS
13751 M:      Paul Mackerras <paulus@samba.org>
13752 L:      linux-ppp@vger.kernel.org
13753 S:      Maintained
13754 F:      drivers/net/ppp/ppp_*
13755
13756 PPS SUPPORT
13757 M:      Rodolfo Giometti <giometti@enneenne.com>
13758 L:      linuxpps@ml.enneenne.com (subscribers-only)
13759 S:      Maintained
13760 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
13761 F:      Documentation/ABI/testing/sysfs-pps
13762 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
13763 F:      Documentation/driver-api/pps.rst
13764 F:      drivers/pps/
13765 F:      include/linux/pps*.h
13766 F:      include/uapi/linux/pps.h
13767
13768 PPTP DRIVER
13769 M:      Dmitry Kozlov <xeb@mail.ru>
13770 L:      netdev@vger.kernel.org
13771 S:      Maintained
13772 W:      http://sourceforge.net/projects/accel-pptp
13773 F:      drivers/net/ppp/pptp.c
13774
13775 PRESSURE STALL INFORMATION (PSI)
13776 M:      Johannes Weiner <hannes@cmpxchg.org>
13777 S:      Maintained
13778 F:      include/linux/psi*
13779 F:      kernel/sched/psi.c
13780
13781 PRINTK
13782 M:      Petr Mladek <pmladek@suse.com>
13783 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
13784 R:      Steven Rostedt <rostedt@goodmis.org>
13785 S:      Maintained
13786 F:      include/linux/printk.h
13787 F:      kernel/printk/
13788
13789 PRISM54 WIRELESS DRIVER
13790 M:      Luis Chamberlain <mcgrof@kernel.org>
13791 L:      linux-wireless@vger.kernel.org
13792 S:      Obsolete
13793 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13794 F:      drivers/net/wireless/intersil/prism54/
13795
13796 PROC FILESYSTEM
13797 R:      Alexey Dobriyan <adobriyan@gmail.com>
13798 L:      linux-kernel@vger.kernel.org
13799 L:      linux-fsdevel@vger.kernel.org
13800 S:      Maintained
13801 F:      Documentation/filesystems/proc.rst
13802 F:      fs/proc/
13803 F:      include/linux/proc_fs.h
13804 F:      tools/testing/selftests/proc/
13805
13806 PROC SYSCTL
13807 M:      Luis Chamberlain <mcgrof@kernel.org>
13808 M:      Kees Cook <keescook@chromium.org>
13809 M:      Iurii Zaikin <yzaikin@google.com>
13810 L:      linux-kernel@vger.kernel.org
13811 L:      linux-fsdevel@vger.kernel.org
13812 S:      Maintained
13813 F:      fs/proc/proc_sysctl.c
13814 F:      include/linux/sysctl.h
13815 F:      kernel/sysctl-test.c
13816 F:      kernel/sysctl.c
13817 F:      tools/testing/selftests/sysctl/
13818
13819 PS3 NETWORK SUPPORT
13820 M:      Geoff Levand <geoff@infradead.org>
13821 L:      netdev@vger.kernel.org
13822 L:      linuxppc-dev@lists.ozlabs.org
13823 S:      Maintained
13824 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
13825
13826 PS3 PLATFORM SUPPORT
13827 M:      Geoff Levand <geoff@infradead.org>
13828 L:      linuxppc-dev@lists.ozlabs.org
13829 S:      Maintained
13830 F:      arch/powerpc/boot/ps3*
13831 F:      arch/powerpc/include/asm/lv1call.h
13832 F:      arch/powerpc/include/asm/ps3*.h
13833 F:      arch/powerpc/platforms/ps3/
13834 F:      drivers/*/ps3*
13835 F:      drivers/ps3/
13836 F:      drivers/rtc/rtc-ps3.c
13837 F:      drivers/usb/host/*ps3.c
13838 F:      sound/ppc/snd_ps3*
13839
13840 PS3VRAM DRIVER
13841 M:      Jim Paris <jim@jtan.com>
13842 M:      Geoff Levand <geoff@infradead.org>
13843 L:      linuxppc-dev@lists.ozlabs.org
13844 S:      Maintained
13845 F:      drivers/block/ps3vram.c
13846
13847 PSAMPLE PACKET SAMPLING SUPPORT
13848 M:      Yotam Gigi <yotam.gi@gmail.com>
13849 S:      Maintained
13850 F:      include/net/psample.h
13851 F:      include/uapi/linux/psample.h
13852 F:      net/psample
13853
13854 PSTORE FILESYSTEM
13855 M:      Kees Cook <keescook@chromium.org>
13856 M:      Anton Vorontsov <anton@enomsg.org>
13857 M:      Colin Cross <ccross@android.com>
13858 M:      Tony Luck <tony.luck@intel.com>
13859 S:      Maintained
13860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
13861 F:      Documentation/admin-guide/ramoops.rst
13862 F:      Documentation/admin-guide/pstore-blk.rst
13863 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
13864 F:      drivers/acpi/apei/erst.c
13865 F:      drivers/firmware/efi/efi-pstore.c
13866 F:      fs/pstore/
13867 F:      include/linux/pstore*
13868 K:      \b(pstore|ramoops)
13869
13870 PTP HARDWARE CLOCK SUPPORT
13871 M:      Richard Cochran <richardcochran@gmail.com>
13872 L:      netdev@vger.kernel.org
13873 S:      Maintained
13874 W:      http://linuxptp.sourceforge.net/
13875 F:      Documentation/ABI/testing/sysfs-ptp
13876 F:      Documentation/driver-api/ptp.rst
13877 F:      drivers/net/phy/dp83640*
13878 F:      drivers/ptp/*
13879 F:      include/linux/ptp_cl*
13880
13881 PTRACE SUPPORT
13882 M:      Oleg Nesterov <oleg@redhat.com>
13883 S:      Maintained
13884 F:      arch/*/*/ptrace*.c
13885 F:      arch/*/include/asm/ptrace*.h
13886 F:      arch/*/ptrace*.c
13887 F:      include/asm-generic/syscall.h
13888 F:      include/linux/ptrace.h
13889 F:      include/linux/regset.h
13890 F:      include/linux/tracehook.h
13891 F:      include/uapi/linux/ptrace.h
13892 F:      include/uapi/linux/ptrace.h
13893 F:      kernel/ptrace.c
13894
13895 PULSE8-CEC DRIVER
13896 M:      Hans Verkuil <hverkuil@xs4all.nl>
13897 L:      linux-media@vger.kernel.org
13898 S:      Maintained
13899 T:      git git://linuxtv.org/media_tree.git
13900 F:      Documentation/admin-guide/media/pulse8-cec.rst
13901 F:      drivers/media/cec/usb/pulse8/
13902
13903 PVRUSB2 VIDEO4LINUX DRIVER
13904 M:      Mike Isely <isely@pobox.com>
13905 L:      pvrusb2@isely.net       (subscribers-only)
13906 L:      linux-media@vger.kernel.org
13907 S:      Maintained
13908 W:      http://www.isely.net/pvrusb2/
13909 T:      git git://linuxtv.org/media_tree.git
13910 F:      Documentation/driver-api/media/drivers/pvrusb2*
13911 F:      drivers/media/usb/pvrusb2/
13912
13913 PWC WEBCAM DRIVER
13914 M:      Hans Verkuil <hverkuil@xs4all.nl>
13915 L:      linux-media@vger.kernel.org
13916 S:      Odd Fixes
13917 T:      git git://linuxtv.org/media_tree.git
13918 F:      drivers/media/usb/pwc/*
13919 F:      include/trace/events/pwc.h
13920
13921 PWM FAN DRIVER
13922 M:      Kamil Debski <kamil@wypas.org>
13923 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
13924 L:      linux-hwmon@vger.kernel.org
13925 S:      Supported
13926 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
13927 F:      Documentation/hwmon/pwm-fan.rst
13928 F:      drivers/hwmon/pwm-fan.c
13929
13930 PWM IR Transmitter
13931 M:      Sean Young <sean@mess.org>
13932 L:      linux-media@vger.kernel.org
13933 S:      Maintained
13934 F:      drivers/media/rc/pwm-ir-tx.c
13935
13936 PWM SUBSYSTEM
13937 M:      Thierry Reding <thierry.reding@gmail.com>
13938 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
13939 M:      Lee Jones <lee.jones@linaro.org>
13940 L:      linux-pwm@vger.kernel.org
13941 S:      Maintained
13942 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
13943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
13944 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
13945 F:      Documentation/devicetree/bindings/pwm/
13946 F:      Documentation/driver-api/pwm.rst
13947 F:      drivers/gpio/gpio-mvebu.c
13948 F:      drivers/pwm/
13949 F:      drivers/video/backlight/pwm_bl.c
13950 F:      include/linux/pwm.h
13951 F:      include/linux/pwm_backlight.h
13952 K:      pwm_(config|apply_state|ops)
13953
13954 PXA GPIO DRIVER
13955 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13956 L:      linux-gpio@vger.kernel.org
13957 S:      Maintained
13958 F:      drivers/gpio/gpio-pxa.c
13959
13960 PXA MMCI DRIVER
13961 S:      Orphan
13962
13963 PXA RTC DRIVER
13964 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13965 L:      linux-rtc@vger.kernel.org
13966 S:      Maintained
13967
13968 PXA2xx/PXA3xx SUPPORT
13969 M:      Daniel Mack <daniel@zonque.org>
13970 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
13971 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13972 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13973 S:      Maintained
13974 T:      git git://github.com/hzhuang1/linux.git
13975 T:      git git://github.com/rjarzmik/linux.git
13976 F:      arch/arm/boot/dts/pxa*
13977 F:      arch/arm/mach-pxa/
13978 F:      drivers/dma/pxa*
13979 F:      drivers/pcmcia/pxa2xx*
13980 F:      drivers/pinctrl/pxa/
13981 F:      drivers/spi/spi-pxa2xx*
13982 F:      drivers/usb/gadget/udc/pxa2*
13983 F:      include/sound/pxa2xx-lib.h
13984 F:      sound/arm/pxa*
13985 F:      sound/soc/pxa/
13986
13987 QAT DRIVER
13988 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
13989 L:      qat-linux@intel.com
13990 S:      Supported
13991 F:      drivers/crypto/qat/
13992
13993 QCOM AUDIO (ASoC) DRIVERS
13994 M:      Patrick Lai <plai@codeaurora.org>
13995 M:      Banajit Goswami <bgoswami@codeaurora.org>
13996 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13997 S:      Supported
13998 F:      sound/soc/qcom/
13999
14000 QCOM IPA DRIVER
14001 M:      Alex Elder <elder@kernel.org>
14002 L:      netdev@vger.kernel.org
14003 S:      Supported
14004 F:      drivers/net/ipa/
14005
14006 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
14007 M:      Gabriel Somlo <somlo@cmu.edu>
14008 M:      "Michael S. Tsirkin" <mst@redhat.com>
14009 L:      qemu-devel@nongnu.org
14010 S:      Maintained
14011 F:      drivers/firmware/qemu_fw_cfg.c
14012 F:      include/uapi/linux/qemu_fw_cfg.h
14013
14014 QIB DRIVER
14015 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
14016 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
14017 L:      linux-rdma@vger.kernel.org
14018 S:      Supported
14019 F:      drivers/infiniband/hw/qib/
14020
14021 QLOGIC QL41xxx FCOE DRIVER
14022 M:      QLogic-Storage-Upstream@cavium.com
14023 L:      linux-scsi@vger.kernel.org
14024 S:      Supported
14025 F:      drivers/scsi/qedf/
14026
14027 QLOGIC QL41xxx ISCSI DRIVER
14028 M:      QLogic-Storage-Upstream@cavium.com
14029 L:      linux-scsi@vger.kernel.org
14030 S:      Supported
14031 F:      drivers/scsi/qedi/
14032
14033 QLOGIC QL4xxx ETHERNET DRIVER
14034 M:      Ariel Elior <aelior@marvell.com>
14035 M:      GR-everest-linux-l2@marvell.com
14036 L:      netdev@vger.kernel.org
14037 S:      Supported
14038 F:      drivers/net/ethernet/qlogic/qed/
14039 F:      drivers/net/ethernet/qlogic/qede/
14040 F:      include/linux/qed/
14041
14042 QLOGIC QL4xxx RDMA DRIVER
14043 M:      Michal Kalderon <mkalderon@marvell.com>
14044 M:      Ariel Elior <aelior@marvell.com>
14045 L:      linux-rdma@vger.kernel.org
14046 S:      Supported
14047 F:      drivers/infiniband/hw/qedr/
14048 F:      include/uapi/rdma/qedr-abi.h
14049
14050 QLOGIC QLA1280 SCSI DRIVER
14051 M:      Michael Reed <mdr@sgi.com>
14052 L:      linux-scsi@vger.kernel.org
14053 S:      Maintained
14054 F:      drivers/scsi/qla1280.[ch]
14055
14056 QLOGIC QLA2XXX FC-SCSI DRIVER
14057 M:      Nilesh Javali <njavali@marvell.com>
14058 M:      GR-QLogic-Storage-Upstream@marvell.com
14059 L:      linux-scsi@vger.kernel.org
14060 S:      Supported
14061 F:      Documentation/scsi/LICENSE.qla2xxx
14062 F:      drivers/scsi/qla2xxx/
14063
14064 QLOGIC QLA3XXX NETWORK DRIVER
14065 M:      GR-Linux-NIC-Dev@marvell.com
14066 L:      netdev@vger.kernel.org
14067 S:      Supported
14068 F:      Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
14069 F:      drivers/net/ethernet/qlogic/qla3xxx.*
14070
14071 QLOGIC QLA4XXX iSCSI DRIVER
14072 M:      QLogic-Storage-Upstream@qlogic.com
14073 L:      linux-scsi@vger.kernel.org
14074 S:      Supported
14075 F:      Documentation/scsi/LICENSE.qla4xxx
14076 F:      drivers/scsi/qla4xxx/
14077
14078 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14079 M:      Shahed Shaikh <shshaikh@marvell.com>
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/net/ethernet/qlogic/qlcnic/
14085
14086 QLOGIC QLGE 10Gb ETHERNET DRIVER
14087 M:      Manish Chopra <manishc@marvell.com>
14088 M:      GR-Linux-NIC-Dev@marvell.com
14089 L:      netdev@vger.kernel.org
14090 S:      Supported
14091 F:      drivers/staging/qlge/
14092
14093 QM1D1B0004 MEDIA DRIVER
14094 M:      Akihiro Tsukada <tskd08@gmail.com>
14095 L:      linux-media@vger.kernel.org
14096 S:      Odd Fixes
14097 F:      drivers/media/tuners/qm1d1b0004*
14098
14099 QM1D1C0042 MEDIA DRIVER
14100 M:      Akihiro Tsukada <tskd08@gmail.com>
14101 L:      linux-media@vger.kernel.org
14102 S:      Odd Fixes
14103 F:      drivers/media/tuners/qm1d1c0042*
14104
14105 QNX4 FILESYSTEM
14106 M:      Anders Larsen <al@alarsen.net>
14107 S:      Maintained
14108 W:      http://www.alarsen.net/linux/qnx4fs/
14109 F:      fs/qnx4/
14110 F:      include/uapi/linux/qnx4_fs.h
14111 F:      include/uapi/linux/qnxtypes.h
14112
14113 QORIQ DPAA2 FSL-MC BUS DRIVER
14114 M:      Stuart Yoder <stuyoder@gmail.com>
14115 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
14116 L:      linux-kernel@vger.kernel.org
14117 S:      Maintained
14118 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
14119 F:      Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
14120 F:      drivers/bus/fsl-mc/
14121
14122 QT1010 MEDIA DRIVER
14123 M:      Antti Palosaari <crope@iki.fi>
14124 L:      linux-media@vger.kernel.org
14125 S:      Maintained
14126 W:      https://linuxtv.org
14127 W:      http://palosaari.fi/linux/
14128 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14129 T:      git git://linuxtv.org/anttip/media_tree.git
14130 F:      drivers/media/tuners/qt1010*
14131
14132 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
14133 M:      Kalle Valo <kvalo@codeaurora.org>
14134 L:      ath10k@lists.infradead.org
14135 S:      Supported
14136 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
14137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14138 F:      drivers/net/wireless/ath/ath10k/
14139
14140 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
14141 M:      Kalle Valo <kvalo@codeaurora.org>
14142 L:      ath11k@lists.infradead.org
14143 S:      Supported
14144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14145 F:      drivers/net/wireless/ath/ath11k/
14146
14147 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
14148 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
14149 L:      linux-wireless@vger.kernel.org
14150 S:      Supported
14151 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
14152 F:      drivers/net/wireless/ath/ath9k/
14153
14154 QUALCOMM CAMERA SUBSYSTEM DRIVER
14155 M:      Todor Tomov <todor.too@gmail.com>
14156 L:      linux-media@vger.kernel.org
14157 S:      Maintained
14158 F:      Documentation/admin-guide/media/qcom_camss.rst
14159 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
14160 F:      drivers/media/platform/qcom/camss/
14161
14162 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
14163 M:      Niklas Cassel <nks@flawful.org>
14164 L:      linux-pm@vger.kernel.org
14165 L:      linux-arm-msm@vger.kernel.org
14166 S:      Maintained
14167 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
14168 F:      drivers/power/avs/qcom-cpr.c
14169
14170 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
14171 M:      Ilia Lin <ilia.lin@kernel.org>
14172 L:      linux-pm@vger.kernel.org
14173 S:      Maintained
14174 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
14175 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
14176
14177 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
14178 M:      Timur Tabi <timur@kernel.org>
14179 L:      netdev@vger.kernel.org
14180 S:      Maintained
14181 F:      drivers/net/ethernet/qualcomm/emac/
14182
14183 QUALCOMM ETHQOS ETHERNET DRIVER
14184 M:      Vinod Koul <vkoul@kernel.org>
14185 L:      netdev@vger.kernel.org
14186 S:      Maintained
14187 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
14188 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
14189
14190 QUALCOMM GENERIC INTERFACE I2C DRIVER
14191 M:      Akash Asthana <akashast@codeaurora.org>
14192 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
14193 L:      linux-i2c@vger.kernel.org
14194 L:      linux-arm-msm@vger.kernel.org
14195 S:      Supported
14196 F:      drivers/i2c/busses/i2c-qcom-geni.c
14197
14198 QUALCOMM HEXAGON ARCHITECTURE
14199 M:      Brian Cain <bcain@codeaurora.org>
14200 L:      linux-hexagon@vger.kernel.org
14201 S:      Supported
14202 F:      arch/hexagon/
14203
14204 QUALCOMM HIDMA DRIVER
14205 M:      Sinan Kaya <okaya@kernel.org>
14206 L:      linux-arm-kernel@lists.infradead.org
14207 L:      linux-arm-msm@vger.kernel.org
14208 L:      dmaengine@vger.kernel.org
14209 S:      Supported
14210 F:      drivers/dma/qcom/hidma*
14211
14212 QUALCOMM I2C CCI DRIVER
14213 M:      Loic Poulain <loic.poulain@linaro.org>
14214 M:      Robert Foss <robert.foss@linaro.org>
14215 L:      linux-i2c@vger.kernel.org
14216 L:      linux-arm-msm@vger.kernel.org
14217 S:      Maintained
14218 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
14219 F:      drivers/i2c/busses/i2c-qcom-cci.c
14220
14221 QUALCOMM IOMMU
14222 M:      Rob Clark <robdclark@gmail.com>
14223 L:      iommu@lists.linux-foundation.org
14224 L:      linux-arm-msm@vger.kernel.org
14225 S:      Maintained
14226 F:      drivers/iommu/qcom_iommu.c
14227
14228 QUALCOMM IPCC MAILBOX DRIVER
14229 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
14230 L:      linux-arm-msm@vger.kernel.org
14231 S:      Supported
14232 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
14233 F:      drivers/mailbox/qcom-ipcc.c
14234 F:      include/dt-bindings/mailbox/qcom-ipcc.h
14235
14236 QUALCOMM RMNET DRIVER
14237 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
14238 M:      Sean Tranchetti <stranche@codeaurora.org>
14239 L:      netdev@vger.kernel.org
14240 S:      Maintained
14241 F:      Documentation/networking/device_drivers/qualcomm/rmnet.rst
14242 F:      drivers/net/ethernet/qualcomm/rmnet/
14243 F:      include/linux/if_rmnet.h
14244
14245 QUALCOMM TSENS THERMAL DRIVER
14246 M:      Amit Kucheria <amit.kucheria@linaro.org>
14247 L:      linux-pm@vger.kernel.org
14248 L:      linux-arm-msm@vger.kernel.org
14249 S:      Maintained
14250 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14251 F:      drivers/thermal/qcom/
14252
14253 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14254 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
14255 L:      linux-media@vger.kernel.org
14256 L:      linux-arm-msm@vger.kernel.org
14257 S:      Maintained
14258 T:      git git://linuxtv.org/media_tree.git
14259 F:      Documentation/devicetree/bindings/media/*venus*
14260 F:      drivers/media/platform/qcom/venus/
14261
14262 QUALCOMM WCN36XX WIRELESS DRIVER
14263 M:      Kalle Valo <kvalo@codeaurora.org>
14264 L:      wcn36xx@lists.infradead.org
14265 S:      Supported
14266 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
14267 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14268 F:      drivers/net/wireless/ath/wcn36xx/
14269
14270 QUANTENNA QTNFMAC WIRELESS DRIVER
14271 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
14272 R:      Sergey Matyukevich <geomatsi@gmail.com>
14273 L:      linux-wireless@vger.kernel.org
14274 S:      Maintained
14275 F:      drivers/net/wireless/quantenna
14276
14277 RADEON and AMDGPU DRM DRIVERS
14278 M:      Alex Deucher <alexander.deucher@amd.com>
14279 M:      Christian König <christian.koenig@amd.com>
14280 L:      amd-gfx@lists.freedesktop.org
14281 S:      Supported
14282 T:      git git://people.freedesktop.org/~agd5f/linux
14283 F:      drivers/gpu/drm/amd/
14284 F:      drivers/gpu/drm/radeon/
14285 F:      include/uapi/drm/amdgpu_drm.h
14286 F:      include/uapi/drm/radeon_drm.h
14287
14288 RADEON FRAMEBUFFER DISPLAY DRIVER
14289 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
14290 L:      linux-fbdev@vger.kernel.org
14291 S:      Maintained
14292 F:      drivers/video/fbdev/aty/radeon*
14293 F:      include/uapi/linux/radeonfb.h
14294
14295 RADIOSHARK RADIO DRIVER
14296 M:      Hans Verkuil <hverkuil@xs4all.nl>
14297 L:      linux-media@vger.kernel.org
14298 S:      Maintained
14299 T:      git git://linuxtv.org/media_tree.git
14300 F:      drivers/media/radio/radio-shark.c
14301
14302 RADIOSHARK2 RADIO DRIVER
14303 M:      Hans Verkuil <hverkuil@xs4all.nl>
14304 L:      linux-media@vger.kernel.org
14305 S:      Maintained
14306 T:      git git://linuxtv.org/media_tree.git
14307 F:      drivers/media/radio/radio-shark2.c
14308 F:      drivers/media/radio/radio-tea5777.c
14309
14310 RADOS BLOCK DEVICE (RBD)
14311 M:      Ilya Dryomov <idryomov@gmail.com>
14312 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
14313 L:      ceph-devel@vger.kernel.org
14314 S:      Supported
14315 W:      http://ceph.com/
14316 T:      git git://github.com/ceph/ceph-client.git
14317 F:      Documentation/ABI/testing/sysfs-bus-rbd
14318 F:      drivers/block/rbd.c
14319 F:      drivers/block/rbd_types.h
14320
14321 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14322 M:      Paul Mackerras <paulus@samba.org>
14323 L:      linux-fbdev@vger.kernel.org
14324 S:      Maintained
14325 F:      drivers/video/fbdev/aty/aty128fb.c
14326
14327 RAINSHADOW-CEC DRIVER
14328 M:      Hans Verkuil <hverkuil@xs4all.nl>
14329 L:      linux-media@vger.kernel.org
14330 S:      Maintained
14331 T:      git git://linuxtv.org/media_tree.git
14332 F:      drivers/media/cec/usb/rainshadow/
14333
14334 RALINK MIPS ARCHITECTURE
14335 M:      John Crispin <john@phrozen.org>
14336 L:      linux-mips@vger.kernel.org
14337 S:      Maintained
14338 F:      arch/mips/ralink
14339
14340 RALINK RT2X00 WIRELESS LAN DRIVER
14341 M:      Stanislaw Gruszka <stf_xl@wp.pl>
14342 M:      Helmut Schaa <helmut.schaa@googlemail.com>
14343 L:      linux-wireless@vger.kernel.org
14344 S:      Maintained
14345 F:      drivers/net/wireless/ralink/rt2x00/
14346
14347 RAMDISK RAM BLOCK DEVICE DRIVER
14348 M:      Jens Axboe <axboe@kernel.dk>
14349 S:      Maintained
14350 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14351 F:      drivers/block/brd.c
14352
14353 RANCHU VIRTUAL BOARD FOR MIPS
14354 M:      Miodrag Dinic <miodrag.dinic@mips.com>
14355 L:      linux-mips@vger.kernel.org
14356 S:      Supported
14357 F:      arch/mips/configs/generic/board-ranchu.config
14358 F:      arch/mips/generic/board-ranchu.c
14359
14360 RANDOM NUMBER DRIVER
14361 M:      "Theodore Ts'o" <tytso@mit.edu>
14362 S:      Maintained
14363 F:      drivers/char/random.c
14364
14365 RAPIDIO SUBSYSTEM
14366 M:      Matt Porter <mporter@kernel.crashing.org>
14367 M:      Alexandre Bounine <alex.bou9@gmail.com>
14368 S:      Maintained
14369 F:      drivers/rapidio/
14370
14371 RAS INFRASTRUCTURE
14372 M:      Tony Luck <tony.luck@intel.com>
14373 M:      Borislav Petkov <bp@alien8.de>
14374 L:      linux-edac@vger.kernel.org
14375 S:      Maintained
14376 F:      Documentation/admin-guide/ras.rst
14377 F:      drivers/ras/
14378 F:      include/linux/ras.h
14379 F:      include/ras/ras_event.h
14380
14381 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14382 L:      linux-wireless@vger.kernel.org
14383 S:      Orphan
14384 F:      drivers/net/wireless/ray*
14385
14386 RCMM REMOTE CONTROLS DECODER
14387 M:      Patrick Lerda <patrick9876@free.fr>
14388 S:      Maintained
14389 F:      drivers/media/rc/ir-rcmm-decoder.c
14390
14391 RCUTORTURE TEST FRAMEWORK
14392 M:      "Paul E. McKenney" <paulmck@kernel.org>
14393 M:      Josh Triplett <josh@joshtriplett.org>
14394 R:      Steven Rostedt <rostedt@goodmis.org>
14395 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14396 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14397 L:      rcu@vger.kernel.org
14398 S:      Supported
14399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14400 F:      tools/testing/selftests/rcutorture
14401
14402 RDC R-321X SoC
14403 M:      Florian Fainelli <florian@openwrt.org>
14404 S:      Maintained
14405
14406 RDC R6040 FAST ETHERNET DRIVER
14407 M:      Florian Fainelli <f.fainelli@gmail.com>
14408 L:      netdev@vger.kernel.org
14409 S:      Maintained
14410 F:      drivers/net/ethernet/rdc/r6040.c
14411
14412 RDMAVT - RDMA verbs software
14413 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
14414 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
14415 L:      linux-rdma@vger.kernel.org
14416 S:      Supported
14417 F:      drivers/infiniband/sw/rdmavt
14418
14419 RDS - RELIABLE DATAGRAM SOCKETS
14420 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
14421 L:      netdev@vger.kernel.org
14422 L:      linux-rdma@vger.kernel.org
14423 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
14424 S:      Supported
14425 W:      https://oss.oracle.com/projects/rds/
14426 F:      Documentation/networking/rds.rst
14427 F:      net/rds/
14428
14429 RDT - RESOURCE ALLOCATION
14430 M:      Fenghua Yu <fenghua.yu@intel.com>
14431 M:      Reinette Chatre <reinette.chatre@intel.com>
14432 L:      linux-kernel@vger.kernel.org
14433 S:      Supported
14434 F:      Documentation/x86/resctrl*
14435 F:      arch/x86/include/asm/resctrl.h
14436 F:      arch/x86/kernel/cpu/resctrl/
14437 F:      tools/testing/selftests/resctrl/
14438
14439 READ-COPY UPDATE (RCU)
14440 M:      "Paul E. McKenney" <paulmck@kernel.org>
14441 M:      Josh Triplett <josh@joshtriplett.org>
14442 R:      Steven Rostedt <rostedt@goodmis.org>
14443 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14444 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14445 R:      Joel Fernandes <joel@joelfernandes.org>
14446 L:      rcu@vger.kernel.org
14447 S:      Supported
14448 W:      http://www.rdrop.com/users/paulmck/RCU/
14449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14450 F:      Documentation/RCU/
14451 F:      include/linux/rcu*
14452 F:      kernel/rcu/
14453 X:      Documentation/RCU/torture.txt
14454 X:      include/linux/srcu*.h
14455 X:      kernel/rcu/srcu*.c
14456
14457 REAL TIME CLOCK (RTC) SUBSYSTEM
14458 M:      Alessandro Zummo <a.zummo@towertech.it>
14459 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14460 L:      linux-rtc@vger.kernel.org
14461 S:      Maintained
14462 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14464 F:      Documentation/admin-guide/rtc.rst
14465 F:      Documentation/devicetree/bindings/rtc/
14466 F:      drivers/rtc/
14467 F:      include/linux/platform_data/rtc-*
14468 F:      include/linux/rtc.h
14469 F:      include/linux/rtc/
14470 F:      include/uapi/linux/rtc.h
14471 F:      tools/testing/selftests/rtc/
14472
14473 REALTEK AUDIO CODECS
14474 M:      Oder Chiou <oder_chiou@realtek.com>
14475 S:      Maintained
14476 F:      include/sound/rt*.h
14477 F:      sound/soc/codecs/rt*
14478
14479 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14480 M:      Linus Walleij <linus.walleij@linaro.org>
14481 S:      Maintained
14482 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14483 F:      drivers/net/dsa/realtek-smi*
14484 F:      drivers/net/dsa/rtl83*
14485
14486 REALTEK WIRELESS DRIVER (rtlwifi family)
14487 M:      Ping-Ke Shih <pkshih@realtek.com>
14488 L:      linux-wireless@vger.kernel.org
14489 S:      Maintained
14490 W:      https://wireless.wiki.kernel.org/
14491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14492 F:      drivers/net/wireless/realtek/rtlwifi/
14493
14494 REALTEK WIRELESS DRIVER (rtw88)
14495 M:      Yan-Hsuan Chuang <yhchuang@realtek.com>
14496 L:      linux-wireless@vger.kernel.org
14497 S:      Maintained
14498 F:      drivers/net/wireless/realtek/rtw88/
14499
14500 REDPINE WIRELESS DRIVER
14501 M:      Amitkumar Karwar <amitkarwar@gmail.com>
14502 M:      Siva Rebbagondla <siva8118@gmail.com>
14503 L:      linux-wireless@vger.kernel.org
14504 S:      Maintained
14505 F:      drivers/net/wireless/rsi/
14506
14507 REGISTER MAP ABSTRACTION
14508 M:      Mark Brown <broonie@kernel.org>
14509 L:      linux-kernel@vger.kernel.org
14510 S:      Supported
14511 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
14512 F:      Documentation/devicetree/bindings/regmap/
14513 F:      drivers/base/regmap/
14514 F:      include/linux/regmap.h
14515
14516 REISERFS FILE SYSTEM
14517 L:      reiserfs-devel@vger.kernel.org
14518 S:      Supported
14519 F:      fs/reiserfs/
14520
14521 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
14522 M:      Ohad Ben-Cohen <ohad@wizery.com>
14523 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14524 L:      linux-remoteproc@vger.kernel.org
14525 S:      Maintained
14526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
14527 F:      Documentation/ABI/testing/sysfs-class-remoteproc
14528 F:      Documentation/devicetree/bindings/remoteproc/
14529 F:      Documentation/remoteproc.txt
14530 F:      drivers/remoteproc/
14531 F:      include/linux/remoteproc.h
14532 F:      include/linux/remoteproc/
14533
14534 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
14535 M:      Ohad Ben-Cohen <ohad@wizery.com>
14536 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14537 L:      linux-remoteproc@vger.kernel.org
14538 S:      Maintained
14539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
14540 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
14541 F:      Documentation/rpmsg.txt
14542 F:      drivers/rpmsg/
14543 F:      include/linux/rpmsg.h
14544 F:      include/linux/rpmsg/
14545 F:      include/uapi/linux/rpmsg.h
14546 F:      samples/rpmsg/
14547
14548 RENESAS CLOCK DRIVERS
14549 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14550 L:      linux-renesas-soc@vger.kernel.org
14551 S:      Supported
14552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
14553 F:      Documentation/devicetree/bindings/clock/renesas,*
14554 F:      drivers/clk/renesas/
14555
14556 RENESAS EMEV2 I2C DRIVER
14557 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14558 S:      Supported
14559 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
14560 F:      drivers/i2c/busses/i2c-emev2.c
14561
14562 RENESAS ETHERNET DRIVERS
14563 R:      Sergei Shtylyov <sergei.shtylyov@gmail.com>
14564 L:      netdev@vger.kernel.org
14565 L:      linux-renesas-soc@vger.kernel.org
14566 F:      Documentation/devicetree/bindings/net/renesas,*.txt
14567 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
14568 F:      drivers/net/ethernet/renesas/
14569 F:      include/linux/sh_eth.h
14570
14571 RENESAS R-CAR GYROADC DRIVER
14572 M:      Marek Vasut <marek.vasut@gmail.com>
14573 L:      linux-iio@vger.kernel.org
14574 S:      Supported
14575 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
14576 F:      drivers/iio/adc/rcar-gyroadc.c
14577
14578 RENESAS R-CAR I2C DRIVERS
14579 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14580 S:      Supported
14581 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
14582 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
14583 F:      drivers/i2c/busses/i2c-rcar.c
14584 F:      drivers/i2c/busses/i2c-sh_mobile.c
14585
14586 RENESAS R-CAR THERMAL DRIVERS
14587 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
14588 L:      linux-renesas-soc@vger.kernel.org
14589 S:      Supported
14590 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
14591 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
14592 F:      drivers/thermal/rcar_gen3_thermal.c
14593 F:      drivers/thermal/rcar_thermal.c
14594
14595 RENESAS RIIC DRIVER
14596 M:      Chris Brandt <chris.brandt@renesas.com>
14597 S:      Supported
14598 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
14599 F:      drivers/i2c/busses/i2c-riic.c
14600
14601 RENESAS USB PHY DRIVER
14602 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14603 L:      linux-renesas-soc@vger.kernel.org
14604 S:      Maintained
14605 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
14606
14607 RESET CONTROLLER FRAMEWORK
14608 M:      Philipp Zabel <p.zabel@pengutronix.de>
14609 S:      Maintained
14610 T:      git git://git.pengutronix.de/git/pza/linux
14611 F:      Documentation/devicetree/bindings/reset/
14612 F:      drivers/reset/
14613 F:      include/dt-bindings/reset/
14614 F:      include/linux/reset-controller.h
14615 F:      include/linux/reset.h
14616 F:      include/linux/reset/
14617 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
14618
14619 RESTARTABLE SEQUENCES SUPPORT
14620 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14621 M:      Peter Zijlstra <peterz@infradead.org>
14622 M:      "Paul E. McKenney" <paulmck@kernel.org>
14623 M:      Boqun Feng <boqun.feng@gmail.com>
14624 L:      linux-kernel@vger.kernel.org
14625 S:      Supported
14626 F:      include/trace/events/rseq.h
14627 F:      include/uapi/linux/rseq.h
14628 F:      kernel/rseq.c
14629 F:      tools/testing/selftests/rseq/
14630
14631 RFKILL
14632 M:      Johannes Berg <johannes@sipsolutions.net>
14633 L:      linux-wireless@vger.kernel.org
14634 S:      Maintained
14635 W:      https://wireless.wiki.kernel.org/
14636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
14637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
14638 F:      Documentation/ABI/stable/sysfs-class-rfkill
14639 F:      Documentation/driver-api/rfkill.rst
14640 F:      include/linux/rfkill.h
14641 F:      include/uapi/linux/rfkill.h
14642 F:      net/rfkill/
14643
14644 RHASHTABLE
14645 M:      Thomas Graf <tgraf@suug.ch>
14646 M:      Herbert Xu <herbert@gondor.apana.org.au>
14647 L:      netdev@vger.kernel.org
14648 S:      Maintained
14649 F:      include/linux/rhashtable-types.h
14650 F:      include/linux/rhashtable.h
14651 F:      lib/rhashtable.c
14652 F:      lib/test_rhashtable.c
14653
14654 RICOH R5C592 MEMORYSTICK DRIVER
14655 M:      Maxim Levitsky <maximlevitsky@gmail.com>
14656 S:      Maintained
14657 F:      drivers/memstick/host/r592.*
14658
14659 RICOH SMARTMEDIA/XD DRIVER
14660 M:      Maxim Levitsky <maximlevitsky@gmail.com>
14661 S:      Maintained
14662 F:      drivers/mtd/nand/raw/r852.c
14663 F:      drivers/mtd/nand/raw/r852.h
14664
14665 RISC-V ARCHITECTURE
14666 M:      Paul Walmsley <paul.walmsley@sifive.com>
14667 M:      Palmer Dabbelt <palmer@dabbelt.com>
14668 M:      Albert Ou <aou@eecs.berkeley.edu>
14669 L:      linux-riscv@lists.infradead.org
14670 S:      Supported
14671 P:      Documentation/riscv/patch-acceptance.rst
14672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
14673 F:      arch/riscv/
14674 N:      riscv
14675 K:      riscv
14676
14677 RNBD BLOCK DRIVERS
14678 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
14679 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14680 L:      linux-block@vger.kernel.org
14681 S:      Maintained
14682 F:      drivers/block/rnbd/
14683
14684 ROCCAT DRIVERS
14685 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
14686 S:      Maintained
14687 W:      http://sourceforge.net/projects/roccat/
14688 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
14689 F:      drivers/hid/hid-roccat*
14690 F:      include/linux/hid-roccat*
14691
14692 ROCKCHIP ISP V1 DRIVER
14693 M:      Helen Koike <helen.koike@collabora.com>
14694 L:      linux-media@vger.kernel.org
14695 S:      Maintained
14696 F:      drivers/staging/media/rkisp1/
14697
14698 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
14699 M:      Jacob Chen <jacob-chen@iotwrt.com>
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-rga.yaml
14705 F:      drivers/media/platform/rockchip/rga/
14706
14707 ROCKCHIP VIDEO DECODER DRIVER
14708 M:      Ezequiel Garcia <ezequiel@collabora.com>
14709 L:      linux-media@vger.kernel.org
14710 L:      linux-rockchip@lists.infradead.org
14711 S:      Maintained
14712 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
14713 F:      drivers/staging/media/rkvdec/
14714
14715 ROCKER DRIVER
14716 M:      Jiri Pirko <jiri@resnulli.us>
14717 L:      netdev@vger.kernel.org
14718 S:      Supported
14719 F:      drivers/net/ethernet/rocker/
14720
14721 ROCKETPORT DRIVER
14722 S:      Maintained
14723 W:      http://www.comtrol.com
14724 F:      Documentation/driver-api/serial/rocket.rst
14725 F:      drivers/tty/rocket*
14726
14727 ROCKETPORT EXPRESS/INFINITY DRIVER
14728 M:      Kevin Cernekee <cernekee@gmail.com>
14729 L:      linux-serial@vger.kernel.org
14730 S:      Odd Fixes
14731 F:      drivers/tty/serial/rp2.*
14732
14733 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
14734 M:      Tomasz Duszynski <tduszyns@gmail.com>
14735 S:      Maintained
14736 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
14737 F:      drivers/iio/light/bh1750.c
14738
14739 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
14740 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14741 L:      linux-kernel@vger.kernel.org
14742 L:      linux-renesas-soc@vger.kernel.org
14743 S:      Supported
14744 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
14745 F:      drivers/gpio/gpio-bd9571mwv.c
14746 F:      drivers/mfd/bd9571mwv.c
14747 F:      drivers/regulator/bd9571mwv-regulator.c
14748 F:      include/linux/mfd/bd9571mwv.h
14749
14750 ROSE NETWORK LAYER
14751 M:      Ralf Baechle <ralf@linux-mips.org>
14752 L:      linux-hams@vger.kernel.org
14753 S:      Maintained
14754 W:      http://www.linux-ax25.org/
14755 F:      include/net/rose.h
14756 F:      include/uapi/linux/rose.h
14757 F:      net/rose/
14758
14759 ROTATION DRIVER FOR ALLWINNER A83T
14760 M:      Jernej Skrabec <jernej.skrabec@siol.net>
14761 L:      linux-media@vger.kernel.org
14762 S:      Maintained
14763 T:      git git://linuxtv.org/media_tree.git
14764 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
14765 F:      drivers/media/platform/sunxi/sun8i-rotate/
14766
14767 RTL2830 MEDIA DRIVER
14768 M:      Antti Palosaari <crope@iki.fi>
14769 L:      linux-media@vger.kernel.org
14770 S:      Maintained
14771 W:      https://linuxtv.org
14772 W:      http://palosaari.fi/linux/
14773 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14774 T:      git git://linuxtv.org/anttip/media_tree.git
14775 F:      drivers/media/dvb-frontends/rtl2830*
14776
14777 RTL2832 MEDIA DRIVER
14778 M:      Antti Palosaari <crope@iki.fi>
14779 L:      linux-media@vger.kernel.org
14780 S:      Maintained
14781 W:      https://linuxtv.org
14782 W:      http://palosaari.fi/linux/
14783 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14784 T:      git git://linuxtv.org/anttip/media_tree.git
14785 F:      drivers/media/dvb-frontends/rtl2832*
14786
14787 RTL2832_SDR MEDIA DRIVER
14788 M:      Antti Palosaari <crope@iki.fi>
14789 L:      linux-media@vger.kernel.org
14790 S:      Maintained
14791 W:      https://linuxtv.org
14792 W:      http://palosaari.fi/linux/
14793 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14794 T:      git git://linuxtv.org/anttip/media_tree.git
14795 F:      drivers/media/dvb-frontends/rtl2832_sdr*
14796
14797 RTL8180 WIRELESS DRIVER
14798 L:      linux-wireless@vger.kernel.org
14799 S:      Orphan
14800 W:      https://wireless.wiki.kernel.org/
14801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14802 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
14803
14804 RTL8187 WIRELESS DRIVER
14805 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
14806 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
14807 M:      Larry Finger <Larry.Finger@lwfinger.net>
14808 L:      linux-wireless@vger.kernel.org
14809 S:      Maintained
14810 W:      https://wireless.wiki.kernel.org/
14811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14812 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
14813
14814 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
14815 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
14816 L:      linux-wireless@vger.kernel.org
14817 S:      Maintained
14818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
14819 F:      drivers/net/wireless/realtek/rtl8xxxu/
14820
14821 RTRS TRANSPORT DRIVERS
14822 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
14823 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14824 L:      linux-rdma@vger.kernel.org
14825 S:      Maintained
14826 F:      drivers/infiniband/ulp/rtrs/
14827
14828 RXRPC SOCKETS (AF_RXRPC)
14829 M:      David Howells <dhowells@redhat.com>
14830 L:      linux-afs@lists.infradead.org
14831 S:      Supported
14832 W:      https://www.infradead.org/~dhowells/kafs/
14833 F:      Documentation/networking/rxrpc.rst
14834 F:      include/keys/rxrpc-type.h
14835 F:      include/net/af_rxrpc.h
14836 F:      include/trace/events/rxrpc.h
14837 F:      include/uapi/linux/rxrpc.h
14838 F:      net/rxrpc/
14839
14840 S3 SAVAGE FRAMEBUFFER DRIVER
14841 M:      Antonino Daplas <adaplas@gmail.com>
14842 L:      linux-fbdev@vger.kernel.org
14843 S:      Maintained
14844 F:      drivers/video/fbdev/savage/
14845
14846 S390
14847 M:      Heiko Carstens <hca@linux.ibm.com>
14848 M:      Vasily Gorbik <gor@linux.ibm.com>
14849 M:      Christian Borntraeger <borntraeger@de.ibm.com>
14850 L:      linux-s390@vger.kernel.org
14851 S:      Supported
14852 W:      http://www.ibm.com/developerworks/linux/linux390/
14853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
14854 F:      Documentation/driver-api/s390-drivers.rst
14855 F:      Documentation/s390/
14856 F:      arch/s390/
14857 F:      drivers/s390/
14858
14859 S390 COMMON I/O LAYER
14860 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
14861 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
14862 L:      linux-s390@vger.kernel.org
14863 S:      Supported
14864 W:      http://www.ibm.com/developerworks/linux/linux390/
14865 F:      drivers/s390/cio/
14866
14867 S390 DASD DRIVER
14868 M:      Stefan Haberland <sth@linux.ibm.com>
14869 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
14870 L:      linux-s390@vger.kernel.org
14871 S:      Supported
14872 W:      http://www.ibm.com/developerworks/linux/linux390/
14873 F:      block/partitions/ibm.c
14874 F:      drivers/s390/block/dasd*
14875 F:      include/linux/dasd_mod.h
14876
14877 S390 IOMMU (PCI)
14878 M:      Matthew Rosato <mjrosato@linux.ibm.com>
14879 M:      Gerald Schaefer <gerald.schaefer@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/iommu/s390-iommu.c
14884
14885 S390 IUCV NETWORK LAYER
14886 M:      Julian Wiedmann <jwi@linux.ibm.com>
14887 M:      Karsten Graul <kgraul@linux.ibm.com>
14888 M:      Ursula Braun <ubraun@linux.ibm.com>
14889 L:      linux-s390@vger.kernel.org
14890 S:      Supported
14891 W:      http://www.ibm.com/developerworks/linux/linux390/
14892 F:      drivers/s390/net/*iucv*
14893 F:      include/net/iucv/
14894 F:      net/iucv/
14895
14896 S390 NETWORK DRIVERS
14897 M:      Julian Wiedmann <jwi@linux.ibm.com>
14898 M:      Karsten Graul <kgraul@linux.ibm.com>
14899 M:      Ursula Braun <ubraun@linux.ibm.com>
14900 L:      linux-s390@vger.kernel.org
14901 S:      Supported
14902 W:      http://www.ibm.com/developerworks/linux/linux390/
14903 F:      drivers/s390/net/
14904
14905 S390 PCI SUBSYSTEM
14906 M:      Niklas Schnelle <schnelle@linux.ibm.com>
14907 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
14908 L:      linux-s390@vger.kernel.org
14909 S:      Supported
14910 W:      http://www.ibm.com/developerworks/linux/linux390/
14911 F:      arch/s390/pci/
14912 F:      drivers/pci/hotplug/s390_pci_hpc.c
14913 F:      Documentation/s390/pci.rst
14914
14915 S390 VFIO AP DRIVER
14916 M:      Tony Krowiak <akrowiak@linux.ibm.com>
14917 M:      Pierre Morel <pmorel@linux.ibm.com>
14918 M:      Halil Pasic <pasic@linux.ibm.com>
14919 L:      linux-s390@vger.kernel.org
14920 S:      Supported
14921 W:      http://www.ibm.com/developerworks/linux/linux390/
14922 F:      Documentation/s390/vfio-ap.rst
14923 F:      drivers/s390/crypto/vfio_ap_drv.c
14924 F:      drivers/s390/crypto/vfio_ap_ops.c
14925 F:      drivers/s390/crypto/vfio_ap_private.h
14926
14927 S390 VFIO-CCW DRIVER
14928 M:      Cornelia Huck <cohuck@redhat.com>
14929 M:      Eric Farman <farman@linux.ibm.com>
14930 R:      Halil Pasic <pasic@linux.ibm.com>
14931 L:      linux-s390@vger.kernel.org
14932 L:      kvm@vger.kernel.org
14933 S:      Supported
14934 F:      Documentation/s390/vfio-ccw.rst
14935 F:      drivers/s390/cio/vfio_ccw*
14936 F:      include/uapi/linux/vfio_ccw.h
14937
14938 S390 ZCRYPT DRIVER
14939 M:      Harald Freudenberger <freude@linux.ibm.com>
14940 L:      linux-s390@vger.kernel.org
14941 S:      Supported
14942 W:      http://www.ibm.com/developerworks/linux/linux390/
14943 F:      drivers/s390/crypto/
14944
14945 S390 ZFCP DRIVER
14946 M:      Steffen Maier <maier@linux.ibm.com>
14947 M:      Benjamin Block <bblock@linux.ibm.com>
14948 L:      linux-s390@vger.kernel.org
14949 S:      Supported
14950 W:      http://www.ibm.com/developerworks/linux/linux390/
14951 F:      drivers/s390/scsi/zfcp_*
14952
14953 S3C24XX SD/MMC Driver
14954 M:      Ben Dooks <ben-linux@fluff.org>
14955 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14956 S:      Supported
14957 F:      drivers/mmc/host/s3cmci.*
14958
14959 SAA6588 RDS RECEIVER DRIVER
14960 M:      Hans Verkuil <hverkuil@xs4all.nl>
14961 L:      linux-media@vger.kernel.org
14962 S:      Odd Fixes
14963 W:      https://linuxtv.org
14964 T:      git git://linuxtv.org/media_tree.git
14965 F:      drivers/media/i2c/saa6588*
14966
14967 SAA7134 VIDEO4LINUX DRIVER
14968 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14969 L:      linux-media@vger.kernel.org
14970 S:      Odd fixes
14971 W:      https://linuxtv.org
14972 T:      git git://linuxtv.org/media_tree.git
14973 F:      Documentation/driver-api/media/drivers/saa7134*
14974 F:      drivers/media/pci/saa7134/
14975
14976 SAA7146 VIDEO4LINUX-2 DRIVER
14977 M:      Hans Verkuil <hverkuil@xs4all.nl>
14978 L:      linux-media@vger.kernel.org
14979 S:      Maintained
14980 T:      git git://linuxtv.org/media_tree.git
14981 F:      drivers/media/common/saa7146/
14982 F:      drivers/media/pci/saa7146/
14983 F:      include/media/drv-intf/saa7146*
14984
14985 SAFESETID SECURITY MODULE
14986 M:      Micah Morton <mortonm@chromium.org>
14987 S:      Supported
14988 F:      Documentation/admin-guide/LSM/SafeSetID.rst
14989 F:      security/safesetid/
14990
14991 SAMSUNG AUDIO (ASoC) DRIVERS
14992 M:      Krzysztof Kozlowski <krzk@kernel.org>
14993 M:      Sangbeom Kim <sbkim73@samsung.com>
14994 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14995 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14996 S:      Supported
14997 F:      Documentation/devicetree/bindings/sound/samsung*
14998 F:      sound/soc/samsung/
14999
15000 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
15001 M:      Krzysztof Kozlowski <krzk@kernel.org>
15002 L:      linux-crypto@vger.kernel.org
15003 L:      linux-samsung-soc@vger.kernel.org
15004 S:      Maintained
15005 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
15006 F:      drivers/crypto/exynos-rng.c
15007
15008 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
15009 M:      Łukasz Stelmach <l.stelmach@samsung.com>
15010 L:      linux-samsung-soc@vger.kernel.org
15011 S:      Maintained
15012 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
15013 F:      drivers/char/hw_random/exynos-trng.c
15014
15015 SAMSUNG FRAMEBUFFER DRIVER
15016 M:      Jingoo Han <jingoohan1@gmail.com>
15017 L:      linux-fbdev@vger.kernel.org
15018 S:      Maintained
15019 F:      drivers/video/fbdev/s3c-fb.c
15020
15021 SAMSUNG LAPTOP DRIVER
15022 M:      Corentin Chary <corentin.chary@gmail.com>
15023 L:      platform-driver-x86@vger.kernel.org
15024 S:      Maintained
15025 F:      drivers/platform/x86/samsung-laptop.c
15026
15027 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
15028 M:      Sangbeom Kim <sbkim73@samsung.com>
15029 M:      Krzysztof Kozlowski <krzk@kernel.org>
15030 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15031 L:      linux-kernel@vger.kernel.org
15032 L:      linux-samsung-soc@vger.kernel.org
15033 S:      Supported
15034 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
15035 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
15036 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
15037 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
15038 F:      drivers/clk/clk-s2mps11.c
15039 F:      drivers/mfd/sec*.c
15040 F:      drivers/regulator/s2m*.c
15041 F:      drivers/regulator/s5m*.c
15042 F:      drivers/rtc/rtc-s5m.c
15043 F:      include/linux/mfd/samsung/
15044
15045 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
15046 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
15047 L:      linux-media@vger.kernel.org
15048 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
15049 S:      Maintained
15050 F:      drivers/media/platform/s3c-camif/
15051 F:      include/media/drv-intf/s3c_camif.h
15052
15053 SAMSUNG S3FWRN5 NFC DRIVER
15054 M:      Robert Baldyga <r.baldyga@samsung.com>
15055 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
15056 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
15057 S:      Supported
15058 F:      drivers/nfc/s3fwrn5
15059
15060 SAMSUNG S5C73M3 CAMERA DRIVER
15061 M:      Kyungmin Park <kyungmin.park@samsung.com>
15062 M:      Andrzej Hajda <a.hajda@samsung.com>
15063 L:      linux-media@vger.kernel.org
15064 S:      Supported
15065 F:      drivers/media/i2c/s5c73m3/*
15066
15067 SAMSUNG S5K5BAF CAMERA DRIVER
15068 M:      Kyungmin Park <kyungmin.park@samsung.com>
15069 M:      Andrzej Hajda <a.hajda@samsung.com>
15070 L:      linux-media@vger.kernel.org
15071 S:      Supported
15072 F:      drivers/media/i2c/s5k5baf.c
15073
15074 SAMSUNG S5P Security SubSystem (SSS) DRIVER
15075 M:      Krzysztof Kozlowski <krzk@kernel.org>
15076 M:      Vladimir Zapolskiy <vz@mleia.com>
15077 M:      Kamil Konieczny <k.konieczny@samsung.com>
15078 L:      linux-crypto@vger.kernel.org
15079 L:      linux-samsung-soc@vger.kernel.org
15080 S:      Maintained
15081 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
15082 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
15083 F:      drivers/crypto/s5p-sss.c
15084
15085 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
15086 M:      Kyungmin Park <kyungmin.park@samsung.com>
15087 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15088 L:      linux-media@vger.kernel.org
15089 S:      Supported
15090 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15091 F:      drivers/media/platform/exynos4-is/
15092
15093 SAMSUNG SOC CLOCK DRIVERS
15094 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15095 M:      Tomasz Figa <tomasz.figa@gmail.com>
15096 M:      Chanwoo Choi <cw00.choi@samsung.com>
15097 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
15098 S:      Supported
15099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
15100 F:      Documentation/devicetree/bindings/clock/exynos*.txt
15101 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
15102 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
15103 F:      drivers/clk/samsung/
15104 F:      include/dt-bindings/clock/exynos*.h
15105
15106 SAMSUNG SPI DRIVERS
15107 M:      Kukjin Kim <kgene@kernel.org>
15108 M:      Krzysztof Kozlowski <krzk@kernel.org>
15109 M:      Andi Shyti <andi@etezian.org>
15110 L:      linux-spi@vger.kernel.org
15111 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
15112 S:      Maintained
15113 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
15114 F:      drivers/spi/spi-s3c*
15115 F:      include/linux/platform_data/spi-s3c64xx.h
15116
15117 SAMSUNG SXGBE DRIVERS
15118 M:      Byungho An <bh74.an@samsung.com>
15119 L:      netdev@vger.kernel.org
15120 S:      Supported
15121 F:      drivers/net/ethernet/samsung/sxgbe/
15122
15123 SAMSUNG THERMAL DRIVER
15124 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15125 L:      linux-pm@vger.kernel.org
15126 L:      linux-samsung-soc@vger.kernel.org
15127 S:      Supported
15128 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
15129 F:      drivers/thermal/samsung/
15130
15131 SAMSUNG USB2 PHY DRIVER
15132 M:      Kamil Debski <kamil@wypas.org>
15133 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15134 L:      linux-kernel@vger.kernel.org
15135 S:      Supported
15136 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
15137 F:      Documentation/driver-api/phy/samsung-usb2.rst
15138 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
15139 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
15140 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
15141 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
15142 F:      drivers/phy/samsung/phy-samsung-usb2.c
15143 F:      drivers/phy/samsung/phy-samsung-usb2.h
15144
15145 SC1200 WDT DRIVER
15146 M:      Zwane Mwaikambo <zwanem@gmail.com>
15147 S:      Maintained
15148 F:      drivers/watchdog/sc1200wdt.c
15149
15150 SCHEDULER
15151 M:      Ingo Molnar <mingo@redhat.com>
15152 M:      Peter Zijlstra <peterz@infradead.org>
15153 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
15154 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
15155 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
15156 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
15157 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
15158 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
15159 L:      linux-kernel@vger.kernel.org
15160 S:      Maintained
15161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
15162 F:      include/linux/preempt.h
15163 F:      include/linux/sched.h
15164 F:      include/linux/wait.h
15165 F:      include/uapi/linux/sched.h
15166 F:      kernel/sched/
15167
15168 SCR24X CHIP CARD INTERFACE DRIVER
15169 M:      Lubomir Rintel <lkundrak@v3.sk>
15170 S:      Supported
15171 F:      drivers/char/pcmcia/scr24x_cs.c
15172
15173 SCSI CDROM DRIVER
15174 M:      Jens Axboe <axboe@kernel.dk>
15175 L:      linux-scsi@vger.kernel.org
15176 S:      Maintained
15177 W:      http://www.kernel.dk
15178 F:      drivers/scsi/sr*
15179
15180 SCSI RDMA PROTOCOL (SRP) INITIATOR
15181 M:      Bart Van Assche <bvanassche@acm.org>
15182 L:      linux-rdma@vger.kernel.org
15183 S:      Supported
15184 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15185 F:      drivers/infiniband/ulp/srp/
15186 F:      include/scsi/srp.h
15187
15188 SCSI RDMA PROTOCOL (SRP) TARGET
15189 M:      Bart Van Assche <bvanassche@acm.org>
15190 L:      linux-rdma@vger.kernel.org
15191 L:      target-devel@vger.kernel.org
15192 S:      Supported
15193 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15194 F:      drivers/infiniband/ulp/srpt/
15195
15196 SCSI SG DRIVER
15197 M:      Doug Gilbert <dgilbert@interlog.com>
15198 L:      linux-scsi@vger.kernel.org
15199 S:      Maintained
15200 W:      http://sg.danny.cz/sg
15201 F:      Documentation/scsi/scsi-generic.rst
15202 F:      drivers/scsi/sg.c
15203 F:      include/scsi/sg.h
15204
15205 SCSI SUBSYSTEM
15206 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
15207 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15208 L:      linux-scsi@vger.kernel.org
15209 S:      Maintained
15210 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
15211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
15212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15213 F:      Documentation/devicetree/bindings/scsi/
15214 F:      drivers/scsi/
15215 F:      include/scsi/
15216
15217 SCSI TAPE DRIVER
15218 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
15219 L:      linux-scsi@vger.kernel.org
15220 S:      Maintained
15221 F:      Documentation/scsi/st.rst
15222 F:      drivers/scsi/st.*
15223 F:      drivers/scsi/st_*.h
15224
15225 SCSI TARGET SUBSYSTEM
15226 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15227 L:      linux-scsi@vger.kernel.org
15228 L:      target-devel@vger.kernel.org
15229 S:      Supported
15230 W:      http://www.linux-iscsi.org
15231 Q:      https://patchwork.kernel.org/project/target-devel/list/
15232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15233 F:      Documentation/target/
15234 F:      drivers/target/
15235 F:      include/target/
15236
15237 SCTP PROTOCOL
15238 M:      Vlad Yasevich <vyasevich@gmail.com>
15239 M:      Neil Horman <nhorman@tuxdriver.com>
15240 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
15241 L:      linux-sctp@vger.kernel.org
15242 S:      Maintained
15243 W:      http://lksctp.sourceforge.net
15244 F:      Documentation/networking/sctp.rst
15245 F:      include/linux/sctp.h
15246 F:      include/net/sctp/
15247 F:      include/uapi/linux/sctp.h
15248 F:      net/sctp/
15249
15250 SCx200 CPU SUPPORT
15251 M:      Jim Cromie <jim.cromie@gmail.com>
15252 S:      Odd Fixes
15253 F:      Documentation/i2c/busses/scx200_acb.rst
15254 F:      arch/x86/platform/scx200/
15255 F:      drivers/i2c/busses/scx200*
15256 F:      drivers/mtd/maps/scx200_docflash.c
15257 F:      drivers/watchdog/scx200_wdt.c
15258 F:      include/linux/scx200.h
15259
15260 SCx200 GPIO DRIVER
15261 M:      Jim Cromie <jim.cromie@gmail.com>
15262 S:      Maintained
15263 F:      drivers/char/scx200_gpio.c
15264 F:      include/linux/scx200_gpio.h
15265
15266 SCx200 HRT CLOCKSOURCE DRIVER
15267 M:      Jim Cromie <jim.cromie@gmail.com>
15268 S:      Maintained
15269 F:      drivers/clocksource/scx200_hrt.c
15270
15271 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15272 M:      Sascha Sommer <saschasommer@freenet.de>
15273 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
15274 S:      Maintained
15275 F:      drivers/mmc/host/sdricoh_cs.c
15276
15277 SECO BOARDS CEC DRIVER
15278 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
15279 S:      Maintained
15280 F:      drivers/media/platform/seco-cec/seco-cec.c
15281 F:      drivers/media/platform/seco-cec/seco-cec.h
15282
15283 SECURE COMPUTING
15284 M:      Kees Cook <keescook@chromium.org>
15285 R:      Andy Lutomirski <luto@amacapital.net>
15286 R:      Will Drewry <wad@chromium.org>
15287 S:      Supported
15288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15289 F:      Documentation/userspace-api/seccomp_filter.rst
15290 F:      include/linux/seccomp.h
15291 F:      include/uapi/linux/seccomp.h
15292 F:      kernel/seccomp.c
15293 F:      tools/testing/selftests/kselftest_harness.h
15294 F:      tools/testing/selftests/seccomp/*
15295 K:      \bsecure_computing
15296 K:      \bTIF_SECCOMP\b
15297
15298 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15299 M:      Al Cooper <alcooperx@gmail.com>
15300 L:      linux-mmc@vger.kernel.org
15301 L:      bcm-kernel-feedback-list@broadcom.com
15302 S:      Maintained
15303 F:      drivers/mmc/host/sdhci-brcmstb*
15304
15305 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15306 M:      Adrian Hunter <adrian.hunter@intel.com>
15307 L:      linux-mmc@vger.kernel.org
15308 S:      Maintained
15309 F:      drivers/mmc/host/sdhci*
15310 F:      include/linux/mmc/sdhci*
15311
15312 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15313 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15314 L:      linux-mmc@vger.kernel.org
15315 S:      Supported
15316 F:      drivers/mmc/host/sdhci-of-at91.c
15317
15318 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15319 M:      Ben Dooks <ben-linux@fluff.org>
15320 M:      Jaehoon Chung <jh80.chung@samsung.com>
15321 L:      linux-mmc@vger.kernel.org
15322 S:      Maintained
15323 F:      drivers/mmc/host/sdhci-s3c*
15324
15325 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15326 M:      Viresh Kumar <vireshk@kernel.org>
15327 L:      linux-mmc@vger.kernel.org
15328 S:      Maintained
15329 F:      drivers/mmc/host/sdhci-spear.c
15330
15331 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15332 M:      Kishon Vijay Abraham I <kishon@ti.com>
15333 L:      linux-mmc@vger.kernel.org
15334 S:      Maintained
15335 F:      drivers/mmc/host/sdhci-omap.c
15336
15337 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15338 M:      Jonathan Derrick <jonathan.derrick@intel.com>
15339 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
15340 L:      linux-block@vger.kernel.org
15341 S:      Supported
15342 F:      block/opal_proto.h
15343 F:      block/sed*
15344 F:      include/linux/sed*
15345 F:      include/uapi/linux/sed*
15346
15347 SECURITY CONTACT
15348 M:      Security Officers <security@kernel.org>
15349 S:      Supported
15350
15351 SECURITY SUBSYSTEM
15352 M:      James Morris <jmorris@namei.org>
15353 M:      "Serge E. Hallyn" <serge@hallyn.com>
15354 L:      linux-security-module@vger.kernel.org (suggested Cc:)
15355 S:      Supported
15356 W:      http://kernsec.org/
15357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15358 F:      security/
15359 X:      security/selinux/
15360
15361 SELINUX SECURITY MODULE
15362 M:      Paul Moore <paul@paul-moore.com>
15363 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
15364 M:      Eric Paris <eparis@parisplace.org>
15365 L:      selinux@vger.kernel.org
15366 S:      Supported
15367 W:      https://selinuxproject.org
15368 W:      https://github.com/SELinuxProject
15369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15370 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15371 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15372 F:      Documentation/admin-guide/LSM/SELinux.rst
15373 F:      include/uapi/linux/selinux_netlink.h
15374 F:      scripts/selinux/
15375 F:      security/selinux/
15376
15377 SENSABLE PHANTOM
15378 M:      Jiri Slaby <jirislaby@gmail.com>
15379 S:      Maintained
15380 F:      drivers/misc/phantom.c
15381 F:      include/uapi/linux/phantom.h
15382
15383 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15384 M:      Tomasz Duszynski <tduszyns@gmail.com>
15385 S:      Maintained
15386 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15387 F:      drivers/iio/chemical/sps30.c
15388
15389 SERIAL DEVICE BUS
15390 M:      Rob Herring <robh@kernel.org>
15391 L:      linux-serial@vger.kernel.org
15392 S:      Maintained
15393 F:      Documentation/devicetree/bindings/serial/serial.yaml
15394 F:      drivers/tty/serdev/
15395 F:      include/linux/serdev.h
15396
15397 SERIAL DRIVERS
15398 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15399 L:      linux-serial@vger.kernel.org
15400 S:      Maintained
15401 F:      Documentation/devicetree/bindings/serial/
15402 F:      drivers/tty/serial/
15403
15404 SERIAL IR RECEIVER
15405 M:      Sean Young <sean@mess.org>
15406 L:      linux-media@vger.kernel.org
15407 S:      Maintained
15408 F:      drivers/media/rc/serial_ir.c
15409
15410 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15411 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15412 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15413 S:      Maintained
15414 F:      Documentation/devicetree/bindings/slimbus/
15415 F:      drivers/slimbus/
15416 F:      include/linux/slimbus.h
15417
15418 SFC NETWORK DRIVER
15419 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
15420 M:      Edward Cree <ecree@solarflare.com>
15421 M:      Martin Habets <mhabets@solarflare.com>
15422 L:      netdev@vger.kernel.org
15423 S:      Supported
15424 F:      drivers/net/ethernet/sfc/
15425
15426 SFF/SFP/SFP+ MODULE SUPPORT
15427 M:      Russell King <linux@armlinux.org.uk>
15428 L:      netdev@vger.kernel.org
15429 S:      Maintained
15430 F:      drivers/net/phy/phylink.c
15431 F:      drivers/net/phy/sfp*
15432 F:      include/linux/phylink.h
15433 F:      include/linux/sfp.h
15434 K:      phylink
15435
15436 SGI GRU DRIVER
15437 M:      Dimitri Sivanich <sivanich@sgi.com>
15438 S:      Maintained
15439 F:      drivers/misc/sgi-gru/
15440
15441 SGI XP/XPC/XPNET DRIVER
15442 M:      Cliff Whickman <cpw@sgi.com>
15443 M:      Robin Holt <robinmholt@gmail.com>
15444 S:      Maintained
15445 F:      drivers/misc/sgi-xp/
15446
15447 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
15448 M:      Ursula Braun <ubraun@linux.ibm.com>
15449 M:      Karsten Graul <kgraul@linux.ibm.com>
15450 L:      linux-s390@vger.kernel.org
15451 S:      Supported
15452 W:      http://www.ibm.com/developerworks/linux/linux390/
15453 F:      net/smc/
15454
15455 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
15456 M:      Linus Walleij <linus.walleij@linaro.org>
15457 L:      linux-iio@vger.kernel.org
15458 S:      Maintained
15459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
15460 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
15461 F:      drivers/iio/light/gp2ap002.c
15462
15463 SHARP RJ54N1CB0C SENSOR DRIVER
15464 M:      Jacopo Mondi <jacopo@jmondi.org>
15465 L:      linux-media@vger.kernel.org
15466 S:      Odd fixes
15467 T:      git git://linuxtv.org/media_tree.git
15468 F:      drivers/media/i2c/rj54n1cb0c.c
15469 F:      include/media/i2c/rj54n1cb0c.h
15470
15471 SH_VOU V4L2 OUTPUT DRIVER
15472 L:      linux-media@vger.kernel.org
15473 S:      Orphan
15474 F:      drivers/media/platform/sh_vou.c
15475 F:      include/media/drv-intf/sh_vou.h
15476
15477 SI2157 MEDIA DRIVER
15478 M:      Antti Palosaari <crope@iki.fi>
15479 L:      linux-media@vger.kernel.org
15480 S:      Maintained
15481 W:      https://linuxtv.org
15482 W:      http://palosaari.fi/linux/
15483 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15484 T:      git git://linuxtv.org/anttip/media_tree.git
15485 F:      drivers/media/tuners/si2157*
15486
15487 SI2165 MEDIA DRIVER
15488 M:      Matthias Schwarzott <zzam@gentoo.org>
15489 L:      linux-media@vger.kernel.org
15490 S:      Maintained
15491 W:      https://linuxtv.org
15492 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15493 F:      drivers/media/dvb-frontends/si2165*
15494
15495 SI2168 MEDIA DRIVER
15496 M:      Antti Palosaari <crope@iki.fi>
15497 L:      linux-media@vger.kernel.org
15498 S:      Maintained
15499 W:      https://linuxtv.org
15500 W:      http://palosaari.fi/linux/
15501 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15502 T:      git git://linuxtv.org/anttip/media_tree.git
15503 F:      drivers/media/dvb-frontends/si2168*
15504
15505 SI470X FM RADIO RECEIVER I2C DRIVER
15506 M:      Hans Verkuil <hverkuil@xs4all.nl>
15507 L:      linux-media@vger.kernel.org
15508 S:      Odd Fixes
15509 W:      https://linuxtv.org
15510 T:      git git://linuxtv.org/media_tree.git
15511 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
15512
15513 SI470X FM RADIO RECEIVER USB DRIVER
15514 M:      Hans Verkuil <hverkuil@xs4all.nl>
15515 L:      linux-media@vger.kernel.org
15516 S:      Maintained
15517 W:      https://linuxtv.org
15518 T:      git git://linuxtv.org/media_tree.git
15519 F:      drivers/media/radio/si470x/radio-si470x-common.c
15520 F:      drivers/media/radio/si470x/radio-si470x-usb.c
15521 F:      drivers/media/radio/si470x/radio-si470x.h
15522
15523 SI4713 FM RADIO TRANSMITTER I2C DRIVER
15524 M:      Eduardo Valentin <edubezval@gmail.com>
15525 L:      linux-media@vger.kernel.org
15526 S:      Odd Fixes
15527 W:      https://linuxtv.org
15528 T:      git git://linuxtv.org/media_tree.git
15529 F:      drivers/media/radio/si4713/si4713.?
15530
15531 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
15532 M:      Eduardo Valentin <edubezval@gmail.com>
15533 L:      linux-media@vger.kernel.org
15534 S:      Odd Fixes
15535 W:      https://linuxtv.org
15536 T:      git git://linuxtv.org/media_tree.git
15537 F:      drivers/media/radio/si4713/radio-platform-si4713.c
15538
15539 SI4713 FM RADIO TRANSMITTER USB DRIVER
15540 M:      Hans Verkuil <hverkuil@xs4all.nl>
15541 L:      linux-media@vger.kernel.org
15542 S:      Maintained
15543 W:      https://linuxtv.org
15544 T:      git git://linuxtv.org/media_tree.git
15545 F:      drivers/media/radio/si4713/radio-usb-si4713.c
15546
15547 SIANO DVB DRIVER
15548 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15549 L:      linux-media@vger.kernel.org
15550 S:      Odd fixes
15551 W:      https://linuxtv.org
15552 T:      git git://linuxtv.org/media_tree.git
15553 F:      drivers/media/common/siano/
15554 F:      drivers/media/mmc/siano/
15555 F:      drivers/media/usb/siano/
15556 F:      drivers/media/usb/siano/
15557
15558 SIFIVE DRIVERS
15559 M:      Palmer Dabbelt <palmer@dabbelt.com>
15560 M:      Paul Walmsley <paul.walmsley@sifive.com>
15561 L:      linux-riscv@lists.infradead.org
15562 S:      Supported
15563 T:      git git://github.com/sifive/riscv-linux.git
15564 N:      sifive
15565 K:      [^@]sifive
15566
15567 SIFIVE FU540 SYSTEM-ON-CHIP
15568 M:      Paul Walmsley <paul.walmsley@sifive.com>
15569 M:      Palmer Dabbelt <palmer@dabbelt.com>
15570 L:      linux-riscv@lists.infradead.org
15571 S:      Supported
15572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
15573 N:      fu540
15574 K:      fu540
15575
15576 SIFIVE PDMA DRIVER
15577 M:      Green Wan <green.wan@sifive.com>
15578 S:      Maintained
15579 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
15580 F:      drivers/dma/sf-pdma/
15581
15582 SILEAD TOUCHSCREEN DRIVER
15583 M:      Hans de Goede <hdegoede@redhat.com>
15584 L:      linux-input@vger.kernel.org
15585 L:      platform-driver-x86@vger.kernel.org
15586 S:      Maintained
15587 F:      drivers/input/touchscreen/silead.c
15588 F:      drivers/platform/x86/touchscreen_dmi.c
15589
15590 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
15591 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
15592 S:      Supported
15593 F:      drivers/staging/wfx/
15594
15595 SILICON MOTION SM712 FRAME BUFFER DRIVER
15596 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15597 M:      Teddy Wang <teddy.wang@siliconmotion.com>
15598 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15599 L:      linux-fbdev@vger.kernel.org
15600 S:      Maintained
15601 F:      Documentation/fb/sm712fb.rst
15602 F:      drivers/video/fbdev/sm712*
15603
15604 SIMPLE FIRMWARE INTERFACE (SFI)
15605 S:      Obsolete
15606 W:      http://simplefirmware.org/
15607 F:      arch/x86/platform/sfi/
15608 F:      drivers/sfi/
15609 F:      include/linux/sfi*.h
15610
15611 SIMPLEFB FB DRIVER
15612 M:      Hans de Goede <hdegoede@redhat.com>
15613 L:      linux-fbdev@vger.kernel.org
15614 S:      Maintained
15615 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
15616 F:      drivers/video/fbdev/simplefb.c
15617 F:      include/linux/platform_data/simplefb.h
15618
15619 SIMTEC EB110ATX (Chalice CATS)
15620 M:      Vincent Sanders <vince@simtec.co.uk>
15621 M:      Simtec Linux Team <linux@simtec.co.uk>
15622 S:      Supported
15623 W:      http://www.simtec.co.uk/products/EB110ATX/
15624
15625 SIMTEC EB2410ITX (BAST)
15626 M:      Vincent Sanders <vince@simtec.co.uk>
15627 M:      Simtec Linux Team <linux@simtec.co.uk>
15628 S:      Supported
15629 W:      http://www.simtec.co.uk/products/EB2410ITX/
15630 F:      arch/arm/mach-s3c24xx/bast-ide.c
15631 F:      arch/arm/mach-s3c24xx/bast-irq.c
15632 F:      arch/arm/mach-s3c24xx/mach-bast.c
15633
15634 SIOX
15635 M:      Thorsten Scherer <t.scherer@eckelmann.de>
15636 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15637 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15638 S:      Supported
15639 F:      drivers/gpio/gpio-siox.c
15640 F:      drivers/siox/*
15641 F:      include/trace/events/siox.h
15642
15643 SIPHASH PRF ROUTINES
15644 M:      Jason A. Donenfeld <Jason@zx2c4.com>
15645 S:      Maintained
15646 F:      include/linux/siphash.h
15647 F:      lib/siphash.c
15648 F:      lib/test_siphash.c
15649
15650 SIS 190 ETHERNET DRIVER
15651 M:      Francois Romieu <romieu@fr.zoreil.com>
15652 L:      netdev@vger.kernel.org
15653 S:      Maintained
15654 F:      drivers/net/ethernet/sis/sis190.c
15655
15656 SIS 900/7016 FAST ETHERNET DRIVER
15657 M:      Daniele Venzano <venza@brownhat.org>
15658 L:      netdev@vger.kernel.org
15659 S:      Maintained
15660 W:      http://www.brownhat.org/sis900.html
15661 F:      drivers/net/ethernet/sis/sis900.*
15662
15663 SIS FRAMEBUFFER DRIVER
15664 M:      Thomas Winischhofer <thomas@winischhofer.net>
15665 S:      Maintained
15666 W:      http://www.winischhofer.net/linuxsisvga.shtml
15667 F:      Documentation/fb/sisfb.rst
15668 F:      drivers/video/fbdev/sis/
15669 F:      include/video/sisfb.h
15670
15671 SIS USB2VGA DRIVER
15672 M:      Thomas Winischhofer <thomas@winischhofer.net>
15673 S:      Maintained
15674 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
15675 F:      drivers/usb/misc/sisusbvga/
15676
15677 SLAB ALLOCATOR
15678 M:      Christoph Lameter <cl@linux.com>
15679 M:      Pekka Enberg <penberg@kernel.org>
15680 M:      David Rientjes <rientjes@google.com>
15681 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
15682 M:      Andrew Morton <akpm@linux-foundation.org>
15683 L:      linux-mm@kvack.org
15684 S:      Maintained
15685 F:      include/linux/sl?b*.h
15686 F:      mm/sl?b*
15687
15688 SLEEPABLE READ-COPY UPDATE (SRCU)
15689 M:      Lai Jiangshan <jiangshanlai@gmail.com>
15690 M:      "Paul E. McKenney" <paulmck@kernel.org>
15691 M:      Josh Triplett <josh@joshtriplett.org>
15692 R:      Steven Rostedt <rostedt@goodmis.org>
15693 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15694 L:      rcu@vger.kernel.org
15695 S:      Supported
15696 W:      http://www.rdrop.com/users/paulmck/RCU/
15697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15698 F:      include/linux/srcu*.h
15699 F:      kernel/rcu/srcu*.c
15700
15701 SMACK SECURITY MODULE
15702 M:      Casey Schaufler <casey@schaufler-ca.com>
15703 L:      linux-security-module@vger.kernel.org
15704 S:      Maintained
15705 W:      http://schaufler-ca.com
15706 T:      git git://github.com/cschaufler/smack-next
15707 F:      Documentation/admin-guide/LSM/Smack.rst
15708 F:      security/smack/
15709
15710 SMC91x ETHERNET DRIVER
15711 M:      Nicolas Pitre <nico@fluxnic.net>
15712 S:      Odd Fixes
15713 F:      drivers/net/ethernet/smsc/smc91x.*
15714
15715 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
15716 M:      Mark Rutland <mark.rutland@arm.com>
15717 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15718 M:      Sudeep Holla <sudeep.holla@arm.com>
15719 L:      linux-arm-kernel@lists.infradead.org
15720 S:      Maintained
15721 F:      drivers/firmware/smccc/
15722 F:      include/linux/arm-smccc.h
15723
15724 SMIA AND SMIA++ IMAGE SENSOR DRIVER
15725 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15726 L:      linux-media@vger.kernel.org
15727 S:      Maintained
15728 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
15729 F:      drivers/media/i2c/smiapp-pll.c
15730 F:      drivers/media/i2c/smiapp-pll.h
15731 F:      drivers/media/i2c/smiapp/
15732 F:      include/uapi/linux/smiapp.h
15733
15734 SMM665 HARDWARE MONITOR DRIVER
15735 M:      Guenter Roeck <linux@roeck-us.net>
15736 L:      linux-hwmon@vger.kernel.org
15737 S:      Maintained
15738 F:      Documentation/hwmon/smm665.rst
15739 F:      drivers/hwmon/smm665.c
15740
15741 SMSC EMC2103 HARDWARE MONITOR DRIVER
15742 M:      Steve Glendinning <steve.glendinning@shawell.net>
15743 L:      linux-hwmon@vger.kernel.org
15744 S:      Maintained
15745 F:      Documentation/hwmon/emc2103.rst
15746 F:      drivers/hwmon/emc2103.c
15747
15748 SMSC SCH5627 HARDWARE MONITOR DRIVER
15749 M:      Hans de Goede <hdegoede@redhat.com>
15750 L:      linux-hwmon@vger.kernel.org
15751 S:      Supported
15752 F:      Documentation/hwmon/sch5627.rst
15753 F:      drivers/hwmon/sch5627.c
15754
15755 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
15756 M:      Steve Glendinning <steve.glendinning@shawell.net>
15757 L:      linux-fbdev@vger.kernel.org
15758 S:      Maintained
15759 F:      drivers/video/fbdev/smscufx.c
15760
15761 SMSC47B397 HARDWARE MONITOR DRIVER
15762 M:      Jean Delvare <jdelvare@suse.com>
15763 L:      linux-hwmon@vger.kernel.org
15764 S:      Maintained
15765 F:      Documentation/hwmon/smsc47b397.rst
15766 F:      drivers/hwmon/smsc47b397.c
15767
15768 SMSC911x ETHERNET DRIVER
15769 M:      Steve Glendinning <steve.glendinning@shawell.net>
15770 L:      netdev@vger.kernel.org
15771 S:      Maintained
15772 F:      drivers/net/ethernet/smsc/smsc911x.*
15773 F:      include/linux/smsc911x.h
15774
15775 SMSC9420 PCI ETHERNET DRIVER
15776 M:      Steve Glendinning <steve.glendinning@shawell.net>
15777 L:      netdev@vger.kernel.org
15778 S:      Maintained
15779 F:      drivers/net/ethernet/smsc/smsc9420.*
15780
15781 SOC-CAMERA V4L2 SUBSYSTEM
15782 L:      linux-media@vger.kernel.org
15783 S:      Orphan
15784 T:      git git://linuxtv.org/media_tree.git
15785 F:      drivers/staging/media/soc_camera/
15786 F:      include/media/soc_camera.h
15787
15788 SOCIONEXT (SNI) AVE NETWORK DRIVER
15789 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15790 L:      netdev@vger.kernel.org
15791 S:      Maintained
15792 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
15793 F:      drivers/net/ethernet/socionext/sni_ave.c
15794
15795 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
15796 M:      Jassi Brar <jaswinder.singh@linaro.org>
15797 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15798 L:      netdev@vger.kernel.org
15799 S:      Maintained
15800 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
15801 F:      drivers/net/ethernet/socionext/netsec.c
15802
15803 SOCIONEXT (SNI) Synquacer SPI DRIVER
15804 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
15805 M:      Jassi Brar <jaswinder.singh@linaro.org>
15806 L:      linux-spi@vger.kernel.org
15807 S:      Maintained
15808 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
15809 F:      drivers/spi/spi-synquacer.c
15810
15811 SOCIONEXT SYNQUACER I2C DRIVER
15812 M:      Ard Biesheuvel <ardb@kernel.org>
15813 L:      linux-i2c@vger.kernel.org
15814 S:      Maintained
15815 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
15816 F:      drivers/i2c/busses/i2c-synquacer.c
15817
15818 SOCIONEXT UNIPHIER SOUND DRIVER
15819 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15820 S:      Orphan
15821 F:      sound/soc/uniphier/
15822
15823 SOEKRIS NET48XX LED SUPPORT
15824 M:      Chris Boot <bootc@bootc.net>
15825 S:      Maintained
15826 F:      drivers/leds/leds-net48xx.c
15827
15828 SOFT-IWARP DRIVER (siw)
15829 M:      Bernard Metzler <bmt@zurich.ibm.com>
15830 L:      linux-rdma@vger.kernel.org
15831 S:      Supported
15832 F:      drivers/infiniband/sw/siw/
15833 F:      include/uapi/rdma/siw-abi.h
15834
15835 SOFT-ROCE DRIVER (rxe)
15836 M:      Zhu Yanjun <yanjunz@mellanox.com>
15837 L:      linux-rdma@vger.kernel.org
15838 S:      Supported
15839 F:      drivers/infiniband/sw/rxe/
15840 F:      include/uapi/rdma/rdma_user_rxe.h
15841
15842 SOFTLOGIC 6x10 MPEG CODEC
15843 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
15844 M:      Anton Sviridenko <anton@corp.bluecherry.net>
15845 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
15846 M:      Andrey Utkin <andrey_utkin@fastmail.com>
15847 M:      Ismael Luceno <ismael@iodev.co.uk>
15848 L:      linux-media@vger.kernel.org
15849 S:      Supported
15850 F:      drivers/media/pci/solo6x10/
15851
15852 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
15853 M:      James Morse <james.morse@arm.com>
15854 L:      linux-arm-kernel@lists.infradead.org
15855 S:      Maintained
15856 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
15857 F:      drivers/firmware/arm_sdei.c
15858 F:      include/linux/arm_sdei.h
15859 F:      include/uapi/linux/arm_sdei.h
15860
15861 SOFTWARE RAID (Multiple Disks) SUPPORT
15862 M:      Song Liu <song@kernel.org>
15863 L:      linux-raid@vger.kernel.org
15864 S:      Supported
15865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
15866 F:      drivers/md/Kconfig
15867 F:      drivers/md/Makefile
15868 F:      drivers/md/md*
15869 F:      drivers/md/raid*
15870 F:      include/linux/raid/
15871 F:      include/uapi/linux/raid/
15872
15873 SOLIDRUN CLEARFOG SUPPORT
15874 M:      Russell King <linux@armlinux.org.uk>
15875 S:      Maintained
15876 F:      arch/arm/boot/dts/armada-388-clearfog*
15877 F:      arch/arm/boot/dts/armada-38x-solidrun-*
15878
15879 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
15880 M:      Russell King <linux@armlinux.org.uk>
15881 S:      Maintained
15882 F:      arch/arm/boot/dts/imx6*-cubox-i*
15883 F:      arch/arm/boot/dts/imx6*-hummingboard*
15884 F:      arch/arm/boot/dts/imx6*-sr-*
15885
15886 SONIC NETWORK DRIVER
15887 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
15888 L:      netdev@vger.kernel.org
15889 S:      Maintained
15890 F:      drivers/net/ethernet/natsemi/sonic.*
15891
15892 SONICS SILICON BACKPLANE DRIVER (SSB)
15893 M:      Michael Buesch <m@bues.ch>
15894 L:      linux-wireless@vger.kernel.org
15895 S:      Maintained
15896 F:      drivers/ssb/
15897 F:      include/linux/ssb/
15898
15899 SONY IMX214 SENSOR DRIVER
15900 M:      Ricardo Ribalda <ribalda@kernel.org>
15901 L:      linux-media@vger.kernel.org
15902 S:      Maintained
15903 T:      git git://linuxtv.org/media_tree.git
15904 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
15905 F:      drivers/media/i2c/imx214.c
15906
15907 SONY IMX219 SENSOR DRIVER
15908 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
15909 L:      linux-media@vger.kernel.org
15910 S:      Maintained
15911 T:      git git://linuxtv.org/media_tree.git
15912 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
15913 F:      drivers/media/i2c/imx219.c
15914
15915 SONY IMX258 SENSOR DRIVER
15916 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15917 L:      linux-media@vger.kernel.org
15918 S:      Maintained
15919 T:      git git://linuxtv.org/media_tree.git
15920 F:      drivers/media/i2c/imx258.c
15921
15922 SONY IMX274 SENSOR DRIVER
15923 M:      Leon Luo <leonl@leopardimaging.com>
15924 L:      linux-media@vger.kernel.org
15925 S:      Maintained
15926 T:      git git://linuxtv.org/media_tree.git
15927 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
15928 F:      drivers/media/i2c/imx274.c
15929
15930 SONY IMX290 SENSOR DRIVER
15931 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15932 L:      linux-media@vger.kernel.org
15933 S:      Maintained
15934 T:      git git://linuxtv.org/media_tree.git
15935 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
15936 F:      drivers/media/i2c/imx290.c
15937
15938 SONY IMX319 SENSOR DRIVER
15939 M:      Bingbu Cao <bingbu.cao@intel.com>
15940 L:      linux-media@vger.kernel.org
15941 S:      Maintained
15942 T:      git git://linuxtv.org/media_tree.git
15943 F:      drivers/media/i2c/imx319.c
15944
15945 SONY IMX355 SENSOR DRIVER
15946 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15947 L:      linux-media@vger.kernel.org
15948 S:      Maintained
15949 T:      git git://linuxtv.org/media_tree.git
15950 F:      drivers/media/i2c/imx355.c
15951
15952 SONY MEMORYSTICK SUBSYSTEM
15953 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15954 M:      Alex Dubov <oakad@yahoo.com>
15955 M:      Ulf Hansson <ulf.hansson@linaro.org>
15956 L:      linux-mmc@vger.kernel.org
15957 S:      Maintained
15958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15959 F:      drivers/memstick/
15960 F:      include/linux/memstick.h
15961
15962 SONY VAIO CONTROL DEVICE DRIVER
15963 M:      Mattia Dongili <malattia@linux.it>
15964 L:      platform-driver-x86@vger.kernel.org
15965 S:      Maintained
15966 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
15967 F:      Documentation/admin-guide/laptops/sony-laptop.rst
15968 F:      drivers/char/sonypi.c
15969 F:      drivers/platform/x86/sony-laptop.c
15970 F:      include/linux/sony-laptop.h
15971
15972 SOUND
15973 M:      Jaroslav Kysela <perex@perex.cz>
15974 M:      Takashi Iwai <tiwai@suse.com>
15975 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15976 S:      Maintained
15977 W:      http://www.alsa-project.org/
15978 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
15979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15980 F:      Documentation/sound/
15981 F:      include/sound/
15982 F:      include/uapi/sound/
15983 F:      sound/
15984
15985 SOUND - COMPRESSED AUDIO
15986 M:      Vinod Koul <vkoul@kernel.org>
15987 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15988 S:      Supported
15989 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15990 F:      Documentation/sound/designs/compress-offload.rst
15991 F:      include/sound/compress_driver.h
15992 F:      include/uapi/sound/compress_*
15993 F:      sound/core/compress_offload.c
15994 F:      sound/soc/soc-compress.c
15995
15996 SOUND - DMAENGINE HELPERS
15997 M:      Lars-Peter Clausen <lars@metafoo.de>
15998 S:      Supported
15999 F:      include/sound/dmaengine_pcm.h
16000 F:      sound/core/pcm_dmaengine.c
16001 F:      sound/soc/soc-generic-dmaengine-pcm.c
16002
16003 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
16004 M:      Liam Girdwood <lgirdwood@gmail.com>
16005 M:      Mark Brown <broonie@kernel.org>
16006 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16007 S:      Supported
16008 W:      http://alsa-project.org/main/index.php/ASoC
16009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
16010 F:      Documentation/devicetree/bindings/sound/
16011 F:      Documentation/sound/soc/
16012 F:      include/dt-bindings/sound/
16013 F:      include/sound/soc*
16014 F:      sound/soc/
16015
16016 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
16017 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16018 M:      Liam Girdwood <lgirdwood@gmail.com>
16019 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
16020 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
16021 M:      Daniel Baluta <daniel.baluta@nxp.com>
16022 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
16023 S:      Supported
16024 W:      https://github.com/thesofproject/linux/
16025 F:      sound/soc/sof/
16026
16027 SOUNDWIRE SUBSYSTEM
16028 M:      Vinod Koul <vkoul@kernel.org>
16029 M:      Sanyog Kale <sanyog.r.kale@intel.com>
16030 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16031 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16032 S:      Supported
16033 F:      Documentation/driver-api/soundwire/
16034 F:      drivers/soundwire/
16035 F:      include/linux/soundwire/
16036
16037 SP2 MEDIA DRIVER
16038 M:      Olli Salonen <olli.salonen@iki.fi>
16039 L:      linux-media@vger.kernel.org
16040 S:      Maintained
16041 W:      https://linuxtv.org
16042 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16043 F:      drivers/media/dvb-frontends/sp2*
16044
16045 SPARC + UltraSPARC (sparc/sparc64)
16046 M:      "David S. Miller" <davem@davemloft.net>
16047 L:      sparclinux@vger.kernel.org
16048 S:      Maintained
16049 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
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:      arch/sparc/
16053 F:      drivers/sbus/
16054
16055 SPARC SERIAL DRIVERS
16056 M:      "David S. Miller" <davem@davemloft.net>
16057 L:      sparclinux@vger.kernel.org
16058 S:      Maintained
16059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16061 F:      drivers/tty/serial/suncore.c
16062 F:      drivers/tty/serial/sunhv.c
16063 F:      drivers/tty/serial/sunsab.c
16064 F:      drivers/tty/serial/sunsab.h
16065 F:      drivers/tty/serial/sunsu.c
16066 F:      drivers/tty/serial/sunzilog.c
16067 F:      drivers/tty/serial/sunzilog.h
16068 F:      drivers/tty/vcc.c
16069 F:      include/linux/sunserialcore.h
16070
16071 SPARSE CHECKER
16072 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
16073 L:      linux-sparse@vger.kernel.org
16074 S:      Maintained
16075 W:      https://sparse.docs.kernel.org/
16076 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
16077 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
16078 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
16079 F:      include/linux/compiler.h
16080
16081 SPEAR CLOCK FRAMEWORK SUPPORT
16082 M:      Viresh Kumar <vireshk@kernel.org>
16083 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16084 S:      Maintained
16085 W:      http://www.st.com/spear
16086 F:      drivers/clk/spear/
16087
16088 SPEAR PLATFORM SUPPORT
16089 M:      Viresh Kumar <vireshk@kernel.org>
16090 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
16091 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16092 S:      Maintained
16093 W:      http://www.st.com/spear
16094 F:      arch/arm/boot/dts/spear*
16095 F:      arch/arm/mach-spear/
16096
16097 SPI NOR SUBSYSTEM
16098 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
16099 L:      linux-mtd@lists.infradead.org
16100 S:      Maintained
16101 W:      http://www.linux-mtd.infradead.org/
16102 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
16103 C:      irc://irc.oftc.net/mtd
16104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
16105 F:      drivers/mtd/spi-nor/
16106 F:      include/linux/mtd/spi-nor.h
16107
16108 SPI SUBSYSTEM
16109 M:      Mark Brown <broonie@kernel.org>
16110 L:      linux-spi@vger.kernel.org
16111 S:      Maintained
16112 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
16113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
16114 F:      Documentation/devicetree/bindings/spi/
16115 F:      Documentation/spi/
16116 F:      drivers/spi/
16117 F:      include/linux/spi/
16118 F:      include/uapi/linux/spi/
16119 F:      tools/spi/
16120
16121 SPIDERNET NETWORK DRIVER for CELL
16122 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
16123 L:      netdev@vger.kernel.org
16124 S:      Supported
16125 F:      Documentation/networking/device_drivers/toshiba/spider_net.rst
16126 F:      drivers/net/ethernet/toshiba/spider_net*
16127
16128 SPMI SUBSYSTEM
16129 R:      Stephen Boyd <sboyd@kernel.org>
16130 L:      linux-arm-msm@vger.kernel.org
16131 F:      Documentation/devicetree/bindings/spmi/
16132 F:      drivers/spmi/
16133 F:      include/dt-bindings/spmi/spmi.h
16134 F:      include/linux/spmi.h
16135 F:      include/trace/events/spmi.h
16136
16137 SPU FILE SYSTEM
16138 M:      Jeremy Kerr <jk@ozlabs.org>
16139 L:      linuxppc-dev@lists.ozlabs.org
16140 S:      Supported
16141 W:      http://www.ibm.com/developerworks/power/cell/
16142 F:      Documentation/filesystems/spufs/spufs.rst
16143 F:      arch/powerpc/platforms/cell/spufs/
16144
16145 SQUASHFS FILE SYSTEM
16146 M:      Phillip Lougher <phillip@squashfs.org.uk>
16147 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
16148 S:      Maintained
16149 W:      http://squashfs.org.uk
16150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
16151 F:      Documentation/filesystems/squashfs.rst
16152 F:      fs/squashfs/
16153
16154 SRM (Alpha) environment access
16155 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
16156 S:      Maintained
16157 F:      arch/alpha/kernel/srm_env.c
16158
16159 ST LSM6DSx IMU IIO DRIVER
16160 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
16161 L:      linux-iio@vger.kernel.org
16162 S:      Maintained
16163 W:      http://www.st.com/
16164 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
16165 F:      drivers/iio/imu/st_lsm6dsx/
16166
16167 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
16168 M:      Mickael Guene <mickael.guene@st.com>
16169 L:      linux-media@vger.kernel.org
16170 S:      Maintained
16171 T:      git git://linuxtv.org/media_tree.git
16172 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
16173 F:      drivers/media/i2c/st-mipid02.c
16174
16175 ST STM32 I2C/SMBUS DRIVER
16176 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
16177 L:      linux-i2c@vger.kernel.org
16178 S:      Maintained
16179 F:      drivers/i2c/busses/i2c-stm32*
16180
16181 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
16182 M:      Song Qiang <songqiang1304521@gmail.com>
16183 L:      linux-iio@vger.kernel.org
16184 S:      Maintained
16185 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
16186 F:      drivers/iio/proximity/vl53l0x-i2c.c
16187
16188 STABLE BRANCH
16189 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16190 M:      Sasha Levin <sashal@kernel.org>
16191 L:      stable@vger.kernel.org
16192 S:      Supported
16193 F:      Documentation/process/stable-kernel-rules.rst
16194
16195 STAGING - ATOMISP DRIVER
16196 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16197 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
16198 L:      linux-media@vger.kernel.org
16199 S:      Maintained
16200 F:      drivers/staging/media/atomisp/
16201
16202 STAGING - COMEDI
16203 M:      Ian Abbott <abbotti@mev.co.uk>
16204 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
16205 S:      Odd Fixes
16206 F:      drivers/staging/comedi/
16207
16208 STAGING - FIELDBUS SUBSYSTEM
16209 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16210 S:      Maintained
16211 F:      drivers/staging/fieldbus/*
16212 F:      drivers/staging/fieldbus/Documentation/
16213
16214 STAGING - HMS ANYBUS-S BUS
16215 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16216 S:      Maintained
16217 F:      drivers/staging/fieldbus/anybuss/
16218
16219 STAGING - INDUSTRIAL IO
16220 M:      Jonathan Cameron <jic23@kernel.org>
16221 L:      linux-iio@vger.kernel.org
16222 S:      Odd Fixes
16223 F:      Documentation/devicetree/bindings/staging/iio/
16224 F:      drivers/staging/iio/
16225
16226 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
16227 M:      Marc Dietrich <marvin24@gmx.de>
16228 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
16229 L:      linux-tegra@vger.kernel.org
16230 S:      Maintained
16231 F:      drivers/staging/nvec/
16232
16233 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
16234 M:      Jens Frederich <jfrederich@gmail.com>
16235 M:      Daniel Drake <dsd@laptop.org>
16236 M:      Jon Nettleton <jon.nettleton@gmail.com>
16237 S:      Maintained
16238 W:      http://wiki.laptop.org/go/DCON
16239 F:      drivers/staging/olpc_dcon/
16240
16241 STAGING - REALTEK RTL8188EU DRIVERS
16242 M:      Larry Finger <Larry.Finger@lwfinger.net>
16243 S:      Odd Fixes
16244 F:      drivers/staging/rtl8188eu/
16245
16246 STAGING - REALTEK RTL8712U DRIVERS
16247 M:      Larry Finger <Larry.Finger@lwfinger.net>
16248 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
16249 S:      Odd Fixes
16250 F:      drivers/staging/rtl8712/
16251
16252 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16253 M:      Michael Hennerich <michael.hennerich@analog.com>
16254 M:      Beniamin Bia <beniamin.bia@analog.com>
16255 L:      linux-fbdev@vger.kernel.org
16256 S:      Supported
16257 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16258 F:      drivers/staging/fbtft/fb_seps525.c
16259
16260 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16261 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16262 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16263 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16264 L:      linux-fbdev@vger.kernel.org
16265 S:      Maintained
16266 F:      drivers/staging/sm750fb/
16267
16268 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
16269 M:      William Hubbs <w.d.hubbs@gmail.com>
16270 M:      Chris Brannon <chris@the-brannons.com>
16271 M:      Kirk Reiser <kirk@reisers.ca>
16272 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
16273 L:      speakup@linux-speakup.org
16274 S:      Odd Fixes
16275 W:      http://www.linux-speakup.org/
16276 F:      drivers/staging/speakup/
16277
16278 STAGING - VIA VT665X DRIVERS
16279 M:      Forest Bond <forest@alittletooquiet.net>
16280 S:      Odd Fixes
16281 F:      drivers/staging/vt665?/
16282
16283 STAGING - WILC1000 WIFI DRIVER
16284 M:      Adham Abozaeid <adham.abozaeid@microchip.com>
16285 M:      Ajay Singh <ajay.kathat@microchip.com>
16286 L:      linux-wireless@vger.kernel.org
16287 S:      Supported
16288 F:      drivers/staging/wilc1000/
16289
16290 STAGING SUBSYSTEM
16291 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16292 L:      devel@driverdev.osuosl.org
16293 S:      Supported
16294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16295 F:      drivers/staging/
16296
16297 STARFIRE/DURALAN NETWORK DRIVER
16298 M:      Ion Badulescu <ionut@badula.org>
16299 S:      Odd Fixes
16300 F:      drivers/net/ethernet/adaptec/starfire*
16301
16302 STEC S1220 SKD DRIVER
16303 M:      Damien Le Moal <Damien.LeMoal@wdc.com>
16304 L:      linux-block@vger.kernel.org
16305 S:      Maintained
16306 F:      drivers/block/skd*[ch]
16307
16308 STI AUDIO (ASoC) DRIVERS
16309 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16310 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16311 S:      Maintained
16312 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16313 F:      sound/soc/sti/
16314
16315 STI CEC DRIVER
16316 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
16317 S:      Maintained
16318 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16319 F:      drivers/media/platform/sti/cec/
16320
16321 STK1160 USB VIDEO CAPTURE DRIVER
16322 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16323 L:      linux-media@vger.kernel.org
16324 S:      Maintained
16325 T:      git git://linuxtv.org/media_tree.git
16326 F:      drivers/media/usb/stk1160/
16327
16328 STM32 AUDIO (ASoC) DRIVERS
16329 M:      Olivier Moysan <olivier.moysan@st.com>
16330 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16331 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16332 S:      Maintained
16333 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
16334 F:      sound/soc/stm/
16335
16336 STM32 TIMER/LPTIMER DRIVERS
16337 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
16338 S:      Maintained
16339 F:      Documentation/ABI/testing/*timer-stm32
16340 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16341 F:      drivers/*/stm32-*timer*
16342 F:      drivers/pwm/pwm-stm32*
16343 F:      include/linux/*/stm32-*tim*
16344
16345 STMMAC ETHERNET DRIVER
16346 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
16347 M:      Alexandre Torgue <alexandre.torgue@st.com>
16348 M:      Jose Abreu <joabreu@synopsys.com>
16349 L:      netdev@vger.kernel.org
16350 S:      Supported
16351 W:      http://www.stlinux.com
16352 F:      Documentation/networking/device_drivers/stmicro/
16353 F:      drivers/net/ethernet/stmicro/stmmac/
16354
16355 SUN3/3X
16356 M:      Sam Creasey <sammy@sammy.net>
16357 S:      Maintained
16358 W:      http://sammy.net/sun3/
16359 F:      arch/m68k/include/asm/sun3*
16360 F:      arch/m68k/kernel/*sun3*
16361 F:      arch/m68k/sun3*/
16362 F:      drivers/net/ethernet/i825xx/sun3*
16363
16364 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16365 M:      Hans de Goede <hdegoede@redhat.com>
16366 L:      linux-input@vger.kernel.org
16367 S:      Maintained
16368 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16369 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16370
16371 SUNDANCE NETWORK DRIVER
16372 M:      Denis Kirjanov <kda@linux-powerpc.org>
16373 L:      netdev@vger.kernel.org
16374 S:      Maintained
16375 F:      drivers/net/ethernet/dlink/sundance.c
16376
16377 SUPERH
16378 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
16379 M:      Rich Felker <dalias@libc.org>
16380 L:      linux-sh@vger.kernel.org
16381 S:      Maintained
16382 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16383 F:      Documentation/sh/
16384 F:      arch/sh/
16385 F:      drivers/sh/
16386
16387 SUSPEND TO RAM
16388 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
16389 M:      Len Brown <len.brown@intel.com>
16390 M:      Pavel Machek <pavel@ucw.cz>
16391 L:      linux-pm@vger.kernel.org
16392 S:      Supported
16393 B:      https://bugzilla.kernel.org
16394 F:      Documentation/power/
16395 F:      arch/x86/kernel/acpi/
16396 F:      drivers/base/power/
16397 F:      include/linux/freezer.h
16398 F:      include/linux/pm.h
16399 F:      include/linux/suspend.h
16400 F:      kernel/power/
16401
16402 SVGA HANDLING
16403 M:      Martin Mares <mj@ucw.cz>
16404 L:      linux-video@atrey.karlin.mff.cuni.cz
16405 S:      Maintained
16406 F:      Documentation/admin-guide/svga.rst
16407 F:      arch/x86/boot/video*
16408
16409 SWIOTLB SUBSYSTEM
16410 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
16411 L:      iommu@lists.linux-foundation.org
16412 S:      Supported
16413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16414 F:      arch/*/kernel/pci-swiotlb.c
16415 F:      include/linux/swiotlb.h
16416 F:      kernel/dma/swiotlb.c
16417
16418 SWITCHDEV
16419 M:      Jiri Pirko <jiri@resnulli.us>
16420 M:      Ivan Vecera <ivecera@redhat.com>
16421 L:      netdev@vger.kernel.org
16422 S:      Supported
16423 F:      include/net/switchdev.h
16424 F:      net/switchdev/
16425
16426 SY8106A REGULATOR DRIVER
16427 M:      Icenowy Zheng <icenowy@aosc.io>
16428 S:      Maintained
16429 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16430 F:      drivers/regulator/sy8106a-regulator.c
16431
16432 SYNC FILE FRAMEWORK
16433 M:      Sumit Semwal <sumit.semwal@linaro.org>
16434 R:      Gustavo Padovan <gustavo@padovan.org>
16435 L:      linux-media@vger.kernel.org
16436 L:      dri-devel@lists.freedesktop.org
16437 S:      Maintained
16438 T:      git git://anongit.freedesktop.org/drm/drm-misc
16439 F:      Documentation/driver-api/sync_file.rst
16440 F:      drivers/dma-buf/dma-fence*
16441 F:      drivers/dma-buf/sw_sync.c
16442 F:      drivers/dma-buf/sync_*
16443 F:      include/linux/sync_file.h
16444 F:      include/uapi/linux/sync_file.h
16445
16446 SYNOPSYS ARC ARCHITECTURE
16447 M:      Vineet Gupta <vgupta@synopsys.com>
16448 L:      linux-snps-arc@lists.infradead.org
16449 S:      Supported
16450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
16451 F:      Documentation/devicetree/bindings/arc/*
16452 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
16453 F:      arch/arc/
16454 F:      drivers/clocksource/arc_timer.c
16455 F:      drivers/tty/serial/arc_uart.c
16456
16457 SYNOPSYS ARC HSDK SDP pll clock driver
16458 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16459 S:      Supported
16460 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
16461 F:      drivers/clk/clk-hsdk-pll.c
16462
16463 SYNOPSYS ARC SDP clock driver
16464 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16465 S:      Supported
16466 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
16467 F:      drivers/clk/axs10x/*
16468
16469 SYNOPSYS ARC SDP platform support
16470 M:      Alexey Brodkin <abrodkin@synopsys.com>
16471 S:      Supported
16472 F:      Documentation/devicetree/bindings/arc/axs10*
16473 F:      arch/arc/boot/dts/ax*
16474 F:      arch/arc/plat-axs10x
16475
16476 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
16477 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16478 S:      Supported
16479 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
16480 F:      drivers/reset/reset-axs10x.c
16481
16482 SYNOPSYS CREG GPIO DRIVER
16483 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16484 S:      Maintained
16485 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
16486 F:      drivers/gpio/gpio-creg-snps.c
16487
16488 SYNOPSYS DESIGNWARE 8250 UART DRIVER
16489 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16490 S:      Maintained
16491 F:      drivers/tty/serial/8250/8250_dw.c
16492 F:      drivers/tty/serial/8250/8250_dwlib.*
16493 F:      drivers/tty/serial/8250/8250_lpss.c
16494
16495 SYNOPSYS DESIGNWARE APB GPIO DRIVER
16496 M:      Hoan Tran <hoan@os.amperecomputing.com>
16497 M:      Serge Semin <fancer.lancer@gmail.com>
16498 L:      linux-gpio@vger.kernel.org
16499 S:      Maintained
16500 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
16501 F:      drivers/gpio/gpio-dwapb.c
16502
16503 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
16504 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16505 S:      Maintained
16506 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
16507 F:      drivers/dma/dw-axi-dmac/
16508
16509 SYNOPSYS DESIGNWARE DMAC DRIVER
16510 M:      Viresh Kumar <vireshk@kernel.org>
16511 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16512 S:      Maintained
16513 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
16514 F:      drivers/dma/dw/
16515 F:      include/dt-bindings/dma/dw-dmac.h
16516 F:      include/linux/dma/dw.h
16517 F:      include/linux/platform_data/dma-dw.h
16518
16519 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
16520 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16521 L:      netdev@vger.kernel.org
16522 S:      Supported
16523 F:      drivers/net/ethernet/synopsys/
16524
16525 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
16526 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16527 L:      netdev@vger.kernel.org
16528 S:      Supported
16529 F:      drivers/net/phy/mdio-xpcs.c
16530 F:      include/linux/mdio-xpcs.h
16531
16532 SYNOPSYS DESIGNWARE I2C DRIVER
16533 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
16534 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16535 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
16536 L:      linux-i2c@vger.kernel.org
16537 S:      Maintained
16538 F:      drivers/i2c/busses/i2c-designware-*
16539 F:      include/linux/platform_data/i2c-designware.h
16540
16541 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
16542 M:      Jaehoon Chung <jh80.chung@samsung.com>
16543 L:      linux-mmc@vger.kernel.org
16544 S:      Maintained
16545 F:      drivers/mmc/host/dw_mmc*
16546
16547 SYNOPSYS HSDK RESET CONTROLLER DRIVER
16548 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16549 S:      Supported
16550 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
16551 F:      drivers/reset/reset-hsdk.c
16552 F:      include/dt-bindings/reset/snps,hsdk-reset.h
16553
16554 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
16555 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
16556 M:      Manjunath M B <manjumb@synopsys.com>
16557 L:      linux-mmc@vger.kernel.org
16558 S:      Maintained
16559 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
16560
16561 SYSTEM CONFIGURATION (SYSCON)
16562 M:      Lee Jones <lee.jones@linaro.org>
16563 M:      Arnd Bergmann <arnd@arndb.de>
16564 S:      Supported
16565 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
16566 F:      drivers/mfd/syscon.c
16567
16568 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
16569 M:      Sudeep Holla <sudeep.holla@arm.com>
16570 L:      linux-arm-kernel@lists.infradead.org
16571 S:      Maintained
16572 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
16573 F:      drivers/clk/clk-sc[mp]i.c
16574 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
16575 F:      drivers/firmware/arm_scmi/
16576 F:      drivers/firmware/arm_scpi.c
16577 F:      drivers/reset/reset-scmi.c
16578 F:      include/linux/sc[mp]i_protocol.h
16579 F:      include/trace/events/scmi.h
16580
16581 SYSTEM RESET/SHUTDOWN DRIVERS
16582 M:      Sebastian Reichel <sre@kernel.org>
16583 L:      linux-pm@vger.kernel.org
16584 S:      Maintained
16585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16586 F:      Documentation/devicetree/bindings/power/reset/
16587 F:      drivers/power/reset/
16588
16589 SYSTEM TRACE MODULE CLASS
16590 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
16591 S:      Maintained
16592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
16593 F:      Documentation/trace/stm.rst
16594 F:      drivers/hwtracing/stm/
16595 F:      include/linux/stm.h
16596 F:      include/uapi/linux/stm.h
16597
16598 SYSTEM76 ACPI DRIVER
16599 M:      Jeremy Soller <jeremy@system76.com>
16600 M:      System76 Product Development <productdev@system76.com>
16601 L:      platform-driver-x86@vger.kernel.org
16602 S:      Maintained
16603 F:      drivers/platform/x86/system76_acpi.c
16604
16605 SYSV FILESYSTEM
16606 M:      Christoph Hellwig <hch@infradead.org>
16607 S:      Maintained
16608 F:      Documentation/filesystems/sysv-fs.rst
16609 F:      fs/sysv/
16610 F:      include/linux/sysv_fs.h
16611
16612 TASKSTATS STATISTICS INTERFACE
16613 M:      Balbir Singh <bsingharora@gmail.com>
16614 S:      Maintained
16615 F:      Documentation/accounting/taskstats*
16616 F:      include/linux/taskstats*
16617 F:      kernel/taskstats.c
16618
16619 TC subsystem
16620 M:      Jamal Hadi Salim <jhs@mojatatu.com>
16621 M:      Cong Wang <xiyou.wangcong@gmail.com>
16622 M:      Jiri Pirko <jiri@resnulli.us>
16623 L:      netdev@vger.kernel.org
16624 S:      Maintained
16625 F:      include/net/pkt_cls.h
16626 F:      include/net/pkt_sched.h
16627 F:      include/net/tc_act/
16628 F:      include/uapi/linux/pkt_cls.h
16629 F:      include/uapi/linux/pkt_sched.h
16630 F:      include/uapi/linux/tc_act/
16631 F:      include/uapi/linux/tc_ematch/
16632 F:      net/sched/
16633
16634 TC90522 MEDIA DRIVER
16635 M:      Akihiro Tsukada <tskd08@gmail.com>
16636 L:      linux-media@vger.kernel.org
16637 S:      Odd Fixes
16638 F:      drivers/media/dvb-frontends/tc90522*
16639
16640 TCP LOW PRIORITY MODULE
16641 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
16642 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
16643 S:      Maintained
16644 W:      http://tcp-lp-mod.sourceforge.net/
16645 F:      net/ipv4/tcp_lp.c
16646
16647 TDA10071 MEDIA DRIVER
16648 M:      Antti Palosaari <crope@iki.fi>
16649 L:      linux-media@vger.kernel.org
16650 S:      Maintained
16651 W:      https://linuxtv.org
16652 W:      http://palosaari.fi/linux/
16653 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16654 T:      git git://linuxtv.org/anttip/media_tree.git
16655 F:      drivers/media/dvb-frontends/tda10071*
16656
16657 TDA18212 MEDIA DRIVER
16658 M:      Antti Palosaari <crope@iki.fi>
16659 L:      linux-media@vger.kernel.org
16660 S:      Maintained
16661 W:      https://linuxtv.org
16662 W:      http://palosaari.fi/linux/
16663 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16664 T:      git git://linuxtv.org/anttip/media_tree.git
16665 F:      drivers/media/tuners/tda18212*
16666
16667 TDA18218 MEDIA DRIVER
16668 M:      Antti Palosaari <crope@iki.fi>
16669 L:      linux-media@vger.kernel.org
16670 S:      Maintained
16671 W:      https://linuxtv.org
16672 W:      http://palosaari.fi/linux/
16673 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16674 T:      git git://linuxtv.org/anttip/media_tree.git
16675 F:      drivers/media/tuners/tda18218*
16676
16677 TDA18250 MEDIA DRIVER
16678 M:      Olli Salonen <olli.salonen@iki.fi>
16679 L:      linux-media@vger.kernel.org
16680 S:      Maintained
16681 W:      https://linuxtv.org
16682 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16683 T:      git git://linuxtv.org/media_tree.git
16684 F:      drivers/media/tuners/tda18250*
16685
16686 TDA18271 MEDIA DRIVER
16687 M:      Michael Krufky <mkrufky@linuxtv.org>
16688 L:      linux-media@vger.kernel.org
16689 S:      Maintained
16690 W:      https://linuxtv.org
16691 W:      http://github.com/mkrufky
16692 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16693 T:      git git://linuxtv.org/mkrufky/tuners.git
16694 F:      drivers/media/tuners/tda18271*
16695
16696 TDA1997x MEDIA DRIVER
16697 M:      Tim Harvey <tharvey@gateworks.com>
16698 L:      linux-media@vger.kernel.org
16699 S:      Maintained
16700 W:      https://linuxtv.org
16701 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16702 F:      drivers/media/i2c/tda1997x.*
16703
16704 TDA827x MEDIA DRIVER
16705 M:      Michael Krufky <mkrufky@linuxtv.org>
16706 L:      linux-media@vger.kernel.org
16707 S:      Maintained
16708 W:      https://linuxtv.org
16709 W:      http://github.com/mkrufky
16710 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16711 T:      git git://linuxtv.org/mkrufky/tuners.git
16712 F:      drivers/media/tuners/tda8290.*
16713
16714 TDA8290 MEDIA DRIVER
16715 M:      Michael Krufky <mkrufky@linuxtv.org>
16716 L:      linux-media@vger.kernel.org
16717 S:      Maintained
16718 W:      https://linuxtv.org
16719 W:      http://github.com/mkrufky
16720 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16721 T:      git git://linuxtv.org/mkrufky/tuners.git
16722 F:      drivers/media/tuners/tda8290.*
16723
16724 TDA9840 MEDIA DRIVER
16725 M:      Hans Verkuil <hverkuil@xs4all.nl>
16726 L:      linux-media@vger.kernel.org
16727 S:      Maintained
16728 W:      https://linuxtv.org
16729 T:      git git://linuxtv.org/media_tree.git
16730 F:      drivers/media/i2c/tda9840*
16731
16732 TEA5761 TUNER DRIVER
16733 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16734 L:      linux-media@vger.kernel.org
16735 S:      Odd fixes
16736 W:      https://linuxtv.org
16737 T:      git git://linuxtv.org/media_tree.git
16738 F:      drivers/media/tuners/tea5761.*
16739
16740 TEA5767 TUNER DRIVER
16741 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16742 L:      linux-media@vger.kernel.org
16743 S:      Maintained
16744 W:      https://linuxtv.org
16745 T:      git git://linuxtv.org/media_tree.git
16746 F:      drivers/media/tuners/tea5767.*
16747
16748 TEA6415C MEDIA DRIVER
16749 M:      Hans Verkuil <hverkuil@xs4all.nl>
16750 L:      linux-media@vger.kernel.org
16751 S:      Maintained
16752 W:      https://linuxtv.org
16753 T:      git git://linuxtv.org/media_tree.git
16754 F:      drivers/media/i2c/tea6415c*
16755
16756 TEA6420 MEDIA DRIVER
16757 M:      Hans Verkuil <hverkuil@xs4all.nl>
16758 L:      linux-media@vger.kernel.org
16759 S:      Maintained
16760 W:      https://linuxtv.org
16761 T:      git git://linuxtv.org/media_tree.git
16762 F:      drivers/media/i2c/tea6420*
16763
16764 TEAM DRIVER
16765 M:      Jiri Pirko <jiri@resnulli.us>
16766 L:      netdev@vger.kernel.org
16767 S:      Supported
16768 F:      drivers/net/team/
16769 F:      include/linux/if_team.h
16770 F:      include/uapi/linux/if_team.h
16771
16772 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
16773 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
16774 S:      Maintained
16775 F:      arch/x86/platform/ts5500/
16776
16777 TECHNOTREND USB IR RECEIVER
16778 M:      Sean Young <sean@mess.org>
16779 L:      linux-media@vger.kernel.org
16780 S:      Maintained
16781 F:      drivers/media/rc/ttusbir.c
16782
16783 TECHWELL TW9910 VIDEO DECODER
16784 L:      linux-media@vger.kernel.org
16785 S:      Orphan
16786 F:      drivers/media/i2c/tw9910.c
16787 F:      include/media/i2c/tw9910.h
16788
16789 TEE SUBSYSTEM
16790 M:      Jens Wiklander <jens.wiklander@linaro.org>
16791 L:      op-tee@lists.trustedfirmware.org
16792 S:      Maintained
16793 F:      Documentation/tee.txt
16794 F:      drivers/tee/
16795 F:      include/linux/tee_drv.h
16796 F:      include/uapi/linux/tee.h
16797
16798 TEGRA ARCHITECTURE SUPPORT
16799 M:      Thierry Reding <thierry.reding@gmail.com>
16800 M:      Jonathan Hunter <jonathanh@nvidia.com>
16801 L:      linux-tegra@vger.kernel.org
16802 S:      Supported
16803 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
16804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
16805 N:      [^a-z]tegra
16806
16807 TEGRA CLOCK DRIVER
16808 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
16809 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
16810 S:      Supported
16811 F:      drivers/clk/tegra/
16812
16813 TEGRA DMA DRIVERS
16814 M:      Laxman Dewangan <ldewangan@nvidia.com>
16815 M:      Jon Hunter <jonathanh@nvidia.com>
16816 S:      Supported
16817 F:      drivers/dma/tegra*
16818
16819 TEGRA I2C DRIVER
16820 M:      Laxman Dewangan <ldewangan@nvidia.com>
16821 R:      Dmitry Osipenko <digetx@gmail.com>
16822 S:      Supported
16823 F:      drivers/i2c/busses/i2c-tegra.c
16824
16825 TEGRA IOMMU DRIVERS
16826 M:      Thierry Reding <thierry.reding@gmail.com>
16827 L:      linux-tegra@vger.kernel.org
16828 S:      Supported
16829 F:      drivers/iommu/tegra*
16830
16831 TEGRA KBC DRIVER
16832 M:      Laxman Dewangan <ldewangan@nvidia.com>
16833 S:      Supported
16834 F:      drivers/input/keyboard/tegra-kbc.c
16835
16836 TEGRA NAND DRIVER
16837 M:      Stefan Agner <stefan@agner.ch>
16838 M:      Lucas Stach <dev@lynxeye.de>
16839 S:      Maintained
16840 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
16841 F:      drivers/mtd/nand/raw/tegra_nand.c
16842
16843 TEGRA PWM DRIVER
16844 M:      Thierry Reding <thierry.reding@gmail.com>
16845 S:      Supported
16846 F:      drivers/pwm/pwm-tegra.c
16847
16848 TEGRA SERIAL DRIVER
16849 M:      Laxman Dewangan <ldewangan@nvidia.com>
16850 S:      Supported
16851 F:      drivers/tty/serial/serial-tegra.c
16852
16853 TEGRA SPI DRIVER
16854 M:      Laxman Dewangan <ldewangan@nvidia.com>
16855 S:      Supported
16856 F:      drivers/spi/spi-tegra*
16857
16858 TEGRA VIDEO DRIVER
16859 M:      Thierry Reding <thierry.reding@gmail.com>
16860 M:      Jonathan Hunter <jonathanh@nvidia.com>
16861 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
16862 L:      linux-media@vger.kernel.org
16863 L:      linux-tegra@vger.kernel.org
16864 S:      Maintained
16865 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
16866 F:      drivers/staging/media/tegra-video/
16867
16868 TEGRA XUSB PADCTL DRIVER
16869 M:      JC Kuo <jckuo@nvidia.com>
16870 S:      Supported
16871 F:      drivers/phy/tegra/xusb*
16872
16873 TEHUTI ETHERNET DRIVER
16874 M:      Andy Gospodarek <andy@greyhouse.net>
16875 L:      netdev@vger.kernel.org
16876 S:      Supported
16877 F:      drivers/net/ethernet/tehuti/*
16878
16879 TELECOM CLOCK DRIVER FOR MCPL0010
16880 M:      Mark Gross <mark.gross@intel.com>
16881 S:      Supported
16882 F:      drivers/char/tlclk.c
16883
16884 TEMPO SEMICONDUCTOR DRIVERS
16885 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
16886 S:      Maintained
16887 F:      Documentation/devicetree/bindings/sound/tscs*.txt
16888 F:      sound/soc/codecs/tscs*.c
16889 F:      sound/soc/codecs/tscs*.h
16890
16891 TENSILICA XTENSA PORT (xtensa)
16892 M:      Chris Zankel <chris@zankel.net>
16893 M:      Max Filippov <jcmvbkbc@gmail.com>
16894 L:      linux-xtensa@linux-xtensa.org
16895 S:      Maintained
16896 T:      git git://github.com/czankel/xtensa-linux.git
16897 F:      arch/xtensa/
16898 F:      drivers/irqchip/irq-xtensa-*
16899
16900 TEXAS INSTRUMENTS ASoC DRIVERS
16901 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
16902 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16903 S:      Maintained
16904 F:      sound/soc/ti/
16905
16906 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
16907 M:      Ricardo Ribalda <ribalda@kernel.org>
16908 L:      linux-iio@vger.kernel.org
16909 S:      Supported
16910 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
16911 F:      drivers/iio/dac/ti-dac7612.c
16912
16913 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
16914 M:      Nishanth Menon <nm@ti.com>
16915 M:      Tero Kristo <t-kristo@ti.com>
16916 M:      Santosh Shilimkar <ssantosh@kernel.org>
16917 L:      linux-arm-kernel@lists.infradead.org
16918 S:      Maintained
16919 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
16920 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
16921 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
16922 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
16923 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
16924 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
16925 F:      drivers/clk/keystone/sci-clk.c
16926 F:      drivers/firmware/ti_sci*
16927 F:      drivers/irqchip/irq-ti-sci-inta.c
16928 F:      drivers/irqchip/irq-ti-sci-intr.c
16929 F:      drivers/reset/reset-ti-sci.c
16930 F:      drivers/soc/ti/ti_sci_inta_msi.c
16931 F:      drivers/soc/ti/ti_sci_pm_domains.c
16932 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
16933 F:      include/linux/soc/ti/ti_sci_inta_msi.h
16934 F:      include/linux/soc/ti/ti_sci_protocol.h
16935
16936 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
16937 M:      Hans Verkuil <hverkuil@xs4all.nl>
16938 L:      linux-media@vger.kernel.org
16939 S:      Maintained
16940 W:      https://linuxtv.org
16941 T:      git git://linuxtv.org/media_tree.git
16942 F:      drivers/media/radio/radio-raremono.c
16943
16944 THERMAL
16945 M:      Zhang Rui <rui.zhang@intel.com>
16946 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
16947 R:      Amit Kucheria <amit.kucheria@verdurent.com>
16948 L:      linux-pm@vger.kernel.org
16949 S:      Supported
16950 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
16952 F:      Documentation/devicetree/bindings/thermal/
16953 F:      drivers/thermal/
16954 F:      include/linux/cpu_cooling.h
16955 F:      include/linux/thermal.h
16956 F:      include/uapi/linux/thermal.h
16957
16958 THERMAL DRIVER FOR AMLOGIC SOCS
16959 M:      Guillaume La Roque <glaroque@baylibre.com>
16960 L:      linux-pm@vger.kernel.org
16961 L:      linux-amlogic@lists.infradead.org
16962 S:      Supported
16963 W:      http://linux-meson.com/
16964 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
16965 F:      drivers/thermal/amlogic_thermal.c
16966
16967 THERMAL/CPU_COOLING
16968 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
16969 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
16970 M:      Viresh Kumar <viresh.kumar@linaro.org>
16971 M:      Javi Merino <javi.merino@kernel.org>
16972 L:      linux-pm@vger.kernel.org
16973 S:      Supported
16974 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
16975 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
16976 F:      drivers/thermal/cpufreq_cooling.c
16977 F:      drivers/thermal/cpuidle_cooling.c
16978 F:      include/linux/cpu_cooling.h
16979
16980 THINKPAD ACPI EXTRAS DRIVER
16981 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
16982 L:      ibm-acpi-devel@lists.sourceforge.net
16983 L:      platform-driver-x86@vger.kernel.org
16984 S:      Maintained
16985 W:      http://ibm-acpi.sourceforge.net
16986 W:      http://thinkwiki.org/wiki/Ibm-acpi
16987 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
16988 F:      drivers/platform/x86/thinkpad_acpi.c
16989
16990 THUNDERBOLT DRIVER
16991 M:      Andreas Noever <andreas.noever@gmail.com>
16992 M:      Michael Jamet <michael.jamet@intel.com>
16993 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16994 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16995 L:      linux-usb@vger.kernel.org
16996 S:      Maintained
16997 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
16998 F:      Documentation/admin-guide/thunderbolt.rst
16999 F:      drivers/thunderbolt/
17000 F:      include/linux/thunderbolt.h
17001
17002 THUNDERBOLT NETWORK DRIVER
17003 M:      Michael Jamet <michael.jamet@intel.com>
17004 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
17005 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
17006 L:      netdev@vger.kernel.org
17007 S:      Maintained
17008 F:      drivers/net/thunderbolt.c
17009
17010 THUNDERX GPIO DRIVER
17011 M:      Robert Richter <rrichter@marvell.com>
17012 S:      Maintained
17013 F:      drivers/gpio/gpio-thunderx.c
17014
17015 TI AM437X VPFE DRIVER
17016 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17017 L:      linux-media@vger.kernel.org
17018 S:      Maintained
17019 W:      https://linuxtv.org
17020 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17021 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17022 F:      drivers/media/platform/am437x/
17023
17024 TI BANDGAP AND THERMAL DRIVER
17025 M:      Eduardo Valentin <edubezval@gmail.com>
17026 M:      Keerthy <j-keerthy@ti.com>
17027 L:      linux-pm@vger.kernel.org
17028 L:      linux-omap@vger.kernel.org
17029 S:      Maintained
17030 F:      drivers/thermal/ti-soc-thermal/
17031
17032 TI BQ27XXX POWER SUPPLY DRIVER
17033 R:      Andrew F. Davis <afd@ti.com>
17034 F:      drivers/power/supply/bq27xxx_battery.c
17035 F:      drivers/power/supply/bq27xxx_battery_i2c.c
17036 F:      include/linux/power/bq27xxx_battery.h
17037
17038 TI CDCE706 CLOCK DRIVER
17039 M:      Max Filippov <jcmvbkbc@gmail.com>
17040 S:      Maintained
17041 F:      drivers/clk/clk-cdce706.c
17042
17043 TI CLOCK DRIVER
17044 M:      Tero Kristo <t-kristo@ti.com>
17045 L:      linux-omap@vger.kernel.org
17046 S:      Maintained
17047 F:      drivers/clk/ti/
17048 F:      include/linux/clk/ti.h
17049
17050 TI DAVINCI MACHINE SUPPORT
17051 M:      Sekhar Nori <nsekhar@ti.com>
17052 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
17053 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17054 S:      Supported
17055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
17056 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
17057 F:      arch/arm/boot/dts/da850*
17058 F:      arch/arm/mach-davinci/
17059 F:      drivers/i2c/busses/i2c-davinci.c
17060
17061 TI DAVINCI SERIES CLOCK DRIVER
17062 M:      David Lechner <david@lechnology.com>
17063 R:      Sekhar Nori <nsekhar@ti.com>
17064 S:      Maintained
17065 F:      Documentation/devicetree/bindings/clock/ti/davinci/
17066 F:      drivers/clk/davinci/
17067
17068 TI DAVINCI SERIES GPIO DRIVER
17069 M:      Keerthy <j-keerthy@ti.com>
17070 L:      linux-gpio@vger.kernel.org
17071 S:      Maintained
17072 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
17073 F:      drivers/gpio/gpio-davinci.c
17074
17075 TI DAVINCI SERIES MEDIA DRIVER
17076 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17077 L:      linux-media@vger.kernel.org
17078 S:      Maintained
17079 W:      https://linuxtv.org
17080 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17081 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17082 F:      drivers/media/platform/davinci/
17083 F:      include/media/davinci/
17084
17085 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
17086 R:      David Lechner <david@lechnology.com>
17087 L:      linux-iio@vger.kernel.org
17088 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
17089 F:      drivers/counter/ti-eqep.c
17090
17091 TI ETHERNET SWITCH DRIVER (CPSW)
17092 R:      Grygorii Strashko <grygorii.strashko@ti.com>
17093 L:      linux-omap@vger.kernel.org
17094 L:      netdev@vger.kernel.org
17095 S:      Maintained
17096 F:      drivers/net/ethernet/ti/cpsw*
17097 F:      drivers/net/ethernet/ti/davinci*
17098
17099 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
17100 M:      Alex Dubov <oakad@yahoo.com>
17101 S:      Maintained
17102 W:      http://tifmxx.berlios.de/
17103 F:      drivers/memstick/host/tifm_ms.c
17104 F:      drivers/misc/tifm*
17105 F:      drivers/mmc/host/tifm_sd.c
17106 F:      include/linux/tifm.h
17107
17108 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
17109 M:      Santosh Shilimkar <ssantosh@kernel.org>
17110 L:      linux-kernel@vger.kernel.org
17111 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17112 S:      Maintained
17113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
17114 F:      drivers/soc/ti/*
17115
17116 TI LM49xxx FAMILY ASoC CODEC DRIVERS
17117 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
17118 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
17119 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17120 S:      Maintained
17121 F:      sound/soc/codecs/isabelle*
17122 F:      sound/soc/codecs/lm49453*
17123
17124 TI LP855x BACKLIGHT DRIVER
17125 M:      Milo Kim <milo.kim@ti.com>
17126 S:      Maintained
17127 F:      Documentation/driver-api/backlight/lp855x-driver.rst
17128 F:      drivers/video/backlight/lp855x_bl.c
17129 F:      include/linux/platform_data/lp855x.h
17130
17131 TI LP8727 CHARGER DRIVER
17132 M:      Milo Kim <milo.kim@ti.com>
17133 S:      Maintained
17134 F:      drivers/power/supply/lp8727_charger.c
17135 F:      include/linux/platform_data/lp8727.h
17136
17137 TI LP8788 MFD DRIVER
17138 M:      Milo Kim <milo.kim@ti.com>
17139 S:      Maintained
17140 F:      drivers/iio/adc/lp8788_adc.c
17141 F:      drivers/leds/leds-lp8788.c
17142 F:      drivers/mfd/lp8788*.c
17143 F:      drivers/power/supply/lp8788-charger.c
17144 F:      drivers/regulator/lp8788-*.c
17145 F:      include/linux/mfd/lp8788*.h
17146
17147 TI NETCP ETHERNET DRIVER
17148 M:      Wingman Kwok <w-kwok2@ti.com>
17149 M:      Murali Karicheri <m-karicheri2@ti.com>
17150 L:      netdev@vger.kernel.org
17151 S:      Maintained
17152 F:      drivers/net/ethernet/ti/netcp*
17153
17154 TI PCM3060 ASoC CODEC DRIVER
17155 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
17156 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17157 S:      Maintained
17158 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
17159 F:      sound/soc/codecs/pcm3060*
17160
17161 TI TAS571X FAMILY ASoC CODEC DRIVER
17162 M:      Kevin Cernekee <cernekee@chromium.org>
17163 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17164 S:      Odd Fixes
17165 F:      sound/soc/codecs/tas571x*
17166
17167 TI TCAN4X5X DEVICE DRIVER
17168 M:      Dan Murphy <dmurphy@ti.com>
17169 L:      linux-can@vger.kernel.org
17170 S:      Maintained
17171 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
17172 F:      drivers/net/can/m_can/tcan4x5x.c
17173
17174 TI TRF7970A NFC DRIVER
17175 M:      Mark Greer <mgreer@animalcreek.com>
17176 L:      linux-wireless@vger.kernel.org
17177 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
17178 S:      Supported
17179 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
17180 F:      drivers/nfc/trf7970a.c
17181
17182 TI TWL4030 SERIES SOC CODEC DRIVER
17183 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
17184 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17185 S:      Maintained
17186 F:      sound/soc/codecs/twl4030*
17187
17188 TI VPE/CAL DRIVERS
17189 M:      Benoit Parrot <bparrot@ti.com>
17190 L:      linux-media@vger.kernel.org
17191 S:      Maintained
17192 W:      http://linuxtv.org/
17193 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17194 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
17195 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
17196 F:      drivers/media/platform/ti-vpe/
17197
17198 TI WILINK WIRELESS DRIVERS
17199 L:      linux-wireless@vger.kernel.org
17200 S:      Orphan
17201 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
17202 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
17203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
17204 F:      drivers/net/wireless/ti/
17205 F:      include/linux/wl12xx.h
17206
17207 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
17208 M:      John Stultz <john.stultz@linaro.org>
17209 M:      Thomas Gleixner <tglx@linutronix.de>
17210 R:      Stephen Boyd <sboyd@kernel.org>
17211 L:      linux-kernel@vger.kernel.org
17212 S:      Supported
17213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
17214 F:      include/linux/clocksource.h
17215 F:      include/linux/time.h
17216 F:      include/linux/timex.h
17217 F:      include/uapi/linux/time.h
17218 F:      include/uapi/linux/timex.h
17219 F:      kernel/time/alarmtimer.c
17220 F:      kernel/time/clocksource.c
17221 F:      kernel/time/ntp.c
17222 F:      kernel/time/time*.c
17223 F:      tools/testing/selftests/timers/
17224
17225 TIPC NETWORK LAYER
17226 M:      Jon Maloy <jmaloy@redhat.com>
17227 M:      Ying Xue <ying.xue@windriver.com>
17228 L:      netdev@vger.kernel.org (core kernel code)
17229 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
17230 S:      Maintained
17231 W:      http://tipc.sourceforge.net/
17232 F:      include/uapi/linux/tipc*.h
17233 F:      net/tipc/
17234
17235 TLAN NETWORK DRIVER
17236 M:      Samuel Chessman <chessman@tux.org>
17237 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
17238 S:      Maintained
17239 W:      http://sourceforge.net/projects/tlan/
17240 F:      Documentation/networking/device_drivers/ti/tlan.rst
17241 F:      drivers/net/ethernet/ti/tlan.*
17242
17243 TM6000 VIDEO4LINUX DRIVER
17244 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17245 L:      linux-media@vger.kernel.org
17246 S:      Odd fixes
17247 W:      https://linuxtv.org
17248 T:      git git://linuxtv.org/media_tree.git
17249 F:      Documentation/admin-guide/media/tm6000*
17250 F:      drivers/media/usb/tm6000/
17251
17252 TMIO/SDHI MMC DRIVER
17253 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17254 L:      linux-mmc@vger.kernel.org
17255 S:      Supported
17256 F:      drivers/mmc/host/renesas_sdhi*
17257 F:      drivers/mmc/host/tmio_mmc*
17258 F:      include/linux/mfd/tmio.h
17259
17260 TMP401 HARDWARE MONITOR DRIVER
17261 M:      Guenter Roeck <linux@roeck-us.net>
17262 L:      linux-hwmon@vger.kernel.org
17263 S:      Maintained
17264 F:      Documentation/hwmon/tmp401.rst
17265 F:      drivers/hwmon/tmp401.c
17266
17267 TMP513 HARDWARE MONITOR DRIVER
17268 M:      Eric Tremblay <etremblay@distech-controls.com>
17269 L:      linux-hwmon@vger.kernel.org
17270 S:      Maintained
17271 F:      Documentation/hwmon/tmp513.rst
17272 F:      drivers/hwmon/tmp513.c
17273
17274 TMPFS (SHMEM FILESYSTEM)
17275 M:      Hugh Dickins <hughd@google.com>
17276 L:      linux-mm@kvack.org
17277 S:      Maintained
17278 F:      include/linux/shmem_fs.h
17279 F:      mm/shmem.c
17280
17281 TOMOYO SECURITY MODULE
17282 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
17283 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
17284 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
17285 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
17286 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
17287 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
17288 S:      Maintained
17289 W:      https://tomoyo.osdn.jp/
17290 F:      security/tomoyo/
17291
17292 TOPSTAR LAPTOP EXTRAS DRIVER
17293 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17294 L:      platform-driver-x86@vger.kernel.org
17295 S:      Maintained
17296 F:      drivers/platform/x86/topstar-laptop.c
17297
17298 TORTURE-TEST MODULES
17299 M:      Davidlohr Bueso <dave@stgolabs.net>
17300 M:      "Paul E. McKenney" <paulmck@kernel.org>
17301 M:      Josh Triplett <josh@joshtriplett.org>
17302 L:      linux-kernel@vger.kernel.org
17303 S:      Supported
17304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17305 F:      Documentation/RCU/torture.txt
17306 F:      kernel/locking/locktorture.c
17307 F:      kernel/rcu/rcuperf.c
17308 F:      kernel/rcu/rcutorture.c
17309 F:      kernel/torture.c
17310
17311 TOSHIBA ACPI EXTRAS DRIVER
17312 M:      Azael Avalos <coproscefalo@gmail.com>
17313 L:      platform-driver-x86@vger.kernel.org
17314 S:      Maintained
17315 F:      drivers/platform/x86/toshiba_acpi.c
17316
17317 TOSHIBA BLUETOOTH DRIVER
17318 M:      Azael Avalos <coproscefalo@gmail.com>
17319 L:      platform-driver-x86@vger.kernel.org
17320 S:      Maintained
17321 F:      drivers/platform/x86/toshiba_bluetooth.c
17322
17323 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17324 M:      Azael Avalos <coproscefalo@gmail.com>
17325 L:      platform-driver-x86@vger.kernel.org
17326 S:      Maintained
17327 F:      drivers/platform/x86/toshiba_haps.c
17328
17329 TOSHIBA SMM DRIVER
17330 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
17331 S:      Maintained
17332 W:      http://www.buzzard.org.uk/toshiba/
17333 F:      drivers/char/toshiba.c
17334 F:      include/linux/toshiba.h
17335 F:      include/uapi/linux/toshiba.h
17336
17337 TOSHIBA TC358743 DRIVER
17338 M:      Mats Randgaard <matrandg@cisco.com>
17339 L:      linux-media@vger.kernel.org
17340 S:      Maintained
17341 F:      drivers/media/i2c/tc358743*
17342 F:      include/media/i2c/tc358743.h
17343
17344 TOSHIBA WMI HOTKEYS DRIVER
17345 M:      Azael Avalos <coproscefalo@gmail.com>
17346 L:      platform-driver-x86@vger.kernel.org
17347 S:      Maintained
17348 F:      drivers/platform/x86/toshiba-wmi.c
17349
17350 TPM DEVICE DRIVER
17351 M:      Peter Huewe <peterhuewe@gmx.de>
17352 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
17353 R:      Jason Gunthorpe <jgg@ziepe.ca>
17354 L:      linux-integrity@vger.kernel.org
17355 S:      Maintained
17356 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17357 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
17358 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
17359 F:      drivers/char/tpm/
17360
17361 TRACING
17362 M:      Steven Rostedt <rostedt@goodmis.org>
17363 M:      Ingo Molnar <mingo@redhat.com>
17364 S:      Maintained
17365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17366 F:      Documentation/trace/ftrace.rst
17367 F:      arch/*/*/*/ftrace.h
17368 F:      arch/*/kernel/ftrace.c
17369 F:      include/*/ftrace.h
17370 F:      include/linux/trace*.h
17371 F:      include/trace/
17372 F:      kernel/trace/
17373 F:      tools/testing/selftests/ftrace/
17374
17375 TRACING MMIO ACCESSES (MMIOTRACE)
17376 M:      Steven Rostedt <rostedt@goodmis.org>
17377 M:      Ingo Molnar <mingo@kernel.org>
17378 R:      Karol Herbst <karolherbst@gmail.com>
17379 R:      Pekka Paalanen <ppaalanen@gmail.com>
17380 L:      linux-kernel@vger.kernel.org
17381 L:      nouveau@lists.freedesktop.org
17382 S:      Maintained
17383 F:      arch/x86/mm/kmmio.c
17384 F:      arch/x86/mm/mmio-mod.c
17385 F:      arch/x86/mm/testmmiotrace.c
17386 F:      include/linux/mmiotrace.h
17387 F:      kernel/trace/trace_mmiotrace.c
17388
17389 TRIVIAL PATCHES
17390 M:      Jiri Kosina <trivial@kernel.org>
17391 S:      Maintained
17392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17393 K:      ^Subject:.*(?i)trivial
17394
17395 TTY LAYER
17396 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17397 M:      Jiri Slaby <jslaby@suse.com>
17398 S:      Supported
17399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17400 F:      Documentation/driver-api/serial/
17401 F:      drivers/tty/
17402 F:      drivers/tty/serial/serial_core.c
17403 F:      include/linux/serial.h
17404 F:      include/linux/serial_core.h
17405 F:      include/linux/tty.h
17406 F:      include/uapi/linux/serial.h
17407 F:      include/uapi/linux/serial_core.h
17408 F:      include/uapi/linux/tty.h
17409
17410 TUA9001 MEDIA DRIVER
17411 M:      Antti Palosaari <crope@iki.fi>
17412 L:      linux-media@vger.kernel.org
17413 S:      Maintained
17414 W:      https://linuxtv.org
17415 W:      http://palosaari.fi/linux/
17416 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17417 T:      git git://linuxtv.org/anttip/media_tree.git
17418 F:      drivers/media/tuners/tua9001*
17419
17420 TULIP NETWORK DRIVERS
17421 L:      netdev@vger.kernel.org
17422 L:      linux-parisc@vger.kernel.org
17423 S:      Orphan
17424 F:      drivers/net/ethernet/dec/tulip/
17425
17426 TUN/TAP driver
17427 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
17428 S:      Maintained
17429 W:      http://vtun.sourceforge.net/tun
17430 F:      Documentation/networking/tuntap.rst
17431 F:      arch/um/os-Linux/drivers/
17432
17433 TURBOCHANNEL SUBSYSTEM
17434 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
17435 M:      Ralf Baechle <ralf@linux-mips.org>
17436 L:      linux-mips@vger.kernel.org
17437 S:      Maintained
17438 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
17439 F:      drivers/tc/
17440 F:      include/linux/tc.h
17441
17442 TURBOSTAT UTILITY
17443 M:      "Len Brown" <lenb@kernel.org>
17444 L:      linux-pm@vger.kernel.org
17445 S:      Supported
17446 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17447 B:      https://bugzilla.kernel.org
17448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
17449 F:      tools/power/x86/turbostat/
17450
17451 TW5864 VIDEO4LINUX DRIVER
17452 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17453 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17454 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
17455 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17456 L:      linux-media@vger.kernel.org
17457 S:      Supported
17458 F:      drivers/media/pci/tw5864/
17459
17460 TW68 VIDEO4LINUX DRIVER
17461 M:      Hans Verkuil <hverkuil@xs4all.nl>
17462 L:      linux-media@vger.kernel.org
17463 S:      Odd Fixes
17464 W:      https://linuxtv.org
17465 T:      git git://linuxtv.org/media_tree.git
17466 F:      drivers/media/pci/tw68/
17467
17468 TW686X VIDEO4LINUX DRIVER
17469 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17470 L:      linux-media@vger.kernel.org
17471 S:      Maintained
17472 W:      http://linuxtv.org
17473 T:      git git://linuxtv.org/media_tree.git
17474 F:      drivers/media/pci/tw686x/
17475
17476 UACCE ACCELERATOR FRAMEWORK
17477 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
17478 M:      Zhou Wang <wangzhou1@hisilicon.com>
17479 L:      linux-accelerators@lists.ozlabs.org
17480 L:      linux-kernel@vger.kernel.org
17481 S:      Maintained
17482 F:      Documentation/ABI/testing/sysfs-driver-uacce
17483 F:      Documentation/misc-devices/uacce.rst
17484 F:      drivers/misc/uacce/
17485 F:      include/linux/uacce.h
17486 F:      include/uapi/misc/uacce/
17487
17488 UBI FILE SYSTEM (UBIFS)
17489 M:      Richard Weinberger <richard@nod.at>
17490 L:      linux-mtd@lists.infradead.org
17491 S:      Supported
17492 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
17493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17495 F:      Documentation/filesystems/ubifs.rst
17496 F:      fs/ubifs/
17497
17498 UCLINUX (M68KNOMMU AND COLDFIRE)
17499 M:      Greg Ungerer <gerg@linux-m68k.org>
17500 L:      linux-m68k@lists.linux-m68k.org
17501 L:      uclinux-dev@uclinux.org  (subscribers-only)
17502 S:      Maintained
17503 W:      http://www.linux-m68k.org/
17504 W:      http://www.uclinux.org/
17505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
17506 F:      arch/m68k/*/*_no.*
17507 F:      arch/m68k/68*/
17508 F:      arch/m68k/coldfire/
17509 F:      arch/m68k/include/asm/*_no.*
17510
17511 UDF FILESYSTEM
17512 M:      Jan Kara <jack@suse.com>
17513 S:      Maintained
17514 F:      Documentation/filesystems/udf.rst
17515 F:      fs/udf/
17516
17517 UDRAW TABLET
17518 M:      Bastien Nocera <hadess@hadess.net>
17519 L:      linux-input@vger.kernel.org
17520 S:      Maintained
17521 F:      drivers/hid/hid-udraw-ps3.c
17522
17523 UFS FILESYSTEM
17524 M:      Evgeniy Dushistov <dushistov@mail.ru>
17525 S:      Maintained
17526 F:      Documentation/admin-guide/ufs.rst
17527 F:      fs/ufs/
17528
17529 UHID USERSPACE HID IO DRIVER
17530 M:      David Rheinsberg <david.rheinsberg@gmail.com>
17531 L:      linux-input@vger.kernel.org
17532 S:      Maintained
17533 F:      drivers/hid/uhid.c
17534 F:      include/uapi/linux/uhid.h
17535
17536 ULPI BUS
17537 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17538 L:      linux-usb@vger.kernel.org
17539 S:      Maintained
17540 F:      drivers/usb/common/ulpi.c
17541 F:      include/linux/ulpi/
17542
17543 UNICODE SUBSYSTEM
17544 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
17545 L:      linux-fsdevel@vger.kernel.org
17546 S:      Supported
17547 F:      fs/unicode/
17548
17549 UNICORE32 ARCHITECTURE
17550 M:      Guan Xuetao <gxt@pku.edu.cn>
17551 S:      Maintained
17552 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
17553 T:      git git://github.com/gxt/linux.git
17554 F:      arch/unicore32/
17555
17556 UNIFDEF
17557 M:      Tony Finch <dot@dotat.at>
17558 S:      Maintained
17559 W:      http://dotat.at/prog/unifdef
17560 F:      scripts/unifdef.c
17561
17562 UNIFORM CDROM DRIVER
17563 M:      Jens Axboe <axboe@kernel.dk>
17564 S:      Maintained
17565 W:      http://www.kernel.dk
17566 F:      Documentation/cdrom/
17567 F:      drivers/cdrom/cdrom.c
17568 F:      include/linux/cdrom.h
17569 F:      include/uapi/linux/cdrom.h
17570
17571 UNISYS S-PAR DRIVERS
17572 M:      David Kershner <david.kershner@unisys.com>
17573 L:      sparmaintainer@unisys.com (Unisys internal)
17574 S:      Supported
17575 F:      drivers/staging/unisys/
17576 F:      drivers/visorbus/
17577 F:      include/linux/visorbus.h
17578
17579 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
17580 R:      Alim Akhtar <alim.akhtar@samsung.com>
17581 R:      Avri Altman <avri.altman@wdc.com>
17582 L:      linux-scsi@vger.kernel.org
17583 S:      Supported
17584 F:      Documentation/scsi/ufs.rst
17585 F:      drivers/scsi/ufs/
17586
17587 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
17588 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
17589 L:      linux-scsi@vger.kernel.org
17590 S:      Supported
17591 F:      drivers/scsi/ufs/*dwc*
17592
17593 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
17594 M:      Stanley Chu <stanley.chu@mediatek.com>
17595 L:      linux-scsi@vger.kernel.org
17596 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
17597 S:      Maintained
17598 F:      drivers/scsi/ufs/ufs-mediatek*
17599
17600 UNSORTED BLOCK IMAGES (UBI)
17601 M:      Richard Weinberger <richard@nod.at>
17602 L:      linux-mtd@lists.infradead.org
17603 S:      Supported
17604 W:      http://www.linux-mtd.infradead.org/
17605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17607 F:      drivers/mtd/ubi/
17608 F:      include/linux/mtd/ubi.h
17609 F:      include/uapi/mtd/ubi-user.h
17610
17611 USB "USBNET" DRIVER FRAMEWORK
17612 M:      Oliver Neukum <oneukum@suse.com>
17613 L:      netdev@vger.kernel.org
17614 S:      Maintained
17615 W:      http://www.linux-usb.org/usbnet
17616 F:      drivers/net/usb/usbnet.c
17617 F:      include/linux/usb/usbnet.h
17618
17619 USB ACM DRIVER
17620 M:      Oliver Neukum <oneukum@suse.com>
17621 L:      linux-usb@vger.kernel.org
17622 S:      Maintained
17623 F:      Documentation/usb/acm.rst
17624 F:      drivers/usb/class/cdc-acm.*
17625
17626 USB APPLE MFI FASTCHARGE DRIVER
17627 M:      Bastien Nocera <hadess@hadess.net>
17628 L:      linux-usb@vger.kernel.org
17629 S:      Maintained
17630 F:      drivers/usb/misc/apple-mfi-fastcharge.c
17631
17632 USB AR5523 WIRELESS DRIVER
17633 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
17634 L:      linux-wireless@vger.kernel.org
17635 S:      Maintained
17636 F:      drivers/net/wireless/ath/ar5523/
17637
17638 USB ATTACHED SCSI
17639 M:      Oliver Neukum <oneukum@suse.com>
17640 L:      linux-usb@vger.kernel.org
17641 L:      linux-scsi@vger.kernel.org
17642 S:      Maintained
17643 F:      drivers/usb/storage/uas.c
17644
17645 USB CDC ETHERNET DRIVER
17646 M:      Oliver Neukum <oliver@neukum.org>
17647 L:      linux-usb@vger.kernel.org
17648 S:      Maintained
17649 F:      drivers/net/usb/cdc_*.c
17650 F:      include/uapi/linux/usb/cdc.h
17651
17652 USB CHAOSKEY DRIVER
17653 M:      Keith Packard <keithp@keithp.com>
17654 L:      linux-usb@vger.kernel.org
17655 S:      Maintained
17656 F:      drivers/usb/misc/chaoskey.c
17657
17658 USB CYPRESS C67X00 DRIVER
17659 M:      Peter Korsgaard <jacmet@sunsite.dk>
17660 L:      linux-usb@vger.kernel.org
17661 S:      Maintained
17662 F:      drivers/usb/c67x00/
17663
17664 USB DAVICOM DM9601 DRIVER
17665 M:      Peter Korsgaard <jacmet@sunsite.dk>
17666 L:      netdev@vger.kernel.org
17667 S:      Maintained
17668 W:      http://www.linux-usb.org/usbnet
17669 F:      drivers/net/usb/dm9601.c
17670
17671 USB EHCI DRIVER
17672 M:      Alan Stern <stern@rowland.harvard.edu>
17673 L:      linux-usb@vger.kernel.org
17674 S:      Maintained
17675 F:      Documentation/usb/ehci.rst
17676 F:      drivers/usb/host/ehci*
17677
17678 USB GADGET/PERIPHERAL SUBSYSTEM
17679 M:      Felipe Balbi <balbi@kernel.org>
17680 L:      linux-usb@vger.kernel.org
17681 S:      Maintained
17682 W:      http://www.linux-usb.org/gadget
17683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17684 F:      drivers/usb/gadget/
17685 F:      include/linux/usb/gadget*
17686
17687 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
17688 M:      Jiri Kosina <jikos@kernel.org>
17689 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
17690 L:      linux-usb@vger.kernel.org
17691 S:      Maintained
17692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
17693 F:      Documentation/hid/hiddev.rst
17694 F:      drivers/hid/usbhid/
17695
17696 USB INTEL XHCI ROLE MUX DRIVER
17697 M:      Hans de Goede <hdegoede@redhat.com>
17698 L:      linux-usb@vger.kernel.org
17699 S:      Maintained
17700 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
17701
17702 USB IP DRIVER FOR HISILICON KIRIN
17703 M:      Yu Chen <chenyu56@huawei.com>
17704 M:      Binghui Wang <wangbinghui@hisilicon.com>
17705 L:      linux-usb@vger.kernel.org
17706 S:      Maintained
17707 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
17708 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
17709
17710 USB ISP116X DRIVER
17711 M:      Olav Kongas <ok@artecdesign.ee>
17712 L:      linux-usb@vger.kernel.org
17713 S:      Maintained
17714 F:      drivers/usb/host/isp116x*
17715 F:      include/linux/usb/isp116x.h
17716
17717 USB LAN78XX ETHERNET DRIVER
17718 M:      Woojung Huh <woojung.huh@microchip.com>
17719 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17720 L:      netdev@vger.kernel.org
17721 S:      Maintained
17722 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
17723 F:      drivers/net/usb/lan78xx.*
17724 F:      include/dt-bindings/net/microchip-lan78xx.h
17725
17726 USB MASS STORAGE DRIVER
17727 M:      Alan Stern <stern@rowland.harvard.edu>
17728 L:      linux-usb@vger.kernel.org
17729 L:      usb-storage@lists.one-eyed-alien.net
17730 S:      Maintained
17731 F:      drivers/usb/storage/
17732
17733 USB MIDI DRIVER
17734 M:      Clemens Ladisch <clemens@ladisch.de>
17735 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17736 S:      Maintained
17737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17738 F:      sound/usb/midi.*
17739
17740 USB NETWORKING DRIVERS
17741 L:      linux-usb@vger.kernel.org
17742 S:      Odd Fixes
17743 F:      drivers/net/usb/
17744
17745 USB OHCI DRIVER
17746 M:      Alan Stern <stern@rowland.harvard.edu>
17747 L:      linux-usb@vger.kernel.org
17748 S:      Maintained
17749 F:      Documentation/usb/ohci.rst
17750 F:      drivers/usb/host/ohci*
17751
17752 USB OTG FSM (Finite State Machine)
17753 M:      Peter Chen <Peter.Chen@nxp.com>
17754 L:      linux-usb@vger.kernel.org
17755 S:      Maintained
17756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
17757 F:      drivers/usb/common/usb-otg-fsm.c
17758
17759 USB OVER IP DRIVER
17760 M:      Valentina Manea <valentina.manea.m@gmail.com>
17761 M:      Shuah Khan <shuah@kernel.org>
17762 M:      Shuah Khan <skhan@linuxfoundation.org>
17763 L:      linux-usb@vger.kernel.org
17764 S:      Maintained
17765 F:      Documentation/usb/usbip_protocol.rst
17766 F:      drivers/usb/usbip/
17767 F:      tools/testing/selftests/drivers/usb/usbip/
17768 F:      tools/usb/usbip/
17769
17770 USB PEGASUS DRIVER
17771 M:      Petko Manolov <petkan@nucleusys.com>
17772 L:      linux-usb@vger.kernel.org
17773 L:      netdev@vger.kernel.org
17774 S:      Maintained
17775 W:      https://github.com/petkan/pegasus
17776 T:      git git://github.com/petkan/pegasus.git
17777 F:      drivers/net/usb/pegasus.*
17778
17779 USB PHY LAYER
17780 M:      Felipe Balbi <balbi@kernel.org>
17781 L:      linux-usb@vger.kernel.org
17782 S:      Maintained
17783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17784 F:      drivers/usb/phy/
17785
17786 USB PRINTER DRIVER (usblp)
17787 M:      Pete Zaitcev <zaitcev@redhat.com>
17788 L:      linux-usb@vger.kernel.org
17789 S:      Supported
17790 F:      drivers/usb/class/usblp.c
17791
17792 USB QMI WWAN NETWORK DRIVER
17793 M:      Bjørn Mork <bjorn@mork.no>
17794 L:      netdev@vger.kernel.org
17795 S:      Maintained
17796 F:      Documentation/ABI/testing/sysfs-class-net-qmi
17797 F:      drivers/net/usb/qmi_wwan.c
17798
17799 USB RTL8150 DRIVER
17800 M:      Petko Manolov <petkan@nucleusys.com>
17801 L:      linux-usb@vger.kernel.org
17802 L:      netdev@vger.kernel.org
17803 S:      Maintained
17804 W:      https://github.com/petkan/rtl8150
17805 T:      git git://github.com/petkan/rtl8150.git
17806 F:      drivers/net/usb/rtl8150.c
17807
17808 USB SERIAL SUBSYSTEM
17809 M:      Johan Hovold <johan@kernel.org>
17810 L:      linux-usb@vger.kernel.org
17811 S:      Maintained
17812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
17813 F:      Documentation/usb/usb-serial.rst
17814 F:      drivers/usb/serial/
17815 F:      include/linux/usb/serial.h
17816
17817 USB SMSC75XX ETHERNET DRIVER
17818 M:      Steve Glendinning <steve.glendinning@shawell.net>
17819 L:      netdev@vger.kernel.org
17820 S:      Maintained
17821 F:      drivers/net/usb/smsc75xx.*
17822
17823 USB SMSC95XX ETHERNET DRIVER
17824 M:      Steve Glendinning <steve.glendinning@shawell.net>
17825 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17826 L:      netdev@vger.kernel.org
17827 S:      Maintained
17828 F:      drivers/net/usb/smsc95xx.*
17829
17830 USB SUBSYSTEM
17831 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17832 L:      linux-usb@vger.kernel.org
17833 S:      Supported
17834 W:      http://www.linux-usb.org
17835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
17836 F:      Documentation/devicetree/bindings/usb/
17837 F:      Documentation/usb/
17838 F:      drivers/usb/
17839 F:      include/linux/usb.h
17840 F:      include/linux/usb/
17841
17842 USB TYPEC BUS FOR ALTERNATE MODES
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-bus-typec
17847 F:      Documentation/driver-api/usb/typec_bus.rst
17848 F:      drivers/usb/typec/altmodes/
17849 F:      include/linux/usb/typec_altmode.h
17850
17851 USB TYPEC CLASS
17852 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17853 L:      linux-usb@vger.kernel.org
17854 S:      Maintained
17855 F:      Documentation/ABI/testing/sysfs-class-typec
17856 F:      Documentation/driver-api/usb/typec.rst
17857 F:      drivers/usb/typec/
17858 F:      include/linux/usb/typec.h
17859
17860 USB TYPEC INTEL PMC MUX DRIVER
17861 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17862 L:      linux-usb@vger.kernel.org
17863 S:      Maintained
17864 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
17865 F:      drivers/usb/typec/mux/intel_pmc_mux.c
17866
17867 USB TYPEC PI3USB30532 MUX DRIVER
17868 M:      Hans de Goede <hdegoede@redhat.com>
17869 L:      linux-usb@vger.kernel.org
17870 S:      Maintained
17871 F:      drivers/usb/typec/mux/pi3usb30532.c
17872
17873 USB TYPEC PORT CONTROLLER DRIVERS
17874 M:      Guenter Roeck <linux@roeck-us.net>
17875 L:      linux-usb@vger.kernel.org
17876 S:      Maintained
17877 F:      drivers/usb/typec/tcpm/
17878
17879 USB UHCI DRIVER
17880 M:      Alan Stern <stern@rowland.harvard.edu>
17881 L:      linux-usb@vger.kernel.org
17882 S:      Maintained
17883 F:      drivers/usb/host/uhci*
17884
17885 USB VIDEO CLASS
17886 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17887 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
17888 L:      linux-media@vger.kernel.org
17889 S:      Maintained
17890 W:      http://www.ideasonboard.org/uvc/
17891 T:      git git://linuxtv.org/media_tree.git
17892 F:      drivers/media/usb/uvc/
17893 F:      include/uapi/linux/uvcvideo.h
17894
17895 USB VISION DRIVER
17896 M:      Hans Verkuil <hverkuil@xs4all.nl>
17897 L:      linux-media@vger.kernel.org
17898 S:      Odd Fixes
17899 W:      https://linuxtv.org
17900 T:      git git://linuxtv.org/media_tree.git
17901 F:      drivers/staging/media/usbvision/
17902
17903 USB WEBCAM GADGET
17904 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17905 L:      linux-usb@vger.kernel.org
17906 S:      Maintained
17907 F:      drivers/usb/gadget/function/*uvc*
17908 F:      drivers/usb/gadget/legacy/webcam.c
17909 F:      include/uapi/linux/usb/g_uvc.h
17910
17911 USB WIRELESS RNDIS DRIVER (rndis_wlan)
17912 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
17913 L:      linux-wireless@vger.kernel.org
17914 S:      Maintained
17915 F:      drivers/net/wireless/rndis_wlan.c
17916
17917 USB XHCI DRIVER
17918 M:      Mathias Nyman <mathias.nyman@intel.com>
17919 L:      linux-usb@vger.kernel.org
17920 S:      Supported
17921 F:      drivers/usb/host/pci-quirks*
17922 F:      drivers/usb/host/xhci*
17923
17924 USB ZD1201 DRIVER
17925 L:      linux-wireless@vger.kernel.org
17926 S:      Orphan
17927 W:      http://linux-lc100020.sourceforge.net
17928 F:      drivers/net/wireless/zydas/zd1201.*
17929
17930 USB ZR364XX DRIVER
17931 M:      Antoine Jacquet <royale@zerezo.com>
17932 L:      linux-usb@vger.kernel.org
17933 L:      linux-media@vger.kernel.org
17934 S:      Maintained
17935 W:      http://royale.zerezo.com/zr364xx/
17936 T:      git git://linuxtv.org/media_tree.git
17937 F:      Documentation/admin-guide/media/zr364xx*
17938 F:      drivers/media/usb/zr364xx/
17939
17940 USER-MODE LINUX (UML)
17941 M:      Jeff Dike <jdike@addtoit.com>
17942 M:      Richard Weinberger <richard@nod.at>
17943 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
17944 L:      linux-um@lists.infradead.org
17945 S:      Maintained
17946 W:      http://user-mode-linux.sourceforge.net
17947 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
17948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
17949 F:      Documentation/virt/uml/
17950 F:      arch/um/
17951 F:      arch/x86/um/
17952 F:      fs/hostfs/
17953
17954 USERSPACE COPYIN/COPYOUT (UIOVEC)
17955 M:      Alexander Viro <viro@zeniv.linux.org.uk>
17956 S:      Maintained
17957 F:      include/linux/uio.h
17958 F:      lib/iov_iter.c
17959
17960 USERSPACE DMA BUFFER DRIVER
17961 M:      Gerd Hoffmann <kraxel@redhat.com>
17962 L:      dri-devel@lists.freedesktop.org
17963 S:      Maintained
17964 T:      git git://anongit.freedesktop.org/drm/drm-misc
17965 F:      drivers/dma-buf/udmabuf.c
17966 F:      include/uapi/linux/udmabuf.h
17967
17968 USERSPACE I/O (UIO)
17969 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17970 S:      Maintained
17971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17972 F:      Documentation/driver-api/uio-howto.rst
17973 F:      drivers/uio/
17974 F:      include/linux/uio_driver.h
17975
17976 UTIL-LINUX PACKAGE
17977 M:      Karel Zak <kzak@redhat.com>
17978 L:      util-linux@vger.kernel.org
17979 S:      Maintained
17980 W:      http://en.wikipedia.org/wiki/Util-linux
17981 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
17982
17983 UUID HELPERS
17984 M:      Christoph Hellwig <hch@lst.de>
17985 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17986 L:      linux-kernel@vger.kernel.org
17987 S:      Maintained
17988 T:      git git://git.infradead.org/users/hch/uuid.git
17989 F:      include/linux/uuid.h
17990 F:      include/uapi/linux/uuid.h
17991 F:      lib/test_uuid.c
17992 F:      lib/uuid.c
17993
17994 UVESAFB DRIVER
17995 M:      Michal Januszewski <spock@gentoo.org>
17996 L:      linux-fbdev@vger.kernel.org
17997 S:      Maintained
17998 W:      https://github.com/mjanusz/v86d
17999 F:      Documentation/fb/uvesafb.rst
18000 F:      drivers/video/fbdev/uvesafb.*
18001
18002 Ux500 CLOCK DRIVERS
18003 M:      Ulf Hansson <ulf.hansson@linaro.org>
18004 L:      linux-clk@vger.kernel.org
18005 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18006 S:      Maintained
18007 F:      drivers/clk/ux500/
18008
18009 VF610 NAND DRIVER
18010 M:      Stefan Agner <stefan@agner.ch>
18011 L:      linux-mtd@lists.infradead.org
18012 S:      Supported
18013 F:      drivers/mtd/nand/raw/vf610_nfc.c
18014
18015 VFAT/FAT/MSDOS FILESYSTEM
18016 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
18017 S:      Maintained
18018 F:      Documentation/filesystems/vfat.rst
18019 F:      fs/fat/
18020
18021 VFIO DRIVER
18022 M:      Alex Williamson <alex.williamson@redhat.com>
18023 R:      Cornelia Huck <cohuck@redhat.com>
18024 L:      kvm@vger.kernel.org
18025 S:      Maintained
18026 T:      git git://github.com/awilliam/linux-vfio.git
18027 F:      Documentation/driver-api/vfio.rst
18028 F:      drivers/vfio/
18029 F:      include/linux/vfio.h
18030 F:      include/uapi/linux/vfio.h
18031
18032 VFIO MEDIATED DEVICE DRIVERS
18033 M:      Kirti Wankhede <kwankhede@nvidia.com>
18034 L:      kvm@vger.kernel.org
18035 S:      Maintained
18036 F:      Documentation/driver-api/vfio-mediated-device.rst
18037 F:      drivers/vfio/mdev/
18038 F:      include/linux/mdev.h
18039 F:      samples/vfio-mdev/
18040
18041 VFIO PLATFORM DRIVER
18042 M:      Eric Auger <eric.auger@redhat.com>
18043 L:      kvm@vger.kernel.org
18044 S:      Maintained
18045 F:      drivers/vfio/platform/
18046
18047 VGA_SWITCHEROO
18048 R:      Lukas Wunner <lukas@wunner.de>
18049 S:      Maintained
18050 T:      git git://anongit.freedesktop.org/drm/drm-misc
18051 F:      Documentation/gpu/vga-switcheroo.rst
18052 F:      drivers/gpu/vga/vga_switcheroo.c
18053 F:      include/linux/vga_switcheroo.h
18054
18055 VIA RHINE NETWORK DRIVER
18056 S:      Orphan
18057 F:      drivers/net/ethernet/via/via-rhine.c
18058
18059 VIA SD/MMC CARD CONTROLLER DRIVER
18060 M:      Bruce Chang <brucechang@via.com.tw>
18061 M:      Harald Welte <HaraldWelte@viatech.com>
18062 S:      Maintained
18063 F:      drivers/mmc/host/via-sdmmc.c
18064
18065 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
18066 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
18067 L:      linux-fbdev@vger.kernel.org
18068 S:      Maintained
18069 F:      drivers/video/fbdev/via/
18070 F:      include/linux/via-core.h
18071 F:      include/linux/via-gpio.h
18072 F:      include/linux/via_i2c.h
18073
18074 VIA VELOCITY NETWORK DRIVER
18075 M:      Francois Romieu <romieu@fr.zoreil.com>
18076 L:      netdev@vger.kernel.org
18077 S:      Maintained
18078 F:      drivers/net/ethernet/via/via-velocity.*
18079
18080 VICODEC VIRTUAL CODEC DRIVER
18081 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
18082 L:      linux-media@vger.kernel.org
18083 S:      Maintained
18084 W:      https://linuxtv.org
18085 T:      git git://linuxtv.org/media_tree.git
18086 F:      drivers/media/test-drivers/vicodec/*
18087
18088 VIDEO I2C POLLING DRIVER
18089 M:      Matt Ranostay <matt.ranostay@konsulko.com>
18090 L:      linux-media@vger.kernel.org
18091 S:      Maintained
18092 F:      drivers/media/i2c/video-i2c.c
18093
18094 VIDEO MULTIPLEXER DRIVER
18095 M:      Philipp Zabel <p.zabel@pengutronix.de>
18096 L:      linux-media@vger.kernel.org
18097 S:      Maintained
18098 F:      drivers/media/platform/video-mux.c
18099
18100 VIDEOBUF2 FRAMEWORK
18101 M:      Pawel Osciak <pawel@osciak.com>
18102 M:      Marek Szyprowski <m.szyprowski@samsung.com>
18103 M:      Kyungmin Park <kyungmin.park@samsung.com>
18104 R:      Tomasz Figa <tfiga@chromium.org>
18105 L:      linux-media@vger.kernel.org
18106 S:      Maintained
18107 F:      drivers/media/common/videobuf2/*
18108 F:      include/media/videobuf2-*
18109
18110 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
18111 M:      Helen Koike <helen.koike@collabora.com>
18112 R:      Shuah Khan <skhan@linuxfoundation.org>
18113 L:      linux-media@vger.kernel.org
18114 S:      Maintained
18115 W:      https://linuxtv.org
18116 T:      git git://linuxtv.org/media_tree.git
18117 F:      drivers/media/test-drivers/vimc/*
18118
18119 VIRT LIB
18120 M:      Alex Williamson <alex.williamson@redhat.com>
18121 M:      Paolo Bonzini <pbonzini@redhat.com>
18122 L:      kvm@vger.kernel.org
18123 S:      Supported
18124 F:      virt/lib/
18125
18126 VIRTIO AND VHOST VSOCK DRIVER
18127 M:      Stefan Hajnoczi <stefanha@redhat.com>
18128 M:      Stefano Garzarella <sgarzare@redhat.com>
18129 L:      kvm@vger.kernel.org
18130 L:      virtualization@lists.linux-foundation.org
18131 L:      netdev@vger.kernel.org
18132 S:      Maintained
18133 F:      drivers/net/vsockmon.c
18134 F:      drivers/vhost/vsock.c
18135 F:      include/linux/virtio_vsock.h
18136 F:      include/uapi/linux/virtio_vsock.h
18137 F:      include/uapi/linux/vm_sockets_diag.h
18138 F:      include/uapi/linux/vsockmon.h
18139 F:      net/vmw_vsock/af_vsock_tap.c
18140 F:      net/vmw_vsock/diag.c
18141 F:      net/vmw_vsock/virtio_transport.c
18142 F:      net/vmw_vsock/virtio_transport_common.c
18143 F:      net/vmw_vsock/vsock_loopback.c
18144 F:      tools/testing/vsock/
18145
18146 VIRTIO BLOCK AND SCSI DRIVERS
18147 M:      "Michael S. Tsirkin" <mst@redhat.com>
18148 M:      Jason Wang <jasowang@redhat.com>
18149 R:      Paolo Bonzini <pbonzini@redhat.com>
18150 R:      Stefan Hajnoczi <stefanha@redhat.com>
18151 L:      virtualization@lists.linux-foundation.org
18152 S:      Maintained
18153 F:      drivers/block/virtio_blk.c
18154 F:      drivers/scsi/virtio_scsi.c
18155 F:      drivers/vhost/scsi.c
18156 F:      include/uapi/linux/virtio_blk.h
18157 F:      include/uapi/linux/virtio_scsi.h
18158
18159 VIRTIO CONSOLE DRIVER
18160 M:      Amit Shah <amit@kernel.org>
18161 L:      virtualization@lists.linux-foundation.org
18162 S:      Maintained
18163 F:      drivers/char/virtio_console.c
18164 F:      include/linux/virtio_console.h
18165 F:      include/uapi/linux/virtio_console.h
18166
18167 VIRTIO CORE AND NET DRIVERS
18168 M:      "Michael S. Tsirkin" <mst@redhat.com>
18169 M:      Jason Wang <jasowang@redhat.com>
18170 L:      virtualization@lists.linux-foundation.org
18171 S:      Maintained
18172 F:      Documentation/devicetree/bindings/virtio/
18173 F:      drivers/block/virtio_blk.c
18174 F:      drivers/crypto/virtio/
18175 F:      drivers/net/virtio_net.c
18176 F:      drivers/vdpa/
18177 F:      drivers/virtio/
18178 F:      include/linux/vdpa.h
18179 F:      include/linux/virtio*.h
18180 F:      include/uapi/linux/virtio_*.h
18181 F:      tools/virtio/
18182
18183 VIRTIO BALLOON
18184 M:      "Michael S. Tsirkin" <mst@redhat.com>
18185 M:      David Hildenbrand <david@redhat.com>
18186 L:      virtualization@lists.linux-foundation.org
18187 S:      Maintained
18188 F:      drivers/virtio/virtio_balloon.c
18189 F:      include/uapi/linux/virtio_balloon.h
18190 F:      include/linux/balloon_compaction.h
18191 F:      mm/balloon_compaction.c
18192
18193 VIRTIO CRYPTO DRIVER
18194 M:      Gonglei <arei.gonglei@huawei.com>
18195 L:      virtualization@lists.linux-foundation.org
18196 L:      linux-crypto@vger.kernel.org
18197 S:      Maintained
18198 F:      drivers/crypto/virtio/
18199 F:      include/uapi/linux/virtio_crypto.h
18200
18201 VIRTIO DRIVERS FOR S390
18202 M:      Cornelia Huck <cohuck@redhat.com>
18203 M:      Halil Pasic <pasic@linux.ibm.com>
18204 L:      linux-s390@vger.kernel.org
18205 L:      virtualization@lists.linux-foundation.org
18206 L:      kvm@vger.kernel.org
18207 S:      Supported
18208 F:      arch/s390/include/uapi/asm/virtio-ccw.h
18209 F:      drivers/s390/virtio/
18210
18211 VIRTIO FILE SYSTEM
18212 M:      Vivek Goyal <vgoyal@redhat.com>
18213 M:      Stefan Hajnoczi <stefanha@redhat.com>
18214 M:      Miklos Szeredi <miklos@szeredi.hu>
18215 L:      virtualization@lists.linux-foundation.org
18216 L:      linux-fsdevel@vger.kernel.org
18217 S:      Supported
18218 W:      https://virtio-fs.gitlab.io/
18219 F:      Documentation/filesystems/virtiofs.rst
18220 F:      fs/fuse/virtio_fs.c
18221 F:      include/uapi/linux/virtio_fs.h
18222
18223 VIRTIO GPU DRIVER
18224 M:      David Airlie <airlied@linux.ie>
18225 M:      Gerd Hoffmann <kraxel@redhat.com>
18226 L:      dri-devel@lists.freedesktop.org
18227 L:      virtualization@lists.linux-foundation.org
18228 S:      Maintained
18229 T:      git git://anongit.freedesktop.org/drm/drm-misc
18230 F:      drivers/gpu/drm/virtio/
18231 F:      include/uapi/linux/virtio_gpu.h
18232
18233 VIRTIO HOST (VHOST)
18234 M:      "Michael S. Tsirkin" <mst@redhat.com>
18235 M:      Jason Wang <jasowang@redhat.com>
18236 L:      kvm@vger.kernel.org
18237 L:      virtualization@lists.linux-foundation.org
18238 L:      netdev@vger.kernel.org
18239 S:      Maintained
18240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
18241 F:      drivers/vhost/
18242 F:      include/linux/vhost_iotlb.h
18243 F:      include/uapi/linux/vhost.h
18244
18245 VIRTIO INPUT DRIVER
18246 M:      Gerd Hoffmann <kraxel@redhat.com>
18247 S:      Maintained
18248 F:      drivers/virtio/virtio_input.c
18249 F:      include/uapi/linux/virtio_input.h
18250
18251 VIRTIO IOMMU DRIVER
18252 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
18253 L:      virtualization@lists.linux-foundation.org
18254 S:      Maintained
18255 F:      drivers/iommu/virtio-iommu.c
18256 F:      include/uapi/linux/virtio_iommu.h
18257
18258 VIRTIO MEM DRIVER
18259 M:      David Hildenbrand <david@redhat.com>
18260 L:      virtualization@lists.linux-foundation.org
18261 S:      Maintained
18262 F:      drivers/virtio/virtio_mem.c
18263 F:      include/uapi/linux/virtio_mem.h
18264
18265 VIRTUAL BOX GUEST DEVICE DRIVER
18266 M:      Hans de Goede <hdegoede@redhat.com>
18267 M:      Arnd Bergmann <arnd@arndb.de>
18268 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18269 S:      Maintained
18270 F:      drivers/virt/vboxguest/
18271 F:      include/linux/vbox_utils.h
18272 F:      include/uapi/linux/vbox*.h
18273
18274 VIRTUAL BOX SHARED FOLDER VFS DRIVER
18275 M:      Hans de Goede <hdegoede@redhat.com>
18276 L:      linux-fsdevel@vger.kernel.org
18277 S:      Maintained
18278 F:      fs/vboxsf/*
18279
18280 VIRTUAL SERIO DEVICE DRIVER
18281 M:      Stephen Chandler Paul <thatslyude@gmail.com>
18282 S:      Maintained
18283 F:      drivers/input/serio/userio.c
18284 F:      include/uapi/linux/userio.h
18285
18286 VIVID VIRTUAL VIDEO DRIVER
18287 M:      Hans Verkuil <hverkuil@xs4all.nl>
18288 L:      linux-media@vger.kernel.org
18289 S:      Maintained
18290 W:      https://linuxtv.org
18291 T:      git git://linuxtv.org/media_tree.git
18292 F:      drivers/media/test-drivers/vivid/*
18293
18294 VLYNQ BUS
18295 M:      Florian Fainelli <f.fainelli@gmail.com>
18296 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
18297 S:      Maintained
18298 F:      drivers/vlynq/vlynq.c
18299 F:      include/linux/vlynq.h
18300
18301 VME SUBSYSTEM
18302 M:      Martyn Welch <martyn@welchs.me.uk>
18303 M:      Manohar Vanga <manohar.vanga@gmail.com>
18304 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18305 L:      devel@driverdev.osuosl.org
18306 S:      Maintained
18307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18308 F:      Documentation/driver-api/vme.rst
18309 F:      drivers/staging/vme/
18310 F:      drivers/vme/
18311 F:      include/linux/vme*
18312
18313 VMWARE BALLOON DRIVER
18314 M:      Nadav Amit <namit@vmware.com>
18315 M:      "VMware, Inc." <pv-drivers@vmware.com>
18316 L:      linux-kernel@vger.kernel.org
18317 S:      Maintained
18318 F:      drivers/misc/vmw_balloon.c
18319
18320 VMWARE HYPERVISOR INTERFACE
18321 M:      Deep Shah <sdeep@vmware.com>
18322 M:      "VMware, Inc." <pv-drivers@vmware.com>
18323 L:      virtualization@lists.linux-foundation.org
18324 S:      Supported
18325 F:      arch/x86/include/asm/vmware.h
18326 F:      arch/x86/kernel/cpu/vmware.c
18327
18328 VMWARE PVRDMA DRIVER
18329 M:      Adit Ranadive <aditr@vmware.com>
18330 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18331 L:      linux-rdma@vger.kernel.org
18332 S:      Maintained
18333 F:      drivers/infiniband/hw/vmw_pvrdma/
18334
18335 VMware PVSCSI driver
18336 M:      Jim Gill <jgill@vmware.com>
18337 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18338 L:      linux-scsi@vger.kernel.org
18339 S:      Maintained
18340 F:      drivers/scsi/vmw_pvscsi.c
18341 F:      drivers/scsi/vmw_pvscsi.h
18342
18343 VMWARE VIRTUAL PTP CLOCK DRIVER
18344 M:      Vivek Thampi <vithampi@vmware.com>
18345 M:      "VMware, Inc." <pv-drivers@vmware.com>
18346 L:      netdev@vger.kernel.org
18347 S:      Supported
18348 F:      drivers/ptp/ptp_vmw.c
18349
18350 VMWARE VMMOUSE SUBDRIVER
18351 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
18352 M:      "VMware, Inc." <pv-drivers@vmware.com>
18353 L:      linux-input@vger.kernel.org
18354 S:      Maintained
18355 F:      drivers/input/mouse/vmmouse.c
18356 F:      drivers/input/mouse/vmmouse.h
18357
18358 VMWARE VMXNET3 ETHERNET DRIVER
18359 M:      Ronak Doshi <doshir@vmware.com>
18360 M:      "VMware, Inc." <pv-drivers@vmware.com>
18361 L:      netdev@vger.kernel.org
18362 S:      Maintained
18363 F:      drivers/net/vmxnet3/
18364
18365 VOCORE VOCORE2 BOARD
18366 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
18367 L:      linux-mips@vger.kernel.org
18368 S:      Maintained
18369 F:      arch/mips/boot/dts/ralink/vocore2.dts
18370
18371 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18372 M:      Liam Girdwood <lgirdwood@gmail.com>
18373 M:      Mark Brown <broonie@kernel.org>
18374 L:      linux-kernel@vger.kernel.org
18375 S:      Supported
18376 W:      http://www.slimlogic.co.uk/?p=48
18377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18378 F:      Documentation/devicetree/bindings/regulator/
18379 F:      Documentation/power/regulator/
18380 F:      drivers/regulator/
18381 F:      include/dt-bindings/regulator/
18382 F:      include/linux/regulator/
18383 K:      regulator_get_optional
18384
18385 VRF
18386 M:      David Ahern <dsahern@kernel.org>
18387 M:      Shrijeet Mukherjee <shrijeet@gmail.com>
18388 L:      netdev@vger.kernel.org
18389 S:      Maintained
18390 F:      Documentation/networking/vrf.rst
18391 F:      drivers/net/vrf.c
18392
18393 VSPRINTF
18394 M:      Petr Mladek <pmladek@suse.com>
18395 M:      Steven Rostedt <rostedt@goodmis.org>
18396 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
18397 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18398 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
18399 S:      Maintained
18400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
18401 F:      Documentation/core-api/printk-formats.rst
18402 F:      lib/test_printf.c
18403 F:      lib/vsprintf.c
18404
18405 VT1211 HARDWARE MONITOR DRIVER
18406 M:      Juerg Haefliger <juergh@gmail.com>
18407 L:      linux-hwmon@vger.kernel.org
18408 S:      Maintained
18409 F:      Documentation/hwmon/vt1211.rst
18410 F:      drivers/hwmon/vt1211.c
18411
18412 VT8231 HARDWARE MONITOR DRIVER
18413 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
18414 L:      linux-hwmon@vger.kernel.org
18415 S:      Maintained
18416 F:      drivers/hwmon/vt8231.c
18417
18418 VUB300 USB to SDIO/SD/MMC bridge chip
18419 L:      linux-mmc@vger.kernel.org
18420 S:      Orphan
18421 F:      drivers/mmc/host/vub300.c
18422
18423 W1 DALLAS'S 1-WIRE BUS
18424 M:      Evgeniy Polyakov <zbr@ioremap.net>
18425 S:      Maintained
18426 F:      Documentation/devicetree/bindings/w1/
18427 F:      Documentation/w1/
18428 F:      drivers/w1/
18429 F:      include/linux/w1.h
18430
18431 W83791D HARDWARE MONITORING DRIVER
18432 M:      Marc Hulsman <m.hulsman@tudelft.nl>
18433 L:      linux-hwmon@vger.kernel.org
18434 S:      Maintained
18435 F:      Documentation/hwmon/w83791d.rst
18436 F:      drivers/hwmon/w83791d.c
18437
18438 W83793 HARDWARE MONITORING DRIVER
18439 M:      Rudolf Marek <r.marek@assembler.cz>
18440 L:      linux-hwmon@vger.kernel.org
18441 S:      Maintained
18442 F:      Documentation/hwmon/w83793.rst
18443 F:      drivers/hwmon/w83793.c
18444
18445 W83795 HARDWARE MONITORING DRIVER
18446 M:      Jean Delvare <jdelvare@suse.com>
18447 L:      linux-hwmon@vger.kernel.org
18448 S:      Maintained
18449 F:      drivers/hwmon/w83795.c
18450
18451 W83L51xD SD/MMC CARD INTERFACE DRIVER
18452 M:      Pierre Ossman <pierre@ossman.eu>
18453 S:      Maintained
18454 F:      drivers/mmc/host/wbsd.*
18455
18456 WACOM PROTOCOL 4 SERIAL TABLETS
18457 M:      Julian Squires <julian@cipht.net>
18458 M:      Hans de Goede <hdegoede@redhat.com>
18459 L:      linux-input@vger.kernel.org
18460 S:      Maintained
18461 F:      drivers/input/tablet/wacom_serial4.c
18462
18463 WATCHDOG DEVICE DRIVERS
18464 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
18465 M:      Guenter Roeck <linux@roeck-us.net>
18466 L:      linux-watchdog@vger.kernel.org
18467 S:      Maintained
18468 W:      http://www.linux-watchdog.org/
18469 T:      git git://www.linux-watchdog.org/linux-watchdog.git
18470 F:      Documentation/devicetree/bindings/watchdog/
18471 F:      Documentation/watchdog/
18472 F:      drivers/watchdog/
18473 F:      include/linux/watchdog.h
18474 F:      include/uapi/linux/watchdog.h
18475
18476 WHISKEYCOVE PMIC GPIO DRIVER
18477 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
18478 L:      linux-gpio@vger.kernel.org
18479 S:      Maintained
18480 F:      drivers/gpio/gpio-wcove.c
18481
18482 WHWAVE RTC DRIVER
18483 M:      Dianlong Li <long17.cool@163.com>
18484 L:      linux-rtc@vger.kernel.org
18485 S:      Maintained
18486 F:      drivers/rtc/rtc-sd3078.c
18487
18488 WIIMOTE HID DRIVER
18489 M:      David Rheinsberg <david.rheinsberg@gmail.com>
18490 L:      linux-input@vger.kernel.org
18491 S:      Maintained
18492 F:      drivers/hid/hid-wiimote*
18493
18494 WILOCITY WIL6210 WIRELESS DRIVER
18495 M:      Maya Erez <merez@codeaurora.org>
18496 L:      linux-wireless@vger.kernel.org
18497 L:      wil6210@qti.qualcomm.com
18498 S:      Supported
18499 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
18500 F:      drivers/net/wireless/ath/wil6210/
18501
18502 WIMAX STACK
18503 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
18504 M:      linux-wimax@intel.com
18505 L:      wimax@linuxwimax.org (subscribers-only)
18506 S:      Supported
18507 W:      http://linuxwimax.org
18508 F:      Documentation/admin-guide/wimax/wimax.rst
18509 F:      include/linux/wimax/debug.h
18510 F:      include/net/wimax.h
18511 F:      include/uapi/linux/wimax.h
18512 F:      net/wimax/
18513
18514 WINBOND CIR DRIVER
18515 M:      David Härdeman <david@hardeman.nu>
18516 S:      Maintained
18517 F:      drivers/media/rc/winbond-cir.c
18518
18519 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
18520 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18521 L:      linux-watchdog@vger.kernel.org
18522 S:      Maintained
18523 F:      drivers/watchdog/ebc-c384_wdt.c
18524
18525 WINSYSTEMS WS16C48 GPIO DRIVER
18526 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18527 L:      linux-gpio@vger.kernel.org
18528 S:      Maintained
18529 F:      drivers/gpio/gpio-ws16c48.c
18530
18531 WIREGUARD SECURE NETWORK TUNNEL
18532 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18533 L:      wireguard@lists.zx2c4.com
18534 L:      netdev@vger.kernel.org
18535 S:      Maintained
18536 F:      drivers/net/wireguard/
18537 F:      tools/testing/selftests/wireguard/
18538
18539 WISTRON LAPTOP BUTTON DRIVER
18540 M:      Miloslav Trmac <mitr@volny.cz>
18541 S:      Maintained
18542 F:      drivers/input/misc/wistron_btns.c
18543
18544 WL3501 WIRELESS PCMCIA CARD DRIVER
18545 L:      linux-wireless@vger.kernel.org
18546 S:      Odd fixes
18547 F:      drivers/net/wireless/wl3501*
18548
18549 WOLFSON MICROELECTRONICS DRIVERS
18550 L:      patches@opensource.cirrus.com
18551 S:      Supported
18552 W:      https://github.com/CirrusLogic/linux-drivers/wiki
18553 T:      git https://github.com/CirrusLogic/linux-drivers.git
18554 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
18555 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
18556 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
18557 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
18558 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
18559 F:      Documentation/hwmon/wm83??.rst
18560 F:      arch/arm/mach-s3c64xx/mach-crag6410*
18561 F:      drivers/clk/clk-wm83*.c
18562 F:      drivers/extcon/extcon-arizona.c
18563 F:      drivers/gpio/gpio-*wm*.c
18564 F:      drivers/gpio/gpio-arizona.c
18565 F:      drivers/hwmon/wm83??-hwmon.c
18566 F:      drivers/input/misc/wm831x-on.c
18567 F:      drivers/input/touchscreen/wm831x-ts.c
18568 F:      drivers/input/touchscreen/wm97*.c
18569 F:      drivers/leds/leds-wm83*.c
18570 F:      drivers/mfd/arizona*
18571 F:      drivers/mfd/cs47l24*
18572 F:      drivers/mfd/wm*.c
18573 F:      drivers/power/supply/wm83*.c
18574 F:      drivers/regulator/arizona*
18575 F:      drivers/regulator/wm8*.c
18576 F:      drivers/rtc/rtc-wm83*.c
18577 F:      drivers/video/backlight/wm83*_bl.c
18578 F:      drivers/watchdog/wm83*_wdt.c
18579 F:      include/linux/mfd/arizona/
18580 F:      include/linux/mfd/wm831x/
18581 F:      include/linux/mfd/wm8350/
18582 F:      include/linux/mfd/wm8400*
18583 F:      include/linux/regulator/arizona*
18584 F:      include/linux/wm97xx.h
18585 F:      include/sound/wm????.h
18586 F:      sound/soc/codecs/arizona.?
18587 F:      sound/soc/codecs/cs47l24*
18588 F:      sound/soc/codecs/wm*
18589
18590 WORKQUEUE
18591 M:      Tejun Heo <tj@kernel.org>
18592 R:      Lai Jiangshan <jiangshanlai@gmail.com>
18593 S:      Maintained
18594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
18595 F:      Documentation/core-api/workqueue.rst
18596 F:      include/linux/workqueue.h
18597 F:      kernel/workqueue.c
18598
18599 X-POWERS AXP288 PMIC DRIVERS
18600 M:      Hans de Goede <hdegoede@redhat.com>
18601 S:      Maintained
18602 F:      drivers/acpi/pmic/intel_pmic_xpower.c
18603 N:      axp288
18604
18605 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
18606 M:      Chen-Yu Tsai <wens@csie.org>
18607 L:      linux-kernel@vger.kernel.org
18608 S:      Maintained
18609 N:      axp[128]
18610
18611 X.25 NETWORK LAYER
18612 M:      Andrew Hendry <andrew.hendry@gmail.com>
18613 L:      linux-x25@vger.kernel.org
18614 S:      Odd Fixes
18615 F:      Documentation/networking/x25*
18616 F:      include/net/x25*
18617 F:      net/x25/
18618
18619 X86 ARCHITECTURE (32-BIT AND 64-BIT)
18620 M:      Thomas Gleixner <tglx@linutronix.de>
18621 M:      Ingo Molnar <mingo@redhat.com>
18622 M:      Borislav Petkov <bp@alien8.de>
18623 M:      x86@kernel.org
18624 R:      "H. Peter Anvin" <hpa@zytor.com>
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/core
18628 F:      Documentation/devicetree/bindings/x86/
18629 F:      Documentation/x86/
18630 F:      arch/x86/
18631
18632 X86 ENTRY CODE
18633 M:      Andy Lutomirski <luto@kernel.org>
18634 L:      linux-kernel@vger.kernel.org
18635 S:      Maintained
18636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
18637 F:      arch/x86/entry/
18638
18639 X86 MCE INFRASTRUCTURE
18640 M:      Tony Luck <tony.luck@intel.com>
18641 M:      Borislav Petkov <bp@alien8.de>
18642 L:      linux-edac@vger.kernel.org
18643 S:      Maintained
18644 F:      arch/x86/kernel/cpu/mce/*
18645
18646 X86 MICROCODE UPDATE SUPPORT
18647 M:      Borislav Petkov <bp@alien8.de>
18648 S:      Maintained
18649 F:      arch/x86/kernel/cpu/microcode/*
18650
18651 X86 MM
18652 M:      Dave Hansen <dave.hansen@linux.intel.com>
18653 M:      Andy Lutomirski <luto@kernel.org>
18654 M:      Peter Zijlstra <peterz@infradead.org>
18655 L:      linux-kernel@vger.kernel.org
18656 S:      Maintained
18657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
18658 F:      arch/x86/mm/
18659
18660 X86 PLATFORM DRIVERS
18661 M:      Darren Hart <dvhart@infradead.org>
18662 M:      Andy Shevchenko <andy@infradead.org>
18663 L:      platform-driver-x86@vger.kernel.org
18664 S:      Odd Fixes
18665 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
18666 F:      drivers/platform/olpc/
18667 F:      drivers/platform/x86/
18668
18669 X86 PLATFORM DRIVERS - ARCH
18670 R:      Darren Hart <dvhart@infradead.org>
18671 R:      Andy Shevchenko <andy@infradead.org>
18672 L:      platform-driver-x86@vger.kernel.org
18673 L:      x86@kernel.org
18674 S:      Maintained
18675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18676 F:      arch/x86/platform
18677
18678 X86 VDSO
18679 M:      Andy Lutomirski <luto@kernel.org>
18680 L:      linux-kernel@vger.kernel.org
18681 S:      Maintained
18682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
18683 F:      arch/x86/entry/vdso/
18684
18685 XARRAY
18686 M:      Matthew Wilcox <willy@infradead.org>
18687 L:      linux-fsdevel@vger.kernel.org
18688 S:      Supported
18689 F:      Documentation/core-api/xarray.rst
18690 F:      include/linux/idr.h
18691 F:      include/linux/xarray.h
18692 F:      lib/idr.c
18693 F:      lib/xarray.c
18694 F:      tools/testing/radix-tree
18695
18696 XBOX DVD IR REMOTE
18697 M:      Benjamin Valentin <benpicco@googlemail.com>
18698 S:      Maintained
18699 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
18700 F:      drivers/media/rc/xbox_remote.c
18701
18702 XC2028/3028 TUNER DRIVER
18703 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18704 L:      linux-media@vger.kernel.org
18705 S:      Maintained
18706 W:      https://linuxtv.org
18707 T:      git git://linuxtv.org/media_tree.git
18708 F:      drivers/media/tuners/tuner-xc2028.*
18709
18710 XDP (eXpress Data Path)
18711 M:      Alexei Starovoitov <ast@kernel.org>
18712 M:      Daniel Borkmann <daniel@iogearbox.net>
18713 M:      David S. Miller <davem@davemloft.net>
18714 M:      Jakub Kicinski <kuba@kernel.org>
18715 M:      Jesper Dangaard Brouer <hawk@kernel.org>
18716 M:      John Fastabend <john.fastabend@gmail.com>
18717 L:      netdev@vger.kernel.org
18718 L:      bpf@vger.kernel.org
18719 S:      Supported
18720 F:      include/net/xdp.h
18721 F:      include/trace/events/xdp.h
18722 F:      kernel/bpf/cpumap.c
18723 F:      kernel/bpf/devmap.c
18724 F:      net/core/xdp.c
18725 N:      xdp
18726 K:      xdp
18727
18728 XDP SOCKETS (AF_XDP)
18729 M:      Björn Töpel <bjorn.topel@intel.com>
18730 M:      Magnus Karlsson <magnus.karlsson@intel.com>
18731 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
18732 L:      netdev@vger.kernel.org
18733 L:      bpf@vger.kernel.org
18734 S:      Maintained
18735 F:      include/net/xdp_sock*
18736 F:      include/net/xsk_buff_pool.h
18737 F:      include/uapi/linux/if_xdp.h
18738 F:      net/xdp/
18739 F:      samples/bpf/xdpsock*
18740 F:      tools/lib/bpf/xsk*
18741
18742 XEN BLOCK SUBSYSTEM
18743 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18744 M:      Roger Pau Monné <roger.pau@citrix.com>
18745 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18746 S:      Supported
18747 F:      drivers/block/xen*
18748 F:      drivers/block/xen-blkback/*
18749
18750 XEN HYPERVISOR ARM
18751 M:      Stefano Stabellini <sstabellini@kernel.org>
18752 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18753 S:      Maintained
18754 F:      arch/arm/include/asm/xen/
18755 F:      arch/arm/xen/
18756
18757 XEN HYPERVISOR ARM64
18758 M:      Stefano Stabellini <sstabellini@kernel.org>
18759 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18760 S:      Maintained
18761 F:      arch/arm64/include/asm/xen/
18762 F:      arch/arm64/xen/
18763
18764 XEN HYPERVISOR INTERFACE
18765 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
18766 M:      Juergen Gross <jgross@suse.com>
18767 R:      Stefano Stabellini <sstabellini@kernel.org>
18768 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18769 S:      Supported
18770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
18771 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
18772 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
18773 F:      arch/x86/include/asm/pvclock-abi.h
18774 F:      arch/x86/include/asm/xen/
18775 F:      arch/x86/platform/pvh/
18776 F:      arch/x86/xen/
18777 F:      drivers/*/xen-*front.c
18778 F:      drivers/xen/
18779 F:      include/uapi/xen/
18780 F:      include/xen/
18781
18782 XEN NETWORK BACKEND DRIVER
18783 M:      Wei Liu <wei.liu@kernel.org>
18784 M:      Paul Durrant <paul@xen.org>
18785 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18786 L:      netdev@vger.kernel.org
18787 S:      Supported
18788 F:      drivers/net/xen-netback/*
18789
18790 XEN PCI SUBSYSTEM
18791 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18792 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18793 S:      Supported
18794 F:      arch/x86/pci/*xen*
18795 F:      drivers/pci/*xen*
18796
18797 XEN PVSCSI DRIVERS
18798 M:      Juergen Gross <jgross@suse.com>
18799 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18800 L:      linux-scsi@vger.kernel.org
18801 S:      Supported
18802 F:      drivers/scsi/xen-scsifront.c
18803 F:      drivers/xen/xen-scsiback.c
18804 F:      include/xen/interface/io/vscsiif.h
18805
18806 XEN SOUND FRONTEND DRIVER
18807 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
18808 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18809 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18810 S:      Supported
18811 F:      sound/xen/*
18812
18813 XEN SWIOTLB SUBSYSTEM
18814 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18815 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18816 L:      iommu@lists.linux-foundation.org
18817 S:      Supported
18818 F:      arch/x86/xen/*swiotlb*
18819 F:      drivers/xen/*swiotlb*
18820
18821 XFS FILESYSTEM
18822 M:      Darrick J. Wong <darrick.wong@oracle.com>
18823 M:      linux-xfs@vger.kernel.org
18824 L:      linux-xfs@vger.kernel.org
18825 S:      Supported
18826 W:      http://xfs.org/
18827 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
18828 F:      Documentation/ABI/testing/sysfs-fs-xfs
18829 F:      Documentation/admin-guide/xfs.rst
18830 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
18831 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
18832 F:      fs/xfs/
18833 F:      include/uapi/linux/dqblk_xfs.h
18834 F:      include/uapi/linux/fsmap.h
18835
18836 XILINX AXI ETHERNET DRIVER
18837 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
18838 S:      Maintained
18839 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
18840
18841 XILINX CAN DRIVER
18842 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
18843 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
18844 L:      linux-can@vger.kernel.org
18845 S:      Maintained
18846 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
18847 F:      drivers/net/can/xilinx_can.c
18848
18849 XILINX SD-FEC IP CORES
18850 M:      Derek Kiernan <derek.kiernan@xilinx.com>
18851 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
18852 S:      Maintained
18853 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
18854 F:      Documentation/misc-devices/xilinx_sdfec.rst
18855 F:      drivers/misc/Kconfig
18856 F:      drivers/misc/Makefile
18857 F:      drivers/misc/xilinx_sdfec.c
18858 F:      include/uapi/misc/xilinx_sdfec.h
18859
18860 XILINX UARTLITE SERIAL DRIVER
18861 M:      Peter Korsgaard <jacmet@sunsite.dk>
18862 L:      linux-serial@vger.kernel.org
18863 S:      Maintained
18864 F:      drivers/tty/serial/uartlite.c
18865
18866 XILINX VIDEO IP CORES
18867 M:      Hyun Kwon <hyun.kwon@xilinx.com>
18868 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18869 L:      linux-media@vger.kernel.org
18870 S:      Supported
18871 T:      git git://linuxtv.org/media_tree.git
18872 F:      Documentation/devicetree/bindings/media/xilinx/
18873 F:      drivers/media/platform/xilinx/
18874 F:      include/uapi/linux/xilinx-v4l2-controls.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:      */