drm/ttm: rename manager variable to make sure wrapper is used.
[linux-2.6-microblaze.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L:      linux-bluetooth@vger.kernel.org
176 L:      linux-wpan@vger.kernel.org
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L:      linux-hams@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <johannes@sipsolutions.net>
190 L:      linux-wireless@vger.kernel.org
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
207 M:      Heiner Kallweit <hkallweit1@gmail.com>
208 L:      netdev@vger.kernel.org
209 S:      Maintained
210 F:      drivers/net/ethernet/realtek/r8169*
211
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
214 L:      linux-serial@vger.kernel.org
215 S:      Maintained
216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F:      drivers/tty/serial/8250*
218 F:      include/linux/serial_8250.h
219
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L:      netdev@vger.kernel.org
222 S:      Orphan / Obsolete
223 F:      drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M:      Eric Van Hensbergen <ericvh@gmail.com>
227 M:      Latchesar Ionkov <lucho@ionkov.net>
228 M:      Dominique Martinet <asmadeus@codewreck.org>
229 L:      v9fs-developer@lists.sourceforge.net
230 S:      Maintained
231 W:      http://swik.net/v9fs
232 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T:      git git://github.com/martinetd/linux.git
235 F:      Documentation/filesystems/9p.rst
236 F:      fs/9p/
237 F:      include/net/9p/
238 F:      include/trace/events/9p.h
239 F:      include/uapi/linux/virtio_9p.h
240 F:      net/9p/
241
242 A8293 MEDIA DRIVER
243 M:      Antti Palosaari <crope@iki.fi>
244 L:      linux-media@vger.kernel.org
245 S:      Maintained
246 W:      https://linuxtv.org
247 W:      http://palosaari.fi/linux/
248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
249 T:      git git://linuxtv.org/anttip/media_tree.git
250 F:      drivers/media/dvb-frontends/a8293*
251
252 AACRAID SCSI RAID DRIVER
253 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
254 L:      linux-scsi@vger.kernel.org
255 S:      Supported
256 W:      http://www.adaptec.com/
257 F:      Documentation/scsi/aacraid.rst
258 F:      drivers/scsi/aacraid/
259
260 ABI/API
261 L:      linux-api@vger.kernel.org
262 F:      include/linux/syscalls.h
263 F:      kernel/sys_ni.c
264
265 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
266 M:      Hans de Goede <hdegoede@redhat.com>
267 L:      linux-hwmon@vger.kernel.org
268 S:      Maintained
269 F:      drivers/hwmon/abituguru.c
270
271 ABIT UGURU 3 HARDWARE MONITOR DRIVER
272 M:      Alistair John Strachan <alistair@devzero.co.uk>
273 L:      linux-hwmon@vger.kernel.org
274 S:      Maintained
275 F:      drivers/hwmon/abituguru3.c
276
277 ACCES 104-DIO-48E GPIO DRIVER
278 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
279 L:      linux-gpio@vger.kernel.org
280 S:      Maintained
281 F:      drivers/gpio/gpio-104-dio-48e.c
282
283 ACCES 104-IDI-48 GPIO DRIVER
284 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
285 L:      linux-gpio@vger.kernel.org
286 S:      Maintained
287 F:      drivers/gpio/gpio-104-idi-48.c
288
289 ACCES 104-IDIO-16 GPIO DRIVER
290 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
291 L:      linux-gpio@vger.kernel.org
292 S:      Maintained
293 F:      drivers/gpio/gpio-104-idio-16.c
294
295 ACCES 104-QUAD-8 DRIVER
296 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
297 M:      Syed Nayyar Waris <syednwaris@gmail.com>
298 L:      linux-iio@vger.kernel.org
299 S:      Maintained
300 F:      Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
301 F:      Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
302 F:      drivers/counter/104-quad-8.c
303
304 ACCES PCI-IDIO-16 GPIO DRIVER
305 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
306 L:      linux-gpio@vger.kernel.org
307 S:      Maintained
308 F:      drivers/gpio/gpio-pci-idio-16.c
309
310 ACCES PCIe-IDIO-24 GPIO DRIVER
311 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
312 L:      linux-gpio@vger.kernel.org
313 S:      Maintained
314 F:      drivers/gpio/gpio-pcie-idio-24.c
315
316 ACENIC DRIVER
317 M:      Jes Sorensen <jes@trained-monkey.org>
318 L:      linux-acenic@sunsite.dk
319 S:      Maintained
320 F:      drivers/net/ethernet/alteon/acenic*
321
322 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
323 M:      Peter Kaestle <peter@piie.net>
324 L:      platform-driver-x86@vger.kernel.org
325 S:      Maintained
326 W:      http://piie.net/?section=acerhdf
327 F:      drivers/platform/x86/acerhdf.c
328
329 ACER WMI LAPTOP EXTRAS
330 M:      "Lee, Chun-Yi" <jlee@suse.com>
331 L:      platform-driver-x86@vger.kernel.org
332 S:      Maintained
333 F:      drivers/platform/x86/acer-wmi.c
334
335 ACPI
336 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
337 M:      Len Brown <lenb@kernel.org>
338 L:      linux-acpi@vger.kernel.org
339 S:      Supported
340 W:      https://01.org/linux-acpi
341 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
342 B:      https://bugzilla.kernel.org
343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
344 F:      Documentation/ABI/testing/configfs-acpi
345 F:      Documentation/ABI/testing/sysfs-bus-acpi
346 F:      Documentation/firmware-guide/acpi/
347 F:      drivers/acpi/
348 F:      drivers/pci/*/*acpi*
349 F:      drivers/pci/*acpi*
350 F:      drivers/pnp/pnpacpi/
351 F:      include/acpi/
352 F:      include/linux/acpi.h
353 F:      include/linux/fwnode.h
354 F:      tools/power/acpi/
355
356 ACPI APEI
357 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
358 M:      Len Brown <lenb@kernel.org>
359 R:      James Morse <james.morse@arm.com>
360 R:      Tony Luck <tony.luck@intel.com>
361 R:      Borislav Petkov <bp@alien8.de>
362 L:      linux-acpi@vger.kernel.org
363 F:      drivers/acpi/apei/
364
365 ACPI COMPONENT ARCHITECTURE (ACPICA)
366 M:      Robert Moore <robert.moore@intel.com>
367 M:      Erik Kaneda <erik.kaneda@intel.com>
368 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
369 L:      linux-acpi@vger.kernel.org
370 L:      devel@acpica.org
371 S:      Supported
372 W:      https://acpica.org/
373 W:      https://github.com/acpica/acpica/
374 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
375 B:      https://bugzilla.kernel.org
376 B:      https://bugs.acpica.org
377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
378 F:      drivers/acpi/acpica/
379 F:      include/acpi/
380 F:      tools/power/acpi/
381
382 ACPI FAN DRIVER
383 M:      Zhang Rui <rui.zhang@intel.com>
384 L:      linux-acpi@vger.kernel.org
385 S:      Supported
386 W:      https://01.org/linux-acpi
387 B:      https://bugzilla.kernel.org
388 F:      drivers/acpi/fan.c
389
390 ACPI FOR ARM64 (ACPI/arm64)
391 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
392 M:      Hanjun Guo <guohanjun@huawei.com>
393 M:      Sudeep Holla <sudeep.holla@arm.com>
394 L:      linux-acpi@vger.kernel.org
395 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
396 S:      Maintained
397 F:      drivers/acpi/arm64
398
399 ACPI I2C MULTI INSTANTIATE DRIVER
400 M:      Hans de Goede <hdegoede@redhat.com>
401 L:      platform-driver-x86@vger.kernel.org
402 S:      Maintained
403 F:      drivers/platform/x86/i2c-multi-instantiate.c
404
405 ACPI PMIC DRIVERS
406 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
407 M:      Len Brown <lenb@kernel.org>
408 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
409 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
410 L:      linux-acpi@vger.kernel.org
411 S:      Supported
412 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
413 B:      https://bugzilla.kernel.org
414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
415 F:      drivers/acpi/pmic/
416
417 ACPI THERMAL DRIVER
418 M:      Zhang Rui <rui.zhang@intel.com>
419 L:      linux-acpi@vger.kernel.org
420 S:      Supported
421 W:      https://01.org/linux-acpi
422 B:      https://bugzilla.kernel.org
423 F:      drivers/acpi/*thermal*
424
425 ACPI VIDEO DRIVER
426 M:      Zhang Rui <rui.zhang@intel.com>
427 L:      linux-acpi@vger.kernel.org
428 S:      Supported
429 W:      https://01.org/linux-acpi
430 B:      https://bugzilla.kernel.org
431 F:      drivers/acpi/acpi_video.c
432
433 ACPI WMI DRIVER
434 L:      platform-driver-x86@vger.kernel.org
435 S:      Orphan
436 F:      drivers/platform/x86/wmi.c
437 F:      include/uapi/linux/wmi.h
438
439 AD1889 ALSA SOUND DRIVER
440 L:      linux-parisc@vger.kernel.org
441 S:      Maintained
442 W:      https://parisc.wiki.kernel.org/index.php/AD1889
443 F:      sound/pci/ad1889.*
444
445 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
446 M:      Michael Hennerich <michael.hennerich@analog.com>
447 S:      Supported
448 W:      http://wiki.analog.com/AD5254
449 W:      http://ez.analog.com/community/linux-device-drivers
450 F:      drivers/misc/ad525x_dpot.c
451
452 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
453 M:      Michael Hennerich <michael.hennerich@analog.com>
454 S:      Supported
455 W:      http://wiki.analog.com/AD5398
456 W:      http://ez.analog.com/community/linux-device-drivers
457 F:      drivers/regulator/ad5398.c
458
459 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
460 M:      Michael Hennerich <michael.hennerich@analog.com>
461 S:      Supported
462 W:      http://wiki.analog.com/AD7142
463 W:      http://ez.analog.com/community/linux-device-drivers
464 F:      drivers/input/misc/ad714x.c
465
466 AD7877 TOUCHSCREEN DRIVER
467 M:      Michael Hennerich <michael.hennerich@analog.com>
468 S:      Supported
469 W:      http://wiki.analog.com/AD7877
470 W:      http://ez.analog.com/community/linux-device-drivers
471 F:      drivers/input/touchscreen/ad7877.c
472
473 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
474 M:      Michael Hennerich <michael.hennerich@analog.com>
475 S:      Supported
476 W:      http://wiki.analog.com/AD7879
477 W:      http://ez.analog.com/community/linux-device-drivers
478 F:      drivers/input/touchscreen/ad7879.c
479
480 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
481 M:      Jiri Kosina <jikos@kernel.org>
482 S:      Maintained
483
484 ADF7242 IEEE 802.15.4 RADIO DRIVER
485 M:      Michael Hennerich <michael.hennerich@analog.com>
486 L:      linux-wpan@vger.kernel.org
487 S:      Supported
488 W:      https://wiki.analog.com/ADF7242
489 W:      http://ez.analog.com/community/linux-device-drivers
490 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
491 F:      drivers/net/ieee802154/adf7242.c
492
493 ADM1025 HARDWARE MONITOR DRIVER
494 M:      Jean Delvare <jdelvare@suse.com>
495 L:      linux-hwmon@vger.kernel.org
496 S:      Maintained
497 F:      Documentation/hwmon/adm1025.rst
498 F:      drivers/hwmon/adm1025.c
499
500 ADM1029 HARDWARE MONITOR DRIVER
501 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
502 L:      linux-hwmon@vger.kernel.org
503 S:      Maintained
504 F:      drivers/hwmon/adm1029.c
505
506 ADM8211 WIRELESS DRIVER
507 L:      linux-wireless@vger.kernel.org
508 S:      Orphan
509 W:      https://wireless.wiki.kernel.org/
510 F:      drivers/net/wireless/admtek/adm8211.*
511
512 ADP1653 FLASH CONTROLLER DRIVER
513 M:      Sakari Ailus <sakari.ailus@iki.fi>
514 L:      linux-media@vger.kernel.org
515 S:      Maintained
516 F:      drivers/media/i2c/adp1653.c
517 F:      include/media/i2c/adp1653.h
518
519 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
520 M:      Michael Hennerich <michael.hennerich@analog.com>
521 S:      Supported
522 W:      http://wiki.analog.com/ADP5520
523 W:      http://ez.analog.com/community/linux-device-drivers
524 F:      drivers/gpio/gpio-adp5520.c
525 F:      drivers/input/keyboard/adp5520-keys.c
526 F:      drivers/leds/leds-adp5520.c
527 F:      drivers/mfd/adp5520.c
528 F:      drivers/video/backlight/adp5520_bl.c
529
530 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
531 M:      Michael Hennerich <michael.hennerich@analog.com>
532 S:      Supported
533 W:      http://wiki.analog.com/ADP5588
534 W:      http://ez.analog.com/community/linux-device-drivers
535 F:      drivers/gpio/gpio-adp5588.c
536 F:      drivers/input/keyboard/adp5588-keys.c
537
538 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
539 M:      Michael Hennerich <michael.hennerich@analog.com>
540 S:      Supported
541 W:      http://wiki.analog.com/ADP8860
542 W:      http://ez.analog.com/community/linux-device-drivers
543 F:      drivers/video/backlight/adp8860_bl.c
544
545 ADT746X FAN DRIVER
546 M:      Colin Leroy <colin@colino.net>
547 S:      Maintained
548 F:      drivers/macintosh/therm_adt746x.c
549
550 ADT7475 HARDWARE MONITOR DRIVER
551 M:      Jean Delvare <jdelvare@suse.com>
552 L:      linux-hwmon@vger.kernel.org
553 S:      Maintained
554 F:      Documentation/hwmon/adt7475.rst
555 F:      drivers/hwmon/adt7475.c
556
557 ADVANSYS SCSI DRIVER
558 M:      Matthew Wilcox <willy@infradead.org>
559 M:      Hannes Reinecke <hare@suse.com>
560 L:      linux-scsi@vger.kernel.org
561 S:      Maintained
562 F:      Documentation/scsi/advansys.rst
563 F:      drivers/scsi/advansys.c
564
565 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
566 M:      Michael Hennerich <michael.hennerich@analog.com>
567 S:      Supported
568 W:      http://wiki.analog.com/ADXL345
569 W:      http://ez.analog.com/community/linux-device-drivers
570 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
571 F:      drivers/input/misc/adxl34x.c
572
573 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
574 M:      Michael Hennerich <michael.hennerich@analog.com>
575 S:      Supported
576 W:      http://ez.analog.com/community/linux-device-drivers
577 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
578 F:      drivers/iio/accel/adxl372.c
579 F:      drivers/iio/accel/adxl372_i2c.c
580 F:      drivers/iio/accel/adxl372_spi.c
581
582 AF9013 MEDIA DRIVER
583 M:      Antti Palosaari <crope@iki.fi>
584 L:      linux-media@vger.kernel.org
585 S:      Maintained
586 W:      https://linuxtv.org
587 W:      http://palosaari.fi/linux/
588 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
589 T:      git git://linuxtv.org/anttip/media_tree.git
590 F:      drivers/media/dvb-frontends/af9013*
591
592 AF9033 MEDIA DRIVER
593 M:      Antti Palosaari <crope@iki.fi>
594 L:      linux-media@vger.kernel.org
595 S:      Maintained
596 W:      https://linuxtv.org
597 W:      http://palosaari.fi/linux/
598 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
599 T:      git git://linuxtv.org/anttip/media_tree.git
600 F:      drivers/media/dvb-frontends/af9033*
601
602 AFFS FILE SYSTEM
603 M:      David Sterba <dsterba@suse.com>
604 L:      linux-fsdevel@vger.kernel.org
605 S:      Odd Fixes
606 F:      Documentation/filesystems/affs.rst
607 F:      fs/affs/
608
609 AFS FILESYSTEM
610 M:      David Howells <dhowells@redhat.com>
611 L:      linux-afs@lists.infradead.org
612 S:      Supported
613 W:      https://www.infradead.org/~dhowells/kafs/
614 F:      Documentation/filesystems/afs.rst
615 F:      fs/afs/
616 F:      include/trace/events/afs.h
617
618 AGPGART DRIVER
619 M:      David Airlie <airlied@linux.ie>
620 S:      Maintained
621 T:      git git://anongit.freedesktop.org/drm/drm
622 F:      drivers/char/agp/
623 F:      include/linux/agp*
624 F:      include/uapi/linux/agp*
625
626 AHA152X SCSI DRIVER
627 M:      "Juergen E. Fischer" <fischer@norbit.de>
628 L:      linux-scsi@vger.kernel.org
629 S:      Maintained
630 F:      drivers/scsi/aha152x*
631 F:      drivers/scsi/pcmcia/aha152x*
632
633 AIC7XXX / AIC79XX SCSI DRIVER
634 M:      Hannes Reinecke <hare@suse.com>
635 L:      linux-scsi@vger.kernel.org
636 S:      Maintained
637 F:      drivers/scsi/aic7xxx/
638
639 AIMSLAB FM RADIO RECEIVER DRIVER
640 M:      Hans Verkuil <hverkuil@xs4all.nl>
641 L:      linux-media@vger.kernel.org
642 S:      Maintained
643 W:      https://linuxtv.org
644 T:      git git://linuxtv.org/media_tree.git
645 F:      drivers/media/radio/radio-aimslab*
646
647 AIO
648 M:      Benjamin LaHaise <bcrl@kvack.org>
649 L:      linux-aio@kvack.org
650 S:      Supported
651 F:      fs/aio.c
652 F:      include/linux/*aio*.h
653
654 AIRSPY MEDIA DRIVER
655 M:      Antti Palosaari <crope@iki.fi>
656 L:      linux-media@vger.kernel.org
657 S:      Maintained
658 W:      https://linuxtv.org
659 W:      http://palosaari.fi/linux/
660 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
661 T:      git git://linuxtv.org/anttip/media_tree.git
662 F:      drivers/media/usb/airspy/
663
664 ALACRITECH GIGABIT ETHERNET DRIVER
665 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
666 S:      Maintained
667 F:      drivers/net/ethernet/alacritech/*
668
669 ALCATEL SPEEDTOUCH USB DRIVER
670 M:      Duncan Sands <duncan.sands@free.fr>
671 L:      linux-usb@vger.kernel.org
672 S:      Maintained
673 W:      http://www.linux-usb.org/SpeedTouch/
674 F:      drivers/usb/atm/speedtch.c
675 F:      drivers/usb/atm/usbatm.c
676
677 ALCHEMY AU1XX0 MMC DRIVER
678 M:      Manuel Lauss <manuel.lauss@gmail.com>
679 S:      Maintained
680 F:      drivers/mmc/host/au1xmmc.c
681
682 ALI1563 I2C DRIVER
683 M:      Rudolf Marek <r.marek@assembler.cz>
684 L:      linux-i2c@vger.kernel.org
685 S:      Maintained
686 F:      Documentation/i2c/busses/i2c-ali1563.rst
687 F:      drivers/i2c/busses/i2c-ali1563.c
688
689 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
690 M:      Tomislav Denis <tomislav.denis@avl.com>
691 L:      linux-iio@vger.kernel.org
692 S:      Maintained
693 W:      http://www.allsensors.com/
694 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
695 F:      drivers/iio/pressure/dlhl60d.c
696
697 ALLEGRO DVT VIDEO IP CORE DRIVER
698 M:      Michael Tretter <m.tretter@pengutronix.de>
699 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
700 L:      linux-media@vger.kernel.org
701 S:      Maintained
702 F:      drivers/staging/media/allegro-dvt/
703
704 ALLWINNER A10 CSI DRIVER
705 M:      Maxime Ripard <mripard@kernel.org>
706 L:      linux-media@vger.kernel.org
707 S:      Maintained
708 T:      git git://linuxtv.org/media_tree.git
709 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
710 F:      drivers/media/platform/sunxi/sun4i-csi/
711
712 ALLWINNER CPUFREQ DRIVER
713 M:      Yangtao Li <tiny.windzz@gmail.com>
714 L:      linux-pm@vger.kernel.org
715 S:      Maintained
716 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
717 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
718
719 ALLWINNER CRYPTO DRIVERS
720 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
721 L:      linux-crypto@vger.kernel.org
722 S:      Maintained
723 F:      drivers/crypto/allwinner/
724
725 ALLWINNER THERMAL DRIVER
726 M:      Vasily Khoruzhick <anarsoul@gmail.com>
727 M:      Yangtao Li <tiny.windzz@gmail.com>
728 L:      linux-pm@vger.kernel.org
729 S:      Maintained
730 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
731 F:      drivers/thermal/sun8i_thermal.c
732
733 ALLWINNER VPU DRIVER
734 M:      Maxime Ripard <mripard@kernel.org>
735 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
736 L:      linux-media@vger.kernel.org
737 S:      Maintained
738 F:      drivers/staging/media/sunxi/cedrus/
739
740 ALPHA PORT
741 M:      Richard Henderson <rth@twiddle.net>
742 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
743 M:      Matt Turner <mattst88@gmail.com>
744 L:      linux-alpha@vger.kernel.org
745 S:      Odd Fixes
746 F:      arch/alpha/
747
748 ALPS PS/2 TOUCHPAD DRIVER
749 R:      Pali Rohár <pali@kernel.org>
750 F:      drivers/input/mouse/alps.*
751
752 ALTERA I2C CONTROLLER DRIVER
753 M:      Thor Thayer <thor.thayer@linux.intel.com>
754 S:      Maintained
755 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
756 F:      drivers/i2c/busses/i2c-altera.c
757
758 ALTERA MAILBOX DRIVER
759 M:      Ley Foon Tan <ley.foon.tan@intel.com>
760 S:      Maintained
761 F:      drivers/mailbox/mailbox-altera.c
762
763 ALTERA PIO DRIVER
764 M:      Joyce Ooi <joyce.ooi@intel.com>
765 L:      linux-gpio@vger.kernel.org
766 S:      Maintained
767 F:      drivers/gpio/gpio-altera.c
768
769 ALTERA SYSTEM MANAGER DRIVER
770 M:      Thor Thayer <thor.thayer@linux.intel.com>
771 S:      Maintained
772 F:      drivers/mfd/altera-sysmgr.c
773 F:      include/linux/mfd/altera-sysmgr.h
774
775 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
776 M:      Thor Thayer <thor.thayer@linux.intel.com>
777 S:      Maintained
778 F:      drivers/gpio/gpio-altera-a10sr.c
779 F:      drivers/mfd/altera-a10sr.c
780 F:      drivers/reset/reset-a10sr.c
781 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
782 F:      include/linux/mfd/altera-a10sr.h
783
784 ALTERA TRIPLE SPEED ETHERNET DRIVER
785 M:      Thor Thayer <thor.thayer@linux.intel.com>
786 L:      netdev@vger.kernel.org
787 S:      Maintained
788 F:      drivers/net/ethernet/altera/
789
790 ALTERA UART/JTAG UART SERIAL DRIVERS
791 M:      Tobias Klauser <tklauser@distanz.ch>
792 L:      linux-serial@vger.kernel.org
793 S:      Maintained
794 F:      drivers/tty/serial/altera_jtaguart.c
795 F:      drivers/tty/serial/altera_uart.c
796 F:      include/linux/altera_jtaguart.h
797 F:      include/linux/altera_uart.h
798
799 AMAZON ANNAPURNA LABS FIC DRIVER
800 M:      Talel Shenhar <talel@amazon.com>
801 S:      Maintained
802 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
803 F:      drivers/irqchip/irq-al-fic.c
804
805 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
806 M:      Talel Shenhar <talel@amazon.com>
807 S:      Maintained
808 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
809 F:      drivers/thermal/thermal_mmio.c
810
811 AMAZON ETHERNET DRIVERS
812 M:      Netanel Belgazal <netanel@amazon.com>
813 M:      Arthur Kiyanovski <akiyano@amazon.com>
814 R:      Guy Tzalik <gtzalik@amazon.com>
815 R:      Saeed Bishara <saeedb@amazon.com>
816 R:      Zorik Machulsky <zorik@amazon.com>
817 L:      netdev@vger.kernel.org
818 S:      Supported
819 F:      Documentation/networking/device_drivers/amazon/ena.rst
820 F:      drivers/net/ethernet/amazon/
821
822 AMAZON RDMA EFA DRIVER
823 M:      Gal Pressman <galpress@amazon.com>
824 R:      Yossi Leybovich <sleybo@amazon.com>
825 L:      linux-rdma@vger.kernel.org
826 S:      Supported
827 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
828 F:      drivers/infiniband/hw/efa/
829 F:      include/uapi/rdma/efa-abi.h
830
831 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
832 M:      Tom Lendacky <thomas.lendacky@amd.com>
833 L:      linux-crypto@vger.kernel.org
834 S:      Supported
835 F:      drivers/crypto/ccp/
836 F:      include/linux/ccp.h
837
838 AMD DISPLAY CORE
839 M:      Harry Wentland <harry.wentland@amd.com>
840 M:      Leo Li <sunpeng.li@amd.com>
841 L:      amd-gfx@lists.freedesktop.org
842 S:      Supported
843 T:      git git://people.freedesktop.org/~agd5f/linux
844 F:      drivers/gpu/drm/amd/display/
845
846 AMD ENERGY DRIVER
847 M:      Naveen Krishna Chatradhi <nchatrad@amd.com>
848 L:      linux-hwmon@vger.kernel.org
849 S:      Maintained
850 F:      Documentation/hwmon/amd_energy.rst
851 F:      drivers/hwmon/amd_energy.c
852
853 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
854 M:      Huang Rui <ray.huang@amd.com>
855 L:      linux-hwmon@vger.kernel.org
856 S:      Supported
857 F:      Documentation/hwmon/fam15h_power.rst
858 F:      drivers/hwmon/fam15h_power.c
859
860 AMD FCH GPIO DRIVER
861 M:      Enrico Weigelt, metux IT consult <info@metux.net>
862 L:      linux-gpio@vger.kernel.org
863 S:      Maintained
864 F:      drivers/gpio/gpio-amd-fch.c
865 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
866
867 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
868 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
869 S:      Orphan
870 F:      drivers/usb/gadget/udc/amd5536udc.*
871
872 AMD GEODE PROCESSOR/CHIPSET SUPPORT
873 M:      Andres Salomon <dilinger@queued.net>
874 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
875 S:      Supported
876 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
877 F:      arch/x86/include/asm/geode.h
878 F:      drivers/char/hw_random/geode-rng.c
879 F:      drivers/crypto/geode*
880 F:      drivers/video/fbdev/geode/
881
882 AMD IOMMU (AMD-VI)
883 M:      Joerg Roedel <joro@8bytes.org>
884 L:      iommu@lists.linux-foundation.org
885 S:      Maintained
886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
887 F:      drivers/iommu/amd/
888 F:      include/linux/amd-iommu.h
889
890 AMD KFD
891 M:      Felix Kuehling <Felix.Kuehling@amd.com>
892 L:      amd-gfx@lists.freedesktop.org
893 S:      Supported
894 T:      git git://people.freedesktop.org/~agd5f/linux
895 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
896 F:      drivers/gpu/drm/amd/amdkfd/
897 F:      drivers/gpu/drm/amd/include/cik_structs.h
898 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
899 F:      drivers/gpu/drm/amd/include/v9_structs.h
900 F:      drivers/gpu/drm/amd/include/vi_structs.h
901 F:      include/uapi/linux/kfd_ioctl.h
902
903 AMD SPI DRIVER
904 M:      Sanjay R Mehta <sanju.mehta@amd.com>
905 S:      Maintained
906 F:      drivers/spi/spi-amd.c
907
908 AMD MP2 I2C DRIVER
909 M:      Elie Morisse <syniurge@gmail.com>
910 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
911 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
912 L:      linux-i2c@vger.kernel.org
913 S:      Maintained
914 F:      drivers/i2c/busses/i2c-amd-mp2*
915
916 AMD POWERPLAY
917 M:      Evan Quan <evan.quan@amd.com>
918 L:      amd-gfx@lists.freedesktop.org
919 S:      Supported
920 T:      git git://people.freedesktop.org/~agd5f/linux
921 F:      drivers/gpu/drm/amd/powerplay/
922
923 AMD SEATTLE DEVICE TREE SUPPORT
924 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
925 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
926 M:      Tom Lendacky <thomas.lendacky@amd.com>
927 S:      Supported
928 F:      arch/arm64/boot/dts/amd/
929
930 AMD XGBE DRIVER
931 M:      Tom Lendacky <thomas.lendacky@amd.com>
932 L:      netdev@vger.kernel.org
933 S:      Supported
934 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
935 F:      drivers/net/ethernet/amd/xgbe/
936
937 ANALOG DEVICES INC AD5686 DRIVER
938 M:      Michael Hennerich <Michael.Hennerich@analog.com>
939 L:      linux-pm@vger.kernel.org
940 S:      Supported
941 W:      http://ez.analog.com/community/linux-device-drivers
942 F:      drivers/iio/dac/ad5686*
943 F:      drivers/iio/dac/ad5696*
944
945 ANALOG DEVICES INC AD5758 DRIVER
946 M:      Michael Hennerich <Michael.Hennerich@analog.com>
947 L:      linux-iio@vger.kernel.org
948 S:      Supported
949 W:      http://ez.analog.com/community/linux-device-drivers
950 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
951 F:      drivers/iio/dac/ad5758.c
952
953 ANALOG DEVICES INC AD7091R5 DRIVER
954 M:      Beniamin Bia <beniamin.bia@analog.com>
955 L:      linux-iio@vger.kernel.org
956 S:      Supported
957 W:      http://ez.analog.com/community/linux-device-drivers
958 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7091r5.yaml
959 F:      drivers/iio/adc/ad7091r5.c
960
961 ANALOG DEVICES INC AD7124 DRIVER
962 M:      Michael Hennerich <Michael.Hennerich@analog.com>
963 L:      linux-iio@vger.kernel.org
964 S:      Supported
965 W:      http://ez.analog.com/community/linux-device-drivers
966 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7124.yaml
967 F:      drivers/iio/adc/ad7124.c
968
969 ANALOG DEVICES INC AD7192 DRIVER
970 M:      Alexandru Tachici <alexandru.tachici@analog.com>
971 L:      linux-iio@vger.kernel.org
972 S:      Supported
973 W:      http://ez.analog.com/community/linux-device-drivers
974 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
975 F:      drivers/iio/adc/ad7192.c
976
977 ANALOG DEVICES INC AD7292 DRIVER
978 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
979 L:      linux-iio@vger.kernel.org
980 S:      Supported
981 W:      http://ez.analog.com/community/linux-device-drivers
982 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
983 F:      drivers/iio/adc/ad7292.c
984
985 ANALOG DEVICES INC AD7606 DRIVER
986 M:      Michael Hennerich <Michael.Hennerich@analog.com>
987 M:      Beniamin Bia <beniamin.bia@analog.com>
988 L:      linux-iio@vger.kernel.org
989 S:      Supported
990 W:      http://ez.analog.com/community/linux-device-drivers
991 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
992 F:      drivers/iio/adc/ad7606.c
993
994 ANALOG DEVICES INC AD7768-1 DRIVER
995 M:      Michael Hennerich <Michael.Hennerich@analog.com>
996 L:      linux-iio@vger.kernel.org
997 S:      Supported
998 W:      http://ez.analog.com/community/linux-device-drivers
999 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.txt
1000 F:      drivers/iio/adc/ad7768-1.c
1001
1002 ANALOG DEVICES INC AD7780 DRIVER
1003 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1004 M:      Renato Lui Geh <renatogeh@gmail.com>
1005 L:      linux-iio@vger.kernel.org
1006 S:      Supported
1007 W:      http://ez.analog.com/community/linux-device-drivers
1008 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1009 F:      drivers/iio/adc/ad7780.c
1010
1011 ANALOG DEVICES INC AD9389B DRIVER
1012 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1013 L:      linux-media@vger.kernel.org
1014 S:      Maintained
1015 F:      drivers/media/i2c/ad9389b*
1016
1017 ANALOG DEVICES INC ADGS1408 DRIVER
1018 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1019 S:      Supported
1020 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1021 F:      drivers/mux/adgs1408.c
1022
1023 ANALOG DEVICES INC ADIN DRIVER
1024 M:      Alexandru Ardelean <alexaundru.ardelean@analog.com>
1025 L:      netdev@vger.kernel.org
1026 S:      Supported
1027 W:      http://ez.analog.com/community/linux-device-drivers
1028 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1029 F:      drivers/net/phy/adin.c
1030
1031 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1032 M:      Alexandru Ardelean <alexandru.ardelean@analog.com>
1033 L:      linux-iio@vger.kernel.org
1034 S:      Supported
1035 F:      drivers/iio/imu/adis.c
1036 F:      include/linux/iio/imu/adis.h
1037
1038 ANALOG DEVICES INC ADIS16460 DRIVER
1039 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1040 L:      linux-iio@vger.kernel.org
1041 S:      Supported
1042 W:      http://ez.analog.com/community/linux-device-drivers
1043 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1044 F:      drivers/iio/imu/adis16460.c
1045
1046 ANALOG DEVICES INC ADIS16475 DRIVER
1047 M:      Nuno Sa <nuno.sa@analog.com>
1048 L:      linux-iio@vger.kernel.org
1049 W:      http://ez.analog.com/community/linux-device-drivers
1050 S:      Supported
1051 F:      drivers/iio/imu/adis16475.c
1052 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1053
1054 ANALOG DEVICES INC ADM1177 DRIVER
1055 M:      Beniamin Bia <beniamin.bia@analog.com>
1056 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1057 L:      linux-hwmon@vger.kernel.org
1058 S:      Supported
1059 W:      http://ez.analog.com/community/linux-device-drivers
1060 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1061 F:      drivers/hwmon/adm1177.c
1062
1063 ANALOG DEVICES INC ADP5061 DRIVER
1064 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1065 L:      linux-pm@vger.kernel.org
1066 S:      Supported
1067 W:      http://ez.analog.com/community/linux-device-drivers
1068 F:      drivers/power/supply/adp5061.c
1069
1070 ANALOG DEVICES INC ADV7180 DRIVER
1071 M:      Lars-Peter Clausen <lars@metafoo.de>
1072 L:      linux-media@vger.kernel.org
1073 S:      Supported
1074 W:      http://ez.analog.com/community/linux-device-drivers
1075 F:      drivers/media/i2c/adv7180.c
1076
1077 ANALOG DEVICES INC ADV748X DRIVER
1078 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1079 L:      linux-media@vger.kernel.org
1080 S:      Maintained
1081 F:      drivers/media/i2c/adv748x/*
1082
1083 ANALOG DEVICES INC ADV7511 DRIVER
1084 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1085 L:      linux-media@vger.kernel.org
1086 S:      Maintained
1087 F:      drivers/media/i2c/adv7511*
1088
1089 ANALOG DEVICES INC ADV7604 DRIVER
1090 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1091 L:      linux-media@vger.kernel.org
1092 S:      Maintained
1093 F:      drivers/media/i2c/adv7604*
1094
1095 ANALOG DEVICES INC ADV7842 DRIVER
1096 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1097 L:      linux-media@vger.kernel.org
1098 S:      Maintained
1099 F:      drivers/media/i2c/adv7842*
1100
1101 ANALOG DEVICES INC ASOC CODEC DRIVERS
1102 M:      Lars-Peter Clausen <lars@metafoo.de>
1103 M:      Nuno Sá <nuno.sa@analog.com>
1104 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1105 S:      Supported
1106 W:      http://wiki.analog.com/
1107 W:      http://ez.analog.com/community/linux-device-drivers
1108 F:      sound/soc/codecs/ad1*
1109 F:      sound/soc/codecs/ad7*
1110 F:      sound/soc/codecs/adau*
1111 F:      sound/soc/codecs/adav*
1112 F:      sound/soc/codecs/sigmadsp.*
1113 F:      sound/soc/codecs/ssm*
1114
1115 ANALOG DEVICES INC DMA DRIVERS
1116 M:      Lars-Peter Clausen <lars@metafoo.de>
1117 S:      Supported
1118 W:      http://ez.analog.com/community/linux-device-drivers
1119 F:      drivers/dma/dma-axi-dmac.c
1120
1121 ANALOG DEVICES INC HMC425A DRIVER
1122 M:      Beniamin Bia <beniamin.bia@analog.com>
1123 M:      Michael Hennerich <michael.hennerich@analog.com>
1124 L:      linux-iio@vger.kernel.org
1125 S:      Supported
1126 W:      http://ez.analog.com/community/linux-device-drivers
1127 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,hmc425a.yaml
1128 F:      drivers/iio/amplifiers/hmc425a.c
1129
1130 ANALOG DEVICES INC IIO DRIVERS
1131 M:      Lars-Peter Clausen <lars@metafoo.de>
1132 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1133 S:      Supported
1134 W:      http://wiki.analog.com/
1135 W:      http://ez.analog.com/community/linux-device-drivers
1136 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1137 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1138 F:      drivers/iio/*/ad*
1139 F:      drivers/iio/adc/ltc249*
1140 F:      drivers/staging/iio/*/ad*
1141 X:      drivers/iio/*/adjd*
1142
1143 ANALOGBITS PLL LIBRARIES
1144 M:      Paul Walmsley <paul.walmsley@sifive.com>
1145 S:      Supported
1146 F:      drivers/clk/analogbits/*
1147 F:      include/linux/clk/analogbits*
1148
1149 ANDES ARCHITECTURE
1150 M:      Nick Hu <nickhu@andestech.com>
1151 M:      Greentime Hu <green.hu@gmail.com>
1152 M:      Vincent Chen <deanbo422@gmail.com>
1153 S:      Supported
1154 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1155 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1156 F:      Documentation/devicetree/bindings/nds32/
1157 F:      arch/nds32/
1158 N:      nds32
1159 K:      nds32
1160
1161 ANDROID CONFIG FRAGMENTS
1162 M:      Rob Herring <robh@kernel.org>
1163 S:      Supported
1164 F:      kernel/configs/android*
1165
1166 ANDROID DRIVERS
1167 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1168 M:      Arve Hjønnevåg <arve@android.com>
1169 M:      Todd Kjos <tkjos@android.com>
1170 M:      Martijn Coenen <maco@android.com>
1171 M:      Joel Fernandes <joel@joelfernandes.org>
1172 M:      Christian Brauner <christian@brauner.io>
1173 L:      devel@driverdev.osuosl.org
1174 S:      Supported
1175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1176 F:      drivers/android/
1177 F:      drivers/staging/android/
1178
1179 ANDROID GOLDFISH PIC DRIVER
1180 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1181 S:      Supported
1182 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1183 F:      drivers/irqchip/irq-goldfish-pic.c
1184
1185 ANDROID GOLDFISH RTC DRIVER
1186 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1187 S:      Supported
1188 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1189 F:      drivers/rtc/rtc-goldfish.c
1190
1191 ANDROID ION DRIVER
1192 M:      Laura Abbott <labbott@redhat.com>
1193 M:      Sumit Semwal <sumit.semwal@linaro.org>
1194 L:      devel@driverdev.osuosl.org
1195 L:      dri-devel@lists.freedesktop.org
1196 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
1197 S:      Supported
1198 F:      drivers/staging/android/ion
1199 F:      drivers/staging/android/uapi/ion.h
1200
1201 AOA (Apple Onboard Audio) ALSA DRIVER
1202 M:      Johannes Berg <johannes@sipsolutions.net>
1203 L:      linuxppc-dev@lists.ozlabs.org
1204 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1205 S:      Maintained
1206 F:      sound/aoa/
1207
1208 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1209 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1210 L:      linux-iio@vger.kernel.org
1211 S:      Maintained
1212 F:      drivers/iio/adc/stx104.c
1213
1214 APM DRIVER
1215 M:      Jiri Kosina <jikos@kernel.org>
1216 S:      Odd fixes
1217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1218 F:      arch/x86/kernel/apm_32.c
1219 F:      drivers/char/apm-emulation.c
1220 F:      include/linux/apm_bios.h
1221 F:      include/uapi/linux/apm_bios.h
1222
1223 APPARMOR SECURITY MODULE
1224 M:      John Johansen <john.johansen@canonical.com>
1225 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1226 S:      Supported
1227 W:      wiki.apparmor.net
1228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1229 F:      Documentation/admin-guide/LSM/apparmor.rst
1230 F:      security/apparmor/
1231
1232 APPLE BCM5974 MULTITOUCH DRIVER
1233 M:      Henrik Rydberg <rydberg@bitmath.org>
1234 L:      linux-input@vger.kernel.org
1235 S:      Odd fixes
1236 F:      drivers/input/mouse/bcm5974.c
1237
1238 APPLE SMC DRIVER
1239 M:      Henrik Rydberg <rydberg@bitmath.org>
1240 L:      linux-hwmon@vger.kernel.org
1241 S:      Odd fixes
1242 F:      drivers/hwmon/applesmc.c
1243
1244 APPLETALK NETWORK LAYER
1245 L:      netdev@vger.kernel.org
1246 S:      Odd fixes
1247 F:      drivers/net/appletalk/
1248 F:      include/linux/atalk.h
1249 F:      include/uapi/linux/atalk.h
1250 F:      net/appletalk/
1251
1252 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1253 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1254 S:      Supported
1255 F:      arch/arm64/boot/dts/apm/
1256
1257 APPLIED MICRO (APM) X-GENE SOC EDAC
1258 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1259 S:      Supported
1260 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1261 F:      drivers/edac/xgene_edac.c
1262
1263 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1264 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1265 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1266 S:      Supported
1267 F:      drivers/net/ethernet/apm/xgene-v2/
1268
1269 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1270 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1271 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1272 M:      Quan Nguyen <quan@os.amperecomputing.com>
1273 S:      Supported
1274 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1275 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1276 F:      drivers/net/ethernet/apm/xgene/
1277 F:      drivers/net/phy/mdio-xgene.c
1278
1279 APPLIED MICRO (APM) X-GENE SOC PMU
1280 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1281 S:      Supported
1282 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1283 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1284 F:      drivers/perf/xgene_pmu.c
1285
1286 APTINA CAMERA SENSOR PLL
1287 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1288 L:      linux-media@vger.kernel.org
1289 S:      Maintained
1290 F:      drivers/media/i2c/aptina-pll.*
1291
1292 AQUANTIA ETHERNET DRIVER (atlantic)
1293 M:      Igor Russkikh <irusskikh@marvell.com>
1294 L:      netdev@vger.kernel.org
1295 S:      Supported
1296 W:      https://www.marvell.com/
1297 Q:      http://patchwork.ozlabs.org/project/netdev/list/
1298 F:      Documentation/networking/device_drivers/aquantia/atlantic.rst
1299 F:      drivers/net/ethernet/aquantia/atlantic/
1300
1301 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1302 M:      Egor Pomozov <epomozov@marvell.com>
1303 L:      netdev@vger.kernel.org
1304 S:      Supported
1305 W:      http://www.aquantia.com
1306 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1307
1308 ARASAN NAND CONTROLLER DRIVER
1309 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1310 L:      linux-mtd@lists.infradead.org
1311 S:      Maintained
1312 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1313 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1314
1315 ARC FRAMEBUFFER DRIVER
1316 M:      Jaya Kumar <jayalk@intworks.biz>
1317 S:      Maintained
1318 F:      drivers/video/fbdev/arcfb.c
1319 F:      drivers/video/fbdev/core/fb_defio.c
1320
1321 ARC PGU DRM DRIVER
1322 M:      Alexey Brodkin <abrodkin@synopsys.com>
1323 S:      Supported
1324 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1325 F:      drivers/gpu/drm/arc/
1326
1327 ARCNET NETWORK LAYER
1328 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1329 L:      netdev@vger.kernel.org
1330 S:      Maintained
1331 F:      drivers/net/arcnet/
1332 F:      include/uapi/linux/if_arcnet.h
1333
1334 ARM ARCHITECTED TIMER DRIVER
1335 M:      Mark Rutland <mark.rutland@arm.com>
1336 M:      Marc Zyngier <maz@kernel.org>
1337 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1338 S:      Maintained
1339 F:      arch/arm/include/asm/arch_timer.h
1340 F:      arch/arm64/include/asm/arch_timer.h
1341 F:      drivers/clocksource/arm_arch_timer.c
1342
1343 ARM HDLCD DRM DRIVER
1344 M:      Liviu Dudau <liviu.dudau@arm.com>
1345 S:      Supported
1346 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1347 F:      drivers/gpu/drm/arm/hdlcd_*
1348
1349 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1350 M:      Linus Walleij <linus.walleij@linaro.org>
1351 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1352 S:      Maintained
1353 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1354 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1355 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1356 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1357 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1358 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1359 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1360 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1361 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1362 F:      arch/arm/boot/dts/arm-realview-*
1363 F:      arch/arm/boot/dts/integrator*
1364 F:      arch/arm/boot/dts/versatile*
1365 F:      arch/arm/mach-integrator/
1366 F:      arch/arm/mach-realview/
1367 F:      arch/arm/mach-versatile/
1368 F:      arch/arm/plat-versatile/
1369 F:      drivers/bus/arm-integrator-lm.c
1370 F:      drivers/clk/versatile/
1371 F:      drivers/i2c/busses/i2c-versatile.c
1372 F:      drivers/irqchip/irq-versatile-fpga.c
1373 F:      drivers/mtd/maps/physmap-versatile.*
1374 F:      drivers/power/reset/arm-versatile-reboot.c
1375 F:      drivers/soc/versatile/
1376
1377 ARM KOMEDA DRM-KMS DRIVER
1378 M:      James (Qian) Wang <james.qian.wang@arm.com>
1379 M:      Liviu Dudau <liviu.dudau@arm.com>
1380 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1381 L:      Mali DP Maintainers <malidp@foss.arm.com>
1382 S:      Supported
1383 T:      git git://anongit.freedesktop.org/drm/drm-misc
1384 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1385 F:      Documentation/gpu/komeda-kms.rst
1386 F:      drivers/gpu/drm/arm/display/include/
1387 F:      drivers/gpu/drm/arm/display/komeda/
1388
1389 ARM MALI PANFROST DRM DRIVER
1390 M:      Rob Herring <robh@kernel.org>
1391 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1392 R:      Steven Price <steven.price@arm.com>
1393 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1394 L:      dri-devel@lists.freedesktop.org
1395 S:      Supported
1396 T:      git git://anongit.freedesktop.org/drm/drm-misc
1397 F:      drivers/gpu/drm/panfrost/
1398 F:      include/uapi/drm/panfrost_drm.h
1399
1400 ARM MALI-DP DRM DRIVER
1401 M:      Liviu Dudau <liviu.dudau@arm.com>
1402 M:      Brian Starkey <brian.starkey@arm.com>
1403 L:      Mali DP Maintainers <malidp@foss.arm.com>
1404 S:      Supported
1405 T:      git git://anongit.freedesktop.org/drm/drm-misc
1406 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1407 F:      Documentation/gpu/afbc.rst
1408 F:      drivers/gpu/drm/arm/
1409
1410 ARM MFM AND FLOPPY DRIVERS
1411 M:      Ian Molton <spyro@f2s.com>
1412 S:      Maintained
1413 F:      arch/arm/include/asm/floppy.h
1414 F:      arch/arm/mach-rpc/floppydma.S
1415
1416 ARM PMU PROFILING AND DEBUGGING
1417 M:      Will Deacon <will@kernel.org>
1418 M:      Mark Rutland <mark.rutland@arm.com>
1419 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1420 S:      Maintained
1421 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1422 F:      Documentation/devicetree/bindings/perf/
1423 F:      arch/arm*/include/asm/hw_breakpoint.h
1424 F:      arch/arm*/include/asm/perf_event.h
1425 F:      arch/arm*/kernel/hw_breakpoint.c
1426 F:      arch/arm*/kernel/perf_*
1427 F:      arch/arm/oprofile/common.c
1428 F:      drivers/perf/*
1429 F:      include/linux/perf/arm_pmu.h
1430
1431 ARM PORT
1432 M:      Russell King <linux@armlinux.org.uk>
1433 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1434 S:      Odd Fixes
1435 W:      http://www.armlinux.org.uk/
1436 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1437 F:      arch/arm/
1438 X:      arch/arm/boot/dts/
1439
1440 ARM PRIMECELL AACI PL041 DRIVER
1441 M:      Russell King <linux@armlinux.org.uk>
1442 S:      Odd Fixes
1443 F:      sound/arm/aaci.*
1444
1445 ARM PRIMECELL BUS SUPPORT
1446 M:      Russell King <linux@armlinux.org.uk>
1447 S:      Odd Fixes
1448 F:      drivers/amba/
1449 F:      include/linux/amba/bus.h
1450
1451 ARM PRIMECELL KMI PL050 DRIVER
1452 M:      Russell King <linux@armlinux.org.uk>
1453 S:      Odd Fixes
1454 F:      drivers/input/serio/ambakmi.*
1455 F:      include/linux/amba/kmi.h
1456
1457 ARM PRIMECELL MMCI PL180/1 DRIVER
1458 M:      Russell King <linux@armlinux.org.uk>
1459 S:      Odd Fixes
1460 F:      drivers/mmc/host/mmci.*
1461 F:      include/linux/amba/mmci.h
1462
1463 ARM PRIMECELL SSP PL022 SPI DRIVER
1464 M:      Linus Walleij <linus.walleij@linaro.org>
1465 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1466 S:      Maintained
1467 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1468 F:      drivers/spi/spi-pl022.c
1469
1470 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1471 M:      Russell King <linux@armlinux.org.uk>
1472 S:      Odd Fixes
1473 F:      drivers/tty/serial/amba-pl01*.c
1474 F:      include/linux/amba/serial.h
1475
1476 ARM PRIMECELL VIC PL190/PL192 DRIVER
1477 M:      Linus Walleij <linus.walleij@linaro.org>
1478 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1479 S:      Maintained
1480 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1481 F:      drivers/irqchip/irq-vic.c
1482
1483 ARM SMC WATCHDOG DRIVER
1484 M:      Julius Werner <jwerner@chromium.org>
1485 R:      Evan Benn <evanbenn@chromium.org>
1486 S:      Maintained
1487 F:      devicetree/bindings/watchdog/arm-smc-wdt.yaml
1488 F:      drivers/watchdog/arm_smc_wdt.c
1489
1490 ARM SMMU DRIVERS
1491 M:      Will Deacon <will@kernel.org>
1492 R:      Robin Murphy <robin.murphy@arm.com>
1493 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1494 S:      Maintained
1495 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1496 F:      drivers/iommu/arm-smmu*
1497 F:      drivers/iommu/io-pgtable-arm-v7s.c
1498 F:      drivers/iommu/io-pgtable-arm.c
1499
1500 ARM SUB-ARCHITECTURES
1501 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1502 S:      Maintained
1503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1504 F:      arch/arm/mach-*/
1505 F:      arch/arm/plat-*/
1506
1507 ARM/ACTIONS SEMI ARCHITECTURE
1508 M:      Andreas Färber <afaerber@suse.de>
1509 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1510 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1511 S:      Maintained
1512 F:      Documentation/devicetree/bindings/arm/actions.yaml
1513 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1514 F:      Documentation/devicetree/bindings/dma/owl-dma.txt
1515 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1516 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1517 F:      Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1518 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1519 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1520 F:      arch/arm/boot/dts/owl-*
1521 F:      arch/arm/mach-actions/
1522 F:      arch/arm64/boot/dts/actions/
1523 F:      drivers/clk/actions/
1524 F:      drivers/clocksource/timer-owl*
1525 F:      drivers/dma/owl-dma.c
1526 F:      drivers/i2c/busses/i2c-owl.c
1527 F:      drivers/mmc/host/owl-mmc.c
1528 F:      drivers/pinctrl/actions/*
1529 F:      drivers/soc/actions/
1530 F:      include/dt-bindings/power/owl-*
1531 F:      include/linux/soc/actions/
1532 N:      owl
1533
1534 ARM/ADS SPHERE MACHINE SUPPORT
1535 M:      Lennert Buytenhek <kernel@wantstofly.org>
1536 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1537 S:      Maintained
1538
1539 ARM/AFEB9260 MACHINE SUPPORT
1540 M:      Sergey Lapin <slapin@ossfans.org>
1541 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1542 S:      Maintained
1543
1544 ARM/AJECO 1ARM MACHINE SUPPORT
1545 M:      Lennert Buytenhek <kernel@wantstofly.org>
1546 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1547 S:      Maintained
1548
1549 ARM/Allwinner SoC Clock Support
1550 M:      Emilio López <emilio@elopez.com.ar>
1551 S:      Maintained
1552 F:      drivers/clk/sunxi/
1553
1554 ARM/Allwinner sunXi SoC support
1555 M:      Maxime Ripard <mripard@kernel.org>
1556 M:      Chen-Yu Tsai <wens@csie.org>
1557 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1558 S:      Maintained
1559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1560 F:      arch/arm/mach-sunxi/
1561 F:      arch/arm64/boot/dts/allwinner/
1562 F:      drivers/clk/sunxi-ng/
1563 F:      drivers/pinctrl/sunxi/
1564 F:      drivers/soc/sunxi/
1565 N:      sun[x456789]i
1566 N:      sun50i
1567
1568 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1569 M:      Neil Armstrong <narmstrong@baylibre.com>
1570 M:      Jerome Brunet <jbrunet@baylibre.com>
1571 L:      linux-amlogic@lists.infradead.org
1572 S:      Maintained
1573 F:      Documentation/devicetree/bindings/clock/amlogic*
1574 F:      drivers/clk/meson/
1575 F:      include/dt-bindings/clock/gxbb*
1576 F:      include/dt-bindings/clock/meson*
1577
1578 ARM/Amlogic Meson SoC Crypto Drivers
1579 M:      Corentin Labbe <clabbe@baylibre.com>
1580 L:      linux-crypto@vger.kernel.org
1581 L:      linux-amlogic@lists.infradead.org
1582 S:      Maintained
1583 F:      Documentation/devicetree/bindings/crypto/amlogic*
1584 F:      drivers/crypto/amlogic/
1585
1586 ARM/Amlogic Meson SoC Sound Drivers
1587 M:      Jerome Brunet <jbrunet@baylibre.com>
1588 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1589 S:      Maintained
1590 F:      Documentation/devicetree/bindings/sound/amlogic*
1591 F:      sound/soc/meson/
1592
1593 ARM/Amlogic Meson SoC support
1594 M:      Kevin Hilman <khilman@baylibre.com>
1595 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1596 L:      linux-amlogic@lists.infradead.org
1597 S:      Maintained
1598 W:      http://linux-meson.com/
1599 F:      arch/arm/boot/dts/meson*
1600 F:      arch/arm/mach-meson/
1601 F:      arch/arm64/boot/dts/amlogic/
1602 F:      drivers/mmc/host/meson*
1603 F:      drivers/pinctrl/meson/
1604 F:      drivers/rtc/rtc-meson*
1605 F:      drivers/soc/amlogic/
1606 N:      meson
1607
1608 ARM/Annapurna Labs ALPINE ARCHITECTURE
1609 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1610 M:      Antoine Tenart <antoine.tenart@bootlin.com>
1611 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1612 S:      Maintained
1613 F:      arch/arm/boot/dts/alpine*
1614 F:      arch/arm/mach-alpine/
1615 F:      arch/arm64/boot/dts/al/
1616 F:      drivers/*/*alpine*
1617
1618 ARM/ARTPEC MACHINE SUPPORT
1619 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1620 M:      Lars Persson <lars.persson@axis.com>
1621 L:      linux-arm-kernel@axis.com
1622 S:      Maintained
1623 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1624 F:      arch/arm/boot/dts/artpec6*
1625 F:      arch/arm/mach-artpec
1626 F:      drivers/clk/axis
1627 F:      drivers/crypto/axis
1628 F:      drivers/mmc/host/usdhi6rol0.c
1629 F:      drivers/pinctrl/pinctrl-artpec*
1630
1631 ARM/ASPEED I2C DRIVER
1632 M:      Brendan Higgins <brendanhiggins@google.com>
1633 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1634 R:      Joel Stanley <joel@jms.id.au>
1635 L:      linux-i2c@vger.kernel.org
1636 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1637 S:      Maintained
1638 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1639 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1640 F:      drivers/i2c/busses/i2c-aspeed.c
1641 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1642
1643 ARM/ASPEED MACHINE SUPPORT
1644 M:      Joel Stanley <joel@jms.id.au>
1645 R:      Andrew Jeffery <andrew@aj.id.au>
1646 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1647 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1648 S:      Supported
1649 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1651 F:      arch/arm/boot/dts/aspeed-*
1652 F:      arch/arm/mach-aspeed/
1653 N:      aspeed
1654
1655 ARM/BITMAIN ARCHITECTURE
1656 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1657 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1658 S:      Maintained
1659 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1660 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1661 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1662 F:      arch/arm64/boot/dts/bitmain/
1663 F:      drivers/clk/clk-bm1880.c
1664 F:      drivers/pinctrl/pinctrl-bm1880.c
1665
1666 ARM/CALXEDA HIGHBANK ARCHITECTURE
1667 M:      Andre Przywara <andre.przywara@arm.com>
1668 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1669 S:      Maintained
1670 F:      arch/arm/boot/dts/ecx-*.dts*
1671 F:      arch/arm/boot/dts/highbank.dts
1672 F:      arch/arm/mach-highbank/
1673
1674 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1675 M:      Krzysztof Halasa <khalasa@piap.pl>
1676 S:      Maintained
1677 F:      arch/arm/mach-cns3xxx/
1678
1679 ARM/CAVIUM THUNDER NETWORK DRIVER
1680 M:      Sunil Goutham <sgoutham@marvell.com>
1681 M:      Robert Richter <rrichter@marvell.com>
1682 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1683 S:      Supported
1684 F:      drivers/net/ethernet/cavium/thunder/
1685
1686 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1687 M:      Lukasz Majewski <lukma@denx.de>
1688 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1689 S:      Maintained
1690 F:      arch/arm/mach-ep93xx/ts72xx.c
1691
1692 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1693 M:      Alexander Shiyan <shc_work@mail.ru>
1694 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1695 S:      Odd Fixes
1696 N:      clps711x
1697
1698 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1699 M:      Lennert Buytenhek <kernel@wantstofly.org>
1700 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1701 S:      Maintained
1702
1703 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1704 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1705 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1706 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1707 S:      Maintained
1708 F:      arch/arm/mach-ep93xx/
1709 F:      arch/arm/mach-ep93xx/include/mach/
1710
1711 ARM/CLKDEV SUPPORT
1712 M:      Russell King <linux@armlinux.org.uk>
1713 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1714 S:      Maintained
1715 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1716 F:      drivers/clk/clkdev.c
1717
1718 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1719 M:      Baruch Siach <baruch@tkos.co.il>
1720 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1721 S:      Maintained
1722 F:      arch/arm/boot/dts/cx92755*
1723 N:      digicolor
1724
1725 ARM/CONTEC MICRO9 MACHINE SUPPORT
1726 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1727 S:      Maintained
1728 F:      arch/arm/mach-ep93xx/micro9.c
1729
1730 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1731 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1732 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
1733 R:      Mike Leach <mike.leach@linaro.org>
1734 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1735 S:      Maintained
1736 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1737 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1738 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1739 F:      Documentation/devicetree/bindings/arm/coresight.txt
1740 F:      Documentation/trace/coresight/*
1741 F:      drivers/hwtracing/coresight/*
1742 F:      include/dt-bindings/arm/coresight-cti-dt.h
1743 F:      tools/perf/arch/arm/util/auxtrace.c
1744 F:      tools/perf/arch/arm/util/cs-etm.c
1745 F:      tools/perf/arch/arm/util/cs-etm.h
1746 F:      tools/perf/arch/arm/util/pmu.c
1747 F:      tools/perf/util/cs-etm-decoder/*
1748 F:      tools/perf/util/cs-etm.*
1749
1750 ARM/CORGI MACHINE SUPPORT
1751 M:      Richard Purdie <rpurdie@rpsys.net>
1752 S:      Maintained
1753
1754 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1755 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1756 M:      Linus Walleij <linus.walleij@linaro.org>
1757 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1758 S:      Maintained
1759 T:      git git://github.com/ulli-kroll/linux.git
1760 F:      Documentation/devicetree/bindings/arm/gemini.txt
1761 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1762 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1763 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1764 F:      arch/arm/mach-gemini/
1765 F:      drivers/net/ethernet/cortina/
1766 F:      drivers/pinctrl/pinctrl-gemini.c
1767 F:      drivers/rtc/rtc-ftrtc010.c
1768
1769 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1770 M:      Barry Song <baohua@kernel.org>
1771 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1772 S:      Maintained
1773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1774 F:      arch/arm/boot/dts/prima2*
1775 F:      arch/arm/mach-prima2/
1776 F:      drivers/clk/sirf/
1777 F:      drivers/clocksource/timer-atlas7.c
1778 F:      drivers/clocksource/timer-prima2.c
1779 X:      drivers/gnss
1780 N:      [^a-z]sirf
1781
1782 ARM/CZ.NIC TURRIS MOX SUPPORT
1783 M:      Marek Behun <marek.behun@nic.cz>
1784 S:      Maintained
1785 W:      http://mox.turris.cz
1786 F:      Documentation/ABI/testing/debugfs-moxtet
1787 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1788 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1789 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1790 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1791 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1792 F:      drivers/bus/moxtet.c
1793 F:      drivers/firmware/turris-mox-rwtm.c
1794 F:      drivers/gpio/gpio-moxtet.c
1795 F:      include/linux/moxtet.h
1796
1797 ARM/EBSA110 MACHINE SUPPORT
1798 M:      Russell King <linux@armlinux.org.uk>
1799 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1800 S:      Maintained
1801 W:      http://www.armlinux.org.uk/
1802 F:      arch/arm/mach-ebsa110/
1803 F:      drivers/net/ethernet/amd/am79c961a.*
1804
1805 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1806 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1807 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1808 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1809 S:      Maintained
1810 N:      efm32
1811
1812 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1813 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1814 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1815 S:      Maintained
1816 F:      arch/arm/mach-pxa/ezx.c
1817
1818 ARM/FARADAY FA526 PORT
1819 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1820 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1821 S:      Maintained
1822 T:      git git://git.berlios.de/gemini-board
1823 F:      arch/arm/mm/*-fa*
1824
1825 ARM/FOOTBRIDGE ARCHITECTURE
1826 M:      Russell King <linux@armlinux.org.uk>
1827 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1828 S:      Maintained
1829 W:      http://www.armlinux.org.uk/
1830 F:      arch/arm/include/asm/hardware/dec21285.h
1831 F:      arch/arm/mach-footbridge/
1832
1833 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1834 M:      Shawn Guo <shawnguo@kernel.org>
1835 M:      Sascha Hauer <s.hauer@pengutronix.de>
1836 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1837 R:      Fabio Estevam <festevam@gmail.com>
1838 R:      NXP Linux Team <linux-imx@nxp.com>
1839 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1840 S:      Maintained
1841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1842 X:      drivers/media/i2c/
1843 N:      imx
1844 N:      mxs
1845
1846 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1847 M:      Shawn Guo <shawnguo@kernel.org>
1848 M:      Li Yang <leoyang.li@nxp.com>
1849 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1850 S:      Maintained
1851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1852 F:      arch/arm/boot/dts/ls1021a*
1853 F:      arch/arm64/boot/dts/freescale/fsl-*
1854 F:      arch/arm64/boot/dts/freescale/qoriq-*
1855
1856 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1857 M:      Shawn Guo <shawnguo@kernel.org>
1858 M:      Sascha Hauer <s.hauer@pengutronix.de>
1859 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1860 R:      Stefan Agner <stefan@agner.ch>
1861 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1862 S:      Maintained
1863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1864 F:      arch/arm/boot/dts/vf*
1865 F:      arch/arm/mach-imx/*vf610*
1866
1867 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1868 M:      Lennert Buytenhek <kernel@wantstofly.org>
1869 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1870 S:      Maintained
1871
1872 ARM/GUMSTIX MACHINE SUPPORT
1873 M:      Steve Sakoman <sakoman@gmail.com>
1874 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1875 S:      Maintained
1876
1877 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1878 M:      Philipp Zabel <philipp.zabel@gmail.com>
1879 M:      Paul Parsons <lost.distance@yahoo.com>
1880 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1881 S:      Maintained
1882 F:      arch/arm/mach-pxa/hx4700.c
1883 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1884 F:      sound/soc/pxa/hx4700.c
1885
1886 ARM/HISILICON SOC SUPPORT
1887 M:      Wei Xu <xuwei5@hisilicon.com>
1888 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1889 S:      Supported
1890 W:      http://www.hisilicon.com
1891 T:      git git://github.com/hisilicon/linux-hisi.git
1892 F:      arch/arm/boot/dts/hi3*
1893 F:      arch/arm/boot/dts/hip*
1894 F:      arch/arm/boot/dts/hisi*
1895 F:      arch/arm/mach-hisi/
1896 F:      arch/arm64/boot/dts/hisilicon/
1897
1898 ARM/HP JORNADA 7XX MACHINE SUPPORT
1899 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1900 S:      Maintained
1901 W:      www.jlime.com
1902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1903 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1904 F:      arch/arm/mach-sa1100/jornada720.c
1905
1906 ARM/IGEP MACHINE SUPPORT
1907 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1908 M:      Javier Martinez Canillas <javier@dowhile0.org>
1909 L:      linux-omap@vger.kernel.org
1910 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1911 S:      Maintained
1912 F:      arch/arm/boot/dts/omap3-igep*
1913
1914 ARM/INCOME PXA270 SUPPORT
1915 M:      Marek Vasut <marek.vasut@gmail.com>
1916 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1917 S:      Maintained
1918 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1919
1920 ARM/INTEL IOP32X ARM ARCHITECTURE
1921 M:      Lennert Buytenhek <kernel@wantstofly.org>
1922 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1923 S:      Maintained
1924
1925 ARM/INTEL IQ81342EX MACHINE SUPPORT
1926 M:      Lennert Buytenhek <kernel@wantstofly.org>
1927 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1928 S:      Maintained
1929
1930 ARM/INTEL IXDP2850 MACHINE SUPPORT
1931 M:      Lennert Buytenhek <kernel@wantstofly.org>
1932 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1933 S:      Maintained
1934
1935 ARM/INTEL IXP4XX ARM ARCHITECTURE
1936 M:      Linus Walleij <linusw@kernel.org>
1937 M:      Imre Kaloz <kaloz@openwrt.org>
1938 M:      Krzysztof Halasa <khalasa@piap.pl>
1939 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1940 S:      Maintained
1941 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1942 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1943 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1944 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1945 F:      arch/arm/mach-ixp4xx/
1946 F:      drivers/clocksource/timer-ixp4xx.c
1947 F:      drivers/gpio/gpio-ixp4xx.c
1948 F:      drivers/irqchip/irq-ixp4xx.c
1949 F:      include/linux/irqchip/irq-ixp4xx.h
1950 F:      include/linux/platform_data/timer-ixp4xx.h
1951
1952 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1953 M:      Jonathan Cameron <jic23@cam.ac.uk>
1954 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1955 S:      Maintained
1956 F:      arch/arm/mach-pxa/stargate2.c
1957 F:      drivers/pcmcia/pxa2xx_stargate2.c
1958
1959 ARM/INTEL XSC3 (MANZANO) ARM CORE
1960 M:      Lennert Buytenhek <kernel@wantstofly.org>
1961 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1962 S:      Maintained
1963
1964 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1965 M:      Lennert Buytenhek <kernel@wantstofly.org>
1966 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1967 S:      Maintained
1968
1969 ARM/LG1K ARCHITECTURE
1970 M:      Chanho Min <chanho.min@lge.com>
1971 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1972 S:      Maintained
1973 F:      arch/arm64/boot/dts/lg/
1974
1975 ARM/LOGICPD PXA270 MACHINE SUPPORT
1976 M:      Lennert Buytenhek <kernel@wantstofly.org>
1977 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1978 S:      Maintained
1979
1980 ARM/LPC18XX ARCHITECTURE
1981 M:      Vladimir Zapolskiy <vz@mleia.com>
1982 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1983 S:      Maintained
1984 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1985 F:      arch/arm/boot/dts/lpc43*
1986 F:      drivers/i2c/busses/i2c-lpc2k.c
1987 F:      drivers/memory/pl172.c
1988 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
1989 F:      drivers/rtc/rtc-lpc24xx.c
1990 N:      lpc18xx
1991
1992 ARM/LPC32XX SOC SUPPORT
1993 M:      Vladimir Zapolskiy <vz@mleia.com>
1994 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1995 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1996 S:      Maintained
1997 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1998 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
1999 F:      arch/arm/boot/dts/lpc32*
2000 F:      arch/arm/mach-lpc32xx/
2001 F:      drivers/i2c/busses/i2c-pnx.c
2002 F:      drivers/net/ethernet/nxp/lpc_eth.c
2003 F:      drivers/usb/host/ohci-nxp.c
2004 F:      drivers/watchdog/pnx4008_wdt.c
2005 N:      lpc32xx
2006
2007 ARM/MAGICIAN MACHINE SUPPORT
2008 M:      Philipp Zabel <philipp.zabel@gmail.com>
2009 S:      Maintained
2010
2011 ARM/Marvell Dove/MV78xx0/Orion SOC support
2012 M:      Jason Cooper <jason@lakedaemon.net>
2013 M:      Andrew Lunn <andrew@lunn.ch>
2014 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2015 M:      Gregory Clement <gregory.clement@bootlin.com>
2016 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2017 S:      Maintained
2018 T:      git git://git.infradead.org/linux-mvebu.git
2019 F:      Documentation/devicetree/bindings/soc/dove/
2020 F:      arch/arm/boot/dts/dove*
2021 F:      arch/arm/boot/dts/orion5x*
2022 F:      arch/arm/mach-dove/
2023 F:      arch/arm/mach-mv78xx0/
2024 F:      arch/arm/mach-orion5x/
2025 F:      arch/arm/plat-orion/
2026 F:      drivers/soc/dove/
2027
2028 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2029 M:      Jason Cooper <jason@lakedaemon.net>
2030 M:      Andrew Lunn <andrew@lunn.ch>
2031 M:      Gregory Clement <gregory.clement@bootlin.com>
2032 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2033 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2034 S:      Maintained
2035 T:      git git://git.infradead.org/linux-mvebu.git
2036 F:      arch/arm/boot/dts/armada*
2037 F:      arch/arm/boot/dts/kirkwood*
2038 F:      arch/arm/configs/mvebu_*_defconfig
2039 F:      arch/arm/mach-mvebu/
2040 F:      arch/arm64/boot/dts/marvell/armada*
2041 F:      arch/arm64/boot/dts/marvell/cn913*
2042 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2043 F:      drivers/cpufreq/armada-8k-cpufreq.c
2044 F:      drivers/cpufreq/mvebu-cpufreq.c
2045 F:      drivers/irqchip/irq-armada-370-xp.c
2046 F:      drivers/irqchip/irq-mvebu-*
2047 F:      drivers/pinctrl/mvebu/
2048 F:      drivers/rtc/rtc-armada38x.c
2049
2050 ARM/Mediatek RTC DRIVER
2051 M:      Eddie Huang <eddie.huang@mediatek.com>
2052 M:      Sean Wang <sean.wang@mediatek.com>
2053 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2054 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2055 S:      Maintained
2056 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2057 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2058 F:      drivers/rtc/rtc-mt2712.c
2059 F:      drivers/rtc/rtc-mt6397.c
2060 F:      drivers/rtc/rtc-mt7622.c
2061
2062 ARM/Mediatek SoC support
2063 M:      Matthias Brugger <matthias.bgg@gmail.com>
2064 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2065 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2066 S:      Maintained
2067 W:      https://mtk.bcnfs.org/
2068 C:      irc://chat.freenode.net/linux-mediatek
2069 F:      arch/arm/boot/dts/mt6*
2070 F:      arch/arm/boot/dts/mt7*
2071 F:      arch/arm/boot/dts/mt8*
2072 F:      arch/arm/mach-mediatek/
2073 F:      arch/arm64/boot/dts/mediatek/
2074 F:      drivers/soc/mediatek/
2075 N:      mtk
2076 N:      mt[678]
2077 K:      mediatek
2078
2079 ARM/Mediatek USB3 PHY DRIVER
2080 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2081 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2082 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2083 S:      Maintained
2084 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2085 F:      drivers/phy/mediatek/
2086
2087 ARM/Microchip (AT91) SoC support
2088 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2089 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2090 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2091 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2092 S:      Supported
2093 W:      http://www.linux4sam.org
2094 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2095 F:      arch/arm/boot/dts/at91*.dts
2096 F:      arch/arm/boot/dts/at91*.dtsi
2097 F:      arch/arm/boot/dts/sama*.dts
2098 F:      arch/arm/boot/dts/sama*.dtsi
2099 F:      arch/arm/include/debug/at91.S
2100 F:      arch/arm/mach-at91/
2101 F:      drivers/memory/atmel*
2102 F:      drivers/watchdog/sama5d4_wdt.c
2103 F:      include/soc/at91/
2104 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2105 X:      drivers/net/wireless/atmel/
2106 N:      at91
2107 N:      atmel
2108
2109 ARM/MIOA701 MACHINE SUPPORT
2110 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2111 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2112 S:      Maintained
2113 F:      arch/arm/mach-pxa/mioa701.c
2114
2115 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2116 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2117 S:      Maintained
2118
2119 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2120 M:      Linus Walleij <linus.walleij@linaro.org>
2121 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2122 S:      Maintained
2123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2124 F:      Documentation/devicetree/bindings/arm/ste-*
2125 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2126 F:      Documentation/devicetree/bindings/arm/ux500/
2127 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2128 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2129 F:      arch/arm/boot/dts/ste-*
2130 F:      arch/arm/mach-nomadik/
2131 F:      arch/arm/mach-u300/
2132 F:      arch/arm/mach-ux500/
2133 F:      drivers/clk/clk-nomadik.c
2134 F:      drivers/clk/clk-u300.c
2135 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2136 F:      drivers/clocksource/timer-u300.c
2137 F:      drivers/dma/coh901318*
2138 F:      drivers/dma/ste_dma40*
2139 F:      drivers/hwspinlock/u8500_hsem.c
2140 F:      drivers/i2c/busses/i2c-nomadik.c
2141 F:      drivers/i2c/busses/i2c-stu300.c
2142 F:      drivers/iio/adc/ab8500-gpadc.c
2143 F:      drivers/mfd/ab3100*
2144 F:      drivers/mfd/ab8500*
2145 F:      drivers/mfd/abx500*
2146 F:      drivers/mfd/db8500*
2147 F:      drivers/mfd/dbx500*
2148 F:      drivers/pinctrl/nomadik/
2149 F:      drivers/pinctrl/pinctrl-coh901*
2150 F:      drivers/pinctrl/pinctrl-u300.c
2151 F:      drivers/rtc/rtc-ab3100.c
2152 F:      drivers/rtc/rtc-ab8500.c
2153 F:      drivers/rtc/rtc-coh901331.c
2154 F:      drivers/rtc/rtc-pl031.c
2155 F:      drivers/soc/ux500/
2156 F:      drivers/watchdog/coh901327_wdt.c
2157
2158 ARM/NUVOTON NPCM ARCHITECTURE
2159 M:      Avi Fishman <avifishman70@gmail.com>
2160 M:      Tomer Maimon <tmaimon77@gmail.com>
2161 M:      Tali Perry <tali.perry1@gmail.com>
2162 R:      Patrick Venture <venture@google.com>
2163 R:      Nancy Yuen <yuenn@google.com>
2164 R:      Benjamin Fair <benjaminfair@google.com>
2165 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2166 S:      Supported
2167 F:      Documentation/devicetree/bindings/*/*/*npcm*
2168 F:      Documentation/devicetree/bindings/*/*npcm*
2169 F:      arch/arm/boot/dts/nuvoton-npcm*
2170 F:      arch/arm/mach-npcm/
2171 F:      drivers/*/*npcm*
2172 F:      drivers/*/*/*npcm*
2173 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2174
2175 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2176 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2177 S:      Orphan
2178 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2179 F:      arch/arm/mach-s3c24xx/gta02.h
2180 F:      arch/arm/mach-s3c24xx/mach-gta02.c
2181
2182 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2183 M:      Alexander Clouter <alex@digriz.org.uk>
2184 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2185 S:      Maintained
2186 W:      http://www.digriz.org.uk/ts78xx/kernel
2187 F:      arch/arm/mach-orion5x/ts78xx-*
2188
2189 ARM/OXNAS platform support
2190 M:      Neil Armstrong <narmstrong@baylibre.com>
2191 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2192 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2193 S:      Maintained
2194 F:      arch/arm/boot/dts/ox8*.dts*
2195 F:      arch/arm/mach-oxnas/
2196 F:      drivers/power/reset/oxnas-restart.c
2197 N:      oxnas
2198
2199 ARM/PALM TREO SUPPORT
2200 M:      Tomas Cech <sleep_walker@suse.com>
2201 L:      linux-arm-kernel@lists.infradead.org
2202 S:      Maintained
2203 W:      http://hackndev.com
2204 F:      arch/arm/mach-pxa/palmtreo.*
2205
2206 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2207 M:      Marek Vasut <marek.vasut@gmail.com>
2208 L:      linux-arm-kernel@lists.infradead.org
2209 S:      Maintained
2210 W:      http://hackndev.com
2211 F:      arch/arm/mach-pxa/include/mach/palmld.h
2212 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2213 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2214 F:      arch/arm/mach-pxa/palmld.c
2215 F:      arch/arm/mach-pxa/palmt5.*
2216 F:      arch/arm/mach-pxa/palmtc.c
2217 F:      arch/arm/mach-pxa/palmte2.*
2218 F:      arch/arm/mach-pxa/palmtx.c
2219
2220 ARM/PALMZ72 SUPPORT
2221 M:      Sergey Lapin <slapin@ossfans.org>
2222 L:      linux-arm-kernel@lists.infradead.org
2223 S:      Maintained
2224 W:      http://hackndev.com
2225 F:      arch/arm/mach-pxa/palmz72.*
2226
2227 ARM/PLEB SUPPORT
2228 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2229 S:      Maintained
2230 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2231
2232 ARM/PT DIGITAL BOARD PORT
2233 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2234 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2235 S:      Maintained
2236 W:      http://www.armlinux.org.uk/
2237
2238 ARM/QUALCOMM SUPPORT
2239 M:      Andy Gross <agross@kernel.org>
2240 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2241 L:      linux-arm-msm@vger.kernel.org
2242 S:      Maintained
2243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2244 F:      Documentation/devicetree/bindings/*/qcom*
2245 F:      Documentation/devicetree/bindings/soc/qcom/
2246 F:      arch/arm/boot/dts/qcom-*.dts
2247 F:      arch/arm/boot/dts/qcom-*.dtsi
2248 F:      arch/arm/mach-qcom/
2249 F:      arch/arm64/boot/dts/qcom/
2250 F:      drivers/*/*/qcom*
2251 F:      drivers/*/*/qcom/
2252 F:      drivers/*/pm8???-*
2253 F:      drivers/*/qcom*
2254 F:      drivers/*/qcom/
2255 F:      drivers/bluetooth/btqcomsmd.c
2256 F:      drivers/clocksource/timer-qcom.c
2257 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2258 F:      drivers/extcon/extcon-qcom*
2259 F:      drivers/i2c/busses/i2c-qcom-geni.c
2260 F:      drivers/i2c/busses/i2c-qup.c
2261 F:      drivers/iommu/msm*
2262 F:      drivers/mfd/ssbi.c
2263 F:      drivers/mmc/host/mmci_qcom*
2264 F:      drivers/mmc/host/sdhci-msm.c
2265 F:      drivers/pci/controller/dwc/pcie-qcom.c
2266 F:      drivers/phy/qualcomm/
2267 F:      drivers/power/*/msm*
2268 F:      drivers/reset/reset-qcom-*
2269 F:      drivers/scsi/ufs/ufs-qcom.*
2270 F:      drivers/spi/spi-geni-qcom.c
2271 F:      drivers/spi/spi-qcom-qspi.c
2272 F:      drivers/spi/spi-qup.c
2273 F:      drivers/tty/serial/msm_serial.c
2274 F:      drivers/usb/dwc3/dwc3-qcom.c
2275 F:      include/dt-bindings/*/qcom*
2276 F:      include/linux/*/qcom*
2277
2278 ARM/RADISYS ENP2611 MACHINE SUPPORT
2279 M:      Lennert Buytenhek <kernel@wantstofly.org>
2280 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2281 S:      Maintained
2282
2283 ARM/RDA MICRO ARCHITECTURE
2284 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2285 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2286 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2287 S:      Maintained
2288 F:      Documentation/devicetree/bindings/arm/rda.yaml
2289 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2290 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2291 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2292 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2293 F:      arch/arm/boot/dts/rda8810pl-*
2294 F:      drivers/clocksource/timer-rda.c
2295 F:      drivers/gpio/gpio-rda.c
2296 F:      drivers/irqchip/irq-rda-intc.c
2297 F:      drivers/tty/serial/rda-uart.c
2298
2299 ARM/REALTEK ARCHITECTURE
2300 M:      Andreas Färber <afaerber@suse.de>
2301 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2302 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2303 S:      Maintained
2304 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2305 F:      arch/arm/boot/dts/rtd*
2306 F:      arch/arm/mach-realtek/
2307 F:      arch/arm64/boot/dts/realtek/
2308
2309 ARM/RENESAS ARM64 ARCHITECTURE
2310 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2311 M:      Magnus Damm <magnus.damm@gmail.com>
2312 L:      linux-renesas-soc@vger.kernel.org
2313 S:      Supported
2314 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2316 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2317 F:      arch/arm64/boot/dts/renesas/
2318 F:      drivers/soc/renesas/
2319 F:      include/linux/soc/renesas/
2320
2321 ARM/RISCPC ARCHITECTURE
2322 M:      Russell King <linux@armlinux.org.uk>
2323 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2324 S:      Maintained
2325 W:      http://www.armlinux.org.uk/
2326 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2327 F:      arch/arm/include/asm/hardware/ioc.h
2328 F:      arch/arm/include/asm/hardware/iomd.h
2329 F:      arch/arm/include/asm/hardware/memc.h
2330 F:      arch/arm/mach-rpc/
2331 F:      drivers/net/ethernet/8390/etherh.c
2332 F:      drivers/net/ethernet/i825xx/ether1*
2333 F:      drivers/net/ethernet/seeq/ether3*
2334 F:      drivers/scsi/arm/
2335
2336 ARM/Rockchip SoC support
2337 M:      Heiko Stuebner <heiko@sntech.de>
2338 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2339 L:      linux-rockchip@lists.infradead.org
2340 S:      Maintained
2341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2342 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2343 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2344 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2345 F:      arch/arm/boot/dts/rk3*
2346 F:      arch/arm/boot/dts/rv1108*
2347 F:      arch/arm/mach-rockchip/
2348 F:      drivers/*/*/*rockchip*
2349 F:      drivers/*/*rockchip*
2350 F:      drivers/clk/rockchip/
2351 F:      drivers/i2c/busses/i2c-rk3x.c
2352 F:      sound/soc/rockchip/
2353 N:      rockchip
2354
2355 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2356 M:      Kukjin Kim <kgene@kernel.org>
2357 M:      Krzysztof Kozlowski <krzk@kernel.org>
2358 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2359 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2360 S:      Maintained
2361 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2362 F:      Documentation/arm/samsung/
2363 F:      Documentation/devicetree/bindings/arm/samsung/
2364 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2365 F:      arch/arm/boot/dts/exynos*
2366 F:      arch/arm/boot/dts/s3c*
2367 F:      arch/arm/boot/dts/s5p*
2368 F:      arch/arm/mach-exynos*/
2369 F:      arch/arm/mach-s3c24*/
2370 F:      arch/arm/mach-s3c64xx/
2371 F:      arch/arm/mach-s5p*/
2372 F:      arch/arm/plat-samsung/
2373 F:      arch/arm64/boot/dts/exynos/
2374 F:      drivers/*/*/*s3c24*
2375 F:      drivers/*/*s3c24*
2376 F:      drivers/*/*s3c64xx*
2377 F:      drivers/*/*s5pv210*
2378 F:      drivers/memory/samsung/
2379 F:      drivers/soc/samsung/
2380 F:      drivers/tty/serial/samsung*
2381 F:      include/linux/soc/samsung/
2382 N:      exynos
2383
2384 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2385 M:      Kyungmin Park <kyungmin.park@samsung.com>
2386 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2387 S:      Maintained
2388 F:      arch/arm/mach-s5pv210/
2389
2390 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2391 M:      Kyungmin Park <kyungmin.park@samsung.com>
2392 M:      Kamil Debski <kamil@wypas.org>
2393 M:      Andrzej Hajda <a.hajda@samsung.com>
2394 L:      linux-arm-kernel@lists.infradead.org
2395 L:      linux-media@vger.kernel.org
2396 S:      Maintained
2397 F:      drivers/media/platform/s5p-g2d/
2398
2399 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2400 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2401 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2402 L:      linux-media@vger.kernel.org
2403 S:      Maintained
2404 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2405 F:      drivers/media/platform/s5p-cec/
2406
2407 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2408 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2409 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2410 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2411 L:      linux-arm-kernel@lists.infradead.org
2412 L:      linux-media@vger.kernel.org
2413 S:      Maintained
2414 F:      drivers/media/platform/s5p-jpeg/
2415
2416 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2417 M:      Kyungmin Park <kyungmin.park@samsung.com>
2418 M:      Kamil Debski <kamil@wypas.org>
2419 M:      Jeongtae Park <jtp.park@samsung.com>
2420 M:      Andrzej Hajda <a.hajda@samsung.com>
2421 L:      linux-arm-kernel@lists.infradead.org
2422 L:      linux-media@vger.kernel.org
2423 S:      Maintained
2424 F:      drivers/media/platform/s5p-mfc/
2425
2426 ARM/SHMOBILE ARM ARCHITECTURE
2427 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2428 M:      Magnus Damm <magnus.damm@gmail.com>
2429 L:      linux-renesas-soc@vger.kernel.org
2430 S:      Supported
2431 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2433 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2434 F:      arch/arm/boot/dts/emev2*
2435 F:      arch/arm/boot/dts/gr-peach*
2436 F:      arch/arm/boot/dts/iwg20d-q7*
2437 F:      arch/arm/boot/dts/r7s*
2438 F:      arch/arm/boot/dts/r8a*
2439 F:      arch/arm/boot/dts/r9a*
2440 F:      arch/arm/boot/dts/sh*
2441 F:      arch/arm/configs/shmobile_defconfig
2442 F:      arch/arm/include/debug/renesas-scif.S
2443 F:      arch/arm/mach-shmobile/
2444 F:      drivers/soc/renesas/
2445 F:      include/linux/soc/renesas/
2446
2447 ARM/SOCFPGA ARCHITECTURE
2448 M:      Dinh Nguyen <dinguyen@kernel.org>
2449 S:      Maintained
2450 W:      http://www.rocketboards.org
2451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2452 F:      arch/arm/boot/dts/socfpga*
2453 F:      arch/arm/configs/socfpga_defconfig
2454 F:      arch/arm/mach-socfpga/
2455 F:      arch/arm64/boot/dts/altera/
2456 F:      arch/arm64/boot/dts/intel/
2457
2458 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2459 M:      Dinh Nguyen <dinguyen@kernel.org>
2460 S:      Maintained
2461 F:      drivers/clk/socfpga/
2462
2463 ARM/SOCFPGA EDAC SUPPORT
2464 M:      Thor Thayer <thor.thayer@linux.intel.com>
2465 S:      Maintained
2466 F:      drivers/edac/altera_edac.
2467
2468 ARM/SPREADTRUM SoC SUPPORT
2469 M:      Orson Zhai <orsonzhai@gmail.com>
2470 M:      Baolin Wang <baolin.wang7@gmail.com>
2471 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2472 S:      Maintained
2473 F:      arch/arm64/boot/dts/sprd
2474 N:      sprd
2475 N:      sc27xx
2476 N:      sc2731
2477
2478 ARM/STI ARCHITECTURE
2479 M:      Patrice Chotard <patrice.chotard@st.com>
2480 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2481 S:      Maintained
2482 W:      http://www.stlinux.com
2483 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2484 F:      arch/arm/boot/dts/sti*
2485 F:      arch/arm/mach-sti/
2486 F:      drivers/ata/ahci_st.c
2487 F:      drivers/char/hw_random/st-rng.c
2488 F:      drivers/clocksource/arm_global_timer.c
2489 F:      drivers/clocksource/clksrc_st_lpc.c
2490 F:      drivers/cpufreq/sti-cpufreq.c
2491 F:      drivers/dma/st_fdma*
2492 F:      drivers/i2c/busses/i2c-st.c
2493 F:      drivers/media/platform/sti/c8sectpfe/
2494 F:      drivers/media/rc/st_rc.c
2495 F:      drivers/mmc/host/sdhci-st.c
2496 F:      drivers/phy/st/phy-miphy28lp.c
2497 F:      drivers/phy/st/phy-stih407-usb.c
2498 F:      drivers/pinctrl/pinctrl-st.c
2499 F:      drivers/remoteproc/st_remoteproc.c
2500 F:      drivers/remoteproc/st_slim_rproc.c
2501 F:      drivers/reset/sti/
2502 F:      drivers/rtc/rtc-st-lpc.c
2503 F:      drivers/tty/serial/st-asc.c
2504 F:      drivers/usb/dwc3/dwc3-st.c
2505 F:      drivers/usb/host/ehci-st.c
2506 F:      drivers/usb/host/ohci-st.c
2507 F:      drivers/watchdog/st_lpc_wdt.c
2508 F:      include/linux/remoteproc/st_slim_rproc.h
2509
2510 ARM/STM32 ARCHITECTURE
2511 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2512 M:      Alexandre Torgue <alexandre.torgue@st.com>
2513 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2514 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2515 S:      Maintained
2516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2517 F:      arch/arm/boot/dts/stm32*
2518 F:      arch/arm/mach-stm32/
2519 F:      drivers/clocksource/armv7m_systick.c
2520 N:      stm32
2521 N:      stm
2522
2523 ARM/Synaptics SoC support
2524 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2525 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2526 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2527 S:      Maintained
2528 F:      arch/arm/boot/dts/berlin*
2529 F:      arch/arm/mach-berlin/
2530 F:      arch/arm64/boot/dts/synaptics/
2531
2532 ARM/TANGO ARCHITECTURE
2533 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2534 M:      Mans Rullgard <mans@mansr.com>
2535 L:      linux-arm-kernel@lists.infradead.org
2536 S:      Odd Fixes
2537 N:      tango
2538
2539 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2540 M:      Lennert Buytenhek <kernel@wantstofly.org>
2541 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2542 S:      Maintained
2543
2544 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2545 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2546 L:      linux-tegra@vger.kernel.org
2547 L:      linux-media@vger.kernel.org
2548 S:      Maintained
2549 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2550 F:      drivers/media/platform/tegra-cec/
2551
2552 ARM/TETON BGA MACHINE SUPPORT
2553 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2554 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2555 S:      Maintained
2556
2557 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2558 M:      Santosh Shilimkar <ssantosh@kernel.org>
2559 L:      linux-kernel@vger.kernel.org
2560 S:      Maintained
2561 F:      drivers/memory/*emif*
2562
2563 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2564 M:      Santosh Shilimkar <ssantosh@kernel.org>
2565 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2566 S:      Maintained
2567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2568 F:      arch/arm/boot/dts/keystone-*
2569 F:      arch/arm/mach-keystone/
2570
2571 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2572 M:      Santosh Shilimkar <ssantosh@kernel.org>
2573 L:      linux-kernel@vger.kernel.org
2574 S:      Maintained
2575 F:      drivers/clk/keystone/
2576
2577 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2578 M:      Santosh Shilimkar <ssantosh@kernel.org>
2579 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2580 L:      linux-kernel@vger.kernel.org
2581 S:      Maintained
2582 F:      drivers/clocksource/timer-keystone.c
2583
2584 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2585 M:      Santosh Shilimkar <ssantosh@kernel.org>
2586 L:      linux-kernel@vger.kernel.org
2587 S:      Maintained
2588 F:      drivers/power/reset/keystone-reset.c
2589
2590 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2591 M:      Tero Kristo <t-kristo@ti.com>
2592 M:      Nishanth Menon <nm@ti.com>
2593 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2594 S:      Supported
2595 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2596 F:      arch/arm64/boot/dts/ti/Makefile
2597 F:      arch/arm64/boot/dts/ti/k3-*
2598 F:      include/dt-bindings/pinctrl/k3.h
2599
2600 ARM/THECUS N2100 MACHINE SUPPORT
2601 M:      Lennert Buytenhek <kernel@wantstofly.org>
2602 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2603 S:      Maintained
2604
2605 ARM/TOSA MACHINE SUPPORT
2606 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2607 M:      Dirk Opfer <dirk@opfer-online.de>
2608 S:      Maintained
2609
2610 ARM/UNIPHIER ARCHITECTURE
2611 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
2612 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2613 S:      Maintained
2614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2615 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2616 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2617 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2618 F:      arch/arm/boot/dts/uniphier*
2619 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2620 F:      arch/arm/mach-uniphier/
2621 F:      arch/arm/mm/cache-uniphier.c
2622 F:      arch/arm64/boot/dts/socionext/uniphier*
2623 F:      drivers/bus/uniphier-system-bus.c
2624 F:      drivers/clk/uniphier/
2625 F:      drivers/dma/uniphier-mdmac.c
2626 F:      drivers/gpio/gpio-uniphier.c
2627 F:      drivers/i2c/busses/i2c-uniphier*
2628 F:      drivers/irqchip/irq-uniphier-aidet.c
2629 F:      drivers/mmc/host/uniphier-sd.c
2630 F:      drivers/pinctrl/uniphier/
2631 F:      drivers/reset/reset-uniphier.c
2632 F:      drivers/tty/serial/8250/8250_uniphier.c
2633 N:      uniphier
2634
2635 ARM/VERSATILE EXPRESS PLATFORM
2636 M:      Liviu Dudau <liviu.dudau@arm.com>
2637 M:      Sudeep Holla <sudeep.holla@arm.com>
2638 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2639 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2640 S:      Maintained
2641 F:      */*/*/vexpress*
2642 F:      */*/vexpress*
2643 F:      arch/arm/boot/dts/vexpress*
2644 F:      arch/arm/mach-vexpress/
2645 F:      arch/arm64/boot/dts/arm/
2646 F:      drivers/clk/versatile/clk-vexpress-osc.c
2647 F:      drivers/clocksource/timer-versatile.c
2648 N:      mps2
2649
2650 ARM/VFP SUPPORT
2651 M:      Russell King <linux@armlinux.org.uk>
2652 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2653 S:      Maintained
2654 W:      http://www.armlinux.org.uk/
2655 F:      arch/arm/vfp/
2656
2657 ARM/VOIPAC PXA270 SUPPORT
2658 M:      Marek Vasut <marek.vasut@gmail.com>
2659 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2660 S:      Maintained
2661 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2662 F:      arch/arm/mach-pxa/vpac270.c
2663
2664 ARM/VT8500 ARM ARCHITECTURE
2665 M:      Tony Prisk <linux@prisktech.co.nz>
2666 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2667 S:      Maintained
2668 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2669 F:      arch/arm/mach-vt8500/
2670 F:      drivers/clocksource/timer-vt8500.c
2671 F:      drivers/i2c/busses/i2c-wmt.c
2672 F:      drivers/mmc/host/wmt-sdmmc.c
2673 F:      drivers/pwm/pwm-vt8500.c
2674 F:      drivers/rtc/rtc-vt8500.c
2675 F:      drivers/tty/serial/vt8500_serial.c
2676 F:      drivers/usb/host/ehci-platform.c
2677 F:      drivers/usb/host/uhci-platform.c
2678 F:      drivers/video/fbdev/vt8500lcdfb.*
2679 F:      drivers/video/fbdev/wm8505fb*
2680 F:      drivers/video/fbdev/wmt_ge_rops.*
2681
2682 ARM/ZIPIT Z2 SUPPORT
2683 M:      Marek Vasut <marek.vasut@gmail.com>
2684 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2685 S:      Maintained
2686 F:      arch/arm/mach-pxa/include/mach/z2.h
2687 F:      arch/arm/mach-pxa/z2.c
2688
2689 ARM/ZTE ARCHITECTURE
2690 M:      Jun Nie <jun.nie@linaro.org>
2691 M:      Shawn Guo <shawnguo@kernel.org>
2692 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2693 S:      Maintained
2694 F:      Documentation/devicetree/bindings/arm/zte.yaml
2695 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2696 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2697 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2698 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2699 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2700 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2701 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2702 F:      Documentation/devicetree/bindings/soc/zte/
2703 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2704 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2705 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2706 F:      arch/arm/boot/dts/zx2967*
2707 F:      arch/arm/mach-zx/
2708 F:      arch/arm64/boot/dts/zte/
2709 F:      drivers/clk/zte/
2710 F:      drivers/dma/zx_dma.c
2711 F:      drivers/gpio/gpio-zx.c
2712 F:      drivers/i2c/busses/i2c-zx2967.c
2713 F:      drivers/mmc/host/dw_mmc-zx.*
2714 F:      drivers/pinctrl/zte/
2715 F:      drivers/soc/zte/
2716 F:      drivers/thermal/zx2967_thermal.c
2717 F:      drivers/watchdog/zx2967_wdt.c
2718 F:      include/dt-bindings/clock/zx2967*.h
2719 F:      include/dt-bindings/soc/zte,*.h
2720 F:      sound/soc/codecs/zx_aud96p22.c
2721 F:      sound/soc/zte/
2722
2723 ARM/ZYNQ ARCHITECTURE
2724 M:      Michal Simek <michal.simek@xilinx.com>
2725 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2726 S:      Supported
2727 W:      http://wiki.xilinx.com
2728 T:      git https://github.com/Xilinx/linux-xlnx.git
2729 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2730 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2731 F:      arch/arm/mach-zynq/
2732 F:      drivers/block/xsysace.c
2733 F:      drivers/clocksource/timer-cadence-ttc.c
2734 F:      drivers/cpuidle/cpuidle-zynq.c
2735 F:      drivers/edac/synopsys_edac.c
2736 F:      drivers/i2c/busses/i2c-cadence.c
2737 F:      drivers/i2c/busses/i2c-xiic.c
2738 F:      drivers/mmc/host/sdhci-of-arasan.c
2739 N:      zynq
2740 N:      xilinx
2741
2742 ARM64 PORT (AARCH64 ARCHITECTURE)
2743 M:      Catalin Marinas <catalin.marinas@arm.com>
2744 M:      Will Deacon <will@kernel.org>
2745 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2746 S:      Maintained
2747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2748 F:      Documentation/arm64/
2749 F:      arch/arm64/
2750 F:      tools/testing/selftests/arm64/
2751 X:      arch/arm64/boot/dts/
2752
2753 AS3645A LED FLASH CONTROLLER DRIVER
2754 M:      Sakari Ailus <sakari.ailus@iki.fi>
2755 L:      linux-leds@vger.kernel.org
2756 S:      Maintained
2757 F:      drivers/leds/leds-as3645a.c
2758
2759 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2760 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2761 L:      linux-media@vger.kernel.org
2762 S:      Maintained
2763 T:      git git://linuxtv.org/media_tree.git
2764 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2765 F:      drivers/media/i2c/ak7375.c
2766
2767 ASAHI KASEI AK8974 DRIVER
2768 M:      Linus Walleij <linus.walleij@linaro.org>
2769 L:      linux-iio@vger.kernel.org
2770 S:      Supported
2771 W:      http://www.akm.com/
2772 F:      drivers/iio/magnetometer/ak8974.c
2773
2774 ASC7621 HARDWARE MONITOR DRIVER
2775 M:      George Joseph <george.joseph@fairview5.com>
2776 L:      linux-hwmon@vger.kernel.org
2777 S:      Maintained
2778 F:      Documentation/hwmon/asc7621.rst
2779 F:      drivers/hwmon/asc7621.c
2780
2781 ASPEED PINCTRL DRIVERS
2782 M:      Andrew Jeffery <andrew@aj.id.au>
2783 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2784 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2785 L:      linux-gpio@vger.kernel.org
2786 S:      Maintained
2787 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2788 F:      drivers/pinctrl/aspeed/
2789
2790 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2791 M:      Eddie James <eajames@linux.ibm.com>
2792 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2793 S:      Maintained
2794 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2795 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2796 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2797
2798 ASPEED VIDEO ENGINE DRIVER
2799 M:      Eddie James <eajames@linux.ibm.com>
2800 L:      linux-media@vger.kernel.org
2801 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2802 S:      Maintained
2803 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2804 F:      drivers/media/platform/aspeed-video.c
2805
2806 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2807 M:      Corentin Chary <corentin.chary@gmail.com>
2808 L:      acpi4asus-user@lists.sourceforge.net
2809 L:      platform-driver-x86@vger.kernel.org
2810 S:      Maintained
2811 W:      http://acpi4asus.sf.net
2812 F:      drivers/platform/x86/asus*.c
2813 F:      drivers/platform/x86/eeepc*.c
2814
2815 ASUS WIRELESS RADIO CONTROL DRIVER
2816 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2817 L:      platform-driver-x86@vger.kernel.org
2818 S:      Maintained
2819 F:      drivers/platform/x86/asus-wireless.c
2820
2821 ASYMMETRIC KEYS
2822 M:      David Howells <dhowells@redhat.com>
2823 L:      keyrings@vger.kernel.org
2824 S:      Maintained
2825 F:      Documentation/crypto/asymmetric-keys.txt
2826 F:      crypto/asymmetric_keys/
2827 F:      include/crypto/pkcs7.h
2828 F:      include/crypto/public_key.h
2829 F:      include/linux/verification.h
2830
2831 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2832 R:      Dan Williams <dan.j.williams@intel.com>
2833 S:      Odd fixes
2834 W:      http://sourceforge.net/projects/xscaleiop
2835 F:      Documentation/crypto/async-tx-api.txt
2836 F:      crypto/async_tx/
2837 F:      drivers/dma/
2838 F:      include/linux/async_tx.h
2839 F:      include/linux/dmaengine.h
2840
2841 AT24 EEPROM DRIVER
2842 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2843 L:      linux-i2c@vger.kernel.org
2844 S:      Maintained
2845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2846 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2847 F:      drivers/misc/eeprom/at24.c
2848
2849 ATA OVER ETHERNET (AOE) DRIVER
2850 M:      "Justin Sanders" <justin@coraid.com>
2851 S:      Supported
2852 W:      http://www.openaoe.org/
2853 F:      Documentation/admin-guide/aoe/
2854 F:      drivers/block/aoe/
2855
2856 ATHEROS 71XX/9XXX GPIO DRIVER
2857 M:      Alban Bedel <albeu@free.fr>
2858 S:      Maintained
2859 W:      https://github.com/AlbanBedel/linux
2860 T:      git git://github.com/AlbanBedel/linux
2861 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2862 F:      drivers/gpio/gpio-ath79.c
2863
2864 ATHEROS 71XX/9XXX USB PHY DRIVER
2865 M:      Alban Bedel <albeu@free.fr>
2866 S:      Maintained
2867 W:      https://github.com/AlbanBedel/linux
2868 T:      git git://github.com/AlbanBedel/linux
2869 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2870 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2871
2872 ATHEROS ATH GENERIC UTILITIES
2873 M:      Kalle Valo <kvalo@codeaurora.org>
2874 L:      linux-wireless@vger.kernel.org
2875 S:      Supported
2876 F:      drivers/net/wireless/ath/*
2877
2878 ATHEROS ATH5K WIRELESS DRIVER
2879 M:      Jiri Slaby <jirislaby@gmail.com>
2880 M:      Nick Kossifidis <mickflemm@gmail.com>
2881 M:      Luis Chamberlain <mcgrof@kernel.org>
2882 L:      linux-wireless@vger.kernel.org
2883 S:      Maintained
2884 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2885 F:      drivers/net/wireless/ath/ath5k/
2886
2887 ATHEROS ATH6KL WIRELESS DRIVER
2888 M:      Kalle Valo <kvalo@codeaurora.org>
2889 L:      linux-wireless@vger.kernel.org
2890 S:      Supported
2891 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2893 F:      drivers/net/wireless/ath/ath6kl/
2894
2895 ATI_REMOTE2 DRIVER
2896 M:      Ville Syrjala <syrjala@sci.fi>
2897 S:      Maintained
2898 F:      drivers/input/misc/ati_remote2.c
2899
2900 ATK0110 HWMON DRIVER
2901 M:      Luca Tettamanti <kronos.it@gmail.com>
2902 L:      linux-hwmon@vger.kernel.org
2903 S:      Maintained
2904 F:      drivers/hwmon/asus_atk0110.c
2905
2906 ATLX ETHERNET DRIVERS
2907 M:      Jay Cliburn <jcliburn@gmail.com>
2908 M:      Chris Snook <chris.snook@gmail.com>
2909 L:      netdev@vger.kernel.org
2910 S:      Maintained
2911 W:      http://sourceforge.net/projects/atl1
2912 W:      http://atl1.sourceforge.net
2913 F:      drivers/net/ethernet/atheros/
2914
2915 ATM
2916 M:      Chas Williams <3chas3@gmail.com>
2917 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2918 L:      netdev@vger.kernel.org
2919 S:      Maintained
2920 W:      http://linux-atm.sourceforge.net
2921 F:      drivers/atm/
2922 F:      include/linux/atm*
2923 F:      include/uapi/linux/atm*
2924
2925 ATMEL MACB ETHERNET DRIVER
2926 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2927 S:      Supported
2928 F:      drivers/net/ethernet/cadence/
2929
2930 ATMEL MAXTOUCH DRIVER
2931 M:      Nick Dyer <nick@shmanahar.org>
2932 S:      Maintained
2933 T:      git git://github.com/ndyer/linux.git
2934 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2935 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2936
2937 ATMEL WIRELESS DRIVER
2938 M:      Simon Kelley <simon@thekelleys.org.uk>
2939 L:      linux-wireless@vger.kernel.org
2940 S:      Maintained
2941 W:      http://www.thekelleys.org.uk/atmel
2942 W:      http://atmelwlandriver.sourceforge.net/
2943 F:      drivers/net/wireless/atmel/atmel*
2944
2945 ATOMIC INFRASTRUCTURE
2946 M:      Will Deacon <will@kernel.org>
2947 M:      Peter Zijlstra <peterz@infradead.org>
2948 R:      Boqun Feng <boqun.feng@gmail.com>
2949 L:      linux-kernel@vger.kernel.org
2950 S:      Maintained
2951 F:      arch/*/include/asm/atomic*.h
2952 F:      include/*/atomic*.h
2953 F:      scripts/atomic/
2954
2955 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2956 M:      Bradley Grove <linuxdrivers@attotech.com>
2957 L:      linux-scsi@vger.kernel.org
2958 S:      Supported
2959 W:      http://www.attotech.com
2960 F:      drivers/scsi/esas2r
2961
2962 ATUSB IEEE 802.15.4 RADIO DRIVER
2963 M:      Stefan Schmidt <stefan@datenfreihafen.org>
2964 L:      linux-wpan@vger.kernel.org
2965 S:      Maintained
2966 F:      drivers/net/ieee802154/at86rf230.h
2967 F:      drivers/net/ieee802154/atusb.c
2968 F:      drivers/net/ieee802154/atusb.h
2969
2970 AUDIT SUBSYSTEM
2971 M:      Paul Moore <paul@paul-moore.com>
2972 M:      Eric Paris <eparis@redhat.com>
2973 L:      linux-audit@redhat.com (moderated for non-subscribers)
2974 S:      Supported
2975 W:      https://github.com/linux-audit
2976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2977 F:      include/linux/audit.h
2978 F:      include/uapi/linux/audit.h
2979 F:      kernel/audit*
2980
2981 AUXILIARY DISPLAY DRIVERS
2982 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2983 S:      Maintained
2984 F:      drivers/auxdisplay/
2985 F:      include/linux/cfag12864b.h
2986
2987 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2988 M:      Andreas Klinger <ak@it-klinger.de>
2989 L:      linux-iio@vger.kernel.org
2990 S:      Maintained
2991 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
2992 F:      drivers/iio/adc/hx711.c
2993
2994 AX.25 NETWORK LAYER
2995 M:      Ralf Baechle <ralf@linux-mips.org>
2996 L:      linux-hams@vger.kernel.org
2997 S:      Maintained
2998 W:      http://www.linux-ax25.org/
2999 F:      include/net/ax25.h
3000 F:      include/uapi/linux/ax25.h
3001 F:      net/ax25/
3002
3003 AXENTIA ARM DEVICES
3004 M:      Peter Rosin <peda@axentia.se>
3005 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3006 S:      Maintained
3007 F:      arch/arm/boot/dts/at91-linea.dtsi
3008 F:      arch/arm/boot/dts/at91-natte.dtsi
3009 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3010 F:      arch/arm/boot/dts/at91-tse850-3.dts
3011
3012 AXENTIA ASOC DRIVERS
3013 M:      Peter Rosin <peda@axentia.se>
3014 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3015 S:      Maintained
3016 F:      Documentation/devicetree/bindings/sound/axentia,*
3017 F:      sound/soc/atmel/tse850-pcm5142.c
3018
3019 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3020 M:      Nuno Sá <nuno.sa@analog.com>
3021 L:      linux-hwmon@vger.kernel.org
3022 S:      Supported
3023 W:      http://ez.analog.com/community/linux-device-drivers
3024 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3025 F:      drivers/hwmon/axi-fan-control.c
3026
3027 AXXIA I2C CONTROLLER
3028 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3029 L:      linux-i2c@vger.kernel.org
3030 S:      Maintained
3031 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3032 F:      drivers/i2c/busses/i2c-axxia.c
3033
3034 AZ6007 DVB DRIVER
3035 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3036 L:      linux-media@vger.kernel.org
3037 S:      Maintained
3038 W:      https://linuxtv.org
3039 T:      git git://linuxtv.org/media_tree.git
3040 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3041
3042 AZTECH FM RADIO RECEIVER DRIVER
3043 M:      Hans Verkuil <hverkuil@xs4all.nl>
3044 L:      linux-media@vger.kernel.org
3045 S:      Maintained
3046 W:      https://linuxtv.org
3047 T:      git git://linuxtv.org/media_tree.git
3048 F:      drivers/media/radio/radio-aztech*
3049
3050 B43 WIRELESS DRIVER
3051 L:      linux-wireless@vger.kernel.org
3052 L:      b43-dev@lists.infradead.org
3053 S:      Odd Fixes
3054 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3055 F:      drivers/net/wireless/broadcom/b43/
3056
3057 B43LEGACY WIRELESS DRIVER
3058 M:      Larry Finger <Larry.Finger@lwfinger.net>
3059 L:      linux-wireless@vger.kernel.org
3060 L:      b43-dev@lists.infradead.org
3061 S:      Maintained
3062 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3063 F:      drivers/net/wireless/broadcom/b43legacy/
3064
3065 BACKLIGHT CLASS/SUBSYSTEM
3066 M:      Lee Jones <lee.jones@linaro.org>
3067 M:      Daniel Thompson <daniel.thompson@linaro.org>
3068 M:      Jingoo Han <jingoohan1@gmail.com>
3069 L:      dri-devel@lists.freedesktop.org
3070 S:      Maintained
3071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3072 F:      Documentation/ABI/stable/sysfs-class-backlight
3073 F:      Documentation/ABI/testing/sysfs-class-backlight
3074 F:      Documentation/devicetree/bindings/leds/backlight
3075 F:      drivers/video/backlight/
3076 F:      include/linux/backlight.h
3077 F:      include/linux/pwm_backlight.h
3078
3079 BATMAN ADVANCED
3080 M:      Marek Lindner <mareklindner@neomailbox.ch>
3081 M:      Simon Wunderlich <sw@simonwunderlich.de>
3082 M:      Antonio Quartulli <a@unstable.cc>
3083 M:      Sven Eckelmann <sven@narfation.org>
3084 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3085 S:      Maintained
3086 W:      https://www.open-mesh.org/
3087 Q:      https://patchwork.open-mesh.org/project/batman/list/
3088 B:      https://www.open-mesh.org/projects/batman-adv/issues
3089 C:      irc://chat.freenode.net/batman
3090 T:      git https://git.open-mesh.org/linux-merge.git
3091 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
3092 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
3093 F:      Documentation/networking/batman-adv.rst
3094 F:      include/uapi/linux/batadv_packet.h
3095 F:      include/uapi/linux/batman_adv.h
3096 F:      net/batman-adv/
3097
3098 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3099 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3100 L:      linux-hams@vger.kernel.org
3101 S:      Maintained
3102 W:      http://www.baycom.org/~tom/ham/ham.html
3103 F:      drivers/net/hamradio/baycom*
3104
3105 BCACHE (BLOCK LAYER CACHE)
3106 M:      Coly Li <colyli@suse.de>
3107 M:      Kent Overstreet <kent.overstreet@gmail.com>
3108 L:      linux-bcache@vger.kernel.org
3109 S:      Maintained
3110 W:      http://bcache.evilpiepirate.org
3111 C:      irc://irc.oftc.net/bcache
3112 F:      drivers/md/bcache/
3113
3114 BDISP ST MEDIA DRIVER
3115 M:      Fabien Dessenne <fabien.dessenne@st.com>
3116 L:      linux-media@vger.kernel.org
3117 S:      Supported
3118 W:      https://linuxtv.org
3119 T:      git git://linuxtv.org/media_tree.git
3120 F:      drivers/media/platform/sti/bdisp
3121
3122 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3123 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3124 L:      netdev@vger.kernel.org
3125 S:      Maintained
3126 F:      drivers/net/ethernet/ec_bhf.c
3127
3128 BEFS FILE SYSTEM
3129 M:      Luis de Bethencourt <luisbg@kernel.org>
3130 M:      Salah Triki <salah.triki@gmail.com>
3131 S:      Maintained
3132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3133 F:      Documentation/filesystems/befs.rst
3134 F:      fs/befs/
3135
3136 BFQ I/O SCHEDULER
3137 M:      Paolo Valente <paolo.valente@linaro.org>
3138 M:      Jens Axboe <axboe@kernel.dk>
3139 L:      linux-block@vger.kernel.org
3140 S:      Maintained
3141 F:      Documentation/block/bfq-iosched.rst
3142 F:      block/bfq-*
3143
3144 BFS FILE SYSTEM
3145 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3146 S:      Maintained
3147 F:      Documentation/filesystems/bfs.rst
3148 F:      fs/bfs/
3149 F:      include/uapi/linux/bfs_fs.h
3150
3151 BLINKM RGB LED DRIVER
3152 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3153 S:      Maintained
3154 F:      drivers/leds/leds-blinkm.c
3155
3156 BLOCK LAYER
3157 M:      Jens Axboe <axboe@kernel.dk>
3158 L:      linux-block@vger.kernel.org
3159 S:      Maintained
3160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3161 F:      block/
3162 F:      drivers/block/
3163 F:      kernel/trace/blktrace.c
3164 F:      lib/sbitmap.c
3165
3166 BLOCK2MTD DRIVER
3167 M:      Joern Engel <joern@lazybastard.org>
3168 L:      linux-mtd@lists.infradead.org
3169 S:      Maintained
3170 F:      drivers/mtd/devices/block2mtd.c
3171
3172 BLUETOOTH DRIVERS
3173 M:      Marcel Holtmann <marcel@holtmann.org>
3174 M:      Johan Hedberg <johan.hedberg@gmail.com>
3175 L:      linux-bluetooth@vger.kernel.org
3176 S:      Maintained
3177 W:      http://www.bluez.org/
3178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3180 F:      drivers/bluetooth/
3181
3182 BLUETOOTH SUBSYSTEM
3183 M:      Marcel Holtmann <marcel@holtmann.org>
3184 M:      Johan Hedberg <johan.hedberg@gmail.com>
3185 L:      linux-bluetooth@vger.kernel.org
3186 S:      Maintained
3187 W:      http://www.bluez.org/
3188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3190 F:      include/net/bluetooth/
3191 F:      net/bluetooth/
3192
3193 BONDING DRIVER
3194 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3195 M:      Veaceslav Falico <vfalico@gmail.com>
3196 M:      Andy Gospodarek <andy@greyhouse.net>
3197 L:      netdev@vger.kernel.org
3198 S:      Supported
3199 W:      http://sourceforge.net/projects/bonding/
3200 F:      drivers/net/bonding/
3201 F:      include/uapi/linux/if_bonding.h
3202
3203 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3204 M:      Dan Robertson <dan@dlrobertson.com>
3205 L:      linux-iio@vger.kernel.org
3206 S:      Maintained
3207 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3208 F:      drivers/iio/accel/bma400*
3209
3210 BPF (Safe dynamic programs and tools)
3211 M:      Alexei Starovoitov <ast@kernel.org>
3212 M:      Daniel Borkmann <daniel@iogearbox.net>
3213 R:      Martin KaFai Lau <kafai@fb.com>
3214 R:      Song Liu <songliubraving@fb.com>
3215 R:      Yonghong Song <yhs@fb.com>
3216 R:      Andrii Nakryiko <andriin@fb.com>
3217 R:      John Fastabend <john.fastabend@gmail.com>
3218 R:      KP Singh <kpsingh@chromium.org>
3219 L:      netdev@vger.kernel.org
3220 L:      bpf@vger.kernel.org
3221 S:      Supported
3222 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3225 F:      Documentation/bpf/
3226 F:      Documentation/networking/filter.rst
3227 F:      arch/*/net/*
3228 F:      include/linux/bpf*
3229 F:      include/linux/filter.h
3230 F:      include/trace/events/xdp.h
3231 F:      include/uapi/linux/bpf*
3232 F:      include/uapi/linux/filter.h
3233 F:      kernel/bpf/
3234 F:      kernel/trace/bpf_trace.c
3235 F:      lib/test_bpf.c
3236 F:      net/bpf/
3237 F:      net/core/filter.c
3238 F:      net/sched/act_bpf.c
3239 F:      net/sched/cls_bpf.c
3240 F:      samples/bpf/
3241 F:      tools/bpf/
3242 F:      tools/lib/bpf/
3243 F:      tools/testing/selftests/bpf/
3244 N:      bpf
3245 K:      bpf
3246
3247 BPF JIT for ARM
3248 M:      Shubham Bansal <illusionist.neo@gmail.com>
3249 L:      netdev@vger.kernel.org
3250 L:      bpf@vger.kernel.org
3251 S:      Maintained
3252 F:      arch/arm/net/
3253
3254 BPF JIT for ARM64
3255 M:      Daniel Borkmann <daniel@iogearbox.net>
3256 M:      Alexei Starovoitov <ast@kernel.org>
3257 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3258 L:      netdev@vger.kernel.org
3259 L:      bpf@vger.kernel.org
3260 S:      Supported
3261 F:      arch/arm64/net/
3262
3263 BPF JIT for MIPS (32-BIT AND 64-BIT)
3264 M:      Paul Burton <paulburton@kernel.org>
3265 L:      netdev@vger.kernel.org
3266 L:      bpf@vger.kernel.org
3267 S:      Maintained
3268 F:      arch/mips/net/
3269
3270 BPF JIT for NFP NICs
3271 M:      Jakub Kicinski <kuba@kernel.org>
3272 L:      netdev@vger.kernel.org
3273 L:      bpf@vger.kernel.org
3274 S:      Supported
3275 F:      drivers/net/ethernet/netronome/nfp/bpf/
3276
3277 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3278 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3279 M:      Sandipan Das <sandipan@linux.ibm.com>
3280 L:      netdev@vger.kernel.org
3281 L:      bpf@vger.kernel.org
3282 S:      Maintained
3283 F:      arch/powerpc/net/
3284
3285 BPF JIT for RISC-V (32-bit)
3286 M:      Luke Nelson <luke.r.nels@gmail.com>
3287 M:      Xi Wang <xi.wang@gmail.com>
3288 L:      netdev@vger.kernel.org
3289 L:      bpf@vger.kernel.org
3290 S:      Maintained
3291 F:      arch/riscv/net/
3292 X:      arch/riscv/net/bpf_jit_comp64.c
3293
3294 BPF JIT for RISC-V (64-bit)
3295 M:      Björn Töpel <bjorn.topel@gmail.com>
3296 L:      netdev@vger.kernel.org
3297 L:      bpf@vger.kernel.org
3298 S:      Maintained
3299 F:      arch/riscv/net/
3300 X:      arch/riscv/net/bpf_jit_comp32.c
3301
3302 BPF JIT for S390
3303 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3304 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
3305 M:      Vasily Gorbik <gor@linux.ibm.com>
3306 L:      netdev@vger.kernel.org
3307 L:      bpf@vger.kernel.org
3308 S:      Maintained
3309 F:      arch/s390/net/
3310 X:      arch/s390/net/pnet.c
3311
3312 BPF JIT for SPARC (32-BIT AND 64-BIT)
3313 M:      David S. Miller <davem@davemloft.net>
3314 L:      netdev@vger.kernel.org
3315 L:      bpf@vger.kernel.org
3316 S:      Maintained
3317 F:      arch/sparc/net/
3318
3319 BPF JIT for X86 32-BIT
3320 M:      Wang YanQing <udknight@gmail.com>
3321 L:      netdev@vger.kernel.org
3322 L:      bpf@vger.kernel.org
3323 S:      Maintained
3324 F:      arch/x86/net/bpf_jit_comp32.c
3325
3326 BPF JIT for X86 64-BIT
3327 M:      Alexei Starovoitov <ast@kernel.org>
3328 M:      Daniel Borkmann <daniel@iogearbox.net>
3329 L:      netdev@vger.kernel.org
3330 L:      bpf@vger.kernel.org
3331 S:      Supported
3332 F:      arch/x86/net/
3333 X:      arch/x86/net/bpf_jit_comp32.c
3334
3335 BROADCOM B44 10/100 ETHERNET DRIVER
3336 M:      Michael Chan <michael.chan@broadcom.com>
3337 L:      netdev@vger.kernel.org
3338 S:      Supported
3339 F:      drivers/net/ethernet/broadcom/b44.*
3340
3341 BROADCOM B53 ETHERNET SWITCH DRIVER
3342 M:      Florian Fainelli <f.fainelli@gmail.com>
3343 L:      netdev@vger.kernel.org
3344 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3345 S:      Supported
3346 F:      drivers/net/dsa/b53/*
3347 F:      include/linux/platform_data/b53.h
3348
3349 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3350 M:      Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
3351 L:      bcm-kernel-feedback-list@broadcom.com
3352 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3353 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3354 S:      Maintained
3355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3356 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3357 F:      drivers/pci/controller/pcie-brcmstb.c
3358 F:      drivers/staging/vc04_services
3359 N:      bcm2711
3360 N:      bcm2835
3361
3362 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3363 M:      Florian Fainelli <f.fainelli@gmail.com>
3364 M:      Ray Jui <rjui@broadcom.com>
3365 M:      Scott Branden <sbranden@broadcom.com>
3366 M:      bcm-kernel-feedback-list@broadcom.com
3367 S:      Maintained
3368 T:      git git://github.com/broadcom/mach-bcm
3369 F:      arch/arm/mach-bcm/
3370 N:      bcm281*
3371 N:      bcm113*
3372 N:      bcm216*
3373 N:      kona
3374
3375 BROADCOM BCM47XX MIPS ARCHITECTURE
3376 M:      Hauke Mehrtens <hauke@hauke-m.de>
3377 M:      Rafał Miłecki <zajec5@gmail.com>
3378 L:      linux-mips@vger.kernel.org
3379 S:      Maintained
3380 F:      Documentation/devicetree/bindings/mips/brcm/
3381 F:      arch/mips/bcm47xx/*
3382 F:      arch/mips/include/asm/mach-bcm47xx/*
3383
3384 BROADCOM BCM5301X ARM ARCHITECTURE
3385 M:      Hauke Mehrtens <hauke@hauke-m.de>
3386 M:      Rafał Miłecki <zajec5@gmail.com>
3387 M:      bcm-kernel-feedback-list@broadcom.com
3388 L:      linux-arm-kernel@lists.infradead.org
3389 S:      Maintained
3390 F:      arch/arm/boot/dts/bcm470*
3391 F:      arch/arm/boot/dts/bcm5301x*.dtsi
3392 F:      arch/arm/boot/dts/bcm953012*
3393 F:      arch/arm/mach-bcm/bcm_5301x.c
3394
3395 BROADCOM BCM53573 ARM ARCHITECTURE
3396 M:      Rafał Miłecki <rafal@milecki.pl>
3397 L:      bcm-kernel-feedback-list@broadcom.com
3398 L:      linux-arm-kernel@lists.infradead.org
3399 S:      Maintained
3400 F:      arch/arm/boot/dts/bcm47189*
3401 F:      arch/arm/boot/dts/bcm53573*
3402
3403 BROADCOM BCM63XX ARM ARCHITECTURE
3404 M:      Florian Fainelli <f.fainelli@gmail.com>
3405 M:      bcm-kernel-feedback-list@broadcom.com
3406 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3407 S:      Maintained
3408 T:      git git://github.com/broadcom/stblinux.git
3409 N:      bcm63xx
3410
3411 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3412 M:      Kevin Cernekee <cernekee@gmail.com>
3413 L:      linux-usb@vger.kernel.org
3414 S:      Maintained
3415 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3416
3417 BROADCOM BCM7XXX ARM ARCHITECTURE
3418 M:      Florian Fainelli <f.fainelli@gmail.com>
3419 M:      bcm-kernel-feedback-list@broadcom.com
3420 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3421 S:      Maintained
3422 T:      git git://github.com/broadcom/stblinux.git
3423 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3424 F:      arch/arm/boot/dts/bcm7*.dts*
3425 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3426 F:      arch/arm/mach-bcm/*brcmstb*
3427 F:      arch/arm/mm/cache-b15-rac.c
3428 F:      drivers/bus/brcmstb_gisb.c
3429 F:      drivers/pci/controller/pcie-brcmstb.c
3430 N:      brcmstb
3431
3432 BROADCOM BMIPS CPUFREQ DRIVER
3433 M:      Markus Mayer <mmayer@broadcom.com>
3434 M:      bcm-kernel-feedback-list@broadcom.com
3435 L:      linux-pm@vger.kernel.org
3436 S:      Maintained
3437 F:      drivers/cpufreq/bmips-cpufreq.c
3438
3439 BROADCOM BMIPS MIPS ARCHITECTURE
3440 M:      Florian Fainelli <f.fainelli@gmail.com>
3441 L:      bcm-kernel-feedback-list@broadcom.com
3442 L:      linux-mips@vger.kernel.org
3443 S:      Maintained
3444 T:      git git://github.com/broadcom/stblinux.git
3445 F:      arch/mips/bmips/*
3446 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3447 F:      arch/mips/include/asm/mach-bmips/*
3448 F:      arch/mips/kernel/*bmips*
3449 F:      drivers/irqchip/irq-bcm63*
3450 F:      drivers/irqchip/irq-bcm7*
3451 F:      drivers/irqchip/irq-brcmstb*
3452 F:      include/linux/bcm963xx_nvram.h
3453 F:      include/linux/bcm963xx_tag.h
3454
3455 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3456 M:      Rasesh Mody <rmody@marvell.com>
3457 M:      GR-Linux-NIC-Dev@marvell.com
3458 L:      netdev@vger.kernel.org
3459 S:      Supported
3460 F:      drivers/net/ethernet/broadcom/bnx2.*
3461 F:      drivers/net/ethernet/broadcom/bnx2_*
3462
3463 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3464 M:      QLogic-Storage-Upstream@qlogic.com
3465 L:      linux-scsi@vger.kernel.org
3466 S:      Supported
3467 F:      drivers/scsi/bnx2fc/
3468
3469 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3470 M:      QLogic-Storage-Upstream@qlogic.com
3471 L:      linux-scsi@vger.kernel.org
3472 S:      Supported
3473 F:      drivers/scsi/bnx2i/
3474
3475 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3476 M:      Ariel Elior <aelior@marvell.com>
3477 M:      Sudarsana Kalluru <skalluru@marvell.com>
3478 M:      GR-everest-linux-l2@marvell.com
3479 L:      netdev@vger.kernel.org
3480 S:      Supported
3481 F:      drivers/net/ethernet/broadcom/bnx2x/
3482
3483 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3484 M:      Michael Chan <michael.chan@broadcom.com>
3485 L:      netdev@vger.kernel.org
3486 S:      Supported
3487 F:      drivers/net/ethernet/broadcom/bnxt/
3488
3489 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3490 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
3491 M:      Franky Lin <franky.lin@broadcom.com>
3492 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3493 M:      Chi-Hsien Lin <chi-hsien.lin@cypress.com>
3494 M:      Wright Feng <wright.feng@cypress.com>
3495 L:      linux-wireless@vger.kernel.org
3496 L:      brcm80211-dev-list.pdl@broadcom.com
3497 L:      brcm80211-dev-list@cypress.com
3498 S:      Supported
3499 F:      drivers/net/wireless/broadcom/brcm80211/
3500
3501 BROADCOM BRCMSTB GPIO DRIVER
3502 M:      Gregory Fong <gregory.0xf0@gmail.com>
3503 L:      bcm-kernel-feedback-list@broadcom.com
3504 S:      Supported
3505 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3506 F:      drivers/gpio/gpio-brcmstb.c
3507
3508 BROADCOM BRCMSTB I2C DRIVER
3509 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3510 L:      linux-i2c@vger.kernel.org
3511 L:      bcm-kernel-feedback-list@broadcom.com
3512 S:      Supported
3513 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3514 F:      drivers/i2c/busses/i2c-brcmstb.c
3515
3516 BROADCOM BRCMSTB USB EHCI DRIVER
3517 M:      Al Cooper <alcooperx@gmail.com>
3518 L:      linux-usb@vger.kernel.org
3519 L:      bcm-kernel-feedback-list@broadcom.com
3520 S:      Maintained
3521 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3522 F:      drivers/usb/host/ehci-brcm.*
3523
3524 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3525 M:      Al Cooper <alcooperx@gmail.com>
3526 L:      linux-kernel@vger.kernel.org
3527 L:      bcm-kernel-feedback-list@broadcom.com
3528 S:      Maintained
3529 F:      drivers/phy/broadcom/phy-brcm-usb*
3530
3531 BROADCOM GENET ETHERNET DRIVER
3532 M:      Doug Berger <opendmb@gmail.com>
3533 M:      Florian Fainelli <f.fainelli@gmail.com>
3534 L:      bcm-kernel-feedback-list@broadcom.com
3535 L:      netdev@vger.kernel.org
3536 S:      Supported
3537 F:      drivers/net/ethernet/broadcom/genet/
3538
3539 BROADCOM IPROC ARM ARCHITECTURE
3540 M:      Ray Jui <rjui@broadcom.com>
3541 M:      Scott Branden <sbranden@broadcom.com>
3542 M:      bcm-kernel-feedback-list@broadcom.com
3543 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3544 S:      Maintained
3545 T:      git git://github.com/broadcom/cygnus-linux.git
3546 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3547 F:      arch/arm64/boot/dts/broadcom/stingray/*
3548 F:      drivers/clk/bcm/clk-ns*
3549 F:      drivers/clk/bcm/clk-sr*
3550 F:      drivers/pinctrl/bcm/pinctrl-ns*
3551 F:      include/dt-bindings/clock/bcm-sr*
3552 N:      iproc
3553 N:      cygnus
3554 N:      bcm[-_]nsp
3555 N:      bcm9113*
3556 N:      bcm9583*
3557 N:      bcm9585*
3558 N:      bcm9586*
3559 N:      bcm988312
3560 N:      bcm113*
3561 N:      bcm583*
3562 N:      bcm585*
3563 N:      bcm586*
3564 N:      bcm88312
3565 N:      hr2
3566 N:      stingray
3567
3568 BROADCOM KONA GPIO DRIVER
3569 M:      Ray Jui <rjui@broadcom.com>
3570 L:      bcm-kernel-feedback-list@broadcom.com
3571 S:      Supported
3572 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3573 F:      drivers/gpio/gpio-bcm-kona.c
3574
3575 BROADCOM NETXTREME-E ROCE DRIVER
3576 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3577 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3578 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3579 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3580 L:      linux-rdma@vger.kernel.org
3581 S:      Supported
3582 W:      http://www.broadcom.com
3583 F:      drivers/infiniband/hw/bnxt_re/
3584 F:      include/uapi/rdma/bnxt_re-abi.h
3585
3586 BROADCOM NVRAM DRIVER
3587 M:      Rafał Miłecki <zajec5@gmail.com>
3588 L:      linux-mips@vger.kernel.org
3589 S:      Maintained
3590 F:      drivers/firmware/broadcom/*
3591
3592 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3593 M:      Rafał Miłecki <zajec5@gmail.com>
3594 L:      linux-wireless@vger.kernel.org
3595 S:      Maintained
3596 F:      drivers/bcma/
3597 F:      include/linux/bcma/
3598
3599 BROADCOM SPI DRIVER
3600 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3601 M:      bcm-kernel-feedback-list@broadcom.com
3602 S:      Maintained
3603 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3604 F:      drivers/spi/spi-bcm-qspi.*
3605 F:      drivers/spi/spi-brcmstb-qspi.c
3606 F:      drivers/spi/spi-iproc-qspi.c
3607
3608 BROADCOM STB AVS CPUFREQ DRIVER
3609 M:      Markus Mayer <mmayer@broadcom.com>
3610 M:      bcm-kernel-feedback-list@broadcom.com
3611 L:      linux-pm@vger.kernel.org
3612 S:      Maintained
3613 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3614 F:      drivers/cpufreq/brcmstb*
3615
3616 BROADCOM STB AVS TMON DRIVER
3617 M:      Markus Mayer <mmayer@broadcom.com>
3618 M:      bcm-kernel-feedback-list@broadcom.com
3619 L:      linux-pm@vger.kernel.org
3620 S:      Maintained
3621 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3622 F:      drivers/thermal/broadcom/brcmstb*
3623
3624 BROADCOM STB DPFE DRIVER
3625 M:      Markus Mayer <mmayer@broadcom.com>
3626 M:      bcm-kernel-feedback-list@broadcom.com
3627 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3628 S:      Maintained
3629 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3630 F:      drivers/memory/brcmstb_dpfe.c
3631
3632 BROADCOM STB NAND FLASH DRIVER
3633 M:      Brian Norris <computersforpeace@gmail.com>
3634 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3635 L:      linux-mtd@lists.infradead.org
3636 L:      bcm-kernel-feedback-list@broadcom.com
3637 S:      Maintained
3638 F:      drivers/mtd/nand/raw/brcmnand/
3639
3640 BROADCOM SYSTEMPORT ETHERNET DRIVER
3641 M:      Florian Fainelli <f.fainelli@gmail.com>
3642 L:      bcm-kernel-feedback-list@broadcom.com
3643 L:      netdev@vger.kernel.org
3644 S:      Supported
3645 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3646
3647 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3648 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3649 M:      Prashant Sreedharan <prashant@broadcom.com>
3650 M:      Michael Chan <mchan@broadcom.com>
3651 L:      netdev@vger.kernel.org
3652 S:      Supported
3653 F:      drivers/net/ethernet/broadcom/tg3.*
3654
3655 BROCADE BFA FC SCSI DRIVER
3656 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3657 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3658 L:      linux-scsi@vger.kernel.org
3659 S:      Supported
3660 F:      drivers/scsi/bfa/
3661
3662 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3663 M:      Rasesh Mody <rmody@marvell.com>
3664 M:      Sudarsana Kalluru <skalluru@marvell.com>
3665 M:      GR-Linux-NIC-Dev@marvell.com
3666 L:      netdev@vger.kernel.org
3667 S:      Supported
3668 F:      drivers/net/ethernet/brocade/bna/
3669
3670 BSG (block layer generic sg v4 driver)
3671 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3672 L:      linux-scsi@vger.kernel.org
3673 S:      Supported
3674 F:      block/bsg.c
3675 F:      include/linux/bsg.h
3676 F:      include/uapi/linux/bsg.h
3677
3678 BT87X AUDIO DRIVER
3679 M:      Clemens Ladisch <clemens@ladisch.de>
3680 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3681 S:      Maintained
3682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3683 F:      Documentation/sound/cards/bt87x.rst
3684 F:      sound/pci/bt87x.c
3685
3686 BT8XXGPIO DRIVER
3687 M:      Michael Buesch <m@bues.ch>
3688 S:      Maintained
3689 W:      http://bu3sch.de/btgpio.php
3690 F:      drivers/gpio/gpio-bt8xx.c
3691
3692 BTRFS FILE SYSTEM
3693 M:      Chris Mason <clm@fb.com>
3694 M:      Josef Bacik <josef@toxicpanda.com>
3695 M:      David Sterba <dsterba@suse.com>
3696 L:      linux-btrfs@vger.kernel.org
3697 S:      Maintained
3698 W:      http://btrfs.wiki.kernel.org/
3699 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3701 F:      Documentation/filesystems/btrfs.rst
3702 F:      fs/btrfs/
3703 F:      include/linux/btrfs*
3704 F:      include/uapi/linux/btrfs*
3705
3706 BTTV VIDEO4LINUX DRIVER
3707 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3708 L:      linux-media@vger.kernel.org
3709 S:      Odd fixes
3710 W:      https://linuxtv.org
3711 T:      git git://linuxtv.org/media_tree.git
3712 F:      Documentation/driver-api/media/drivers/bttv*
3713 F:      drivers/media/pci/bt8xx/bttv*
3714
3715 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3716 M:      Chanwoo Choi <cw00.choi@samsung.com>
3717 L:      linux-pm@vger.kernel.org
3718 L:      linux-samsung-soc@vger.kernel.org
3719 S:      Maintained
3720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3721 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3722 F:      drivers/devfreq/exynos-bus.c
3723
3724 BUSLOGIC SCSI DRIVER
3725 M:      Khalid Aziz <khalid@gonehiking.org>
3726 L:      linux-scsi@vger.kernel.org
3727 S:      Maintained
3728 F:      drivers/scsi/BusLogic.*
3729 F:      drivers/scsi/FlashPoint.*
3730
3731 C-MEDIA CMI8788 DRIVER
3732 M:      Clemens Ladisch <clemens@ladisch.de>
3733 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3734 S:      Maintained
3735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3736 F:      sound/pci/oxygen/
3737
3738 C-SKY ARCHITECTURE
3739 M:      Guo Ren <guoren@kernel.org>
3740 L:      linux-csky@vger.kernel.org
3741 S:      Supported
3742 T:      git https://github.com/c-sky/csky-linux.git
3743 F:      Documentation/devicetree/bindings/csky/
3744 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3745 F:      Documentation/devicetree/bindings/timer/csky,*
3746 F:      arch/csky/
3747 F:      drivers/clocksource/timer-gx6605s.c
3748 F:      drivers/clocksource/timer-mp-csky.c
3749 F:      drivers/irqchip/irq-csky-*
3750 N:      csky
3751 K:      csky
3752
3753 C6X ARCHITECTURE
3754 M:      Mark Salter <msalter@redhat.com>
3755 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3756 L:      linux-c6x-dev@linux-c6x.org
3757 S:      Maintained
3758 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3759 F:      arch/c6x/
3760
3761 CA8210 IEEE-802.15.4 RADIO DRIVER
3762 M:      Harry Morris <h.morris@cascoda.com>
3763 L:      linux-wpan@vger.kernel.org
3764 S:      Maintained
3765 W:      https://github.com/Cascoda/ca8210-linux.git
3766 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3767 F:      drivers/net/ieee802154/ca8210.c
3768
3769 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3770 M:      David Howells <dhowells@redhat.com>
3771 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3772 S:      Supported
3773 F:      Documentation/filesystems/caching/cachefiles.rst
3774 F:      fs/cachefiles/
3775
3776 CADENCE MIPI-CSI2 BRIDGES
3777 M:      Maxime Ripard <mripard@kernel.org>
3778 L:      linux-media@vger.kernel.org
3779 S:      Maintained
3780 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3781 F:      drivers/media/platform/cadence/cdns-csi2*
3782
3783 CADENCE NAND DRIVER
3784 L:      linux-mtd@lists.infradead.org
3785 S:      Orphan
3786 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3787 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3788
3789 CADET FM/AM RADIO RECEIVER DRIVER
3790 M:      Hans Verkuil <hverkuil@xs4all.nl>
3791 L:      linux-media@vger.kernel.org
3792 S:      Maintained
3793 W:      https://linuxtv.org
3794 T:      git git://linuxtv.org/media_tree.git
3795 F:      drivers/media/radio/radio-cadet*
3796
3797 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3798 M:      Jonathan Corbet <corbet@lwn.net>
3799 L:      linux-media@vger.kernel.org
3800 S:      Maintained
3801 T:      git git://linuxtv.org/media_tree.git
3802 F:      Documentation/admin-guide/media/cafe_ccic*
3803 F:      drivers/media/platform/marvell-ccic/
3804
3805 CAIF NETWORK LAYER
3806 L:      netdev@vger.kernel.org
3807 S:      Orphan
3808 F:      Documentation/networking/caif/
3809 F:      drivers/net/caif/
3810 F:      include/net/caif/
3811 F:      include/uapi/linux/caif/
3812 F:      net/caif/
3813
3814 CAKE QDISC
3815 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3816 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3817 S:      Maintained
3818 F:      net/sched/sch_cake.c
3819
3820 CAN NETWORK DRIVERS
3821 M:      Wolfgang Grandegger <wg@grandegger.com>
3822 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3823 L:      linux-can@vger.kernel.org
3824 S:      Maintained
3825 W:      https://github.com/linux-can
3826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3828 F:      Documentation/devicetree/bindings/net/can/
3829 F:      drivers/net/can/
3830 F:      include/linux/can/dev.h
3831 F:      include/linux/can/led.h
3832 F:      include/linux/can/platform/
3833 F:      include/linux/can/rx-offload.h
3834 F:      include/uapi/linux/can/error.h
3835 F:      include/uapi/linux/can/netlink.h
3836 F:      include/uapi/linux/can/vxcan.h
3837
3838 CAN NETWORK LAYER
3839 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3840 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3841 L:      linux-can@vger.kernel.org
3842 S:      Maintained
3843 W:      https://github.com/linux-can
3844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3846 F:      Documentation/networking/can.rst
3847 F:      include/linux/can/core.h
3848 F:      include/linux/can/skb.h
3849 F:      include/net/netns/can.h
3850 F:      include/uapi/linux/can.h
3851 F:      include/uapi/linux/can/bcm.h
3852 F:      include/uapi/linux/can/gw.h
3853 F:      include/uapi/linux/can/raw.h
3854 F:      net/can/
3855
3856 CAN-J1939 NETWORK LAYER
3857 M:      Robin van der Gracht <robin@protonic.nl>
3858 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3859 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
3860 L:      linux-can@vger.kernel.org
3861 S:      Maintained
3862 F:      Documentation/networking/j1939.rst
3863 F:      include/uapi/linux/can/j1939.h
3864 F:      net/can/j1939/
3865
3866 CAPABILITIES
3867 M:      Serge Hallyn <serge@hallyn.com>
3868 L:      linux-security-module@vger.kernel.org
3869 S:      Supported
3870 F:      include/linux/capability.h
3871 F:      include/uapi/linux/capability.h
3872 F:      kernel/capability.c
3873 F:      security/commoncap.c
3874
3875 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3876 M:      Kevin Tsai <ktsai@capellamicro.com>
3877 S:      Maintained
3878 F:      drivers/iio/light/cm*
3879
3880 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3881 M:      Christian Lamparter <chunkeey@googlemail.com>
3882 L:      linux-wireless@vger.kernel.org
3883 S:      Maintained
3884 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
3885 F:      drivers/net/wireless/ath/carl9170/
3886
3887 CAVIUM I2C DRIVER
3888 M:      Robert Richter <rrichter@marvell.com>
3889 S:      Supported
3890 W:      http://www.marvell.com
3891 F:      drivers/i2c/busses/i2c-octeon*
3892 F:      drivers/i2c/busses/i2c-thunderx*
3893
3894 CAVIUM LIQUIDIO NETWORK DRIVER
3895 M:      Derek Chickles <dchickles@marvell.com>
3896 M:      Satanand Burla <sburla@marvell.com>
3897 M:      Felix Manlunas <fmanlunas@marvell.com>
3898 L:      netdev@vger.kernel.org
3899 S:      Supported
3900 W:      http://www.marvell.com
3901 F:      drivers/net/ethernet/cavium/liquidio/
3902
3903 CAVIUM MMC DRIVER
3904 M:      Robert Richter <rrichter@marvell.com>
3905 S:      Supported
3906 W:      http://www.marvell.com
3907 F:      drivers/mmc/host/cavium*
3908
3909 CAVIUM OCTEON-TX CRYPTO DRIVER
3910 M:      George Cherian <gcherian@marvell.com>
3911 L:      linux-crypto@vger.kernel.org
3912 S:      Supported
3913 W:      http://www.marvell.com
3914 F:      drivers/crypto/cavium/cpt/
3915
3916 CAVIUM THUNDERX2 ARM64 SOC
3917 M:      Robert Richter <rrichter@marvell.com>
3918 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3919 S:      Maintained
3920 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3921 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3922
3923 CC2520 IEEE-802.15.4 RADIO DRIVER
3924 M:      Varka Bhadram <varkabhadram@gmail.com>
3925 L:      linux-wpan@vger.kernel.org
3926 S:      Maintained
3927 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3928 F:      drivers/net/ieee802154/cc2520.c
3929 F:      include/linux/spi/cc2520.h
3930
3931 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3932 M:      Gilad Ben-Yossef <gilad@benyossef.com>
3933 L:      linux-crypto@vger.kernel.org
3934 S:      Supported
3935 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3936 F:      drivers/crypto/ccree/
3937
3938 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
3939 M:      Hadar Gat <hadar.gat@arm.com>
3940 L:      linux-crypto@vger.kernel.org
3941 S:      Supported
3942 F:      drivers/char/hw_random/cctrng.c
3943 F:      drivers/char/hw_random/cctrng.h
3944 F:      Documentation/devicetree/bindings/rng/arm-cctrng.txt
3945 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3946
3947 CEC FRAMEWORK
3948 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3949 L:      linux-media@vger.kernel.org
3950 S:      Supported
3951 W:      http://linuxtv.org
3952 T:      git git://linuxtv.org/media_tree.git
3953 F:      Documentation/ABI/testing/debugfs-cec-error-inj
3954 F:      Documentation/devicetree/bindings/media/cec.txt
3955 F:      Documentation/driver-api/media/cec-core.rst
3956 F:      Documentation/userspace-api/media/cec
3957 F:      drivers/media/cec/
3958 F:      drivers/media/rc/keymaps/rc-cec.c
3959 F:      include/media/cec-notifier.h
3960 F:      include/media/cec.h
3961 F:      include/uapi/linux/cec-funcs.h
3962 F:      include/uapi/linux/cec.h
3963
3964 CEC GPIO DRIVER
3965 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3966 L:      linux-media@vger.kernel.org
3967 S:      Supported
3968 W:      http://linuxtv.org
3969 T:      git git://linuxtv.org/media_tree.git
3970 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3971 F:      drivers/media/platform/cec-gpio/
3972
3973 CELL BROADBAND ENGINE ARCHITECTURE
3974 M:      Arnd Bergmann <arnd@arndb.de>
3975 L:      linuxppc-dev@lists.ozlabs.org
3976 S:      Supported
3977 W:      http://www.ibm.com/developerworks/power/cell/
3978 F:      arch/powerpc/include/asm/cell*.h
3979 F:      arch/powerpc/include/asm/spu*.h
3980 F:      arch/powerpc/include/uapi/asm/spu*.h
3981 F:      arch/powerpc/oprofile/*cell*
3982 F:      arch/powerpc/platforms/cell/
3983
3984 CELLWISE CW2015 BATTERY DRIVER
3985 M:      Tobias Schrammm <t.schramm@manjaro.org>
3986 S:      Maintained
3987 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
3988 F:      drivers/power/supply/cw2015_battery.c
3989
3990 CEPH COMMON CODE (LIBCEPH)
3991 M:      Ilya Dryomov <idryomov@gmail.com>
3992 M:      Jeff Layton <jlayton@kernel.org>
3993 L:      ceph-devel@vger.kernel.org
3994 S:      Supported
3995 W:      http://ceph.com/
3996 T:      git git://github.com/ceph/ceph-client.git
3997 F:      include/linux/ceph/
3998 F:      include/linux/crush/
3999 F:      net/ceph/
4000
4001 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4002 M:      Jeff Layton <jlayton@kernel.org>
4003 M:      Ilya Dryomov <idryomov@gmail.com>
4004 L:      ceph-devel@vger.kernel.org
4005 S:      Supported
4006 W:      http://ceph.com/
4007 T:      git git://github.com/ceph/ceph-client.git
4008 F:      Documentation/filesystems/ceph.rst
4009 F:      fs/ceph/
4010
4011 CERTIFICATE HANDLING
4012 M:      David Howells <dhowells@redhat.com>
4013 M:      David Woodhouse <dwmw2@infradead.org>
4014 L:      keyrings@vger.kernel.org
4015 S:      Maintained
4016 F:      Documentation/admin-guide/module-signing.rst
4017 F:      certs/
4018 F:      scripts/extract-cert.c
4019 F:      scripts/sign-file.c
4020
4021 CFAG12864B LCD DRIVER
4022 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4023 S:      Maintained
4024 F:      drivers/auxdisplay/cfag12864b.c
4025 F:      include/linux/cfag12864b.h
4026
4027 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4028 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4029 S:      Maintained
4030 F:      drivers/auxdisplay/cfag12864bfb.c
4031 F:      include/linux/cfag12864b.h
4032
4033 CHAR and MISC DRIVERS
4034 M:      Arnd Bergmann <arnd@arndb.de>
4035 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4036 S:      Supported
4037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4038 F:      drivers/char/
4039 F:      drivers/misc/
4040 F:      include/linux/miscdevice.h
4041
4042 CHECKPATCH
4043 M:      Andy Whitcroft <apw@canonical.com>
4044 M:      Joe Perches <joe@perches.com>
4045 S:      Maintained
4046 F:      scripts/checkpatch.pl
4047
4048 CHINESE DOCUMENTATION
4049 M:      Harry Wei <harryxiyou@gmail.com>
4050 M:      Alex Shi <alex.shi@linux.alibaba.com>
4051 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
4052 S:      Maintained
4053 F:      Documentation/translations/zh_CN/
4054
4055 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4056 M:      Peter Chen <Peter.Chen@nxp.com>
4057 L:      linux-usb@vger.kernel.org
4058 S:      Maintained
4059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4060 F:      drivers/usb/chipidea/
4061
4062 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4063 M:      Hans de Goede <hdegoede@redhat.com>
4064 L:      linux-input@vger.kernel.org
4065 S:      Maintained
4066 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4067 F:      drivers/input/touchscreen/chipone_icn8318.c
4068
4069 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4070 M:      Hans de Goede <hdegoede@redhat.com>
4071 L:      linux-input@vger.kernel.org
4072 S:      Maintained
4073 F:      drivers/input/touchscreen/chipone_icn8505.c
4074
4075 CHROME HARDWARE PLATFORM SUPPORT
4076 M:      Benson Leung <bleung@chromium.org>
4077 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4078 S:      Maintained
4079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4080 F:      drivers/platform/chrome/
4081
4082 CHROMEOS EC CODEC DRIVER
4083 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4084 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4085 R:      Guenter Roeck <groeck@chromium.org>
4086 S:      Maintained
4087 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4088 F:      sound/soc/codecs/cros_ec_codec.*
4089
4090 CHROMEOS EC SUBDRIVERS
4091 M:      Benson Leung <bleung@chromium.org>
4092 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4093 R:      Guenter Roeck <groeck@chromium.org>
4094 S:      Maintained
4095 F:      drivers/power/supply/cros_usbpd-charger.c
4096 N:      cros_ec
4097 N:      cros-ec
4098
4099 CIRRUS LOGIC AUDIO CODEC DRIVERS
4100 M:      James Schulman <james.schulman@cirrus.com>
4101 M:      David Rhodes <david.rhodes@cirrus.com>
4102 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4103 S:      Maintained
4104 F:      sound/soc/codecs/cs*
4105
4106 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4107 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4108 L:      netdev@vger.kernel.org
4109 S:      Maintained
4110 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4111
4112 CIRRUS LOGIC LOCHNAGAR DRIVER
4113 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4114 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4115 L:      patches@opensource.cirrus.com
4116 S:      Supported
4117 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4118 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4119 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4120 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4121 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4122 F:      Documentation/hwmon/lochnagar.rst
4123 F:      drivers/clk/clk-lochnagar.c
4124 F:      drivers/hwmon/lochnagar-hwmon.c
4125 F:      drivers/mfd/lochnagar-i2c.c
4126 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4127 F:      drivers/regulator/lochnagar-regulator.c
4128 F:      include/dt-bindings/clk/lochnagar.h
4129 F:      include/dt-bindings/pinctrl/lochnagar.h
4130 F:      include/linux/mfd/lochnagar*
4131 F:      sound/soc/codecs/lochnagar-sc.c
4132
4133 CIRRUS LOGIC MADERA CODEC DRIVERS
4134 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4135 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4136 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4137 L:      patches@opensource.cirrus.com
4138 S:      Supported
4139 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4140 T:      git https://github.com/CirrusLogic/linux-drivers.git
4141 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4142 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4143 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4144 F:      drivers/gpio/gpio-madera*
4145 F:      drivers/irqchip/irq-madera*
4146 F:      drivers/mfd/cs47l*
4147 F:      drivers/mfd/madera*
4148 F:      drivers/pinctrl/cirrus/*
4149 F:      include/dt-bindings/sound/madera*
4150 F:      include/linux/irqchip/irq-madera*
4151 F:      include/linux/mfd/madera/*
4152 F:      include/sound/madera*
4153 F:      sound/soc/codecs/cs47l*
4154 F:      sound/soc/codecs/madera*
4155
4156 CISCO FCOE HBA DRIVER
4157 M:      Satish Kharat <satishkh@cisco.com>
4158 M:      Sesidhar Baddela <sebaddel@cisco.com>
4159 M:      Karan Tilak Kumar <kartilak@cisco.com>
4160 L:      linux-scsi@vger.kernel.org
4161 S:      Supported
4162 F:      drivers/scsi/fnic/
4163
4164 CISCO SCSI HBA DRIVER
4165 M:      Karan Tilak Kumar <kartilak@cisco.com>
4166 M:      Sesidhar Baddela <sebaddel@cisco.com>
4167 L:      linux-scsi@vger.kernel.org
4168 S:      Supported
4169 F:      drivers/scsi/snic/
4170
4171 CISCO VIC ETHERNET NIC DRIVER
4172 M:      Christian Benvenuti <benve@cisco.com>
4173 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4174 S:      Supported
4175 F:      drivers/net/ethernet/cisco/enic/
4176
4177 CISCO VIC LOW LATENCY NIC DRIVER
4178 M:      Christian Benvenuti <benve@cisco.com>
4179 M:      Nelson Escobar <neescoba@cisco.com>
4180 M:      Parvi Kaustubhi <pkaustub@cisco.com>
4181 S:      Supported
4182 F:      drivers/infiniband/hw/usnic/
4183
4184 CLANG-FORMAT FILE
4185 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4186 S:      Maintained
4187 F:      .clang-format
4188
4189 CLANG/LLVM BUILD SUPPORT
4190 L:      clang-built-linux@googlegroups.com
4191 S:      Supported
4192 W:      https://clangbuiltlinux.github.io/
4193 B:      https://github.com/ClangBuiltLinux/linux/issues
4194 C:      irc://chat.freenode.net/clangbuiltlinux
4195 F:      Documentation/kbuild/llvm.rst
4196 K:      \b(?i:clang|llvm)\b
4197
4198 CLEANCACHE API
4199 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4200 L:      linux-kernel@vger.kernel.org
4201 S:      Maintained
4202 F:      include/linux/cleancache.h
4203 F:      mm/cleancache.c
4204
4205 CLK API
4206 M:      Russell King <linux@armlinux.org.uk>
4207 L:      linux-clk@vger.kernel.org
4208 S:      Maintained
4209 F:      include/linux/clk.h
4210
4211 CLOCKSOURCE, CLOCKEVENT DRIVERS
4212 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4213 M:      Thomas Gleixner <tglx@linutronix.de>
4214 L:      linux-kernel@vger.kernel.org
4215 S:      Supported
4216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4217 F:      Documentation/devicetree/bindings/timer/
4218 F:      drivers/clocksource/
4219
4220 CMPC ACPI DRIVER
4221 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4222 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4223 L:      platform-driver-x86@vger.kernel.org
4224 S:      Supported
4225 F:      drivers/platform/x86/classmate-laptop.c
4226
4227 COBALT MEDIA DRIVER
4228 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4229 L:      linux-media@vger.kernel.org
4230 S:      Supported
4231 W:      https://linuxtv.org
4232 T:      git git://linuxtv.org/media_tree.git
4233 F:      drivers/media/pci/cobalt/
4234
4235 COCCINELLE/Semantic Patches (SmPL)
4236 M:      Julia Lawall <Julia.Lawall@lip6.fr>
4237 M:      Gilles Muller <Gilles.Muller@lip6.fr>
4238 M:      Nicolas Palix <nicolas.palix@imag.fr>
4239 M:      Michal Marek <michal.lkml@markovi.net>
4240 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4241 S:      Supported
4242 W:      http://coccinelle.lip6.fr/
4243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4244 F:      Documentation/dev-tools/coccinelle.rst
4245 F:      scripts/coccicheck
4246 F:      scripts/coccinelle/
4247
4248 CODA FILE SYSTEM
4249 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4250 M:      coda@cs.cmu.edu
4251 L:      codalist@coda.cs.cmu.edu
4252 S:      Maintained
4253 W:      http://www.coda.cs.cmu.edu/
4254 F:      Documentation/filesystems/coda.rst
4255 F:      fs/coda/
4256 F:      include/linux/coda*.h
4257 F:      include/uapi/linux/coda*.h
4258
4259 CODA V4L2 MEM2MEM DRIVER
4260 M:      Philipp Zabel <p.zabel@pengutronix.de>
4261 L:      linux-media@vger.kernel.org
4262 S:      Maintained
4263 F:      Documentation/devicetree/bindings/media/coda.txt
4264 F:      drivers/media/platform/coda/
4265
4266 CODE OF CONDUCT
4267 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4268 S:      Supported
4269 F:      Documentation/process/code-of-conduct-interpretation.rst
4270 F:      Documentation/process/code-of-conduct.rst
4271
4272 COMMON CLK FRAMEWORK
4273 M:      Michael Turquette <mturquette@baylibre.com>
4274 M:      Stephen Boyd <sboyd@kernel.org>
4275 L:      linux-clk@vger.kernel.org
4276 S:      Maintained
4277 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4279 F:      Documentation/devicetree/bindings/clock/
4280 F:      drivers/clk/
4281 F:      include/linux/clk-pr*
4282 F:      include/linux/clk/
4283 F:      include/linux/of_clk.h
4284 X:      drivers/clk/clkdev.c
4285
4286 COMMON INTERNET FILE SYSTEM (CIFS)
4287 M:      Steve French <sfrench@samba.org>
4288 L:      linux-cifs@vger.kernel.org
4289 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4290 S:      Supported
4291 W:      http://linux-cifs.samba.org/
4292 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4293 F:      Documentation/admin-guide/cifs/
4294 F:      fs/cifs/
4295
4296 COMPACTPCI HOTPLUG CORE
4297 M:      Scott Murray <scott@spiteful.org>
4298 L:      linux-pci@vger.kernel.org
4299 S:      Maintained
4300 F:      drivers/pci/hotplug/cpci_hotplug*
4301
4302 COMPACTPCI HOTPLUG GENERIC DRIVER
4303 M:      Scott Murray <scott@spiteful.org>
4304 L:      linux-pci@vger.kernel.org
4305 S:      Maintained
4306 F:      drivers/pci/hotplug/cpcihp_generic.c
4307
4308 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4309 M:      Scott Murray <scott@spiteful.org>
4310 L:      linux-pci@vger.kernel.org
4311 S:      Maintained
4312 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4313
4314 COMPAL LAPTOP SUPPORT
4315 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4316 L:      platform-driver-x86@vger.kernel.org
4317 S:      Maintained
4318 F:      drivers/platform/x86/compal-laptop.c
4319
4320 COMPILER ATTRIBUTES
4321 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4322 S:      Maintained
4323 F:      include/linux/compiler_attributes.h
4324
4325 CONEXANT ACCESSRUNNER USB DRIVER
4326 L:      accessrunner-general@lists.sourceforge.net
4327 S:      Orphan
4328 W:      http://accessrunner.sourceforge.net/
4329 F:      drivers/usb/atm/cxacru.c
4330
4331 CONFIGFS
4332 M:      Joel Becker <jlbec@evilplan.org>
4333 M:      Christoph Hellwig <hch@lst.de>
4334 S:      Supported
4335 T:      git git://git.infradead.org/users/hch/configfs.git
4336 F:      fs/configfs/
4337 F:      include/linux/configfs.h
4338
4339 CONNECTOR
4340 M:      Evgeniy Polyakov <zbr@ioremap.net>
4341 L:      netdev@vger.kernel.org
4342 S:      Maintained
4343 F:      drivers/connector/
4344
4345 CONTROL GROUP (CGROUP)
4346 M:      Tejun Heo <tj@kernel.org>
4347 M:      Li Zefan <lizefan@huawei.com>
4348 M:      Johannes Weiner <hannes@cmpxchg.org>
4349 L:      cgroups@vger.kernel.org
4350 S:      Maintained
4351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4352 F:      Documentation/admin-guide/cgroup-v1/
4353 F:      Documentation/admin-guide/cgroup-v2.rst
4354 F:      include/linux/cgroup*
4355 F:      kernel/cgroup/
4356
4357 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4358 M:      Tejun Heo <tj@kernel.org>
4359 M:      Jens Axboe <axboe@kernel.dk>
4360 L:      cgroups@vger.kernel.org
4361 L:      linux-block@vger.kernel.org
4362 T:      git git://git.kernel.dk/linux-block
4363 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4364 F:      block/bfq-cgroup.c
4365 F:      block/blk-cgroup.c
4366 F:      block/blk-iolatency.c
4367 F:      block/blk-throttle.c
4368 F:      include/linux/blk-cgroup.h
4369
4370 CONTROL GROUP - CPUSET
4371 M:      Li Zefan <lizefan@huawei.com>
4372 L:      cgroups@vger.kernel.org
4373 S:      Maintained
4374 W:      http://www.bullopensource.org/cpuset/
4375 W:      http://oss.sgi.com/projects/cpusets/
4376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4377 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4378 F:      include/linux/cpuset.h
4379 F:      kernel/cgroup/cpuset.c
4380
4381 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4382 M:      Johannes Weiner <hannes@cmpxchg.org>
4383 M:      Michal Hocko <mhocko@kernel.org>
4384 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4385 L:      cgroups@vger.kernel.org
4386 L:      linux-mm@kvack.org
4387 S:      Maintained
4388 F:      mm/memcontrol.c
4389 F:      mm/swap_cgroup.c
4390
4391 CORETEMP HARDWARE MONITORING DRIVER
4392 M:      Fenghua Yu <fenghua.yu@intel.com>
4393 L:      linux-hwmon@vger.kernel.org
4394 S:      Maintained
4395 F:      Documentation/hwmon/coretemp.rst
4396 F:      drivers/hwmon/coretemp.c
4397
4398 COSA/SRP SYNC SERIAL DRIVER
4399 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4400 S:      Maintained
4401 W:      http://www.fi.muni.cz/~kas/cosa/
4402 F:      drivers/net/wan/cosa*
4403
4404 COUNTER SUBSYSTEM
4405 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4406 L:      linux-iio@vger.kernel.org
4407 S:      Maintained
4408 F:      Documentation/ABI/testing/sysfs-bus-counter*
4409 F:      Documentation/driver-api/generic-counter.rst
4410 F:      drivers/counter/
4411 F:      include/linux/counter.h
4412 F:      include/linux/counter_enum.h
4413
4414 CPMAC ETHERNET DRIVER
4415 M:      Florian Fainelli <f.fainelli@gmail.com>
4416 L:      netdev@vger.kernel.org
4417 S:      Maintained
4418 F:      drivers/net/ethernet/ti/cpmac.c
4419
4420 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4421 M:      Viresh Kumar <viresh.kumar@linaro.org>
4422 M:      Sudeep Holla <sudeep.holla@arm.com>
4423 L:      linux-pm@vger.kernel.org
4424 S:      Maintained
4425 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4426 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4427
4428 CPU FREQUENCY SCALING FRAMEWORK
4429 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4430 M:      Viresh Kumar <viresh.kumar@linaro.org>
4431 L:      linux-pm@vger.kernel.org
4432 S:      Maintained
4433 B:      https://bugzilla.kernel.org
4434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4436 F:      Documentation/admin-guide/pm/cpufreq.rst
4437 F:      Documentation/admin-guide/pm/intel_pstate.rst
4438 F:      Documentation/cpu-freq/
4439 F:      Documentation/devicetree/bindings/cpufreq/
4440 F:      drivers/cpufreq/
4441 F:      include/linux/cpufreq.h
4442 F:      include/linux/sched/cpufreq.h
4443 F:      kernel/sched/cpufreq*.c
4444 F:      tools/testing/selftests/cpufreq/
4445
4446 CPU IDLE TIME MANAGEMENT FRAMEWORK
4447 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4448 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4449 L:      linux-pm@vger.kernel.org
4450 S:      Maintained
4451 B:      https://bugzilla.kernel.org
4452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4453 F:      Documentation/admin-guide/pm/cpuidle.rst
4454 F:      Documentation/driver-api/pm/cpuidle.rst
4455 F:      drivers/cpuidle/*
4456 F:      include/linux/cpuidle.h
4457
4458 CPU POWER MONITORING SUBSYSTEM
4459 M:      Thomas Renninger <trenn@suse.com>
4460 M:      Shuah Khan <shuah@kernel.org>
4461 M:      Shuah Khan <skhan@linuxfoundation.org>
4462 L:      linux-pm@vger.kernel.org
4463 S:      Maintained
4464 F:      tools/power/cpupower/
4465
4466 CPUID/MSR DRIVER
4467 M:      "H. Peter Anvin" <hpa@zytor.com>
4468 S:      Maintained
4469 F:      arch/x86/kernel/cpuid.c
4470 F:      arch/x86/kernel/msr.c
4471
4472 CPUIDLE DRIVER - ARM BIG LITTLE
4473 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4474 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4475 L:      linux-pm@vger.kernel.org
4476 L:      linux-arm-kernel@lists.infradead.org
4477 S:      Maintained
4478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4479 F:      drivers/cpuidle/cpuidle-big_little.c
4480
4481 CPUIDLE DRIVER - ARM EXYNOS
4482 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4483 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4484 M:      Kukjin Kim <kgene@kernel.org>
4485 L:      linux-pm@vger.kernel.org
4486 L:      linux-samsung-soc@vger.kernel.org
4487 S:      Supported
4488 F:      arch/arm/mach-exynos/pm.c
4489 F:      drivers/cpuidle/cpuidle-exynos.c
4490
4491 CPUIDLE DRIVER - ARM PSCI
4492 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4493 M:      Sudeep Holla <sudeep.holla@arm.com>
4494 L:      linux-pm@vger.kernel.org
4495 L:      linux-arm-kernel@lists.infradead.org
4496 S:      Supported
4497 F:      drivers/cpuidle/cpuidle-psci.c
4498
4499 CRAMFS FILESYSTEM
4500 M:      Nicolas Pitre <nico@fluxnic.net>
4501 S:      Maintained
4502 F:      Documentation/filesystems/cramfs.rst
4503 F:      fs/cramfs/
4504
4505 CREATIVE SB0540
4506 M:      Bastien Nocera <hadess@hadess.net>
4507 L:      linux-input@vger.kernel.org
4508 S:      Maintained
4509 F:      drivers/hid/hid-creative-sb0540.c
4510
4511 CRYPTO API
4512 M:      Herbert Xu <herbert@gondor.apana.org.au>
4513 M:      "David S. Miller" <davem@davemloft.net>
4514 L:      linux-crypto@vger.kernel.org
4515 S:      Maintained
4516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4518 F:      Documentation/crypto/
4519 F:      Documentation/devicetree/bindings/crypto/
4520 F:      arch/*/crypto/
4521 F:      crypto/
4522 F:      drivers/crypto/
4523 F:      include/crypto/
4524 F:      include/linux/crypto*
4525 F:      lib/crypto/
4526
4527 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4528 M:      Neil Horman <nhorman@tuxdriver.com>
4529 L:      linux-crypto@vger.kernel.org
4530 S:      Maintained
4531 F:      crypto/ansi_cprng.c
4532 F:      crypto/rng.c
4533
4534 CS3308 MEDIA DRIVER
4535 M:      Hans Verkuil <hverkuil@xs4all.nl>
4536 L:      linux-media@vger.kernel.org
4537 S:      Odd Fixes
4538 W:      http://linuxtv.org
4539 T:      git git://linuxtv.org/media_tree.git
4540 F:      drivers/media/i2c/cs3308.c
4541
4542 CS5535 Audio ALSA driver
4543 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4544 S:      Maintained
4545 F:      sound/pci/cs5535audio/
4546
4547 CSI DRIVERS FOR ALLWINNER V3s
4548 M:      Yong Deng <yong.deng@magewell.com>
4549 L:      linux-media@vger.kernel.org
4550 S:      Maintained
4551 T:      git git://linuxtv.org/media_tree.git
4552 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4553 F:      drivers/media/platform/sunxi/sun6i-csi/
4554
4555 CW1200 WLAN driver
4556 M:      Solomon Peachy <pizza@shaftnet.org>
4557 S:      Maintained
4558 F:      drivers/net/wireless/st/cw1200/
4559
4560 CX18 VIDEO4LINUX DRIVER
4561 M:      Andy Walls <awalls@md.metrocast.net>
4562 L:      linux-media@vger.kernel.org
4563 S:      Maintained
4564 W:      https://linuxtv.org
4565 T:      git git://linuxtv.org/media_tree.git
4566 F:      drivers/media/pci/cx18/
4567 F:      include/uapi/linux/ivtv*
4568
4569 CX2341X MPEG ENCODER HELPER MODULE
4570 M:      Hans Verkuil <hverkuil@xs4all.nl>
4571 L:      linux-media@vger.kernel.org
4572 S:      Maintained
4573 W:      https://linuxtv.org
4574 T:      git git://linuxtv.org/media_tree.git
4575 F:      drivers/media/common/cx2341x*
4576 F:      include/media/drv-intf/cx2341x.h
4577
4578 CX24120 MEDIA DRIVER
4579 M:      Jemma Denson <jdenson@gmail.com>
4580 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4581 L:      linux-media@vger.kernel.org
4582 S:      Maintained
4583 W:      https://linuxtv.org
4584 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4585 F:      drivers/media/dvb-frontends/cx24120*
4586
4587 CX88 VIDEO4LINUX DRIVER
4588 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4589 L:      linux-media@vger.kernel.org
4590 S:      Odd fixes
4591 W:      https://linuxtv.org
4592 T:      git git://linuxtv.org/media_tree.git
4593 F:      Documentation/driver-api/media/drivers/cx88*
4594 F:      drivers/media/pci/cx88/
4595
4596 CXD2820R MEDIA DRIVER
4597 M:      Antti Palosaari <crope@iki.fi>
4598 L:      linux-media@vger.kernel.org
4599 S:      Maintained
4600 W:      https://linuxtv.org
4601 W:      http://palosaari.fi/linux/
4602 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4603 T:      git git://linuxtv.org/anttip/media_tree.git
4604 F:      drivers/media/dvb-frontends/cxd2820r*
4605
4606 CXGB3 ETHERNET DRIVER (CXGB3)
4607 M:      Vishal Kulkarni <vishal@chelsio.com>
4608 L:      netdev@vger.kernel.org
4609 S:      Supported
4610 W:      http://www.chelsio.com
4611 F:      drivers/net/ethernet/chelsio/cxgb3/
4612
4613 CXGB3 ISCSI DRIVER (CXGB3I)
4614 M:      Karen Xie <kxie@chelsio.com>
4615 L:      linux-scsi@vger.kernel.org
4616 S:      Supported
4617 W:      http://www.chelsio.com
4618 F:      drivers/scsi/cxgbi/cxgb3i
4619
4620 CXGB4 CRYPTO DRIVER (chcr)
4621 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4622 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4623 M:      Rohit Maheshwari <rohitm@chelsio.com>
4624 L:      linux-crypto@vger.kernel.org
4625 S:      Supported
4626 W:      http://www.chelsio.com
4627 F:      drivers/crypto/chelsio
4628
4629 CXGB4 ETHERNET DRIVER (CXGB4)
4630 M:      Vishal Kulkarni <vishal@chelsio.com>
4631 L:      netdev@vger.kernel.org
4632 S:      Supported
4633 W:      http://www.chelsio.com
4634 F:      drivers/net/ethernet/chelsio/cxgb4/
4635
4636 CXGB4 ISCSI DRIVER (CXGB4I)
4637 M:      Karen Xie <kxie@chelsio.com>
4638 L:      linux-scsi@vger.kernel.org
4639 S:      Supported
4640 W:      http://www.chelsio.com
4641 F:      drivers/scsi/cxgbi/cxgb4i
4642
4643 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4644 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4645 L:      linux-rdma@vger.kernel.org
4646 S:      Supported
4647 W:      http://www.openfabrics.org
4648 F:      drivers/infiniband/hw/cxgb4/
4649 F:      include/uapi/rdma/cxgb4-abi.h
4650
4651 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4652 M:      Vishal Kulkarni <vishal@gmail.com>
4653 L:      netdev@vger.kernel.org
4654 S:      Supported
4655 W:      http://www.chelsio.com
4656 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4657
4658 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4659 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4660 M:      Andrew Donnellan <ajd@linux.ibm.com>
4661 L:      linuxppc-dev@lists.ozlabs.org
4662 S:      Supported
4663 F:      Documentation/ABI/testing/sysfs-class-cxl
4664 F:      Documentation/powerpc/cxl.rst
4665 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4666 F:      drivers/misc/cxl/
4667 F:      include/misc/cxl*
4668 F:      include/uapi/misc/cxl.h
4669
4670 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4671 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4672 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4673 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4674 L:      linux-scsi@vger.kernel.org
4675 S:      Supported
4676 F:      Documentation/powerpc/cxlflash.rst
4677 F:      drivers/scsi/cxlflash/
4678 F:      include/uapi/scsi/cxlflash_ioctl.h
4679
4680 CYBERPRO FB DRIVER
4681 M:      Russell King <linux@armlinux.org.uk>
4682 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4683 S:      Maintained
4684 W:      http://www.armlinux.org.uk/
4685 F:      drivers/video/fbdev/cyber2000fb.*
4686
4687 CYCLADES ASYNC MUX DRIVER
4688 S:      Orphan
4689 W:      http://www.cyclades.com/
4690 F:      drivers/tty/cyclades.c
4691 F:      include/linux/cyclades.h
4692 F:      include/uapi/linux/cyclades.h
4693
4694 CYCLADES PC300 DRIVER
4695 S:      Orphan
4696 W:      http://www.cyclades.com/
4697 F:      drivers/net/wan/pc300*
4698
4699 CYPRESS_FIRMWARE MEDIA DRIVER
4700 M:      Antti Palosaari <crope@iki.fi>
4701 L:      linux-media@vger.kernel.org
4702 S:      Maintained
4703 W:      https://linuxtv.org
4704 W:      http://palosaari.fi/linux/
4705 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4706 T:      git git://linuxtv.org/anttip/media_tree.git
4707 F:      drivers/media/common/cypress_firmware*
4708
4709 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
4710 M:      Linus Walleij <linus.walleij@linaro.org>
4711 L:      linux-input@vger.kernel.org
4712 S:      Maintained
4713 F:      drivers/input/touchscreen/cy8ctma140.c
4714
4715 CYTTSP TOUCHSCREEN DRIVER
4716 M:      Ferruh Yigit <fery@cypress.com>
4717 L:      linux-input@vger.kernel.org
4718 S:      Supported
4719 F:      drivers/input/touchscreen/cyttsp*
4720 F:      include/linux/input/cyttsp.h
4721
4722 D-LINK DIR-685 TOUCHKEYS DRIVER
4723 M:      Linus Walleij <linus.walleij@linaro.org>
4724 L:      linux-input@vger.kernel.org
4725 S:      Supported
4726 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4727
4728 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4729 M:      Joshua Kinard <kumba@gentoo.org>
4730 S:      Maintained
4731 F:      drivers/rtc/rtc-ds1685.c
4732 F:      include/linux/rtc/ds1685.h
4733
4734 DAMA SLAVE for AX.25
4735 M:      Joerg Reuter <jreuter@yaina.de>
4736 L:      linux-hams@vger.kernel.org
4737 S:      Maintained
4738 W:      http://yaina.de/jreuter/
4739 W:      http://www.qsl.net/dl1bke/
4740 F:      net/ax25/af_ax25.c
4741 F:      net/ax25/ax25_dev.c
4742 F:      net/ax25/ax25_ds_*
4743 F:      net/ax25/ax25_in.c
4744 F:      net/ax25/ax25_out.c
4745 F:      net/ax25/ax25_timer.c
4746 F:      net/ax25/sysctl_net_ax25.c
4747
4748 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4749 L:      netdev@vger.kernel.org
4750 S:      Orphan
4751 F:      Documentation/networking/device_drivers/dec/dmfe.rst
4752 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4753
4754 DC390/AM53C974 SCSI driver
4755 M:      Hannes Reinecke <hare@suse.com>
4756 L:      linux-scsi@vger.kernel.org
4757 S:      Maintained
4758 F:      drivers/scsi/am53c974.c
4759
4760 DC395x SCSI driver
4761 M:      Oliver Neukum <oliver@neukum.org>
4762 M:      Ali Akcaagac <aliakc@web.de>
4763 M:      Jamie Lenehan <lenehan@twibble.org>
4764 L:      dc395x@twibble.org
4765 S:      Maintained
4766 W:      http://twibble.org/dist/dc395x/
4767 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4768 F:      Documentation/scsi/dc395x.rst
4769 F:      drivers/scsi/dc395x.*
4770
4771 DCCP PROTOCOL
4772 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4773 L:      dccp@vger.kernel.org
4774 S:      Maintained
4775 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4776 F:      include/linux/dccp.h
4777 F:      include/linux/tfrc.h
4778 F:      include/uapi/linux/dccp.h
4779 F:      net/dccp/
4780
4781 DECnet NETWORK LAYER
4782 L:      linux-decnet-user@lists.sourceforge.net
4783 S:      Orphan
4784 W:      http://linux-decnet.sourceforge.net
4785 F:      Documentation/networking/decnet.rst
4786 F:      net/decnet/
4787
4788 DECSTATION PLATFORM SUPPORT
4789 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4790 L:      linux-mips@vger.kernel.org
4791 S:      Maintained
4792 W:      http://www.linux-mips.org/wiki/DECstation
4793 F:      arch/mips/dec/
4794 F:      arch/mips/include/asm/dec/
4795 F:      arch/mips/include/asm/mach-dec/
4796
4797 DEFXX FDDI NETWORK DRIVER
4798 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4799 S:      Maintained
4800 F:      drivers/net/fddi/defxx.*
4801
4802 DEFZA FDDI NETWORK DRIVER
4803 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4804 S:      Maintained
4805 F:      drivers/net/fddi/defza.*
4806
4807 DEINTERLACE DRIVERS FOR ALLWINNER H3
4808 M:      Jernej Skrabec <jernej.skrabec@siol.net>
4809 L:      linux-media@vger.kernel.org
4810 S:      Maintained
4811 T:      git git://linuxtv.org/media_tree.git
4812 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4813 F:      drivers/media/platform/sunxi/sun8i-di/
4814
4815 DELL LAPTOP DRIVER
4816 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4817 M:      Pali Rohár <pali@kernel.org>
4818 L:      platform-driver-x86@vger.kernel.org
4819 S:      Maintained
4820 F:      drivers/platform/x86/dell-laptop.c
4821
4822 DELL LAPTOP FREEFALL DRIVER
4823 M:      Pali Rohár <pali@kernel.org>
4824 S:      Maintained
4825 F:      drivers/platform/x86/dell-smo8800.c
4826
4827 DELL LAPTOP RBTN DRIVER
4828 M:      Pali Rohár <pali@kernel.org>
4829 S:      Maintained
4830 F:      drivers/platform/x86/dell-rbtn.*
4831
4832 DELL LAPTOP SMM DRIVER
4833 M:      Pali Rohár <pali@kernel.org>
4834 S:      Maintained
4835 F:      drivers/hwmon/dell-smm-hwmon.c
4836 F:      include/uapi/linux/i8k.h
4837
4838 DELL REMOTE BIOS UPDATE DRIVER
4839 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4840 L:      platform-driver-x86@vger.kernel.org
4841 S:      Maintained
4842 F:      drivers/platform/x86/dell_rbu.c
4843
4844 DELL SMBIOS DRIVER
4845 M:      Pali Rohár <pali@kernel.org>
4846 M:      Mario Limonciello <mario.limonciello@dell.com>
4847 L:      platform-driver-x86@vger.kernel.org
4848 S:      Maintained
4849 F:      drivers/platform/x86/dell-smbios.*
4850
4851 DELL SMBIOS SMM DRIVER
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-smm.c
4856
4857 DELL SMBIOS WMI 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-wmi.c
4862 F:      tools/wmi/dell-smbios-example.c
4863
4864 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4865 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4866 L:      platform-driver-x86@vger.kernel.org
4867 S:      Maintained
4868 F:      Documentation/driver-api/dcdbas.rst
4869 F:      drivers/platform/x86/dcdbas.*
4870
4871 DELL WMI DESCRIPTOR DRIVER
4872 M:      Mario Limonciello <mario.limonciello@dell.com>
4873 S:      Maintained
4874 F:      drivers/platform/x86/dell-wmi-descriptor.c
4875
4876 DELL WMI NOTIFICATIONS DRIVER
4877 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4878 M:      Pali Rohár <pali@kernel.org>
4879 S:      Maintained
4880 F:      drivers/platform/x86/dell-wmi.c
4881
4882 DELTA ST MEDIA DRIVER
4883 M:      Hugues Fruchet <hugues.fruchet@st.com>
4884 L:      linux-media@vger.kernel.org
4885 S:      Supported
4886 W:      https://linuxtv.org
4887 T:      git git://linuxtv.org/media_tree.git
4888 F:      drivers/media/platform/sti/delta
4889
4890 DENALI NAND DRIVER
4891 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
4892 L:      linux-mtd@lists.infradead.org
4893 S:      Supported
4894 F:      drivers/mtd/nand/raw/denali*
4895
4896 DESIGNWARE EDMA CORE IP DRIVER
4897 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
4898 L:      dmaengine@vger.kernel.org
4899 S:      Maintained
4900 F:      drivers/dma/dw-edma/
4901 F:      include/linux/dma/edma.h
4902
4903 DESIGNWARE USB2 DRD IP DRIVER
4904 M:      Minas Harutyunyan <hminas@synopsys.com>
4905 L:      linux-usb@vger.kernel.org
4906 S:      Maintained
4907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4908 F:      drivers/usb/dwc2/
4909
4910 DESIGNWARE USB3 DRD IP DRIVER
4911 M:      Felipe Balbi <balbi@kernel.org>
4912 L:      linux-usb@vger.kernel.org
4913 S:      Maintained
4914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4915 F:      drivers/usb/dwc3/
4916
4917 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4918 M:      Andreas Klinger <ak@it-klinger.de>
4919 L:      linux-iio@vger.kernel.org
4920 S:      Maintained
4921 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4922 F:      drivers/iio/proximity/srf*.c
4923
4924 DEVICE COREDUMP (DEV_COREDUMP)
4925 M:      Johannes Berg <johannes@sipsolutions.net>
4926 L:      linux-kernel@vger.kernel.org
4927 S:      Maintained
4928 F:      drivers/base/devcoredump.c
4929 F:      include/linux/devcoredump.h
4930
4931 DEVICE DIRECT ACCESS (DAX)
4932 M:      Dan Williams <dan.j.williams@intel.com>
4933 M:      Vishal Verma <vishal.l.verma@intel.com>
4934 M:      Dave Jiang <dave.jiang@intel.com>
4935 L:      linux-nvdimm@lists.01.org
4936 S:      Supported
4937 F:      drivers/dax/
4938
4939 DEVICE FREQUENCY (DEVFREQ)
4940 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4941 M:      Kyungmin Park <kyungmin.park@samsung.com>
4942 M:      Chanwoo Choi <cw00.choi@samsung.com>
4943 L:      linux-pm@vger.kernel.org
4944 S:      Maintained
4945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4946 F:      Documentation/devicetree/bindings/devfreq/
4947 F:      drivers/devfreq/
4948 F:      include/linux/devfreq.h
4949 F:      include/trace/events/devfreq.h
4950
4951 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4952 M:      Chanwoo Choi <cw00.choi@samsung.com>
4953 L:      linux-pm@vger.kernel.org
4954 S:      Supported
4955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4956 F:      Documentation/devicetree/bindings/devfreq/event/
4957 F:      drivers/devfreq/devfreq-event.c
4958 F:      drivers/devfreq/event/
4959 F:      include/dt-bindings/pmu/exynos_ppmu.h
4960 F:      include/linux/devfreq-event.h
4961
4962 DEVICE NUMBER REGISTRY
4963 M:      Torben Mathiasen <device@lanana.org>
4964 S:      Maintained
4965 W:      http://lanana.org/docs/device-list/index.html
4966
4967 DEVICE-MAPPER  (LVM)
4968 M:      Alasdair Kergon <agk@redhat.com>
4969 M:      Mike Snitzer <snitzer@redhat.com>
4970 M:      dm-devel@redhat.com
4971 L:      dm-devel@redhat.com
4972 S:      Maintained
4973 W:      http://sources.redhat.com/dm
4974 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4976 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4977 F:      Documentation/admin-guide/device-mapper/
4978 F:      drivers/md/Kconfig
4979 F:      drivers/md/Makefile
4980 F:      drivers/md/dm*
4981 F:      drivers/md/persistent-data/
4982 F:      include/linux/device-mapper.h
4983 F:      include/linux/dm-*.h
4984 F:      include/uapi/linux/dm-*.h
4985
4986 DEVLINK
4987 M:      Jiri Pirko <jiri@mellanox.com>
4988 L:      netdev@vger.kernel.org
4989 S:      Supported
4990 F:      Documentation/networking/devlink
4991 F:      include/net/devlink.h
4992 F:      include/uapi/linux/devlink.h
4993 F:      net/core/devlink.c
4994
4995 DIALOG SEMICONDUCTOR DRIVERS
4996 M:      Support Opensource <support.opensource@diasemi.com>
4997 S:      Supported
4998 W:      http://www.dialog-semiconductor.com/products
4999 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5000 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5001 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5002 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5003 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5004 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5005 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5006 F:      Documentation/hwmon/da90??.rst
5007 F:      drivers/gpio/gpio-da90??.c
5008 F:      drivers/hwmon/da90??-hwmon.c
5009 F:      drivers/iio/adc/da91??-*.c
5010 F:      drivers/input/misc/da90??_onkey.c
5011 F:      drivers/input/touchscreen/da9052_tsi.c
5012 F:      drivers/leds/leds-da90??.c
5013 F:      drivers/mfd/da903x.c
5014 F:      drivers/mfd/da90??-*.c
5015 F:      drivers/mfd/da91??-*.c
5016 F:      drivers/pinctrl/pinctrl-da90??.c
5017 F:      drivers/power/supply/da9052-battery.c
5018 F:      drivers/power/supply/da91??-*.c
5019 F:      drivers/regulator/da903x.c
5020 F:      drivers/regulator/da9???-regulator.[ch]
5021 F:      drivers/regulator/slg51000-regulator.[ch]
5022 F:      drivers/rtc/rtc-da90??.c
5023 F:      drivers/thermal/da90??-thermal.c
5024 F:      drivers/video/backlight/da90??_bl.c
5025 F:      drivers/watchdog/da90??_wdt.c
5026 F:      include/linux/mfd/da903x.h
5027 F:      include/linux/mfd/da9052/
5028 F:      include/linux/mfd/da9055/
5029 F:      include/linux/mfd/da9062/
5030 F:      include/linux/mfd/da9063/
5031 F:      include/linux/mfd/da9150/
5032 F:      include/linux/regulator/da9211.h
5033 F:      include/sound/da[79]*.h
5034 F:      sound/soc/codecs/da[79]*.[ch]
5035
5036 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5037 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5038 L:      linux-gpio@vger.kernel.org
5039 S:      Maintained
5040 F:      drivers/gpio/gpio-gpio-mm.c
5041
5042 DIOLAN U2C-12 I2C DRIVER
5043 M:      Guenter Roeck <linux@roeck-us.net>
5044 L:      linux-i2c@vger.kernel.org
5045 S:      Maintained
5046 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5047
5048 DIRECTORY NOTIFICATION (DNOTIFY)
5049 M:      Jan Kara <jack@suse.cz>
5050 R:      Amir Goldstein <amir73il@gmail.com>
5051 L:      linux-fsdevel@vger.kernel.org
5052 S:      Maintained
5053 F:      Documentation/filesystems/dnotify.rst
5054 F:      fs/notify/dnotify/
5055 F:      include/linux/dnotify.h
5056
5057 DISK GEOMETRY AND PARTITION HANDLING
5058 M:      Andries Brouwer <aeb@cwi.nl>
5059 S:      Maintained
5060 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5061 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5062 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5063
5064 DISKQUOTA
5065 M:      Jan Kara <jack@suse.com>
5066 S:      Maintained
5067 F:      Documentation/filesystems/quota.rst
5068 F:      fs/quota/
5069 F:      include/linux/quota*.h
5070 F:      include/uapi/linux/quota*.h
5071
5072 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5073 M:      Bernie Thompson <bernie@plugable.com>
5074 L:      linux-fbdev@vger.kernel.org
5075 S:      Maintained
5076 W:      http://plugable.com/category/projects/udlfb/
5077 F:      Documentation/fb/udlfb.rst
5078 F:      drivers/video/fbdev/udlfb.c
5079 F:      include/video/udlfb.h
5080
5081 DISTRIBUTED LOCK MANAGER (DLM)
5082 M:      Christine Caulfield <ccaulfie@redhat.com>
5083 M:      David Teigland <teigland@redhat.com>
5084 L:      cluster-devel@redhat.com
5085 S:      Supported
5086 W:      http://sources.redhat.com/cluster/
5087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5088 F:      fs/dlm/
5089
5090 DMA BUFFER SHARING FRAMEWORK
5091 M:      Sumit Semwal <sumit.semwal@linaro.org>
5092 M:      Christian König <christian.koenig@amd.com>
5093 L:      linux-media@vger.kernel.org
5094 L:      dri-devel@lists.freedesktop.org
5095 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5096 S:      Maintained
5097 T:      git git://anongit.freedesktop.org/drm/drm-misc
5098 F:      Documentation/driver-api/dma-buf.rst
5099 F:      drivers/dma-buf/
5100 F:      include/linux/*fence.h
5101 F:      include/linux/dma-buf*
5102 F:      include/linux/dma-resv.h
5103 K:      \bdma_(?:buf|fence|resv)\b
5104
5105 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5106 M:      Vinod Koul <vkoul@kernel.org>
5107 L:      dmaengine@vger.kernel.org
5108 S:      Maintained
5109 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5110 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
5111 F:      Documentation/devicetree/bindings/dma/
5112 F:      Documentation/driver-api/dmaengine/
5113 F:      drivers/dma/
5114 F:      include/linux/dmaengine.h
5115 F:      include/linux/of_dma.h
5116
5117 DMA MAPPING HELPERS
5118 M:      Christoph Hellwig <hch@lst.de>
5119 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5120 R:      Robin Murphy <robin.murphy@arm.com>
5121 L:      iommu@lists.linux-foundation.org
5122 S:      Supported
5123 W:      http://git.infradead.org/users/hch/dma-mapping.git
5124 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5125 F:      include/asm-generic/dma-mapping.h
5126 F:      include/linux/dma-direct.h
5127 F:      include/linux/dma-mapping.h
5128 F:      include/linux/dma-noncoherent.h
5129 F:      kernel/dma/
5130
5131 DMA-BUF HEAPS FRAMEWORK
5132 M:      Sumit Semwal <sumit.semwal@linaro.org>
5133 R:      Andrew F. Davis <afd@ti.com>
5134 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5135 R:      Liam Mark <lmark@codeaurora.org>
5136 R:      Laura Abbott <labbott@redhat.com>
5137 R:      Brian Starkey <Brian.Starkey@arm.com>
5138 R:      John Stultz <john.stultz@linaro.org>
5139 L:      linux-media@vger.kernel.org
5140 L:      dri-devel@lists.freedesktop.org
5141 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5142 S:      Maintained
5143 T:      git git://anongit.freedesktop.org/drm/drm-misc
5144 F:      drivers/dma-buf/dma-heap.c
5145 F:      drivers/dma-buf/heaps/*
5146 F:      include/linux/dma-heap.h
5147 F:      include/uapi/linux/dma-heap.h
5148
5149 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5150 M:      Lukasz Luba <lukasz.luba@arm.com>
5151 L:      linux-pm@vger.kernel.org
5152 L:      linux-samsung-soc@vger.kernel.org
5153 S:      Maintained
5154 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5155 F:      drivers/memory/samsung/exynos5422-dmc.c
5156
5157 DME1737 HARDWARE MONITOR DRIVER
5158 M:      Juerg Haefliger <juergh@gmail.com>
5159 L:      linux-hwmon@vger.kernel.org
5160 S:      Maintained
5161 F:      Documentation/hwmon/dme1737.rst
5162 F:      drivers/hwmon/dme1737.c
5163
5164 DMI/SMBIOS SUPPORT
5165 M:      Jean Delvare <jdelvare@suse.com>
5166 S:      Maintained
5167 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5168 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5169 F:      drivers/firmware/dmi-id.c
5170 F:      drivers/firmware/dmi_scan.c
5171 F:      include/linux/dmi.h
5172
5173 DOCUMENTATION
5174 M:      Jonathan Corbet <corbet@lwn.net>
5175 L:      linux-doc@vger.kernel.org
5176 S:      Maintained
5177 T:      git git://git.lwn.net/linux.git docs-next
5178 F:      Documentation/
5179 F:      scripts/documentation-file-ref-check
5180 F:      scripts/kernel-doc
5181 F:      scripts/sphinx-pre-install
5182 X:      Documentation/ABI/
5183 X:      Documentation/admin-guide/media/
5184 X:      Documentation/devicetree/
5185 X:      Documentation/driver-api/media/
5186 X:      Documentation/firmware-guide/acpi/
5187 X:      Documentation/i2c/
5188 X:      Documentation/power/
5189 X:      Documentation/spi/
5190 X:      Documentation/userspace-api/media/
5191
5192 DOCUMENTATION SCRIPTS
5193 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5194 L:      linux-doc@vger.kernel.org
5195 S:      Maintained
5196 F:      Documentation/sphinx/parse-headers.pl
5197 F:      scripts/documentation-file-ref-check
5198 F:      scripts/sphinx-pre-install
5199
5200 DOCUMENTATION/ITALIAN
5201 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5202 L:      linux-doc@vger.kernel.org
5203 S:      Maintained
5204 F:      Documentation/translations/it_IT
5205
5206 DONGWOON DW9714 LENS VOICE COIL DRIVER
5207 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5208 L:      linux-media@vger.kernel.org
5209 S:      Maintained
5210 T:      git git://linuxtv.org/media_tree.git
5211 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5212 F:      drivers/media/i2c/dw9714.c
5213
5214 DONGWOON DW9807 LENS VOICE COIL DRIVER
5215 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5216 L:      linux-media@vger.kernel.org
5217 S:      Maintained
5218 T:      git git://linuxtv.org/media_tree.git
5219 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5220 F:      drivers/media/i2c/dw9807-vcm.c
5221
5222 DOUBLETALK DRIVER
5223 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5224 L:      blinux-list@redhat.com
5225 S:      Maintained
5226 F:      drivers/char/dtlk.c
5227 F:      include/linux/dtlk.h
5228
5229 DPAA2 DATAPATH I/O (DPIO) DRIVER
5230 M:      Roy Pledge <Roy.Pledge@nxp.com>
5231 L:      linux-kernel@vger.kernel.org
5232 S:      Maintained
5233 F:      drivers/soc/fsl/dpio
5234
5235 DPAA2 ETHERNET DRIVER
5236 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5237 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5238 L:      netdev@vger.kernel.org
5239 S:      Maintained
5240 F:      Documentation/networking/device_drivers/freescale/dpaa2/ethernet-driver.rst
5241 F:      Documentation/networking/device_drivers/freescale/dpaa2/mac-phy-support.rst
5242 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5243 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5244 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5245 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5246 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5247 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5248 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5249
5250 DPAA2 ETHERNET SWITCH DRIVER
5251 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5252 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5253 L:      linux-kernel@vger.kernel.org
5254 S:      Maintained
5255 F:      drivers/staging/fsl-dpaa2/ethsw
5256
5257 DPT_I2O SCSI RAID DRIVER
5258 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5259 L:      linux-scsi@vger.kernel.org
5260 S:      Maintained
5261 W:      http://www.adaptec.com/
5262 F:      drivers/scsi/dpt*
5263 F:      drivers/scsi/dpt/
5264
5265 DRBD DRIVER
5266 M:      Philipp Reisner <philipp.reisner@linbit.com>
5267 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5268 L:      drbd-dev@lists.linbit.com
5269 S:      Supported
5270 W:      http://www.drbd.org
5271 T:      git git://git.linbit.com/linux-drbd.git
5272 T:      git git://git.linbit.com/drbd-8.4.git
5273 F:      Documentation/admin-guide/blockdev/
5274 F:      drivers/block/drbd/
5275 F:      lib/lru_cache.c
5276
5277 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5278 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5279 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5280 S:      Supported
5281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5282 F:      Documentation/core-api/kobject.rst
5283 F:      drivers/base/
5284 F:      fs/debugfs/
5285 F:      fs/sysfs/
5286 F:      include/linux/debugfs.h
5287 F:      include/linux/kobj*
5288 F:      lib/kobj*
5289
5290 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
5291 M:      Kevin Hilman <khilman@kernel.org>
5292 M:      Nishanth Menon <nm@ti.com>
5293 L:      linux-pm@vger.kernel.org
5294 S:      Maintained
5295 F:      drivers/power/avs/
5296 F:      include/linux/power/smartreflex.h
5297
5298 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5299 M:      Maxime Ripard <mripard@kernel.org>
5300 M:      Chen-Yu Tsai <wens@csie.org>
5301 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5302 L:      dri-devel@lists.freedesktop.org
5303 S:      Supported
5304 T:      git git://anongit.freedesktop.org/drm/drm-misc
5305 F:      drivers/gpu/drm/sun4i/sun8i*
5306
5307 DRM DRIVER FOR ARM PL111 CLCD
5308 M:      Eric Anholt <eric@anholt.net>
5309 S:      Supported
5310 T:      git git://anongit.freedesktop.org/drm/drm-misc
5311 F:      drivers/gpu/drm/pl111/
5312
5313 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5314 M:      Linus Walleij <linus.walleij@linaro.org>
5315 S:      Maintained
5316 T:      git git://anongit.freedesktop.org/drm/drm-misc
5317 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5318 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5319
5320 DRM DRIVER FOR ASPEED BMC GFX
5321 M:      Joel Stanley <joel@jms.id.au>
5322 L:      linux-aspeed@lists.ozlabs.org
5323 S:      Supported
5324 T:      git git://anongit.freedesktop.org/drm/drm-misc
5325 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5326 F:      drivers/gpu/drm/aspeed/
5327
5328 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5329 M:      Dave Airlie <airlied@redhat.com>
5330 S:      Odd Fixes
5331 F:      drivers/gpu/drm/ast/
5332
5333 DRM DRIVER FOR BOCHS VIRTUAL GPU
5334 M:      Gerd Hoffmann <kraxel@redhat.com>
5335 L:      virtualization@lists.linux-foundation.org
5336 S:      Maintained
5337 T:      git git://anongit.freedesktop.org/drm/drm-misc
5338 F:      drivers/gpu/drm/bochs/
5339
5340 DRM DRIVER FOR BOE HIMAX8279D PANELS
5341 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5342 S:      Maintained
5343 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5344 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5345
5346 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5347 M:      Linus Walleij <linus.walleij@linaro.org>
5348 S:      Maintained
5349 T:      git git://anongit.freedesktop.org/drm/drm-misc
5350 F:      drivers/gpu/drm/tve200/
5351
5352 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5353 M:      Icenowy Zheng <icenowy@aosc.io>
5354 S:      Maintained
5355 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5356 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5357
5358 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5359 M:      Jagan Teki <jagan@amarulasolutions.com>
5360 S:      Maintained
5361 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5362 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5363
5364 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5365 M:      Hans de Goede <hdegoede@redhat.com>
5366 S:      Maintained
5367 T:      git git://anongit.freedesktop.org/drm/drm-misc
5368 F:      drivers/gpu/drm/tiny/gm12u320.c
5369
5370 DRM DRIVER FOR HX8357D PANELS
5371 M:      Eric Anholt <eric@anholt.net>
5372 S:      Maintained
5373 T:      git git://anongit.freedesktop.org/drm/drm-misc
5374 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5375 F:      drivers/gpu/drm/tiny/hx8357d.c
5376
5377 DRM DRIVER FOR ILITEK ILI9225 PANELS
5378 M:      David Lechner <david@lechnology.com>
5379 S:      Maintained
5380 T:      git git://anongit.freedesktop.org/drm/drm-misc
5381 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5382 F:      drivers/gpu/drm/tiny/ili9225.c
5383
5384 DRM DRIVER FOR ILITEK ILI9486 PANELS
5385 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5386 S:      Maintained
5387 T:      git git://anongit.freedesktop.org/drm/drm-misc
5388 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5389 F:      drivers/gpu/drm/tiny/ili9486.c
5390
5391 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5392 S:      Orphan / Obsolete
5393 F:      drivers/gpu/drm/i810/
5394 F:      include/uapi/drm/i810_drm.h
5395
5396 DRM DRIVER FOR LVDS PANELS
5397 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5398 L:      dri-devel@lists.freedesktop.org
5399 T:      git git://anongit.freedesktop.org/drm/drm-misc
5400 S:      Maintained
5401 F:      drivers/gpu/drm/panel/panel-lvds.c
5402 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5403
5404 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5405 S:      Orphan / Obsolete
5406 F:      drivers/gpu/drm/mga/
5407 F:      include/uapi/drm/mga_drm.h
5408
5409 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5410 M:      Dave Airlie <airlied@redhat.com>
5411 S:      Odd Fixes
5412 F:      drivers/gpu/drm/mgag200/
5413
5414 DRM DRIVER FOR MI0283QT
5415 M:      Noralf Trønnes <noralf@tronnes.org>
5416 S:      Maintained
5417 T:      git git://anongit.freedesktop.org/drm/drm-misc
5418 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5419 F:      drivers/gpu/drm/tiny/mi0283qt.c
5420
5421 DRM DRIVER FOR MSM ADRENO GPU
5422 M:      Rob Clark <robdclark@gmail.com>
5423 M:      Sean Paul <sean@poorly.run>
5424 L:      linux-arm-msm@vger.kernel.org
5425 L:      dri-devel@lists.freedesktop.org
5426 L:      freedreno@lists.freedesktop.org
5427 S:      Maintained
5428 T:      git https://gitlab.freedesktop.org/drm/msm.git
5429 F:      Documentation/devicetree/bindings/display/msm/
5430 F:      drivers/gpu/drm/msm/
5431 F:      include/uapi/drm/msm_drm.h
5432
5433 DRM DRIVER FOR NOVATEK NT35510 PANELS
5434 M:      Linus Walleij <linus.walleij@linaro.org>
5435 S:      Maintained
5436 T:      git git://anongit.freedesktop.org/drm/drm-misc
5437 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5438 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5439
5440 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5441 M:      Ben Skeggs <bskeggs@redhat.com>
5442 L:      dri-devel@lists.freedesktop.org
5443 L:      nouveau@lists.freedesktop.org
5444 S:      Supported
5445 T:      git git://github.com/skeggsb/linux
5446 F:      drivers/gpu/drm/nouveau/
5447 F:      include/uapi/drm/nouveau_drm.h
5448
5449 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5450 M:      Stefan Mavrodiev <stefan@olimex.com>
5451 S:      Maintained
5452 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5453 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5454
5455 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5456 M:      Noralf Trønnes <noralf@tronnes.org>
5457 S:      Maintained
5458 T:      git git://anongit.freedesktop.org/drm/drm-misc
5459 F:      Documentation/devicetree/bindings/display/repaper.txt
5460 F:      drivers/gpu/drm/tiny/repaper.c
5461
5462 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5463 M:      Dave Airlie <airlied@redhat.com>
5464 M:      Gerd Hoffmann <kraxel@redhat.com>
5465 L:      virtualization@lists.linux-foundation.org
5466 S:      Obsolete
5467 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5468 T:      git git://anongit.freedesktop.org/drm/drm-misc
5469 F:      drivers/gpu/drm/tiny/cirrus.c
5470
5471 DRM DRIVER FOR QXL VIRTUAL GPU
5472 M:      Dave Airlie <airlied@redhat.com>
5473 M:      Gerd Hoffmann <kraxel@redhat.com>
5474 L:      virtualization@lists.linux-foundation.org
5475 L:      spice-devel@lists.freedesktop.org
5476 S:      Maintained
5477 T:      git git://anongit.freedesktop.org/drm/drm-misc
5478 F:      drivers/gpu/drm/qxl/
5479 F:      include/uapi/drm/qxl_drm.h
5480
5481 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5482 S:      Orphan / Obsolete
5483 F:      drivers/gpu/drm/r128/
5484 F:      include/uapi/drm/r128_drm.h
5485
5486 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5487 M:      Robert Chiras <robert.chiras@nxp.com>
5488 S:      Maintained
5489 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.txt
5490 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5491
5492 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5493 M:      Guido Günther <agx@sigxcpu.org>
5494 R:      Purism Kernel Team <kernel@puri.sm>
5495 S:      Maintained
5496 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5497 F:      drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5498
5499 DRM DRIVER FOR SAVAGE VIDEO CARDS
5500 S:      Orphan / Obsolete
5501 F:      drivers/gpu/drm/savage/
5502 F:      include/uapi/drm/savage_drm.h
5503
5504 DRM DRIVER FOR SIS VIDEO CARDS
5505 S:      Orphan / Obsolete
5506 F:      drivers/gpu/drm/sis/
5507 F:      include/uapi/drm/sis_drm.h
5508
5509 DRM DRIVER FOR SITRONIX ST7586 PANELS
5510 M:      David Lechner <david@lechnology.com>
5511 S:      Maintained
5512 T:      git git://anongit.freedesktop.org/drm/drm-misc
5513 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5514 F:      drivers/gpu/drm/tiny/st7586.c
5515
5516 DRM DRIVER FOR SITRONIX ST7701 PANELS
5517 M:      Jagan Teki <jagan@amarulasolutions.com>
5518 S:      Maintained
5519 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5520 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5521
5522 DRM DRIVER FOR SITRONIX ST7735R PANELS
5523 M:      David Lechner <david@lechnology.com>
5524 S:      Maintained
5525 T:      git git://anongit.freedesktop.org/drm/drm-misc
5526 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5527 F:      drivers/gpu/drm/tiny/st7735r.c
5528
5529 DRM DRIVER FOR SONY ACX424AKP PANELS
5530 M:      Linus Walleij <linus.walleij@linaro.org>
5531 S:      Maintained
5532 T:      git git://anongit.freedesktop.org/drm/drm-misc
5533 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5534
5535 DRM DRIVER FOR ST-ERICSSON MCDE
5536 M:      Linus Walleij <linus.walleij@linaro.org>
5537 S:      Maintained
5538 T:      git git://anongit.freedesktop.org/drm/drm-misc
5539 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5540 F:      drivers/gpu/drm/mcde/
5541
5542 DRM DRIVER FOR TDFX VIDEO CARDS
5543 S:      Orphan / Obsolete
5544 F:      drivers/gpu/drm/tdfx/
5545
5546 DRM DRIVER FOR TPO TPG110 PANELS
5547 M:      Linus Walleij <linus.walleij@linaro.org>
5548 S:      Maintained
5549 T:      git git://anongit.freedesktop.org/drm/drm-misc
5550 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5551 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5552
5553 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5554 M:      Dave Airlie <airlied@redhat.com>
5555 R:      Sean Paul <sean@poorly.run>
5556 L:      dri-devel@lists.freedesktop.org
5557 S:      Odd Fixes
5558 T:      git git://anongit.freedesktop.org/drm/drm-misc
5559 F:      drivers/gpu/drm/udl/
5560
5561 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5562 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5563 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5564 R:      Daniel Vetter <daniel@ffwll.ch>
5565 L:      dri-devel@lists.freedesktop.org
5566 S:      Maintained
5567 T:      git git://anongit.freedesktop.org/drm/drm-misc
5568 F:      Documentation/gpu/vkms.rst
5569 F:      drivers/gpu/drm/vkms/
5570
5571 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5572 M:      Hans de Goede <hdegoede@redhat.com>
5573 L:      dri-devel@lists.freedesktop.org
5574 S:      Maintained
5575 T:      git git://anongit.freedesktop.org/drm/drm-misc
5576 F:      drivers/gpu/drm/vboxvideo/
5577
5578 DRM DRIVER FOR VMWARE VIRTUAL GPU
5579 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5580 M:      Roland Scheidegger <sroland@vmware.com>
5581 L:      dri-devel@lists.freedesktop.org
5582 S:      Supported
5583 T:      git git://people.freedesktop.org/~sroland/linux
5584 F:      drivers/gpu/drm/vmwgfx/
5585 F:      include/uapi/drm/vmwgfx_drm.h
5586
5587 DRM DRIVERS
5588 M:      David Airlie <airlied@linux.ie>
5589 M:      Daniel Vetter <daniel@ffwll.ch>
5590 L:      dri-devel@lists.freedesktop.org
5591 S:      Maintained
5592 B:      https://bugs.freedesktop.org/
5593 C:      irc://chat.freenode.net/dri-devel
5594 T:      git git://anongit.freedesktop.org/drm/drm
5595 F:      Documentation/devicetree/bindings/display/
5596 F:      Documentation/devicetree/bindings/gpu/
5597 F:      Documentation/gpu/
5598 F:      drivers/gpu/drm/
5599 F:      drivers/gpu/vga/
5600 F:      include/drm/
5601 F:      include/linux/vga*
5602 F:      include/uapi/drm/
5603
5604 DRM DRIVERS AND MISC GPU PATCHES
5605 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5606 M:      Maxime Ripard <mripard@kernel.org>
5607 M:      Thomas Zimmermann <tzimmermann@suse.de>
5608 S:      Maintained
5609 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5610 T:      git git://anongit.freedesktop.org/drm/drm-misc
5611 F:      Documentation/gpu/
5612 F:      drivers/gpu/drm/*
5613 F:      drivers/gpu/vga/
5614 F:      include/drm/drm*
5615 F:      include/linux/vga*
5616 F:      include/uapi/drm/drm*
5617
5618 DRM DRIVERS FOR ALLWINNER A10
5619 M:      Maxime Ripard <mripard@kernel.org>
5620 M:      Chen-Yu Tsai <wens@csie.org>
5621 L:      dri-devel@lists.freedesktop.org
5622 S:      Supported
5623 T:      git git://anongit.freedesktop.org/drm/drm-misc
5624 F:      Documentation/devicetree/bindings/display/allwinner*
5625 F:      drivers/gpu/drm/sun4i/
5626
5627 DRM DRIVERS FOR AMLOGIC SOCS
5628 M:      Neil Armstrong <narmstrong@baylibre.com>
5629 L:      dri-devel@lists.freedesktop.org
5630 L:      linux-amlogic@lists.infradead.org
5631 S:      Supported
5632 W:      http://linux-meson.com/
5633 T:      git git://anongit.freedesktop.org/drm/drm-misc
5634 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5635 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5636 F:      Documentation/gpu/meson.rst
5637 F:      drivers/gpu/drm/meson/
5638
5639 DRM DRIVERS FOR ATMEL HLCDC
5640 M:      Sam Ravnborg <sam@ravnborg.org>
5641 M:      Boris Brezillon <bbrezillon@kernel.org>
5642 L:      dri-devel@lists.freedesktop.org
5643 S:      Supported
5644 T:      git git://anongit.freedesktop.org/drm/drm-misc
5645 F:      Documentation/devicetree/bindings/display/atmel/
5646 F:      drivers/gpu/drm/atmel-hlcdc/
5647
5648 DRM DRIVERS FOR BRIDGE CHIPS
5649 M:      Andrzej Hajda <a.hajda@samsung.com>
5650 M:      Neil Armstrong <narmstrong@baylibre.com>
5651 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5652 R:      Jonas Karlman <jonas@kwiboo.se>
5653 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5654 S:      Maintained
5655 T:      git git://anongit.freedesktop.org/drm/drm-misc
5656 F:      drivers/gpu/drm/bridge/
5657
5658 DRM DRIVERS FOR EXYNOS
5659 M:      Inki Dae <inki.dae@samsung.com>
5660 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5661 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5662 M:      Kyungmin Park <kyungmin.park@samsung.com>
5663 L:      dri-devel@lists.freedesktop.org
5664 S:      Supported
5665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5666 F:      Documentation/devicetree/bindings/display/exynos/
5667 F:      drivers/gpu/drm/exynos/
5668 F:      include/uapi/drm/exynos_drm.h
5669
5670 DRM DRIVERS FOR FREESCALE DCU
5671 M:      Stefan Agner <stefan@agner.ch>
5672 M:      Alison Wang <alison.wang@nxp.com>
5673 L:      dri-devel@lists.freedesktop.org
5674 S:      Supported
5675 T:      git git://anongit.freedesktop.org/drm/drm-misc
5676 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5677 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5678 F:      drivers/gpu/drm/fsl-dcu/
5679
5680 DRM DRIVERS FOR FREESCALE IMX
5681 M:      Philipp Zabel <p.zabel@pengutronix.de>
5682 L:      dri-devel@lists.freedesktop.org
5683 S:      Maintained
5684 F:      Documentation/devicetree/bindings/display/imx/
5685 F:      drivers/gpu/drm/imx/
5686 F:      drivers/gpu/ipu-v3/
5687
5688 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5689 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5690 L:      dri-devel@lists.freedesktop.org
5691 S:      Maintained
5692 T:      git git://github.com/patjak/drm-gma500
5693 F:      drivers/gpu/drm/gma500/
5694
5695 DRM DRIVERS FOR HISILICON
5696 M:      Xinliang Liu <xinliang.liu@linaro.org>
5697 M:      Rongrong Zou <zourongrong@gmail.com>
5698 R:      John Stultz <john.stultz@linaro.org>
5699 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5700 R:      Chen Feng <puck.chen@hisilicon.com>
5701 L:      dri-devel@lists.freedesktop.org
5702 S:      Maintained
5703 T:      git git://anongit.freedesktop.org/drm/drm-misc
5704 F:      Documentation/devicetree/bindings/display/hisilicon/
5705 F:      drivers/gpu/drm/hisilicon/
5706
5707 DRM DRIVERS FOR LIMA
5708 M:      Qiang Yu <yuq825@gmail.com>
5709 L:      dri-devel@lists.freedesktop.org
5710 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5711 S:      Maintained
5712 T:      git git://anongit.freedesktop.org/drm/drm-misc
5713 F:      drivers/gpu/drm/lima/
5714 F:      include/uapi/drm/lima_drm.h
5715
5716 DRM DRIVERS FOR MEDIATEK
5717 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
5718 M:      Philipp Zabel <p.zabel@pengutronix.de>
5719 L:      dri-devel@lists.freedesktop.org
5720 S:      Supported
5721 F:      Documentation/devicetree/bindings/display/mediatek/
5722 F:      drivers/gpu/drm/mediatek/
5723
5724 DRM DRIVERS FOR NVIDIA TEGRA
5725 M:      Thierry Reding <thierry.reding@gmail.com>
5726 L:      dri-devel@lists.freedesktop.org
5727 L:      linux-tegra@vger.kernel.org
5728 S:      Supported
5729 T:      git git://anongit.freedesktop.org/tegra/linux.git
5730 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5731 F:      drivers/gpu/drm/tegra/
5732 F:      drivers/gpu/host1x/
5733 F:      include/linux/host1x.h
5734 F:      include/uapi/drm/tegra_drm.h
5735
5736 DRM DRIVERS FOR RENESAS
5737 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5738 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5739 L:      dri-devel@lists.freedesktop.org
5740 L:      linux-renesas-soc@vger.kernel.org
5741 S:      Supported
5742 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5743 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5744 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5745 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5746 F:      drivers/gpu/drm/rcar-du/
5747 F:      drivers/gpu/drm/shmobile/
5748 F:      include/linux/platform_data/shmob_drm.h
5749
5750 DRM DRIVERS FOR ROCKCHIP
5751 M:      Sandy Huang <hjc@rock-chips.com>
5752 M:      Heiko Stübner <heiko@sntech.de>
5753 L:      dri-devel@lists.freedesktop.org
5754 S:      Maintained
5755 T:      git git://anongit.freedesktop.org/drm/drm-misc
5756 F:      Documentation/devicetree/bindings/display/rockchip/
5757 F:      drivers/gpu/drm/rockchip/
5758
5759 DRM DRIVERS FOR STI
5760 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5761 M:      Vincent Abriou <vincent.abriou@st.com>
5762 L:      dri-devel@lists.freedesktop.org
5763 S:      Maintained
5764 T:      git git://anongit.freedesktop.org/drm/drm-misc
5765 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5766 F:      drivers/gpu/drm/sti
5767
5768 DRM DRIVERS FOR STM
5769 M:      Yannick Fertre <yannick.fertre@st.com>
5770 M:      Philippe Cornu <philippe.cornu@st.com>
5771 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5772 M:      Vincent Abriou <vincent.abriou@st.com>
5773 L:      dri-devel@lists.freedesktop.org
5774 S:      Maintained
5775 T:      git git://anongit.freedesktop.org/drm/drm-misc
5776 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5777 F:      drivers/gpu/drm/stm
5778
5779 DRM DRIVERS FOR TI KEYSTONE
5780 M:      Jyri Sarha <jsarha@ti.com>
5781 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5782 L:      dri-devel@lists.freedesktop.org
5783 S:      Maintained
5784 T:      git git://anongit.freedesktop.org/drm/drm-misc
5785 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5786 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5787 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5788 F:      drivers/gpu/drm/tidss/
5789
5790 DRM DRIVERS FOR TI LCDC
5791 M:      Jyri Sarha <jsarha@ti.com>
5792 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5793 L:      dri-devel@lists.freedesktop.org
5794 S:      Maintained
5795 F:      Documentation/devicetree/bindings/display/tilcdc/
5796 F:      drivers/gpu/drm/tilcdc/
5797
5798 DRM DRIVERS FOR TI OMAP
5799 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5800 L:      dri-devel@lists.freedesktop.org
5801 S:      Maintained
5802 F:      Documentation/devicetree/bindings/display/ti/
5803 F:      drivers/gpu/drm/omapdrm/
5804
5805 DRM DRIVERS FOR V3D
5806 M:      Eric Anholt <eric@anholt.net>
5807 S:      Supported
5808 T:      git git://anongit.freedesktop.org/drm/drm-misc
5809 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5810 F:      drivers/gpu/drm/v3d/
5811 F:      include/uapi/drm/v3d_drm.h
5812
5813 DRM DRIVERS FOR VC4
5814 M:      Eric Anholt <eric@anholt.net>
5815 S:      Supported
5816 T:      git git://github.com/anholt/linux
5817 T:      git git://anongit.freedesktop.org/drm/drm-misc
5818 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
5819 F:      drivers/gpu/drm/vc4/
5820 F:      include/uapi/drm/vc4_drm.h
5821
5822 DRM DRIVERS FOR VIVANTE GPU IP
5823 M:      Lucas Stach <l.stach@pengutronix.de>
5824 R:      Russell King <linux+etnaviv@armlinux.org.uk>
5825 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
5826 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
5827 L:      dri-devel@lists.freedesktop.org
5828 S:      Maintained
5829 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
5830 F:      drivers/gpu/drm/etnaviv/
5831 F:      include/uapi/drm/etnaviv_drm.h
5832
5833 DRM DRIVERS FOR XEN
5834 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
5835 L:      dri-devel@lists.freedesktop.org
5836 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
5837 S:      Supported
5838 T:      git git://anongit.freedesktop.org/drm/drm-misc
5839 F:      Documentation/gpu/xen-front.rst
5840 F:      drivers/gpu/drm/xen/
5841
5842 DRM DRIVERS FOR ZTE ZX
5843 M:      Shawn Guo <shawnguo@kernel.org>
5844 L:      dri-devel@lists.freedesktop.org
5845 S:      Maintained
5846 T:      git git://anongit.freedesktop.org/drm/drm-misc
5847 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5848 F:      drivers/gpu/drm/zte/
5849
5850 DRM PANEL DRIVERS
5851 M:      Thierry Reding <thierry.reding@gmail.com>
5852 R:      Sam Ravnborg <sam@ravnborg.org>
5853 L:      dri-devel@lists.freedesktop.org
5854 S:      Maintained
5855 T:      git git://anongit.freedesktop.org/drm/drm-misc
5856 F:      Documentation/devicetree/bindings/display/panel/
5857 F:      drivers/gpu/drm/drm_panel.c
5858 F:      drivers/gpu/drm/panel/
5859 F:      include/drm/drm_panel.h
5860
5861 DRM TTM SUBSYSTEM
5862 M:      Christian Koenig <christian.koenig@amd.com>
5863 M:      Huang Rui <ray.huang@amd.com>
5864 L:      dri-devel@lists.freedesktop.org
5865 S:      Maintained
5866 T:      git git://people.freedesktop.org/~agd5f/linux
5867 F:      drivers/gpu/drm/ttm/
5868 F:      include/drm/ttm/
5869
5870 DSBR100 USB FM RADIO DRIVER
5871 M:      Alexey Klimov <klimov.linux@gmail.com>
5872 L:      linux-media@vger.kernel.org
5873 S:      Maintained
5874 T:      git git://linuxtv.org/media_tree.git
5875 F:      drivers/media/radio/dsbr100.c
5876
5877 DT3155 MEDIA DRIVER
5878 M:      Hans Verkuil <hverkuil@xs4all.nl>
5879 L:      linux-media@vger.kernel.org
5880 S:      Odd Fixes
5881 W:      https://linuxtv.org
5882 T:      git git://linuxtv.org/media_tree.git
5883 F:      drivers/media/pci/dt3155/
5884
5885 DVB_USB_AF9015 MEDIA DRIVER
5886 M:      Antti Palosaari <crope@iki.fi>
5887 L:      linux-media@vger.kernel.org
5888 S:      Maintained
5889 W:      https://linuxtv.org
5890 W:      http://palosaari.fi/linux/
5891 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5892 T:      git git://linuxtv.org/anttip/media_tree.git
5893 F:      drivers/media/usb/dvb-usb-v2/af9015*
5894
5895 DVB_USB_AF9035 MEDIA DRIVER
5896 M:      Antti Palosaari <crope@iki.fi>
5897 L:      linux-media@vger.kernel.org
5898 S:      Maintained
5899 W:      https://linuxtv.org
5900 W:      http://palosaari.fi/linux/
5901 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5902 T:      git git://linuxtv.org/anttip/media_tree.git
5903 F:      drivers/media/usb/dvb-usb-v2/af9035*
5904
5905 DVB_USB_ANYSEE MEDIA DRIVER
5906 M:      Antti Palosaari <crope@iki.fi>
5907 L:      linux-media@vger.kernel.org
5908 S:      Maintained
5909 W:      https://linuxtv.org
5910 W:      http://palosaari.fi/linux/
5911 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5912 T:      git git://linuxtv.org/anttip/media_tree.git
5913 F:      drivers/media/usb/dvb-usb-v2/anysee*
5914
5915 DVB_USB_AU6610 MEDIA DRIVER
5916 M:      Antti Palosaari <crope@iki.fi>
5917 L:      linux-media@vger.kernel.org
5918 S:      Maintained
5919 W:      https://linuxtv.org
5920 W:      http://palosaari.fi/linux/
5921 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5922 T:      git git://linuxtv.org/anttip/media_tree.git
5923 F:      drivers/media/usb/dvb-usb-v2/au6610*
5924
5925 DVB_USB_CE6230 MEDIA DRIVER
5926 M:      Antti Palosaari <crope@iki.fi>
5927 L:      linux-media@vger.kernel.org
5928 S:      Maintained
5929 W:      https://linuxtv.org
5930 W:      http://palosaari.fi/linux/
5931 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5932 T:      git git://linuxtv.org/anttip/media_tree.git
5933 F:      drivers/media/usb/dvb-usb-v2/ce6230*
5934
5935 DVB_USB_CXUSB MEDIA DRIVER
5936 M:      Michael Krufky <mkrufky@linuxtv.org>
5937 L:      linux-media@vger.kernel.org
5938 S:      Maintained
5939 W:      https://linuxtv.org
5940 W:      http://github.com/mkrufky
5941 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5942 T:      git git://linuxtv.org/media_tree.git
5943 F:      drivers/media/usb/dvb-usb/cxusb*
5944
5945 DVB_USB_EC168 MEDIA DRIVER
5946 M:      Antti Palosaari <crope@iki.fi>
5947 L:      linux-media@vger.kernel.org
5948 S:      Maintained
5949 W:      https://linuxtv.org
5950 W:      http://palosaari.fi/linux/
5951 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5952 T:      git git://linuxtv.org/anttip/media_tree.git
5953 F:      drivers/media/usb/dvb-usb-v2/ec168*
5954
5955 DVB_USB_GL861 MEDIA DRIVER
5956 M:      Antti Palosaari <crope@iki.fi>
5957 L:      linux-media@vger.kernel.org
5958 S:      Maintained
5959 W:      https://linuxtv.org
5960 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5961 T:      git git://linuxtv.org/anttip/media_tree.git
5962 F:      drivers/media/usb/dvb-usb-v2/gl861*
5963
5964 DVB_USB_MXL111SF MEDIA DRIVER
5965 M:      Michael Krufky <mkrufky@linuxtv.org>
5966 L:      linux-media@vger.kernel.org
5967 S:      Maintained
5968 W:      https://linuxtv.org
5969 W:      http://github.com/mkrufky
5970 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5971 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
5972 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
5973
5974 DVB_USB_RTL28XXU MEDIA DRIVER
5975 M:      Antti Palosaari <crope@iki.fi>
5976 L:      linux-media@vger.kernel.org
5977 S:      Maintained
5978 W:      https://linuxtv.org
5979 W:      http://palosaari.fi/linux/
5980 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5981 T:      git git://linuxtv.org/anttip/media_tree.git
5982 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
5983
5984 DVB_USB_V2 MEDIA DRIVER
5985 M:      Antti Palosaari <crope@iki.fi>
5986 L:      linux-media@vger.kernel.org
5987 S:      Maintained
5988 W:      https://linuxtv.org
5989 W:      http://palosaari.fi/linux/
5990 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5991 T:      git git://linuxtv.org/anttip/media_tree.git
5992 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
5993 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
5994
5995 DYNAMIC DEBUG
5996 M:      Jason Baron <jbaron@akamai.com>
5997 S:      Maintained
5998 F:      include/linux/dynamic_debug.h
5999 F:      lib/dynamic_debug.c
6000
6001 DYNAMIC INTERRUPT MODERATION
6002 M:      Tal Gilboa <talgi@mellanox.com>
6003 S:      Maintained
6004 F:      Documentation/networking/net_dim.rst
6005 F:      include/linux/dim.h
6006 F:      lib/dim/
6007
6008 DZ DECSTATION DZ11 SERIAL DRIVER
6009 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
6010 S:      Maintained
6011 F:      drivers/tty/serial/dz.*
6012
6013 E3X0 POWER BUTTON DRIVER
6014 M:      Moritz Fischer <moritz.fischer@ettus.com>
6015 L:      usrp-users@lists.ettus.com
6016 S:      Supported
6017 W:      http://www.ettus.com
6018 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6019 F:      drivers/input/misc/e3x0-button.c
6020
6021 E4000 MEDIA DRIVER
6022 M:      Antti Palosaari <crope@iki.fi>
6023 L:      linux-media@vger.kernel.org
6024 S:      Maintained
6025 W:      https://linuxtv.org
6026 W:      http://palosaari.fi/linux/
6027 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6028 T:      git git://linuxtv.org/anttip/media_tree.git
6029 F:      drivers/media/tuners/e4000*
6030
6031 EARTH_PT1 MEDIA DRIVER
6032 M:      Akihiro Tsukada <tskd08@gmail.com>
6033 L:      linux-media@vger.kernel.org
6034 S:      Odd Fixes
6035 F:      drivers/media/pci/pt1/
6036
6037 EARTH_PT3 MEDIA DRIVER
6038 M:      Akihiro Tsukada <tskd08@gmail.com>
6039 L:      linux-media@vger.kernel.org
6040 S:      Odd Fixes
6041 F:      drivers/media/pci/pt3/
6042
6043 EC100 MEDIA DRIVER
6044 M:      Antti Palosaari <crope@iki.fi>
6045 L:      linux-media@vger.kernel.org
6046 S:      Maintained
6047 W:      https://linuxtv.org
6048 W:      http://palosaari.fi/linux/
6049 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6050 T:      git git://linuxtv.org/anttip/media_tree.git
6051 F:      drivers/media/dvb-frontends/ec100*
6052
6053 ECRYPT FILE SYSTEM
6054 M:      Tyler Hicks <code@tyhicks.com>
6055 L:      ecryptfs@vger.kernel.org
6056 S:      Odd Fixes
6057 W:      http://ecryptfs.org
6058 W:      https://launchpad.net/ecryptfs
6059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6060 F:      Documentation/filesystems/ecryptfs.rst
6061 F:      fs/ecryptfs/
6062
6063 EDAC-AMD64
6064 M:      Borislav Petkov <bp@alien8.de>
6065 L:      linux-edac@vger.kernel.org
6066 S:      Maintained
6067 F:      drivers/edac/amd64_edac*
6068
6069 EDAC-ARMADA
6070 M:      Jan Luebbe <jlu@pengutronix.de>
6071 L:      linux-edac@vger.kernel.org
6072 S:      Maintained
6073 F:      drivers/edac/armada_xp_*
6074
6075 EDAC-AST2500
6076 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6077 S:      Supported
6078 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6079 F:      drivers/edac/aspeed_edac.c
6080
6081 EDAC-BLUEFIELD
6082 M:      Shravan Kumar Ramani <sramani@mellanox.com>
6083 S:      Supported
6084 F:      drivers/edac/bluefield_edac.c
6085
6086 EDAC-CALXEDA
6087 M:      Robert Richter <rric@kernel.org>
6088 L:      linux-edac@vger.kernel.org
6089 S:      Maintained
6090 F:      drivers/edac/highbank*
6091
6092 EDAC-CAVIUM OCTEON
6093 M:      Ralf Baechle <ralf@linux-mips.org>
6094 M:      Robert Richter <rrichter@marvell.com>
6095 L:      linux-edac@vger.kernel.org
6096 L:      linux-mips@vger.kernel.org
6097 S:      Supported
6098 F:      drivers/edac/octeon_edac*
6099
6100 EDAC-CAVIUM THUNDERX
6101 M:      Robert Richter <rrichter@marvell.com>
6102 L:      linux-edac@vger.kernel.org
6103 S:      Supported
6104 F:      drivers/edac/thunderx_edac*
6105
6106 EDAC-CORE
6107 M:      Borislav Petkov <bp@alien8.de>
6108 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6109 M:      Tony Luck <tony.luck@intel.com>
6110 R:      James Morse <james.morse@arm.com>
6111 R:      Robert Richter <rrichter@marvell.com>
6112 L:      linux-edac@vger.kernel.org
6113 S:      Supported
6114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6115 F:      Documentation/admin-guide/ras.rst
6116 F:      Documentation/driver-api/edac.rst
6117 F:      drivers/edac/
6118 F:      include/linux/edac.h
6119
6120 EDAC-DMC520
6121 M:      Lei Wang <lewan@microsoft.com>
6122 L:      linux-edac@vger.kernel.org
6123 S:      Supported
6124 F:      drivers/edac/dmc520_edac.c
6125
6126 EDAC-E752X
6127 M:      Mark Gross <mark.gross@intel.com>
6128 L:      linux-edac@vger.kernel.org
6129 S:      Maintained
6130 F:      drivers/edac/e752x_edac.c
6131
6132 EDAC-E7XXX
6133 L:      linux-edac@vger.kernel.org
6134 S:      Maintained
6135 F:      drivers/edac/e7xxx_edac.c
6136
6137 EDAC-FSL_DDR
6138 M:      York Sun <york.sun@nxp.com>
6139 L:      linux-edac@vger.kernel.org
6140 S:      Maintained
6141 F:      drivers/edac/fsl_ddr_edac.*
6142
6143 EDAC-GHES
6144 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6145 L:      linux-edac@vger.kernel.org
6146 S:      Maintained
6147 F:      drivers/edac/ghes_edac.c
6148
6149 EDAC-I10NM
6150 M:      Tony Luck <tony.luck@intel.com>
6151 L:      linux-edac@vger.kernel.org
6152 S:      Maintained
6153 F:      drivers/edac/i10nm_base.c
6154
6155 EDAC-I3000
6156 L:      linux-edac@vger.kernel.org
6157 S:      Orphan
6158 F:      drivers/edac/i3000_edac.c
6159
6160 EDAC-I5000
6161 L:      linux-edac@vger.kernel.org
6162 S:      Maintained
6163 F:      drivers/edac/i5000_edac.c
6164
6165 EDAC-I5400
6166 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6167 L:      linux-edac@vger.kernel.org
6168 S:      Maintained
6169 F:      drivers/edac/i5400_edac.c
6170
6171 EDAC-I7300
6172 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6173 L:      linux-edac@vger.kernel.org
6174 S:      Maintained
6175 F:      drivers/edac/i7300_edac.c
6176
6177 EDAC-I7CORE
6178 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6179 L:      linux-edac@vger.kernel.org
6180 S:      Maintained
6181 F:      drivers/edac/i7core_edac.c
6182
6183 EDAC-I82443BXGX
6184 M:      Tim Small <tim@buttersideup.com>
6185 L:      linux-edac@vger.kernel.org
6186 S:      Maintained
6187 F:      drivers/edac/i82443bxgx_edac.c
6188
6189 EDAC-I82975X
6190 M:      "Arvind R." <arvino55@gmail.com>
6191 L:      linux-edac@vger.kernel.org
6192 S:      Maintained
6193 F:      drivers/edac/i82975x_edac.c
6194
6195 EDAC-IE31200
6196 M:      Jason Baron <jbaron@akamai.com>
6197 L:      linux-edac@vger.kernel.org
6198 S:      Maintained
6199 F:      drivers/edac/ie31200_edac.c
6200
6201 EDAC-MPC85XX
6202 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6203 L:      linux-edac@vger.kernel.org
6204 S:      Maintained
6205 F:      drivers/edac/mpc85xx_edac.[ch]
6206
6207 EDAC-PASEMI
6208 M:      Egor Martovetsky <egor@pasemi.com>
6209 L:      linux-edac@vger.kernel.org
6210 S:      Maintained
6211 F:      drivers/edac/pasemi_edac.c
6212
6213 EDAC-PND2
6214 M:      Tony Luck <tony.luck@intel.com>
6215 L:      linux-edac@vger.kernel.org
6216 S:      Maintained
6217 F:      drivers/edac/pnd2_edac.[ch]
6218
6219 EDAC-QCOM
6220 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6221 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6222 L:      linux-arm-msm@vger.kernel.org
6223 L:      linux-edac@vger.kernel.org
6224 S:      Maintained
6225 F:      drivers/edac/qcom_edac.c
6226
6227 EDAC-R82600
6228 M:      Tim Small <tim@buttersideup.com>
6229 L:      linux-edac@vger.kernel.org
6230 S:      Maintained
6231 F:      drivers/edac/r82600_edac.c
6232
6233 EDAC-SBRIDGE
6234 M:      Tony Luck <tony.luck@intel.com>
6235 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6236 L:      linux-edac@vger.kernel.org
6237 S:      Maintained
6238 F:      drivers/edac/sb_edac.c
6239
6240 EDAC-SIFIVE
6241 M:      Yash Shah <yash.shah@sifive.com>
6242 L:      linux-edac@vger.kernel.org
6243 S:      Supported
6244 F:      drivers/edac/sifive_edac.c
6245
6246 EDAC-SKYLAKE
6247 M:      Tony Luck <tony.luck@intel.com>
6248 L:      linux-edac@vger.kernel.org
6249 S:      Maintained
6250 F:      drivers/edac/skx_*.c
6251
6252 EDAC-TI
6253 M:      Tero Kristo <t-kristo@ti.com>
6254 L:      linux-edac@vger.kernel.org
6255 S:      Maintained
6256 F:      drivers/edac/ti_edac.c
6257
6258 EDIROL UA-101/UA-1000 DRIVER
6259 M:      Clemens Ladisch <clemens@ladisch.de>
6260 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6261 S:      Maintained
6262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6263 F:      sound/usb/misc/ua101.c
6264
6265 EFI TEST DRIVER
6266 M:      Ivan Hu <ivan.hu@canonical.com>
6267 M:      Ard Biesheuvel <ardb@kernel.org>
6268 L:      linux-efi@vger.kernel.org
6269 S:      Maintained
6270 F:      drivers/firmware/efi/test/
6271
6272 EFI VARIABLE FILESYSTEM
6273 M:      Matthew Garrett <matthew.garrett@nebula.com>
6274 M:      Jeremy Kerr <jk@ozlabs.org>
6275 M:      Ard Biesheuvel <ardb@kernel.org>
6276 L:      linux-efi@vger.kernel.org
6277 S:      Maintained
6278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6279 F:      fs/efivarfs/
6280
6281 EFIFB FRAMEBUFFER DRIVER
6282 M:      Peter Jones <pjones@redhat.com>
6283 L:      linux-fbdev@vger.kernel.org
6284 S:      Maintained
6285 F:      drivers/video/fbdev/efifb.c
6286
6287 EFS FILESYSTEM
6288 S:      Orphan
6289 W:      http://aeschi.ch.eu.org/efs/
6290 F:      fs/efs/
6291
6292 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6293 M:      Douglas Miller <dougmill@linux.ibm.com>
6294 L:      netdev@vger.kernel.org
6295 S:      Maintained
6296 F:      drivers/net/ethernet/ibm/ehea/
6297
6298 EM28XX VIDEO4LINUX DRIVER
6299 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6300 L:      linux-media@vger.kernel.org
6301 S:      Maintained
6302 W:      https://linuxtv.org
6303 T:      git git://linuxtv.org/media_tree.git
6304 F:      Documentation/admin-guide/media/em28xx*
6305 F:      drivers/media/usb/em28xx/
6306
6307 EMBEDDED LINUX
6308 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6309 M:      Matt Mackall <mpm@selenic.com>
6310 M:      David Woodhouse <dwmw2@infradead.org>
6311 L:      linux-embedded@vger.kernel.org
6312 S:      Maintained
6313
6314 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6315 M:      Adrian Hunter <adrian.hunter@intel.com>
6316 M:      Ritesh Harjani <riteshh@codeaurora.org>
6317 M:      Asutosh Das <asutoshd@codeaurora.org>
6318 L:      linux-mmc@vger.kernel.org
6319 S:      Maintained
6320 F:      drivers/mmc/host/cqhci*
6321
6322 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6323 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6324 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6325 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6326 L:      linux-scsi@vger.kernel.org
6327 S:      Supported
6328 W:      http://www.broadcom.com
6329 F:      drivers/scsi/be2iscsi/
6330
6331 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6332 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6333 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6334 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6335 L:      netdev@vger.kernel.org
6336 S:      Supported
6337 W:      http://www.emulex.com
6338 F:      drivers/net/ethernet/emulex/benet/
6339
6340 EMULEX ONECONNECT ROCE DRIVER
6341 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6342 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6343 L:      linux-rdma@vger.kernel.org
6344 S:      Odd Fixes
6345 W:      http://www.broadcom.com
6346 F:      drivers/infiniband/hw/ocrdma/
6347 F:      include/uapi/rdma/ocrdma-abi.h
6348
6349 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6350 M:      James Smart <james.smart@broadcom.com>
6351 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6352 L:      linux-scsi@vger.kernel.org
6353 S:      Supported
6354 W:      http://www.broadcom.com
6355 F:      drivers/scsi/lpfc/
6356
6357 ENE CB710 FLASH CARD READER DRIVER
6358 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6359 S:      Maintained
6360 F:      drivers/misc/cb710/
6361 F:      drivers/mmc/host/cb710-mmc.*
6362 F:      include/linux/cb710.h
6363
6364 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6365 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6366 S:      Maintained
6367 F:      drivers/media/rc/ene_ir.*
6368
6369 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6370 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6371 L:      linuxppc-dev@lists.ozlabs.org
6372 S:      Maintained
6373 F:      drivers/tty/ehv_bytechan.c
6374
6375 EPSON S1D13XXX FRAMEBUFFER DRIVER
6376 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6377 S:      Maintained
6378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6379 F:      drivers/video/fbdev/s1d13xxxfb.c
6380 F:      include/video/s1d13xxxfb.h
6381
6382 EROFS FILE SYSTEM
6383 M:      Gao Xiang <xiang@kernel.org>
6384 M:      Chao Yu <yuchao0@huawei.com>
6385 L:      linux-erofs@lists.ozlabs.org
6386 S:      Maintained
6387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6388 F:      Documentation/filesystems/erofs.rst
6389 F:      fs/erofs/
6390 F:      include/trace/events/erofs.h
6391
6392 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6393 M:      Jeff Layton <jlayton@kernel.org>
6394 S:      Maintained
6395 F:      include/linux/errseq.h
6396 F:      lib/errseq.c
6397
6398 ET131X NETWORK DRIVER
6399 M:      Mark Einon <mark.einon@gmail.com>
6400 S:      Odd Fixes
6401 F:      drivers/net/ethernet/agere/
6402
6403 ETHERNET BRIDGE
6404 M:      Roopa Prabhu <roopa@cumulusnetworks.com>
6405 M:      Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
6406 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6407 L:      netdev@vger.kernel.org
6408 S:      Maintained
6409 W:      http://www.linuxfoundation.org/en/Net:Bridge
6410 F:      include/linux/netfilter_bridge/
6411 F:      net/bridge/
6412
6413 ETHERNET PHY LIBRARY
6414 M:      Andrew Lunn <andrew@lunn.ch>
6415 M:      Florian Fainelli <f.fainelli@gmail.com>
6416 M:      Heiner Kallweit <hkallweit1@gmail.com>
6417 R:      Russell King <linux@armlinux.org.uk>
6418 L:      netdev@vger.kernel.org
6419 S:      Maintained
6420 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6421 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6422 F:      Documentation/devicetree/bindings/net/mdio*
6423 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6424 F:      Documentation/networking/phy.rst
6425 F:      drivers/net/phy/
6426 F:      drivers/of/of_mdio.c
6427 F:      drivers/of/of_net.c
6428 F:      include/dt-bindings/net/qca-ar803x.h
6429 F:      include/linux/*mdio*.h
6430 F:      include/linux/of_net.h
6431 F:      include/linux/phy.h
6432 F:      include/linux/phy_fixed.h
6433 F:      include/linux/platform_data/mdio-bcm-unimac.h
6434 F:      include/linux/platform_data/mdio-gpio.h
6435 F:      include/trace/events/mdio.h
6436 F:      include/uapi/linux/mdio.h
6437 F:      include/uapi/linux/mii.h
6438
6439 EXFAT FILE SYSTEM
6440 M:      Namjae Jeon <namjae.jeon@samsung.com>
6441 M:      Sungjong Seo <sj1557.seo@samsung.com>
6442 L:      linux-fsdevel@vger.kernel.org
6443 S:      Maintained
6444 F:      fs/exfat/
6445
6446 EXT2 FILE SYSTEM
6447 M:      Jan Kara <jack@suse.com>
6448 L:      linux-ext4@vger.kernel.org
6449 S:      Maintained
6450 F:      Documentation/filesystems/ext2.rst
6451 F:      fs/ext2/
6452 F:      include/linux/ext2*
6453
6454 EXT4 FILE SYSTEM
6455 M:      "Theodore Ts'o" <tytso@mit.edu>
6456 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6457 L:      linux-ext4@vger.kernel.org
6458 S:      Maintained
6459 W:      http://ext4.wiki.kernel.org
6460 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6462 F:      Documentation/filesystems/ext4/
6463 F:      fs/ext4/
6464
6465 Extended Verification Module (EVM)
6466 M:      Mimi Zohar <zohar@linux.ibm.com>
6467 L:      linux-integrity@vger.kernel.org
6468 S:      Supported
6469 F:      security/integrity/evm/
6470
6471 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6472 M:      Ard Biesheuvel <ardb@kernel.org>
6473 L:      linux-efi@vger.kernel.org
6474 S:      Maintained
6475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6476 F:      Documentation/admin-guide/efi-stub.rst
6477 F:      arch/*/include/asm/efi.h
6478 F:      arch/*/kernel/efi.c
6479 F:      arch/arm/boot/compressed/efi-header.S
6480 F:      arch/arm64/kernel/efi-entry.S
6481 F:      arch/x86/platform/efi/
6482 F:      drivers/firmware/efi/
6483 F:      include/linux/efi*.h
6484
6485 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6486 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6487 M:      Chanwoo Choi <cw00.choi@samsung.com>
6488 L:      linux-kernel@vger.kernel.org
6489 S:      Maintained
6490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6491 F:      Documentation/devicetree/bindings/extcon/
6492 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6493 F:      drivers/extcon/
6494 F:      include/linux/extcon.h
6495 F:      include/linux/extcon/
6496
6497 EXTRA BOOT CONFIG
6498 M:      Masami Hiramatsu <mhiramat@kernel.org>
6499 S:      Maintained
6500 F:      Documentation/admin-guide/bootconfig.rst
6501 F:      fs/proc/bootconfig.c
6502 F:      include/linux/bootconfig.h
6503 F:      lib/bootconfig.c
6504 F:      tools/bootconfig/*
6505
6506 EXYNOS DP DRIVER
6507 M:      Jingoo Han <jingoohan1@gmail.com>
6508 L:      dri-devel@lists.freedesktop.org
6509 S:      Maintained
6510 F:      drivers/gpu/drm/exynos/exynos_dp*
6511
6512 EXYNOS SYSMMU (IOMMU) driver
6513 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6514 L:      iommu@lists.linux-foundation.org
6515 S:      Maintained
6516 F:      drivers/iommu/exynos-iommu.c
6517
6518 EZchip NPS platform support
6519 M:      Vineet Gupta <vgupta@synopsys.com>
6520 M:      Ofer Levi <oferle@mellanox.com>
6521 S:      Supported
6522 F:      arch/arc/boot/dts/eznps.dts
6523 F:      arch/arc/plat-eznps
6524
6525 F2FS FILE SYSTEM
6526 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6527 M:      Chao Yu <yuchao0@huawei.com>
6528 L:      linux-f2fs-devel@lists.sourceforge.net
6529 S:      Maintained
6530 W:      https://f2fs.wiki.kernel.org/
6531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6532 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6533 F:      Documentation/filesystems/f2fs.rst
6534 F:      fs/f2fs/
6535 F:      include/linux/f2fs_fs.h
6536 F:      include/trace/events/f2fs.h
6537
6538 F71805F HARDWARE MONITORING DRIVER
6539 M:      Jean Delvare <jdelvare@suse.com>
6540 L:      linux-hwmon@vger.kernel.org
6541 S:      Maintained
6542 F:      Documentation/hwmon/f71805f.rst
6543 F:      drivers/hwmon/f71805f.c
6544
6545 FADDR2LINE
6546 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6547 S:      Maintained
6548 F:      scripts/faddr2line
6549
6550 FAILOVER MODULE
6551 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6552 L:      netdev@vger.kernel.org
6553 S:      Supported
6554 F:      Documentation/networking/failover.rst
6555 F:      include/net/failover.h
6556 F:      net/core/failover.c
6557
6558 FANOTIFY
6559 M:      Jan Kara <jack@suse.cz>
6560 R:      Amir Goldstein <amir73il@gmail.com>
6561 L:      linux-fsdevel@vger.kernel.org
6562 S:      Maintained
6563 F:      fs/notify/fanotify/
6564 F:      include/linux/fanotify.h
6565 F:      include/uapi/linux/fanotify.h
6566
6567 FARSYNC SYNCHRONOUS DRIVER
6568 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6569 S:      Supported
6570 W:      http://www.farsite.co.uk/
6571 F:      drivers/net/wan/farsync.*
6572
6573 FAULT INJECTION SUPPORT
6574 M:      Akinobu Mita <akinobu.mita@gmail.com>
6575 S:      Supported
6576 F:      Documentation/fault-injection/
6577 F:      lib/fault-inject.c
6578
6579 FBTFT Framebuffer drivers
6580 L:      dri-devel@lists.freedesktop.org
6581 L:      linux-fbdev@vger.kernel.org
6582 S:      Orphan
6583 F:      drivers/staging/fbtft/
6584
6585 FC0011 TUNER DRIVER
6586 M:      Michael Buesch <m@bues.ch>
6587 L:      linux-media@vger.kernel.org
6588 S:      Maintained
6589 F:      drivers/media/tuners/fc0011.c
6590 F:      drivers/media/tuners/fc0011.h
6591
6592 FC2580 MEDIA DRIVER
6593 M:      Antti Palosaari <crope@iki.fi>
6594 L:      linux-media@vger.kernel.org
6595 S:      Maintained
6596 W:      https://linuxtv.org
6597 W:      http://palosaari.fi/linux/
6598 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6599 T:      git git://linuxtv.org/anttip/media_tree.git
6600 F:      drivers/media/tuners/fc2580*
6601
6602 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6603 M:      Hannes Reinecke <hare@suse.de>
6604 L:      linux-scsi@vger.kernel.org
6605 S:      Supported
6606 W:      www.Open-FCoE.org
6607 F:      drivers/scsi/fcoe/
6608 F:      drivers/scsi/libfc/
6609 F:      include/scsi/fc/
6610 F:      include/scsi/libfc.h
6611 F:      include/scsi/libfcoe.h
6612 F:      include/uapi/scsi/fc/
6613
6614 FILE LOCKING (flock() and fcntl()/lockf())
6615 M:      Jeff Layton <jlayton@kernel.org>
6616 M:      "J. Bruce Fields" <bfields@fieldses.org>
6617 L:      linux-fsdevel@vger.kernel.org
6618 S:      Maintained
6619 F:      fs/fcntl.c
6620 F:      fs/locks.c
6621 F:      include/linux/fcntl.h
6622 F:      include/uapi/linux/fcntl.h
6623
6624 FILESYSTEM DIRECT ACCESS (DAX)
6625 M:      Dan Williams <dan.j.williams@intel.com>
6626 R:      Matthew Wilcox <willy@infradead.org>
6627 R:      Jan Kara <jack@suse.cz>
6628 L:      linux-fsdevel@vger.kernel.org
6629 L:      linux-nvdimm@lists.01.org
6630 S:      Supported
6631 F:      fs/dax.c
6632 F:      include/linux/dax.h
6633 F:      include/trace/events/fs_dax.h
6634
6635 FILESYSTEMS (VFS and infrastructure)
6636 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6637 L:      linux-fsdevel@vger.kernel.org
6638 S:      Maintained
6639 F:      fs/*
6640 F:      include/linux/fs.h
6641 F:      include/linux/fs_types.h
6642 F:      include/uapi/linux/fs.h
6643 F:      include/uapi/linux/openat2.h
6644
6645 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6646 M:      Riku Voipio <riku.voipio@iki.fi>
6647 L:      linux-hwmon@vger.kernel.org
6648 S:      Maintained
6649 F:      drivers/hwmon/f75375s.c
6650 F:      include/linux/f75375s.h
6651
6652 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6653 M:      Clemens Ladisch <clemens@ladisch.de>
6654 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
6655 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6656 S:      Maintained
6657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6658 F:      include/uapi/sound/firewire.h
6659 F:      sound/firewire/
6660
6661 FIREWIRE MEDIA DRIVERS (firedtv)
6662 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6663 L:      linux-media@vger.kernel.org
6664 L:      linux1394-devel@lists.sourceforge.net
6665 S:      Maintained
6666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6667 F:      drivers/media/firewire/
6668
6669 FIREWIRE SBP-2 TARGET
6670 M:      Chris Boot <bootc@bootc.net>
6671 L:      linux-scsi@vger.kernel.org
6672 L:      target-devel@vger.kernel.org
6673 L:      linux1394-devel@lists.sourceforge.net
6674 S:      Maintained
6675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6676 F:      drivers/target/sbp/
6677
6678 FIREWIRE SUBSYSTEM
6679 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6680 L:      linux1394-devel@lists.sourceforge.net
6681 S:      Maintained
6682 W:      http://ieee1394.wiki.kernel.org/
6683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6684 F:      drivers/firewire/
6685 F:      include/linux/firewire.h
6686 F:      include/uapi/linux/firewire*.h
6687 F:      tools/firewire/
6688
6689 FIRMWARE LOADER (request_firmware)
6690 M:      Luis Chamberlain <mcgrof@kernel.org>
6691 L:      linux-kernel@vger.kernel.org
6692 S:      Maintained
6693 F:      Documentation/firmware_class/
6694 F:      drivers/base/firmware_loader/
6695 F:      include/linux/firmware.h
6696
6697 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6698 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6699 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6700 S:      Maintained
6701 F:      drivers/block/rsxx/
6702
6703 FLEXTIMER FTM-QUADDEC DRIVER
6704 M:      Patrick Havelange <patrick.havelange@essensium.com>
6705 L:      linux-iio@vger.kernel.org
6706 S:      Maintained
6707 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6708 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6709 F:      drivers/counter/ftm-quaddec.c
6710
6711 FLOPPY DRIVER
6712 M:      Denis Efremov <efremov@linux.com>
6713 L:      linux-block@vger.kernel.org
6714 S:      Odd Fixes
6715 F:      drivers/block/floppy.c
6716
6717 FLYSKY FSIA6B RC RECEIVER
6718 M:      Markus Koch <markus@notsyncing.net>
6719 L:      linux-input@vger.kernel.org
6720 S:      Maintained
6721 F:      drivers/input/joystick/fsia6b.c
6722
6723 FORCEDETH GIGABIT ETHERNET DRIVER
6724 M:      Rain River <rain.1986.08.12@gmail.com>
6725 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
6726 L:      netdev@vger.kernel.org
6727 S:      Maintained
6728 F:      drivers/net/ethernet/nvidia/*
6729
6730 FPGA DFL DRIVERS
6731 M:      Wu Hao <hao.wu@intel.com>
6732 L:      linux-fpga@vger.kernel.org
6733 S:      Maintained
6734 F:      Documentation/fpga/dfl.rst
6735 F:      drivers/fpga/dfl*
6736 F:      include/uapi/linux/fpga-dfl.h
6737
6738 FPGA MANAGER FRAMEWORK
6739 M:      Moritz Fischer <mdf@kernel.org>
6740 L:      linux-fpga@vger.kernel.org
6741 S:      Maintained
6742 W:      http://www.rocketboards.org
6743 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6745 F:      Documentation/devicetree/bindings/fpga/
6746 F:      Documentation/driver-api/fpga/
6747 F:      Documentation/fpga/
6748 F:      drivers/fpga/
6749 F:      include/linux/fpga/
6750
6751 FPU EMULATOR
6752 M:      Bill Metzenthen <billm@melbpc.org.au>
6753 S:      Maintained
6754 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6755 F:      arch/x86/math-emu/
6756
6757 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6758 L:      netdev@vger.kernel.org
6759 S:      Orphan
6760 F:      drivers/net/wan/dlci.c
6761 F:      drivers/net/wan/sdla.c
6762
6763 FRAMEBUFFER LAYER
6764 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6765 L:      dri-devel@lists.freedesktop.org
6766 L:      linux-fbdev@vger.kernel.org
6767 S:      Maintained
6768 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6769 T:      git git://anongit.freedesktop.org/drm/drm-misc
6770 F:      Documentation/fb/
6771 F:      drivers/video/
6772 F:      include/linux/fb.h
6773 F:      include/uapi/linux/fb.h
6774 F:      include/uapi/video/
6775 F:      include/video/
6776
6777 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6778 M:      Horia Geantă <horia.geanta@nxp.com>
6779 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6780 L:      linux-crypto@vger.kernel.org
6781 S:      Maintained
6782 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6783 F:      drivers/crypto/caam/
6784
6785 FREESCALE COLDFIRE M5441X MMC DRIVER
6786 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
6787 L:      linux-mmc@vger.kernel.org
6788 S:      Maintained
6789 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
6790 F:      include/linux/platform_data/mmc-esdhc-mcf.h
6791
6792 FREESCALE DIU FRAMEBUFFER DRIVER
6793 M:      Timur Tabi <timur@kernel.org>
6794 L:      linux-fbdev@vger.kernel.org
6795 S:      Maintained
6796 F:      drivers/video/fbdev/fsl-diu-fb.*
6797
6798 FREESCALE DMA DRIVER
6799 M:      Li Yang <leoyang.li@nxp.com>
6800 M:      Zhang Wei <zw@zh-kernel.org>
6801 L:      linuxppc-dev@lists.ozlabs.org
6802 S:      Maintained
6803 F:      drivers/dma/fsldma.*
6804
6805 FREESCALE ENETC ETHERNET DRIVERS
6806 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6807 L:      netdev@vger.kernel.org
6808 S:      Maintained
6809 F:      drivers/net/ethernet/freescale/enetc/
6810
6811 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6812 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6813 L:      netdev@vger.kernel.org
6814 S:      Maintained
6815 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6816 F:      drivers/net/ethernet/freescale/gianfar*
6817
6818 FREESCALE GPMI NAND DRIVER
6819 M:      Han Xu <han.xu@nxp.com>
6820 L:      linux-mtd@lists.infradead.org
6821 S:      Maintained
6822 F:      drivers/mtd/nand/raw/gpmi-nand/*
6823
6824 FREESCALE I2C CPM DRIVER
6825 M:      Jochen Friedrich <jochen@scram.de>
6826 L:      linuxppc-dev@lists.ozlabs.org
6827 L:      linux-i2c@vger.kernel.org
6828 S:      Maintained
6829 F:      drivers/i2c/busses/i2c-cpm.c
6830
6831 FREESCALE IMX / MXC FEC DRIVER
6832 M:      Fugang Duan <fugang.duan@nxp.com>
6833 L:      netdev@vger.kernel.org
6834 S:      Maintained
6835 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6836 F:      drivers/net/ethernet/freescale/fec.h
6837 F:      drivers/net/ethernet/freescale/fec_main.c
6838 F:      drivers/net/ethernet/freescale/fec_ptp.c
6839
6840 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6841 M:      Sascha Hauer <s.hauer@pengutronix.de>
6842 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6843 L:      linux-fbdev@vger.kernel.org
6844 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6845 S:      Maintained
6846 F:      drivers/video/fbdev/imxfb.c
6847 F:      include/linux/platform_data/video-imxfb.h
6848
6849 FREESCALE IMX DDR PMU DRIVER
6850 M:      Frank Li <Frank.li@nxp.com>
6851 L:      linux-arm-kernel@lists.infradead.org
6852 S:      Maintained
6853 F:      Documentation/admin-guide/perf/imx-ddr.rst
6854 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.txt
6855 F:      drivers/perf/fsl_imx8_ddr_perf.c
6856
6857 FREESCALE IMX I2C DRIVER
6858 M:      Oleksij Rempel <o.rempel@pengutronix.de>
6859 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6860 L:      linux-i2c@vger.kernel.org
6861 S:      Maintained
6862 F:      Documentation/devicetree/bindings/i2c/i2c-imx.txt
6863 F:      drivers/i2c/busses/i2c-imx.c
6864
6865 FREESCALE IMX LPI2C DRIVER
6866 M:      Dong Aisheng <aisheng.dong@nxp.com>
6867 L:      linux-i2c@vger.kernel.org
6868 L:      linux-imx@nxp.com
6869 S:      Maintained
6870 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6871 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
6872
6873 FREESCALE QORIQ DPAA ETHERNET DRIVER
6874 M:      Madalin Bucur <madalin.bucur@nxp.com>
6875 L:      netdev@vger.kernel.org
6876 S:      Maintained
6877 F:      drivers/net/ethernet/freescale/dpaa
6878
6879 FREESCALE QORIQ DPAA FMAN DRIVER
6880 M:      Madalin Bucur <madalin.bucur@nxp.com>
6881 L:      netdev@vger.kernel.org
6882 S:      Maintained
6883 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
6884 F:      drivers/net/ethernet/freescale/fman
6885
6886 FREESCALE QORIQ PTP CLOCK DRIVER
6887 M:      Yangbo Lu <yangbo.lu@nxp.com>
6888 L:      netdev@vger.kernel.org
6889 S:      Maintained
6890 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
6891 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
6892 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
6893 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
6894 F:      drivers/ptp/ptp_qoriq.c
6895 F:      drivers/ptp/ptp_qoriq_debugfs.c
6896 F:      include/linux/fsl/ptp_qoriq.h
6897
6898 FREESCALE QUAD SPI DRIVER
6899 M:      Han Xu <han.xu@nxp.com>
6900 L:      linux-spi@vger.kernel.org
6901 S:      Maintained
6902 F:      drivers/spi/spi-fsl-qspi.c
6903
6904 FREESCALE QUICC ENGINE LIBRARY
6905 M:      Qiang Zhao <qiang.zhao@nxp.com>
6906 L:      linuxppc-dev@lists.ozlabs.org
6907 S:      Maintained
6908 F:      drivers/soc/fsl/qe/
6909 F:      include/soc/fsl/*qe*.h
6910 F:      include/soc/fsl/*ucc*.h
6911
6912 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
6913 M:      Li Yang <leoyang.li@nxp.com>
6914 L:      netdev@vger.kernel.org
6915 L:      linuxppc-dev@lists.ozlabs.org
6916 S:      Maintained
6917 F:      drivers/net/ethernet/freescale/ucc_geth*
6918
6919 FREESCALE QUICC ENGINE UCC HDLC DRIVER
6920 M:      Zhao Qiang <qiang.zhao@nxp.com>
6921 L:      netdev@vger.kernel.org
6922 L:      linuxppc-dev@lists.ozlabs.org
6923 S:      Maintained
6924 F:      drivers/net/wan/fsl_ucc_hdlc*
6925
6926 FREESCALE QUICC ENGINE UCC UART DRIVER
6927 M:      Timur Tabi <timur@kernel.org>
6928 L:      linuxppc-dev@lists.ozlabs.org
6929 S:      Maintained
6930 F:      drivers/tty/serial/ucc_uart.c
6931
6932 FREESCALE SOC DRIVERS
6933 M:      Li Yang <leoyang.li@nxp.com>
6934 L:      linuxppc-dev@lists.ozlabs.org
6935 L:      linux-arm-kernel@lists.infradead.org
6936 S:      Maintained
6937 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
6938 F:      Documentation/devicetree/bindings/soc/fsl/
6939 F:      drivers/soc/fsl/
6940 F:      include/linux/fsl/
6941
6942 FREESCALE SOC FS_ENET DRIVER
6943 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
6944 L:      linuxppc-dev@lists.ozlabs.org
6945 L:      netdev@vger.kernel.org
6946 S:      Maintained
6947 F:      drivers/net/ethernet/freescale/fs_enet/
6948 F:      include/linux/fs_enet_pd.h
6949
6950 FREESCALE SOC SOUND DRIVERS
6951 M:      Timur Tabi <timur@kernel.org>
6952 M:      Nicolin Chen <nicoleotsuka@gmail.com>
6953 M:      Xiubo Li <Xiubo.Lee@gmail.com>
6954 R:      Fabio Estevam <festevam@gmail.com>
6955 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6956 L:      linuxppc-dev@lists.ozlabs.org
6957 S:      Maintained
6958 F:      sound/soc/fsl/fsl*
6959 F:      sound/soc/fsl/imx*
6960 F:      sound/soc/fsl/mpc8610_hpcd.c
6961
6962 FREESCALE USB PERIPHERAL DRIVERS
6963 M:      Li Yang <leoyang.li@nxp.com>
6964 L:      linux-usb@vger.kernel.org
6965 L:      linuxppc-dev@lists.ozlabs.org
6966 S:      Maintained
6967 F:      drivers/usb/gadget/udc/fsl*
6968
6969 FREEVXFS FILESYSTEM
6970 M:      Christoph Hellwig <hch@infradead.org>
6971 S:      Maintained
6972 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
6973 F:      fs/freevxfs/
6974
6975 FREEZER
6976 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6977 M:      Pavel Machek <pavel@ucw.cz>
6978 L:      linux-pm@vger.kernel.org
6979 S:      Supported
6980 F:      Documentation/power/freezing-of-tasks.rst
6981 F:      include/linux/freezer.h
6982 F:      kernel/freezer.c
6983
6984 FRONTSWAP API
6985 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
6986 L:      linux-kernel@vger.kernel.org
6987 S:      Maintained
6988 F:      include/linux/frontswap.h
6989 F:      mm/frontswap.c
6990
6991 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
6992 M:      David Howells <dhowells@redhat.com>
6993 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
6994 S:      Supported
6995 F:      Documentation/filesystems/caching/
6996 F:      fs/fscache/
6997 F:      include/linux/fscache*.h
6998
6999 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7000 M:      Theodore Y. Ts'o <tytso@mit.edu>
7001 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7002 M:      Eric Biggers <ebiggers@kernel.org>
7003 L:      linux-fscrypt@vger.kernel.org
7004 S:      Supported
7005 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7006 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7007 F:      Documentation/filesystems/fscrypt.rst
7008 F:      fs/crypto/
7009 F:      include/linux/fscrypt*.h
7010 F:      include/uapi/linux/fscrypt.h
7011
7012 FSI SUBSYSTEM
7013 M:      Jeremy Kerr <jk@ozlabs.org>
7014 M:      Joel Stanley <joel@jms.id.au>
7015 R:      Alistar Popple <alistair@popple.id.au>
7016 R:      Eddie James <eajames@linux.ibm.com>
7017 L:      linux-fsi@lists.ozlabs.org
7018 S:      Supported
7019 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7021 F:      drivers/fsi/
7022 F:      include/linux/fsi*.h
7023 F:      include/trace/events/fsi*.h
7024
7025 FSI-ATTACHED I2C DRIVER
7026 M:      Eddie James <eajames@linux.ibm.com>
7027 L:      linux-i2c@vger.kernel.org
7028 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7029 S:      Maintained
7030 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7031 F:      drivers/i2c/busses/i2c-fsi.c
7032
7033 FSI-ATTACHED SPI DRIVER
7034 M:      Eddie James <eajames@linux.ibm.com>
7035 L:      linux-spi@vger.kernel.org
7036 S:      Maintained
7037 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7038 F:      drivers/spi/spi-fsi.c
7039
7040 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7041 M:      Jan Kara <jack@suse.cz>
7042 R:      Amir Goldstein <amir73il@gmail.com>
7043 L:      linux-fsdevel@vger.kernel.org
7044 S:      Maintained
7045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7046 F:      fs/notify/
7047 F:      include/linux/fsnotify*.h
7048
7049 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7050 M:      Eric Biggers <ebiggers@kernel.org>
7051 M:      Theodore Y. Ts'o <tytso@mit.edu>
7052 L:      linux-fscrypt@vger.kernel.org
7053 S:      Supported
7054 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7055 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7056 F:      Documentation/filesystems/fsverity.rst
7057 F:      fs/verity/
7058 F:      include/linux/fsverity.h
7059 F:      include/uapi/linux/fsverity.h
7060
7061 FUJITSU LAPTOP EXTRAS
7062 M:      Jonathan Woithe <jwoithe@just42.net>
7063 L:      platform-driver-x86@vger.kernel.org
7064 S:      Maintained
7065 F:      drivers/platform/x86/fujitsu-laptop.c
7066
7067 FUJITSU M-5MO LS CAMERA ISP DRIVER
7068 M:      Kyungmin Park <kyungmin.park@samsung.com>
7069 M:      Heungjun Kim <riverful.kim@samsung.com>
7070 L:      linux-media@vger.kernel.org
7071 S:      Maintained
7072 F:      drivers/media/i2c/m5mols/
7073 F:      include/media/i2c/m5mols.h
7074
7075 FUJITSU TABLET EXTRAS
7076 M:      Robert Gerlach <khnz@gmx.de>
7077 L:      platform-driver-x86@vger.kernel.org
7078 S:      Maintained
7079 F:      drivers/platform/x86/fujitsu-tablet.c
7080
7081 FUSE: FILESYSTEM IN USERSPACE
7082 M:      Miklos Szeredi <miklos@szeredi.hu>
7083 L:      linux-fsdevel@vger.kernel.org
7084 S:      Maintained
7085 W:      http://fuse.sourceforge.net/
7086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7087 F:      Documentation/filesystems/fuse.rst
7088 F:      fs/fuse/
7089 F:      include/uapi/linux/fuse.h
7090
7091 FUTEX SUBSYSTEM
7092 M:      Thomas Gleixner <tglx@linutronix.de>
7093 M:      Ingo Molnar <mingo@redhat.com>
7094 R:      Peter Zijlstra <peterz@infradead.org>
7095 R:      Darren Hart <dvhart@infradead.org>
7096 L:      linux-kernel@vger.kernel.org
7097 S:      Maintained
7098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7099 F:      Documentation/locking/*futex*
7100 F:      include/asm-generic/futex.h
7101 F:      include/linux/futex.h
7102 F:      include/uapi/linux/futex.h
7103 F:      kernel/futex.c
7104 F:      tools/perf/bench/futex*
7105 F:      Documentation/locking/*futex*
7106
7107 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7108 M:      Tim Harvey <tharvey@gateworks.com>
7109 M:      Robert Jones <rjones@gateworks.com>
7110 S:      Maintained
7111 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7112 F:      drivers/mfd/gateworks-gsc.c
7113 F:      include/linux/mfd/gsc.h
7114 F:      Documentation/hwmon/gsc-hwmon.rst
7115 F:      drivers/hwmon/gsc-hwmon.c
7116 F:      include/linux/platform_data/gsc_hwmon.h
7117
7118 GASKET DRIVER FRAMEWORK
7119 M:      Rob Springer <rspringer@google.com>
7120 M:      Todd Poynor <toddpoynor@google.com>
7121 M:      Ben Chan <benchan@chromium.org>
7122 M:      Richard Yeh <rcy@google.com>
7123 S:      Maintained
7124 F:      drivers/staging/gasket/
7125
7126 GCC PLUGINS
7127 M:      Kees Cook <keescook@chromium.org>
7128 R:      Emese Revfy <re.emese@gmail.com>
7129 L:      kernel-hardening@lists.openwall.com
7130 S:      Maintained
7131 F:      Documentation/kbuild/gcc-plugins.rst
7132 F:      scripts/Makefile.gcc-plugins
7133 F:      scripts/gcc-plugin.sh
7134 F:      scripts/gcc-plugins/
7135
7136 GCOV BASED KERNEL PROFILING
7137 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7138 S:      Maintained
7139 F:      Documentation/dev-tools/gcov.rst
7140 F:      kernel/gcov/
7141
7142 GDB KERNEL DEBUGGING HELPER SCRIPTS
7143 M:      Jan Kiszka <jan.kiszka@siemens.com>
7144 M:      Kieran Bingham <kbingham@kernel.org>
7145 S:      Supported
7146 F:      scripts/gdb/
7147
7148 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7149 M:      Achim Leubner <achim_leubner@adaptec.com>
7150 L:      linux-scsi@vger.kernel.org
7151 S:      Supported
7152 W:      http://www.icp-vortex.com/
7153 F:      drivers/scsi/gdt*
7154
7155 GEMTEK FM RADIO RECEIVER DRIVER
7156 M:      Hans Verkuil <hverkuil@xs4all.nl>
7157 L:      linux-media@vger.kernel.org
7158 S:      Maintained
7159 W:      https://linuxtv.org
7160 T:      git git://linuxtv.org/media_tree.git
7161 F:      drivers/media/radio/radio-gemtek*
7162
7163 GENERIC ARCHITECTURE TOPOLOGY
7164 M:      Sudeep Holla <sudeep.holla@arm.com>
7165 L:      linux-kernel@vger.kernel.org
7166 S:      Maintained
7167 F:      drivers/base/arch_topology.c
7168 F:      include/linux/arch_topology.h
7169
7170 GENERIC GPIO I2C DRIVER
7171 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7172 S:      Supported
7173 F:      drivers/i2c/busses/i2c-gpio.c
7174 F:      include/linux/platform_data/i2c-gpio.h
7175
7176 GENERIC GPIO I2C MULTIPLEXER DRIVER
7177 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7178 L:      linux-i2c@vger.kernel.org
7179 S:      Supported
7180 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7181 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7182 F:      include/linux/platform_data/i2c-mux-gpio.h
7183
7184 GENERIC HDLC (WAN) DRIVERS
7185 M:      Krzysztof Halasa <khc@pm.waw.pl>
7186 S:      Maintained
7187 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7188 F:      drivers/net/wan/c101.c
7189 F:      drivers/net/wan/hd6457*
7190 F:      drivers/net/wan/hdlc*
7191 F:      drivers/net/wan/n2.c
7192 F:      drivers/net/wan/pc300too.c
7193 F:      drivers/net/wan/pci200syn.c
7194 F:      drivers/net/wan/wanxl*
7195
7196 GENERIC INCLUDE/ASM HEADER FILES
7197 M:      Arnd Bergmann <arnd@arndb.de>
7198 L:      linux-arch@vger.kernel.org
7199 S:      Maintained
7200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7201 F:      include/asm-generic/
7202 F:      include/uapi/asm-generic/
7203
7204 GENERIC PHY FRAMEWORK
7205 M:      Kishon Vijay Abraham I <kishon@ti.com>
7206 M:      Vinod Koul <vkoul@kernel.org>
7207 L:      linux-kernel@vger.kernel.org
7208 S:      Supported
7209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7210 F:      Documentation/devicetree/bindings/phy/
7211 F:      drivers/phy/
7212 F:      include/linux/phy/
7213
7214 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7215 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7216 S:      Supported
7217 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7218
7219 GENERIC PM DOMAINS
7220 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7221 M:      Kevin Hilman <khilman@kernel.org>
7222 M:      Ulf Hansson <ulf.hansson@linaro.org>
7223 L:      linux-pm@vger.kernel.org
7224 S:      Supported
7225 F:      Documentation/devicetree/bindings/power/power?domain*
7226 F:      drivers/base/power/domain*.c
7227 F:      include/linux/pm_domain.h
7228
7229 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7230 M:      Eugen Hristev <eugen.hristev@microchip.com>
7231 L:      linux-input@vger.kernel.org
7232 S:      Maintained
7233 F:      drivers/input/touchscreen/resistive-adc-touch.c
7234
7235 GENERIC UIO DRIVER FOR PCI DEVICES
7236 M:      "Michael S. Tsirkin" <mst@redhat.com>
7237 L:      kvm@vger.kernel.org
7238 S:      Supported
7239 F:      drivers/uio/uio_pci_generic.c
7240
7241 GENERIC VDSO LIBRARY
7242 M:      Andy Lutomirski <luto@kernel.org>
7243 M:      Thomas Gleixner <tglx@linutronix.de>
7244 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7245 L:      linux-kernel@vger.kernel.org
7246 S:      Maintained
7247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7248 F:      include/asm-generic/vdso/vsyscall.h
7249 F:      include/vdso/
7250 F:      kernel/time/vsyscall.c
7251 F:      lib/vdso/
7252
7253 GENWQE (IBM Generic Workqueue Card)
7254 M:      Frank Haverkamp <haver@linux.ibm.com>
7255 S:      Supported
7256 F:      drivers/misc/genwqe/
7257
7258 GET_MAINTAINER SCRIPT
7259 M:      Joe Perches <joe@perches.com>
7260 S:      Maintained
7261 F:      scripts/get_maintainer.pl
7262
7263 GFS2 FILE SYSTEM
7264 M:      Bob Peterson <rpeterso@redhat.com>
7265 M:      Andreas Gruenbacher <agruenba@redhat.com>
7266 L:      cluster-devel@redhat.com
7267 S:      Supported
7268 W:      http://sources.redhat.com/cluster/
7269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7270 F:      Documentation/filesystems/gfs2*
7271 F:      fs/gfs2/
7272 F:      include/uapi/linux/gfs2_ondisk.h
7273
7274 GNSS SUBSYSTEM
7275 M:      Johan Hovold <johan@kernel.org>
7276 S:      Maintained
7277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7278 F:      Documentation/ABI/testing/sysfs-class-gnss
7279 F:      Documentation/devicetree/bindings/gnss/
7280 F:      drivers/gnss/
7281 F:      include/linux/gnss.h
7282
7283 GO7007 MPEG CODEC
7284 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7285 L:      linux-media@vger.kernel.org
7286 S:      Maintained
7287 F:      drivers/media/usb/go7007/
7288
7289 GOODIX TOUCHSCREEN
7290 M:      Bastien Nocera <hadess@hadess.net>
7291 L:      linux-input@vger.kernel.org
7292 S:      Maintained
7293 F:      drivers/input/touchscreen/goodix.c
7294
7295 GOOGLE ETHERNET DRIVERS
7296 M:      Catherine Sullivan <csully@google.com>
7297 R:      Sagi Shahar <sagis@google.com>
7298 R:      Jon Olson <jonolson@google.com>
7299 L:      netdev@vger.kernel.org
7300 S:      Supported
7301 F:      Documentation/networking/device_drivers/google/gve.rst
7302 F:      drivers/net/ethernet/google
7303
7304 GPD POCKET FAN DRIVER
7305 M:      Hans de Goede <hdegoede@redhat.com>
7306 L:      platform-driver-x86@vger.kernel.org
7307 S:      Maintained
7308 F:      drivers/platform/x86/gpd-pocket-fan.c
7309
7310 GPIO ACPI SUPPORT
7311 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7312 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7313 L:      linux-gpio@vger.kernel.org
7314 L:      linux-acpi@vger.kernel.org
7315 S:      Maintained
7316 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7317 F:      drivers/gpio/gpiolib-acpi.c
7318 F:      drivers/gpio/gpiolib-acpi.h
7319
7320 GPIO AGGREGATOR
7321 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7322 L:      linux-gpio@vger.kernel.org
7323 S:      Supported
7324 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7325 F:      drivers/gpio/gpio-aggregator.c
7326
7327 GPIO IR Transmitter
7328 M:      Sean Young <sean@mess.org>
7329 L:      linux-media@vger.kernel.org
7330 S:      Maintained
7331 F:      drivers/media/rc/gpio-ir-tx.c
7332
7333 GPIO MOCKUP DRIVER
7334 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7335 L:      linux-gpio@vger.kernel.org
7336 S:      Maintained
7337 F:      drivers/gpio/gpio-mockup.c
7338 F:      tools/testing/selftests/gpio/
7339
7340 GPIO REGMAP
7341 R:      Michael Walle <michael@walle.cc>
7342 S:      Maintained
7343 F:      drivers/gpio/gpio-regmap.c
7344 F:      include/linux/gpio/regmap.h
7345
7346 GPIO SUBSYSTEM
7347 M:      Linus Walleij <linus.walleij@linaro.org>
7348 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7349 L:      linux-gpio@vger.kernel.org
7350 S:      Maintained
7351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7352 F:      Documentation/ABI/obsolete/sysfs-gpio
7353 F:      Documentation/ABI/testing/gpio-cdev
7354 F:      Documentation/admin-guide/gpio/
7355 F:      Documentation/devicetree/bindings/gpio/
7356 F:      Documentation/driver-api/gpio/
7357 F:      drivers/gpio/
7358 F:      include/asm-generic/gpio.h
7359 F:      include/linux/gpio.h
7360 F:      include/linux/gpio/
7361 F:      include/linux/of_gpio.h
7362 F:      include/uapi/linux/gpio.h
7363 F:      tools/gpio/
7364
7365 GRE DEMULTIPLEXER DRIVER
7366 M:      Dmitry Kozlov <xeb@mail.ru>
7367 L:      netdev@vger.kernel.org
7368 S:      Maintained
7369 F:      include/net/gre.h
7370 F:      net/ipv4/gre_demux.c
7371 F:      net/ipv4/gre_offload.c
7372
7373 GRETH 10/100/1G Ethernet MAC device driver
7374 M:      Andreas Larsson <andreas@gaisler.com>
7375 L:      netdev@vger.kernel.org
7376 S:      Maintained
7377 F:      drivers/net/ethernet/aeroflex/
7378
7379 GREYBUS AUDIO PROTOCOLS DRIVERS
7380 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7381 M:      Mark Greer <mgreer@animalcreek.com>
7382 S:      Maintained
7383 F:      drivers/staging/greybus/audio_apbridgea.c
7384 F:      drivers/staging/greybus/audio_apbridgea.h
7385 F:      drivers/staging/greybus/audio_codec.c
7386 F:      drivers/staging/greybus/audio_codec.h
7387 F:      drivers/staging/greybus/audio_gb.c
7388 F:      drivers/staging/greybus/audio_manager.c
7389 F:      drivers/staging/greybus/audio_manager.h
7390 F:      drivers/staging/greybus/audio_manager_module.c
7391 F:      drivers/staging/greybus/audio_manager_private.h
7392 F:      drivers/staging/greybus/audio_manager_sysfs.c
7393 F:      drivers/staging/greybus/audio_module.c
7394 F:      drivers/staging/greybus/audio_topology.c
7395
7396 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7397 M:      Viresh Kumar <vireshk@kernel.org>
7398 S:      Maintained
7399 F:      drivers/staging/greybus/authentication.c
7400 F:      drivers/staging/greybus/bootrom.c
7401 F:      drivers/staging/greybus/firmware.h
7402 F:      drivers/staging/greybus/fw-core.c
7403 F:      drivers/staging/greybus/fw-download.c
7404 F:      drivers/staging/greybus/fw-management.c
7405 F:      drivers/staging/greybus/greybus_authentication.h
7406 F:      drivers/staging/greybus/greybus_firmware.h
7407 F:      drivers/staging/greybus/hid.c
7408 F:      drivers/staging/greybus/i2c.c
7409 F:      drivers/staging/greybus/spi.c
7410 F:      drivers/staging/greybus/spilib.c
7411 F:      drivers/staging/greybus/spilib.h
7412
7413 GREYBUS LOOPBACK DRIVER
7414 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7415 S:      Maintained
7416 F:      drivers/staging/greybus/loopback.c
7417
7418 GREYBUS PLATFORM DRIVERS
7419 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7420 S:      Maintained
7421 F:      drivers/staging/greybus/arche-apb-ctrl.c
7422 F:      drivers/staging/greybus/arche-platform.c
7423 F:      drivers/staging/greybus/arche_platform.h
7424
7425 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7426 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7427 S:      Maintained
7428 F:      drivers/staging/greybus/gpio.c
7429 F:      drivers/staging/greybus/light.c
7430 F:      drivers/staging/greybus/power_supply.c
7431 F:      drivers/staging/greybus/sdio.c
7432 F:      drivers/staging/greybus/spi.c
7433 F:      drivers/staging/greybus/spilib.c
7434
7435 GREYBUS SUBSYSTEM
7436 M:      Johan Hovold <johan@kernel.org>
7437 M:      Alex Elder <elder@kernel.org>
7438 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7439 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7440 S:      Maintained
7441 F:      drivers/greybus/
7442 F:      drivers/staging/greybus/
7443 F:      include/linux/greybus.h
7444 F:      include/linux/greybus/
7445
7446 GREYBUS UART PROTOCOLS DRIVERS
7447 M:      David Lin <dtwlin@gmail.com>
7448 S:      Maintained
7449 F:      drivers/staging/greybus/log.c
7450 F:      drivers/staging/greybus/uart.c
7451
7452 GS1662 VIDEO SERIALIZER
7453 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7454 L:      linux-media@vger.kernel.org
7455 S:      Maintained
7456 T:      git git://linuxtv.org/media_tree.git
7457 F:      drivers/media/spi/gs1662.c
7458
7459 GSPCA FINEPIX SUBDRIVER
7460 M:      Frank Zago <frank@zago.net>
7461 L:      linux-media@vger.kernel.org
7462 S:      Maintained
7463 T:      git git://linuxtv.org/media_tree.git
7464 F:      drivers/media/usb/gspca/finepix.c
7465
7466 GSPCA GL860 SUBDRIVER
7467 M:      Olivier Lorin <o.lorin@laposte.net>
7468 L:      linux-media@vger.kernel.org
7469 S:      Maintained
7470 T:      git git://linuxtv.org/media_tree.git
7471 F:      drivers/media/usb/gspca/gl860/
7472
7473 GSPCA M5602 SUBDRIVER
7474 M:      Erik Andren <erik.andren@gmail.com>
7475 L:      linux-media@vger.kernel.org
7476 S:      Maintained
7477 T:      git git://linuxtv.org/media_tree.git
7478 F:      drivers/media/usb/gspca/m5602/
7479
7480 GSPCA PAC207 SONIXB SUBDRIVER
7481 M:      Hans Verkuil <hverkuil@xs4all.nl>
7482 L:      linux-media@vger.kernel.org
7483 S:      Odd Fixes
7484 T:      git git://linuxtv.org/media_tree.git
7485 F:      drivers/media/usb/gspca/pac207.c
7486
7487 GSPCA SN9C20X SUBDRIVER
7488 M:      Brian Johnson <brijohn@gmail.com>
7489 L:      linux-media@vger.kernel.org
7490 S:      Maintained
7491 T:      git git://linuxtv.org/media_tree.git
7492 F:      drivers/media/usb/gspca/sn9c20x.c
7493
7494 GSPCA T613 SUBDRIVER
7495 M:      Leandro Costantino <lcostantino@gmail.com>
7496 L:      linux-media@vger.kernel.org
7497 S:      Maintained
7498 T:      git git://linuxtv.org/media_tree.git
7499 F:      drivers/media/usb/gspca/t613.c
7500
7501 GSPCA USB WEBCAM DRIVER
7502 M:      Hans Verkuil <hverkuil@xs4all.nl>
7503 L:      linux-media@vger.kernel.org
7504 S:      Odd Fixes
7505 T:      git git://linuxtv.org/media_tree.git
7506 F:      drivers/media/usb/gspca/
7507
7508 GTP (GPRS Tunneling Protocol)
7509 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7510 M:      Harald Welte <laforge@gnumonks.org>
7511 L:      osmocom-net-gprs@lists.osmocom.org
7512 S:      Maintained
7513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7514 F:      drivers/net/gtp.c
7515
7516 GUID PARTITION TABLE (GPT)
7517 M:      Davidlohr Bueso <dave@stgolabs.net>
7518 L:      linux-efi@vger.kernel.org
7519 S:      Maintained
7520 F:      block/partitions/efi.*
7521
7522 H8/300 ARCHITECTURE
7523 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7524 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7525 S:      Maintained
7526 W:      http://uclinux-h8.sourceforge.jp
7527 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7528 F:      arch/h8300/
7529 F:      drivers/clk/h8300/
7530 F:      drivers/clocksource/h8300_*.c
7531 F:      drivers/irqchip/irq-renesas-h8*.c
7532
7533 HABANALABS PCI DRIVER
7534 M:      Oded Gabbay <oded.gabbay@gmail.com>
7535 S:      Supported
7536 T:      git https://github.com/HabanaAI/linux.git
7537 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7538 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7539 F:      drivers/misc/habanalabs/
7540 F:      include/uapi/misc/habanalabs.h
7541
7542 HACKRF MEDIA DRIVER
7543 M:      Antti Palosaari <crope@iki.fi>
7544 L:      linux-media@vger.kernel.org
7545 S:      Maintained
7546 W:      https://linuxtv.org
7547 W:      http://palosaari.fi/linux/
7548 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7549 T:      git git://linuxtv.org/anttip/media_tree.git
7550 F:      drivers/media/usb/hackrf/
7551
7552 HANTRO VPU CODEC DRIVER
7553 M:      Ezequiel Garcia <ezequiel@collabora.com>
7554 M:      Philipp Zabel <p.zabel@pengutronix.de>
7555 L:      linux-media@vger.kernel.org
7556 L:      linux-rockchip@lists.infradead.org
7557 S:      Maintained
7558 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7559 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7560 F:      drivers/staging/media/hantro/
7561
7562 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7563 M:      Frank Seidel <frank@f-seidel.de>
7564 L:      platform-driver-x86@vger.kernel.org
7565 S:      Maintained
7566 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7567 F:      drivers/platform/x86/hdaps.c
7568
7569 HARDWARE MONITORING
7570 M:      Jean Delvare <jdelvare@suse.com>
7571 M:      Guenter Roeck <linux@roeck-us.net>
7572 L:      linux-hwmon@vger.kernel.org
7573 S:      Maintained
7574 W:      http://hwmon.wiki.kernel.org/
7575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7576 F:      Documentation/devicetree/bindings/hwmon/
7577 F:      Documentation/hwmon/
7578 F:      drivers/hwmon/
7579 F:      include/linux/hwmon*.h
7580 F:      include/trace/events/hwmon*.h
7581
7582 HARDWARE RANDOM NUMBER GENERATOR CORE
7583 M:      Matt Mackall <mpm@selenic.com>
7584 M:      Herbert Xu <herbert@gondor.apana.org.au>
7585 L:      linux-crypto@vger.kernel.org
7586 S:      Odd fixes
7587 F:      Documentation/admin-guide/hw_random.rst
7588 F:      Documentation/devicetree/bindings/rng/
7589 F:      drivers/char/hw_random/
7590 F:      include/linux/hw_random.h
7591
7592 HARDWARE SPINLOCK CORE
7593 M:      Ohad Ben-Cohen <ohad@wizery.com>
7594 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7595 R:      Baolin Wang <baolin.wang7@gmail.com>
7596 L:      linux-remoteproc@vger.kernel.org
7597 S:      Maintained
7598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7599 F:      Documentation/devicetree/bindings/hwlock/
7600 F:      Documentation/locking/hwspinlock.rst
7601 F:      drivers/hwspinlock/
7602 F:      include/linux/hwspinlock.h
7603
7604 HARDWARE TRACING FACILITIES
7605 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7606 S:      Maintained
7607 F:      drivers/hwtracing/
7608
7609 HARMONY SOUND DRIVER
7610 L:      linux-parisc@vger.kernel.org
7611 S:      Maintained
7612 F:      sound/parisc/harmony.*
7613
7614 HDPVR USB VIDEO ENCODER DRIVER
7615 M:      Hans Verkuil <hverkuil@xs4all.nl>
7616 L:      linux-media@vger.kernel.org
7617 S:      Odd Fixes
7618 W:      https://linuxtv.org
7619 T:      git git://linuxtv.org/media_tree.git
7620 F:      drivers/media/usb/hdpvr/
7621
7622 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7623 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
7624 S:      Supported
7625 F:      Documentation/watchdog/hpwdt.rst
7626 F:      drivers/watchdog/hpwdt.c
7627
7628 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7629 M:      Don Brace <don.brace@microsemi.com>
7630 L:      esc.storagedev@microsemi.com
7631 L:      linux-scsi@vger.kernel.org
7632 S:      Supported
7633 F:      Documentation/scsi/hpsa.rst
7634 F:      drivers/scsi/hpsa*.[ch]
7635 F:      include/linux/cciss*.h
7636 F:      include/uapi/linux/cciss*.h
7637
7638 HFI1 DRIVER
7639 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
7640 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
7641 L:      linux-rdma@vger.kernel.org
7642 S:      Supported
7643 F:      drivers/infiniband/hw/hfi1
7644
7645 HFS FILESYSTEM
7646 L:      linux-fsdevel@vger.kernel.org
7647 S:      Orphan
7648 F:      Documentation/filesystems/hfs.rst
7649 F:      fs/hfs/
7650
7651 HFSPLUS FILESYSTEM
7652 L:      linux-fsdevel@vger.kernel.org
7653 S:      Orphan
7654 F:      Documentation/filesystems/hfsplus.rst
7655 F:      fs/hfsplus/
7656
7657 HGA FRAMEBUFFER DRIVER
7658 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7659 L:      linux-nvidia@lists.surfsouth.com
7660 S:      Maintained
7661 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7662 F:      drivers/video/fbdev/hgafb.c
7663
7664 HIBERNATION (aka Software Suspend, aka swsusp)
7665 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7666 M:      Pavel Machek <pavel@ucw.cz>
7667 L:      linux-pm@vger.kernel.org
7668 S:      Supported
7669 B:      https://bugzilla.kernel.org
7670 F:      arch/*/include/asm/suspend*.h
7671 F:      arch/x86/power/
7672 F:      drivers/base/power/
7673 F:      include/linux/freezer.h
7674 F:      include/linux/pm.h
7675 F:      include/linux/suspend.h
7676 F:      kernel/power/
7677
7678 HID CORE LAYER
7679 M:      Jiri Kosina <jikos@kernel.org>
7680 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7681 L:      linux-input@vger.kernel.org
7682 S:      Maintained
7683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7684 F:      drivers/hid/
7685 F:      include/linux/hid*
7686 F:      include/uapi/linux/hid*
7687
7688 HID SENSOR HUB DRIVERS
7689 M:      Jiri Kosina <jikos@kernel.org>
7690 M:      Jonathan Cameron <jic23@kernel.org>
7691 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7692 L:      linux-input@vger.kernel.org
7693 L:      linux-iio@vger.kernel.org
7694 S:      Maintained
7695 F:      Documentation/hid/hid-sensor*
7696 F:      drivers/hid/hid-sensor-*
7697 F:      drivers/iio/*/hid-*
7698 F:      include/linux/hid-sensor-*
7699
7700 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7701 M:      Thomas Gleixner <tglx@linutronix.de>
7702 L:      linux-kernel@vger.kernel.org
7703 S:      Maintained
7704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7705 F:      Documentation/timers/
7706 F:      include/linux/clockchips.h
7707 F:      include/linux/hrtimer.h
7708 F:      kernel/time/clockevents.c
7709 F:      kernel/time/hrtimer.c
7710 F:      kernel/time/timer_*.c
7711
7712 HIGH-SPEED SCC DRIVER FOR AX.25
7713 L:      linux-hams@vger.kernel.org
7714 S:      Orphan
7715 F:      drivers/net/hamradio/dmascc.c
7716 F:      drivers/net/hamradio/scc.c
7717
7718 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7719 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7720 S:      Supported
7721 W:      http://www.highpoint-tech.com
7722 F:      Documentation/scsi/hptiop.rst
7723 F:      drivers/scsi/hptiop.c
7724
7725 HIPPI
7726 M:      Jes Sorensen <jes@trained-monkey.org>
7727 L:      linux-hippi@sunsite.dk
7728 S:      Maintained
7729 F:      drivers/net/hippi/
7730 F:      include/linux/hippidevice.h
7731 F:      include/uapi/linux/if_hippi.h
7732 F:      net/802/hippi.c
7733
7734 HISILICON DMA DRIVER
7735 M:      Zhou Wang <wangzhou1@hisilicon.com>
7736 L:      dmaengine@vger.kernel.org
7737 S:      Maintained
7738 F:      drivers/dma/hisi_dma.c
7739
7740 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7741 M:      Zaibo Xu <xuzaibo@huawei.com>
7742 L:      linux-crypto@vger.kernel.org
7743 S:      Maintained
7744 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7745 F:      drivers/crypto/hisilicon/hpre/hpre.h
7746 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7747 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7748
7749 HISILICON LPC BUS DRIVER
7750 M:      john.garry@huawei.com
7751 S:      Maintained
7752 W:      http://www.hisilicon.com
7753 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7754 F:      drivers/bus/hisi_lpc.c
7755
7756 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7757 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7758 M:      Salil Mehta <salil.mehta@huawei.com>
7759 L:      netdev@vger.kernel.org
7760 S:      Maintained
7761 W:      http://www.hisilicon.com
7762 F:      drivers/net/ethernet/hisilicon/hns3/
7763
7764 HISILICON NETWORK SUBSYSTEM DRIVER
7765 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7766 M:      Salil Mehta <salil.mehta@huawei.com>
7767 L:      netdev@vger.kernel.org
7768 S:      Maintained
7769 W:      http://www.hisilicon.com
7770 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7771 F:      drivers/net/ethernet/hisilicon/
7772
7773 HISILICON PMU DRIVER
7774 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
7775 S:      Supported
7776 W:      http://www.hisilicon.com
7777 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7778 F:      drivers/perf/hisilicon
7779
7780 HISILICON QM AND ZIP Controller DRIVER
7781 M:      Zhou Wang <wangzhou1@hisilicon.com>
7782 L:      linux-crypto@vger.kernel.org
7783 S:      Maintained
7784 F:      Documentation/ABI/testing/debugfs-hisi-zip
7785 F:      drivers/crypto/hisilicon/qm.c
7786 F:      drivers/crypto/hisilicon/qm.h
7787 F:      drivers/crypto/hisilicon/sgl.c
7788 F:      drivers/crypto/hisilicon/zip/
7789
7790 HISILICON ROCE DRIVER
7791 M:      Lijun Ou <oulijun@huawei.com>
7792 M:      Wei Hu(Xavier) <huwei87@hisilicon.com>
7793 M:      Weihang Li <liweihang@huawei.com>
7794 L:      linux-rdma@vger.kernel.org
7795 S:      Maintained
7796 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7797 F:      drivers/infiniband/hw/hns/
7798
7799 HISILICON SAS Controller
7800 M:      John Garry <john.garry@huawei.com>
7801 S:      Supported
7802 W:      http://www.hisilicon.com
7803 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7804 F:      drivers/scsi/hisi_sas/
7805
7806 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
7807 M:      Zaibo Xu <xuzaibo@huawei.com>
7808 L:      linux-crypto@vger.kernel.org
7809 S:      Maintained
7810 F:      Documentation/ABI/testing/debugfs-hisi-sec
7811 F:      drivers/crypto/hisilicon/sec2/sec.h
7812 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
7813 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
7814 F:      drivers/crypto/hisilicon/sec2/sec_main.c
7815
7816 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
7817 M:      Zaibo Xu <xuzaibo@huawei.com>
7818 S:      Maintained
7819 F:      drivers/char/hw_random/hisi-trng-v2.c
7820
7821 HISILICON V3XX SPI NOR FLASH Controller Driver
7822 M:      John Garry <john.garry@huawei.com>
7823 S:      Maintained
7824 W:      http://www.hisilicon.com
7825 F:      drivers/spi/spi-hisi-sfc-v3xx.c
7826
7827 HMM - Heterogeneous Memory Management
7828 M:      Jérôme Glisse <jglisse@redhat.com>
7829 L:      linux-mm@kvack.org
7830 S:      Maintained
7831 F:      Documentation/vm/hmm.rst
7832 F:      include/linux/hmm*
7833 F:      lib/test_hmm*
7834 F:      mm/hmm*
7835 F:      tools/testing/selftests/vm/*hmm*
7836
7837 HOST AP DRIVER
7838 M:      Jouni Malinen <j@w1.fi>
7839 L:      linux-wireless@vger.kernel.org
7840 S:      Obsolete
7841 W:      http://w1.fi/hostap-driver.html
7842 F:      drivers/net/wireless/intersil/hostap/
7843
7844 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
7845 L:      platform-driver-x86@vger.kernel.org
7846 S:      Orphan
7847 F:      drivers/platform/x86/tc1100-wmi.c
7848
7849 HPET:   High Precision Event Timers driver
7850 M:      Clemens Ladisch <clemens@ladisch.de>
7851 S:      Maintained
7852 F:      Documentation/timers/hpet.rst
7853 F:      drivers/char/hpet.c
7854 F:      include/linux/hpet.h
7855 F:      include/uapi/linux/hpet.h
7856
7857 HPET:   x86
7858 S:      Orphan
7859 F:      arch/x86/include/asm/hpet.h
7860 F:      arch/x86/kernel/hpet.c
7861
7862 HPFS FILESYSTEM
7863 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
7864 S:      Maintained
7865 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
7866 F:      fs/hpfs/
7867
7868 HSI SUBSYSTEM
7869 M:      Sebastian Reichel <sre@kernel.org>
7870 S:      Maintained
7871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
7872 F:      Documentation/ABI/testing/sysfs-bus-hsi
7873 F:      Documentation/driver-api/hsi.rst
7874 F:      drivers/hsi/
7875 F:      include/linux/hsi/
7876 F:      include/uapi/linux/hsi/
7877
7878 HSO 3G MODEM DRIVER
7879 L:      linux-usb@vger.kernel.org
7880 S:      Orphan
7881 F:      drivers/net/usb/hso.c
7882
7883 HSR NETWORK PROTOCOL
7884 L:      netdev@vger.kernel.org
7885 S:      Orphan
7886 F:      net/hsr/
7887
7888 HT16K33 LED CONTROLLER DRIVER
7889 M:      Robin van der Gracht <robin@protonic.nl>
7890 S:      Maintained
7891 F:      Documentation/devicetree/bindings/display/ht16k33.txt
7892 F:      drivers/auxdisplay/ht16k33.c
7893
7894 HTCPEN TOUCHSCREEN DRIVER
7895 M:      Pau Oliva Fora <pof@eslack.org>
7896 L:      linux-input@vger.kernel.org
7897 S:      Maintained
7898 F:      drivers/input/touchscreen/htcpen.c
7899
7900 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
7901 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
7902 L:      linux-iio@vger.kernel.org
7903 S:      Maintained
7904 W:      http://www.st.com/
7905 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
7906 F:      drivers/iio/humidity/hts221*
7907
7908 HUAWEI ETHERNET DRIVER
7909 M:      Bin Luo <luobin9@huawei.com>
7910 L:      netdev@vger.kernel.org
7911 S:      Supported
7912 F:      Documentation/networking/hinic.rst
7913 F:      drivers/net/ethernet/huawei/hinic/
7914
7915 HUGETLB FILESYSTEM
7916 M:      Mike Kravetz <mike.kravetz@oracle.com>
7917 L:      linux-mm@kvack.org
7918 S:      Maintained
7919 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
7920 F:      Documentation/admin-guide/mm/hugetlbpage.rst
7921 F:      Documentation/vm/hugetlbfs_reserv.rst
7922 F:      fs/hugetlbfs/
7923 F:      include/linux/hugetlb.h
7924 F:      mm/hugetlb.c
7925
7926 HVA ST MEDIA DRIVER
7927 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
7928 L:      linux-media@vger.kernel.org
7929 S:      Supported
7930 W:      https://linuxtv.org
7931 T:      git git://linuxtv.org/media_tree.git
7932 F:      drivers/media/platform/sti/hva
7933
7934 HWPOISON MEMORY FAILURE HANDLING
7935 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
7936 L:      linux-mm@kvack.org
7937 S:      Maintained
7938 F:      mm/hwpoison-inject.c
7939 F:      mm/memory-failure.c
7940
7941 HYGON PROCESSOR SUPPORT
7942 M:      Pu Wen <puwen@hygon.cn>
7943 L:      linux-kernel@vger.kernel.org
7944 S:      Maintained
7945 F:      arch/x86/kernel/cpu/hygon.c
7946
7947 HYNIX HI556 SENSOR DRIVER
7948 M:      Shawn Tu <shawnx.tu@intel.com>
7949 L:      linux-media@vger.kernel.org
7950 S:      Maintained
7951 T:      git git://linuxtv.org/media_tree.git
7952 F:      drivers/media/i2c/hi556.c
7953
7954 Hyper-V CORE AND DRIVERS
7955 M:      "K. Y. Srinivasan" <kys@microsoft.com>
7956 M:      Haiyang Zhang <haiyangz@microsoft.com>
7957 M:      Stephen Hemminger <sthemmin@microsoft.com>
7958 M:      Wei Liu <wei.liu@kernel.org>
7959 L:      linux-hyperv@vger.kernel.org
7960 S:      Supported
7961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
7962 F:      Documentation/ABI/stable/sysfs-bus-vmbus
7963 F:      Documentation/ABI/testing/debugfs-hyperv
7964 F:      Documentation/networking/device_drivers/microsoft/netvsc.rst
7965 F:      arch/x86/hyperv
7966 F:      arch/x86/include/asm/hyperv-tlfs.h
7967 F:      arch/x86/include/asm/mshyperv.h
7968 F:      arch/x86/include/asm/trace/hyperv.h
7969 F:      arch/x86/kernel/cpu/mshyperv.c
7970 F:      drivers/clocksource/hyperv_timer.c
7971 F:      drivers/hid/hid-hyperv.c
7972 F:      drivers/hv/
7973 F:      drivers/input/serio/hyperv-keyboard.c
7974 F:      drivers/iommu/hyperv-iommu.c
7975 F:      drivers/net/hyperv/
7976 F:      drivers/pci/controller/pci-hyperv-intf.c
7977 F:      drivers/pci/controller/pci-hyperv.c
7978 F:      drivers/scsi/storvsc_drv.c
7979 F:      drivers/uio/uio_hv_generic.c
7980 F:      drivers/video/fbdev/hyperv_fb.c
7981 F:      include/asm-generic/hyperv-tlfs.h
7982 F:      include/asm-generic/mshyperv.h
7983 F:      include/clocksource/hyperv_timer.h
7984 F:      include/linux/hyperv.h
7985 F:      include/uapi/linux/hyperv.h
7986 F:      net/vmw_vsock/hyperv_transport.c
7987 F:      tools/hv/
7988
7989 HYPERBUS SUPPORT
7990 M:      Vignesh Raghavendra <vigneshr@ti.com>
7991 L:      linux-mtd@lists.infradead.org
7992 S:      Supported
7993 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7994 C:      irc://irc.oftc.net/mtd
7995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
7996 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
7997 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
7998 F:      drivers/mtd/hyperbus/
7999 F:      include/linux/mtd/hyperbus.h
8000
8001 HYPERVISOR VIRTUAL CONSOLE DRIVER
8002 L:      linuxppc-dev@lists.ozlabs.org
8003 S:      Odd Fixes
8004 F:      drivers/tty/hvc/
8005
8006 I2C ACPI SUPPORT
8007 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8008 L:      linux-i2c@vger.kernel.org
8009 L:      linux-acpi@vger.kernel.org
8010 S:      Maintained
8011 F:      drivers/i2c/i2c-core-acpi.c
8012
8013 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8014 M:      Ajay Gupta <ajayg@nvidia.com>
8015 L:      linux-i2c@vger.kernel.org
8016 S:      Maintained
8017 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8018 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8019
8020 I2C MUXES
8021 M:      Peter Rosin <peda@axentia.se>
8022 L:      linux-i2c@vger.kernel.org
8023 S:      Maintained
8024 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8025 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8026 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8027 F:      Documentation/i2c/i2c-topology.rst
8028 F:      Documentation/i2c/muxes/
8029 F:      drivers/i2c/i2c-mux.c
8030 F:      drivers/i2c/muxes/
8031 F:      include/linux/i2c-mux.h
8032
8033 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8034 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8035 L:      linux-i2c@vger.kernel.org
8036 S:      Maintained
8037 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8038 F:      drivers/i2c/busses/i2c-mv64xxx.c
8039
8040 I2C OVER PARALLEL PORT
8041 M:      Jean Delvare <jdelvare@suse.com>
8042 L:      linux-i2c@vger.kernel.org
8043 S:      Maintained
8044 F:      Documentation/i2c/busses/i2c-parport.rst
8045 F:      drivers/i2c/busses/i2c-parport.c
8046
8047 I2C SUBSYSTEM
8048 M:      Wolfram Sang <wsa@kernel.org>
8049 L:      linux-i2c@vger.kernel.org
8050 S:      Maintained
8051 W:      https://i2c.wiki.kernel.org/
8052 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8054 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8055 F:      Documentation/i2c/
8056 F:      drivers/i2c/*
8057 F:      include/linux/i2c-dev.h
8058 F:      include/linux/i2c-smbus.h
8059 F:      include/linux/i2c.h
8060 F:      include/uapi/linux/i2c-*.h
8061 F:      include/uapi/linux/i2c.h
8062
8063 I2C SUBSYSTEM HOST DRIVERS
8064 L:      linux-i2c@vger.kernel.org
8065 S:      Odd Fixes
8066 W:      https://i2c.wiki.kernel.org/
8067 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8069 F:      Documentation/devicetree/bindings/i2c/
8070 F:      drivers/i2c/algos/
8071 F:      drivers/i2c/busses/
8072
8073 I2C-TAOS-EVM DRIVER
8074 M:      Jean Delvare <jdelvare@suse.com>
8075 L:      linux-i2c@vger.kernel.org
8076 S:      Maintained
8077 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8078 F:      drivers/i2c/busses/i2c-taos-evm.c
8079
8080 I2C-TINY-USB DRIVER
8081 M:      Till Harbaum <till@harbaum.org>
8082 L:      linux-i2c@vger.kernel.org
8083 S:      Maintained
8084 W:      http://www.harbaum.org/till/i2c_tiny_usb
8085 F:      drivers/i2c/busses/i2c-tiny-usb.c
8086
8087 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8088 M:      Jean Delvare <jdelvare@suse.com>
8089 L:      linux-i2c@vger.kernel.org
8090 S:      Maintained
8091 F:      Documentation/i2c/busses/i2c-ali1535.rst
8092 F:      Documentation/i2c/busses/i2c-ali1563.rst
8093 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8094 F:      Documentation/i2c/busses/i2c-amd756.rst
8095 F:      Documentation/i2c/busses/i2c-amd8111.rst
8096 F:      Documentation/i2c/busses/i2c-i801.rst
8097 F:      Documentation/i2c/busses/i2c-nforce2.rst
8098 F:      Documentation/i2c/busses/i2c-piix4.rst
8099 F:      Documentation/i2c/busses/i2c-sis5595.rst
8100 F:      Documentation/i2c/busses/i2c-sis630.rst
8101 F:      Documentation/i2c/busses/i2c-sis96x.rst
8102 F:      Documentation/i2c/busses/i2c-via.rst
8103 F:      Documentation/i2c/busses/i2c-viapro.rst
8104 F:      drivers/i2c/busses/i2c-ali1535.c
8105 F:      drivers/i2c/busses/i2c-ali1563.c
8106 F:      drivers/i2c/busses/i2c-ali15x3.c
8107 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8108 F:      drivers/i2c/busses/i2c-amd756.c
8109 F:      drivers/i2c/busses/i2c-amd8111.c
8110 F:      drivers/i2c/busses/i2c-i801.c
8111 F:      drivers/i2c/busses/i2c-isch.c
8112 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8113 F:      drivers/i2c/busses/i2c-nforce2.c
8114 F:      drivers/i2c/busses/i2c-piix4.c
8115 F:      drivers/i2c/busses/i2c-sis5595.c
8116 F:      drivers/i2c/busses/i2c-sis630.c
8117 F:      drivers/i2c/busses/i2c-sis96x.c
8118 F:      drivers/i2c/busses/i2c-via.c
8119 F:      drivers/i2c/busses/i2c-viapro.c
8120
8121 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8122 M:      Hans de Goede <hdegoede@redhat.com>
8123 L:      linux-i2c@vger.kernel.org
8124 S:      Maintained
8125 F:      drivers/i2c/busses/i2c-cht-wc.c
8126
8127 I2C/SMBUS ISMT DRIVER
8128 M:      Seth Heasley <seth.heasley@intel.com>
8129 M:      Neil Horman <nhorman@tuxdriver.com>
8130 L:      linux-i2c@vger.kernel.org
8131 F:      Documentation/i2c/busses/i2c-ismt.rst
8132 F:      drivers/i2c/busses/i2c-ismt.c
8133
8134 I2C/SMBUS STUB DRIVER
8135 M:      Jean Delvare <jdelvare@suse.com>
8136 L:      linux-i2c@vger.kernel.org
8137 S:      Maintained
8138 F:      drivers/i2c/i2c-stub.c
8139
8140 I3C DRIVER FOR CADENCE I3C MASTER IP
8141 M:      Przemysław Gaj <pgaj@cadence.com>
8142 S:      Maintained
8143 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8144 F:      drivers/i3c/master/i3c-master-cdns.c
8145
8146 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8147 M:      Vitor Soares <vitor.soares@synopsys.com>
8148 S:      Maintained
8149 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8150 F:      drivers/i3c/master/dw*
8151
8152 I3C SUBSYSTEM
8153 M:      Boris Brezillon <bbrezillon@kernel.org>
8154 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8155 S:      Maintained
8156 C:      irc://chat.freenode.net/linux-i3c
8157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8158 F:      Documentation/ABI/testing/sysfs-bus-i3c
8159 F:      Documentation/devicetree/bindings/i3c/
8160 F:      Documentation/driver-api/i3c
8161 F:      drivers/i3c/
8162 F:      include/linux/i3c/
8163
8164 IA64 (Itanium) PLATFORM
8165 M:      Tony Luck <tony.luck@intel.com>
8166 M:      Fenghua Yu <fenghua.yu@intel.com>
8167 L:      linux-ia64@vger.kernel.org
8168 S:      Maintained
8169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8170 F:      Documentation/ia64/
8171 F:      arch/ia64/
8172
8173 IBM Power 842 compression accelerator
8174 M:      Haren Myneni <haren@us.ibm.com>
8175 S:      Supported
8176 F:      crypto/842.c
8177 F:      drivers/crypto/nx/Kconfig
8178 F:      drivers/crypto/nx/Makefile
8179 F:      drivers/crypto/nx/nx-842*
8180 F:      include/linux/sw842.h
8181 F:      lib/842/
8182
8183 IBM Power in-Nest Crypto Acceleration
8184 M:      Breno Leitão <leitao@debian.org>
8185 M:      Nayna Jain <nayna@linux.ibm.com>
8186 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8187 L:      linux-crypto@vger.kernel.org
8188 S:      Supported
8189 F:      drivers/crypto/nx/Kconfig
8190 F:      drivers/crypto/nx/Makefile
8191 F:      drivers/crypto/nx/nx-aes*
8192 F:      drivers/crypto/nx/nx-sha*
8193 F:      drivers/crypto/nx/nx.*
8194 F:      drivers/crypto/nx/nx_csbcpb.h
8195 F:      drivers/crypto/nx/nx_debugfs.c
8196
8197 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8198 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8199 L:      linux-pci@vger.kernel.org
8200 L:      linuxppc-dev@lists.ozlabs.org
8201 S:      Supported
8202 F:      drivers/pci/hotplug/rpadlpar*
8203
8204 IBM Power Linux RAID adapter
8205 M:      Brian King <brking@us.ibm.com>
8206 S:      Supported
8207 F:      drivers/scsi/ipr.*
8208
8209 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8210 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8211 L:      linux-pci@vger.kernel.org
8212 L:      linuxppc-dev@lists.ozlabs.org
8213 S:      Supported
8214 F:      drivers/pci/hotplug/rpaphp*
8215
8216 IBM Power SRIOV Virtual NIC Device Driver
8217 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
8218 M:      John Allen <jallen@linux.ibm.com>
8219 L:      netdev@vger.kernel.org
8220 S:      Supported
8221 F:      drivers/net/ethernet/ibm/ibmvnic.*
8222
8223 IBM Power Virtual Accelerator Switchboard
8224 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8225 L:      linuxppc-dev@lists.ozlabs.org
8226 S:      Supported
8227 F:      arch/powerpc/include/asm/vas.h
8228 F:      arch/powerpc/platforms/powernv/copy-paste.h
8229 F:      arch/powerpc/platforms/powernv/vas*
8230
8231 IBM Power Virtual Ethernet Device Driver
8232 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
8233 L:      netdev@vger.kernel.org
8234 S:      Supported
8235 F:      drivers/net/ethernet/ibm/ibmveth.*
8236
8237 IBM Power Virtual FC Device Drivers
8238 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8239 L:      linux-scsi@vger.kernel.org
8240 S:      Supported
8241 F:      drivers/scsi/ibmvscsi/ibmvfc*
8242
8243 IBM Power Virtual Management Channel Driver
8244 M:      Steven Royer <seroyer@linux.ibm.com>
8245 S:      Supported
8246 F:      drivers/misc/ibmvmc.*
8247
8248 IBM Power Virtual SCSI Device Drivers
8249 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8250 L:      linux-scsi@vger.kernel.org
8251 S:      Supported
8252 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8253 F:      include/scsi/viosrp.h
8254
8255 IBM Power Virtual SCSI Device Target Driver
8256 M:      Michael Cyr <mikecyr@linux.ibm.com>
8257 L:      linux-scsi@vger.kernel.org
8258 L:      target-devel@vger.kernel.org
8259 S:      Supported
8260 F:      drivers/scsi/ibmvscsi_tgt/
8261
8262 IBM Power VMX Cryptographic instructions
8263 M:      Breno Leitão <leitao@debian.org>
8264 M:      Nayna Jain <nayna@linux.ibm.com>
8265 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8266 L:      linux-crypto@vger.kernel.org
8267 S:      Supported
8268 F:      drivers/crypto/vmx/Kconfig
8269 F:      drivers/crypto/vmx/Makefile
8270 F:      drivers/crypto/vmx/aes*
8271 F:      drivers/crypto/vmx/ghash*
8272 F:      drivers/crypto/vmx/ppc-xlate.pl
8273 F:      drivers/crypto/vmx/vmx.c
8274
8275 IBM ServeRAID RAID DRIVER
8276 S:      Orphan
8277 F:      drivers/scsi/ips.*
8278
8279 ICH LPC AND GPIO DRIVER
8280 M:      Peter Tyser <ptyser@xes-inc.com>
8281 S:      Maintained
8282 F:      drivers/gpio/gpio-ich.c
8283 F:      drivers/mfd/lpc_ich.c
8284
8285 ICY I2C DRIVER
8286 M:      Max Staudt <max@enpas.org>
8287 L:      linux-i2c@vger.kernel.org
8288 S:      Maintained
8289 F:      drivers/i2c/busses/i2c-icy.c
8290
8291 IDE SUBSYSTEM
8292 M:      "David S. Miller" <davem@davemloft.net>
8293 L:      linux-ide@vger.kernel.org
8294 S:      Maintained
8295 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8297 F:      Documentation/ide/
8298 F:      drivers/ide/
8299 F:      include/linux/ide.h
8300
8301 IDE/ATAPI DRIVERS
8302 M:      Borislav Petkov <bp@alien8.de>
8303 L:      linux-ide@vger.kernel.org
8304 S:      Maintained
8305 F:      Documentation/cdrom/ide-cd.rst
8306 F:      drivers/ide/ide-cd*
8307
8308 IDEAPAD LAPTOP EXTRAS DRIVER
8309 M:      Ike Panhc <ike.pan@canonical.com>
8310 L:      platform-driver-x86@vger.kernel.org
8311 S:      Maintained
8312 W:      http://launchpad.net/ideapad-laptop
8313 F:      drivers/platform/x86/ideapad-laptop.c
8314
8315 IDEAPAD LAPTOP SLIDEBAR DRIVER
8316 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8317 L:      linux-input@vger.kernel.org
8318 S:      Maintained
8319 W:      https://github.com/o2genum/ideapad-slidebar
8320 F:      drivers/input/misc/ideapad_slidebar.c
8321
8322 IDT VersaClock 5 CLOCK DRIVER
8323 M:      Marek Vasut <marek.vasut@gmail.com>
8324 S:      Maintained
8325 F:      drivers/clk/clk-versaclock5.c
8326
8327 IEEE 802.15.4 SUBSYSTEM
8328 M:      Alexander Aring <alex.aring@gmail.com>
8329 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8330 L:      linux-wpan@vger.kernel.org
8331 S:      Maintained
8332 W:      http://wpan.cakelab.org/
8333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8335 F:      Documentation/networking/ieee802154.rst
8336 F:      drivers/net/ieee802154/
8337 F:      include/linux/ieee802154.h
8338 F:      include/linux/nl802154.h
8339 F:      include/net/af_ieee802154.h
8340 F:      include/net/cfg802154.h
8341 F:      include/net/ieee802154_netdev.h
8342 F:      include/net/mac802154.h
8343 F:      include/net/nl802154.h
8344 F:      net/ieee802154/
8345 F:      net/mac802154/
8346
8347 IFE PROTOCOL
8348 M:      Yotam Gigi <yotam.gi@gmail.com>
8349 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8350 F:      include/net/ife.h
8351 F:      include/uapi/linux/ife.h
8352 F:      net/ife
8353
8354 IGORPLUG-USB IR RECEIVER
8355 M:      Sean Young <sean@mess.org>
8356 L:      linux-media@vger.kernel.org
8357 S:      Maintained
8358 F:      drivers/media/rc/igorplugusb.c
8359
8360 IGUANAWORKS USB IR TRANSCEIVER
8361 M:      Sean Young <sean@mess.org>
8362 L:      linux-media@vger.kernel.org
8363 S:      Maintained
8364 F:      drivers/media/rc/iguanair.c
8365
8366 IIO DIGITAL POTENTIOMETER DAC
8367 M:      Peter Rosin <peda@axentia.se>
8368 L:      linux-iio@vger.kernel.org
8369 S:      Maintained
8370 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8371 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8372 F:      drivers/iio/dac/dpot-dac.c
8373
8374 IIO ENVELOPE DETECTOR
8375 M:      Peter Rosin <peda@axentia.se>
8376 L:      linux-iio@vger.kernel.org
8377 S:      Maintained
8378 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8379 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8380 F:      drivers/iio/adc/envelope-detector.c
8381
8382 IIO MULTIPLEXER
8383 M:      Peter Rosin <peda@axentia.se>
8384 L:      linux-iio@vger.kernel.org
8385 S:      Maintained
8386 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8387 F:      drivers/iio/multiplexer/iio-mux.c
8388
8389 IIO SUBSYSTEM AND DRIVERS
8390 M:      Jonathan Cameron <jic23@kernel.org>
8391 R:      Hartmut Knaack <knaack.h@gmx.de>
8392 R:      Lars-Peter Clausen <lars@metafoo.de>
8393 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
8394 L:      linux-iio@vger.kernel.org
8395 S:      Maintained
8396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8397 F:      Documentation/ABI/testing/configfs-iio*
8398 F:      Documentation/ABI/testing/sysfs-bus-iio*
8399 F:      Documentation/devicetree/bindings/iio/
8400 F:      drivers/iio/
8401 F:      drivers/staging/iio/
8402 F:      include/linux/iio/
8403 F:      tools/iio/
8404
8405 IIO UNIT CONVERTER
8406 M:      Peter Rosin <peda@axentia.se>
8407 L:      linux-iio@vger.kernel.org
8408 S:      Maintained
8409 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8410 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8411 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8412 F:      drivers/iio/afe/iio-rescale.c
8413
8414 IKANOS/ADI EAGLE ADSL USB DRIVER
8415 M:      Matthieu Castet <castet.matthieu@free.fr>
8416 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8417 S:      Maintained
8418 F:      drivers/usb/atm/ueagle-atm.c
8419
8420 IMGTEC ASCII LCD DRIVER
8421 M:      Paul Burton <paulburton@kernel.org>
8422 S:      Maintained
8423 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8424 F:      drivers/auxdisplay/img-ascii-lcd.c
8425
8426 IMGTEC IR DECODER DRIVER
8427 S:      Orphan
8428 F:      drivers/media/rc/img-ir/
8429
8430 IMON SOUNDGRAPH USB IR RECEIVER
8431 M:      Sean Young <sean@mess.org>
8432 L:      linux-media@vger.kernel.org
8433 S:      Maintained
8434 F:      drivers/media/rc/imon.c
8435 F:      drivers/media/rc/imon_raw.c
8436
8437 IMS TWINTURBO FRAMEBUFFER DRIVER
8438 L:      linux-fbdev@vger.kernel.org
8439 S:      Orphan
8440 F:      drivers/video/fbdev/imsttfb.c
8441
8442 INA209 HARDWARE MONITOR DRIVER
8443 M:      Guenter Roeck <linux@roeck-us.net>
8444 L:      linux-hwmon@vger.kernel.org
8445 S:      Maintained
8446 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
8447 F:      Documentation/hwmon/ina209.rst
8448 F:      drivers/hwmon/ina209.c
8449
8450 INA2XX HARDWARE MONITOR DRIVER
8451 M:      Guenter Roeck <linux@roeck-us.net>
8452 L:      linux-hwmon@vger.kernel.org
8453 S:      Maintained
8454 F:      Documentation/hwmon/ina2xx.rst
8455 F:      drivers/hwmon/ina2xx.c
8456 F:      include/linux/platform_data/ina2xx.h
8457
8458 INDUSTRY PACK SUBSYSTEM (IPACK)
8459 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8460 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8461 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8462 L:      industrypack-devel@lists.sourceforge.net
8463 S:      Maintained
8464 W:      http://industrypack.sourceforge.net
8465 F:      drivers/ipack/
8466
8467 INFINEON DPS310 Driver
8468 M:      Eddie James <eajames@linux.ibm.com>
8469 L:      linux-iio@vger.kernel.org
8470 S:      Maintained
8471 F:      drivers/iio/pressure/dps310.c
8472
8473 INFINIBAND SUBSYSTEM
8474 M:      Doug Ledford <dledford@redhat.com>
8475 M:      Jason Gunthorpe <jgg@mellanox.com>
8476 L:      linux-rdma@vger.kernel.org
8477 S:      Supported
8478 W:      https://github.com/linux-rdma/rdma-core
8479 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8481 F:      Documentation/devicetree/bindings/infiniband/
8482 F:      Documentation/infiniband/
8483 F:      drivers/infiniband/
8484 F:      include/rdma/
8485 F:      include/trace/events/ib_mad.h
8486 F:      include/trace/events/ib_umad.h
8487 F:      include/uapi/linux/if_infiniband.h
8488 F:      include/uapi/rdma/
8489 F:      samples/bpf/ibumad_kern.c
8490 F:      samples/bpf/ibumad_user.c
8491
8492 INGENIC JZ4780 DMA Driver
8493 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
8494 S:      Maintained
8495 F:      drivers/dma/dma-jz4780.c
8496
8497 INGENIC JZ4780 NAND DRIVER
8498 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8499 L:      linux-mtd@lists.infradead.org
8500 S:      Maintained
8501 F:      drivers/mtd/nand/raw/ingenic/
8502
8503 INGENIC JZ47xx SoCs
8504 M:      Paul Cercueil <paul@crapouillou.net>
8505 S:      Maintained
8506 F:      arch/mips/boot/dts/ingenic/
8507 F:      arch/mips/include/asm/mach-jz4740/
8508 F:      arch/mips/jz4740/
8509 F:      drivers/clk/ingenic/
8510 F:      drivers/dma/dma-jz4780.c
8511 F:      drivers/gpu/drm/ingenic/
8512 F:      drivers/i2c/busses/i2c-jz4780.c
8513 F:      drivers/iio/adc/ingenic-adc.c
8514 F:      drivers/irqchip/irq-ingenic.c
8515 F:      drivers/memory/jz4780-nemc.c
8516 F:      drivers/mmc/host/jz4740_mmc.c
8517 F:      drivers/mtd/nand/raw/ingenic/
8518 F:      drivers/pinctrl/pinctrl-ingenic.c
8519 F:      drivers/power/supply/ingenic-battery.c
8520 F:      drivers/pwm/pwm-jz4740.c
8521 F:      drivers/remoteproc/ingenic_rproc.c
8522 F:      drivers/rtc/rtc-jz4740.c
8523 F:      drivers/tty/serial/8250/8250_ingenic.c
8524 F:      drivers/usb/musb/jz4740.c
8525 F:      drivers/watchdog/jz4740_wdt.c
8526 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8527 F:      include/linux/mfd/ingenic-tcu.h
8528 F:      sound/soc/codecs/jz47*
8529 F:      sound/soc/jz4740/
8530
8531 INOTIFY
8532 M:      Jan Kara <jack@suse.cz>
8533 R:      Amir Goldstein <amir73il@gmail.com>
8534 L:      linux-fsdevel@vger.kernel.org
8535 S:      Maintained
8536 F:      Documentation/filesystems/inotify.rst
8537 F:      fs/notify/inotify/
8538 F:      include/linux/inotify.h
8539 F:      include/uapi/linux/inotify.h
8540
8541 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8542 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8543 L:      linux-input@vger.kernel.org
8544 S:      Maintained
8545 Q:      http://patchwork.kernel.org/project/linux-input/list/
8546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8547 F:      Documentation/devicetree/bindings/input/
8548 F:      Documentation/devicetree/bindings/serio/
8549 F:      Documentation/input/
8550 F:      drivers/input/
8551 F:      include/linux/input.h
8552 F:      include/linux/input/
8553 F:      include/uapi/linux/input-event-codes.h
8554 F:      include/uapi/linux/input.h
8555
8556 INPUT MULTITOUCH (MT) PROTOCOL
8557 M:      Henrik Rydberg <rydberg@bitmath.org>
8558 L:      linux-input@vger.kernel.org
8559 S:      Odd fixes
8560 F:      Documentation/input/multi-touch-protocol.rst
8561 F:      drivers/input/input-mt.c
8562 K:      \b(ABS|SYN)_MT_
8563
8564 INSIDE SECURE CRYPTO DRIVER
8565 M:      Antoine Tenart <antoine.tenart@bootlin.com>
8566 L:      linux-crypto@vger.kernel.org
8567 S:      Maintained
8568 F:      drivers/crypto/inside-secure/
8569
8570 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8571 M:      Mimi Zohar <zohar@linux.ibm.com>
8572 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8573 L:      linux-integrity@vger.kernel.org
8574 S:      Supported
8575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8576 F:      security/integrity/ima/
8577
8578 INTEL 810/815 FRAMEBUFFER DRIVER
8579 M:      Antonino Daplas <adaplas@gmail.com>
8580 L:      linux-fbdev@vger.kernel.org
8581 S:      Maintained
8582 F:      drivers/video/fbdev/i810/
8583
8584 INTEL ASoC DRIVERS
8585 M:      Cezary Rojewski <cezary.rojewski@intel.com>
8586 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8587 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
8588 M:      Jie Yang <yang.jie@linux.intel.com>
8589 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8590 S:      Supported
8591 F:      sound/soc/intel/
8592
8593 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8594 M:      Hans de Goede <hdegoede@redhat.com>
8595 L:      platform-driver-x86@vger.kernel.org
8596 S:      Maintained
8597 F:      drivers/platform/x86/intel_atomisp2_pm.c
8598
8599 INTEL BROXTON PMC DRIVER
8600 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8601 M:      Zha Qipeng <qipeng.zha@intel.com>
8602 S:      Maintained
8603 F:      drivers/mfd/intel_pmc_bxt.c
8604 F:      include/linux/mfd/intel_pmc_bxt.h
8605
8606 INTEL C600 SERIES SAS CONTROLLER DRIVER
8607 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
8608 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8609 L:      linux-scsi@vger.kernel.org
8610 S:      Supported
8611 T:      git git://git.code.sf.net/p/intel-sas/isci
8612 F:      drivers/scsi/isci/
8613
8614 INTEL CPU family model numbers
8615 M:      Tony Luck <tony.luck@intel.com>
8616 M:      x86@kernel.org
8617 L:      linux-kernel@vger.kernel.org
8618 S:      Supported
8619 F:      arch/x86/include/asm/intel-family.h
8620
8621 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8622 M:      Jani Nikula <jani.nikula@linux.intel.com>
8623 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8624 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
8625 L:      intel-gfx@lists.freedesktop.org
8626 S:      Supported
8627 W:      https://01.org/linuxgraphics/
8628 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8629 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8630 C:      irc://chat.freenode.net/intel-gfx
8631 T:      git git://anongit.freedesktop.org/drm-intel
8632 F:      Documentation/gpu/i915.rst
8633 F:      drivers/gpu/drm/i915/
8634 F:      include/drm/i915*
8635 F:      include/uapi/drm/i915_drm.h
8636
8637 INTEL ETHERNET DRIVERS
8638 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
8639 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8640 S:      Supported
8641 W:      http://www.intel.com/support/feedback.htm
8642 W:      http://e1000.sourceforge.net/
8643 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8646 F:      Documentation/networking/device_drivers/intel/e100.rst
8647 F:      Documentation/networking/device_drivers/intel/e1000.rst
8648 F:      Documentation/networking/device_drivers/intel/e1000e.rst
8649 F:      Documentation/networking/device_drivers/intel/fm10k.rst
8650 F:      Documentation/networking/device_drivers/intel/i40e.rst
8651 F:      Documentation/networking/device_drivers/intel/iavf.rst
8652 F:      Documentation/networking/device_drivers/intel/ice.rst
8653 F:      Documentation/networking/device_drivers/intel/igb.rst
8654 F:      Documentation/networking/device_drivers/intel/igbvf.rst
8655 F:      Documentation/networking/device_drivers/intel/ixgb.rst
8656 F:      Documentation/networking/device_drivers/intel/ixgbe.rst
8657 F:      Documentation/networking/device_drivers/intel/ixgbevf.rst
8658 F:      drivers/net/ethernet/intel/
8659 F:      drivers/net/ethernet/intel/*/
8660 F:      include/linux/avf/virtchnl.h
8661
8662 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8663 M:      Maik Broemme <mbroemme@libmpq.org>
8664 L:      linux-fbdev@vger.kernel.org
8665 S:      Maintained
8666 F:      Documentation/fb/intelfb.rst
8667 F:      drivers/video/fbdev/intelfb/
8668
8669 INTEL GPIO DRIVERS
8670 M:      Andy Shevchenko <andy@kernel.org>
8671 L:      linux-gpio@vger.kernel.org
8672 S:      Maintained
8673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8674 F:      drivers/gpio/gpio-ich.c
8675 F:      drivers/gpio/gpio-intel-mid.c
8676 F:      drivers/gpio/gpio-merrifield.c
8677 F:      drivers/gpio/gpio-ml-ioh.c
8678 F:      drivers/gpio/gpio-pch.c
8679 F:      drivers/gpio/gpio-sch.c
8680 F:      drivers/gpio/gpio-sodaville.c
8681
8682 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8683 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
8684 M:      Zhi Wang <zhi.a.wang@intel.com>
8685 L:      intel-gvt-dev@lists.freedesktop.org
8686 L:      intel-gfx@lists.freedesktop.org
8687 S:      Supported
8688 W:      https://01.org/igvt-g
8689 T:      git https://github.com/intel/gvt-linux.git
8690 F:      drivers/gpu/drm/i915/gvt/
8691
8692 INTEL HID EVENT DRIVER
8693 M:      Alex Hung <alex.hung@canonical.com>
8694 L:      platform-driver-x86@vger.kernel.org
8695 S:      Maintained
8696 F:      drivers/platform/x86/intel-hid.c
8697
8698 INTEL I/OAT DMA DRIVER
8699 M:      Dave Jiang <dave.jiang@intel.com>
8700 R:      Dan Williams <dan.j.williams@intel.com>
8701 L:      dmaengine@vger.kernel.org
8702 S:      Supported
8703 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8704 F:      drivers/dma/ioat*
8705
8706 INTEL IADX DRIVER
8707 M:      Dave Jiang <dave.jiang@intel.com>
8708 L:      dmaengine@vger.kernel.org
8709 S:      Supported
8710 F:      drivers/dma/idxd/*
8711 F:      include/uapi/linux/idxd.h
8712
8713 INTEL IDLE DRIVER
8714 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
8715 M:      Len Brown <lenb@kernel.org>
8716 L:      linux-pm@vger.kernel.org
8717 S:      Supported
8718 B:      https://bugzilla.kernel.org
8719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8720 F:      drivers/idle/intel_idle.c
8721
8722 INTEL INTEGRATED SENSOR HUB DRIVER
8723 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8724 M:      Jiri Kosina <jikos@kernel.org>
8725 L:      linux-input@vger.kernel.org
8726 S:      Maintained
8727 F:      drivers/hid/intel-ish-hid/
8728
8729 INTEL IOMMU (VT-d)
8730 M:      David Woodhouse <dwmw2@infradead.org>
8731 M:      Lu Baolu <baolu.lu@linux.intel.com>
8732 L:      iommu@lists.linux-foundation.org
8733 S:      Supported
8734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8735 F:      drivers/iommu/intel/
8736 F:      include/linux/intel-iommu.h
8737 F:      include/linux/intel-svm.h
8738
8739 INTEL IOP-ADMA DMA DRIVER
8740 R:      Dan Williams <dan.j.williams@intel.com>
8741 S:      Odd fixes
8742 F:      drivers/dma/iop-adma.c
8743
8744 INTEL IPU3 CSI-2 CIO2 DRIVER
8745 M:      Yong Zhi <yong.zhi@intel.com>
8746 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8747 M:      Bingbu Cao <bingbu.cao@intel.com>
8748 R:      Tian Shu Qiu <tian.shu.qiu@intel.com>
8749 L:      linux-media@vger.kernel.org
8750 S:      Maintained
8751 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
8752 F:      drivers/media/pci/intel/ipu3/
8753
8754 INTEL IPU3 CSI-2 IMGU DRIVER
8755 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8756 R:      Bingbu Cao <bingbu.cao@intel.com>
8757 R:      Tian Shu Qiu <tian.shu.qiu@intel.com>
8758 L:      linux-media@vger.kernel.org
8759 S:      Maintained
8760 F:      Documentation/admin-guide/media/ipu3.rst
8761 F:      Documentation/admin-guide/media/ipu3_rcb.svg
8762 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
8763 F:      drivers/staging/media/ipu3/
8764
8765 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8766 M:      Krzysztof Halasa <khalasa@piap.pl>
8767 S:      Maintained
8768 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8769 F:      drivers/net/wan/ixp4xx_hss.c
8770 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8771 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8772 F:      include/linux/soc/ixp4xx/npe.h
8773 F:      include/linux/soc/ixp4xx/qmgr.h
8774
8775 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8776 M:      Deepak Saxena <dsaxena@plexity.net>
8777 S:      Maintained
8778 F:      drivers/char/hw_random/ixp4xx-rng.c
8779
8780 INTEL MANAGEMENT ENGINE (mei)
8781 M:      Tomas Winkler <tomas.winkler@intel.com>
8782 L:      linux-kernel@vger.kernel.org
8783 S:      Supported
8784 F:      Documentation/driver-api/mei/*
8785 F:      drivers/misc/mei/*
8786 F:      drivers/watchdog/mei_wdt.c
8787 F:      include/linux/mei_cl_bus.h
8788 F:      include/uapi/linux/mei.h
8789 F:      samples/mei/*
8790
8791 INTEL MENLOW THERMAL DRIVER
8792 M:      Sujith Thomas <sujith.thomas@intel.com>
8793 L:      platform-driver-x86@vger.kernel.org
8794 S:      Supported
8795 W:      https://01.org/linux-acpi
8796 F:      drivers/platform/x86/intel_menlow.c
8797
8798 INTEL MIC DRIVERS (mic)
8799 M:      Sudeep Dutt <sudeep.dutt@intel.com>
8800 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
8801 S:      Supported
8802 W:      https://github.com/sudeepdutt/mic
8803 W:      http://software.intel.com/en-us/mic-developer
8804 F:      Documentation/misc-devices/mic/
8805 F:      drivers/dma/mic_x100_dma.c
8806 F:      drivers/dma/mic_x100_dma.h
8807 F:      drivers/misc/mic/
8808 F:      include/linux/mic_bus.h
8809 F:      include/linux/scif.h
8810 F:      include/uapi/linux/mic_common.h
8811 F:      include/uapi/linux/mic_ioctl.h
8812 F:      include/uapi/linux/scif_ioctl.h
8813
8814 INTEL P-Unit IPC DRIVER
8815 M:      Zha Qipeng <qipeng.zha@intel.com>
8816 L:      platform-driver-x86@vger.kernel.org
8817 S:      Maintained
8818 F:      arch/x86/include/asm/intel_punit_ipc.h
8819 F:      drivers/platform/x86/intel_punit_ipc.c
8820
8821 INTEL PMC CORE DRIVER
8822 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
8823 M:      Vishwanath Somayaji <vishwanath.somayaji@intel.com>
8824 L:      platform-driver-x86@vger.kernel.org
8825 S:      Maintained
8826 F:      drivers/platform/x86/intel_pmc_core*
8827
8828 INTEL PMIC GPIO DRIVERS
8829 M:      Andy Shevchenko <andy@kernel.org>
8830 S:      Maintained
8831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8832 F:      drivers/gpio/gpio-*cove.c
8833 F:      drivers/gpio/gpio-msic.c
8834
8835 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
8836 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8837 S:      Maintained
8838 F:      drivers/mfd/intel_msic.c
8839 F:      drivers/mfd/intel_soc_pmic*
8840 F:      include/linux/mfd/intel_msic.h
8841 F:      include/linux/mfd/intel_soc_pmic*
8842
8843 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8844 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
8845 L:      linux-wireless@vger.kernel.org
8846 S:      Maintained
8847 F:      Documentation/networking/device_drivers/intel/ipw2100.rst
8848 F:      Documentation/networking/device_drivers/intel/ipw2200.rst
8849 F:      drivers/net/wireless/intel/ipw2x00/
8850
8851 INTEL PSTATE DRIVER
8852 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8853 M:      Len Brown <lenb@kernel.org>
8854 L:      linux-pm@vger.kernel.org
8855 S:      Supported
8856 F:      drivers/cpufreq/intel_pstate.c
8857
8858 INTEL RDMA RNIC DRIVER
8859 M:      Faisal Latif <faisal.latif@intel.com>
8860 M:      Shiraz Saleem <shiraz.saleem@intel.com>
8861 L:      linux-rdma@vger.kernel.org
8862 S:      Supported
8863 F:      drivers/infiniband/hw/i40iw/
8864 F:      include/uapi/rdma/i40iw-abi.h
8865
8866 INTEL SCU DRIVERS
8867 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8868 S:      Maintained
8869 F:      arch/x86/include/asm/intel_scu_ipc.h
8870 F:      drivers/platform/x86/intel_scu_*
8871
8872 INTEL SPEED SELECT TECHNOLOGY
8873 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8874 L:      platform-driver-x86@vger.kernel.org
8875 S:      Maintained
8876 F:      drivers/platform/x86/intel_speed_select_if/
8877 F:      include/uapi/linux/isst_if.h
8878 F:      tools/power/x86/intel-speed-select/
8879
8880 INTEL STRATIX10 FIRMWARE DRIVERS
8881 M:      Richard Gong <richard.gong@linux.intel.com>
8882 L:      linux-kernel@vger.kernel.org
8883 S:      Maintained
8884 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
8885 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
8886 F:      drivers/firmware/stratix10-rsu.c
8887 F:      drivers/firmware/stratix10-svc.c
8888 F:      include/linux/firmware/intel/stratix10-smc.h
8889 F:      include/linux/firmware/intel/stratix10-svc-client.h
8890
8891 INTEL TELEMETRY DRIVER
8892 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
8893 M:      "David E. Box" <david.e.box@linux.intel.com>
8894 L:      platform-driver-x86@vger.kernel.org
8895 S:      Maintained
8896 F:      arch/x86/include/asm/intel_telemetry.h
8897 F:      drivers/platform/x86/intel_telemetry*
8898
8899 INTEL UNCORE FREQUENCY CONTROL
8900 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8901 L:      platform-driver-x86@vger.kernel.org
8902 S:      Maintained
8903 F:      drivers/platform/x86/intel-uncore-frequency.c
8904
8905 INTEL VIRTUAL BUTTON DRIVER
8906 M:      AceLan Kao <acelan.kao@canonical.com>
8907 L:      platform-driver-x86@vger.kernel.org
8908 S:      Maintained
8909 F:      drivers/platform/x86/intel-vbtn.c
8910
8911 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
8912 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8913 L:      linux-wireless@vger.kernel.org
8914 S:      Supported
8915 F:      drivers/net/wireless/intel/iwlegacy/
8916
8917 INTEL WIRELESS WIFI LINK (iwlwifi)
8918 M:      Johannes Berg <johannes.berg@intel.com>
8919 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
8920 M:      Luca Coelho <luciano.coelho@intel.com>
8921 M:      Intel Linux Wireless <linuxwifi@intel.com>
8922 L:      linux-wireless@vger.kernel.org
8923 S:      Supported
8924 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
8925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
8926 F:      drivers/net/wireless/intel/iwlwifi/
8927
8928 INTEL WIRELESS WIMAX CONNECTION 2400
8929 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
8930 M:      linux-wimax@intel.com
8931 L:      wimax@linuxwimax.org (subscribers-only)
8932 S:      Supported
8933 W:      http://linuxwimax.org
8934 F:      Documentation/admin-guide/wimax/i2400m.rst
8935 F:      drivers/net/wimax/i2400m/
8936 F:      include/uapi/linux/wimax/i2400m.h
8937
8938 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
8939 M:      Jithu Joseph <jithu.joseph@intel.com>
8940 R:      Maurice Ma <maurice.ma@intel.com>
8941 S:      Maintained
8942 W:      https://slimbootloader.github.io/security/firmware-update.html
8943 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
8944
8945 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
8946 M:      Mario Limonciello <mario.limonciello@dell.com>
8947 S:      Maintained
8948 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
8949
8950 INTEL(R) TRACE HUB
8951 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8952 S:      Supported
8953 F:      Documentation/trace/intel_th.rst
8954 F:      drivers/hwtracing/intel_th/
8955 F:      include/linux/intel_th.h
8956
8957 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
8958 M:      Ning Sun <ning.sun@intel.com>
8959 L:      tboot-devel@lists.sourceforge.net
8960 S:      Supported
8961 W:      http://tboot.sourceforge.net
8962 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
8963 F:      Documentation/x86/intel_txt.rst
8964 F:      arch/x86/kernel/tboot.c
8965 F:      include/linux/tboot.h
8966
8967 INTERCONNECT API
8968 M:      Georgi Djakov <georgi.djakov@linaro.org>
8969 L:      linux-pm@vger.kernel.org
8970 S:      Maintained
8971 F:      Documentation/devicetree/bindings/interconnect/
8972 F:      Documentation/driver-api/interconnect.rst
8973 F:      drivers/interconnect/
8974 F:      include/dt-bindings/interconnect/
8975 F:      include/linux/interconnect-provider.h
8976 F:      include/linux/interconnect.h
8977
8978 INVENSENSE MPU-3050 GYROSCOPE DRIVER
8979 M:      Linus Walleij <linus.walleij@linaro.org>
8980 L:      linux-iio@vger.kernel.org
8981 S:      Maintained
8982 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
8983 F:      drivers/iio/gyro/mpu3050*
8984
8985 IOC3 ETHERNET DRIVER
8986 M:      Ralf Baechle <ralf@linux-mips.org>
8987 L:      linux-mips@vger.kernel.org
8988 S:      Maintained
8989 F:      drivers/net/ethernet/sgi/ioc3-eth.c
8990
8991 IOMAP FILESYSTEM LIBRARY
8992 M:      Christoph Hellwig <hch@infradead.org>
8993 M:      Darrick J. Wong <darrick.wong@oracle.com>
8994 M:      linux-xfs@vger.kernel.org
8995 M:      linux-fsdevel@vger.kernel.org
8996 L:      linux-xfs@vger.kernel.org
8997 L:      linux-fsdevel@vger.kernel.org
8998 S:      Supported
8999 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9000 F:      fs/iomap/
9001 F:      include/linux/iomap.h
9002
9003 IOMMU DRIVERS
9004 M:      Joerg Roedel <joro@8bytes.org>
9005 L:      iommu@lists.linux-foundation.org
9006 S:      Maintained
9007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9008 F:      Documentation/devicetree/bindings/iommu/
9009 F:      drivers/iommu/
9010 F:      include/linux/iommu.h
9011 F:      include/linux/iova.h
9012 F:      include/linux/of_iommu.h
9013
9014 IO_URING
9015 M:      Jens Axboe <axboe@kernel.dk>
9016 L:      io-uring@vger.kernel.org
9017 S:      Maintained
9018 T:      git git://git.kernel.dk/linux-block
9019 T:      git git://git.kernel.dk/liburing
9020 F:      fs/io-wq.c
9021 F:      fs/io-wq.h
9022 F:      fs/io_uring.c
9023 F:      include/uapi/linux/io_uring.h
9024
9025 IPMI SUBSYSTEM
9026 M:      Corey Minyard <minyard@acm.org>
9027 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9028 S:      Supported
9029 W:      http://openipmi.sourceforge.net/
9030 F:      Documentation/driver-api/ipmi.rst
9031 F:      Documentation/devicetree/bindings/ipmi/
9032 F:      drivers/char/ipmi/
9033 F:      include/linux/ipmi*
9034 F:      include/uapi/linux/ipmi*
9035
9036 IPS SCSI RAID DRIVER
9037 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9038 L:      linux-scsi@vger.kernel.org
9039 S:      Maintained
9040 W:      http://www.adaptec.com/
9041 F:      drivers/scsi/ips*
9042
9043 IPVS
9044 M:      Wensong Zhang <wensong@linux-vs.org>
9045 M:      Simon Horman <horms@verge.net.au>
9046 M:      Julian Anastasov <ja@ssi.bg>
9047 L:      netdev@vger.kernel.org
9048 L:      lvs-devel@vger.kernel.org
9049 S:      Maintained
9050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9052 F:      Documentation/networking/ipvs-sysctl.rst
9053 F:      include/net/ip_vs.h
9054 F:      include/uapi/linux/ip_vs.h
9055 F:      net/netfilter/ipvs/
9056
9057 IPWIRELESS DRIVER
9058 M:      Jiri Kosina <jikos@kernel.org>
9059 M:      David Sterba <dsterba@suse.com>
9060 S:      Odd Fixes
9061 F:      drivers/tty/ipwireless/
9062
9063 IPX NETWORK LAYER
9064 L:      netdev@vger.kernel.org
9065 S:      Obsolete
9066 F:      include/uapi/linux/ipx.h
9067
9068 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9069 M:      Marc Zyngier <maz@kernel.org>
9070 S:      Maintained
9071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9072 F:      Documentation/core-api/irq/irq-domain.rst
9073 F:      include/linux/irqdomain.h
9074 F:      kernel/irq/irqdomain.c
9075 F:      kernel/irq/msi.c
9076
9077 IRQ SUBSYSTEM
9078 M:      Thomas Gleixner <tglx@linutronix.de>
9079 L:      linux-kernel@vger.kernel.org
9080 S:      Maintained
9081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9082 F:      kernel/irq/
9083
9084 IRQCHIP DRIVERS
9085 M:      Thomas Gleixner <tglx@linutronix.de>
9086 M:      Jason Cooper <jason@lakedaemon.net>
9087 M:      Marc Zyngier <maz@kernel.org>
9088 L:      linux-kernel@vger.kernel.org
9089 S:      Maintained
9090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9091 F:      Documentation/devicetree/bindings/interrupt-controller/
9092 F:      drivers/irqchip/
9093
9094 ISA
9095 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9096 S:      Maintained
9097 F:      Documentation/driver-api/isa.rst
9098 F:      drivers/base/isa.c
9099 F:      include/linux/isa.h
9100
9101 ISA RADIO MODULE
9102 M:      Hans Verkuil <hverkuil@xs4all.nl>
9103 L:      linux-media@vger.kernel.org
9104 S:      Maintained
9105 W:      https://linuxtv.org
9106 T:      git git://linuxtv.org/media_tree.git
9107 F:      drivers/media/radio/radio-isa*
9108
9109 ISAPNP
9110 M:      Jaroslav Kysela <perex@perex.cz>
9111 S:      Maintained
9112 F:      Documentation/driver-api/isapnp.rst
9113 F:      drivers/pnp/isapnp/
9114 F:      include/linux/isapnp.h
9115
9116 ISCSI
9117 M:      Lee Duncan <lduncan@suse.com>
9118 M:      Chris Leech <cleech@redhat.com>
9119 L:      open-iscsi@googlegroups.com
9120 L:      linux-scsi@vger.kernel.org
9121 S:      Maintained
9122 W:      www.open-iscsi.com
9123 F:      drivers/scsi/*iscsi*
9124 F:      include/scsi/*iscsi*
9125
9126 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9127 M:      Peter Jones <pjones@redhat.com>
9128 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9129 S:      Maintained
9130 F:      drivers/firmware/iscsi_ibft*
9131
9132 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9133 M:      Sagi Grimberg <sagi@grimberg.me>
9134 M:      Max Gurtovoy <maxg@mellanox.com>
9135 L:      linux-rdma@vger.kernel.org
9136 S:      Supported
9137 W:      http://www.openfabrics.org
9138 W:      www.open-iscsi.org
9139 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9140 F:      drivers/infiniband/ulp/iser/
9141
9142 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9143 M:      Sagi Grimberg <sagi@grimberg.me>
9144 L:      linux-rdma@vger.kernel.org
9145 L:      target-devel@vger.kernel.org
9146 S:      Supported
9147 W:      http://www.linux-iscsi.org
9148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9149 F:      drivers/infiniband/ulp/isert
9150
9151 ISDN/CMTP OVER BLUETOOTH
9152 M:      Karsten Keil <isdn@linux-pingi.de>
9153 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9154 L:      netdev@vger.kernel.org
9155 S:      Odd Fixes
9156 W:      http://www.isdn4linux.de
9157 F:      Documentation/isdn/
9158 F:      drivers/isdn/capi/
9159 F:      include/linux/isdn/
9160 F:      include/uapi/linux/isdn/
9161 F:      net/bluetooth/cmtp/
9162
9163 ISDN/mISDN SUBSYSTEM
9164 M:      Karsten Keil <isdn@linux-pingi.de>
9165 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9166 L:      netdev@vger.kernel.org
9167 S:      Maintained
9168 W:      http://www.isdn4linux.de
9169 F:      drivers/isdn/Kconfig
9170 F:      drivers/isdn/Makefile
9171 F:      drivers/isdn/hardware/
9172 F:      drivers/isdn/mISDN/
9173
9174 IT87 HARDWARE MONITORING DRIVER
9175 M:      Jean Delvare <jdelvare@suse.com>
9176 L:      linux-hwmon@vger.kernel.org
9177 S:      Maintained
9178 F:      Documentation/hwmon/it87.rst
9179 F:      drivers/hwmon/it87.c
9180
9181 IT913X MEDIA DRIVER
9182 M:      Antti Palosaari <crope@iki.fi>
9183 L:      linux-media@vger.kernel.org
9184 S:      Maintained
9185 W:      https://linuxtv.org
9186 W:      http://palosaari.fi/linux/
9187 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9188 T:      git git://linuxtv.org/anttip/media_tree.git
9189 F:      drivers/media/tuners/it913x*
9190
9191 IVTV VIDEO4LINUX DRIVER
9192 M:      Andy Walls <awalls@md.metrocast.net>
9193 L:      linux-media@vger.kernel.org
9194 S:      Maintained
9195 W:      https://linuxtv.org
9196 T:      git git://linuxtv.org/media_tree.git
9197 F:      Documentation/admin-guide/media/ivtv*
9198 F:      drivers/media/pci/ivtv/
9199 F:      include/uapi/linux/ivtv*
9200
9201 IX2505V MEDIA DRIVER
9202 M:      Malcolm Priestley <tvboxspy@gmail.com>
9203 L:      linux-media@vger.kernel.org
9204 S:      Maintained
9205 W:      https://linuxtv.org
9206 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9207 F:      drivers/media/dvb-frontends/ix2505v*
9208
9209 JAILHOUSE HYPERVISOR INTERFACE
9210 M:      Jan Kiszka <jan.kiszka@siemens.com>
9211 L:      jailhouse-dev@googlegroups.com
9212 S:      Maintained
9213 F:      arch/x86/include/asm/jailhouse_para.h
9214 F:      arch/x86/kernel/jailhouse.c
9215
9216 JC42.4 TEMPERATURE SENSOR DRIVER
9217 M:      Guenter Roeck <linux@roeck-us.net>
9218 L:      linux-hwmon@vger.kernel.org
9219 S:      Maintained
9220 F:      Documentation/hwmon/jc42.rst
9221 F:      drivers/hwmon/jc42.c
9222
9223 JFS FILESYSTEM
9224 M:      Dave Kleikamp <shaggy@kernel.org>
9225 L:      jfs-discussion@lists.sourceforge.net
9226 S:      Maintained
9227 W:      http://jfs.sourceforge.net/
9228 T:      git git://github.com/kleikamp/linux-shaggy.git
9229 F:      Documentation/admin-guide/jfs.rst
9230 F:      fs/jfs/
9231
9232 JME NETWORK DRIVER
9233 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9234 L:      netdev@vger.kernel.org
9235 S:      Maintained
9236 F:      drivers/net/ethernet/jme.*
9237
9238 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9239 M:      David Woodhouse <dwmw2@infradead.org>
9240 M:      Richard Weinberger <richard@nod.at>
9241 L:      linux-mtd@lists.infradead.org
9242 S:      Odd Fixes
9243 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9244 T:      git git://git.infradead.org/ubifs-2.6.git
9245 F:      fs/jffs2/
9246 F:      include/uapi/linux/jffs2.h
9247
9248 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9249 M:      "Theodore Ts'o" <tytso@mit.edu>
9250 M:      Jan Kara <jack@suse.com>
9251 L:      linux-ext4@vger.kernel.org
9252 S:      Maintained
9253 F:      fs/jbd2/
9254 F:      include/linux/jbd2.h
9255
9256 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9257 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9258 L:      linux-media@vger.kernel.org
9259 S:      Maintained
9260 F:      drivers/media/platform/rcar_jpu.c
9261
9262 JSM Neo PCI based serial card
9263 L:      linux-serial@vger.kernel.org
9264 S:      Orphan
9265 F:      drivers/tty/serial/jsm/
9266
9267 K10TEMP HARDWARE MONITORING DRIVER
9268 M:      Clemens Ladisch <clemens@ladisch.de>
9269 L:      linux-hwmon@vger.kernel.org
9270 S:      Maintained
9271 F:      Documentation/hwmon/k10temp.rst
9272 F:      drivers/hwmon/k10temp.c
9273
9274 K8TEMP HARDWARE MONITORING DRIVER
9275 M:      Rudolf Marek <r.marek@assembler.cz>
9276 L:      linux-hwmon@vger.kernel.org
9277 S:      Maintained
9278 F:      Documentation/hwmon/k8temp.rst
9279 F:      drivers/hwmon/k8temp.c
9280
9281 KASAN
9282 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
9283 R:      Alexander Potapenko <glider@google.com>
9284 R:      Dmitry Vyukov <dvyukov@google.com>
9285 L:      kasan-dev@googlegroups.com
9286 S:      Maintained
9287 F:      Documentation/dev-tools/kasan.rst
9288 F:      arch/*/include/asm/kasan.h
9289 F:      arch/*/mm/kasan_init*
9290 F:      include/linux/kasan*.h
9291 F:      lib/test_kasan.c
9292 F:      mm/kasan/
9293 F:      scripts/Makefile.kasan
9294
9295 KCONFIG
9296 M:      Masahiro Yamada <masahiroy@kernel.org>
9297 L:      linux-kbuild@vger.kernel.org
9298 S:      Maintained
9299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9300 F:      Documentation/kbuild/kconfig*
9301 F:      scripts/Kconfig.include
9302 F:      scripts/kconfig/
9303
9304 KCSAN
9305 M:      Marco Elver <elver@google.com>
9306 R:      Dmitry Vyukov <dvyukov@google.com>
9307 L:      kasan-dev@googlegroups.com
9308 S:      Maintained
9309 F:      Documentation/dev-tools/kcsan.rst
9310 F:      include/linux/kcsan*.h
9311 F:      kernel/kcsan/
9312 F:      lib/Kconfig.kcsan
9313 F:      scripts/Makefile.kcsan
9314
9315 KDUMP
9316 M:      Dave Young <dyoung@redhat.com>
9317 M:      Baoquan He <bhe@redhat.com>
9318 R:      Vivek Goyal <vgoyal@redhat.com>
9319 L:      kexec@lists.infradead.org
9320 S:      Maintained
9321 W:      http://lse.sourceforge.net/kdump/
9322 F:      Documentation/admin-guide/kdump/
9323 F:      fs/proc/vmcore.c
9324 F:      include/linux/crash_core.h
9325 F:      include/linux/crash_dump.h
9326 F:      include/uapi/linux/vmcore.h
9327 F:      kernel/crash_*.c
9328
9329 KEENE FM RADIO TRANSMITTER DRIVER
9330 M:      Hans Verkuil <hverkuil@xs4all.nl>
9331 L:      linux-media@vger.kernel.org
9332 S:      Maintained
9333 W:      https://linuxtv.org
9334 T:      git git://linuxtv.org/media_tree.git
9335 F:      drivers/media/radio/radio-keene*
9336
9337 KERNEL AUTOMOUNTER
9338 M:      Ian Kent <raven@themaw.net>
9339 L:      autofs@vger.kernel.org
9340 S:      Maintained
9341 F:      fs/autofs/
9342
9343 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9344 M:      Masahiro Yamada <masahiroy@kernel.org>
9345 M:      Michal Marek <michal.lkml@markovi.net>
9346 L:      linux-kbuild@vger.kernel.org
9347 S:      Maintained
9348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9349 F:      Documentation/kbuild/
9350 F:      Makefile
9351 F:      scripts/*vmlinux*
9352 F:      scripts/Kbuild*
9353 F:      scripts/Makefile*
9354 F:      scripts/basic/
9355 F:      scripts/mk*
9356 F:      scripts/mod/
9357 F:      scripts/package/
9358
9359 KERNEL JANITORS
9360 L:      kernel-janitors@vger.kernel.org
9361 S:      Odd Fixes
9362 W:      http://kernelnewbies.org/KernelJanitors
9363
9364 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9365 M:      "J. Bruce Fields" <bfields@fieldses.org>
9366 M:      Chuck Lever <chuck.lever@oracle.com>
9367 L:      linux-nfs@vger.kernel.org
9368 S:      Supported
9369 W:      http://nfs.sourceforge.net/
9370 T:      git git://linux-nfs.org/~bfields/linux.git
9371 F:      fs/lockd/
9372 F:      fs/nfs_common/
9373 F:      fs/nfsd/
9374 F:      include/linux/lockd/
9375 F:      include/linux/sunrpc/
9376 F:      include/uapi/linux/nfsd/
9377 F:      include/uapi/linux/sunrpc/
9378 F:      net/sunrpc/
9379
9380 KERNEL SELFTEST FRAMEWORK
9381 M:      Shuah Khan <shuah@kernel.org>
9382 M:      Shuah Khan <skhan@linuxfoundation.org>
9383 L:      linux-kselftest@vger.kernel.org
9384 S:      Maintained
9385 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9387 F:      Documentation/dev-tools/kselftest*
9388 F:      tools/testing/selftests/
9389
9390 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9391 M:      Brendan Higgins <brendanhiggins@google.com>
9392 L:      linux-kselftest@vger.kernel.org
9393 L:      kunit-dev@googlegroups.com
9394 S:      Maintained
9395 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9396 F:      Documentation/dev-tools/kunit/
9397 F:      include/kunit/
9398 F:      lib/kunit/
9399 F:      tools/testing/kunit/
9400
9401 KERNEL USERMODE HELPER
9402 M:      Luis Chamberlain <mcgrof@kernel.org>
9403 L:      linux-kernel@vger.kernel.org
9404 S:      Maintained
9405 F:      include/linux/umh.h
9406 F:      kernel/umh.c
9407
9408 KERNEL VIRTUAL MACHINE (KVM)
9409 M:      Paolo Bonzini <pbonzini@redhat.com>
9410 L:      kvm@vger.kernel.org
9411 S:      Supported
9412 W:      http://www.linux-kvm.org
9413 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9414 F:      Documentation/virt/kvm/
9415 F:      include/asm-generic/kvm*
9416 F:      include/kvm/iodev.h
9417 F:      include/linux/kvm*
9418 F:      include/trace/events/kvm.h
9419 F:      include/uapi/asm-generic/kvm*
9420 F:      include/uapi/linux/kvm*
9421 F:      tools/kvm/
9422 F:      tools/testing/selftests/kvm/
9423 F:      virt/kvm/*
9424
9425 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9426 M:      Marc Zyngier <maz@kernel.org>
9427 R:      James Morse <james.morse@arm.com>
9428 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
9429 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
9430 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9431 L:      kvmarm@lists.cs.columbia.edu
9432 S:      Maintained
9433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9434 F:      arch/arm64/include/asm/kvm*
9435 F:      arch/arm64/include/uapi/asm/kvm*
9436 F:      arch/arm64/kvm/
9437 F:      include/kvm/arm_*
9438
9439 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9440 L:      linux-mips@vger.kernel.org
9441 L:      kvm@vger.kernel.org
9442 S:      Orphan
9443 F:      arch/mips/include/asm/kvm*
9444 F:      arch/mips/include/uapi/asm/kvm*
9445 F:      arch/mips/kvm/
9446
9447 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9448 M:      Paul Mackerras <paulus@ozlabs.org>
9449 L:      kvm-ppc@vger.kernel.org
9450 S:      Supported
9451 W:      http://www.linux-kvm.org/
9452 T:      git git://github.com/agraf/linux-2.6.git
9453 F:      arch/powerpc/include/asm/kvm*
9454 F:      arch/powerpc/include/uapi/asm/kvm*
9455 F:      arch/powerpc/kernel/kvm*
9456 F:      arch/powerpc/kvm/
9457
9458 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9459 M:      Christian Borntraeger <borntraeger@de.ibm.com>
9460 M:      Janosch Frank <frankja@linux.ibm.com>
9461 R:      David Hildenbrand <david@redhat.com>
9462 R:      Cornelia Huck <cohuck@redhat.com>
9463 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
9464 L:      kvm@vger.kernel.org
9465 S:      Supported
9466 W:      http://www.ibm.com/developerworks/linux/linux390/
9467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9468 F:      Documentation/virt/kvm/s390*
9469 F:      arch/s390/include/asm/gmap.h
9470 F:      arch/s390/include/asm/kvm*
9471 F:      arch/s390/include/uapi/asm/kvm*
9472 F:      arch/s390/kvm/
9473 F:      arch/s390/mm/gmap.c
9474 F:      tools/testing/selftests/kvm/*/s390x/
9475 F:      tools/testing/selftests/kvm/s390x/
9476
9477 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9478 M:      Paolo Bonzini <pbonzini@redhat.com>
9479 R:      Sean Christopherson <sean.j.christopherson@intel.com>
9480 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
9481 R:      Wanpeng Li <wanpengli@tencent.com>
9482 R:      Jim Mattson <jmattson@google.com>
9483 R:      Joerg Roedel <joro@8bytes.org>
9484 L:      kvm@vger.kernel.org
9485 S:      Supported
9486 W:      http://www.linux-kvm.org
9487 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9488 F:      arch/x86/include/asm/kvm*
9489 F:      arch/x86/include/asm/pvclock-abi.h
9490 F:      arch/x86/include/asm/svm.h
9491 F:      arch/x86/include/asm/vmx*.h
9492 F:      arch/x86/include/uapi/asm/kvm*
9493 F:      arch/x86/include/uapi/asm/svm.h
9494 F:      arch/x86/include/uapi/asm/vmx.h
9495 F:      arch/x86/kernel/kvm.c
9496 F:      arch/x86/kernel/kvmclock.c
9497 F:      arch/x86/kvm/
9498 F:      arch/x86/kvm/*/
9499
9500 KERNFS
9501 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9502 M:      Tejun Heo <tj@kernel.org>
9503 S:      Supported
9504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9505 F:      fs/kernfs/
9506 F:      include/linux/kernfs.h
9507
9508 KEXEC
9509 M:      Eric Biederman <ebiederm@xmission.com>
9510 L:      kexec@lists.infradead.org
9511 S:      Maintained
9512 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9513 F:      include/linux/kexec.h
9514 F:      include/uapi/linux/kexec.h
9515 F:      kernel/kexec*
9516
9517 KEYS-ENCRYPTED
9518 M:      Mimi Zohar <zohar@linux.ibm.com>
9519 L:      linux-integrity@vger.kernel.org
9520 L:      keyrings@vger.kernel.org
9521 S:      Supported
9522 F:      Documentation/security/keys/trusted-encrypted.rst
9523 F:      include/keys/encrypted-type.h
9524 F:      security/keys/encrypted-keys/
9525
9526 KEYS-TRUSTED
9527 M:      James Bottomley <jejb@linux.ibm.com>
9528 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9529 M:      Mimi Zohar <zohar@linux.ibm.com>
9530 L:      linux-integrity@vger.kernel.org
9531 L:      keyrings@vger.kernel.org
9532 S:      Supported
9533 F:      Documentation/security/keys/trusted-encrypted.rst
9534 F:      include/keys/trusted-type.h
9535 F:      include/keys/trusted_tpm.h
9536 F:      security/keys/trusted-keys/
9537
9538 KEYS/KEYRINGS
9539 M:      David Howells <dhowells@redhat.com>
9540 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9541 L:      keyrings@vger.kernel.org
9542 S:      Maintained
9543 F:      Documentation/security/keys/core.rst
9544 F:      include/keys/
9545 F:      include/linux/key-type.h
9546 F:      include/linux/key.h
9547 F:      include/linux/keyctl.h
9548 F:      include/uapi/linux/keyctl.h
9549 F:      security/keys/
9550
9551 KFIFO
9552 M:      Stefani Seibold <stefani@seibold.net>
9553 S:      Maintained
9554 F:      include/linux/kfifo.h
9555 F:      lib/kfifo.c
9556 F:      samples/kfifo/
9557
9558 KGDB / KDB /debug_core
9559 M:      Jason Wessel <jason.wessel@windriver.com>
9560 M:      Daniel Thompson <daniel.thompson@linaro.org>
9561 R:      Douglas Anderson <dianders@chromium.org>
9562 L:      kgdb-bugreport@lists.sourceforge.net
9563 S:      Maintained
9564 W:      http://kgdb.wiki.kernel.org/
9565 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9566 F:      Documentation/dev-tools/kgdb.rst
9567 F:      drivers/misc/kgdbts.c
9568 F:      drivers/tty/serial/kgdboc.c
9569 F:      include/linux/kdb.h
9570 F:      include/linux/kgdb.h
9571 F:      kernel/debug/
9572
9573 KMEMLEAK
9574 M:      Catalin Marinas <catalin.marinas@arm.com>
9575 S:      Maintained
9576 F:      Documentation/dev-tools/kmemleak.rst
9577 F:      include/linux/kmemleak.h
9578 F:      mm/kmemleak-test.c
9579 F:      mm/kmemleak.c
9580
9581 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9582 M:      Luis Chamberlain <mcgrof@kernel.org>
9583 L:      linux-kernel@vger.kernel.org
9584 S:      Maintained
9585 F:      include/linux/kmod.h
9586 F:      kernel/kmod.c
9587 F:      lib/test_kmod.c
9588 F:      tools/testing/selftests/kmod/
9589
9590 KPROBES
9591 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9592 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9593 M:      "David S. Miller" <davem@davemloft.net>
9594 M:      Masami Hiramatsu <mhiramat@kernel.org>
9595 S:      Maintained
9596 F:      Documentation/kprobes.txt
9597 F:      include/asm-generic/kprobes.h
9598 F:      include/linux/kprobes.h
9599 F:      kernel/kprobes.c
9600
9601 KS0108 LCD CONTROLLER DRIVER
9602 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9603 S:      Maintained
9604 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9605 F:      drivers/auxdisplay/ks0108.c
9606 F:      include/linux/ks0108.h
9607
9608 L3MDEV
9609 M:      David Ahern <dsahern@kernel.org>
9610 L:      netdev@vger.kernel.org
9611 S:      Maintained
9612 F:      include/net/l3mdev.h
9613 F:      net/l3mdev
9614
9615 L7 BPF FRAMEWORK
9616 M:      John Fastabend <john.fastabend@gmail.com>
9617 M:      Daniel Borkmann <daniel@iogearbox.net>
9618 M:      Jakub Sitnicki <jakub@cloudflare.com>
9619 M:      Lorenz Bauer <lmb@cloudflare.com>
9620 L:      netdev@vger.kernel.org
9621 L:      bpf@vger.kernel.org
9622 S:      Maintained
9623 F:      include/linux/skmsg.h
9624 F:      net/core/skmsg.c
9625 F:      net/core/sock_map.c
9626 F:      net/ipv4/tcp_bpf.c
9627 F:      net/ipv4/udp_bpf.c
9628
9629 LANTIQ / INTEL Ethernet drivers
9630 M:      Hauke Mehrtens <hauke@hauke-m.de>
9631 L:      netdev@vger.kernel.org
9632 S:      Maintained
9633 F:      drivers/net/dsa/lantiq_gswip.c
9634 F:      drivers/net/dsa/lantiq_pce.h
9635 F:      drivers/net/ethernet/lantiq_xrx200.c
9636 F:      net/dsa/tag_gswip.c
9637
9638 LANTIQ MIPS ARCHITECTURE
9639 M:      John Crispin <john@phrozen.org>
9640 L:      linux-mips@vger.kernel.org
9641 S:      Maintained
9642 F:      arch/mips/lantiq
9643 F:      drivers/soc/lantiq
9644
9645 LAPB module
9646 L:      linux-x25@vger.kernel.org
9647 S:      Orphan
9648 F:      Documentation/networking/lapb-module.rst
9649 F:      include/*/lapb.h
9650 F:      net/lapb/
9651
9652 LASI 53c700 driver for PARISC
9653 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9654 L:      linux-scsi@vger.kernel.org
9655 S:      Maintained
9656 F:      Documentation/scsi/53c700.rst
9657 F:      drivers/scsi/53c700*
9658
9659 LEAKING_ADDRESSES
9660 M:      Tobin C. Harding <me@tobin.cc>
9661 M:      Tycho Andersen <tycho@tycho.ws>
9662 L:      kernel-hardening@lists.openwall.com
9663 S:      Maintained
9664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9665 F:      scripts/leaking_addresses.pl
9666
9667 LED SUBSYSTEM
9668 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
9669 M:      Pavel Machek <pavel@ucw.cz>
9670 R:      Dan Murphy <dmurphy@ti.com>
9671 L:      linux-leds@vger.kernel.org
9672 S:      Maintained
9673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
9674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9675 F:      Documentation/devicetree/bindings/leds/
9676 F:      drivers/leds/
9677 F:      include/linux/leds.h
9678
9679 LEGACY EEPROM DRIVER
9680 M:      Jean Delvare <jdelvare@suse.com>
9681 S:      Maintained
9682 F:      Documentation/misc-devices/eeprom.rst
9683 F:      drivers/misc/eeprom/eeprom.c
9684
9685 LEGO MINDSTORMS EV3
9686 R:      David Lechner <david@lechnology.com>
9687 S:      Maintained
9688 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9689 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9690 F:      drivers/power/supply/lego_ev3_battery.c
9691
9692 LEGO USB Tower driver
9693 M:      Juergen Stuber <starblue@users.sourceforge.net>
9694 L:      legousb-devel@lists.sourceforge.net
9695 S:      Maintained
9696 W:      http://legousb.sourceforge.net/
9697 F:      drivers/usb/misc/legousbtower.c
9698
9699 LG LAPTOP EXTRAS
9700 M:      Matan Ziv-Av <matan@svgalib.org>
9701 L:      platform-driver-x86@vger.kernel.org
9702 S:      Maintained
9703 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9704 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9705 F:      drivers/platform/x86/lg-laptop.c
9706
9707 LG2160 MEDIA DRIVER
9708 M:      Michael Krufky <mkrufky@linuxtv.org>
9709 L:      linux-media@vger.kernel.org
9710 S:      Maintained
9711 W:      https://linuxtv.org
9712 W:      http://github.com/mkrufky
9713 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9714 T:      git git://linuxtv.org/mkrufky/tuners.git
9715 F:      drivers/media/dvb-frontends/lg2160.*
9716
9717 LGDT3305 MEDIA DRIVER
9718 M:      Michael Krufky <mkrufky@linuxtv.org>
9719 L:      linux-media@vger.kernel.org
9720 S:      Maintained
9721 W:      https://linuxtv.org
9722 W:      http://github.com/mkrufky
9723 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9724 T:      git git://linuxtv.org/mkrufky/tuners.git
9725 F:      drivers/media/dvb-frontends/lgdt3305.*
9726
9727 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9728 M:      Viresh Kumar <vireshk@kernel.org>
9729 L:      linux-ide@vger.kernel.org
9730 S:      Maintained
9731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9732 F:      drivers/ata/pata_arasan_cf.c
9733 F:      include/linux/pata_arasan_cf_data.h
9734
9735 LIBATA PATA DRIVERS
9736 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9737 M:      Jens Axboe <axboe@kernel.dk>
9738 L:      linux-ide@vger.kernel.org
9739 S:      Maintained
9740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9741 F:      drivers/ata/ata_generic.c
9742 F:      drivers/ata/pata_*.c
9743
9744 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9745 M:      Linus Walleij <linus.walleij@linaro.org>
9746 L:      linux-ide@vger.kernel.org
9747 S:      Maintained
9748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9749 F:      drivers/ata/pata_ftide010.c
9750 F:      drivers/ata/sata_gemini.c
9751 F:      drivers/ata/sata_gemini.h
9752
9753 LIBATA SATA AHCI PLATFORM devices support
9754 M:      Hans de Goede <hdegoede@redhat.com>
9755 M:      Jens Axboe <axboe@kernel.dk>
9756 L:      linux-ide@vger.kernel.org
9757 S:      Maintained
9758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9759 F:      drivers/ata/ahci_platform.c
9760 F:      drivers/ata/libahci_platform.c
9761 F:      include/linux/ahci_platform.h
9762
9763 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9764 M:      Mikael Pettersson <mikpelinux@gmail.com>
9765 L:      linux-ide@vger.kernel.org
9766 S:      Maintained
9767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9768 F:      drivers/ata/sata_promise.*
9769
9770 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
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:      Documentation/devicetree/bindings/ata/
9776 F:      drivers/ata/
9777 F:      include/linux/ata.h
9778 F:      include/linux/libata.h
9779
9780 LIBLOCKDEP
9781 M:      Sasha Levin <alexander.levin@microsoft.com>
9782 S:      Maintained
9783 F:      tools/lib/lockdep/
9784
9785 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9786 M:      Dan Williams <dan.j.williams@intel.com>
9787 M:      Vishal Verma <vishal.l.verma@intel.com>
9788 M:      Dave Jiang <dave.jiang@intel.com>
9789 L:      linux-nvdimm@lists.01.org
9790 S:      Supported
9791 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9792 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9793 F:      drivers/nvdimm/blk.c
9794 F:      drivers/nvdimm/region_devs.c
9795
9796 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
9797 M:      Vishal Verma <vishal.l.verma@intel.com>
9798 M:      Dan Williams <dan.j.williams@intel.com>
9799 M:      Dave Jiang <dave.jiang@intel.com>
9800 L:      linux-nvdimm@lists.01.org
9801 S:      Supported
9802 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9803 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9804 F:      drivers/nvdimm/btt*
9805
9806 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
9807 M:      Dan Williams <dan.j.williams@intel.com>
9808 M:      Vishal Verma <vishal.l.verma@intel.com>
9809 M:      Dave Jiang <dave.jiang@intel.com>
9810 L:      linux-nvdimm@lists.01.org
9811 S:      Supported
9812 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9813 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9814 F:      drivers/nvdimm/pmem*
9815
9816 LIBNVDIMM: DEVICETREE BINDINGS
9817 M:      Oliver O'Halloran <oohall@gmail.com>
9818 L:      linux-nvdimm@lists.01.org
9819 S:      Supported
9820 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9821 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
9822 F:      drivers/nvdimm/of_pmem.c
9823
9824 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
9825 M:      Dan Williams <dan.j.williams@intel.com>
9826 M:      Vishal Verma <vishal.l.verma@intel.com>
9827 M:      Dave Jiang <dave.jiang@intel.com>
9828 M:      Ira Weiny <ira.weiny@intel.com>
9829 L:      linux-nvdimm@lists.01.org
9830 S:      Supported
9831 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9832 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
9834 F:      drivers/acpi/nfit/*
9835 F:      drivers/nvdimm/*
9836 F:      include/linux/libnvdimm.h
9837 F:      include/linux/nd.h
9838 F:      include/uapi/linux/ndctl.h
9839 F:      tools/testing/nvdimm/
9840
9841 LICENSES and SPDX stuff
9842 M:      Thomas Gleixner <tglx@linutronix.de>
9843 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9844 L:      linux-spdx@vger.kernel.org
9845 S:      Maintained
9846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
9847 F:      COPYING
9848 F:      Documentation/process/license-rules.rst
9849 F:      LICENSES/
9850 F:      scripts/spdxcheck-test.sh
9851 F:      scripts/spdxcheck.py
9852
9853 LIGHTNVM PLATFORM SUPPORT
9854 M:      Matias Bjorling <mb@lightnvm.io>
9855 L:      linux-block@vger.kernel.org
9856 S:      Maintained
9857 W:      http://github/OpenChannelSSD
9858 F:      drivers/lightnvm/
9859 F:      include/linux/lightnvm.h
9860 F:      include/uapi/linux/lightnvm.h
9861
9862 LINEAR RANGES HELPERS
9863 M:      Mark Brown <broonie@kernel.org>
9864 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
9865 F:      lib/linear_ranges.c
9866 F:      lib/test_linear_ranges.c
9867 F:      include/linux/linear_range.h
9868
9869 LINUX FOR POWER MACINTOSH
9870 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9871 L:      linuxppc-dev@lists.ozlabs.org
9872 S:      Odd Fixes
9873 F:      arch/powerpc/platforms/powermac/
9874 F:      drivers/macintosh/
9875
9876 LINUX FOR POWERPC (32-BIT AND 64-BIT)
9877 M:      Michael Ellerman <mpe@ellerman.id.au>
9878 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9879 R:      Paul Mackerras <paulus@samba.org>
9880 L:      linuxppc-dev@lists.ozlabs.org
9881 S:      Supported
9882 W:      https://github.com/linuxppc/wiki/wiki
9883 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
9884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
9885 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
9886 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
9887 F:      Documentation/devicetree/bindings/powerpc/
9888 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
9889 F:      Documentation/powerpc/
9890 F:      arch/powerpc/
9891 F:      drivers/*/*/*pasemi*
9892 F:      drivers/*/*pasemi*
9893 F:      drivers/char/tpm/tpm_ibmvtpm*
9894 F:      drivers/crypto/nx/
9895 F:      drivers/crypto/vmx/
9896 F:      drivers/i2c/busses/i2c-opal.c
9897 F:      drivers/net/ethernet/ibm/ibmveth.*
9898 F:      drivers/net/ethernet/ibm/ibmvnic.*
9899 F:      drivers/pci/hotplug/pnv_php.c
9900 F:      drivers/pci/hotplug/rpa*
9901 F:      drivers/rtc/rtc-opal.c
9902 F:      drivers/scsi/ibmvscsi/
9903 F:      drivers/tty/hvc/hvc_opal.c
9904 F:      drivers/watchdog/wdrtas.c
9905 F:      tools/testing/selftests/powerpc
9906 N:      /pmac
9907 N:      powermac
9908 N:      powernv
9909 N:      [^a-z0-9]ps3
9910 N:      pseries
9911
9912 LINUX FOR POWERPC EMBEDDED MPC5XXX
9913 M:      Anatolij Gustschin <agust@denx.de>
9914 L:      linuxppc-dev@lists.ozlabs.org
9915 S:      Odd Fixes
9916 F:      arch/powerpc/platforms/512x/
9917 F:      arch/powerpc/platforms/52xx/
9918
9919 LINUX FOR POWERPC EMBEDDED PPC4XX
9920 L:      linuxppc-dev@lists.ozlabs.org
9921 S:      Orphan
9922 F:      arch/powerpc/platforms/40x/
9923 F:      arch/powerpc/platforms/44x/
9924
9925 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
9926 M:      Scott Wood <oss@buserror.net>
9927 L:      linuxppc-dev@lists.ozlabs.org
9928 S:      Odd fixes
9929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
9930 F:      Documentation/devicetree/bindings/powerpc/fsl/
9931 F:      arch/powerpc/platforms/83xx/
9932 F:      arch/powerpc/platforms/85xx/
9933
9934 LINUX FOR POWERPC EMBEDDED PPC8XX
9935 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
9936 L:      linuxppc-dev@lists.ozlabs.org
9937 S:      Maintained
9938 F:      arch/powerpc/platforms/8xx/
9939
9940 LINUX KERNEL DUMP TEST MODULE (LKDTM)
9941 M:      Kees Cook <keescook@chromium.org>
9942 S:      Maintained
9943 F:      drivers/misc/lkdtm/*
9944 F:      tools/testing/selftests/lkdtm/*
9945
9946 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
9947 M:      Alan Stern <stern@rowland.harvard.edu>
9948 M:      Andrea Parri <parri.andrea@gmail.com>
9949 M:      Will Deacon <will@kernel.org>
9950 M:      Peter Zijlstra <peterz@infradead.org>
9951 M:      Boqun Feng <boqun.feng@gmail.com>
9952 M:      Nicholas Piggin <npiggin@gmail.com>
9953 M:      David Howells <dhowells@redhat.com>
9954 M:      Jade Alglave <j.alglave@ucl.ac.uk>
9955 M:      Luc Maranget <luc.maranget@inria.fr>
9956 M:      "Paul E. McKenney" <paulmck@kernel.org>
9957 R:      Akira Yokosawa <akiyks@gmail.com>
9958 R:      Daniel Lustig <dlustig@nvidia.com>
9959 L:      linux-kernel@vger.kernel.org
9960 L:      linux-arch@vger.kernel.org
9961 S:      Supported
9962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
9963 F:      Documentation/atomic_bitops.txt
9964 F:      Documentation/atomic_t.txt
9965 F:      Documentation/core-api/atomic_ops.rst
9966 F:      Documentation/core-api/refcount-vs-atomic.rst
9967 F:      Documentation/memory-barriers.txt
9968 F:      tools/memory-model/
9969
9970 LIS3LV02D ACCELEROMETER DRIVER
9971 M:      Eric Piel <eric.piel@tremplin-utc.net>
9972 S:      Maintained
9973 F:      Documentation/misc-devices/lis3lv02d.rst
9974 F:      drivers/misc/lis3lv02d/
9975 F:      drivers/platform/x86/hp_accel.c
9976
9977 LIST KUNIT TEST
9978 M:      David Gow <davidgow@google.com>
9979 L:      linux-kselftest@vger.kernel.org
9980 L:      kunit-dev@googlegroups.com
9981 S:      Maintained
9982 F:      lib/list-test.c
9983
9984 LIVE PATCHING
9985 M:      Josh Poimboeuf <jpoimboe@redhat.com>
9986 M:      Jiri Kosina <jikos@kernel.org>
9987 M:      Miroslav Benes <mbenes@suse.cz>
9988 M:      Petr Mladek <pmladek@suse.com>
9989 R:      Joe Lawrence <joe.lawrence@redhat.com>
9990 L:      live-patching@vger.kernel.org
9991 S:      Maintained
9992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
9993 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
9994 F:      Documentation/livepatch/
9995 F:      arch/powerpc/include/asm/livepatch.h
9996 F:      arch/s390/include/asm/livepatch.h
9997 F:      arch/x86/include/asm/livepatch.h
9998 F:      include/linux/livepatch.h
9999 F:      kernel/livepatch/
10000 F:      lib/livepatch/
10001 F:      samples/livepatch/
10002 F:      tools/testing/selftests/livepatch/
10003
10004 LLC (802.2)
10005 L:      netdev@vger.kernel.org
10006 S:      Odd fixes
10007 F:      include/linux/llc.h
10008 F:      include/net/llc*
10009 F:      include/uapi/linux/llc.h
10010 F:      net/llc/
10011
10012 LM73 HARDWARE MONITOR DRIVER
10013 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10014 L:      linux-hwmon@vger.kernel.org
10015 S:      Maintained
10016 F:      drivers/hwmon/lm73.c
10017
10018 LM78 HARDWARE MONITOR DRIVER
10019 M:      Jean Delvare <jdelvare@suse.com>
10020 L:      linux-hwmon@vger.kernel.org
10021 S:      Maintained
10022 F:      Documentation/hwmon/lm78.rst
10023 F:      drivers/hwmon/lm78.c
10024
10025 LM83 HARDWARE MONITOR DRIVER
10026 M:      Jean Delvare <jdelvare@suse.com>
10027 L:      linux-hwmon@vger.kernel.org
10028 S:      Maintained
10029 F:      Documentation/hwmon/lm83.rst
10030 F:      drivers/hwmon/lm83.c
10031
10032 LM90 HARDWARE MONITOR DRIVER
10033 M:      Jean Delvare <jdelvare@suse.com>
10034 L:      linux-hwmon@vger.kernel.org
10035 S:      Maintained
10036 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10037 F:      Documentation/hwmon/lm90.rst
10038 F:      drivers/hwmon/lm90.c
10039 F:      include/dt-bindings/thermal/lm90.h
10040
10041 LM95234 HARDWARE MONITOR DRIVER
10042 M:      Guenter Roeck <linux@roeck-us.net>
10043 L:      linux-hwmon@vger.kernel.org
10044 S:      Maintained
10045 F:      Documentation/hwmon/lm95234.rst
10046 F:      drivers/hwmon/lm95234.c
10047
10048 LME2510 MEDIA DRIVER
10049 M:      Malcolm Priestley <tvboxspy@gmail.com>
10050 L:      linux-media@vger.kernel.org
10051 S:      Maintained
10052 W:      https://linuxtv.org
10053 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10054 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10055
10056 LOADPIN SECURITY MODULE
10057 M:      Kees Cook <keescook@chromium.org>
10058 S:      Supported
10059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10060 F:      Documentation/admin-guide/LSM/LoadPin.rst
10061 F:      security/loadpin/
10062
10063 LOCKING PRIMITIVES
10064 M:      Peter Zijlstra <peterz@infradead.org>
10065 M:      Ingo Molnar <mingo@redhat.com>
10066 M:      Will Deacon <will@kernel.org>
10067 L:      linux-kernel@vger.kernel.org
10068 S:      Maintained
10069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10070 F:      Documentation/locking/
10071 F:      arch/*/include/asm/spinlock*.h
10072 F:      include/linux/lockdep.h
10073 F:      include/linux/mutex*.h
10074 F:      include/linux/rwlock*.h
10075 F:      include/linux/rwsem*.h
10076 F:      include/linux/seqlock.h
10077 F:      include/linux/spinlock*.h
10078 F:      kernel/locking/
10079 F:      lib/locking*.[ch]
10080 X:      kernel/locking/locktorture.c
10081
10082 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10083 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
10084 L:      linux-ntfs-dev@lists.sourceforge.net
10085 S:      Maintained
10086 W:      http://www.linux-ntfs.org/content/view/19/37/
10087 F:      Documentation/admin-guide/ldm.rst
10088 F:      block/partitions/ldm.*
10089
10090 LOGITECH HID GAMING KEYBOARDS
10091 M:      Hans de Goede <hdegoede@redhat.com>
10092 L:      linux-input@vger.kernel.org
10093 S:      Maintained
10094 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10095 F:      drivers/hid/hid-lg-g15.c
10096
10097 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10098 M:      Sathya Prakash <sathya.prakash@broadcom.com>
10099 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10100 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10101 L:      MPT-FusionLinux.pdl@broadcom.com
10102 L:      linux-scsi@vger.kernel.org
10103 S:      Supported
10104 W:      http://www.avagotech.com/support/
10105 F:      drivers/message/fusion/
10106 F:      drivers/scsi/mpt3sas/
10107
10108 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10109 M:      Matthew Wilcox <willy@infradead.org>
10110 L:      linux-scsi@vger.kernel.org
10111 S:      Maintained
10112 F:      drivers/scsi/sym53c8xx_2/
10113
10114 LTC1660 DAC DRIVER
10115 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10116 L:      linux-iio@vger.kernel.org
10117 S:      Maintained
10118 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10119 F:      drivers/iio/dac/ltc1660.c
10120
10121 LTC2947 HARDWARE MONITOR DRIVER
10122 M:      Nuno Sá <nuno.sa@analog.com>
10123 L:      linux-hwmon@vger.kernel.org
10124 S:      Supported
10125 W:      http://ez.analog.com/community/linux-device-drivers
10126 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10127 F:      drivers/hwmon/ltc2947-core.c
10128 F:      drivers/hwmon/ltc2947-i2c.c
10129 F:      drivers/hwmon/ltc2947-spi.c
10130 F:      drivers/hwmon/ltc2947.h
10131
10132 LTC2983 IIO TEMPERATURE DRIVER
10133 M:      Nuno Sá <nuno.sa@analog.com>
10134 L:      linux-iio@vger.kernel.org
10135 S:      Supported
10136 W:      http://ez.analog.com/community/linux-device-drivers
10137 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10138 F:      drivers/iio/temperature/ltc2983.c
10139
10140 LTC4261 HARDWARE MONITOR DRIVER
10141 M:      Guenter Roeck <linux@roeck-us.net>
10142 L:      linux-hwmon@vger.kernel.org
10143 S:      Maintained
10144 F:      Documentation/hwmon/ltc4261.rst
10145 F:      drivers/hwmon/ltc4261.c
10146
10147 LTC4306 I2C MULTIPLEXER DRIVER
10148 M:      Michael Hennerich <michael.hennerich@analog.com>
10149 L:      linux-i2c@vger.kernel.org
10150 S:      Supported
10151 W:      http://ez.analog.com/community/linux-device-drivers
10152 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10153 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10154
10155 LTP (Linux Test Project)
10156 M:      Mike Frysinger <vapier@gentoo.org>
10157 M:      Cyril Hrubis <chrubis@suse.cz>
10158 M:      Wanlong Gao <wanlong.gao@gmail.com>
10159 M:      Jan Stancek <jstancek@redhat.com>
10160 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10161 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
10162 L:      ltp@lists.linux.it (subscribers-only)
10163 S:      Maintained
10164 W:      http://linux-test-project.github.io/
10165 T:      git git://github.com/linux-test-project/ltp.git
10166
10167 M68K ARCHITECTURE
10168 M:      Geert Uytterhoeven <geert@linux-m68k.org>
10169 L:      linux-m68k@lists.linux-m68k.org
10170 S:      Maintained
10171 W:      http://www.linux-m68k.org/
10172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10173 F:      arch/m68k/
10174 F:      drivers/zorro/
10175
10176 M68K ON APPLE MACINTOSH
10177 M:      Joshua Thompson <funaho@jurai.org>
10178 L:      linux-m68k@lists.linux-m68k.org
10179 S:      Maintained
10180 W:      http://www.mac.linux-m68k.org/
10181 F:      arch/m68k/mac/
10182
10183 M68K ON HP9000/300
10184 M:      Philip Blundell <philb@gnu.org>
10185 S:      Maintained
10186 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10187 F:      arch/m68k/hp300/
10188
10189 M88DS3103 MEDIA DRIVER
10190 M:      Antti Palosaari <crope@iki.fi>
10191 L:      linux-media@vger.kernel.org
10192 S:      Maintained
10193 W:      https://linuxtv.org
10194 W:      http://palosaari.fi/linux/
10195 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10196 T:      git git://linuxtv.org/anttip/media_tree.git
10197 F:      drivers/media/dvb-frontends/m88ds3103*
10198
10199 M88RS2000 MEDIA DRIVER
10200 M:      Malcolm Priestley <tvboxspy@gmail.com>
10201 L:      linux-media@vger.kernel.org
10202 S:      Maintained
10203 W:      https://linuxtv.org
10204 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10205 F:      drivers/media/dvb-frontends/m88rs2000*
10206
10207 MA901 MASTERKIT USB FM RADIO DRIVER
10208 M:      Alexey Klimov <klimov.linux@gmail.com>
10209 L:      linux-media@vger.kernel.org
10210 S:      Maintained
10211 T:      git git://linuxtv.org/media_tree.git
10212 F:      drivers/media/radio/radio-ma901.c
10213
10214 MAC80211
10215 M:      Johannes Berg <johannes@sipsolutions.net>
10216 L:      linux-wireless@vger.kernel.org
10217 S:      Maintained
10218 W:      https://wireless.wiki.kernel.org/
10219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10221 F:      Documentation/networking/mac80211-injection.rst
10222 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10223 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10224 F:      include/net/mac80211.h
10225 F:      net/mac80211/
10226
10227 MAILBOX API
10228 M:      Jassi Brar <jassisinghbrar@gmail.com>
10229 L:      linux-kernel@vger.kernel.org
10230 S:      Maintained
10231 F:      drivers/mailbox/
10232 F:      include/linux/mailbox_client.h
10233 F:      include/linux/mailbox_controller.h
10234
10235 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10236 M:      Michael Kerrisk <mtk.manpages@gmail.com>
10237 L:      linux-man@vger.kernel.org
10238 S:      Maintained
10239 W:      http://www.kernel.org/doc/man-pages
10240
10241 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10242 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
10243 L:      linux-mips@vger.kernel.org
10244 S:      Maintained
10245 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10246
10247 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10248 M:      Andrew Lunn <andrew@lunn.ch>
10249 M:      Vivien Didelot <vivien.didelot@gmail.com>
10250 L:      netdev@vger.kernel.org
10251 S:      Maintained
10252 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10253 F:      Documentation/networking/devlink/mv88e6xxx.rst
10254 F:      drivers/net/dsa/mv88e6xxx/
10255 F:      include/linux/platform_data/mv88e6xxx.h
10256
10257 MARVELL ARMADA 3700 PHY DRIVERS
10258 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10259 S:      Maintained
10260 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10261 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10262 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10263 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10264
10265 MARVELL ARMADA DRM SUPPORT
10266 M:      Russell King <linux@armlinux.org.uk>
10267 S:      Maintained
10268 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10269 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10270 F:      Documentation/devicetree/bindings/display/armada/
10271 F:      drivers/gpu/drm/armada/
10272 F:      include/uapi/drm/armada_drm.h
10273
10274 MARVELL CRYPTO DRIVER
10275 M:      Boris Brezillon <bbrezillon@kernel.org>
10276 M:      Arnaud Ebalard <arno@natisbad.org>
10277 M:      Srujana Challa <schalla@marvell.com>
10278 L:      linux-crypto@vger.kernel.org
10279 S:      Maintained
10280 F:      drivers/crypto/marvell/
10281
10282 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10283 M:      Mirko Lindner <mlindner@marvell.com>
10284 M:      Stephen Hemminger <stephen@networkplumber.org>
10285 L:      netdev@vger.kernel.org
10286 S:      Maintained
10287 F:      drivers/net/ethernet/marvell/sk*
10288
10289 MARVELL LIBERTAS WIRELESS DRIVER
10290 L:      libertas-dev@lists.infradead.org
10291 S:      Orphan
10292 F:      drivers/net/wireless/marvell/libertas/
10293
10294 MARVELL MACCHIATOBIN SUPPORT
10295 M:      Russell King <linux@armlinux.org.uk>
10296 L:      linux-arm-kernel@lists.infradead.org
10297 S:      Maintained
10298 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10299
10300 MARVELL MV643XX ETHERNET DRIVER
10301 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
10302 L:      netdev@vger.kernel.org
10303 S:      Maintained
10304 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10305 F:      include/linux/mv643xx.h
10306
10307 MARVELL MV88X3310 PHY DRIVER
10308 M:      Russell King <linux@armlinux.org.uk>
10309 L:      netdev@vger.kernel.org
10310 S:      Maintained
10311 F:      drivers/net/phy/marvell10g.c
10312
10313 MARVELL MVEBU THERMAL DRIVER
10314 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10315 S:      Maintained
10316 F:      drivers/thermal/armada_thermal.c
10317
10318 MARVELL MVNETA ETHERNET DRIVER
10319 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10320 L:      netdev@vger.kernel.org
10321 S:      Maintained
10322 F:      drivers/net/ethernet/marvell/mvneta.*
10323
10324 MARVELL MWIFIEX WIRELESS DRIVER
10325 M:      Amitkumar Karwar <amitkarwar@gmail.com>
10326 M:      Ganapathi Bhat <ganapathi.bhat@nxp.com>
10327 M:      Xinming Hu <huxinming820@gmail.com>
10328 L:      linux-wireless@vger.kernel.org
10329 S:      Maintained
10330 F:      drivers/net/wireless/marvell/mwifiex/
10331
10332 MARVELL MWL8K WIRELESS DRIVER
10333 M:      Lennert Buytenhek <buytenh@wantstofly.org>
10334 L:      linux-wireless@vger.kernel.org
10335 S:      Odd Fixes
10336 F:      drivers/net/wireless/marvell/mwl8k.c
10337
10338 MARVELL NAND CONTROLLER DRIVER
10339 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10340 L:      linux-mtd@lists.infradead.org
10341 S:      Maintained
10342 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10343 F:      drivers/mtd/nand/raw/marvell_nand.c
10344
10345 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10346 M:      Sunil Goutham <sgoutham@marvell.com>
10347 M:      Geetha sowjanya <gakula@marvell.com>
10348 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10349 M:      hariprasad <hkelam@marvell.com>
10350 L:      netdev@vger.kernel.org
10351 S:      Supported
10352 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10353
10354 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10355 M:      Sunil Goutham <sgoutham@marvell.com>
10356 M:      Linu Cherian <lcherian@marvell.com>
10357 M:      Geetha sowjanya <gakula@marvell.com>
10358 M:      Jerin Jacob <jerinj@marvell.com>
10359 L:      netdev@vger.kernel.org
10360 S:      Supported
10361 F:      Documentation/networking/device_drivers/marvell/octeontx2.rst
10362 F:      drivers/net/ethernet/marvell/octeontx2/af/
10363
10364 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10365 M:      Nicolas Pitre <nico@fluxnic.net>
10366 S:      Odd Fixes
10367 F:      drivers/mmc/host/mvsdio.*
10368
10369 MARVELL USB MDIO CONTROLLER DRIVER
10370 M:      Tobias Waldekranz <tobias@waldekranz.com>
10371 L:      netdev@vger.kernel.org
10372 S:      Maintained
10373 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10374 F:      drivers/net/phy/mdio-mvusb.c
10375
10376 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10377 M:      Hu Ziji <huziji@marvell.com>
10378 L:      linux-mmc@vger.kernel.org
10379 S:      Supported
10380 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10381 F:      drivers/mmc/host/sdhci-xenon*
10382
10383 MATROX FRAMEBUFFER DRIVER
10384 L:      linux-fbdev@vger.kernel.org
10385 S:      Orphan
10386 F:      drivers/video/fbdev/matrox/matroxfb_*
10387 F:      include/uapi/linux/matroxfb.h
10388
10389 MAX16065 HARDWARE MONITOR DRIVER
10390 M:      Guenter Roeck <linux@roeck-us.net>
10391 L:      linux-hwmon@vger.kernel.org
10392 S:      Maintained
10393 F:      Documentation/hwmon/max16065.rst
10394 F:      drivers/hwmon/max16065.c
10395
10396 MAX2175 SDR TUNER DRIVER
10397 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10398 L:      linux-media@vger.kernel.org
10399 S:      Maintained
10400 T:      git git://linuxtv.org/media_tree.git
10401 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10402 F:      Documentation/userspace-api/media/drivers/max2175.rst
10403 F:      drivers/media/i2c/max2175*
10404 F:      include/uapi/linux/max2175.h
10405
10406 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10407 L:      linux-hwmon@vger.kernel.org
10408 S:      Orphan
10409 F:      Documentation/hwmon/max6650.rst
10410 F:      drivers/hwmon/max6650.c
10411
10412 MAX6697 HARDWARE MONITOR DRIVER
10413 M:      Guenter Roeck <linux@roeck-us.net>
10414 L:      linux-hwmon@vger.kernel.org
10415 S:      Maintained
10416 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10417 F:      Documentation/hwmon/max6697.rst
10418 F:      drivers/hwmon/max6697.c
10419 F:      include/linux/platform_data/max6697.h
10420
10421 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10422 M:      Peter Rosin <peda@axentia.se>
10423 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10424 S:      Maintained
10425 F:      Documentation/devicetree/bindings/sound/max9860.txt
10426 F:      sound/soc/codecs/max9860.*
10427
10428 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10429 M:      Andreas Klinger <ak@it-klinger.de>
10430 L:      linux-iio@vger.kernel.org
10431 S:      Maintained
10432 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10433 F:      drivers/iio/proximity/mb1232.c
10434
10435 MAXIM MAX77650 PMIC MFD DRIVER
10436 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
10437 L:      linux-kernel@vger.kernel.org
10438 S:      Maintained
10439 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10440 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10441 F:      drivers/gpio/gpio-max77650.c
10442 F:      drivers/input/misc/max77650-onkey.c
10443 F:      drivers/leds/leds-max77650.c
10444 F:      drivers/mfd/max77650.c
10445 F:      drivers/power/supply/max77650-charger.c
10446 F:      drivers/regulator/max77650-regulator.c
10447 F:      include/linux/mfd/max77650.h
10448
10449 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10450 M:      Javier Martinez Canillas <javier@dowhile0.org>
10451 L:      linux-kernel@vger.kernel.org
10452 S:      Supported
10453 F:      Documentation/devicetree/bindings/*/*max77802.txt
10454 F:      drivers/regulator/max77802-regulator.c
10455 F:      include/dt-bindings/*/*max77802.h
10456
10457 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10458 M:      Krzysztof Kozlowski <krzk@kernel.org>
10459 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10460 L:      linux-pm@vger.kernel.org
10461 S:      Supported
10462 F:      drivers/power/supply/max14577_charger.c
10463 F:      drivers/power/supply/max77693_charger.c
10464
10465 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10466 M:      Chanwoo Choi <cw00.choi@samsung.com>
10467 M:      Krzysztof Kozlowski <krzk@kernel.org>
10468 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10469 L:      linux-kernel@vger.kernel.org
10470 S:      Supported
10471 F:      Documentation/devicetree/bindings/*/max77686.txt
10472 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10473 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10474 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10475 F:      drivers/*/max14577*.c
10476 F:      drivers/*/max77686*.c
10477 F:      drivers/*/max77693*.c
10478 F:      drivers/clk/clk-max77686.c
10479 F:      drivers/extcon/extcon-max14577.c
10480 F:      drivers/extcon/extcon-max77693.c
10481 F:      drivers/rtc/rtc-max77686.c
10482 F:      include/linux/mfd/max14577*.h
10483 F:      include/linux/mfd/max77686*.h
10484 F:      include/linux/mfd/max77693*.h
10485
10486 MAXIRADIO FM RADIO RECEIVER DRIVER
10487 M:      Hans Verkuil <hverkuil@xs4all.nl>
10488 L:      linux-media@vger.kernel.org
10489 S:      Maintained
10490 W:      https://linuxtv.org
10491 T:      git git://linuxtv.org/media_tree.git
10492 F:      drivers/media/radio/radio-maxiradio*
10493
10494 MCAN MMIO DEVICE DRIVER
10495 M:      Dan Murphy <dmurphy@ti.com>
10496 M:      Sriram Dash <sriram.dash@samsung.com>
10497 L:      linux-can@vger.kernel.org
10498 S:      Maintained
10499 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10500 F:      drivers/net/can/m_can/m_can.c
10501 F:      drivers/net/can/m_can/m_can.h
10502 F:      drivers/net/can/m_can/m_can_platform.c
10503
10504 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10505 M:      Rishi Gupta <gupt21@gmail.com>
10506 L:      linux-i2c@vger.kernel.org
10507 L:      linux-input@vger.kernel.org
10508 S:      Maintained
10509 F:      drivers/hid/hid-mcp2221.c
10510
10511 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10512 M:      Peter Rosin <peda@axentia.se>
10513 L:      linux-iio@vger.kernel.org
10514 S:      Maintained
10515 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10516 F:      drivers/iio/potentiometer/mcp4018.c
10517 F:      drivers/iio/potentiometer/mcp4531.c
10518
10519 MCR20A IEEE-802.15.4 RADIO DRIVER
10520 M:      Xue Liu <liuxuenetmail@gmail.com>
10521 L:      linux-wpan@vger.kernel.org
10522 S:      Maintained
10523 W:      https://github.com/xueliu/mcr20a-linux
10524 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10525 F:      drivers/net/ieee802154/mcr20a.c
10526 F:      drivers/net/ieee802154/mcr20a.h
10527
10528 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10529 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10530 L:      linux-iio@vger.kernel.org
10531 S:      Maintained
10532 F:      drivers/iio/dac/cio-dac.c
10533
10534 MEDIA CONTROLLER FRAMEWORK
10535 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10536 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10537 L:      linux-media@vger.kernel.org
10538 S:      Supported
10539 W:      https://www.linuxtv.org
10540 T:      git git://linuxtv.org/media_tree.git
10541 F:      drivers/media/mc/
10542 F:      include/media/media-*.h
10543 F:      include/uapi/linux/media.h
10544
10545 MEDIA DRIVER FOR FREESCALE IMX PXP
10546 M:      Philipp Zabel <p.zabel@pengutronix.de>
10547 L:      linux-media@vger.kernel.org
10548 S:      Maintained
10549 T:      git git://linuxtv.org/media_tree.git
10550 F:      drivers/media/platform/imx-pxp.[ch]
10551
10552 MEDIA DRIVERS FOR ASCOT2E
10553 M:      Sergey Kozlov <serjk@netup.ru>
10554 M:      Abylay Ospan <aospan@netup.ru>
10555 L:      linux-media@vger.kernel.org
10556 S:      Supported
10557 W:      https://linuxtv.org
10558 W:      http://netup.tv/
10559 T:      git git://linuxtv.org/media_tree.git
10560 F:      drivers/media/dvb-frontends/ascot2e*
10561
10562 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10563 M:      Jasmin Jessich <jasmin@anw.at>
10564 L:      linux-media@vger.kernel.org
10565 S:      Maintained
10566 W:      https://linuxtv.org
10567 T:      git git://linuxtv.org/media_tree.git
10568 F:      drivers/media/dvb-frontends/cxd2099*
10569
10570 MEDIA DRIVERS FOR CXD2841ER
10571 M:      Sergey Kozlov <serjk@netup.ru>
10572 M:      Abylay Ospan <aospan@netup.ru>
10573 L:      linux-media@vger.kernel.org
10574 S:      Supported
10575 W:      https://linuxtv.org
10576 W:      http://netup.tv/
10577 T:      git git://linuxtv.org/media_tree.git
10578 F:      drivers/media/dvb-frontends/cxd2841er*
10579
10580 MEDIA DRIVERS FOR CXD2880
10581 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10582 L:      linux-media@vger.kernel.org
10583 S:      Supported
10584 W:      http://linuxtv.org/
10585 T:      git git://linuxtv.org/media_tree.git
10586 F:      drivers/media/dvb-frontends/cxd2880/*
10587 F:      drivers/media/spi/cxd2880*
10588
10589 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10590 L:      linux-media@vger.kernel.org
10591 S:      Orphan
10592 W:      https://linuxtv.org
10593 T:      git git://linuxtv.org/media_tree.git
10594 F:      drivers/media/pci/ddbridge/*
10595
10596 MEDIA DRIVERS FOR FREESCALE IMX
10597 M:      Steve Longerbeam <slongerbeam@gmail.com>
10598 M:      Philipp Zabel <p.zabel@pengutronix.de>
10599 L:      linux-media@vger.kernel.org
10600 S:      Maintained
10601 T:      git git://linuxtv.org/media_tree.git
10602 F:      Documentation/admin-guide/media/imx.rst
10603 F:      Documentation/devicetree/bindings/media/imx.txt
10604 F:      drivers/staging/media/imx/
10605 F:      include/linux/imx-media.h
10606 F:      include/media/imx.h
10607
10608 MEDIA DRIVERS FOR FREESCALE IMX7
10609 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10610 L:      linux-media@vger.kernel.org
10611 S:      Maintained
10612 T:      git git://linuxtv.org/media_tree.git
10613 F:      Documentation/admin-guide/media/imx7.rst
10614 F:      Documentation/devicetree/bindings/media/imx7-csi.txt
10615 F:      Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10616 F:      drivers/staging/media/imx/imx7-media-csi.c
10617 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10618
10619 MEDIA DRIVERS FOR HELENE
10620 M:      Abylay Ospan <aospan@netup.ru>
10621 L:      linux-media@vger.kernel.org
10622 S:      Supported
10623 W:      https://linuxtv.org
10624 W:      http://netup.tv/
10625 T:      git git://linuxtv.org/media_tree.git
10626 F:      drivers/media/dvb-frontends/helene*
10627
10628 MEDIA DRIVERS FOR HORUS3A
10629 M:      Sergey Kozlov <serjk@netup.ru>
10630 M:      Abylay Ospan <aospan@netup.ru>
10631 L:      linux-media@vger.kernel.org
10632 S:      Supported
10633 W:      https://linuxtv.org
10634 W:      http://netup.tv/
10635 T:      git git://linuxtv.org/media_tree.git
10636 F:      drivers/media/dvb-frontends/horus3a*
10637
10638 MEDIA DRIVERS FOR LNBH25
10639 M:      Sergey Kozlov <serjk@netup.ru>
10640 M:      Abylay Ospan <aospan@netup.ru>
10641 L:      linux-media@vger.kernel.org
10642 S:      Supported
10643 W:      https://linuxtv.org
10644 W:      http://netup.tv/
10645 T:      git git://linuxtv.org/media_tree.git
10646 F:      drivers/media/dvb-frontends/lnbh25*
10647
10648 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10649 L:      linux-media@vger.kernel.org
10650 S:      Orphan
10651 W:      https://linuxtv.org
10652 T:      git git://linuxtv.org/media_tree.git
10653 F:      drivers/media/dvb-frontends/mxl5xx*
10654
10655 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10656 M:      Sergey Kozlov <serjk@netup.ru>
10657 M:      Abylay Ospan <aospan@netup.ru>
10658 L:      linux-media@vger.kernel.org
10659 S:      Supported
10660 W:      https://linuxtv.org
10661 W:      http://netup.tv/
10662 T:      git git://linuxtv.org/media_tree.git
10663 F:      drivers/media/pci/netup_unidvb/*
10664
10665 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10666 M:      Dmitry Osipenko <digetx@gmail.com>
10667 L:      linux-media@vger.kernel.org
10668 L:      linux-tegra@vger.kernel.org
10669 S:      Maintained
10670 T:      git git://linuxtv.org/media_tree.git
10671 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10672 F:      drivers/staging/media/tegra-vde/
10673
10674 MEDIA DRIVERS FOR RENESAS - CEU
10675 M:      Jacopo Mondi <jacopo@jmondi.org>
10676 L:      linux-media@vger.kernel.org
10677 L:      linux-renesas-soc@vger.kernel.org
10678 S:      Supported
10679 T:      git git://linuxtv.org/media_tree.git
10680 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
10681 F:      drivers/media/platform/renesas-ceu.c
10682 F:      include/media/drv-intf/renesas-ceu.h
10683
10684 MEDIA DRIVERS FOR RENESAS - DRIF
10685 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10686 L:      linux-media@vger.kernel.org
10687 L:      linux-renesas-soc@vger.kernel.org
10688 S:      Supported
10689 T:      git git://linuxtv.org/media_tree.git
10690 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10691 F:      drivers/media/platform/rcar_drif.c
10692
10693 MEDIA DRIVERS FOR RENESAS - FCP
10694 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10695 L:      linux-media@vger.kernel.org
10696 L:      linux-renesas-soc@vger.kernel.org
10697 S:      Supported
10698 T:      git git://linuxtv.org/media_tree.git
10699 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
10700 F:      drivers/media/platform/rcar-fcp.c
10701 F:      include/media/rcar-fcp.h
10702
10703 MEDIA DRIVERS FOR RENESAS - FDP1
10704 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10705 L:      linux-media@vger.kernel.org
10706 L:      linux-renesas-soc@vger.kernel.org
10707 S:      Supported
10708 T:      git git://linuxtv.org/media_tree.git
10709 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
10710 F:      drivers/media/platform/rcar_fdp1.c
10711
10712 MEDIA DRIVERS FOR RENESAS - VIN
10713 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
10714 L:      linux-media@vger.kernel.org
10715 L:      linux-renesas-soc@vger.kernel.org
10716 S:      Supported
10717 T:      git git://linuxtv.org/media_tree.git
10718 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
10719 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
10720 F:      drivers/media/platform/rcar-vin/
10721
10722 MEDIA DRIVERS FOR RENESAS - VSP1
10723 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10724 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10725 L:      linux-media@vger.kernel.org
10726 L:      linux-renesas-soc@vger.kernel.org
10727 S:      Supported
10728 T:      git git://linuxtv.org/media_tree.git
10729 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
10730 F:      drivers/media/platform/vsp1/
10731
10732 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10733 L:      linux-media@vger.kernel.org
10734 S:      Orphan
10735 W:      https://linuxtv.org
10736 T:      git git://linuxtv.org/media_tree.git
10737 F:      drivers/media/dvb-frontends/stv0910*
10738
10739 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10740 L:      linux-media@vger.kernel.org
10741 S:      Orphan
10742 W:      https://linuxtv.org
10743 T:      git git://linuxtv.org/media_tree.git
10744 F:      drivers/media/dvb-frontends/stv6111*
10745
10746 MEDIA DRIVERS FOR STM32 - DCMI
10747 M:      Hugues Fruchet <hugues.fruchet@st.com>
10748 L:      linux-media@vger.kernel.org
10749 S:      Supported
10750 T:      git git://linuxtv.org/media_tree.git
10751 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
10752 F:      drivers/media/platform/stm32/stm32-dcmi.c
10753
10754 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10755 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
10756 L:      linux-media@vger.kernel.org
10757 S:      Maintained
10758 W:      https://linuxtv.org
10759 Q:      http://patchwork.kernel.org/project/linux-media/list/
10760 T:      git git://linuxtv.org/media_tree.git
10761 F:      Documentation/admin-guide/media/
10762 F:      Documentation/devicetree/bindings/media/
10763 F:      Documentation/driver-api/media/
10764 F:      Documentation/userspace-api/media/
10765 F:      drivers/media/
10766 F:      drivers/staging/media/
10767 F:      include/linux/platform_data/media/
10768 F:      include/media/
10769 F:      include/uapi/linux/dvb/
10770 F:      include/uapi/linux/ivtv*
10771 F:      include/uapi/linux/media.h
10772 F:      include/uapi/linux/meye.h
10773 F:      include/uapi/linux/uvcvideo.h
10774 F:      include/uapi/linux/v4l2-*
10775 F:      include/uapi/linux/videodev2.h
10776
10777 MEDIATEK BLUETOOTH DRIVER
10778 M:      Sean Wang <sean.wang@mediatek.com>
10779 L:      linux-bluetooth@vger.kernel.org
10780 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10781 S:      Maintained
10782 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10783 F:      drivers/bluetooth/btmtkuart.c
10784
10785 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
10786 M:      Sean Wang <sean.wang@mediatek.com>
10787 L:      linux-pm@vger.kernel.org
10788 S:      Maintained
10789 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
10790 F:      drivers/power/reset/mt6323-poweroff.c
10791
10792 MEDIATEK CIR DRIVER
10793 M:      Sean Wang <sean.wang@mediatek.com>
10794 S:      Maintained
10795 F:      drivers/media/rc/mtk-cir.c
10796
10797 MEDIATEK DMA DRIVER
10798 M:      Sean Wang <sean.wang@mediatek.com>
10799 L:      dmaengine@vger.kernel.org
10800 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10801 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10802 S:      Maintained
10803 F:      Documentation/devicetree/bindings/dma/mtk-*
10804 F:      drivers/dma/mediatek/
10805
10806 MEDIATEK ETHERNET DRIVER
10807 M:      Felix Fietkau <nbd@openwrt.org>
10808 M:      John Crispin <john@phrozen.org>
10809 M:      Sean Wang <sean.wang@mediatek.com>
10810 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
10811 L:      netdev@vger.kernel.org
10812 S:      Maintained
10813 F:      drivers/net/ethernet/mediatek/
10814
10815 MEDIATEK I2C CONTROLLER DRIVER
10816 M:      Qii Wang <qii.wang@mediatek.com>
10817 L:      linux-i2c@vger.kernel.org
10818 S:      Maintained
10819 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
10820 F:      drivers/i2c/busses/i2c-mt65xx.c
10821
10822 MEDIATEK JPEG DRIVER
10823 M:      Rick Chang <rick.chang@mediatek.com>
10824 M:      Bin Liu <bin.liu@mediatek.com>
10825 S:      Supported
10826 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
10827 F:      drivers/media/platform/mtk-jpeg/
10828
10829 MEDIATEK MDP DRIVER
10830 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
10831 M:      Houlong Wei <houlong.wei@mediatek.com>
10832 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10833 S:      Supported
10834 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
10835 F:      drivers/media/platform/mtk-mdp/
10836 F:      drivers/media/platform/mtk-vpu/
10837
10838 MEDIATEK MEDIA DRIVER
10839 M:      Tiffany Lin <tiffany.lin@mediatek.com>
10840 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10841 S:      Supported
10842 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
10843 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
10844 F:      drivers/media/platform/mtk-vcodec/
10845 F:      drivers/media/platform/mtk-vpu/
10846
10847 MEDIATEK MMC/SD/SDIO DRIVER
10848 M:      Chaotian Jing <chaotian.jing@mediatek.com>
10849 S:      Maintained
10850 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
10851 F:      drivers/mmc/host/mtk-sd.c
10852
10853 MEDIATEK MT76 WIRELESS LAN DRIVER
10854 M:      Felix Fietkau <nbd@nbd.name>
10855 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
10856 R:      Ryder Lee <ryder.lee@mediatek.com>
10857 L:      linux-wireless@vger.kernel.org
10858 S:      Maintained
10859 F:      drivers/net/wireless/mediatek/mt76/
10860
10861 MEDIATEK MT7601U WIRELESS LAN DRIVER
10862 M:      Jakub Kicinski <kubakici@wp.pl>
10863 L:      linux-wireless@vger.kernel.org
10864 S:      Maintained
10865 F:      drivers/net/wireless/mediatek/mt7601u/
10866
10867 MEDIATEK MT7621/28/88 I2C DRIVER
10868 M:      Stefan Roese <sr@denx.de>
10869 L:      linux-i2c@vger.kernel.org
10870 S:      Maintained
10871 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
10872 F:      drivers/i2c/busses/i2c-mt7621.c
10873
10874 MEDIATEK NAND CONTROLLER DRIVER
10875 L:      linux-mtd@lists.infradead.org
10876 S:      Orphan
10877 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
10878 F:      drivers/mtd/nand/raw/mtk_*
10879
10880 MEDIATEK PMIC LED DRIVER
10881 M:      Sean Wang <sean.wang@mediatek.com>
10882 S:      Maintained
10883 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
10884 F:      drivers/leds/leds-mt6323.c
10885
10886 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
10887 M:      Sean Wang <sean.wang@mediatek.com>
10888 S:      Maintained
10889 F:      drivers/char/hw_random/mtk-rng.c
10890
10891 MEDIATEK SWITCH DRIVER
10892 M:      Sean Wang <sean.wang@mediatek.com>
10893 L:      netdev@vger.kernel.org
10894 S:      Maintained
10895 F:      drivers/net/dsa/mt7530.*
10896 F:      net/dsa/tag_mtk.c
10897
10898 MEDIATEK USB3 DRD IP DRIVER
10899 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
10900 L:      linux-usb@vger.kernel.org (moderated for non-subscribers)
10901 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10902 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10903 S:      Maintained
10904 F:      drivers/usb/mtu3/
10905
10906 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
10907 M:      Peter Senna Tschudin <peter.senna@gmail.com>
10908 M:      Martin Donnelly <martin.donnelly@ge.com>
10909 M:      Martyn Welch <martyn.welch@collabora.co.uk>
10910 S:      Maintained
10911 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
10912 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
10913
10914 MEGARAID SCSI/SAS DRIVERS
10915 M:      Kashyap Desai <kashyap.desai@broadcom.com>
10916 M:      Sumit Saxena <sumit.saxena@broadcom.com>
10917 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
10918 L:      megaraidlinux.pdl@broadcom.com
10919 L:      linux-scsi@vger.kernel.org
10920 S:      Maintained
10921 W:      http://www.avagotech.com/support/
10922 F:      Documentation/scsi/megaraid.rst
10923 F:      drivers/scsi/megaraid.*
10924 F:      drivers/scsi/megaraid/
10925
10926 MELEXIS MLX90614 DRIVER
10927 M:      Crt Mori <cmo@melexis.com>
10928 L:      linux-iio@vger.kernel.org
10929 S:      Supported
10930 W:      http://www.melexis.com
10931 F:      drivers/iio/temperature/mlx90614.c
10932
10933 MELEXIS MLX90632 DRIVER
10934 M:      Crt Mori <cmo@melexis.com>
10935 L:      linux-iio@vger.kernel.org
10936 S:      Supported
10937 W:      http://www.melexis.com
10938 F:      drivers/iio/temperature/mlx90632.c
10939
10940 MELFAS MIP4 TOUCHSCREEN DRIVER
10941 M:      Sangwon Jee <jeesw@melfas.com>
10942 S:      Supported
10943 W:      http://www.melfas.com
10944 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
10945 F:      drivers/input/touchscreen/melfas_mip4.c
10946
10947 MELLANOX ETHERNET DRIVER (mlx4_en)
10948 M:      Tariq Toukan <tariqt@mellanox.com>
10949 L:      netdev@vger.kernel.org
10950 S:      Supported
10951 W:      http://www.mellanox.com
10952 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10953 F:      drivers/net/ethernet/mellanox/mlx4/en_*
10954
10955 MELLANOX ETHERNET DRIVER (mlx5e)
10956 M:      Saeed Mahameed <saeedm@mellanox.com>
10957 L:      netdev@vger.kernel.org
10958 S:      Supported
10959 W:      http://www.mellanox.com
10960 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10961 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
10962
10963 MELLANOX ETHERNET INNOVA DRIVERS
10964 R:      Boris Pismenny <borisp@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/mlx5/core/accel/*
10970 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
10971 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
10972 F:      include/linux/mlx5/mlx5_ifc_fpga.h
10973
10974 MELLANOX ETHERNET SWITCH DRIVERS
10975 M:      Jiri Pirko <jiri@mellanox.com>
10976 M:      Ido Schimmel <idosch@mellanox.com>
10977 L:      netdev@vger.kernel.org
10978 S:      Supported
10979 W:      http://www.mellanox.com
10980 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10981 F:      drivers/net/ethernet/mellanox/mlxsw/
10982 F:      tools/testing/selftests/drivers/net/mlxsw/
10983
10984 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
10985 M:      mlxsw@mellanox.com
10986 L:      netdev@vger.kernel.org
10987 S:      Supported
10988 W:      http://www.mellanox.com
10989 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10990 F:      drivers/net/ethernet/mellanox/mlxfw/
10991
10992 MELLANOX HARDWARE PLATFORM SUPPORT
10993 M:      Andy Shevchenko <andy@infradead.org>
10994 M:      Darren Hart <dvhart@infradead.org>
10995 M:      Vadim Pasternak <vadimp@mellanox.com>
10996 L:      platform-driver-x86@vger.kernel.org
10997 S:      Supported
10998 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
10999 F:      drivers/platform/mellanox/
11000 F:      include/linux/platform_data/mlxreg.h
11001
11002 MELLANOX MLX4 core VPI driver
11003 M:      Tariq Toukan <tariqt@mellanox.com>
11004 L:      netdev@vger.kernel.org
11005 L:      linux-rdma@vger.kernel.org
11006 S:      Supported
11007 W:      http://www.mellanox.com
11008 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11009 F:      drivers/net/ethernet/mellanox/mlx4/
11010 F:      include/linux/mlx4/
11011
11012 MELLANOX MLX4 IB driver
11013 M:      Yishai Hadas <yishaih@mellanox.com>
11014 L:      linux-rdma@vger.kernel.org
11015 S:      Supported
11016 W:      http://www.mellanox.com
11017 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11018 F:      drivers/infiniband/hw/mlx4/
11019 F:      include/linux/mlx4/
11020 F:      include/uapi/rdma/mlx4-abi.h
11021
11022 MELLANOX MLX5 core VPI driver
11023 M:      Saeed Mahameed <saeedm@mellanox.com>
11024 M:      Leon Romanovsky <leonro@mellanox.com>
11025 L:      netdev@vger.kernel.org
11026 L:      linux-rdma@vger.kernel.org
11027 S:      Supported
11028 W:      http://www.mellanox.com
11029 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11030 F:      Documentation/networking/device_drivers/mellanox/
11031 F:      drivers/net/ethernet/mellanox/mlx5/core/
11032 F:      include/linux/mlx5/
11033
11034 MELLANOX MLX5 IB driver
11035 M:      Leon Romanovsky <leonro@mellanox.com>
11036 L:      linux-rdma@vger.kernel.org
11037 S:      Supported
11038 W:      http://www.mellanox.com
11039 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11040 F:      drivers/infiniband/hw/mlx5/
11041 F:      include/linux/mlx5/
11042 F:      include/uapi/rdma/mlx5-abi.h
11043
11044 MELLANOX MLXCPLD I2C AND MUX DRIVER
11045 M:      Vadim Pasternak <vadimp@mellanox.com>
11046 M:      Michael Shych <michaelsh@mellanox.com>
11047 L:      linux-i2c@vger.kernel.org
11048 S:      Supported
11049 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11050 F:      drivers/i2c/busses/i2c-mlxcpld.c
11051 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11052
11053 MELLANOX MLXCPLD LED DRIVER
11054 M:      Vadim Pasternak <vadimp@mellanox.com>
11055 L:      linux-leds@vger.kernel.org
11056 S:      Supported
11057 F:      Documentation/leds/leds-mlxcpld.rst
11058 F:      drivers/leds/leds-mlxcpld.c
11059 F:      drivers/leds/leds-mlxreg.c
11060
11061 MELLANOX PLATFORM DRIVER
11062 M:      Vadim Pasternak <vadimp@mellanox.com>
11063 L:      platform-driver-x86@vger.kernel.org
11064 S:      Supported
11065 F:      drivers/platform/x86/mlx-platform.c
11066
11067 MEMBARRIER SUPPORT
11068 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11069 M:      "Paul E. McKenney" <paulmck@kernel.org>
11070 L:      linux-kernel@vger.kernel.org
11071 S:      Supported
11072 F:      arch/powerpc/include/asm/membarrier.h
11073 F:      include/uapi/linux/membarrier.h
11074 F:      kernel/sched/membarrier.c
11075
11076 MEMBLOCK
11077 M:      Mike Rapoport <rppt@linux.ibm.com>
11078 L:      linux-mm@kvack.org
11079 S:      Maintained
11080 F:      Documentation/core-api/boot-time-mm.rst
11081 F:      include/linux/memblock.h
11082 F:      mm/memblock.c
11083
11084 MEMORY MANAGEMENT
11085 M:      Andrew Morton <akpm@linux-foundation.org>
11086 L:      linux-mm@kvack.org
11087 S:      Maintained
11088 W:      http://www.linux-mm.org
11089 T:      quilt https://ozlabs.org/~akpm/mmotm/
11090 T:      quilt https://ozlabs.org/~akpm/mmots/
11091 T:      git git://github.com/hnaz/linux-mm.git
11092 F:      include/linux/gfp.h
11093 F:      include/linux/memory_hotplug.h
11094 F:      include/linux/mm.h
11095 F:      include/linux/mmzone.h
11096 F:      include/linux/vmalloc.h
11097 F:      mm/
11098
11099 MEMORY TECHNOLOGY DEVICES (MTD)
11100 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11101 M:      Richard Weinberger <richard@nod.at>
11102 M:      Vignesh Raghavendra <vigneshr@ti.com>
11103 L:      linux-mtd@lists.infradead.org
11104 S:      Maintained
11105 W:      http://www.linux-mtd.infradead.org/
11106 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11107 C:      irc://irc.oftc.net/mtd
11108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11110 F:      Documentation/devicetree/bindings/mtd/
11111 F:      drivers/mtd/
11112 F:      include/linux/mtd/
11113 F:      include/uapi/mtd/
11114
11115 MEN A21 WATCHDOG DRIVER
11116 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11117 L:      linux-watchdog@vger.kernel.org
11118 S:      Maintained
11119 F:      drivers/watchdog/mena21_wdt.c
11120
11121 MEN CHAMELEON BUS (mcb)
11122 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11123 S:      Maintained
11124 F:      Documentation/driver-api/men-chameleon-bus.rst
11125 F:      drivers/mcb/
11126 F:      include/linux/mcb.h
11127
11128 MEN F21BMC (Board Management Controller)
11129 M:      Andreas Werner <andreas.werner@men.de>
11130 S:      Supported
11131 F:      Documentation/hwmon/menf21bmc.rst
11132 F:      drivers/hwmon/menf21bmc_hwmon.c
11133 F:      drivers/leds/leds-menf21bmc.c
11134 F:      drivers/mfd/menf21bmc.c
11135 F:      drivers/watchdog/menf21bmc_wdt.c
11136
11137 MEN Z069 WATCHDOG DRIVER
11138 M:      Johannes Thumshirn <jth@kernel.org>
11139 L:      linux-watchdog@vger.kernel.org
11140 S:      Maintained
11141 F:      drivers/watchdog/menz69_wdt.c
11142
11143 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11144 M:      Neil Armstrong <narmstrong@baylibre.com>
11145 L:      linux-media@vger.kernel.org
11146 L:      linux-amlogic@lists.infradead.org
11147 S:      Supported
11148 W:      http://linux-meson.com/
11149 T:      git git://linuxtv.org/media_tree.git
11150 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11151 F:      drivers/media/platform/meson/ao-cec-g12a.c
11152 F:      drivers/media/platform/meson/ao-cec.c
11153
11154 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11155 M:      Liang Yang <liang.yang@amlogic.com>
11156 L:      linux-mtd@lists.infradead.org
11157 S:      Maintained
11158 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11159 F:      drivers/mtd/nand/raw/meson_*
11160
11161 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11162 M:      Maxime Jourdan <mjourdan@baylibre.com>
11163 M:      Neil Armstrong <narmstrong@baylibre.com>
11164 L:      linux-media@vger.kernel.org
11165 L:      linux-amlogic@lists.infradead.org
11166 S:      Supported
11167 T:      git git://linuxtv.org/media_tree.git
11168 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11169 F:      drivers/staging/media/meson/vdec/
11170
11171 METHODE UDPU SUPPORT
11172 M:      Vladimir Vid <vladimir.vid@sartura.hr>
11173 S:      Maintained
11174 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11175
11176 MHI BUS
11177 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11178 M:      Hemant Kumar <hemantk@codeaurora.org>
11179 L:      linux-arm-msm@vger.kernel.org
11180 S:      Maintained
11181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11182 F:      Documentation/mhi/
11183 F:      drivers/bus/mhi/
11184 F:      include/linux/mhi.h
11185
11186 MICROBLAZE ARCHITECTURE
11187 M:      Michal Simek <monstr@monstr.eu>
11188 S:      Supported
11189 W:      http://www.monstr.eu/fdt/
11190 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11191 F:      arch/microblaze/
11192
11193 MICROCHIP AT91 SERIAL DRIVER
11194 M:      Richard Genoud <richard.genoud@gmail.com>
11195 S:      Maintained
11196 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11197 F:      drivers/tty/serial/atmel_serial.c
11198 F:      drivers/tty/serial/atmel_serial.h
11199
11200 MICROCHIP AT91 USART MFD DRIVER
11201 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11202 L:      linux-kernel@vger.kernel.org
11203 S:      Supported
11204 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11205 F:      drivers/mfd/at91-usart.c
11206 F:      include/dt-bindings/mfd/at91-usart.h
11207
11208 MICROCHIP AT91 USART SPI DRIVER
11209 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11210 L:      linux-spi@vger.kernel.org
11211 S:      Supported
11212 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11213 F:      drivers/spi/spi-at91-usart.c
11214
11215 MICROCHIP AUDIO ASOC DRIVERS
11216 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11217 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11218 S:      Supported
11219 F:      sound/soc/atmel
11220
11221 MICROCHIP DMA DRIVER
11222 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11223 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11224 L:      dmaengine@vger.kernel.org
11225 S:      Supported
11226 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11227 F:      drivers/dma/at_hdmac.c
11228 F:      drivers/dma/at_hdmac_regs.h
11229 F:      include/dt-bindings/dma/at91.h
11230 F:      include/linux/platform_data/dma-atmel.h
11231
11232 MICROCHIP ECC DRIVER
11233 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11234 L:      linux-crypto@vger.kernel.org
11235 S:      Maintained
11236 F:      drivers/crypto/atmel-ecc.*
11237
11238 MICROCHIP I2C DRIVER
11239 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11240 L:      linux-i2c@vger.kernel.org
11241 S:      Supported
11242 F:      drivers/i2c/busses/i2c-at91-*.c
11243 F:      drivers/i2c/busses/i2c-at91.h
11244
11245 MICROCHIP ISC DRIVER
11246 M:      Eugen Hristev <eugen.hristev@microchip.com>
11247 L:      linux-media@vger.kernel.org
11248 S:      Supported
11249 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11250 F:      drivers/media/platform/atmel/atmel-isc-base.c
11251 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11252 F:      drivers/media/platform/atmel/atmel-isc.h
11253 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11254 F:      include/linux/atmel-isc-media.h
11255
11256 MICROCHIP ISI DRIVER
11257 M:      Eugen Hristev <eugen.hristev@microchip.com>
11258 L:      linux-media@vger.kernel.org
11259 S:      Supported
11260 F:      drivers/media/platform/atmel/atmel-isi.c
11261 F:      drivers/media/platform/atmel/atmel-isi.h
11262
11263 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11264 M:      Woojung Huh <woojung.huh@microchip.com>
11265 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11266 L:      netdev@vger.kernel.org
11267 S:      Maintained
11268 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
11269 F:      drivers/net/dsa/microchip/*
11270 F:      include/linux/platform_data/microchip-ksz.h
11271 F:      net/dsa/tag_ksz.c
11272
11273 MICROCHIP LAN743X ETHERNET DRIVER
11274 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
11275 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11276 L:      netdev@vger.kernel.org
11277 S:      Maintained
11278 F:      drivers/net/ethernet/microchip/lan743x_*
11279
11280 MICROCHIP LCDFB DRIVER
11281 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11282 L:      linux-fbdev@vger.kernel.org
11283 S:      Maintained
11284 F:      drivers/video/fbdev/atmel_lcdfb.c
11285 F:      include/video/atmel_lcdc.h
11286
11287 MICROCHIP MCP16502 PMIC DRIVER
11288 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
11289 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11290 S:      Maintained
11291 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11292 F:      drivers/regulator/mcp16502.c
11293
11294 MICROCHIP MCP3911 ADC DRIVER
11295 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11296 M:      Kent Gustavsson <kent@minoris.se>
11297 L:      linux-iio@vger.kernel.org
11298 S:      Supported
11299 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11300 F:      drivers/iio/adc/mcp3911.c
11301
11302 MICROCHIP MMC/SD/SDIO MCI DRIVER
11303 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11304 S:      Maintained
11305 F:      drivers/mmc/host/atmel-mci.c
11306
11307 MICROCHIP NAND DRIVER
11308 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11309 L:      linux-mtd@lists.infradead.org
11310 S:      Supported
11311 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11312 F:      drivers/mtd/nand/raw/atmel/*
11313
11314 MICROCHIP PWM DRIVER
11315 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11316 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11317 L:      linux-pwm@vger.kernel.org
11318 S:      Supported
11319 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11320 F:      drivers/pwm/pwm-atmel.c
11321
11322 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11323 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11324 M:      Eugen Hristev <eugen.hristev@microchip.com>
11325 L:      linux-iio@vger.kernel.org
11326 S:      Supported
11327 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11328 F:      drivers/iio/adc/at91-sama5d2_adc.c
11329 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11330
11331 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11332 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11333 S:      Supported
11334 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11335
11336 MICROCHIP SPI DRIVER
11337 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11338 S:      Supported
11339 F:      drivers/spi/spi-atmel.*
11340
11341 MICROCHIP SSC DRIVER
11342 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11343 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11344 S:      Supported
11345 F:      drivers/misc/atmel-ssc.c
11346 F:      include/linux/atmel-ssc.h
11347
11348 MICROCHIP USB251XB DRIVER
11349 M:      Richard Leitner <richard.leitner@skidata.com>
11350 L:      linux-usb@vger.kernel.org
11351 S:      Maintained
11352 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11353 F:      drivers/usb/misc/usb251xb.c
11354
11355 MICROCHIP USBA UDC DRIVER
11356 M:      Cristian Birsan <cristian.birsan@microchip.com>
11357 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11358 S:      Supported
11359 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11360
11361 MICROCHIP XDMA DRIVER
11362 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11363 L:      linux-arm-kernel@lists.infradead.org
11364 L:      dmaengine@vger.kernel.org
11365 S:      Supported
11366 F:      drivers/dma/at_xdmac.c
11367
11368 MICROSEMI MIPS SOCS
11369 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11370 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11371 L:      linux-mips@vger.kernel.org
11372 S:      Supported
11373 F:      Documentation/devicetree/bindings/mips/mscc.txt
11374 F:      arch/mips/boot/dts/mscc/
11375 F:      arch/mips/configs/generic/board-ocelot.config
11376 F:      arch/mips/generic/board-ocelot.c
11377
11378 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11379 M:      Don Brace <don.brace@microsemi.com>
11380 L:      esc.storagedev@microsemi.com
11381 L:      linux-scsi@vger.kernel.org
11382 S:      Supported
11383 F:      Documentation/scsi/smartpqi.rst
11384 F:      drivers/scsi/smartpqi/Kconfig
11385 F:      drivers/scsi/smartpqi/Makefile
11386 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11387 F:      include/linux/cciss*.h
11388 F:      include/uapi/linux/cciss*.h
11389
11390 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11391 M:      Chen Yu <yu.c.chen@intel.com>
11392 L:      platform-driver-x86@vger.kernel.org
11393 S:      Supported
11394 F:      drivers/platform/x86/surfacepro3_button.c
11395
11396 MICROTEK X6 SCANNER
11397 M:      Oliver Neukum <oliver@neukum.org>
11398 S:      Maintained
11399 F:      drivers/usb/image/microtek.*
11400
11401 MIPS
11402 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11403 L:      linux-mips@vger.kernel.org
11404 S:      Maintained
11405 W:      http://www.linux-mips.org/
11406 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11408 F:      Documentation/devicetree/bindings/mips/
11409 F:      Documentation/mips/
11410 F:      arch/mips/
11411 F:      drivers/platform/mips/
11412
11413 MIPS BOSTON DEVELOPMENT BOARD
11414 M:      Paul Burton <paulburton@kernel.org>
11415 L:      linux-mips@vger.kernel.org
11416 S:      Maintained
11417 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11418 F:      arch/mips/boot/dts/img/boston.dts
11419 F:      arch/mips/configs/generic/board-boston.config
11420 F:      drivers/clk/imgtec/clk-boston.c
11421 F:      include/dt-bindings/clock/boston-clock.h
11422
11423 MIPS GENERIC PLATFORM
11424 M:      Paul Burton <paulburton@kernel.org>
11425 L:      linux-mips@vger.kernel.org
11426 S:      Supported
11427 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
11428 F:      arch/mips/generic/
11429 F:      arch/mips/tools/generic-board-config.sh
11430
11431 MIPS RINT INSTRUCTION EMULATION
11432 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
11433 L:      linux-mips@vger.kernel.org
11434 S:      Supported
11435 F:      arch/mips/math-emu/dp_rint.c
11436 F:      arch/mips/math-emu/sp_rint.c
11437
11438 MIPS/LOONGSON1 ARCHITECTURE
11439 M:      Keguang Zhang <keguang.zhang@gmail.com>
11440 L:      linux-mips@vger.kernel.org
11441 S:      Maintained
11442 F:      arch/mips/include/asm/mach-loongson32/
11443 F:      arch/mips/loongson32/
11444 F:      drivers/*/*/*loongson1*
11445 F:      drivers/*/*loongson1*
11446
11447 MIPS/LOONGSON2EF ARCHITECTURE
11448 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11449 L:      linux-mips@vger.kernel.org
11450 S:      Maintained
11451 F:      arch/mips/include/asm/mach-loongson2ef/
11452 F:      arch/mips/loongson2ef/
11453 F:      drivers/*/*/*loongson2*
11454 F:      drivers/*/*loongson2*
11455
11456 MIPS/LOONGSON64 ARCHITECTURE
11457 M:      Huacai Chen <chenhc@lemote.com>
11458 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11459 L:      linux-mips@vger.kernel.org
11460 S:      Maintained
11461 F:      arch/mips/include/asm/mach-loongson64/
11462 F:      arch/mips/loongson64/
11463 F:      drivers/*/*/*loongson3*
11464 F:      drivers/*/*loongson3*
11465 F:      drivers/irqchip/irq-loongson*
11466 F:      drivers/platform/mips/cpu_hwmon.c
11467
11468 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11469 M:      Hans Verkuil <hverkuil@xs4all.nl>
11470 L:      linux-media@vger.kernel.org
11471 S:      Odd Fixes
11472 W:      https://linuxtv.org
11473 T:      git git://linuxtv.org/media_tree.git
11474 F:      drivers/media/radio/radio-miropcm20*
11475
11476 MMP SUPPORT
11477 R:      Lubomir Rintel <lkundrak@v3.sk>
11478 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11479 S:      Odd Fixes
11480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11481 F:      arch/arm/boot/dts/mmp*
11482 F:      arch/arm/mach-mmp/
11483 F:      linux/soc/mmp/
11484
11485 MMP USB PHY DRIVERS
11486 R:      Lubomir Rintel <lkundrak@v3.sk>
11487 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11488 S:      Maintained
11489 F:      drivers/phy/marvell/phy-mmp3-usb.c
11490 F:      drivers/phy/marvell/phy-pxa-usb.c
11491
11492 MMU GATHER AND TLB INVALIDATION
11493 M:      Will Deacon <will@kernel.org>
11494 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
11495 M:      Andrew Morton <akpm@linux-foundation.org>
11496 M:      Nick Piggin <npiggin@gmail.com>
11497 M:      Peter Zijlstra <peterz@infradead.org>
11498 L:      linux-arch@vger.kernel.org
11499 L:      linux-mm@kvack.org
11500 S:      Maintained
11501 F:      arch/*/include/asm/tlb.h
11502 F:      include/asm-generic/tlb.h
11503 F:      mm/mmu_gather.c
11504
11505 MN88472 MEDIA DRIVER
11506 M:      Antti Palosaari <crope@iki.fi>
11507 L:      linux-media@vger.kernel.org
11508 S:      Maintained
11509 W:      https://linuxtv.org
11510 W:      http://palosaari.fi/linux/
11511 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11512 F:      drivers/media/dvb-frontends/mn88472*
11513
11514 MN88473 MEDIA DRIVER
11515 M:      Antti Palosaari <crope@iki.fi>
11516 L:      linux-media@vger.kernel.org
11517 S:      Maintained
11518 W:      https://linuxtv.org
11519 W:      http://palosaari.fi/linux/
11520 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11521 F:      drivers/media/dvb-frontends/mn88473*
11522
11523 MODULE SUPPORT
11524 M:      Jessica Yu <jeyu@kernel.org>
11525 S:      Maintained
11526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11527 F:      include/linux/module.h
11528 F:      kernel/module.c
11529
11530 MONOLITHIC POWER SYSTEM PMIC DRIVER
11531 M:      Saravanan Sekar <sravanhome@gmail.com>
11532 S:      Maintained
11533 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
11534 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11535 F:      drivers/iio/adc/mp2629_adc.c
11536 F:      drivers/mfd/mp2629.c
11537 F:      drivers/power/supply/mp2629_charger.c
11538 F:      drivers/regulator/mp5416.c
11539 F:      drivers/regulator/mpq7920.c
11540 F:      drivers/regulator/mpq7920.h
11541 F:      include/linux/mfd/mp2629.h
11542
11543 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11544 S:      Orphan
11545 W:      http://popies.net/meye/
11546 F:      Documentation/userspace-api/media/drivers/meye*
11547 F:      drivers/media/pci/meye/
11548 F:      include/uapi/linux/meye.h
11549
11550 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11551 M:      Jiri Slaby <jirislaby@gmail.com>
11552 S:      Maintained
11553 F:      Documentation/driver-api/serial/moxa-smartio.rst
11554 F:      drivers/tty/mxser.*
11555
11556 MR800 AVERMEDIA USB FM RADIO DRIVER
11557 M:      Alexey Klimov <klimov.linux@gmail.com>
11558 L:      linux-media@vger.kernel.org
11559 S:      Maintained
11560 T:      git git://linuxtv.org/media_tree.git
11561 F:      drivers/media/radio/radio-mr800.c
11562
11563 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11564 M:      Alan Ott <alan@signal11.us>
11565 L:      linux-wpan@vger.kernel.org
11566 S:      Maintained
11567 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11568 F:      drivers/net/ieee802154/mrf24j40.c
11569
11570 MSI LAPTOP SUPPORT
11571 M:      "Lee, Chun-Yi" <jlee@suse.com>
11572 L:      platform-driver-x86@vger.kernel.org
11573 S:      Maintained
11574 F:      drivers/platform/x86/msi-laptop.c
11575
11576 MSI WMI SUPPORT
11577 L:      platform-driver-x86@vger.kernel.org
11578 S:      Orphan
11579 F:      drivers/platform/x86/msi-wmi.c
11580
11581 MSI001 MEDIA DRIVER
11582 M:      Antti Palosaari <crope@iki.fi>
11583 L:      linux-media@vger.kernel.org
11584 S:      Maintained
11585 W:      https://linuxtv.org
11586 W:      http://palosaari.fi/linux/
11587 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11588 T:      git git://linuxtv.org/anttip/media_tree.git
11589 F:      drivers/media/tuners/msi001*
11590
11591 MSI2500 MEDIA DRIVER
11592 M:      Antti Palosaari <crope@iki.fi>
11593 L:      linux-media@vger.kernel.org
11594 S:      Maintained
11595 W:      https://linuxtv.org
11596 W:      http://palosaari.fi/linux/
11597 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11598 T:      git git://linuxtv.org/anttip/media_tree.git
11599 F:      drivers/media/usb/msi2500/
11600
11601 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11602 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11603 L:      linux-mtd@lists.infradead.org
11604 S:      Maintained
11605 F:      drivers/mtd/devices/docg3*
11606
11607 MT9M032 APTINA SENSOR DRIVER
11608 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11609 L:      linux-media@vger.kernel.org
11610 S:      Maintained
11611 T:      git git://linuxtv.org/media_tree.git
11612 F:      drivers/media/i2c/mt9m032.c
11613 F:      include/media/i2c/mt9m032.h
11614
11615 MT9P031 APTINA CAMERA SENSOR
11616 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11617 L:      linux-media@vger.kernel.org
11618 S:      Maintained
11619 T:      git git://linuxtv.org/media_tree.git
11620 F:      drivers/media/i2c/mt9p031.c
11621 F:      include/media/i2c/mt9p031.h
11622
11623 MT9T001 APTINA CAMERA SENSOR
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/mt9t001.c
11629 F:      include/media/i2c/mt9t001.h
11630
11631 MT9T112 APTINA CAMERA SENSOR
11632 M:      Jacopo Mondi <jacopo@jmondi.org>
11633 L:      linux-media@vger.kernel.org
11634 S:      Odd Fixes
11635 T:      git git://linuxtv.org/media_tree.git
11636 F:      drivers/media/i2c/mt9t112.c
11637 F:      include/media/i2c/mt9t112.h
11638
11639 MT9V032 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:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11645 F:      drivers/media/i2c/mt9v032.c
11646 F:      include/media/i2c/mt9v032.h
11647
11648 MT9V111 APTINA CAMERA SENSOR
11649 M:      Jacopo Mondi <jacopo@jmondi.org>
11650 L:      linux-media@vger.kernel.org
11651 S:      Maintained
11652 T:      git git://linuxtv.org/media_tree.git
11653 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11654 F:      drivers/media/i2c/mt9v111.c
11655
11656 MULTIFUNCTION DEVICES (MFD)
11657 M:      Lee Jones <lee.jones@linaro.org>
11658 S:      Supported
11659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11660 F:      Documentation/devicetree/bindings/mfd/
11661 F:      drivers/mfd/
11662 F:      include/dt-bindings/mfd/
11663 F:      include/linux/mfd/
11664
11665 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11666 S:      Orphan
11667 F:      drivers/mmc/host/mmc_spi.c
11668 F:      include/linux/spi/mmc_spi.h
11669
11670 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11671 M:      Ulf Hansson <ulf.hansson@linaro.org>
11672 L:      linux-mmc@vger.kernel.org
11673 S:      Maintained
11674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11675 F:      Documentation/devicetree/bindings/mmc/
11676 F:      drivers/mmc/
11677 F:      include/linux/mmc/
11678 F:      include/uapi/linux/mmc/
11679
11680 MULTIPLEXER SUBSYSTEM
11681 M:      Peter Rosin <peda@axentia.se>
11682 S:      Maintained
11683 F:      Documentation/ABI/testing/sysfs-class-mux*
11684 F:      Documentation/devicetree/bindings/mux/
11685 F:      drivers/mux/
11686 F:      include/dt-bindings/mux/
11687 F:      include/linux/mux/
11688
11689 MULTITECH MULTIPORT CARD (ISICOM)
11690 S:      Orphan
11691 F:      drivers/tty/isicom.c
11692 F:      include/linux/isicom.h
11693
11694 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11695 M:      Bin Liu <b-liu@ti.com>
11696 L:      linux-usb@vger.kernel.org
11697 S:      Maintained
11698 F:      drivers/usb/musb/
11699
11700 MXL301RF MEDIA DRIVER
11701 M:      Akihiro Tsukada <tskd08@gmail.com>
11702 L:      linux-media@vger.kernel.org
11703 S:      Odd Fixes
11704 F:      drivers/media/tuners/mxl301rf*
11705
11706 MXL5007T MEDIA DRIVER
11707 M:      Michael Krufky <mkrufky@linuxtv.org>
11708 L:      linux-media@vger.kernel.org
11709 S:      Maintained
11710 W:      https://linuxtv.org
11711 W:      http://github.com/mkrufky
11712 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11713 T:      git git://linuxtv.org/mkrufky/tuners.git
11714 F:      drivers/media/tuners/mxl5007t.*
11715
11716 MXSFB DRM DRIVER
11717 M:      Marek Vasut <marex@denx.de>
11718 M:      Stefan Agner <stefan@agner.ch>
11719 L:      dri-devel@lists.freedesktop.org
11720 S:      Supported
11721 T:      git git://anongit.freedesktop.org/drm/drm-misc
11722 F:      Documentation/devicetree/bindings/display/mxsfb.txt
11723 F:      drivers/gpu/drm/mxsfb/
11724
11725 MYLEX DAC960 PCI RAID Controller
11726 M:      Hannes Reinecke <hare@kernel.org>
11727 L:      linux-scsi@vger.kernel.org
11728 S:      Supported
11729 F:      drivers/scsi/myrb.*
11730 F:      drivers/scsi/myrs.*
11731
11732 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11733 M:      Chris Lee <christopher.lee@cspi.com>
11734 L:      netdev@vger.kernel.org
11735 S:      Supported
11736 W:      https://www.cspi.com/ethernet-products/support/downloads/
11737 F:      drivers/net/ethernet/myricom/myri10ge/
11738
11739 NAND FLASH SUBSYSTEM
11740 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11741 R:      Richard Weinberger <richard@nod.at>
11742 L:      linux-mtd@lists.infradead.org
11743 S:      Maintained
11744 W:      http://www.linux-mtd.infradead.org/
11745 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11746 C:      irc://irc.oftc.net/mtd
11747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11748 F:      drivers/mtd/nand/
11749 F:      include/linux/mtd/*nand*.h
11750
11751 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11752 M:      Daniel Mack <zonque@gmail.com>
11753 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11754 S:      Maintained
11755 W:      http://www.native-instruments.com
11756 F:      sound/usb/caiaq/
11757
11758 NATSEMI ETHERNET DRIVER (DP8381x)
11759 S:      Orphan
11760 F:      drivers/net/ethernet/natsemi/natsemi.c
11761
11762 NCR 5380 SCSI DRIVERS
11763 M:      Finn Thain <fthain@telegraphics.com.au>
11764 M:      Michael Schmitz <schmitzmic@gmail.com>
11765 L:      linux-scsi@vger.kernel.org
11766 S:      Maintained
11767 F:      Documentation/scsi/g_NCR5380.rst
11768 F:      drivers/scsi/NCR5380.*
11769 F:      drivers/scsi/arm/cumana_1.c
11770 F:      drivers/scsi/arm/oak.c
11771 F:      drivers/scsi/atari_scsi.*
11772 F:      drivers/scsi/dmx3191d.c
11773 F:      drivers/scsi/g_NCR5380.*
11774 F:      drivers/scsi/mac_scsi.*
11775 F:      drivers/scsi/sun3_scsi.*
11776 F:      drivers/scsi/sun3_scsi_vme.c
11777
11778 NCSI LIBRARY
11779 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
11780 S:      Maintained
11781 F:      net/ncsi/
11782
11783 NCT6775 HARDWARE MONITOR DRIVER
11784 M:      Guenter Roeck <linux@roeck-us.net>
11785 L:      linux-hwmon@vger.kernel.org
11786 S:      Maintained
11787 F:      Documentation/hwmon/nct6775.rst
11788 F:      drivers/hwmon/nct6775.c
11789
11790 NETDEVSIM
11791 M:      Jakub Kicinski <kuba@kernel.org>
11792 S:      Maintained
11793 F:      drivers/net/netdevsim/*
11794
11795 NETEM NETWORK EMULATOR
11796 M:      Stephen Hemminger <stephen@networkplumber.org>
11797 L:      netdev@vger.kernel.org
11798 S:      Maintained
11799 F:      net/sched/sch_netem.c
11800
11801 NETERION 10GbE DRIVERS (s2io/vxge)
11802 M:      Jon Mason <jdmason@kudzu.us>
11803 L:      netdev@vger.kernel.org
11804 S:      Supported
11805 F:      Documentation/networking/device_drivers/neterion/s2io.rst
11806 F:      Documentation/networking/device_drivers/neterion/vxge.rst
11807 F:      drivers/net/ethernet/neterion/
11808
11809 NETFILTER
11810 M:      Pablo Neira Ayuso <pablo@netfilter.org>
11811 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
11812 M:      Florian Westphal <fw@strlen.de>
11813 L:      netfilter-devel@vger.kernel.org
11814 L:      coreteam@netfilter.org
11815 S:      Maintained
11816 W:      http://www.netfilter.org/
11817 W:      http://www.iptables.org/
11818 W:      http://www.nftables.org/
11819 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
11820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
11821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
11822 F:      include/linux/netfilter*
11823 F:      include/linux/netfilter/
11824 F:      include/net/netfilter/
11825 F:      include/uapi/linux/netfilter*
11826 F:      include/uapi/linux/netfilter/
11827 F:      net/*/netfilter.c
11828 F:      net/*/netfilter/
11829 F:      net/bridge/br_netfilter*.c
11830 F:      net/netfilter/
11831
11832 NETROM NETWORK LAYER
11833 M:      Ralf Baechle <ralf@linux-mips.org>
11834 L:      linux-hams@vger.kernel.org
11835 S:      Maintained
11836 W:      http://www.linux-ax25.org/
11837 F:      include/net/netrom.h
11838 F:      include/uapi/linux/netrom.h
11839 F:      net/netrom/
11840
11841 NETRONOME ETHERNET DRIVERS
11842 M:      Jakub Kicinski <kuba@kernel.org>
11843 L:      oss-drivers@netronome.com
11844 S:      Maintained
11845 F:      drivers/net/ethernet/netronome/
11846
11847 NETWORK BLOCK DEVICE (NBD)
11848 M:      Josef Bacik <josef@toxicpanda.com>
11849 L:      linux-block@vger.kernel.org
11850 L:      nbd@other.debian.org
11851 S:      Maintained
11852 F:      Documentation/admin-guide/blockdev/nbd.rst
11853 F:      drivers/block/nbd.c
11854 F:      include/trace/events/nbd.h
11855 F:      include/uapi/linux/nbd.h
11856
11857 NETWORK DROP MONITOR
11858 M:      Neil Horman <nhorman@tuxdriver.com>
11859 L:      netdev@vger.kernel.org
11860 S:      Maintained
11861 W:      https://fedorahosted.org/dropwatch/
11862 F:      include/net/drop_monitor.h
11863 F:      include/uapi/linux/net_dropmon.h
11864 F:      net/core/drop_monitor.c
11865
11866 NETWORKING DRIVERS
11867 M:      "David S. Miller" <davem@davemloft.net>
11868 M:      Jakub Kicinski <kuba@kernel.org>
11869 L:      netdev@vger.kernel.org
11870 S:      Maintained
11871 W:      http://www.linuxfoundation.org/en/Net
11872 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11875 F:      Documentation/devicetree/bindings/net/
11876 F:      drivers/net/
11877 F:      include/linux/etherdevice.h
11878 F:      include/linux/fcdevice.h
11879 F:      include/linux/fddidevice.h
11880 F:      include/linux/hippidevice.h
11881 F:      include/linux/if_*
11882 F:      include/linux/inetdevice.h
11883 F:      include/linux/netdevice.h
11884 F:      include/uapi/linux/if_*
11885 F:      include/uapi/linux/netdevice.h
11886
11887 NETWORKING DRIVERS (WIRELESS)
11888 M:      Kalle Valo <kvalo@codeaurora.org>
11889 L:      linux-wireless@vger.kernel.org
11890 S:      Maintained
11891 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
11893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
11894 F:      Documentation/devicetree/bindings/net/wireless/
11895 F:      drivers/net/wireless/
11896
11897 NETWORKING [DSA]
11898 M:      Andrew Lunn <andrew@lunn.ch>
11899 M:      Vivien Didelot <vivien.didelot@gmail.com>
11900 M:      Florian Fainelli <f.fainelli@gmail.com>
11901 S:      Maintained
11902 F:      Documentation/devicetree/bindings/net/dsa/
11903 F:      drivers/net/dsa/
11904 F:      include/linux/dsa/
11905 F:      include/linux/platform_data/dsa.h
11906 F:      include/net/dsa.h
11907 F:      net/dsa/
11908
11909 NETWORKING [GENERAL]
11910 M:      "David S. Miller" <davem@davemloft.net>
11911 M:      Jakub Kicinski <kuba@kernel.org>
11912 L:      netdev@vger.kernel.org
11913 S:      Maintained
11914 W:      http://www.linuxfoundation.org/en/Net
11915 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11916 B:      mailto:netdev@vger.kernel.org
11917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11919 F:      Documentation/networking/
11920 F:      include/linux/in.h
11921 F:      include/linux/net.h
11922 F:      include/linux/netdevice.h
11923 F:      include/net/
11924 F:      include/uapi/linux/in.h
11925 F:      include/uapi/linux/net.h
11926 F:      include/uapi/linux/net_namespace.h
11927 F:      include/uapi/linux/netdevice.h
11928 F:      lib/net_utils.c
11929 F:      lib/random32.c
11930 F:      net/
11931 F:      tools/testing/selftests/net/
11932
11933 NETWORKING [IPSEC]
11934 M:      Steffen Klassert <steffen.klassert@secunet.com>
11935 M:      Herbert Xu <herbert@gondor.apana.org.au>
11936 M:      "David S. Miller" <davem@davemloft.net>
11937 L:      netdev@vger.kernel.org
11938 S:      Maintained
11939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
11940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
11941 F:      include/net/xfrm.h
11942 F:      include/uapi/linux/xfrm.h
11943 F:      net/ipv4/ah4.c
11944 F:      net/ipv4/esp4*
11945 F:      net/ipv4/ip_vti.c
11946 F:      net/ipv4/ipcomp.c
11947 F:      net/ipv4/xfrm*
11948 F:      net/ipv6/ah6.c
11949 F:      net/ipv6/esp6*
11950 F:      net/ipv6/ip6_vti.c
11951 F:      net/ipv6/ipcomp6.c
11952 F:      net/ipv6/xfrm*
11953 F:      net/key/
11954 F:      net/xfrm/
11955
11956 NETWORKING [IPv4/IPv6]
11957 M:      "David S. Miller" <davem@davemloft.net>
11958 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
11959 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
11960 L:      netdev@vger.kernel.org
11961 S:      Maintained
11962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11963 F:      arch/x86/net/*
11964 F:      include/net/ip*
11965 F:      net/ipv4/
11966 F:      net/ipv6/
11967
11968 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
11969 M:      Paul Moore <paul@paul-moore.com>
11970 L:      netdev@vger.kernel.org
11971 L:      linux-security-module@vger.kernel.org
11972 S:      Maintained
11973 W:      https://github.com/netlabel
11974 F:      Documentation/netlabel/
11975 F:      include/net/calipso.h
11976 F:      include/net/cipso_ipv4.h
11977 F:      include/net/netlabel.h
11978 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
11979 F:      include/uapi/linux/netfilter/xt_SECMARK.h
11980 F:      net/ipv4/cipso_ipv4.c
11981 F:      net/ipv6/calipso.c
11982 F:      net/netfilter/xt_CONNSECMARK.c
11983 F:      net/netfilter/xt_SECMARK.c
11984 F:      net/netlabel/
11985
11986 NETWORKING [MPTCP]
11987 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
11988 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
11989 L:      netdev@vger.kernel.org
11990 L:      mptcp@lists.01.org
11991 S:      Maintained
11992 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
11993 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
11994 F:      include/net/mptcp.h
11995 F:      include/uapi/linux/mptcp.h
11996 F:      net/mptcp/
11997 F:      tools/testing/selftests/net/mptcp/
11998
11999 NETWORKING [TCP]
12000 M:      Eric Dumazet <edumazet@google.com>
12001 L:      netdev@vger.kernel.org
12002 S:      Maintained
12003 F:      include/linux/tcp.h
12004 F:      include/net/tcp.h
12005 F:      include/trace/events/tcp.h
12006 F:      include/uapi/linux/tcp.h
12007 F:      net/ipv4/syncookies.c
12008 F:      net/ipv4/tcp*.c
12009 F:      net/ipv6/syncookies.c
12010 F:      net/ipv6/tcp*.c
12011
12012 NETWORKING [TLS]
12013 M:      Boris Pismenny <borisp@mellanox.com>
12014 M:      Aviad Yehezkel <aviadye@mellanox.com>
12015 M:      John Fastabend <john.fastabend@gmail.com>
12016 M:      Daniel Borkmann <daniel@iogearbox.net>
12017 M:      Jakub Kicinski <kuba@kernel.org>
12018 L:      netdev@vger.kernel.org
12019 S:      Maintained
12020 F:      include/net/tls.h
12021 F:      include/uapi/linux/tls.h
12022 F:      net/tls/*
12023
12024 NETWORKING [WIRELESS]
12025 L:      linux-wireless@vger.kernel.org
12026 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12027
12028 NETXEN (1/10) GbE SUPPORT
12029 M:      Manish Chopra <manishc@marvell.com>
12030 M:      Rahul Verma <rahulv@marvell.com>
12031 M:      GR-Linux-NIC-Dev@marvell.com
12032 L:      netdev@vger.kernel.org
12033 S:      Supported
12034 F:      drivers/net/ethernet/qlogic/netxen/
12035
12036 NET_FAILOVER MODULE
12037 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
12038 L:      netdev@vger.kernel.org
12039 S:      Supported
12040 F:      Documentation/networking/net_failover.rst
12041 F:      drivers/net/net_failover.c
12042 F:      include/net/net_failover.h
12043
12044 NEXTHOP
12045 M:      David Ahern <dsahern@kernel.org>
12046 L:      netdev@vger.kernel.org
12047 S:      Maintained
12048 F:      include/net/netns/nexthop.h
12049 F:      include/net/nexthop.h
12050 F:      include/uapi/linux/nexthop.h
12051 F:      net/ipv4/nexthop.c
12052
12053 NFC SUBSYSTEM
12054 L:      netdev@vger.kernel.org
12055 S:      Orphan
12056 F:      Documentation/devicetree/bindings/net/nfc/
12057 F:      drivers/nfc/
12058 F:      include/linux/platform_data/nfcmrvl.h
12059 F:      include/net/nfc/
12060 F:      include/uapi/linux/nfc.h
12061 F:      net/nfc/
12062
12063 NFS, SUNRPC, AND LOCKD CLIENTS
12064 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
12065 M:      Anna Schumaker <anna.schumaker@netapp.com>
12066 L:      linux-nfs@vger.kernel.org
12067 S:      Maintained
12068 W:      http://client.linux-nfs.org
12069 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12070 F:      fs/lockd/
12071 F:      fs/nfs/
12072 F:      fs/nfs_common/
12073 F:      include/linux/lockd/
12074 F:      include/linux/nfs*
12075 F:      include/linux/sunrpc/
12076 F:      include/uapi/linux/nfs*
12077 F:      include/uapi/linux/sunrpc/
12078 F:      net/sunrpc/
12079
12080 NILFS2 FILESYSTEM
12081 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
12082 L:      linux-nilfs@vger.kernel.org
12083 S:      Supported
12084 W:      https://nilfs.sourceforge.io/
12085 W:      https://nilfs.osdn.jp/
12086 T:      git git://github.com/konis/nilfs2.git
12087 F:      Documentation/filesystems/nilfs2.rst
12088 F:      fs/nilfs2/
12089 F:      include/trace/events/nilfs2.h
12090 F:      include/uapi/linux/nilfs2_api.h
12091 F:      include/uapi/linux/nilfs2_ondisk.h
12092
12093 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
12094 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12095 S:      Maintained
12096 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12097 F:      Documentation/scsi/NinjaSCSI.rst
12098 F:      drivers/scsi/pcmcia/nsp_*
12099
12100 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12101 M:      GOTO Masanori <gotom@debian.or.jp>
12102 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12103 S:      Maintained
12104 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12105 F:      Documentation/scsi/NinjaSCSI.rst
12106 F:      drivers/scsi/nsp32*
12107
12108 NIOS2 ARCHITECTURE
12109 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12110 S:      Maintained
12111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12112 F:      arch/nios2/
12113
12114 NOHZ, DYNTICKS SUPPORT
12115 M:      Frederic Weisbecker <fweisbec@gmail.com>
12116 M:      Thomas Gleixner <tglx@linutronix.de>
12117 M:      Ingo Molnar <mingo@kernel.org>
12118 L:      linux-kernel@vger.kernel.org
12119 S:      Maintained
12120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12121 F:      include/linux/sched/nohz.h
12122 F:      include/linux/tick.h
12123 F:      kernel/time/tick*.*
12124
12125 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12126 M:      Pavel Machek <pavel@ucw.cz>
12127 M:      Sakari Ailus <sakari.ailus@iki.fi>
12128 L:      linux-media@vger.kernel.org
12129 S:      Maintained
12130 F:      drivers/media/i2c/ad5820.c
12131 F:      drivers/media/i2c/et8ek8
12132
12133 NOKIA N900 POWER SUPPLY DRIVERS
12134 R:      Pali Rohár <pali@kernel.org>
12135 F:      drivers/power/supply/bq2415x_charger.c
12136 F:      drivers/power/supply/bq27xxx_battery.c
12137 F:      drivers/power/supply/bq27xxx_battery_i2c.c
12138 F:      drivers/power/supply/isp1704_charger.c
12139 F:      drivers/power/supply/rx51_battery.c
12140 F:      include/linux/power/bq2415x_charger.h
12141 F:      include/linux/power/bq27xxx_battery.h
12142
12143 NOLIBC HEADER FILE
12144 M:      Willy Tarreau <w@1wt.eu>
12145 S:      Maintained
12146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12147 F:      tools/include/nolibc/
12148
12149 NSDEPS
12150 M:      Matthias Maennich <maennich@google.com>
12151 S:      Maintained
12152 F:      Documentation/core-api/symbol-namespaces.rst
12153 F:      scripts/nsdeps
12154
12155 NTB AMD DRIVER
12156 M:      Sanjay R Mehta <sanju.mehta@amd.com>
12157 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
12158 L:      linux-ntb@googlegroups.com
12159 S:      Supported
12160 F:      drivers/ntb/hw/amd/
12161
12162 NTB DRIVER CORE
12163 M:      Jon Mason <jdmason@kudzu.us>
12164 M:      Dave Jiang <dave.jiang@intel.com>
12165 M:      Allen Hubbe <allenbh@gmail.com>
12166 L:      linux-ntb@googlegroups.com
12167 S:      Supported
12168 W:      https://github.com/jonmason/ntb/wiki
12169 T:      git git://github.com/jonmason/ntb.git
12170 F:      drivers/net/ntb_netdev.c
12171 F:      drivers/ntb/
12172 F:      include/linux/ntb.h
12173 F:      include/linux/ntb_transport.h
12174 F:      tools/testing/selftests/ntb/
12175
12176 NTB IDT DRIVER
12177 M:      Serge Semin <fancer.lancer@gmail.com>
12178 L:      linux-ntb@googlegroups.com
12179 S:      Supported
12180 F:      drivers/ntb/hw/idt/
12181
12182 NTB INTEL DRIVER
12183 M:      Dave Jiang <dave.jiang@intel.com>
12184 L:      linux-ntb@googlegroups.com
12185 S:      Supported
12186 W:      https://github.com/davejiang/linux/wiki
12187 T:      git https://github.com/davejiang/linux.git
12188 F:      drivers/ntb/hw/intel/
12189
12190 NTFS FILESYSTEM
12191 M:      Anton Altaparmakov <anton@tuxera.com>
12192 L:      linux-ntfs-dev@lists.sourceforge.net
12193 S:      Supported
12194 W:      http://www.tuxera.com/
12195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12196 F:      Documentation/filesystems/ntfs.rst
12197 F:      fs/ntfs/
12198
12199 NUBUS SUBSYSTEM
12200 M:      Finn Thain <fthain@telegraphics.com.au>
12201 L:      linux-m68k@lists.linux-m68k.org
12202 S:      Maintained
12203 F:      arch/*/include/asm/nubus.h
12204 F:      drivers/nubus/
12205 F:      include/linux/nubus.h
12206 F:      include/uapi/linux/nubus.h
12207
12208 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12209 M:      Antonino Daplas <adaplas@gmail.com>
12210 L:      linux-fbdev@vger.kernel.org
12211 S:      Maintained
12212 F:      drivers/video/fbdev/nvidia/
12213 F:      drivers/video/fbdev/riva/
12214
12215 NVM EXPRESS DRIVER
12216 M:      Keith Busch <kbusch@kernel.org>
12217 M:      Jens Axboe <axboe@fb.com>
12218 M:      Christoph Hellwig <hch@lst.de>
12219 M:      Sagi Grimberg <sagi@grimberg.me>
12220 L:      linux-nvme@lists.infradead.org
12221 S:      Supported
12222 W:      http://git.infradead.org/nvme.git
12223 T:      git://git.infradead.org/nvme.git
12224 F:      drivers/nvme/host/
12225 F:      include/linux/nvme.h
12226 F:      include/uapi/linux/nvme_ioctl.h
12227
12228 NVM EXPRESS FC TRANSPORT DRIVERS
12229 M:      James Smart <james.smart@broadcom.com>
12230 L:      linux-nvme@lists.infradead.org
12231 S:      Supported
12232 F:      drivers/nvme/host/fc.c
12233 F:      drivers/nvme/target/fc.c
12234 F:      drivers/nvme/target/fcloop.c
12235 F:      include/linux/nvme-fc-driver.h
12236 F:      include/linux/nvme-fc.h
12237
12238 NVM EXPRESS TARGET DRIVER
12239 M:      Christoph Hellwig <hch@lst.de>
12240 M:      Sagi Grimberg <sagi@grimberg.me>
12241 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
12242 L:      linux-nvme@lists.infradead.org
12243 S:      Supported
12244 W:      http://git.infradead.org/nvme.git
12245 T:      git://git.infradead.org/nvme.git
12246 F:      drivers/nvme/target/
12247
12248 NVMEM FRAMEWORK
12249 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12250 S:      Maintained
12251 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12252 F:      Documentation/devicetree/bindings/nvmem/
12253 F:      drivers/nvmem/
12254 F:      include/linux/nvmem-consumer.h
12255 F:      include/linux/nvmem-provider.h
12256
12257 NXP FSPI DRIVER
12258 M:      Ashish Kumar <ashish.kumar@nxp.com>
12259 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
12260 L:      linux-spi@vger.kernel.org
12261 S:      Maintained
12262 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12263 F:      drivers/spi/spi-nxp-fspi.c
12264
12265 NXP FXAS21002C DRIVER
12266 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12267 L:      linux-iio@vger.kernel.org
12268 S:      Maintained
12269 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
12270 F:      drivers/iio/gyro/fxas21002c.h
12271 F:      drivers/iio/gyro/fxas21002c_core.c
12272 F:      drivers/iio/gyro/fxas21002c_i2c.c
12273 F:      drivers/iio/gyro/fxas21002c_spi.c
12274
12275 NXP SGTL5000 DRIVER
12276 M:      Fabio Estevam <festevam@gmail.com>
12277 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12278 S:      Maintained
12279 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
12280 F:      sound/soc/codecs/sgtl5000*
12281
12282 NXP SJA1105 ETHERNET SWITCH DRIVER
12283 M:      Vladimir Oltean <olteanv@gmail.com>
12284 L:      linux-kernel@vger.kernel.org
12285 S:      Maintained
12286 F:      drivers/net/dsa/sja1105
12287
12288 NXP TDA998X DRM DRIVER
12289 M:      Russell King <linux@armlinux.org.uk>
12290 S:      Maintained
12291 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12292 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12293 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12294 F:      include/drm/i2c/tda998x.h
12295 F:      include/dt-bindings/display/tda998x.h
12296 K:      "nxp,tda998x"
12297
12298 NXP TFA9879 DRIVER
12299 M:      Peter Rosin <peda@axentia.se>
12300 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12301 S:      Maintained
12302 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12303 F:      sound/soc/codecs/tfa9879*
12304
12305 NXP-NCI NFC DRIVER
12306 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
12307 R:      Charles Gorand <charles.gorand@effinnov.com>
12308 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12309 S:      Supported
12310 F:      drivers/nfc/nxp-nci
12311
12312 OBJAGG
12313 M:      Jiri Pirko <jiri@mellanox.com>
12314 L:      netdev@vger.kernel.org
12315 S:      Supported
12316 F:      include/linux/objagg.h
12317 F:      lib/objagg.c
12318 F:      lib/test_objagg.c
12319
12320 OBJTOOL
12321 M:      Josh Poimboeuf <jpoimboe@redhat.com>
12322 M:      Peter Zijlstra <peterz@infradead.org>
12323 S:      Supported
12324 F:      tools/objtool/
12325
12326 OCELOT ETHERNET SWITCH DRIVER
12327 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
12328 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
12329 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
12330 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12331 L:      netdev@vger.kernel.org
12332 S:      Supported
12333 F:      drivers/net/dsa/ocelot/*
12334 F:      drivers/net/ethernet/mscc/
12335 F:      include/soc/mscc/ocelot*
12336 F:      net/dsa/tag_ocelot.c
12337
12338 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12339 M:      Frederic Barrat <fbarrat@linux.ibm.com>
12340 M:      Andrew Donnellan <ajd@linux.ibm.com>
12341 L:      linuxppc-dev@lists.ozlabs.org
12342 S:      Supported
12343 F:      Documentation/userspace-api/accelerators/ocxl.rst
12344 F:      arch/powerpc/include/asm/pnv-ocxl.h
12345 F:      arch/powerpc/platforms/powernv/ocxl.c
12346 F:      drivers/misc/ocxl/
12347 F:      include/misc/ocxl*
12348 F:      include/uapi/misc/ocxl.h
12349
12350 OMAP AUDIO SUPPORT
12351 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
12352 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
12353 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12354 L:      linux-omap@vger.kernel.org
12355 S:      Maintained
12356 F:      sound/soc/ti/n810.c
12357 F:      sound/soc/ti/omap*
12358 F:      sound/soc/ti/rx51.c
12359 F:      sound/soc/ti/sdma-pcm.*
12360
12361 OMAP CLOCK FRAMEWORK SUPPORT
12362 M:      Paul Walmsley <paul@pwsan.com>
12363 L:      linux-omap@vger.kernel.org
12364 S:      Maintained
12365 F:      arch/arm/*omap*/*clock*
12366
12367 OMAP DEVICE TREE SUPPORT
12368 M:      Benoît Cousson <bcousson@baylibre.com>
12369 M:      Tony Lindgren <tony@atomide.com>
12370 L:      linux-omap@vger.kernel.org
12371 L:      devicetree@vger.kernel.org
12372 S:      Maintained
12373 F:      arch/arm/boot/dts/*am3*
12374 F:      arch/arm/boot/dts/*am4*
12375 F:      arch/arm/boot/dts/*am5*
12376 F:      arch/arm/boot/dts/*dra7*
12377 F:      arch/arm/boot/dts/*omap*
12378 F:      arch/arm/boot/dts/logicpd-som-lv*
12379 F:      arch/arm/boot/dts/logicpd-torpedo*
12380
12381 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12382 L:      linux-omap@vger.kernel.org
12383 L:      linux-fbdev@vger.kernel.org
12384 S:      Orphan
12385 F:      Documentation/arm/omap/dss.rst
12386 F:      drivers/video/fbdev/omap2/
12387
12388 OMAP FRAMEBUFFER SUPPORT
12389 L:      linux-fbdev@vger.kernel.org
12390 L:      linux-omap@vger.kernel.org
12391 S:      Orphan
12392 F:      drivers/video/fbdev/omap/
12393
12394 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12395 M:      Roger Quadros <rogerq@ti.com>
12396 M:      Tony Lindgren <tony@atomide.com>
12397 L:      linux-omap@vger.kernel.org
12398 S:      Maintained
12399 F:      arch/arm/mach-omap2/*gpmc*
12400 F:      drivers/memory/omap-gpmc.c
12401
12402 OMAP GPIO DRIVER
12403 M:      Grygorii Strashko <grygorii.strashko@ti.com>
12404 M:      Santosh Shilimkar <ssantosh@kernel.org>
12405 M:      Kevin Hilman <khilman@kernel.org>
12406 L:      linux-omap@vger.kernel.org
12407 S:      Maintained
12408 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12409 F:      drivers/gpio/gpio-omap.c
12410
12411 OMAP HARDWARE SPINLOCK SUPPORT
12412 M:      Ohad Ben-Cohen <ohad@wizery.com>
12413 L:      linux-omap@vger.kernel.org
12414 S:      Maintained
12415 F:      drivers/hwspinlock/omap_hwspinlock.c
12416
12417 OMAP HS MMC SUPPORT
12418 L:      linux-mmc@vger.kernel.org
12419 L:      linux-omap@vger.kernel.org
12420 S:      Orphan
12421 F:      drivers/mmc/host/omap_hsmmc.c
12422
12423 OMAP HWMOD DATA
12424 M:      Paul Walmsley <paul@pwsan.com>
12425 L:      linux-omap@vger.kernel.org
12426 S:      Maintained
12427 F:      arch/arm/mach-omap2/omap_hwmod*data*
12428
12429 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12430 M:      Benoît Cousson <bcousson@baylibre.com>
12431 L:      linux-omap@vger.kernel.org
12432 S:      Maintained
12433 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12434
12435 OMAP HWMOD SUPPORT
12436 M:      Benoît Cousson <bcousson@baylibre.com>
12437 M:      Paul Walmsley <paul@pwsan.com>
12438 L:      linux-omap@vger.kernel.org
12439 S:      Maintained
12440 F:      arch/arm/mach-omap2/omap_hwmod.*
12441
12442 OMAP I2C DRIVER
12443 M:      Vignesh R <vigneshr@ti.com>
12444 L:      linux-omap@vger.kernel.org
12445 L:      linux-i2c@vger.kernel.org
12446 S:      Maintained
12447 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12448 F:      drivers/i2c/busses/i2c-omap.c
12449
12450 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12451 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12452 L:      linux-media@vger.kernel.org
12453 S:      Maintained
12454 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12455 F:      drivers/media/platform/omap3isp/
12456 F:      drivers/staging/media/omap4iss/
12457
12458 OMAP MMC SUPPORT
12459 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12460 L:      linux-omap@vger.kernel.org
12461 S:      Odd Fixes
12462 F:      drivers/mmc/host/omap.c
12463
12464 OMAP POWER MANAGEMENT SUPPORT
12465 M:      Kevin Hilman <khilman@kernel.org>
12466 L:      linux-omap@vger.kernel.org
12467 S:      Maintained
12468 F:      arch/arm/*omap*/*pm*
12469 F:      drivers/cpufreq/omap-cpufreq.c
12470
12471 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12472 M:      Rajendra Nayak <rnayak@codeaurora.org>
12473 M:      Paul Walmsley <paul@pwsan.com>
12474 L:      linux-omap@vger.kernel.org
12475 S:      Maintained
12476 F:      arch/arm/mach-omap2/prm*
12477
12478 OMAP RANDOM NUMBER GENERATOR SUPPORT
12479 M:      Deepak Saxena <dsaxena@plexity.net>
12480 S:      Maintained
12481 F:      drivers/char/hw_random/omap-rng.c
12482
12483 OMAP USB SUPPORT
12484 L:      linux-usb@vger.kernel.org
12485 L:      linux-omap@vger.kernel.org
12486 S:      Orphan
12487 F:      arch/arm/*omap*/usb*
12488 F:      drivers/usb/*/*omap*
12489
12490 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12491 M:      Mark Jackson <mpfj@newflow.co.uk>
12492 L:      linux-omap@vger.kernel.org
12493 S:      Maintained
12494 F:      arch/arm/boot/dts/am335x-nano.dts
12495
12496 OMAP1 SUPPORT
12497 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12498 M:      Tony Lindgren <tony@atomide.com>
12499 L:      linux-omap@vger.kernel.org
12500 S:      Maintained
12501 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12503 F:      arch/arm/configs/omap1_defconfig
12504 F:      arch/arm/mach-omap1/
12505 F:      arch/arm/plat-omap/
12506 F:      drivers/i2c/busses/i2c-omap.c
12507 F:      include/linux/platform_data/ams-delta-fiq.h
12508 F:      include/linux/platform_data/i2c-omap.h
12509
12510 OMAP2+ SUPPORT
12511 M:      Tony Lindgren <tony@atomide.com>
12512 L:      linux-omap@vger.kernel.org
12513 S:      Maintained
12514 W:      http://www.muru.com/linux/omap/
12515 W:      http://linux.omap.com/
12516 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12518 F:      arch/arm/configs/omap2plus_defconfig
12519 F:      arch/arm/mach-omap2/
12520 F:      arch/arm/plat-omap/
12521 F:      drivers/bus/ti-sysc.c
12522 F:      drivers/i2c/busses/i2c-omap.c
12523 F:      drivers/irqchip/irq-omap-intc.c
12524 F:      drivers/mfd/*omap*.c
12525 F:      drivers/mfd/menelaus.c
12526 F:      drivers/mfd/palmas.c
12527 F:      drivers/mfd/tps65217.c
12528 F:      drivers/mfd/tps65218.c
12529 F:      drivers/mfd/tps65910.c
12530 F:      drivers/mfd/twl-core.[ch]
12531 F:      drivers/mfd/twl4030*.c
12532 F:      drivers/mfd/twl6030*.c
12533 F:      drivers/mfd/twl6040*.c
12534 F:      drivers/regulator/palmas-regulator*.c
12535 F:      drivers/regulator/pbias-regulator.c
12536 F:      drivers/regulator/tps65217-regulator.c
12537 F:      drivers/regulator/tps65218-regulator.c
12538 F:      drivers/regulator/tps65910-regulator.c
12539 F:      drivers/regulator/twl-regulator.c
12540 F:      drivers/regulator/twl6030-regulator.c
12541 F:      include/linux/platform_data/i2c-omap.h
12542 F:      include/linux/platform_data/ti-sysc.h
12543
12544 OMFS FILESYSTEM
12545 M:      Bob Copeland <me@bobcopeland.com>
12546 L:      linux-karma-devel@lists.sourceforge.net
12547 S:      Maintained
12548 F:      Documentation/filesystems/omfs.rst
12549 F:      fs/omfs/
12550
12551 OMNIKEY CARDMAN 4000 DRIVER
12552 M:      Harald Welte <laforge@gnumonks.org>
12553 S:      Maintained
12554 F:      drivers/char/pcmcia/cm4000_cs.c
12555 F:      include/linux/cm4000_cs.h
12556 F:      include/uapi/linux/cm4000_cs.h
12557
12558 OMNIKEY CARDMAN 4040 DRIVER
12559 M:      Harald Welte <laforge@gnumonks.org>
12560 S:      Maintained
12561 F:      drivers/char/pcmcia/cm4040_cs.*
12562
12563 OMNIVISION OV13858 SENSOR DRIVER
12564 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12565 L:      linux-media@vger.kernel.org
12566 S:      Maintained
12567 T:      git git://linuxtv.org/media_tree.git
12568 F:      drivers/media/i2c/ov13858.c
12569
12570 OMNIVISION OV2680 SENSOR DRIVER
12571 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12572 L:      linux-media@vger.kernel.org
12573 S:      Maintained
12574 T:      git git://linuxtv.org/media_tree.git
12575 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
12576 F:      drivers/media/i2c/ov2680.c
12577
12578 OMNIVISION OV2685 SENSOR DRIVER
12579 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12580 L:      linux-media@vger.kernel.org
12581 S:      Maintained
12582 T:      git git://linuxtv.org/media_tree.git
12583 F:      drivers/media/i2c/ov2685.c
12584
12585 OMNIVISION OV2740 SENSOR DRIVER
12586 M:      Tianshu Qiu <tian.shu.qiua@intel.com>
12587 R:      Shawn Tu <shawnx.tu@intel.com>
12588 R:      Bingbu Cao <bingbu.cao@intel.com>
12589 L:      linux-media@vger.kernel.org
12590 S:      Maintained
12591 T:      git git://linuxtv.org/media_tree.git
12592 F:      drivers/media/i2c/ov2740.c
12593
12594 OMNIVISION OV5640 SENSOR DRIVER
12595 M:      Steve Longerbeam <slongerbeam@gmail.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/ov5640.c
12600
12601 OMNIVISION OV5647 SENSOR DRIVER
12602 M:      Luis Oliveira <lolivei@synopsys.com>
12603 L:      linux-media@vger.kernel.org
12604 S:      Maintained
12605 T:      git git://linuxtv.org/media_tree.git
12606 F:      drivers/media/i2c/ov5647.c
12607
12608 OMNIVISION OV5670 SENSOR DRIVER
12609 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
12610 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
12611 L:      linux-media@vger.kernel.org
12612 S:      Maintained
12613 T:      git git://linuxtv.org/media_tree.git
12614 F:      drivers/media/i2c/ov5670.c
12615
12616 OMNIVISION OV5675 SENSOR DRIVER
12617 M:      Shawn Tu <shawnx.tu@intel.com>
12618 L:      linux-media@vger.kernel.org
12619 S:      Maintained
12620 T:      git git://linuxtv.org/media_tree.git
12621 F:      drivers/media/i2c/ov5675.c
12622
12623 OMNIVISION OV5695 SENSOR DRIVER
12624 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12625 L:      linux-media@vger.kernel.org
12626 S:      Maintained
12627 T:      git git://linuxtv.org/media_tree.git
12628 F:      drivers/media/i2c/ov5695.c
12629
12630 OMNIVISION OV7670 SENSOR DRIVER
12631 M:      Jonathan Corbet <corbet@lwn.net>
12632 L:      linux-media@vger.kernel.org
12633 S:      Maintained
12634 T:      git git://linuxtv.org/media_tree.git
12635 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
12636 F:      drivers/media/i2c/ov7670.c
12637
12638 OMNIVISION OV772x SENSOR DRIVER
12639 M:      Jacopo Mondi <jacopo@jmondi.org>
12640 L:      linux-media@vger.kernel.org
12641 S:      Odd fixes
12642 T:      git git://linuxtv.org/media_tree.git
12643 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
12644 F:      drivers/media/i2c/ov772x.c
12645 F:      include/media/i2c/ov772x.h
12646
12647 OMNIVISION OV7740 SENSOR DRIVER
12648 M:      Wenyou Yang <wenyou.yang@microchip.com>
12649 L:      linux-media@vger.kernel.org
12650 S:      Maintained
12651 T:      git git://linuxtv.org/media_tree.git
12652 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
12653 F:      drivers/media/i2c/ov7740.c
12654
12655 OMNIVISION OV8856 SENSOR DRIVER
12656 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
12657 L:      linux-media@vger.kernel.org
12658 S:      Maintained
12659 T:      git git://linuxtv.org/media_tree.git
12660 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
12661 F:      drivers/media/i2c/ov8856.c
12662
12663 OMNIVISION OV9640 SENSOR DRIVER
12664 M:      Petr Cvek <petrcvekcz@gmail.com>
12665 L:      linux-media@vger.kernel.org
12666 S:      Maintained
12667 F:      drivers/media/i2c/ov9640.*
12668
12669 OMNIVISION OV9650 SENSOR DRIVER
12670 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12671 R:      Akinobu Mita <akinobu.mita@gmail.com>
12672 R:      Sylwester Nawrocki <s.nawrocki@samsung.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/ov9650.txt
12677 F:      drivers/media/i2c/ov9650.c
12678
12679 ONENAND FLASH DRIVER
12680 M:      Kyungmin Park <kyungmin.park@samsung.com>
12681 L:      linux-mtd@lists.infradead.org
12682 S:      Maintained
12683 F:      drivers/mtd/nand/onenand/
12684 F:      include/linux/mtd/onenand*.h
12685
12686 ONION OMEGA2+ BOARD
12687 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
12688 L:      linux-mips@vger.kernel.org
12689 S:      Maintained
12690 F:      arch/mips/boot/dts/ralink/omega2p.dts
12691
12692 OP-TEE DRIVER
12693 M:      Jens Wiklander <jens.wiklander@linaro.org>
12694 L:      tee-dev@lists.linaro.org
12695 S:      Maintained
12696 F:      drivers/tee/optee/
12697
12698 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12699 M:      Sumit Garg <sumit.garg@linaro.org>
12700 L:      tee-dev@lists.linaro.org
12701 S:      Maintained
12702 F:      drivers/char/hw_random/optee-rng.c
12703
12704 OPA-VNIC DRIVER
12705 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
12706 M:      Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
12707 L:      linux-rdma@vger.kernel.org
12708 S:      Supported
12709 F:      drivers/infiniband/ulp/opa_vnic
12710
12711 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12712 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
12713 M:      Frank Rowand <frowand.list@gmail.com>
12714 L:      devicetree@vger.kernel.org
12715 S:      Maintained
12716 F:      Documentation/devicetree/dynamic-resolution-notes.rst
12717 F:      Documentation/devicetree/overlay-notes.rst
12718 F:      drivers/of/overlay.c
12719 F:      drivers/of/resolver.c
12720 K:      of_overlay_notifier_
12721
12722 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12723 M:      Rob Herring <robh+dt@kernel.org>
12724 M:      Frank Rowand <frowand.list@gmail.com>
12725 L:      devicetree@vger.kernel.org
12726 S:      Maintained
12727 W:      http://www.devicetree.org/
12728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12729 F:      Documentation/ABI/testing/sysfs-firmware-ofw
12730 F:      drivers/of/
12731 F:      include/linux/of*.h
12732 F:      scripts/dtc/
12733
12734 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
12735 M:      Rob Herring <robh+dt@kernel.org>
12736 L:      devicetree@vger.kernel.org
12737 S:      Maintained
12738 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
12739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12740 F:      Documentation/devicetree/
12741 F:      arch/*/boot/dts/
12742 F:      include/dt-bindings/
12743
12744 OPENCORES I2C BUS DRIVER
12745 M:      Peter Korsgaard <peter@korsgaard.com>
12746 M:      Andrew Lunn <andrew@lunn.ch>
12747 L:      linux-i2c@vger.kernel.org
12748 S:      Maintained
12749 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
12750 F:      Documentation/i2c/busses/i2c-ocores.rst
12751 F:      drivers/i2c/busses/i2c-ocores.c
12752 F:      include/linux/platform_data/i2c-ocores.h
12753
12754 OPENRISC ARCHITECTURE
12755 M:      Jonas Bonn <jonas@southpole.se>
12756 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
12757 M:      Stafford Horne <shorne@gmail.com>
12758 L:      openrisc@lists.librecores.org
12759 S:      Maintained
12760 W:      http://openrisc.io
12761 T:      git git://github.com/openrisc/linux.git
12762 F:      Documentation/devicetree/bindings/openrisc/
12763 F:      Documentation/openrisc/
12764 F:      arch/openrisc/
12765 F:      drivers/irqchip/irq-ompic.c
12766 F:      drivers/irqchip/irq-or1k-*
12767
12768 OPENVSWITCH
12769 M:      Pravin B Shelar <pshelar@ovn.org>
12770 L:      netdev@vger.kernel.org
12771 L:      dev@openvswitch.org
12772 S:      Maintained
12773 W:      http://openvswitch.org
12774 F:      include/uapi/linux/openvswitch.h
12775 F:      net/openvswitch/
12776
12777 OPERATING PERFORMANCE POINTS (OPP)
12778 M:      Viresh Kumar <vireshk@kernel.org>
12779 M:      Nishanth Menon <nm@ti.com>
12780 M:      Stephen Boyd <sboyd@kernel.org>
12781 L:      linux-pm@vger.kernel.org
12782 S:      Maintained
12783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
12784 F:      Documentation/devicetree/bindings/opp/
12785 F:      Documentation/power/opp.rst
12786 F:      drivers/opp/
12787 F:      include/linux/pm_opp.h
12788
12789 OPL4 DRIVER
12790 M:      Clemens Ladisch <clemens@ladisch.de>
12791 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12792 S:      Maintained
12793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12794 F:      sound/drivers/opl4/
12795
12796 OPROFILE
12797 M:      Robert Richter <rric@kernel.org>
12798 L:      oprofile-list@lists.sf.net
12799 S:      Maintained
12800 F:      arch/*/include/asm/oprofile*.h
12801 F:      arch/*/oprofile/
12802 F:      drivers/oprofile/
12803 F:      include/linux/oprofile.h
12804
12805 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
12806 M:      Mark Fasheh <mark@fasheh.com>
12807 M:      Joel Becker <jlbec@evilplan.org>
12808 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
12809 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
12810 S:      Supported
12811 W:      http://ocfs2.wiki.kernel.org
12812 F:      Documentation/filesystems/dlmfs.rst
12813 F:      Documentation/filesystems/ocfs2.rst
12814 F:      fs/ocfs2/
12815
12816 ORANGEFS FILESYSTEM
12817 M:      Mike Marshall <hubcap@omnibond.com>
12818 R:      Martin Brandenburg <martin@omnibond.com>
12819 L:      devel@lists.orangefs.org
12820 S:      Supported
12821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
12822 F:      Documentation/filesystems/orangefs.rst
12823 F:      fs/orangefs/
12824
12825 ORINOCO DRIVER
12826 L:      linux-wireless@vger.kernel.org
12827 S:      Orphan
12828 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
12829 W:      http://www.nongnu.org/orinoco/
12830 F:      drivers/net/wireless/intersil/orinoco/
12831
12832 OV2659 OMNIVISION SENSOR DRIVER
12833 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12834 L:      linux-media@vger.kernel.org
12835 S:      Maintained
12836 W:      https://linuxtv.org
12837 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12838 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12839 F:      drivers/media/i2c/ov2659.c
12840 F:      include/media/i2c/ov2659.h
12841
12842 OVERLAY FILESYSTEM
12843 M:      Miklos Szeredi <miklos@szeredi.hu>
12844 L:      linux-unionfs@vger.kernel.org
12845 S:      Supported
12846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
12847 F:      Documentation/filesystems/overlayfs.rst
12848 F:      fs/overlayfs/
12849
12850 P54 WIRELESS DRIVER
12851 M:      Christian Lamparter <chunkeey@googlemail.com>
12852 L:      linux-wireless@vger.kernel.org
12853 S:      Maintained
12854 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
12855 F:      drivers/net/wireless/intersil/p54/
12856
12857 PACKING
12858 M:      Vladimir Oltean <olteanv@gmail.com>
12859 L:      netdev@vger.kernel.org
12860 S:      Supported
12861 F:      Documentation/core-api/packing.rst
12862 F:      include/linux/packing.h
12863 F:      lib/packing.c
12864
12865 PADATA PARALLEL EXECUTION MECHANISM
12866 M:      Steffen Klassert <steffen.klassert@secunet.com>
12867 L:      linux-crypto@vger.kernel.org
12868 S:      Maintained
12869 F:      Documentation/core-api/padata.rst
12870 F:      include/linux/padata.h
12871 F:      kernel/padata.c
12872
12873 PAGE POOL
12874 M:      Jesper Dangaard Brouer <hawk@kernel.org>
12875 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
12876 L:      netdev@vger.kernel.org
12877 S:      Supported
12878 F:      include/net/page_pool.h
12879 F:      net/core/page_pool.c
12880
12881 PANASONIC LAPTOP ACPI EXTRAS DRIVER
12882 M:      Harald Welte <laforge@gnumonks.org>
12883 L:      platform-driver-x86@vger.kernel.org
12884 S:      Maintained
12885 F:      drivers/platform/x86/panasonic-laptop.c
12886
12887 PARALLAX PING IIO SENSOR DRIVER
12888 M:      Andreas Klinger <ak@it-klinger.de>
12889 L:      linux-iio@vger.kernel.org
12890 S:      Maintained
12891 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
12892 F:      drivers/iio/proximity/ping.c
12893
12894 PARALLEL LCD/KEYPAD PANEL DRIVER
12895 M:      Willy Tarreau <willy@haproxy.com>
12896 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
12897 S:      Odd Fixes
12898 F:      Documentation/admin-guide/lcd-panel-cgram.rst
12899 F:      drivers/auxdisplay/panel.c
12900
12901 PARALLEL PORT SUBSYSTEM
12902 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12903 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12904 L:      linux-parport@lists.infradead.org (subscribers-only)
12905 S:      Maintained
12906 F:      Documentation/driver-api/parport*.rst
12907 F:      drivers/char/ppdev.c
12908 F:      drivers/parport/
12909 F:      include/linux/parport*.h
12910 F:      include/uapi/linux/ppdev.h
12911
12912 PARAVIRT_OPS INTERFACE
12913 M:      Juergen Gross <jgross@suse.com>
12914 M:      Deep Shah <sdeep@vmware.com>
12915 M:      "VMware, Inc." <pv-drivers@vmware.com>
12916 L:      virtualization@lists.linux-foundation.org
12917 S:      Supported
12918 F:      Documentation/virt/paravirt_ops.rst
12919 F:      arch/*/include/asm/paravirt*.h
12920 F:      arch/*/kernel/paravirt*
12921 F:      include/linux/hypervisor.h
12922
12923 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
12924 M:      Tim Waugh <tim@cyberelk.net>
12925 L:      linux-parport@lists.infradead.org (subscribers-only)
12926 S:      Maintained
12927 F:      Documentation/admin-guide/blockdev/paride.rst
12928 F:      drivers/block/paride/
12929
12930 PARISC ARCHITECTURE
12931 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
12932 M:      Helge Deller <deller@gmx.de>
12933 L:      linux-parisc@vger.kernel.org
12934 S:      Maintained
12935 W:      https://parisc.wiki.kernel.org
12936 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
12937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
12938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
12939 F:      Documentation/parisc/
12940 F:      arch/parisc/
12941 F:      drivers/char/agp/parisc-agp.c
12942 F:      drivers/input/misc/hp_sdc_rtc.c
12943 F:      drivers/input/serio/gscps2.c
12944 F:      drivers/input/serio/hp_sdc*
12945 F:      drivers/parisc/
12946 F:      drivers/parport/parport_gsc.*
12947 F:      drivers/tty/serial/8250/8250_gsc.c
12948 F:      drivers/video/console/sti*
12949 F:      drivers/video/fbdev/sti*
12950 F:      drivers/video/logo/logo_parisc*
12951 F:      include/linux/hp_sdc.h
12952
12953 PARMAN
12954 M:      Jiri Pirko <jiri@mellanox.com>
12955 L:      netdev@vger.kernel.org
12956 S:      Supported
12957 F:      include/linux/parman.h
12958 F:      lib/parman.c
12959 F:      lib/test_parman.c
12960
12961 PC ENGINES APU BOARD DRIVER
12962 M:      Enrico Weigelt, metux IT consult <info@metux.net>
12963 S:      Maintained
12964 F:      drivers/platform/x86/pcengines-apuv2.c
12965
12966 PC87360 HARDWARE MONITORING DRIVER
12967 M:      Jim Cromie <jim.cromie@gmail.com>
12968 L:      linux-hwmon@vger.kernel.org
12969 S:      Maintained
12970 F:      Documentation/hwmon/pc87360.rst
12971 F:      drivers/hwmon/pc87360.c
12972
12973 PC8736x GPIO DRIVER
12974 M:      Jim Cromie <jim.cromie@gmail.com>
12975 S:      Maintained
12976 F:      drivers/char/pc8736x_gpio.c
12977
12978 PC87427 HARDWARE MONITORING DRIVER
12979 M:      Jean Delvare <jdelvare@suse.com>
12980 L:      linux-hwmon@vger.kernel.org
12981 S:      Maintained
12982 F:      Documentation/hwmon/pc87427.rst
12983 F:      drivers/hwmon/pc87427.c
12984
12985 PCA9532 LED DRIVER
12986 M:      Riku Voipio <riku.voipio@iki.fi>
12987 S:      Maintained
12988 F:      drivers/leds/leds-pca9532.c
12989 F:      include/linux/leds-pca9532.h
12990
12991 PCA9541 I2C BUS MASTER SELECTOR DRIVER
12992 M:      Guenter Roeck <linux@roeck-us.net>
12993 L:      linux-i2c@vger.kernel.org
12994 S:      Maintained
12995 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
12996
12997 PCDP - PRIMARY CONSOLE AND DEBUG PORT
12998 M:      Khalid Aziz <khalid@gonehiking.org>
12999 S:      Maintained
13000 F:      drivers/firmware/pcdp.*
13001
13002 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
13003 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13004 L:      linux-pci@vger.kernel.org
13005 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13006 S:      Maintained
13007 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
13008 F:      drivers/pci/controller/pci-aardvark.c
13009
13010 PCI DRIVER FOR ALTERA PCIE IP
13011 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13012 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13013 L:      linux-pci@vger.kernel.org
13014 S:      Supported
13015 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
13016 F:      drivers/pci/controller/pcie-altera.c
13017
13018 PCI DRIVER FOR APPLIEDMICRO XGENE
13019 M:      Toan Le <toan@os.amperecomputing.com>
13020 L:      linux-pci@vger.kernel.org
13021 L:      linux-arm-kernel@lists.infradead.org
13022 S:      Maintained
13023 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
13024 F:      drivers/pci/controller/pci-xgene.c
13025
13026 PCI DRIVER FOR ARM VERSATILE PLATFORM
13027 M:      Rob Herring <robh@kernel.org>
13028 L:      linux-pci@vger.kernel.org
13029 L:      linux-arm-kernel@lists.infradead.org
13030 S:      Maintained
13031 F:      Documentation/devicetree/bindings/pci/versatile.yaml
13032 F:      drivers/pci/controller/pci-versatile.c
13033
13034 PCI DRIVER FOR ARMADA 8K
13035 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.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/pci-armada8k.txt
13040 F:      drivers/pci/controller/dwc/pcie-armada8k.c
13041
13042 PCI DRIVER FOR CADENCE PCIE IP
13043 M:      Tom Joseph <tjoseph@cadence.com>
13044 L:      linux-pci@vger.kernel.org
13045 S:      Maintained
13046 F:      Documentation/devicetree/bindings/pci/cdns,*
13047 F:      drivers/pci/controller/cadence/
13048
13049 PCI DRIVER FOR FREESCALE LAYERSCAPE
13050 M:      Minghuan Lian <minghuan.Lian@nxp.com>
13051 M:      Mingkai Hu <mingkai.hu@nxp.com>
13052 M:      Roy Zang <roy.zang@nxp.com>
13053 L:      linuxppc-dev@lists.ozlabs.org
13054 L:      linux-pci@vger.kernel.org
13055 L:      linux-arm-kernel@lists.infradead.org
13056 S:      Maintained
13057 F:      drivers/pci/controller/dwc/*layerscape*
13058
13059 PCI DRIVER FOR GENERIC OF HOSTS
13060 M:      Will Deacon <will@kernel.org>
13061 L:      linux-pci@vger.kernel.org
13062 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13063 S:      Maintained
13064 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13065 F:      drivers/pci/controller/pci-host-common.c
13066 F:      drivers/pci/controller/pci-host-generic.c
13067
13068 PCI DRIVER FOR IMX6
13069 M:      Richard Zhu <hongxing.zhu@nxp.com>
13070 M:      Lucas Stach <l.stach@pengutronix.de>
13071 L:      linux-pci@vger.kernel.org
13072 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13073 S:      Maintained
13074 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
13075 F:      drivers/pci/controller/dwc/*imx6*
13076
13077 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13078 M:      Jonathan Derrick <jonathan.derrick@intel.com>
13079 L:      linux-pci@vger.kernel.org
13080 S:      Supported
13081 F:      drivers/pci/controller/vmd.c
13082
13083 PCI DRIVER FOR MICROSEMI SWITCHTEC
13084 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
13085 M:      Logan Gunthorpe <logang@deltatee.com>
13086 L:      linux-pci@vger.kernel.org
13087 S:      Maintained
13088 F:      Documentation/ABI/testing/sysfs-class-switchtec
13089 F:      Documentation/driver-api/switchtec.rst
13090 F:      drivers/ntb/hw/mscc/
13091 F:      drivers/pci/switch/switchtec*
13092 F:      include/linux/switchtec.h
13093 F:      include/uapi/linux/switchtec_ioctl.h
13094
13095 PCI DRIVER FOR MOBIVEIL PCIE IP
13096 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
13097 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13098 L:      linux-pci@vger.kernel.org
13099 S:      Supported
13100 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
13101 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
13102
13103 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
13104 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13105 M:      Jason Cooper <jason@lakedaemon.net>
13106 L:      linux-pci@vger.kernel.org
13107 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13108 S:      Maintained
13109 F:      drivers/pci/controller/*mvebu*
13110
13111 PCI DRIVER FOR NVIDIA TEGRA
13112 M:      Thierry Reding <thierry.reding@gmail.com>
13113 L:      linux-tegra@vger.kernel.org
13114 L:      linux-pci@vger.kernel.org
13115 S:      Supported
13116 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
13117 F:      drivers/pci/controller/pci-tegra.c
13118
13119 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13120 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13121 L:      linux-pci@vger.kernel.org
13122 L:      linux-arm-kernel@lists.infradead.org
13123 S:      Maintained
13124 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13125 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
13126
13127 PCI DRIVER FOR RENESAS R-CAR
13128 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
13129 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13130 L:      linux-pci@vger.kernel.org
13131 L:      linux-renesas-soc@vger.kernel.org
13132 S:      Maintained
13133 F:      Documentation/devicetree/bindings/pci/*rcar*
13134 F:      drivers/pci/controller/*rcar*
13135
13136 PCI DRIVER FOR SAMSUNG EXYNOS
13137 M:      Jingoo Han <jingoohan1@gmail.com>
13138 L:      linux-pci@vger.kernel.org
13139 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13140 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13141 S:      Maintained
13142 F:      drivers/pci/controller/dwc/pci-exynos.c
13143
13144 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13145 M:      Jingoo Han <jingoohan1@gmail.com>
13146 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
13147 L:      linux-pci@vger.kernel.org
13148 S:      Maintained
13149 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
13150 F:      drivers/pci/controller/dwc/*designware*
13151
13152 PCI DRIVER FOR TI DRA7XX
13153 M:      Kishon Vijay Abraham I <kishon@ti.com>
13154 L:      linux-omap@vger.kernel.org
13155 L:      linux-pci@vger.kernel.org
13156 S:      Supported
13157 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
13158 F:      drivers/pci/controller/dwc/pci-dra7xx.c
13159
13160 PCI DRIVER FOR TI KEYSTONE
13161 M:      Murali Karicheri <m-karicheri2@ti.com>
13162 L:      linux-pci@vger.kernel.org
13163 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13164 S:      Maintained
13165 F:      drivers/pci/controller/dwc/pci-keystone.c
13166
13167 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13168 M:      Linus Walleij <linus.walleij@linaro.org>
13169 L:      linux-pci@vger.kernel.org
13170 S:      Maintained
13171 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13172 F:      drivers/pci/controller/pci-v3-semi.c
13173
13174 PCI ENDPOINT SUBSYSTEM
13175 M:      Kishon Vijay Abraham I <kishon@ti.com>
13176 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13177 L:      linux-pci@vger.kernel.org
13178 S:      Supported
13179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13180 F:      drivers/misc/pci_endpoint_test.c
13181 F:      drivers/pci/endpoint/
13182 F:      tools/pci/
13183
13184 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13185 M:      Russell Currey <ruscur@russell.cc>
13186 M:      Sam Bobroff <sbobroff@linux.ibm.com>
13187 M:      Oliver O'Halloran <oohall@gmail.com>
13188 L:      linuxppc-dev@lists.ozlabs.org
13189 S:      Supported
13190 F:      Documentation/PCI/pci-error-recovery.rst
13191 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
13192 F:      arch/powerpc/include/*/eeh*.h
13193 F:      arch/powerpc/kernel/eeh*.c
13194 F:      arch/powerpc/platforms/*/eeh*.c
13195 F:      drivers/pci/pcie/aer.c
13196 F:      drivers/pci/pcie/dpc.c
13197 F:      drivers/pci/pcie/err.c
13198
13199 PCI ERROR RECOVERY
13200 M:      Linas Vepstas <linasvepstas@gmail.com>
13201 L:      linux-pci@vger.kernel.org
13202 S:      Supported
13203 F:      Documentation/PCI/pci-error-recovery.rst
13204
13205 PCI MSI DRIVER FOR ALTERA MSI IP
13206 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13207 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13208 L:      linux-pci@vger.kernel.org
13209 S:      Supported
13210 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13211 F:      drivers/pci/controller/pcie-altera-msi.c
13212
13213 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13214 M:      Toan Le <toan@os.amperecomputing.com>
13215 L:      linux-pci@vger.kernel.org
13216 L:      linux-arm-kernel@lists.infradead.org
13217 S:      Maintained
13218 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13219 F:      drivers/pci/controller/pci-xgene-msi.c
13220
13221 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13222 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13223 R:      Rob Herring <robh@kernel.org>
13224 L:      linux-pci@vger.kernel.org
13225 S:      Supported
13226 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13228 F:      drivers/pci/controller/
13229
13230 PCI SUBSYSTEM
13231 M:      Bjorn Helgaas <bhelgaas@google.com>
13232 L:      linux-pci@vger.kernel.org
13233 S:      Supported
13234 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13236 F:      Documentation/PCI/
13237 F:      Documentation/devicetree/bindings/pci/
13238 F:      arch/x86/kernel/early-quirks.c
13239 F:      arch/x86/kernel/quirks.c
13240 F:      arch/x86/pci/
13241 F:      drivers/acpi/pci*
13242 F:      drivers/pci/
13243 F:      include/asm-generic/pci*
13244 F:      include/linux/of_pci.h
13245 F:      include/linux/pci*
13246 F:      include/uapi/linux/pci*
13247 F:      lib/pci*
13248
13249 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13250 M:      Jonathan Chocron <jonnyc@amazon.com>
13251 L:      linux-pci@vger.kernel.org
13252 S:      Maintained
13253 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13254 F:      drivers/pci/controller/dwc/pcie-al.c
13255
13256 PCIE DRIVER FOR AMLOGIC MESON
13257 M:      Yue Wang <yue.wang@Amlogic.com>
13258 L:      linux-pci@vger.kernel.org
13259 L:      linux-amlogic@lists.infradead.org
13260 S:      Maintained
13261 F:      drivers/pci/controller/dwc/pci-meson.c
13262
13263 PCIE DRIVER FOR AXIS ARTPEC
13264 M:      Jesper Nilsson <jesper.nilsson@axis.com>
13265 L:      linux-arm-kernel@axis.com
13266 L:      linux-pci@vger.kernel.org
13267 S:      Maintained
13268 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13269 F:      drivers/pci/controller/dwc/*artpec*
13270
13271 PCIE DRIVER FOR CAVIUM THUNDERX
13272 M:      Robert Richter <rrichter@marvell.com>
13273 L:      linux-pci@vger.kernel.org
13274 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13275 S:      Supported
13276 F:      drivers/pci/controller/pci-thunder-*
13277
13278 PCIE DRIVER FOR HISILICON
13279 M:      Zhou Wang <wangzhou1@hisilicon.com>
13280 L:      linux-pci@vger.kernel.org
13281 S:      Maintained
13282 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13283 F:      drivers/pci/controller/dwc/pcie-hisi.c
13284
13285 PCIE DRIVER FOR HISILICON KIRIN
13286 M:      Xiaowei Song <songxiaowei@hisilicon.com>
13287 M:      Binghui Wang <wangbinghui@hisilicon.com>
13288 L:      linux-pci@vger.kernel.org
13289 S:      Maintained
13290 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13291 F:      drivers/pci/controller/dwc/pcie-kirin.c
13292
13293 PCIE DRIVER FOR HISILICON STB
13294 M:      Shawn Guo <shawn.guo@linaro.org>
13295 L:      linux-pci@vger.kernel.org
13296 S:      Maintained
13297 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13298 F:      drivers/pci/controller/dwc/pcie-histb.c
13299
13300 PCIE DRIVER FOR MEDIATEK
13301 M:      Ryder Lee <ryder.lee@mediatek.com>
13302 L:      linux-pci@vger.kernel.org
13303 L:      linux-mediatek@lists.infradead.org
13304 S:      Supported
13305 F:      Documentation/devicetree/bindings/pci/mediatek*
13306 F:      drivers/pci/controller/*mediatek*
13307
13308 PCIE DRIVER FOR QUALCOMM MSM
13309 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
13310 L:      linux-pci@vger.kernel.org
13311 L:      linux-arm-msm@vger.kernel.org
13312 S:      Maintained
13313 F:      drivers/pci/controller/dwc/*qcom*
13314
13315 PCIE DRIVER FOR ROCKCHIP
13316 M:      Shawn Lin <shawn.lin@rock-chips.com>
13317 L:      linux-pci@vger.kernel.org
13318 L:      linux-rockchip@lists.infradead.org
13319 S:      Maintained
13320 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13321 F:      drivers/pci/controller/pcie-rockchip*
13322
13323 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13324 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
13325 L:      linux-pci@vger.kernel.org
13326 S:      Maintained
13327 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
13328 F:      drivers/pci/controller/dwc/pcie-uniphier*
13329
13330 PCIE DRIVER FOR ST SPEAR13XX
13331 M:      Pratyush Anand <pratyush.anand@gmail.com>
13332 L:      linux-pci@vger.kernel.org
13333 S:      Maintained
13334 F:      drivers/pci/controller/dwc/*spear*
13335
13336 PCMCIA SUBSYSTEM
13337 M:      Dominik Brodowski <linux@dominikbrodowski.net>
13338 S:      Odd Fixes
13339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13340 F:      Documentation/pcmcia/
13341 F:      drivers/pcmcia/
13342 F:      include/pcmcia/
13343 F:      tools/pcmcia/
13344
13345 PCNET32 NETWORK DRIVER
13346 M:      Don Fry <pcnet32@frontier.com>
13347 L:      netdev@vger.kernel.org
13348 S:      Maintained
13349 F:      drivers/net/ethernet/amd/pcnet32.c
13350
13351 PCRYPT PARALLEL CRYPTO ENGINE
13352 M:      Steffen Klassert <steffen.klassert@secunet.com>
13353 L:      linux-crypto@vger.kernel.org
13354 S:      Maintained
13355 F:      crypto/pcrypt.c
13356 F:      include/crypto/pcrypt.h
13357
13358 PEAQ WMI HOTKEYS DRIVER
13359 M:      Hans de Goede <hdegoede@redhat.com>
13360 L:      platform-driver-x86@vger.kernel.org
13361 S:      Maintained
13362 F:      drivers/platform/x86/peaq-wmi.c
13363
13364 PENSANDO ETHERNET DRIVERS
13365 M:      Shannon Nelson <snelson@pensando.io>
13366 M:      Pensando Drivers <drivers@pensando.io>
13367 L:      netdev@vger.kernel.org
13368 S:      Supported
13369 F:      Documentation/networking/device_drivers/pensando/ionic.rst
13370 F:      drivers/net/ethernet/pensando/
13371
13372 PER-CPU MEMORY ALLOCATOR
13373 M:      Dennis Zhou <dennis@kernel.org>
13374 M:      Tejun Heo <tj@kernel.org>
13375 M:      Christoph Lameter <cl@linux.com>
13376 S:      Maintained
13377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13378 F:      arch/*/include/asm/percpu.h
13379 F:      include/linux/percpu*.h
13380 F:      mm/percpu*.c
13381
13382 PER-TASK DELAY ACCOUNTING
13383 M:      Balbir Singh <bsingharora@gmail.com>
13384 S:      Maintained
13385 F:      include/linux/delayacct.h
13386 F:      kernel/delayacct.c
13387
13388 PERFORMANCE EVENTS SUBSYSTEM
13389 M:      Peter Zijlstra <peterz@infradead.org>
13390 M:      Ingo Molnar <mingo@redhat.com>
13391 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
13392 R:      Mark Rutland <mark.rutland@arm.com>
13393 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
13394 R:      Jiri Olsa <jolsa@redhat.com>
13395 R:      Namhyung Kim <namhyung@kernel.org>
13396 L:      linux-kernel@vger.kernel.org
13397 S:      Supported
13398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13399 F:      arch/*/events/*
13400 F:      arch/*/events/*/*
13401 F:      arch/*/include/asm/perf_event.h
13402 F:      arch/*/kernel/*/*/perf_event*.c
13403 F:      arch/*/kernel/*/perf_event*.c
13404 F:      arch/*/kernel/perf_callchain.c
13405 F:      arch/*/kernel/perf_event*.c
13406 F:      include/linux/perf_event.h
13407 F:      include/uapi/linux/perf_event.h
13408 F:      kernel/events/*
13409 F:      tools/perf/
13410
13411 PERFORMANCE EVENTS SUBSYSTEM ARM64 PMU EVENTS
13412 R:      John Garry <john.garry@huawei.com>
13413 R:      Will Deacon <will@kernel.org>
13414 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13415 S:      Supported
13416 F:      tools/perf/pmu-events/arch/arm64/
13417
13418 PERSONALITY HANDLING
13419 M:      Christoph Hellwig <hch@infradead.org>
13420 L:      linux-abi-devel@lists.sourceforge.net
13421 S:      Maintained
13422 F:      include/linux/personality.h
13423 F:      include/uapi/linux/personality.h
13424
13425 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13426 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13427 L:      linux-input@vger.kernel.org
13428 S:      Maintained
13429 F:      Documentation/input/devices/pxrc.rst
13430 F:      drivers/input/joystick/pxrc.c
13431
13432 PHONET PROTOCOL
13433 M:      Remi Denis-Courmont <courmisch@gmail.com>
13434 S:      Supported
13435 F:      Documentation/networking/phonet.rst
13436 F:      include/linux/phonet.h
13437 F:      include/net/phonet/
13438 F:      include/uapi/linux/phonet.h
13439 F:      net/phonet/
13440
13441 PHRAM MTD DRIVER
13442 M:      Joern Engel <joern@lazybastard.org>
13443 L:      linux-mtd@lists.infradead.org
13444 S:      Maintained
13445 F:      drivers/mtd/devices/phram.c
13446
13447 PICOLCD HID DRIVER
13448 M:      Bruno Prémont <bonbons@linux-vserver.org>
13449 L:      linux-input@vger.kernel.org
13450 S:      Maintained
13451 F:      drivers/hid/hid-picolcd*
13452
13453 PICOXCELL SUPPORT
13454 M:      Jamie Iles <jamie@jamieiles.com>
13455 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13456 S:      Supported
13457 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13458 F:      arch/arm/boot/dts/picoxcell*
13459 F:      arch/arm/mach-picoxcell/
13460 F:      drivers/crypto/picoxcell*
13461
13462 PIDFD API
13463 M:      Christian Brauner <christian@brauner.io>
13464 L:      linux-kernel@vger.kernel.org
13465 S:      Maintained
13466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13467 F:      samples/pidfd/
13468 F:      tools/testing/selftests/clone3/
13469 F:      tools/testing/selftests/pid_namespace/
13470 F:      tools/testing/selftests/pidfd/
13471 K:      (?i)pidfd
13472 K:      (?i)clone3
13473 K:      \b(clone_args|kernel_clone_args)\b
13474
13475 PIN CONTROL SUBSYSTEM
13476 M:      Linus Walleij <linus.walleij@linaro.org>
13477 L:      linux-gpio@vger.kernel.org
13478 S:      Maintained
13479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13480 F:      Documentation/devicetree/bindings/pinctrl/
13481 F:      Documentation/driver-api/pinctl.rst
13482 F:      drivers/pinctrl/
13483 F:      include/linux/pinctrl/
13484
13485 PIN CONTROLLER - FREESCALE
13486 M:      Dong Aisheng <aisheng.dong@nxp.com>
13487 M:      Fabio Estevam <festevam@gmail.com>
13488 M:      Shawn Guo <shawnguo@kernel.org>
13489 M:      Stefan Agner <stefan@agner.ch>
13490 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
13491 L:      linux-gpio@vger.kernel.org
13492 S:      Maintained
13493 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13494 F:      drivers/pinctrl/freescale/
13495
13496 PIN CONTROLLER - INTEL
13497 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13498 M:      Andy Shevchenko <andy@kernel.org>
13499 S:      Maintained
13500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13501 F:      drivers/pinctrl/intel/
13502
13503 PIN CONTROLLER - MEDIATEK
13504 M:      Sean Wang <sean.wang@kernel.org>
13505 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13506 S:      Maintained
13507 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13508 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13509 F:      drivers/pinctrl/mediatek/
13510
13511 PIN CONTROLLER - MICROCHIP AT91
13512 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13513 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13514 L:      linux-gpio@vger.kernel.org
13515 S:      Supported
13516 F:      drivers/gpio/gpio-sama5d2-piobu.c
13517 F:      drivers/pinctrl/pinctrl-at91*
13518
13519 PIN CONTROLLER - QUALCOMM
13520 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13521 L:      linux-arm-msm@vger.kernel.org
13522 S:      Maintained
13523 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
13524 F:      drivers/pinctrl/qcom/
13525
13526 PIN CONTROLLER - RENESAS
13527 M:      Geert Uytterhoeven <geert+renesas@glider.be>
13528 L:      linux-renesas-soc@vger.kernel.org
13529 S:      Supported
13530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
13531 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
13532 F:      drivers/pinctrl/pinctrl-rz*
13533 F:      drivers/pinctrl/sh-pfc/
13534
13535 PIN CONTROLLER - SAMSUNG
13536 M:      Tomasz Figa <tomasz.figa@gmail.com>
13537 M:      Krzysztof Kozlowski <krzk@kernel.org>
13538 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13539 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13540 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13541 S:      Maintained
13542 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
13543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
13544 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
13545 F:      drivers/pinctrl/samsung/
13546 F:      include/dt-bindings/pinctrl/samsung.h
13547
13548 PIN CONTROLLER - SINGLE
13549 M:      Tony Lindgren <tony@atomide.com>
13550 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
13551 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13552 L:      linux-omap@vger.kernel.org
13553 S:      Maintained
13554 F:      drivers/pinctrl/pinctrl-single.c
13555
13556 PIN CONTROLLER - ST SPEAR
13557 M:      Viresh Kumar <vireshk@kernel.org>
13558 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13559 S:      Maintained
13560 W:      http://www.st.com/spear
13561 F:      drivers/pinctrl/spear/
13562
13563 PISTACHIO SOC SUPPORT
13564 M:      James Hartley <james.hartley@sondrel.com>
13565 L:      linux-mips@vger.kernel.org
13566 S:      Odd Fixes
13567 F:      arch/mips/boot/dts/img/pistachio*
13568 F:      arch/mips/configs/pistachio*_defconfig
13569 F:      arch/mips/include/asm/mach-pistachio/
13570 F:      arch/mips/pistachio/
13571
13572 PKTCDVD DRIVER
13573 M:      linux-block@vger.kernel.org
13574 S:      Orphan
13575 F:      drivers/block/pktcdvd.c
13576 F:      include/linux/pktcdvd.h
13577 F:      include/uapi/linux/pktcdvd.h
13578
13579 PKUNITY SOC DRIVERS
13580 M:      Guan Xuetao <gxt@pku.edu.cn>
13581 S:      Maintained
13582 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
13583 T:      git git://github.com/gxt/linux.git
13584 F:      drivers/i2c/busses/i2c-puv3.c
13585 F:      drivers/input/serio/i8042-unicore32io.h
13586 F:      drivers/rtc/rtc-puv3.c
13587 F:      drivers/video/fbdev/fb-puv3.c
13588
13589 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
13590 M:      Tomasz Duszynski <tduszyns@gmail.com>
13591 S:      Maintained
13592 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
13593 F:      drivers/iio/chemical/pms7003.c
13594
13595 PLX DMA DRIVER
13596 M:      Logan Gunthorpe <logang@deltatee.com>
13597 S:      Maintained
13598 F:      drivers/dma/plx_dma.c
13599
13600 PM-GRAPH UTILITY
13601 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
13602 L:      linux-pm@vger.kernel.org
13603 S:      Supported
13604 W:      https://01.org/pm-graph
13605 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
13606 T:      git git://github.com/intel/pm-graph
13607 F:      tools/power/pm-graph
13608
13609 PMBUS HARDWARE MONITORING DRIVERS
13610 M:      Guenter Roeck <linux@roeck-us.net>
13611 L:      linux-hwmon@vger.kernel.org
13612 S:      Maintained
13613 W:      http://hwmon.wiki.kernel.org/
13614 W:      http://www.roeck-us.net/linux/drivers/
13615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
13616 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
13617 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
13618 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
13619 F:      Documentation/hwmon/adm1275.rst
13620 F:      Documentation/hwmon/ibm-cffps.rst
13621 F:      Documentation/hwmon/ir35221.rst
13622 F:      Documentation/hwmon/lm25066.rst
13623 F:      Documentation/hwmon/ltc2978.rst
13624 F:      Documentation/hwmon/ltc3815.rst
13625 F:      Documentation/hwmon/max16064.rst
13626 F:      Documentation/hwmon/max20751.rst
13627 F:      Documentation/hwmon/max31785.rst
13628 F:      Documentation/hwmon/max34440.rst
13629 F:      Documentation/hwmon/max8688.rst
13630 F:      Documentation/hwmon/pmbus-core.rst
13631 F:      Documentation/hwmon/pmbus.rst
13632 F:      Documentation/hwmon/tps40422.rst
13633 F:      Documentation/hwmon/ucd9000.rst
13634 F:      Documentation/hwmon/ucd9200.rst
13635 F:      Documentation/hwmon/zl6100.rst
13636 F:      drivers/hwmon/pmbus/
13637 F:      include/linux/pmbus.h
13638
13639 PMC SIERRA MaxRAID DRIVER
13640 L:      linux-scsi@vger.kernel.org
13641 S:      Orphan
13642 W:      http://www.pmc-sierra.com/
13643 F:      drivers/scsi/pmcraid.*
13644
13645 PMC SIERRA PM8001 DRIVER
13646 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
13647 L:      linux-scsi@vger.kernel.org
13648 S:      Supported
13649 F:      drivers/scsi/pm8001/
13650
13651 PNI RM3100 IIO DRIVER
13652 M:      Song Qiang <songqiang1304521@gmail.com>
13653 L:      linux-iio@vger.kernel.org
13654 S:      Maintained
13655 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
13656 F:      drivers/iio/magnetometer/rm3100*
13657
13658 PNP SUPPORT
13659 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
13660 L:      linux-acpi@vger.kernel.org
13661 S:      Maintained
13662 F:      drivers/pnp/
13663 F:      include/linux/pnp.h
13664
13665 POSIX CLOCKS and TIMERS
13666 M:      Thomas Gleixner <tglx@linutronix.de>
13667 L:      linux-kernel@vger.kernel.org
13668 S:      Maintained
13669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13670 F:      fs/timerfd.c
13671 F:      include/linux/time_namespace.h
13672 F:      include/linux/timer*
13673 F:      kernel/time/*timer*
13674 F:      kernel/time/namespace.c
13675
13676 POWER MANAGEMENT CORE
13677 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
13678 L:      linux-pm@vger.kernel.org
13679 S:      Supported
13680 B:      https://bugzilla.kernel.org
13681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
13682 F:      drivers/base/power/
13683 F:      drivers/powercap/
13684 F:      include/linux/intel_rapl.h
13685 F:      include/linux/pm.h
13686 F:      include/linux/pm_*
13687 F:      include/linux/powercap.h
13688 F:      kernel/configs/nopm.config
13689
13690 POWER STATE COORDINATION INTERFACE (PSCI)
13691 M:      Mark Rutland <mark.rutland@arm.com>
13692 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13693 L:      linux-arm-kernel@lists.infradead.org
13694 S:      Maintained
13695 F:      drivers/firmware/psci/
13696 F:      include/linux/psci.h
13697 F:      include/uapi/linux/psci.h
13698
13699 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
13700 M:      Sebastian Reichel <sre@kernel.org>
13701 L:      linux-pm@vger.kernel.org
13702 S:      Maintained
13703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13704 F:      Documentation/ABI/testing/sysfs-class-power
13705 F:      Documentation/devicetree/bindings/power/supply/
13706 F:      drivers/power/supply/
13707 F:      include/linux/power_supply.h
13708
13709 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
13710 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
13711 L:      linuxppc-dev@lists.ozlabs.org
13712 S:      Maintained
13713 F:      drivers/char/powernv-op-panel.c
13714
13715 PPP OVER ATM (RFC 2364)
13716 M:      Mitchell Blank Jr <mitch@sfgoth.com>
13717 S:      Maintained
13718 F:      include/uapi/linux/atmppp.h
13719 F:      net/atm/pppoatm.c
13720
13721 PPP OVER ETHERNET
13722 M:      Michal Ostrowski <mostrows@earthlink.net>
13723 S:      Maintained
13724 F:      drivers/net/ppp/pppoe.c
13725 F:      drivers/net/ppp/pppox.c
13726
13727 PPP OVER L2TP
13728 M:      James Chapman <jchapman@katalix.com>
13729 S:      Maintained
13730 F:      include/linux/if_pppol2tp.h
13731 F:      include/uapi/linux/if_pppol2tp.h
13732 F:      net/l2tp/l2tp_ppp.c
13733
13734 PPP PROTOCOL DRIVERS AND COMPRESSORS
13735 M:      Paul Mackerras <paulus@samba.org>
13736 L:      linux-ppp@vger.kernel.org
13737 S:      Maintained
13738 F:      drivers/net/ppp/ppp_*
13739
13740 PPS SUPPORT
13741 M:      Rodolfo Giometti <giometti@enneenne.com>
13742 L:      linuxpps@ml.enneenne.com (subscribers-only)
13743 S:      Maintained
13744 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
13745 F:      Documentation/ABI/testing/sysfs-pps
13746 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
13747 F:      Documentation/driver-api/pps.rst
13748 F:      drivers/pps/
13749 F:      include/linux/pps*.h
13750 F:      include/uapi/linux/pps.h
13751
13752 PPTP DRIVER
13753 M:      Dmitry Kozlov <xeb@mail.ru>
13754 L:      netdev@vger.kernel.org
13755 S:      Maintained
13756 W:      http://sourceforge.net/projects/accel-pptp
13757 F:      drivers/net/ppp/pptp.c
13758
13759 PRESSURE STALL INFORMATION (PSI)
13760 M:      Johannes Weiner <hannes@cmpxchg.org>
13761 S:      Maintained
13762 F:      include/linux/psi*
13763 F:      kernel/sched/psi.c
13764
13765 PRINTK
13766 M:      Petr Mladek <pmladek@suse.com>
13767 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
13768 R:      Steven Rostedt <rostedt@goodmis.org>
13769 S:      Maintained
13770 F:      include/linux/printk.h
13771 F:      kernel/printk/
13772
13773 PRISM54 WIRELESS DRIVER
13774 M:      Luis Chamberlain <mcgrof@kernel.org>
13775 L:      linux-wireless@vger.kernel.org
13776 S:      Obsolete
13777 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13778 F:      drivers/net/wireless/intersil/prism54/
13779
13780 PROC FILESYSTEM
13781 R:      Alexey Dobriyan <adobriyan@gmail.com>
13782 L:      linux-kernel@vger.kernel.org
13783 L:      linux-fsdevel@vger.kernel.org
13784 S:      Maintained
13785 F:      Documentation/filesystems/proc.rst
13786 F:      fs/proc/
13787 F:      include/linux/proc_fs.h
13788 F:      tools/testing/selftests/proc/
13789
13790 PROC SYSCTL
13791 M:      Luis Chamberlain <mcgrof@kernel.org>
13792 M:      Kees Cook <keescook@chromium.org>
13793 M:      Iurii Zaikin <yzaikin@google.com>
13794 L:      linux-kernel@vger.kernel.org
13795 L:      linux-fsdevel@vger.kernel.org
13796 S:      Maintained
13797 F:      fs/proc/proc_sysctl.c
13798 F:      include/linux/sysctl.h
13799 F:      kernel/sysctl-test.c
13800 F:      kernel/sysctl.c
13801 F:      tools/testing/selftests/sysctl/
13802
13803 PS3 NETWORK SUPPORT
13804 M:      Geoff Levand <geoff@infradead.org>
13805 L:      netdev@vger.kernel.org
13806 L:      linuxppc-dev@lists.ozlabs.org
13807 S:      Maintained
13808 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
13809
13810 PS3 PLATFORM SUPPORT
13811 M:      Geoff Levand <geoff@infradead.org>
13812 L:      linuxppc-dev@lists.ozlabs.org
13813 S:      Maintained
13814 F:      arch/powerpc/boot/ps3*
13815 F:      arch/powerpc/include/asm/lv1call.h
13816 F:      arch/powerpc/include/asm/ps3*.h
13817 F:      arch/powerpc/platforms/ps3/
13818 F:      drivers/*/ps3*
13819 F:      drivers/ps3/
13820 F:      drivers/rtc/rtc-ps3.c
13821 F:      drivers/usb/host/*ps3.c
13822 F:      sound/ppc/snd_ps3*
13823
13824 PS3VRAM DRIVER
13825 M:      Jim Paris <jim@jtan.com>
13826 M:      Geoff Levand <geoff@infradead.org>
13827 L:      linuxppc-dev@lists.ozlabs.org
13828 S:      Maintained
13829 F:      drivers/block/ps3vram.c
13830
13831 PSAMPLE PACKET SAMPLING SUPPORT
13832 M:      Yotam Gigi <yotam.gi@gmail.com>
13833 S:      Maintained
13834 F:      include/net/psample.h
13835 F:      include/uapi/linux/psample.h
13836 F:      net/psample
13837
13838 PSTORE FILESYSTEM
13839 M:      Kees Cook <keescook@chromium.org>
13840 M:      Anton Vorontsov <anton@enomsg.org>
13841 M:      Colin Cross <ccross@android.com>
13842 M:      Tony Luck <tony.luck@intel.com>
13843 S:      Maintained
13844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
13845 F:      Documentation/admin-guide/ramoops.rst
13846 F:      Documentation/admin-guide/pstore-blk.rst
13847 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
13848 F:      drivers/acpi/apei/erst.c
13849 F:      drivers/firmware/efi/efi-pstore.c
13850 F:      fs/pstore/
13851 F:      include/linux/pstore*
13852 K:      \b(pstore|ramoops)
13853
13854 PTP HARDWARE CLOCK SUPPORT
13855 M:      Richard Cochran <richardcochran@gmail.com>
13856 L:      netdev@vger.kernel.org
13857 S:      Maintained
13858 W:      http://linuxptp.sourceforge.net/
13859 F:      Documentation/ABI/testing/sysfs-ptp
13860 F:      Documentation/driver-api/ptp.rst
13861 F:      drivers/net/phy/dp83640*
13862 F:      drivers/ptp/*
13863 F:      include/linux/ptp_cl*
13864
13865 PTRACE SUPPORT
13866 M:      Oleg Nesterov <oleg@redhat.com>
13867 S:      Maintained
13868 F:      arch/*/*/ptrace*.c
13869 F:      arch/*/include/asm/ptrace*.h
13870 F:      arch/*/ptrace*.c
13871 F:      include/asm-generic/syscall.h
13872 F:      include/linux/ptrace.h
13873 F:      include/linux/regset.h
13874 F:      include/linux/tracehook.h
13875 F:      include/uapi/linux/ptrace.h
13876 F:      include/uapi/linux/ptrace.h
13877 F:      kernel/ptrace.c
13878
13879 PULSE8-CEC DRIVER
13880 M:      Hans Verkuil <hverkuil@xs4all.nl>
13881 L:      linux-media@vger.kernel.org
13882 S:      Maintained
13883 T:      git git://linuxtv.org/media_tree.git
13884 F:      Documentation/admin-guide/media/pulse8-cec.rst
13885 F:      drivers/media/cec/usb/pulse8/
13886
13887 PVRUSB2 VIDEO4LINUX DRIVER
13888 M:      Mike Isely <isely@pobox.com>
13889 L:      pvrusb2@isely.net       (subscribers-only)
13890 L:      linux-media@vger.kernel.org
13891 S:      Maintained
13892 W:      http://www.isely.net/pvrusb2/
13893 T:      git git://linuxtv.org/media_tree.git
13894 F:      Documentation/driver-api/media/drivers/pvrusb2*
13895 F:      drivers/media/usb/pvrusb2/
13896
13897 PWC WEBCAM DRIVER
13898 M:      Hans Verkuil <hverkuil@xs4all.nl>
13899 L:      linux-media@vger.kernel.org
13900 S:      Odd Fixes
13901 T:      git git://linuxtv.org/media_tree.git
13902 F:      drivers/media/usb/pwc/*
13903 F:      include/trace/events/pwc.h
13904
13905 PWM FAN DRIVER
13906 M:      Kamil Debski <kamil@wypas.org>
13907 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
13908 L:      linux-hwmon@vger.kernel.org
13909 S:      Supported
13910 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
13911 F:      Documentation/hwmon/pwm-fan.rst
13912 F:      drivers/hwmon/pwm-fan.c
13913
13914 PWM IR Transmitter
13915 M:      Sean Young <sean@mess.org>
13916 L:      linux-media@vger.kernel.org
13917 S:      Maintained
13918 F:      drivers/media/rc/pwm-ir-tx.c
13919
13920 PWM SUBSYSTEM
13921 M:      Thierry Reding <thierry.reding@gmail.com>
13922 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
13923 M:      Lee Jones <lee.jones@linaro.org>
13924 L:      linux-pwm@vger.kernel.org
13925 S:      Maintained
13926 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
13927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
13928 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
13929 F:      Documentation/devicetree/bindings/pwm/
13930 F:      Documentation/driver-api/pwm.rst
13931 F:      drivers/gpio/gpio-mvebu.c
13932 F:      drivers/pwm/
13933 F:      drivers/video/backlight/pwm_bl.c
13934 F:      include/linux/pwm.h
13935 F:      include/linux/pwm_backlight.h
13936 K:      pwm_(config|apply_state|ops)
13937
13938 PXA GPIO DRIVER
13939 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13940 L:      linux-gpio@vger.kernel.org
13941 S:      Maintained
13942 F:      drivers/gpio/gpio-pxa.c
13943
13944 PXA MMCI DRIVER
13945 S:      Orphan
13946
13947 PXA RTC DRIVER
13948 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13949 L:      linux-rtc@vger.kernel.org
13950 S:      Maintained
13951
13952 PXA2xx/PXA3xx SUPPORT
13953 M:      Daniel Mack <daniel@zonque.org>
13954 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
13955 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13956 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13957 S:      Maintained
13958 T:      git git://github.com/hzhuang1/linux.git
13959 T:      git git://github.com/rjarzmik/linux.git
13960 F:      arch/arm/boot/dts/pxa*
13961 F:      arch/arm/mach-pxa/
13962 F:      drivers/dma/pxa*
13963 F:      drivers/pcmcia/pxa2xx*
13964 F:      drivers/pinctrl/pxa/
13965 F:      drivers/spi/spi-pxa2xx*
13966 F:      drivers/usb/gadget/udc/pxa2*
13967 F:      include/sound/pxa2xx-lib.h
13968 F:      sound/arm/pxa*
13969 F:      sound/soc/pxa/
13970
13971 QAT DRIVER
13972 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
13973 L:      qat-linux@intel.com
13974 S:      Supported
13975 F:      drivers/crypto/qat/
13976
13977 QCOM AUDIO (ASoC) DRIVERS
13978 M:      Patrick Lai <plai@codeaurora.org>
13979 M:      Banajit Goswami <bgoswami@codeaurora.org>
13980 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13981 S:      Supported
13982 F:      sound/soc/qcom/
13983
13984 QCOM IPA DRIVER
13985 M:      Alex Elder <elder@kernel.org>
13986 L:      netdev@vger.kernel.org
13987 S:      Supported
13988 F:      drivers/net/ipa/
13989
13990 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
13991 M:      Gabriel Somlo <somlo@cmu.edu>
13992 M:      "Michael S. Tsirkin" <mst@redhat.com>
13993 L:      qemu-devel@nongnu.org
13994 S:      Maintained
13995 F:      drivers/firmware/qemu_fw_cfg.c
13996 F:      include/uapi/linux/qemu_fw_cfg.h
13997
13998 QIB DRIVER
13999 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
14000 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
14001 L:      linux-rdma@vger.kernel.org
14002 S:      Supported
14003 F:      drivers/infiniband/hw/qib/
14004
14005 QLOGIC QL41xxx FCOE DRIVER
14006 M:      QLogic-Storage-Upstream@cavium.com
14007 L:      linux-scsi@vger.kernel.org
14008 S:      Supported
14009 F:      drivers/scsi/qedf/
14010
14011 QLOGIC QL41xxx ISCSI DRIVER
14012 M:      QLogic-Storage-Upstream@cavium.com
14013 L:      linux-scsi@vger.kernel.org
14014 S:      Supported
14015 F:      drivers/scsi/qedi/
14016
14017 QLOGIC QL4xxx ETHERNET DRIVER
14018 M:      Ariel Elior <aelior@marvell.com>
14019 M:      GR-everest-linux-l2@marvell.com
14020 L:      netdev@vger.kernel.org
14021 S:      Supported
14022 F:      drivers/net/ethernet/qlogic/qed/
14023 F:      drivers/net/ethernet/qlogic/qede/
14024 F:      include/linux/qed/
14025
14026 QLOGIC QL4xxx RDMA DRIVER
14027 M:      Michal Kalderon <mkalderon@marvell.com>
14028 M:      Ariel Elior <aelior@marvell.com>
14029 L:      linux-rdma@vger.kernel.org
14030 S:      Supported
14031 F:      drivers/infiniband/hw/qedr/
14032 F:      include/uapi/rdma/qedr-abi.h
14033
14034 QLOGIC QLA1280 SCSI DRIVER
14035 M:      Michael Reed <mdr@sgi.com>
14036 L:      linux-scsi@vger.kernel.org
14037 S:      Maintained
14038 F:      drivers/scsi/qla1280.[ch]
14039
14040 QLOGIC QLA2XXX FC-SCSI DRIVER
14041 M:      Nilesh Javali <njavali@marvell.com>
14042 M:      GR-QLogic-Storage-Upstream@marvell.com
14043 L:      linux-scsi@vger.kernel.org
14044 S:      Supported
14045 F:      Documentation/scsi/LICENSE.qla2xxx
14046 F:      drivers/scsi/qla2xxx/
14047
14048 QLOGIC QLA3XXX NETWORK DRIVER
14049 M:      GR-Linux-NIC-Dev@marvell.com
14050 L:      netdev@vger.kernel.org
14051 S:      Supported
14052 F:      Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
14053 F:      drivers/net/ethernet/qlogic/qla3xxx.*
14054
14055 QLOGIC QLA4XXX iSCSI DRIVER
14056 M:      QLogic-Storage-Upstream@qlogic.com
14057 L:      linux-scsi@vger.kernel.org
14058 S:      Supported
14059 F:      Documentation/scsi/LICENSE.qla4xxx
14060 F:      drivers/scsi/qla4xxx/
14061
14062 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14063 M:      Shahed Shaikh <shshaikh@marvell.com>
14064 M:      Manish Chopra <manishc@marvell.com>
14065 M:      GR-Linux-NIC-Dev@marvell.com
14066 L:      netdev@vger.kernel.org
14067 S:      Supported
14068 F:      drivers/net/ethernet/qlogic/qlcnic/
14069
14070 QLOGIC QLGE 10Gb ETHERNET DRIVER
14071 M:      Manish Chopra <manishc@marvell.com>
14072 M:      GR-Linux-NIC-Dev@marvell.com
14073 L:      netdev@vger.kernel.org
14074 S:      Supported
14075 F:      drivers/staging/qlge/
14076
14077 QM1D1B0004 MEDIA DRIVER
14078 M:      Akihiro Tsukada <tskd08@gmail.com>
14079 L:      linux-media@vger.kernel.org
14080 S:      Odd Fixes
14081 F:      drivers/media/tuners/qm1d1b0004*
14082
14083 QM1D1C0042 MEDIA DRIVER
14084 M:      Akihiro Tsukada <tskd08@gmail.com>
14085 L:      linux-media@vger.kernel.org
14086 S:      Odd Fixes
14087 F:      drivers/media/tuners/qm1d1c0042*
14088
14089 QNX4 FILESYSTEM
14090 M:      Anders Larsen <al@alarsen.net>
14091 S:      Maintained
14092 W:      http://www.alarsen.net/linux/qnx4fs/
14093 F:      fs/qnx4/
14094 F:      include/uapi/linux/qnx4_fs.h
14095 F:      include/uapi/linux/qnxtypes.h
14096
14097 QORIQ DPAA2 FSL-MC BUS DRIVER
14098 M:      Stuart Yoder <stuyoder@gmail.com>
14099 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
14100 L:      linux-kernel@vger.kernel.org
14101 S:      Maintained
14102 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
14103 F:      Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
14104 F:      drivers/bus/fsl-mc/
14105
14106 QT1010 MEDIA DRIVER
14107 M:      Antti Palosaari <crope@iki.fi>
14108 L:      linux-media@vger.kernel.org
14109 S:      Maintained
14110 W:      https://linuxtv.org
14111 W:      http://palosaari.fi/linux/
14112 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14113 T:      git git://linuxtv.org/anttip/media_tree.git
14114 F:      drivers/media/tuners/qt1010*
14115
14116 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
14117 M:      Kalle Valo <kvalo@codeaurora.org>
14118 L:      ath10k@lists.infradead.org
14119 S:      Supported
14120 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
14121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14122 F:      drivers/net/wireless/ath/ath10k/
14123
14124 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
14125 M:      Kalle Valo <kvalo@codeaurora.org>
14126 L:      ath11k@lists.infradead.org
14127 S:      Supported
14128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14129 F:      drivers/net/wireless/ath/ath11k/
14130
14131 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
14132 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
14133 L:      linux-wireless@vger.kernel.org
14134 S:      Supported
14135 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
14136 F:      drivers/net/wireless/ath/ath9k/
14137
14138 QUALCOMM CAMERA SUBSYSTEM DRIVER
14139 M:      Todor Tomov <todor.too@gmail.com>
14140 L:      linux-media@vger.kernel.org
14141 S:      Maintained
14142 F:      Documentation/admin-guide/media/qcom_camss.rst
14143 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
14144 F:      drivers/media/platform/qcom/camss/
14145
14146 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
14147 M:      Niklas Cassel <nks@flawful.org>
14148 L:      linux-pm@vger.kernel.org
14149 L:      linux-arm-msm@vger.kernel.org
14150 S:      Maintained
14151 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
14152 F:      drivers/power/avs/qcom-cpr.c
14153
14154 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
14155 M:      Ilia Lin <ilia.lin@kernel.org>
14156 L:      linux-pm@vger.kernel.org
14157 S:      Maintained
14158 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
14159 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
14160
14161 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
14162 M:      Timur Tabi <timur@kernel.org>
14163 L:      netdev@vger.kernel.org
14164 S:      Maintained
14165 F:      drivers/net/ethernet/qualcomm/emac/
14166
14167 QUALCOMM ETHQOS ETHERNET DRIVER
14168 M:      Vinod Koul <vkoul@kernel.org>
14169 L:      netdev@vger.kernel.org
14170 S:      Maintained
14171 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
14172 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
14173
14174 QUALCOMM GENERIC INTERFACE I2C DRIVER
14175 M:      Alok Chauhan <alokc@codeaurora.org>
14176 L:      linux-i2c@vger.kernel.org
14177 L:      linux-arm-msm@vger.kernel.org
14178 S:      Supported
14179 F:      drivers/i2c/busses/i2c-qcom-geni.c
14180
14181 QUALCOMM HEXAGON ARCHITECTURE
14182 M:      Brian Cain <bcain@codeaurora.org>
14183 L:      linux-hexagon@vger.kernel.org
14184 S:      Supported
14185 F:      arch/hexagon/
14186
14187 QUALCOMM HIDMA DRIVER
14188 M:      Sinan Kaya <okaya@kernel.org>
14189 L:      linux-arm-kernel@lists.infradead.org
14190 L:      linux-arm-msm@vger.kernel.org
14191 L:      dmaengine@vger.kernel.org
14192 S:      Supported
14193 F:      drivers/dma/qcom/hidma*
14194
14195 QUALCOMM I2C CCI DRIVER
14196 M:      Loic Poulain <loic.poulain@linaro.org>
14197 M:      Robert Foss <robert.foss@linaro.org>
14198 L:      linux-i2c@vger.kernel.org
14199 L:      linux-arm-msm@vger.kernel.org
14200 S:      Maintained
14201 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
14202 F:      drivers/i2c/busses/i2c-qcom-cci.c
14203
14204 QUALCOMM IOMMU
14205 M:      Rob Clark <robdclark@gmail.com>
14206 L:      iommu@lists.linux-foundation.org
14207 L:      linux-arm-msm@vger.kernel.org
14208 S:      Maintained
14209 F:      drivers/iommu/qcom_iommu.c
14210
14211 QUALCOMM IPCC MAILBOX DRIVER
14212 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
14213 L:      linux-arm-msm@vger.kernel.org
14214 S:      Supported
14215 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
14216 F:      drivers/mailbox/qcom-ipcc.c
14217 F:      include/dt-bindings/mailbox/qcom-ipcc.h
14218
14219 QUALCOMM RMNET DRIVER
14220 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
14221 M:      Sean Tranchetti <stranche@codeaurora.org>
14222 L:      netdev@vger.kernel.org
14223 S:      Maintained
14224 F:      Documentation/networking/device_drivers/qualcomm/rmnet.rst
14225 F:      drivers/net/ethernet/qualcomm/rmnet/
14226 F:      include/linux/if_rmnet.h
14227
14228 QUALCOMM TSENS THERMAL DRIVER
14229 M:      Amit Kucheria <amit.kucheria@linaro.org>
14230 L:      linux-pm@vger.kernel.org
14231 L:      linux-arm-msm@vger.kernel.org
14232 S:      Maintained
14233 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14234 F:      drivers/thermal/qcom/
14235
14236 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14237 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
14238 L:      linux-media@vger.kernel.org
14239 L:      linux-arm-msm@vger.kernel.org
14240 S:      Maintained
14241 T:      git git://linuxtv.org/media_tree.git
14242 F:      Documentation/devicetree/bindings/media/*venus*
14243 F:      drivers/media/platform/qcom/venus/
14244
14245 QUALCOMM WCN36XX WIRELESS DRIVER
14246 M:      Kalle Valo <kvalo@codeaurora.org>
14247 L:      wcn36xx@lists.infradead.org
14248 S:      Supported
14249 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
14250 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14251 F:      drivers/net/wireless/ath/wcn36xx/
14252
14253 QUANTENNA QTNFMAC WIRELESS DRIVER
14254 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
14255 R:      Sergey Matyukevich <geomatsi@gmail.com>
14256 L:      linux-wireless@vger.kernel.org
14257 S:      Maintained
14258 F:      drivers/net/wireless/quantenna
14259
14260 RADEON and AMDGPU DRM DRIVERS
14261 M:      Alex Deucher <alexander.deucher@amd.com>
14262 M:      Christian König <christian.koenig@amd.com>
14263 L:      amd-gfx@lists.freedesktop.org
14264 S:      Supported
14265 T:      git git://people.freedesktop.org/~agd5f/linux
14266 F:      drivers/gpu/drm/amd/
14267 F:      drivers/gpu/drm/radeon/
14268 F:      include/uapi/drm/amdgpu_drm.h
14269 F:      include/uapi/drm/radeon_drm.h
14270
14271 RADEON FRAMEBUFFER DISPLAY DRIVER
14272 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
14273 L:      linux-fbdev@vger.kernel.org
14274 S:      Maintained
14275 F:      drivers/video/fbdev/aty/radeon*
14276 F:      include/uapi/linux/radeonfb.h
14277
14278 RADIOSHARK RADIO DRIVER
14279 M:      Hans Verkuil <hverkuil@xs4all.nl>
14280 L:      linux-media@vger.kernel.org
14281 S:      Maintained
14282 T:      git git://linuxtv.org/media_tree.git
14283 F:      drivers/media/radio/radio-shark.c
14284
14285 RADIOSHARK2 RADIO DRIVER
14286 M:      Hans Verkuil <hverkuil@xs4all.nl>
14287 L:      linux-media@vger.kernel.org
14288 S:      Maintained
14289 T:      git git://linuxtv.org/media_tree.git
14290 F:      drivers/media/radio/radio-shark2.c
14291 F:      drivers/media/radio/radio-tea5777.c
14292
14293 RADOS BLOCK DEVICE (RBD)
14294 M:      Ilya Dryomov <idryomov@gmail.com>
14295 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
14296 L:      ceph-devel@vger.kernel.org
14297 S:      Supported
14298 W:      http://ceph.com/
14299 T:      git git://github.com/ceph/ceph-client.git
14300 F:      Documentation/ABI/testing/sysfs-bus-rbd
14301 F:      drivers/block/rbd.c
14302 F:      drivers/block/rbd_types.h
14303
14304 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14305 M:      Paul Mackerras <paulus@samba.org>
14306 L:      linux-fbdev@vger.kernel.org
14307 S:      Maintained
14308 F:      drivers/video/fbdev/aty/aty128fb.c
14309
14310 RAINSHADOW-CEC DRIVER
14311 M:      Hans Verkuil <hverkuil@xs4all.nl>
14312 L:      linux-media@vger.kernel.org
14313 S:      Maintained
14314 T:      git git://linuxtv.org/media_tree.git
14315 F:      drivers/media/cec/usb/rainshadow/
14316
14317 RALINK MIPS ARCHITECTURE
14318 M:      John Crispin <john@phrozen.org>
14319 L:      linux-mips@vger.kernel.org
14320 S:      Maintained
14321 F:      arch/mips/ralink
14322
14323 RALINK RT2X00 WIRELESS LAN DRIVER
14324 M:      Stanislaw Gruszka <stf_xl@wp.pl>
14325 M:      Helmut Schaa <helmut.schaa@googlemail.com>
14326 L:      linux-wireless@vger.kernel.org
14327 S:      Maintained
14328 F:      drivers/net/wireless/ralink/rt2x00/
14329
14330 RAMDISK RAM BLOCK DEVICE DRIVER
14331 M:      Jens Axboe <axboe@kernel.dk>
14332 S:      Maintained
14333 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14334 F:      drivers/block/brd.c
14335
14336 RANCHU VIRTUAL BOARD FOR MIPS
14337 M:      Miodrag Dinic <miodrag.dinic@mips.com>
14338 L:      linux-mips@vger.kernel.org
14339 S:      Supported
14340 F:      arch/mips/configs/generic/board-ranchu.config
14341 F:      arch/mips/generic/board-ranchu.c
14342
14343 RANDOM NUMBER DRIVER
14344 M:      "Theodore Ts'o" <tytso@mit.edu>
14345 S:      Maintained
14346 F:      drivers/char/random.c
14347
14348 RAPIDIO SUBSYSTEM
14349 M:      Matt Porter <mporter@kernel.crashing.org>
14350 M:      Alexandre Bounine <alex.bou9@gmail.com>
14351 S:      Maintained
14352 F:      drivers/rapidio/
14353
14354 RAS INFRASTRUCTURE
14355 M:      Tony Luck <tony.luck@intel.com>
14356 M:      Borislav Petkov <bp@alien8.de>
14357 L:      linux-edac@vger.kernel.org
14358 S:      Maintained
14359 F:      Documentation/admin-guide/ras.rst
14360 F:      drivers/ras/
14361 F:      include/linux/ras.h
14362 F:      include/ras/ras_event.h
14363
14364 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14365 L:      linux-wireless@vger.kernel.org
14366 S:      Orphan
14367 F:      drivers/net/wireless/ray*
14368
14369 RCMM REMOTE CONTROLS DECODER
14370 M:      Patrick Lerda <patrick9876@free.fr>
14371 S:      Maintained
14372 F:      drivers/media/rc/ir-rcmm-decoder.c
14373
14374 RCUTORTURE TEST FRAMEWORK
14375 M:      "Paul E. McKenney" <paulmck@kernel.org>
14376 M:      Josh Triplett <josh@joshtriplett.org>
14377 R:      Steven Rostedt <rostedt@goodmis.org>
14378 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14379 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14380 L:      rcu@vger.kernel.org
14381 S:      Supported
14382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14383 F:      tools/testing/selftests/rcutorture
14384
14385 RDC R-321X SoC
14386 M:      Florian Fainelli <florian@openwrt.org>
14387 S:      Maintained
14388
14389 RDC R6040 FAST ETHERNET DRIVER
14390 M:      Florian Fainelli <f.fainelli@gmail.com>
14391 L:      netdev@vger.kernel.org
14392 S:      Maintained
14393 F:      drivers/net/ethernet/rdc/r6040.c
14394
14395 RDMAVT - RDMA verbs software
14396 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
14397 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
14398 L:      linux-rdma@vger.kernel.org
14399 S:      Supported
14400 F:      drivers/infiniband/sw/rdmavt
14401
14402 RDS - RELIABLE DATAGRAM SOCKETS
14403 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
14404 L:      netdev@vger.kernel.org
14405 L:      linux-rdma@vger.kernel.org
14406 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
14407 S:      Supported
14408 W:      https://oss.oracle.com/projects/rds/
14409 F:      Documentation/networking/rds.rst
14410 F:      net/rds/
14411
14412 RDT - RESOURCE ALLOCATION
14413 M:      Fenghua Yu <fenghua.yu@intel.com>
14414 M:      Reinette Chatre <reinette.chatre@intel.com>
14415 L:      linux-kernel@vger.kernel.org
14416 S:      Supported
14417 F:      Documentation/x86/resctrl*
14418 F:      arch/x86/include/asm/resctrl.h
14419 F:      arch/x86/kernel/cpu/resctrl/
14420 F:      tools/testing/selftests/resctrl/
14421
14422 READ-COPY UPDATE (RCU)
14423 M:      "Paul E. McKenney" <paulmck@kernel.org>
14424 M:      Josh Triplett <josh@joshtriplett.org>
14425 R:      Steven Rostedt <rostedt@goodmis.org>
14426 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14427 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14428 R:      Joel Fernandes <joel@joelfernandes.org>
14429 L:      rcu@vger.kernel.org
14430 S:      Supported
14431 W:      http://www.rdrop.com/users/paulmck/RCU/
14432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14433 F:      Documentation/RCU/
14434 F:      include/linux/rcu*
14435 F:      kernel/rcu/
14436 X:      Documentation/RCU/torture.txt
14437 X:      include/linux/srcu*.h
14438 X:      kernel/rcu/srcu*.c
14439
14440 REAL TIME CLOCK (RTC) SUBSYSTEM
14441 M:      Alessandro Zummo <a.zummo@towertech.it>
14442 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14443 L:      linux-rtc@vger.kernel.org
14444 S:      Maintained
14445 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14447 F:      Documentation/admin-guide/rtc.rst
14448 F:      Documentation/devicetree/bindings/rtc/
14449 F:      drivers/rtc/
14450 F:      include/linux/platform_data/rtc-*
14451 F:      include/linux/rtc.h
14452 F:      include/linux/rtc/
14453 F:      include/uapi/linux/rtc.h
14454 F:      tools/testing/selftests/rtc/
14455
14456 REALTEK AUDIO CODECS
14457 M:      Oder Chiou <oder_chiou@realtek.com>
14458 S:      Maintained
14459 F:      include/sound/rt*.h
14460 F:      sound/soc/codecs/rt*
14461
14462 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14463 M:      Linus Walleij <linus.walleij@linaro.org>
14464 S:      Maintained
14465 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14466 F:      drivers/net/dsa/realtek-smi*
14467 F:      drivers/net/dsa/rtl83*
14468
14469 REALTEK WIRELESS DRIVER (rtlwifi family)
14470 M:      Ping-Ke Shih <pkshih@realtek.com>
14471 L:      linux-wireless@vger.kernel.org
14472 S:      Maintained
14473 W:      https://wireless.wiki.kernel.org/
14474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14475 F:      drivers/net/wireless/realtek/rtlwifi/
14476
14477 REALTEK WIRELESS DRIVER (rtw88)
14478 M:      Yan-Hsuan Chuang <yhchuang@realtek.com>
14479 L:      linux-wireless@vger.kernel.org
14480 S:      Maintained
14481 F:      drivers/net/wireless/realtek/rtw88/
14482
14483 REDPINE WIRELESS DRIVER
14484 M:      Amitkumar Karwar <amitkarwar@gmail.com>
14485 M:      Siva Rebbagondla <siva8118@gmail.com>
14486 L:      linux-wireless@vger.kernel.org
14487 S:      Maintained
14488 F:      drivers/net/wireless/rsi/
14489
14490 REGISTER MAP ABSTRACTION
14491 M:      Mark Brown <broonie@kernel.org>
14492 L:      linux-kernel@vger.kernel.org
14493 S:      Supported
14494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
14495 F:      Documentation/devicetree/bindings/regmap/
14496 F:      drivers/base/regmap/
14497 F:      include/linux/regmap.h
14498
14499 REISERFS FILE SYSTEM
14500 L:      reiserfs-devel@vger.kernel.org
14501 S:      Supported
14502 F:      fs/reiserfs/
14503
14504 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
14505 M:      Ohad Ben-Cohen <ohad@wizery.com>
14506 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14507 L:      linux-remoteproc@vger.kernel.org
14508 S:      Maintained
14509 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
14510 F:      Documentation/ABI/testing/sysfs-class-remoteproc
14511 F:      Documentation/devicetree/bindings/remoteproc/
14512 F:      Documentation/remoteproc.txt
14513 F:      drivers/remoteproc/
14514 F:      include/linux/remoteproc.h
14515 F:      include/linux/remoteproc/
14516
14517 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
14518 M:      Ohad Ben-Cohen <ohad@wizery.com>
14519 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14520 L:      linux-remoteproc@vger.kernel.org
14521 S:      Maintained
14522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
14523 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
14524 F:      Documentation/rpmsg.txt
14525 F:      drivers/rpmsg/
14526 F:      include/linux/rpmsg.h
14527 F:      include/linux/rpmsg/
14528 F:      include/uapi/linux/rpmsg.h
14529 F:      samples/rpmsg/
14530
14531 RENESAS CLOCK DRIVERS
14532 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14533 L:      linux-renesas-soc@vger.kernel.org
14534 S:      Supported
14535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
14536 F:      Documentation/devicetree/bindings/clock/renesas,*
14537 F:      drivers/clk/renesas/
14538
14539 RENESAS EMEV2 I2C DRIVER
14540 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14541 S:      Supported
14542 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
14543 F:      drivers/i2c/busses/i2c-emev2.c
14544
14545 RENESAS ETHERNET DRIVERS
14546 R:      Sergei Shtylyov <sergei.shtylyov@gmail.com>
14547 L:      netdev@vger.kernel.org
14548 L:      linux-renesas-soc@vger.kernel.org
14549 F:      Documentation/devicetree/bindings/net/renesas,*.txt
14550 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
14551 F:      drivers/net/ethernet/renesas/
14552 F:      include/linux/sh_eth.h
14553
14554 RENESAS R-CAR GYROADC DRIVER
14555 M:      Marek Vasut <marek.vasut@gmail.com>
14556 L:      linux-iio@vger.kernel.org
14557 S:      Supported
14558 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
14559 F:      drivers/iio/adc/rcar-gyroadc.c
14560
14561 RENESAS R-CAR I2C DRIVERS
14562 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14563 S:      Supported
14564 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
14565 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
14566 F:      drivers/i2c/busses/i2c-rcar.c
14567 F:      drivers/i2c/busses/i2c-sh_mobile.c
14568
14569 RENESAS R-CAR THERMAL DRIVERS
14570 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
14571 L:      linux-renesas-soc@vger.kernel.org
14572 S:      Supported
14573 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.txt
14574 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.txt
14575 F:      drivers/thermal/rcar_gen3_thermal.c
14576 F:      drivers/thermal/rcar_thermal.c
14577
14578 RENESAS RIIC DRIVER
14579 M:      Chris Brandt <chris.brandt@renesas.com>
14580 S:      Supported
14581 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
14582 F:      drivers/i2c/busses/i2c-riic.c
14583
14584 RENESAS USB PHY DRIVER
14585 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14586 L:      linux-renesas-soc@vger.kernel.org
14587 S:      Maintained
14588 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
14589
14590 RESET CONTROLLER FRAMEWORK
14591 M:      Philipp Zabel <p.zabel@pengutronix.de>
14592 S:      Maintained
14593 T:      git git://git.pengutronix.de/git/pza/linux
14594 F:      Documentation/devicetree/bindings/reset/
14595 F:      drivers/reset/
14596 F:      include/dt-bindings/reset/
14597 F:      include/linux/reset-controller.h
14598 F:      include/linux/reset.h
14599 F:      include/linux/reset/
14600 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
14601
14602 RESTARTABLE SEQUENCES SUPPORT
14603 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14604 M:      Peter Zijlstra <peterz@infradead.org>
14605 M:      "Paul E. McKenney" <paulmck@kernel.org>
14606 M:      Boqun Feng <boqun.feng@gmail.com>
14607 L:      linux-kernel@vger.kernel.org
14608 S:      Supported
14609 F:      include/trace/events/rseq.h
14610 F:      include/uapi/linux/rseq.h
14611 F:      kernel/rseq.c
14612 F:      tools/testing/selftests/rseq/
14613
14614 RFKILL
14615 M:      Johannes Berg <johannes@sipsolutions.net>
14616 L:      linux-wireless@vger.kernel.org
14617 S:      Maintained
14618 W:      https://wireless.wiki.kernel.org/
14619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
14620 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
14621 F:      Documentation/ABI/stable/sysfs-class-rfkill
14622 F:      Documentation/driver-api/rfkill.rst
14623 F:      include/linux/rfkill.h
14624 F:      include/uapi/linux/rfkill.h
14625 F:      net/rfkill/
14626
14627 RHASHTABLE
14628 M:      Thomas Graf <tgraf@suug.ch>
14629 M:      Herbert Xu <herbert@gondor.apana.org.au>
14630 L:      netdev@vger.kernel.org
14631 S:      Maintained
14632 F:      include/linux/rhashtable-types.h
14633 F:      include/linux/rhashtable.h
14634 F:      lib/rhashtable.c
14635 F:      lib/test_rhashtable.c
14636
14637 RICOH R5C592 MEMORYSTICK DRIVER
14638 M:      Maxim Levitsky <maximlevitsky@gmail.com>
14639 S:      Maintained
14640 F:      drivers/memstick/host/r592.*
14641
14642 RICOH SMARTMEDIA/XD DRIVER
14643 M:      Maxim Levitsky <maximlevitsky@gmail.com>
14644 S:      Maintained
14645 F:      drivers/mtd/nand/raw/r852.c
14646 F:      drivers/mtd/nand/raw/r852.h
14647
14648 RISC-V ARCHITECTURE
14649 M:      Paul Walmsley <paul.walmsley@sifive.com>
14650 M:      Palmer Dabbelt <palmer@dabbelt.com>
14651 M:      Albert Ou <aou@eecs.berkeley.edu>
14652 L:      linux-riscv@lists.infradead.org
14653 S:      Supported
14654 P:      Documentation/riscv/patch-acceptance.rst
14655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
14656 F:      arch/riscv/
14657 N:      riscv
14658 K:      riscv
14659
14660 RNBD BLOCK DRIVERS
14661 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
14662 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14663 L:      linux-block@vger.kernel.org
14664 S:      Maintained
14665 F:      drivers/block/rnbd/
14666
14667 ROCCAT DRIVERS
14668 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
14669 S:      Maintained
14670 W:      http://sourceforge.net/projects/roccat/
14671 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
14672 F:      drivers/hid/hid-roccat*
14673 F:      include/linux/hid-roccat*
14674
14675 ROCKCHIP ISP V1 DRIVER
14676 M:      Helen Koike <helen.koike@collabora.com>
14677 L:      linux-media@vger.kernel.org
14678 S:      Maintained
14679 F:      drivers/staging/media/rkisp1/
14680
14681 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
14682 M:      Jacob Chen <jacob-chen@iotwrt.com>
14683 M:      Ezequiel Garcia <ezequiel@collabora.com>
14684 L:      linux-media@vger.kernel.org
14685 L:      linux-rockchip@lists.infradead.org
14686 S:      Maintained
14687 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
14688 F:      drivers/media/platform/rockchip/rga/
14689
14690 ROCKCHIP VIDEO DECODER DRIVER
14691 M:      Ezequiel Garcia <ezequiel@collabora.com>
14692 L:      linux-media@vger.kernel.org
14693 L:      linux-rockchip@lists.infradead.org
14694 S:      Maintained
14695 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
14696 F:      drivers/staging/media/rkvdec/
14697
14698 ROCKER DRIVER
14699 M:      Jiri Pirko <jiri@resnulli.us>
14700 L:      netdev@vger.kernel.org
14701 S:      Supported
14702 F:      drivers/net/ethernet/rocker/
14703
14704 ROCKETPORT DRIVER
14705 S:      Maintained
14706 W:      http://www.comtrol.com
14707 F:      Documentation/driver-api/serial/rocket.rst
14708 F:      drivers/tty/rocket*
14709
14710 ROCKETPORT EXPRESS/INFINITY DRIVER
14711 M:      Kevin Cernekee <cernekee@gmail.com>
14712 L:      linux-serial@vger.kernel.org
14713 S:      Odd Fixes
14714 F:      drivers/tty/serial/rp2.*
14715
14716 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
14717 M:      Tomasz Duszynski <tduszyns@gmail.com>
14718 S:      Maintained
14719 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
14720 F:      drivers/iio/light/bh1750.c
14721
14722 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
14723 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14724 L:      linux-kernel@vger.kernel.org
14725 L:      linux-renesas-soc@vger.kernel.org
14726 S:      Supported
14727 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
14728 F:      drivers/gpio/gpio-bd9571mwv.c
14729 F:      drivers/mfd/bd9571mwv.c
14730 F:      drivers/regulator/bd9571mwv-regulator.c
14731 F:      include/linux/mfd/bd9571mwv.h
14732
14733 ROSE NETWORK LAYER
14734 M:      Ralf Baechle <ralf@linux-mips.org>
14735 L:      linux-hams@vger.kernel.org
14736 S:      Maintained
14737 W:      http://www.linux-ax25.org/
14738 F:      include/net/rose.h
14739 F:      include/uapi/linux/rose.h
14740 F:      net/rose/
14741
14742 ROTATION DRIVER FOR ALLWINNER A83T
14743 M:      Jernej Skrabec <jernej.skrabec@siol.net>
14744 L:      linux-media@vger.kernel.org
14745 S:      Maintained
14746 T:      git git://linuxtv.org/media_tree.git
14747 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
14748 F:      drivers/media/platform/sunxi/sun8i-rotate/
14749
14750 RTL2830 MEDIA DRIVER
14751 M:      Antti Palosaari <crope@iki.fi>
14752 L:      linux-media@vger.kernel.org
14753 S:      Maintained
14754 W:      https://linuxtv.org
14755 W:      http://palosaari.fi/linux/
14756 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14757 T:      git git://linuxtv.org/anttip/media_tree.git
14758 F:      drivers/media/dvb-frontends/rtl2830*
14759
14760 RTL2832 MEDIA DRIVER
14761 M:      Antti Palosaari <crope@iki.fi>
14762 L:      linux-media@vger.kernel.org
14763 S:      Maintained
14764 W:      https://linuxtv.org
14765 W:      http://palosaari.fi/linux/
14766 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14767 T:      git git://linuxtv.org/anttip/media_tree.git
14768 F:      drivers/media/dvb-frontends/rtl2832*
14769
14770 RTL2832_SDR MEDIA DRIVER
14771 M:      Antti Palosaari <crope@iki.fi>
14772 L:      linux-media@vger.kernel.org
14773 S:      Maintained
14774 W:      https://linuxtv.org
14775 W:      http://palosaari.fi/linux/
14776 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14777 T:      git git://linuxtv.org/anttip/media_tree.git
14778 F:      drivers/media/dvb-frontends/rtl2832_sdr*
14779
14780 RTL8180 WIRELESS DRIVER
14781 L:      linux-wireless@vger.kernel.org
14782 S:      Orphan
14783 W:      https://wireless.wiki.kernel.org/
14784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14785 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
14786
14787 RTL8187 WIRELESS DRIVER
14788 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
14789 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
14790 M:      Larry Finger <Larry.Finger@lwfinger.net>
14791 L:      linux-wireless@vger.kernel.org
14792 S:      Maintained
14793 W:      https://wireless.wiki.kernel.org/
14794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14795 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
14796
14797 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
14798 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
14799 L:      linux-wireless@vger.kernel.org
14800 S:      Maintained
14801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
14802 F:      drivers/net/wireless/realtek/rtl8xxxu/
14803
14804 RTRS TRANSPORT DRIVERS
14805 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
14806 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14807 L:      linux-rdma@vger.kernel.org
14808 S:      Maintained
14809 F:      drivers/infiniband/ulp/rtrs/
14810
14811 RXRPC SOCKETS (AF_RXRPC)
14812 M:      David Howells <dhowells@redhat.com>
14813 L:      linux-afs@lists.infradead.org
14814 S:      Supported
14815 W:      https://www.infradead.org/~dhowells/kafs/
14816 F:      Documentation/networking/rxrpc.rst
14817 F:      include/keys/rxrpc-type.h
14818 F:      include/net/af_rxrpc.h
14819 F:      include/trace/events/rxrpc.h
14820 F:      include/uapi/linux/rxrpc.h
14821 F:      net/rxrpc/
14822
14823 S3 SAVAGE FRAMEBUFFER DRIVER
14824 M:      Antonino Daplas <adaplas@gmail.com>
14825 L:      linux-fbdev@vger.kernel.org
14826 S:      Maintained
14827 F:      drivers/video/fbdev/savage/
14828
14829 S390
14830 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
14831 M:      Vasily Gorbik <gor@linux.ibm.com>
14832 M:      Christian Borntraeger <borntraeger@de.ibm.com>
14833 L:      linux-s390@vger.kernel.org
14834 S:      Supported
14835 W:      http://www.ibm.com/developerworks/linux/linux390/
14836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
14837 F:      Documentation/driver-api/s390-drivers.rst
14838 F:      Documentation/s390/
14839 F:      arch/s390/
14840 F:      drivers/s390/
14841
14842 S390 COMMON I/O LAYER
14843 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
14844 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
14845 L:      linux-s390@vger.kernel.org
14846 S:      Supported
14847 W:      http://www.ibm.com/developerworks/linux/linux390/
14848 F:      drivers/s390/cio/
14849
14850 S390 DASD DRIVER
14851 M:      Stefan Haberland <sth@linux.ibm.com>
14852 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
14853 L:      linux-s390@vger.kernel.org
14854 S:      Supported
14855 W:      http://www.ibm.com/developerworks/linux/linux390/
14856 F:      block/partitions/ibm.c
14857 F:      drivers/s390/block/dasd*
14858 F:      include/linux/dasd_mod.h
14859
14860 S390 IOMMU (PCI)
14861 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14862 L:      linux-s390@vger.kernel.org
14863 S:      Supported
14864 W:      http://www.ibm.com/developerworks/linux/linux390/
14865 F:      drivers/iommu/s390-iommu.c
14866
14867 S390 IUCV NETWORK LAYER
14868 M:      Julian Wiedmann <jwi@linux.ibm.com>
14869 M:      Karsten Graul <kgraul@linux.ibm.com>
14870 M:      Ursula Braun <ubraun@linux.ibm.com>
14871 L:      linux-s390@vger.kernel.org
14872 S:      Supported
14873 W:      http://www.ibm.com/developerworks/linux/linux390/
14874 F:      drivers/s390/net/*iucv*
14875 F:      include/net/iucv/
14876 F:      net/iucv/
14877
14878 S390 NETWORK DRIVERS
14879 M:      Julian Wiedmann <jwi@linux.ibm.com>
14880 M:      Karsten Graul <kgraul@linux.ibm.com>
14881 M:      Ursula Braun <ubraun@linux.ibm.com>
14882 L:      linux-s390@vger.kernel.org
14883 S:      Supported
14884 W:      http://www.ibm.com/developerworks/linux/linux390/
14885 F:      drivers/s390/net/
14886
14887 S390 PCI SUBSYSTEM
14888 M:      Niklas Schnelle <schnelle@linux.ibm.com>
14889 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14890 L:      linux-s390@vger.kernel.org
14891 S:      Supported
14892 W:      http://www.ibm.com/developerworks/linux/linux390/
14893 F:      arch/s390/pci/
14894 F:      drivers/pci/hotplug/s390_pci_hpc.c
14895 F:      Documentation/s390/pci.rst
14896
14897 S390 VFIO AP DRIVER
14898 M:      Tony Krowiak <akrowiak@linux.ibm.com>
14899 M:      Pierre Morel <pmorel@linux.ibm.com>
14900 M:      Halil Pasic <pasic@linux.ibm.com>
14901 L:      linux-s390@vger.kernel.org
14902 S:      Supported
14903 W:      http://www.ibm.com/developerworks/linux/linux390/
14904 F:      Documentation/s390/vfio-ap.rst
14905 F:      drivers/s390/crypto/vfio_ap_drv.c
14906 F:      drivers/s390/crypto/vfio_ap_ops.c
14907 F:      drivers/s390/crypto/vfio_ap_private.h
14908
14909 S390 VFIO-CCW DRIVER
14910 M:      Cornelia Huck <cohuck@redhat.com>
14911 M:      Eric Farman <farman@linux.ibm.com>
14912 R:      Halil Pasic <pasic@linux.ibm.com>
14913 L:      linux-s390@vger.kernel.org
14914 L:      kvm@vger.kernel.org
14915 S:      Supported
14916 F:      Documentation/s390/vfio-ccw.rst
14917 F:      drivers/s390/cio/vfio_ccw*
14918 F:      include/uapi/linux/vfio_ccw.h
14919
14920 S390 ZCRYPT DRIVER
14921 M:      Harald Freudenberger <freude@linux.ibm.com>
14922 L:      linux-s390@vger.kernel.org
14923 S:      Supported
14924 W:      http://www.ibm.com/developerworks/linux/linux390/
14925 F:      drivers/s390/crypto/
14926
14927 S390 ZFCP DRIVER
14928 M:      Steffen Maier <maier@linux.ibm.com>
14929 M:      Benjamin Block <bblock@linux.ibm.com>
14930 L:      linux-s390@vger.kernel.org
14931 S:      Supported
14932 W:      http://www.ibm.com/developerworks/linux/linux390/
14933 F:      drivers/s390/scsi/zfcp_*
14934
14935 S3C24XX SD/MMC Driver
14936 M:      Ben Dooks <ben-linux@fluff.org>
14937 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14938 S:      Supported
14939 F:      drivers/mmc/host/s3cmci.*
14940
14941 SAA6588 RDS RECEIVER DRIVER
14942 M:      Hans Verkuil <hverkuil@xs4all.nl>
14943 L:      linux-media@vger.kernel.org
14944 S:      Odd Fixes
14945 W:      https://linuxtv.org
14946 T:      git git://linuxtv.org/media_tree.git
14947 F:      drivers/media/i2c/saa6588*
14948
14949 SAA7134 VIDEO4LINUX DRIVER
14950 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14951 L:      linux-media@vger.kernel.org
14952 S:      Odd fixes
14953 W:      https://linuxtv.org
14954 T:      git git://linuxtv.org/media_tree.git
14955 F:      Documentation/driver-api/media/drivers/saa7134*
14956 F:      drivers/media/pci/saa7134/
14957
14958 SAA7146 VIDEO4LINUX-2 DRIVER
14959 M:      Hans Verkuil <hverkuil@xs4all.nl>
14960 L:      linux-media@vger.kernel.org
14961 S:      Maintained
14962 T:      git git://linuxtv.org/media_tree.git
14963 F:      drivers/media/common/saa7146/
14964 F:      drivers/media/pci/saa7146/
14965 F:      include/media/drv-intf/saa7146*
14966
14967 SAFESETID SECURITY MODULE
14968 M:      Micah Morton <mortonm@chromium.org>
14969 S:      Supported
14970 F:      Documentation/admin-guide/LSM/SafeSetID.rst
14971 F:      security/safesetid/
14972
14973 SAMSUNG AUDIO (ASoC) DRIVERS
14974 M:      Krzysztof Kozlowski <krzk@kernel.org>
14975 M:      Sangbeom Kim <sbkim73@samsung.com>
14976 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14977 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14978 S:      Supported
14979 F:      Documentation/devicetree/bindings/sound/samsung*
14980 F:      sound/soc/samsung/
14981
14982 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
14983 M:      Krzysztof Kozlowski <krzk@kernel.org>
14984 L:      linux-crypto@vger.kernel.org
14985 L:      linux-samsung-soc@vger.kernel.org
14986 S:      Maintained
14987 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
14988 F:      drivers/crypto/exynos-rng.c
14989
14990 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
14991 M:      Łukasz Stelmach <l.stelmach@samsung.com>
14992 L:      linux-samsung-soc@vger.kernel.org
14993 S:      Maintained
14994 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
14995 F:      drivers/char/hw_random/exynos-trng.c
14996
14997 SAMSUNG FRAMEBUFFER DRIVER
14998 M:      Jingoo Han <jingoohan1@gmail.com>
14999 L:      linux-fbdev@vger.kernel.org
15000 S:      Maintained
15001 F:      drivers/video/fbdev/s3c-fb.c
15002
15003 SAMSUNG LAPTOP DRIVER
15004 M:      Corentin Chary <corentin.chary@gmail.com>
15005 L:      platform-driver-x86@vger.kernel.org
15006 S:      Maintained
15007 F:      drivers/platform/x86/samsung-laptop.c
15008
15009 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
15010 M:      Sangbeom Kim <sbkim73@samsung.com>
15011 M:      Krzysztof Kozlowski <krzk@kernel.org>
15012 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15013 L:      linux-kernel@vger.kernel.org
15014 L:      linux-samsung-soc@vger.kernel.org
15015 S:      Supported
15016 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
15017 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
15018 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
15019 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
15020 F:      drivers/clk/clk-s2mps11.c
15021 F:      drivers/mfd/sec*.c
15022 F:      drivers/regulator/s2m*.c
15023 F:      drivers/regulator/s5m*.c
15024 F:      drivers/rtc/rtc-s5m.c
15025 F:      include/linux/mfd/samsung/
15026
15027 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
15028 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
15029 L:      linux-media@vger.kernel.org
15030 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
15031 S:      Maintained
15032 F:      drivers/media/platform/s3c-camif/
15033 F:      include/media/drv-intf/s3c_camif.h
15034
15035 SAMSUNG S3FWRN5 NFC DRIVER
15036 M:      Robert Baldyga <r.baldyga@samsung.com>
15037 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
15038 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
15039 S:      Supported
15040 F:      drivers/nfc/s3fwrn5
15041
15042 SAMSUNG S5C73M3 CAMERA DRIVER
15043 M:      Kyungmin Park <kyungmin.park@samsung.com>
15044 M:      Andrzej Hajda <a.hajda@samsung.com>
15045 L:      linux-media@vger.kernel.org
15046 S:      Supported
15047 F:      drivers/media/i2c/s5c73m3/*
15048
15049 SAMSUNG S5K5BAF CAMERA DRIVER
15050 M:      Kyungmin Park <kyungmin.park@samsung.com>
15051 M:      Andrzej Hajda <a.hajda@samsung.com>
15052 L:      linux-media@vger.kernel.org
15053 S:      Supported
15054 F:      drivers/media/i2c/s5k5baf.c
15055
15056 SAMSUNG S5P Security SubSystem (SSS) DRIVER
15057 M:      Krzysztof Kozlowski <krzk@kernel.org>
15058 M:      Vladimir Zapolskiy <vz@mleia.com>
15059 M:      Kamil Konieczny <k.konieczny@samsung.com>
15060 L:      linux-crypto@vger.kernel.org
15061 L:      linux-samsung-soc@vger.kernel.org
15062 S:      Maintained
15063 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
15064 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
15065 F:      drivers/crypto/s5p-sss.c
15066
15067 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
15068 M:      Kyungmin Park <kyungmin.park@samsung.com>
15069 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15070 L:      linux-media@vger.kernel.org
15071 S:      Supported
15072 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15073 F:      drivers/media/platform/exynos4-is/
15074
15075 SAMSUNG SOC CLOCK DRIVERS
15076 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15077 M:      Tomasz Figa <tomasz.figa@gmail.com>
15078 M:      Chanwoo Choi <cw00.choi@samsung.com>
15079 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
15080 S:      Supported
15081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
15082 F:      Documentation/devicetree/bindings/clock/exynos*.txt
15083 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
15084 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
15085 F:      drivers/clk/samsung/
15086 F:      include/dt-bindings/clock/exynos*.h
15087
15088 SAMSUNG SPI DRIVERS
15089 M:      Kukjin Kim <kgene@kernel.org>
15090 M:      Krzysztof Kozlowski <krzk@kernel.org>
15091 M:      Andi Shyti <andi@etezian.org>
15092 L:      linux-spi@vger.kernel.org
15093 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
15094 S:      Maintained
15095 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
15096 F:      drivers/spi/spi-s3c*
15097 F:      include/linux/platform_data/spi-s3c64xx.h
15098
15099 SAMSUNG SXGBE DRIVERS
15100 M:      Byungho An <bh74.an@samsung.com>
15101 L:      netdev@vger.kernel.org
15102 S:      Supported
15103 F:      drivers/net/ethernet/samsung/sxgbe/
15104
15105 SAMSUNG THERMAL DRIVER
15106 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15107 L:      linux-pm@vger.kernel.org
15108 L:      linux-samsung-soc@vger.kernel.org
15109 S:      Supported
15110 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
15111 F:      drivers/thermal/samsung/
15112
15113 SAMSUNG USB2 PHY DRIVER
15114 M:      Kamil Debski <kamil@wypas.org>
15115 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15116 L:      linux-kernel@vger.kernel.org
15117 S:      Supported
15118 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
15119 F:      Documentation/driver-api/phy/samsung-usb2.rst
15120 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
15121 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
15122 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
15123 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
15124 F:      drivers/phy/samsung/phy-samsung-usb2.c
15125 F:      drivers/phy/samsung/phy-samsung-usb2.h
15126
15127 SC1200 WDT DRIVER
15128 M:      Zwane Mwaikambo <zwanem@gmail.com>
15129 S:      Maintained
15130 F:      drivers/watchdog/sc1200wdt.c
15131
15132 SCHEDULER
15133 M:      Ingo Molnar <mingo@redhat.com>
15134 M:      Peter Zijlstra <peterz@infradead.org>
15135 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
15136 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
15137 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
15138 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
15139 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
15140 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
15141 L:      linux-kernel@vger.kernel.org
15142 S:      Maintained
15143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
15144 F:      include/linux/preempt.h
15145 F:      include/linux/sched.h
15146 F:      include/linux/wait.h
15147 F:      include/uapi/linux/sched.h
15148 F:      kernel/sched/
15149
15150 SCR24X CHIP CARD INTERFACE DRIVER
15151 M:      Lubomir Rintel <lkundrak@v3.sk>
15152 S:      Supported
15153 F:      drivers/char/pcmcia/scr24x_cs.c
15154
15155 SCSI CDROM DRIVER
15156 M:      Jens Axboe <axboe@kernel.dk>
15157 L:      linux-scsi@vger.kernel.org
15158 S:      Maintained
15159 W:      http://www.kernel.dk
15160 F:      drivers/scsi/sr*
15161
15162 SCSI RDMA PROTOCOL (SRP) INITIATOR
15163 M:      Bart Van Assche <bvanassche@acm.org>
15164 L:      linux-rdma@vger.kernel.org
15165 S:      Supported
15166 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15167 F:      drivers/infiniband/ulp/srp/
15168 F:      include/scsi/srp.h
15169
15170 SCSI RDMA PROTOCOL (SRP) TARGET
15171 M:      Bart Van Assche <bvanassche@acm.org>
15172 L:      linux-rdma@vger.kernel.org
15173 L:      target-devel@vger.kernel.org
15174 S:      Supported
15175 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15176 F:      drivers/infiniband/ulp/srpt/
15177
15178 SCSI SG DRIVER
15179 M:      Doug Gilbert <dgilbert@interlog.com>
15180 L:      linux-scsi@vger.kernel.org
15181 S:      Maintained
15182 W:      http://sg.danny.cz/sg
15183 F:      Documentation/scsi/scsi-generic.rst
15184 F:      drivers/scsi/sg.c
15185 F:      include/scsi/sg.h
15186
15187 SCSI SUBSYSTEM
15188 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
15189 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15190 L:      linux-scsi@vger.kernel.org
15191 S:      Maintained
15192 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
15193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
15194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15195 F:      Documentation/devicetree/bindings/scsi/
15196 F:      drivers/scsi/
15197 F:      include/scsi/
15198
15199 SCSI TAPE DRIVER
15200 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
15201 L:      linux-scsi@vger.kernel.org
15202 S:      Maintained
15203 F:      Documentation/scsi/st.rst
15204 F:      drivers/scsi/st.*
15205 F:      drivers/scsi/st_*.h
15206
15207 SCSI TARGET SUBSYSTEM
15208 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15209 L:      linux-scsi@vger.kernel.org
15210 L:      target-devel@vger.kernel.org
15211 S:      Supported
15212 W:      http://www.linux-iscsi.org
15213 Q:      https://patchwork.kernel.org/project/target-devel/list/
15214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15215 F:      Documentation/target/
15216 F:      drivers/target/
15217 F:      include/target/
15218
15219 SCTP PROTOCOL
15220 M:      Vlad Yasevich <vyasevich@gmail.com>
15221 M:      Neil Horman <nhorman@tuxdriver.com>
15222 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
15223 L:      linux-sctp@vger.kernel.org
15224 S:      Maintained
15225 W:      http://lksctp.sourceforge.net
15226 F:      Documentation/networking/sctp.rst
15227 F:      include/linux/sctp.h
15228 F:      include/net/sctp/
15229 F:      include/uapi/linux/sctp.h
15230 F:      net/sctp/
15231
15232 SCx200 CPU SUPPORT
15233 M:      Jim Cromie <jim.cromie@gmail.com>
15234 S:      Odd Fixes
15235 F:      Documentation/i2c/busses/scx200_acb.rst
15236 F:      arch/x86/platform/scx200/
15237 F:      drivers/i2c/busses/scx200*
15238 F:      drivers/mtd/maps/scx200_docflash.c
15239 F:      drivers/watchdog/scx200_wdt.c
15240 F:      include/linux/scx200.h
15241
15242 SCx200 GPIO DRIVER
15243 M:      Jim Cromie <jim.cromie@gmail.com>
15244 S:      Maintained
15245 F:      drivers/char/scx200_gpio.c
15246 F:      include/linux/scx200_gpio.h
15247
15248 SCx200 HRT CLOCKSOURCE DRIVER
15249 M:      Jim Cromie <jim.cromie@gmail.com>
15250 S:      Maintained
15251 F:      drivers/clocksource/scx200_hrt.c
15252
15253 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15254 M:      Sascha Sommer <saschasommer@freenet.de>
15255 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
15256 S:      Maintained
15257 F:      drivers/mmc/host/sdricoh_cs.c
15258
15259 SECO BOARDS CEC DRIVER
15260 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
15261 S:      Maintained
15262 F:      drivers/media/platform/seco-cec/seco-cec.c
15263 F:      drivers/media/platform/seco-cec/seco-cec.h
15264
15265 SECURE COMPUTING
15266 M:      Kees Cook <keescook@chromium.org>
15267 R:      Andy Lutomirski <luto@amacapital.net>
15268 R:      Will Drewry <wad@chromium.org>
15269 S:      Supported
15270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15271 F:      Documentation/userspace-api/seccomp_filter.rst
15272 F:      include/linux/seccomp.h
15273 F:      include/uapi/linux/seccomp.h
15274 F:      kernel/seccomp.c
15275 F:      tools/testing/selftests/kselftest_harness.h
15276 F:      tools/testing/selftests/seccomp/*
15277 K:      \bsecure_computing
15278 K:      \bTIF_SECCOMP\b
15279
15280 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15281 M:      Al Cooper <alcooperx@gmail.com>
15282 L:      linux-mmc@vger.kernel.org
15283 L:      bcm-kernel-feedback-list@broadcom.com
15284 S:      Maintained
15285 F:      drivers/mmc/host/sdhci-brcmstb*
15286
15287 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15288 M:      Adrian Hunter <adrian.hunter@intel.com>
15289 L:      linux-mmc@vger.kernel.org
15290 S:      Maintained
15291 F:      drivers/mmc/host/sdhci*
15292 F:      include/linux/mmc/sdhci*
15293
15294 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15295 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15296 L:      linux-mmc@vger.kernel.org
15297 S:      Supported
15298 F:      drivers/mmc/host/sdhci-of-at91.c
15299
15300 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15301 M:      Ben Dooks <ben-linux@fluff.org>
15302 M:      Jaehoon Chung <jh80.chung@samsung.com>
15303 L:      linux-mmc@vger.kernel.org
15304 S:      Maintained
15305 F:      drivers/mmc/host/sdhci-s3c*
15306
15307 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15308 M:      Viresh Kumar <vireshk@kernel.org>
15309 L:      linux-mmc@vger.kernel.org
15310 S:      Maintained
15311 F:      drivers/mmc/host/sdhci-spear.c
15312
15313 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15314 M:      Kishon Vijay Abraham I <kishon@ti.com>
15315 L:      linux-mmc@vger.kernel.org
15316 S:      Maintained
15317 F:      drivers/mmc/host/sdhci-omap.c
15318
15319 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15320 M:      Jonathan Derrick <jonathan.derrick@intel.com>
15321 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
15322 L:      linux-block@vger.kernel.org
15323 S:      Supported
15324 F:      block/opal_proto.h
15325 F:      block/sed*
15326 F:      include/linux/sed*
15327 F:      include/uapi/linux/sed*
15328
15329 SECURITY CONTACT
15330 M:      Security Officers <security@kernel.org>
15331 S:      Supported
15332
15333 SECURITY SUBSYSTEM
15334 M:      James Morris <jmorris@namei.org>
15335 M:      "Serge E. Hallyn" <serge@hallyn.com>
15336 L:      linux-security-module@vger.kernel.org (suggested Cc:)
15337 S:      Supported
15338 W:      http://kernsec.org/
15339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15340 F:      security/
15341 X:      security/selinux/
15342
15343 SELINUX SECURITY MODULE
15344 M:      Paul Moore <paul@paul-moore.com>
15345 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
15346 M:      Eric Paris <eparis@parisplace.org>
15347 L:      selinux@vger.kernel.org
15348 S:      Supported
15349 W:      https://selinuxproject.org
15350 W:      https://github.com/SELinuxProject
15351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15352 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15353 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15354 F:      Documentation/admin-guide/LSM/SELinux.rst
15355 F:      include/uapi/linux/selinux_netlink.h
15356 F:      scripts/selinux/
15357 F:      security/selinux/
15358
15359 SENSABLE PHANTOM
15360 M:      Jiri Slaby <jirislaby@gmail.com>
15361 S:      Maintained
15362 F:      drivers/misc/phantom.c
15363 F:      include/uapi/linux/phantom.h
15364
15365 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15366 M:      Tomasz Duszynski <tduszyns@gmail.com>
15367 S:      Maintained
15368 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15369 F:      drivers/iio/chemical/sps30.c
15370
15371 SERIAL DEVICE BUS
15372 M:      Rob Herring <robh@kernel.org>
15373 L:      linux-serial@vger.kernel.org
15374 S:      Maintained
15375 F:      Documentation/devicetree/bindings/serial/serial.yaml
15376 F:      drivers/tty/serdev/
15377 F:      include/linux/serdev.h
15378
15379 SERIAL DRIVERS
15380 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15381 L:      linux-serial@vger.kernel.org
15382 S:      Maintained
15383 F:      Documentation/devicetree/bindings/serial/
15384 F:      drivers/tty/serial/
15385
15386 SERIAL IR RECEIVER
15387 M:      Sean Young <sean@mess.org>
15388 L:      linux-media@vger.kernel.org
15389 S:      Maintained
15390 F:      drivers/media/rc/serial_ir.c
15391
15392 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15393 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15394 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15395 S:      Maintained
15396 F:      Documentation/devicetree/bindings/slimbus/
15397 F:      drivers/slimbus/
15398 F:      include/linux/slimbus.h
15399
15400 SFC NETWORK DRIVER
15401 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
15402 M:      Edward Cree <ecree@solarflare.com>
15403 M:      Martin Habets <mhabets@solarflare.com>
15404 L:      netdev@vger.kernel.org
15405 S:      Supported
15406 F:      drivers/net/ethernet/sfc/
15407
15408 SFF/SFP/SFP+ MODULE SUPPORT
15409 M:      Russell King <linux@armlinux.org.uk>
15410 L:      netdev@vger.kernel.org
15411 S:      Maintained
15412 F:      drivers/net/phy/phylink.c
15413 F:      drivers/net/phy/sfp*
15414 F:      include/linux/phylink.h
15415 F:      include/linux/sfp.h
15416 K:      phylink
15417
15418 SGI GRU DRIVER
15419 M:      Dimitri Sivanich <sivanich@sgi.com>
15420 S:      Maintained
15421 F:      drivers/misc/sgi-gru/
15422
15423 SGI XP/XPC/XPNET DRIVER
15424 M:      Cliff Whickman <cpw@sgi.com>
15425 M:      Robin Holt <robinmholt@gmail.com>
15426 S:      Maintained
15427 F:      drivers/misc/sgi-xp/
15428
15429 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
15430 M:      Ursula Braun <ubraun@linux.ibm.com>
15431 M:      Karsten Graul <kgraul@linux.ibm.com>
15432 L:      linux-s390@vger.kernel.org
15433 S:      Supported
15434 W:      http://www.ibm.com/developerworks/linux/linux390/
15435 F:      net/smc/
15436
15437 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
15438 M:      Linus Walleij <linus.walleij@linaro.org>
15439 L:      linux-iio@vger.kernel.org
15440 S:      Maintained
15441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
15442 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
15443 F:      drivers/iio/light/gp2ap002.c
15444
15445 SHARP RJ54N1CB0C SENSOR DRIVER
15446 M:      Jacopo Mondi <jacopo@jmondi.org>
15447 L:      linux-media@vger.kernel.org
15448 S:      Odd fixes
15449 T:      git git://linuxtv.org/media_tree.git
15450 F:      drivers/media/i2c/rj54n1cb0c.c
15451 F:      include/media/i2c/rj54n1cb0c.h
15452
15453 SH_VOU V4L2 OUTPUT DRIVER
15454 L:      linux-media@vger.kernel.org
15455 S:      Orphan
15456 F:      drivers/media/platform/sh_vou.c
15457 F:      include/media/drv-intf/sh_vou.h
15458
15459 SI2157 MEDIA DRIVER
15460 M:      Antti Palosaari <crope@iki.fi>
15461 L:      linux-media@vger.kernel.org
15462 S:      Maintained
15463 W:      https://linuxtv.org
15464 W:      http://palosaari.fi/linux/
15465 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15466 T:      git git://linuxtv.org/anttip/media_tree.git
15467 F:      drivers/media/tuners/si2157*
15468
15469 SI2165 MEDIA DRIVER
15470 M:      Matthias Schwarzott <zzam@gentoo.org>
15471 L:      linux-media@vger.kernel.org
15472 S:      Maintained
15473 W:      https://linuxtv.org
15474 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15475 F:      drivers/media/dvb-frontends/si2165*
15476
15477 SI2168 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/dvb-frontends/si2168*
15486
15487 SI470X FM RADIO RECEIVER I2C DRIVER
15488 M:      Hans Verkuil <hverkuil@xs4all.nl>
15489 L:      linux-media@vger.kernel.org
15490 S:      Odd Fixes
15491 W:      https://linuxtv.org
15492 T:      git git://linuxtv.org/media_tree.git
15493 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
15494
15495 SI470X FM RADIO RECEIVER USB DRIVER
15496 M:      Hans Verkuil <hverkuil@xs4all.nl>
15497 L:      linux-media@vger.kernel.org
15498 S:      Maintained
15499 W:      https://linuxtv.org
15500 T:      git git://linuxtv.org/media_tree.git
15501 F:      drivers/media/radio/si470x/radio-si470x-common.c
15502 F:      drivers/media/radio/si470x/radio-si470x-usb.c
15503 F:      drivers/media/radio/si470x/radio-si470x.h
15504
15505 SI4713 FM RADIO TRANSMITTER I2C DRIVER
15506 M:      Eduardo Valentin <edubezval@gmail.com>
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/si4713/si4713.?
15512
15513 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
15514 M:      Eduardo Valentin <edubezval@gmail.com>
15515 L:      linux-media@vger.kernel.org
15516 S:      Odd Fixes
15517 W:      https://linuxtv.org
15518 T:      git git://linuxtv.org/media_tree.git
15519 F:      drivers/media/radio/si4713/radio-platform-si4713.c
15520
15521 SI4713 FM RADIO TRANSMITTER USB DRIVER
15522 M:      Hans Verkuil <hverkuil@xs4all.nl>
15523 L:      linux-media@vger.kernel.org
15524 S:      Maintained
15525 W:      https://linuxtv.org
15526 T:      git git://linuxtv.org/media_tree.git
15527 F:      drivers/media/radio/si4713/radio-usb-si4713.c
15528
15529 SIANO DVB DRIVER
15530 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15531 L:      linux-media@vger.kernel.org
15532 S:      Odd fixes
15533 W:      https://linuxtv.org
15534 T:      git git://linuxtv.org/media_tree.git
15535 F:      drivers/media/common/siano/
15536 F:      drivers/media/mmc/siano/
15537 F:      drivers/media/usb/siano/
15538 F:      drivers/media/usb/siano/
15539
15540 SIFIVE DRIVERS
15541 M:      Palmer Dabbelt <palmer@dabbelt.com>
15542 M:      Paul Walmsley <paul.walmsley@sifive.com>
15543 L:      linux-riscv@lists.infradead.org
15544 S:      Supported
15545 T:      git git://github.com/sifive/riscv-linux.git
15546 N:      sifive
15547 K:      [^@]sifive
15548
15549 SIFIVE FU540 SYSTEM-ON-CHIP
15550 M:      Paul Walmsley <paul.walmsley@sifive.com>
15551 M:      Palmer Dabbelt <palmer@dabbelt.com>
15552 L:      linux-riscv@lists.infradead.org
15553 S:      Supported
15554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
15555 N:      fu540
15556 K:      fu540
15557
15558 SIFIVE PDMA DRIVER
15559 M:      Green Wan <green.wan@sifive.com>
15560 S:      Maintained
15561 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
15562 F:      drivers/dma/sf-pdma/
15563
15564 SILEAD TOUCHSCREEN DRIVER
15565 M:      Hans de Goede <hdegoede@redhat.com>
15566 L:      linux-input@vger.kernel.org
15567 L:      platform-driver-x86@vger.kernel.org
15568 S:      Maintained
15569 F:      drivers/input/touchscreen/silead.c
15570 F:      drivers/platform/x86/touchscreen_dmi.c
15571
15572 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
15573 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
15574 S:      Supported
15575 F:      drivers/staging/wfx/
15576
15577 SILICON MOTION SM712 FRAME BUFFER DRIVER
15578 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15579 M:      Teddy Wang <teddy.wang@siliconmotion.com>
15580 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15581 L:      linux-fbdev@vger.kernel.org
15582 S:      Maintained
15583 F:      Documentation/fb/sm712fb.rst
15584 F:      drivers/video/fbdev/sm712*
15585
15586 SIMPLE FIRMWARE INTERFACE (SFI)
15587 S:      Obsolete
15588 W:      http://simplefirmware.org/
15589 F:      arch/x86/platform/sfi/
15590 F:      drivers/sfi/
15591 F:      include/linux/sfi*.h
15592
15593 SIMPLEFB FB DRIVER
15594 M:      Hans de Goede <hdegoede@redhat.com>
15595 L:      linux-fbdev@vger.kernel.org
15596 S:      Maintained
15597 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
15598 F:      drivers/video/fbdev/simplefb.c
15599 F:      include/linux/platform_data/simplefb.h
15600
15601 SIMTEC EB110ATX (Chalice CATS)
15602 M:      Vincent Sanders <vince@simtec.co.uk>
15603 M:      Simtec Linux Team <linux@simtec.co.uk>
15604 S:      Supported
15605 W:      http://www.simtec.co.uk/products/EB110ATX/
15606
15607 SIMTEC EB2410ITX (BAST)
15608 M:      Vincent Sanders <vince@simtec.co.uk>
15609 M:      Simtec Linux Team <linux@simtec.co.uk>
15610 S:      Supported
15611 W:      http://www.simtec.co.uk/products/EB2410ITX/
15612 F:      arch/arm/mach-s3c24xx/bast-ide.c
15613 F:      arch/arm/mach-s3c24xx/bast-irq.c
15614 F:      arch/arm/mach-s3c24xx/mach-bast.c
15615
15616 SIOX
15617 M:      Thorsten Scherer <t.scherer@eckelmann.de>
15618 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15619 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15620 S:      Supported
15621 F:      drivers/gpio/gpio-siox.c
15622 F:      drivers/siox/*
15623 F:      include/trace/events/siox.h
15624
15625 SIPHASH PRF ROUTINES
15626 M:      Jason A. Donenfeld <Jason@zx2c4.com>
15627 S:      Maintained
15628 F:      include/linux/siphash.h
15629 F:      lib/siphash.c
15630 F:      lib/test_siphash.c
15631
15632 SIS 190 ETHERNET DRIVER
15633 M:      Francois Romieu <romieu@fr.zoreil.com>
15634 L:      netdev@vger.kernel.org
15635 S:      Maintained
15636 F:      drivers/net/ethernet/sis/sis190.c
15637
15638 SIS 900/7016 FAST ETHERNET DRIVER
15639 M:      Daniele Venzano <venza@brownhat.org>
15640 L:      netdev@vger.kernel.org
15641 S:      Maintained
15642 W:      http://www.brownhat.org/sis900.html
15643 F:      drivers/net/ethernet/sis/sis900.*
15644
15645 SIS FRAMEBUFFER DRIVER
15646 M:      Thomas Winischhofer <thomas@winischhofer.net>
15647 S:      Maintained
15648 W:      http://www.winischhofer.net/linuxsisvga.shtml
15649 F:      Documentation/fb/sisfb.rst
15650 F:      drivers/video/fbdev/sis/
15651 F:      include/video/sisfb.h
15652
15653 SIS USB2VGA DRIVER
15654 M:      Thomas Winischhofer <thomas@winischhofer.net>
15655 S:      Maintained
15656 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
15657 F:      drivers/usb/misc/sisusbvga/
15658
15659 SLAB ALLOCATOR
15660 M:      Christoph Lameter <cl@linux.com>
15661 M:      Pekka Enberg <penberg@kernel.org>
15662 M:      David Rientjes <rientjes@google.com>
15663 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
15664 M:      Andrew Morton <akpm@linux-foundation.org>
15665 L:      linux-mm@kvack.org
15666 S:      Maintained
15667 F:      include/linux/sl?b*.h
15668 F:      mm/sl?b*
15669
15670 SLEEPABLE READ-COPY UPDATE (SRCU)
15671 M:      Lai Jiangshan <jiangshanlai@gmail.com>
15672 M:      "Paul E. McKenney" <paulmck@kernel.org>
15673 M:      Josh Triplett <josh@joshtriplett.org>
15674 R:      Steven Rostedt <rostedt@goodmis.org>
15675 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15676 L:      rcu@vger.kernel.org
15677 S:      Supported
15678 W:      http://www.rdrop.com/users/paulmck/RCU/
15679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15680 F:      include/linux/srcu*.h
15681 F:      kernel/rcu/srcu*.c
15682
15683 SMACK SECURITY MODULE
15684 M:      Casey Schaufler <casey@schaufler-ca.com>
15685 L:      linux-security-module@vger.kernel.org
15686 S:      Maintained
15687 W:      http://schaufler-ca.com
15688 T:      git git://github.com/cschaufler/smack-next
15689 F:      Documentation/admin-guide/LSM/Smack.rst
15690 F:      security/smack/
15691
15692 SMC91x ETHERNET DRIVER
15693 M:      Nicolas Pitre <nico@fluxnic.net>
15694 S:      Odd Fixes
15695 F:      drivers/net/ethernet/smsc/smc91x.*
15696
15697 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
15698 M:      Mark Rutland <mark.rutland@arm.com>
15699 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15700 M:      Sudeep Holla <sudeep.holla@arm.com>
15701 L:      linux-arm-kernel@lists.infradead.org
15702 S:      Maintained
15703 F:      drivers/firmware/smccc/
15704 F:      include/linux/arm-smccc.h
15705
15706 SMIA AND SMIA++ IMAGE SENSOR DRIVER
15707 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15708 L:      linux-media@vger.kernel.org
15709 S:      Maintained
15710 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
15711 F:      drivers/media/i2c/smiapp-pll.c
15712 F:      drivers/media/i2c/smiapp-pll.h
15713 F:      drivers/media/i2c/smiapp/
15714 F:      include/uapi/linux/smiapp.h
15715
15716 SMM665 HARDWARE MONITOR DRIVER
15717 M:      Guenter Roeck <linux@roeck-us.net>
15718 L:      linux-hwmon@vger.kernel.org
15719 S:      Maintained
15720 F:      Documentation/hwmon/smm665.rst
15721 F:      drivers/hwmon/smm665.c
15722
15723 SMSC EMC2103 HARDWARE MONITOR DRIVER
15724 M:      Steve Glendinning <steve.glendinning@shawell.net>
15725 L:      linux-hwmon@vger.kernel.org
15726 S:      Maintained
15727 F:      Documentation/hwmon/emc2103.rst
15728 F:      drivers/hwmon/emc2103.c
15729
15730 SMSC SCH5627 HARDWARE MONITOR DRIVER
15731 M:      Hans de Goede <hdegoede@redhat.com>
15732 L:      linux-hwmon@vger.kernel.org
15733 S:      Supported
15734 F:      Documentation/hwmon/sch5627.rst
15735 F:      drivers/hwmon/sch5627.c
15736
15737 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
15738 M:      Steve Glendinning <steve.glendinning@shawell.net>
15739 L:      linux-fbdev@vger.kernel.org
15740 S:      Maintained
15741 F:      drivers/video/fbdev/smscufx.c
15742
15743 SMSC47B397 HARDWARE MONITOR DRIVER
15744 M:      Jean Delvare <jdelvare@suse.com>
15745 L:      linux-hwmon@vger.kernel.org
15746 S:      Maintained
15747 F:      Documentation/hwmon/smsc47b397.rst
15748 F:      drivers/hwmon/smsc47b397.c
15749
15750 SMSC911x ETHERNET DRIVER
15751 M:      Steve Glendinning <steve.glendinning@shawell.net>
15752 L:      netdev@vger.kernel.org
15753 S:      Maintained
15754 F:      drivers/net/ethernet/smsc/smsc911x.*
15755 F:      include/linux/smsc911x.h
15756
15757 SMSC9420 PCI ETHERNET DRIVER
15758 M:      Steve Glendinning <steve.glendinning@shawell.net>
15759 L:      netdev@vger.kernel.org
15760 S:      Maintained
15761 F:      drivers/net/ethernet/smsc/smsc9420.*
15762
15763 SOC-CAMERA V4L2 SUBSYSTEM
15764 L:      linux-media@vger.kernel.org
15765 S:      Orphan
15766 T:      git git://linuxtv.org/media_tree.git
15767 F:      drivers/staging/media/soc_camera/
15768 F:      include/media/soc_camera.h
15769
15770 SOCIONEXT (SNI) AVE NETWORK DRIVER
15771 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15772 L:      netdev@vger.kernel.org
15773 S:      Maintained
15774 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
15775 F:      drivers/net/ethernet/socionext/sni_ave.c
15776
15777 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
15778 M:      Jassi Brar <jaswinder.singh@linaro.org>
15779 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15780 L:      netdev@vger.kernel.org
15781 S:      Maintained
15782 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
15783 F:      drivers/net/ethernet/socionext/netsec.c
15784
15785 SOCIONEXT (SNI) Synquacer SPI DRIVER
15786 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
15787 M:      Jassi Brar <jaswinder.singh@linaro.org>
15788 L:      linux-spi@vger.kernel.org
15789 S:      Maintained
15790 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
15791 F:      drivers/spi/spi-synquacer.c
15792
15793 SOCIONEXT SYNQUACER I2C DRIVER
15794 M:      Ard Biesheuvel <ardb@kernel.org>
15795 L:      linux-i2c@vger.kernel.org
15796 S:      Maintained
15797 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
15798 F:      drivers/i2c/busses/i2c-synquacer.c
15799
15800 SOCIONEXT UNIPHIER SOUND DRIVER
15801 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15802 S:      Orphan
15803 F:      sound/soc/uniphier/
15804
15805 SOEKRIS NET48XX LED SUPPORT
15806 M:      Chris Boot <bootc@bootc.net>
15807 S:      Maintained
15808 F:      drivers/leds/leds-net48xx.c
15809
15810 SOFT-IWARP DRIVER (siw)
15811 M:      Bernard Metzler <bmt@zurich.ibm.com>
15812 L:      linux-rdma@vger.kernel.org
15813 S:      Supported
15814 F:      drivers/infiniband/sw/siw/
15815 F:      include/uapi/rdma/siw-abi.h
15816
15817 SOFT-ROCE DRIVER (rxe)
15818 M:      Zhu Yanjun <yanjunz@mellanox.com>
15819 L:      linux-rdma@vger.kernel.org
15820 S:      Supported
15821 F:      drivers/infiniband/sw/rxe/
15822 F:      include/uapi/rdma/rdma_user_rxe.h
15823
15824 SOFTLOGIC 6x10 MPEG CODEC
15825 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
15826 M:      Anton Sviridenko <anton@corp.bluecherry.net>
15827 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
15828 M:      Andrey Utkin <andrey_utkin@fastmail.com>
15829 M:      Ismael Luceno <ismael@iodev.co.uk>
15830 L:      linux-media@vger.kernel.org
15831 S:      Supported
15832 F:      drivers/media/pci/solo6x10/
15833
15834 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
15835 M:      James Morse <james.morse@arm.com>
15836 L:      linux-arm-kernel@lists.infradead.org
15837 S:      Maintained
15838 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
15839 F:      drivers/firmware/arm_sdei.c
15840 F:      include/linux/arm_sdei.h
15841 F:      include/uapi/linux/arm_sdei.h
15842
15843 SOFTWARE RAID (Multiple Disks) SUPPORT
15844 M:      Song Liu <song@kernel.org>
15845 L:      linux-raid@vger.kernel.org
15846 S:      Supported
15847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
15848 F:      drivers/md/Kconfig
15849 F:      drivers/md/Makefile
15850 F:      drivers/md/md*
15851 F:      drivers/md/raid*
15852 F:      include/linux/raid/
15853 F:      include/uapi/linux/raid/
15854
15855 SOLIDRUN CLEARFOG SUPPORT
15856 M:      Russell King <linux@armlinux.org.uk>
15857 S:      Maintained
15858 F:      arch/arm/boot/dts/armada-388-clearfog*
15859 F:      arch/arm/boot/dts/armada-38x-solidrun-*
15860
15861 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
15862 M:      Russell King <linux@armlinux.org.uk>
15863 S:      Maintained
15864 F:      arch/arm/boot/dts/imx6*-cubox-i*
15865 F:      arch/arm/boot/dts/imx6*-hummingboard*
15866 F:      arch/arm/boot/dts/imx6*-sr-*
15867
15868 SONIC NETWORK DRIVER
15869 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
15870 L:      netdev@vger.kernel.org
15871 S:      Maintained
15872 F:      drivers/net/ethernet/natsemi/sonic.*
15873
15874 SONICS SILICON BACKPLANE DRIVER (SSB)
15875 M:      Michael Buesch <m@bues.ch>
15876 L:      linux-wireless@vger.kernel.org
15877 S:      Maintained
15878 F:      drivers/ssb/
15879 F:      include/linux/ssb/
15880
15881 SONY IMX214 SENSOR DRIVER
15882 M:      Ricardo Ribalda <ribalda@kernel.org>
15883 L:      linux-media@vger.kernel.org
15884 S:      Maintained
15885 T:      git git://linuxtv.org/media_tree.git
15886 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
15887 F:      drivers/media/i2c/imx214.c
15888
15889 SONY IMX219 SENSOR DRIVER
15890 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
15891 L:      linux-media@vger.kernel.org
15892 S:      Maintained
15893 T:      git git://linuxtv.org/media_tree.git
15894 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
15895 F:      drivers/media/i2c/imx219.c
15896
15897 SONY IMX258 SENSOR DRIVER
15898 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15899 L:      linux-media@vger.kernel.org
15900 S:      Maintained
15901 T:      git git://linuxtv.org/media_tree.git
15902 F:      drivers/media/i2c/imx258.c
15903
15904 SONY IMX274 SENSOR DRIVER
15905 M:      Leon Luo <leonl@leopardimaging.com>
15906 L:      linux-media@vger.kernel.org
15907 S:      Maintained
15908 T:      git git://linuxtv.org/media_tree.git
15909 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
15910 F:      drivers/media/i2c/imx274.c
15911
15912 SONY IMX290 SENSOR DRIVER
15913 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15914 L:      linux-media@vger.kernel.org
15915 S:      Maintained
15916 T:      git git://linuxtv.org/media_tree.git
15917 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
15918 F:      drivers/media/i2c/imx290.c
15919
15920 SONY IMX319 SENSOR DRIVER
15921 M:      Bingbu Cao <bingbu.cao@intel.com>
15922 L:      linux-media@vger.kernel.org
15923 S:      Maintained
15924 T:      git git://linuxtv.org/media_tree.git
15925 F:      drivers/media/i2c/imx319.c
15926
15927 SONY IMX355 SENSOR DRIVER
15928 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15929 L:      linux-media@vger.kernel.org
15930 S:      Maintained
15931 T:      git git://linuxtv.org/media_tree.git
15932 F:      drivers/media/i2c/imx355.c
15933
15934 SONY MEMORYSTICK SUBSYSTEM
15935 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15936 M:      Alex Dubov <oakad@yahoo.com>
15937 M:      Ulf Hansson <ulf.hansson@linaro.org>
15938 L:      linux-mmc@vger.kernel.org
15939 S:      Maintained
15940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15941 F:      drivers/memstick/
15942 F:      include/linux/memstick.h
15943
15944 SONY VAIO CONTROL DEVICE DRIVER
15945 M:      Mattia Dongili <malattia@linux.it>
15946 L:      platform-driver-x86@vger.kernel.org
15947 S:      Maintained
15948 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
15949 F:      Documentation/admin-guide/laptops/sony-laptop.rst
15950 F:      drivers/char/sonypi.c
15951 F:      drivers/platform/x86/sony-laptop.c
15952 F:      include/linux/sony-laptop.h
15953
15954 SOUND
15955 M:      Jaroslav Kysela <perex@perex.cz>
15956 M:      Takashi Iwai <tiwai@suse.com>
15957 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15958 S:      Maintained
15959 W:      http://www.alsa-project.org/
15960 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
15961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15962 F:      Documentation/sound/
15963 F:      include/sound/
15964 F:      include/uapi/sound/
15965 F:      sound/
15966
15967 SOUND - COMPRESSED AUDIO
15968 M:      Vinod Koul <vkoul@kernel.org>
15969 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15970 S:      Supported
15971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15972 F:      Documentation/sound/designs/compress-offload.rst
15973 F:      include/sound/compress_driver.h
15974 F:      include/uapi/sound/compress_*
15975 F:      sound/core/compress_offload.c
15976 F:      sound/soc/soc-compress.c
15977
15978 SOUND - DMAENGINE HELPERS
15979 M:      Lars-Peter Clausen <lars@metafoo.de>
15980 S:      Supported
15981 F:      include/sound/dmaengine_pcm.h
15982 F:      sound/core/pcm_dmaengine.c
15983 F:      sound/soc/soc-generic-dmaengine-pcm.c
15984
15985 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
15986 M:      Liam Girdwood <lgirdwood@gmail.com>
15987 M:      Mark Brown <broonie@kernel.org>
15988 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15989 S:      Supported
15990 W:      http://alsa-project.org/main/index.php/ASoC
15991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
15992 F:      Documentation/devicetree/bindings/sound/
15993 F:      Documentation/sound/soc/
15994 F:      include/dt-bindings/sound/
15995 F:      include/sound/soc*
15996 F:      sound/soc/
15997
15998 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
15999 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16000 M:      Liam Girdwood <lgirdwood@gmail.com>
16001 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
16002 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
16003 M:      Daniel Baluta <daniel.baluta@nxp.com>
16004 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
16005 S:      Supported
16006 W:      https://github.com/thesofproject/linux/
16007 F:      sound/soc/sof/
16008
16009 SOUNDWIRE SUBSYSTEM
16010 M:      Vinod Koul <vkoul@kernel.org>
16011 M:      Sanyog Kale <sanyog.r.kale@intel.com>
16012 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16013 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16014 S:      Supported
16015 F:      Documentation/driver-api/soundwire/
16016 F:      drivers/soundwire/
16017 F:      include/linux/soundwire/
16018
16019 SP2 MEDIA DRIVER
16020 M:      Olli Salonen <olli.salonen@iki.fi>
16021 L:      linux-media@vger.kernel.org
16022 S:      Maintained
16023 W:      https://linuxtv.org
16024 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16025 F:      drivers/media/dvb-frontends/sp2*
16026
16027 SPARC + UltraSPARC (sparc/sparc64)
16028 M:      "David S. Miller" <davem@davemloft.net>
16029 L:      sparclinux@vger.kernel.org
16030 S:      Maintained
16031 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
16032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16034 F:      arch/sparc/
16035 F:      drivers/sbus/
16036
16037 SPARC SERIAL DRIVERS
16038 M:      "David S. Miller" <davem@davemloft.net>
16039 L:      sparclinux@vger.kernel.org
16040 S:      Maintained
16041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16043 F:      drivers/tty/serial/suncore.c
16044 F:      drivers/tty/serial/sunhv.c
16045 F:      drivers/tty/serial/sunsab.c
16046 F:      drivers/tty/serial/sunsab.h
16047 F:      drivers/tty/serial/sunsu.c
16048 F:      drivers/tty/serial/sunzilog.c
16049 F:      drivers/tty/serial/sunzilog.h
16050 F:      drivers/tty/vcc.c
16051 F:      include/linux/sunserialcore.h
16052
16053 SPARSE CHECKER
16054 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
16055 L:      linux-sparse@vger.kernel.org
16056 S:      Maintained
16057 W:      https://sparse.wiki.kernel.org/
16058 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
16059 F:      include/linux/compiler.h
16060
16061 SPEAR CLOCK FRAMEWORK SUPPORT
16062 M:      Viresh Kumar <vireshk@kernel.org>
16063 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16064 S:      Maintained
16065 W:      http://www.st.com/spear
16066 F:      drivers/clk/spear/
16067
16068 SPEAR PLATFORM SUPPORT
16069 M:      Viresh Kumar <vireshk@kernel.org>
16070 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
16071 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16072 S:      Maintained
16073 W:      http://www.st.com/spear
16074 F:      arch/arm/boot/dts/spear*
16075 F:      arch/arm/mach-spear/
16076
16077 SPI NOR SUBSYSTEM
16078 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
16079 L:      linux-mtd@lists.infradead.org
16080 S:      Maintained
16081 W:      http://www.linux-mtd.infradead.org/
16082 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
16083 C:      irc://irc.oftc.net/mtd
16084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
16085 F:      drivers/mtd/spi-nor/
16086 F:      include/linux/mtd/spi-nor.h
16087
16088 SPI SUBSYSTEM
16089 M:      Mark Brown <broonie@kernel.org>
16090 L:      linux-spi@vger.kernel.org
16091 S:      Maintained
16092 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
16093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
16094 F:      Documentation/devicetree/bindings/spi/
16095 F:      Documentation/spi/
16096 F:      drivers/spi/
16097 F:      include/linux/spi/
16098 F:      include/uapi/linux/spi/
16099 F:      tools/spi/
16100
16101 SPIDERNET NETWORK DRIVER for CELL
16102 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
16103 L:      netdev@vger.kernel.org
16104 S:      Supported
16105 F:      Documentation/networking/device_drivers/toshiba/spider_net.rst
16106 F:      drivers/net/ethernet/toshiba/spider_net*
16107
16108 SPMI SUBSYSTEM
16109 R:      Stephen Boyd <sboyd@kernel.org>
16110 L:      linux-arm-msm@vger.kernel.org
16111 F:      Documentation/devicetree/bindings/spmi/
16112 F:      drivers/spmi/
16113 F:      include/dt-bindings/spmi/spmi.h
16114 F:      include/linux/spmi.h
16115 F:      include/trace/events/spmi.h
16116
16117 SPU FILE SYSTEM
16118 M:      Jeremy Kerr <jk@ozlabs.org>
16119 L:      linuxppc-dev@lists.ozlabs.org
16120 S:      Supported
16121 W:      http://www.ibm.com/developerworks/power/cell/
16122 F:      Documentation/filesystems/spufs/spufs.rst
16123 F:      arch/powerpc/platforms/cell/spufs/
16124
16125 SQUASHFS FILE SYSTEM
16126 M:      Phillip Lougher <phillip@squashfs.org.uk>
16127 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
16128 S:      Maintained
16129 W:      http://squashfs.org.uk
16130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
16131 F:      Documentation/filesystems/squashfs.rst
16132 F:      fs/squashfs/
16133
16134 SRM (Alpha) environment access
16135 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
16136 S:      Maintained
16137 F:      arch/alpha/kernel/srm_env.c
16138
16139 ST LSM6DSx IMU IIO DRIVER
16140 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
16141 L:      linux-iio@vger.kernel.org
16142 S:      Maintained
16143 W:      http://www.st.com/
16144 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
16145 F:      drivers/iio/imu/st_lsm6dsx/
16146
16147 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
16148 M:      Mickael Guene <mickael.guene@st.com>
16149 L:      linux-media@vger.kernel.org
16150 S:      Maintained
16151 T:      git git://linuxtv.org/media_tree.git
16152 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
16153 F:      drivers/media/i2c/st-mipid02.c
16154
16155 ST STM32 I2C/SMBUS DRIVER
16156 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
16157 L:      linux-i2c@vger.kernel.org
16158 S:      Maintained
16159 F:      drivers/i2c/busses/i2c-stm32*
16160
16161 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
16162 M:      Song Qiang <songqiang1304521@gmail.com>
16163 L:      linux-iio@vger.kernel.org
16164 S:      Maintained
16165 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
16166 F:      drivers/iio/proximity/vl53l0x-i2c.c
16167
16168 STABLE BRANCH
16169 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16170 M:      Sasha Levin <sashal@kernel.org>
16171 L:      stable@vger.kernel.org
16172 S:      Supported
16173 F:      Documentation/process/stable-kernel-rules.rst
16174
16175 STAGING - ATOMISP DRIVER
16176 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16177 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
16178 L:      linux-media@vger.kernel.org
16179 S:      Maintained
16180 F:      drivers/staging/media/atomisp/
16181
16182 STAGING - COMEDI
16183 M:      Ian Abbott <abbotti@mev.co.uk>
16184 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
16185 S:      Odd Fixes
16186 F:      drivers/staging/comedi/
16187
16188 STAGING - FIELDBUS SUBSYSTEM
16189 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16190 S:      Maintained
16191 F:      drivers/staging/fieldbus/*
16192 F:      drivers/staging/fieldbus/Documentation/
16193
16194 STAGING - HMS ANYBUS-S BUS
16195 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16196 S:      Maintained
16197 F:      drivers/staging/fieldbus/anybuss/
16198
16199 STAGING - INDUSTRIAL IO
16200 M:      Jonathan Cameron <jic23@kernel.org>
16201 L:      linux-iio@vger.kernel.org
16202 S:      Odd Fixes
16203 F:      Documentation/devicetree/bindings/staging/iio/
16204 F:      drivers/staging/iio/
16205
16206 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
16207 M:      Marc Dietrich <marvin24@gmx.de>
16208 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
16209 L:      linux-tegra@vger.kernel.org
16210 S:      Maintained
16211 F:      drivers/staging/nvec/
16212
16213 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
16214 M:      Jens Frederich <jfrederich@gmail.com>
16215 M:      Daniel Drake <dsd@laptop.org>
16216 M:      Jon Nettleton <jon.nettleton@gmail.com>
16217 S:      Maintained
16218 W:      http://wiki.laptop.org/go/DCON
16219 F:      drivers/staging/olpc_dcon/
16220
16221 STAGING - REALTEK RTL8188EU DRIVERS
16222 M:      Larry Finger <Larry.Finger@lwfinger.net>
16223 S:      Odd Fixes
16224 F:      drivers/staging/rtl8188eu/
16225
16226 STAGING - REALTEK RTL8712U DRIVERS
16227 M:      Larry Finger <Larry.Finger@lwfinger.net>
16228 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
16229 S:      Odd Fixes
16230 F:      drivers/staging/rtl8712/
16231
16232 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16233 M:      Michael Hennerich <michael.hennerich@analog.com>
16234 M:      Beniamin Bia <beniamin.bia@analog.com>
16235 L:      linux-fbdev@vger.kernel.org
16236 S:      Supported
16237 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16238 F:      drivers/staging/fbtft/fb_seps525.c
16239
16240 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16241 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16242 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16243 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16244 L:      linux-fbdev@vger.kernel.org
16245 S:      Maintained
16246 F:      drivers/staging/sm750fb/
16247
16248 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
16249 M:      William Hubbs <w.d.hubbs@gmail.com>
16250 M:      Chris Brannon <chris@the-brannons.com>
16251 M:      Kirk Reiser <kirk@reisers.ca>
16252 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
16253 L:      speakup@linux-speakup.org
16254 S:      Odd Fixes
16255 W:      http://www.linux-speakup.org/
16256 F:      drivers/staging/speakup/
16257
16258 STAGING - VIA VT665X DRIVERS
16259 M:      Forest Bond <forest@alittletooquiet.net>
16260 S:      Odd Fixes
16261 F:      drivers/staging/vt665?/
16262
16263 STAGING - WILC1000 WIFI DRIVER
16264 M:      Adham Abozaeid <adham.abozaeid@microchip.com>
16265 M:      Ajay Singh <ajay.kathat@microchip.com>
16266 L:      linux-wireless@vger.kernel.org
16267 S:      Supported
16268 F:      drivers/staging/wilc1000/
16269
16270 STAGING SUBSYSTEM
16271 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16272 L:      devel@driverdev.osuosl.org
16273 S:      Supported
16274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16275 F:      drivers/staging/
16276
16277 STARFIRE/DURALAN NETWORK DRIVER
16278 M:      Ion Badulescu <ionut@badula.org>
16279 S:      Odd Fixes
16280 F:      drivers/net/ethernet/adaptec/starfire*
16281
16282 STEC S1220 SKD DRIVER
16283 M:      Damien Le Moal <Damien.LeMoal@wdc.com>
16284 L:      linux-block@vger.kernel.org
16285 S:      Maintained
16286 F:      drivers/block/skd*[ch]
16287
16288 STI AUDIO (ASoC) DRIVERS
16289 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16290 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16291 S:      Maintained
16292 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16293 F:      sound/soc/sti/
16294
16295 STI CEC DRIVER
16296 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
16297 S:      Maintained
16298 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16299 F:      drivers/media/platform/sti/cec/
16300
16301 STK1160 USB VIDEO CAPTURE DRIVER
16302 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16303 L:      linux-media@vger.kernel.org
16304 S:      Maintained
16305 T:      git git://linuxtv.org/media_tree.git
16306 F:      drivers/media/usb/stk1160/
16307
16308 STM32 AUDIO (ASoC) DRIVERS
16309 M:      Olivier Moysan <olivier.moysan@st.com>
16310 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16311 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16312 S:      Maintained
16313 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
16314 F:      sound/soc/stm/
16315
16316 STM32 TIMER/LPTIMER DRIVERS
16317 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
16318 S:      Maintained
16319 F:      Documentation/ABI/testing/*timer-stm32
16320 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16321 F:      drivers/*/stm32-*timer*
16322 F:      drivers/pwm/pwm-stm32*
16323 F:      include/linux/*/stm32-*tim*
16324
16325 STMMAC ETHERNET DRIVER
16326 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
16327 M:      Alexandre Torgue <alexandre.torgue@st.com>
16328 M:      Jose Abreu <joabreu@synopsys.com>
16329 L:      netdev@vger.kernel.org
16330 S:      Supported
16331 W:      http://www.stlinux.com
16332 F:      Documentation/networking/device_drivers/stmicro/
16333 F:      drivers/net/ethernet/stmicro/stmmac/
16334
16335 SUN3/3X
16336 M:      Sam Creasey <sammy@sammy.net>
16337 S:      Maintained
16338 W:      http://sammy.net/sun3/
16339 F:      arch/m68k/include/asm/sun3*
16340 F:      arch/m68k/kernel/*sun3*
16341 F:      arch/m68k/sun3*/
16342 F:      drivers/net/ethernet/i825xx/sun3*
16343
16344 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16345 M:      Hans de Goede <hdegoede@redhat.com>
16346 L:      linux-input@vger.kernel.org
16347 S:      Maintained
16348 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16349 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16350
16351 SUNDANCE NETWORK DRIVER
16352 M:      Denis Kirjanov <kda@linux-powerpc.org>
16353 L:      netdev@vger.kernel.org
16354 S:      Maintained
16355 F:      drivers/net/ethernet/dlink/sundance.c
16356
16357 SUPERH
16358 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
16359 M:      Rich Felker <dalias@libc.org>
16360 L:      linux-sh@vger.kernel.org
16361 S:      Maintained
16362 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16363 F:      Documentation/sh/
16364 F:      arch/sh/
16365 F:      drivers/sh/
16366
16367 SUSPEND TO RAM
16368 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
16369 M:      Len Brown <len.brown@intel.com>
16370 M:      Pavel Machek <pavel@ucw.cz>
16371 L:      linux-pm@vger.kernel.org
16372 S:      Supported
16373 B:      https://bugzilla.kernel.org
16374 F:      Documentation/power/
16375 F:      arch/x86/kernel/acpi/
16376 F:      drivers/base/power/
16377 F:      include/linux/freezer.h
16378 F:      include/linux/pm.h
16379 F:      include/linux/suspend.h
16380 F:      kernel/power/
16381
16382 SVGA HANDLING
16383 M:      Martin Mares <mj@ucw.cz>
16384 L:      linux-video@atrey.karlin.mff.cuni.cz
16385 S:      Maintained
16386 F:      Documentation/admin-guide/svga.rst
16387 F:      arch/x86/boot/video*
16388
16389 SWIOTLB SUBSYSTEM
16390 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
16391 L:      iommu@lists.linux-foundation.org
16392 S:      Supported
16393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16394 F:      arch/*/kernel/pci-swiotlb.c
16395 F:      include/linux/swiotlb.h
16396 F:      kernel/dma/swiotlb.c
16397
16398 SWITCHDEV
16399 M:      Jiri Pirko <jiri@resnulli.us>
16400 M:      Ivan Vecera <ivecera@redhat.com>
16401 L:      netdev@vger.kernel.org
16402 S:      Supported
16403 F:      include/net/switchdev.h
16404 F:      net/switchdev/
16405
16406 SY8106A REGULATOR DRIVER
16407 M:      Icenowy Zheng <icenowy@aosc.io>
16408 S:      Maintained
16409 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16410 F:      drivers/regulator/sy8106a-regulator.c
16411
16412 SYNC FILE FRAMEWORK
16413 M:      Sumit Semwal <sumit.semwal@linaro.org>
16414 R:      Gustavo Padovan <gustavo@padovan.org>
16415 L:      linux-media@vger.kernel.org
16416 L:      dri-devel@lists.freedesktop.org
16417 S:      Maintained
16418 T:      git git://anongit.freedesktop.org/drm/drm-misc
16419 F:      Documentation/driver-api/sync_file.rst
16420 F:      drivers/dma-buf/dma-fence*
16421 F:      drivers/dma-buf/sw_sync.c
16422 F:      drivers/dma-buf/sync_*
16423 F:      include/linux/sync_file.h
16424 F:      include/uapi/linux/sync_file.h
16425
16426 SYNOPSYS ARC ARCHITECTURE
16427 M:      Vineet Gupta <vgupta@synopsys.com>
16428 L:      linux-snps-arc@lists.infradead.org
16429 S:      Supported
16430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
16431 F:      Documentation/devicetree/bindings/arc/*
16432 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
16433 F:      arch/arc/
16434 F:      drivers/clocksource/arc_timer.c
16435 F:      drivers/tty/serial/arc_uart.c
16436
16437 SYNOPSYS ARC HSDK SDP pll clock driver
16438 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16439 S:      Supported
16440 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
16441 F:      drivers/clk/clk-hsdk-pll.c
16442
16443 SYNOPSYS ARC SDP clock driver
16444 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16445 S:      Supported
16446 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
16447 F:      drivers/clk/axs10x/*
16448
16449 SYNOPSYS ARC SDP platform support
16450 M:      Alexey Brodkin <abrodkin@synopsys.com>
16451 S:      Supported
16452 F:      Documentation/devicetree/bindings/arc/axs10*
16453 F:      arch/arc/boot/dts/ax*
16454 F:      arch/arc/plat-axs10x
16455
16456 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
16457 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16458 S:      Supported
16459 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
16460 F:      drivers/reset/reset-axs10x.c
16461
16462 SYNOPSYS CREG GPIO DRIVER
16463 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16464 S:      Maintained
16465 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
16466 F:      drivers/gpio/gpio-creg-snps.c
16467
16468 SYNOPSYS DESIGNWARE 8250 UART DRIVER
16469 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16470 S:      Maintained
16471 F:      drivers/tty/serial/8250/8250_dw.c
16472 F:      drivers/tty/serial/8250/8250_dwlib.*
16473 F:      drivers/tty/serial/8250/8250_lpss.c
16474
16475 SYNOPSYS DESIGNWARE APB GPIO DRIVER
16476 M:      Hoan Tran <hoan@os.amperecomputing.com>
16477 M:      Serge Semin <fancer.lancer@gmail.com>
16478 L:      linux-gpio@vger.kernel.org
16479 S:      Maintained
16480 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
16481 F:      drivers/gpio/gpio-dwapb.c
16482
16483 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
16484 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16485 S:      Maintained
16486 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
16487 F:      drivers/dma/dw-axi-dmac/
16488
16489 SYNOPSYS DESIGNWARE DMAC DRIVER
16490 M:      Viresh Kumar <vireshk@kernel.org>
16491 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16492 S:      Maintained
16493 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
16494 F:      drivers/dma/dw/
16495 F:      include/dt-bindings/dma/dw-dmac.h
16496 F:      include/linux/dma/dw.h
16497 F:      include/linux/platform_data/dma-dw.h
16498
16499 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
16500 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16501 L:      netdev@vger.kernel.org
16502 S:      Supported
16503 F:      drivers/net/ethernet/synopsys/
16504
16505 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
16506 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16507 L:      netdev@vger.kernel.org
16508 S:      Supported
16509 F:      drivers/net/phy/mdio-xpcs.c
16510 F:      include/linux/mdio-xpcs.h
16511
16512 SYNOPSYS DESIGNWARE I2C DRIVER
16513 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
16514 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16515 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
16516 L:      linux-i2c@vger.kernel.org
16517 S:      Maintained
16518 F:      drivers/i2c/busses/i2c-designware-*
16519 F:      include/linux/platform_data/i2c-designware.h
16520
16521 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
16522 M:      Jaehoon Chung <jh80.chung@samsung.com>
16523 L:      linux-mmc@vger.kernel.org
16524 S:      Maintained
16525 F:      drivers/mmc/host/dw_mmc*
16526
16527 SYNOPSYS HSDK RESET CONTROLLER DRIVER
16528 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16529 S:      Supported
16530 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
16531 F:      drivers/reset/reset-hsdk.c
16532 F:      include/dt-bindings/reset/snps,hsdk-reset.h
16533
16534 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
16535 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
16536 M:      Manjunath M B <manjumb@synopsys.com>
16537 L:      linux-mmc@vger.kernel.org
16538 S:      Maintained
16539 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
16540
16541 SYSTEM CONFIGURATION (SYSCON)
16542 M:      Lee Jones <lee.jones@linaro.org>
16543 M:      Arnd Bergmann <arnd@arndb.de>
16544 S:      Supported
16545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
16546 F:      drivers/mfd/syscon.c
16547
16548 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
16549 M:      Sudeep Holla <sudeep.holla@arm.com>
16550 L:      linux-arm-kernel@lists.infradead.org
16551 S:      Maintained
16552 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
16553 F:      drivers/clk/clk-sc[mp]i.c
16554 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
16555 F:      drivers/firmware/arm_scmi/
16556 F:      drivers/firmware/arm_scpi.c
16557 F:      drivers/reset/reset-scmi.c
16558 F:      include/linux/sc[mp]i_protocol.h
16559 F:      include/trace/events/scmi.h
16560
16561 SYSTEM RESET/SHUTDOWN DRIVERS
16562 M:      Sebastian Reichel <sre@kernel.org>
16563 L:      linux-pm@vger.kernel.org
16564 S:      Maintained
16565 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16566 F:      Documentation/devicetree/bindings/power/reset/
16567 F:      drivers/power/reset/
16568
16569 SYSTEM TRACE MODULE CLASS
16570 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
16571 S:      Maintained
16572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
16573 F:      Documentation/trace/stm.rst
16574 F:      drivers/hwtracing/stm/
16575 F:      include/linux/stm.h
16576 F:      include/uapi/linux/stm.h
16577
16578 SYSTEM76 ACPI DRIVER
16579 M:      Jeremy Soller <jeremy@system76.com>
16580 M:      System76 Product Development <productdev@system76.com>
16581 L:      platform-driver-x86@vger.kernel.org
16582 S:      Maintained
16583 F:      drivers/platform/x86/system76_acpi.c
16584
16585 SYSV FILESYSTEM
16586 M:      Christoph Hellwig <hch@infradead.org>
16587 S:      Maintained
16588 F:      Documentation/filesystems/sysv-fs.rst
16589 F:      fs/sysv/
16590 F:      include/linux/sysv_fs.h
16591
16592 TASKSTATS STATISTICS INTERFACE
16593 M:      Balbir Singh <bsingharora@gmail.com>
16594 S:      Maintained
16595 F:      Documentation/accounting/taskstats*
16596 F:      include/linux/taskstats*
16597 F:      kernel/taskstats.c
16598
16599 TC subsystem
16600 M:      Jamal Hadi Salim <jhs@mojatatu.com>
16601 M:      Cong Wang <xiyou.wangcong@gmail.com>
16602 M:      Jiri Pirko <jiri@resnulli.us>
16603 L:      netdev@vger.kernel.org
16604 S:      Maintained
16605 F:      include/net/pkt_cls.h
16606 F:      include/net/pkt_sched.h
16607 F:      include/net/tc_act/
16608 F:      include/uapi/linux/pkt_cls.h
16609 F:      include/uapi/linux/pkt_sched.h
16610 F:      include/uapi/linux/tc_act/
16611 F:      include/uapi/linux/tc_ematch/
16612 F:      net/sched/
16613
16614 TC90522 MEDIA DRIVER
16615 M:      Akihiro Tsukada <tskd08@gmail.com>
16616 L:      linux-media@vger.kernel.org
16617 S:      Odd Fixes
16618 F:      drivers/media/dvb-frontends/tc90522*
16619
16620 TCP LOW PRIORITY MODULE
16621 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
16622 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
16623 S:      Maintained
16624 W:      http://tcp-lp-mod.sourceforge.net/
16625 F:      net/ipv4/tcp_lp.c
16626
16627 TDA10071 MEDIA DRIVER
16628 M:      Antti Palosaari <crope@iki.fi>
16629 L:      linux-media@vger.kernel.org
16630 S:      Maintained
16631 W:      https://linuxtv.org
16632 W:      http://palosaari.fi/linux/
16633 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16634 T:      git git://linuxtv.org/anttip/media_tree.git
16635 F:      drivers/media/dvb-frontends/tda10071*
16636
16637 TDA18212 MEDIA DRIVER
16638 M:      Antti Palosaari <crope@iki.fi>
16639 L:      linux-media@vger.kernel.org
16640 S:      Maintained
16641 W:      https://linuxtv.org
16642 W:      http://palosaari.fi/linux/
16643 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16644 T:      git git://linuxtv.org/anttip/media_tree.git
16645 F:      drivers/media/tuners/tda18212*
16646
16647 TDA18218 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/tuners/tda18218*
16656
16657 TDA18250 MEDIA DRIVER
16658 M:      Olli Salonen <olli.salonen@iki.fi>
16659 L:      linux-media@vger.kernel.org
16660 S:      Maintained
16661 W:      https://linuxtv.org
16662 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16663 T:      git git://linuxtv.org/media_tree.git
16664 F:      drivers/media/tuners/tda18250*
16665
16666 TDA18271 MEDIA DRIVER
16667 M:      Michael Krufky <mkrufky@linuxtv.org>
16668 L:      linux-media@vger.kernel.org
16669 S:      Maintained
16670 W:      https://linuxtv.org
16671 W:      http://github.com/mkrufky
16672 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16673 T:      git git://linuxtv.org/mkrufky/tuners.git
16674 F:      drivers/media/tuners/tda18271*
16675
16676 TDA1997x MEDIA DRIVER
16677 M:      Tim Harvey <tharvey@gateworks.com>
16678 L:      linux-media@vger.kernel.org
16679 S:      Maintained
16680 W:      https://linuxtv.org
16681 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16682 F:      drivers/media/i2c/tda1997x.*
16683
16684 TDA827x MEDIA DRIVER
16685 M:      Michael Krufky <mkrufky@linuxtv.org>
16686 L:      linux-media@vger.kernel.org
16687 S:      Maintained
16688 W:      https://linuxtv.org
16689 W:      http://github.com/mkrufky
16690 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16691 T:      git git://linuxtv.org/mkrufky/tuners.git
16692 F:      drivers/media/tuners/tda8290.*
16693
16694 TDA8290 MEDIA DRIVER
16695 M:      Michael Krufky <mkrufky@linuxtv.org>
16696 L:      linux-media@vger.kernel.org
16697 S:      Maintained
16698 W:      https://linuxtv.org
16699 W:      http://github.com/mkrufky
16700 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16701 T:      git git://linuxtv.org/mkrufky/tuners.git
16702 F:      drivers/media/tuners/tda8290.*
16703
16704 TDA9840 MEDIA DRIVER
16705 M:      Hans Verkuil <hverkuil@xs4all.nl>
16706 L:      linux-media@vger.kernel.org
16707 S:      Maintained
16708 W:      https://linuxtv.org
16709 T:      git git://linuxtv.org/media_tree.git
16710 F:      drivers/media/i2c/tda9840*
16711
16712 TEA5761 TUNER DRIVER
16713 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16714 L:      linux-media@vger.kernel.org
16715 S:      Odd fixes
16716 W:      https://linuxtv.org
16717 T:      git git://linuxtv.org/media_tree.git
16718 F:      drivers/media/tuners/tea5761.*
16719
16720 TEA5767 TUNER DRIVER
16721 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16722 L:      linux-media@vger.kernel.org
16723 S:      Maintained
16724 W:      https://linuxtv.org
16725 T:      git git://linuxtv.org/media_tree.git
16726 F:      drivers/media/tuners/tea5767.*
16727
16728 TEA6415C MEDIA DRIVER
16729 M:      Hans Verkuil <hverkuil@xs4all.nl>
16730 L:      linux-media@vger.kernel.org
16731 S:      Maintained
16732 W:      https://linuxtv.org
16733 T:      git git://linuxtv.org/media_tree.git
16734 F:      drivers/media/i2c/tea6415c*
16735
16736 TEA6420 MEDIA DRIVER
16737 M:      Hans Verkuil <hverkuil@xs4all.nl>
16738 L:      linux-media@vger.kernel.org
16739 S:      Maintained
16740 W:      https://linuxtv.org
16741 T:      git git://linuxtv.org/media_tree.git
16742 F:      drivers/media/i2c/tea6420*
16743
16744 TEAM DRIVER
16745 M:      Jiri Pirko <jiri@resnulli.us>
16746 L:      netdev@vger.kernel.org
16747 S:      Supported
16748 F:      drivers/net/team/
16749 F:      include/linux/if_team.h
16750 F:      include/uapi/linux/if_team.h
16751
16752 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
16753 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
16754 S:      Maintained
16755 F:      arch/x86/platform/ts5500/
16756
16757 TECHNOTREND USB IR RECEIVER
16758 M:      Sean Young <sean@mess.org>
16759 L:      linux-media@vger.kernel.org
16760 S:      Maintained
16761 F:      drivers/media/rc/ttusbir.c
16762
16763 TECHWELL TW9910 VIDEO DECODER
16764 L:      linux-media@vger.kernel.org
16765 S:      Orphan
16766 F:      drivers/media/i2c/tw9910.c
16767 F:      include/media/i2c/tw9910.h
16768
16769 TEE SUBSYSTEM
16770 M:      Jens Wiklander <jens.wiklander@linaro.org>
16771 L:      tee-dev@lists.linaro.org
16772 S:      Maintained
16773 F:      Documentation/tee.txt
16774 F:      drivers/tee/
16775 F:      include/linux/tee_drv.h
16776 F:      include/uapi/linux/tee.h
16777
16778 TEGRA ARCHITECTURE SUPPORT
16779 M:      Thierry Reding <thierry.reding@gmail.com>
16780 M:      Jonathan Hunter <jonathanh@nvidia.com>
16781 L:      linux-tegra@vger.kernel.org
16782 S:      Supported
16783 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
16784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
16785 N:      [^a-z]tegra
16786
16787 TEGRA CLOCK DRIVER
16788 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
16789 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
16790 S:      Supported
16791 F:      drivers/clk/tegra/
16792
16793 TEGRA DMA DRIVERS
16794 M:      Laxman Dewangan <ldewangan@nvidia.com>
16795 M:      Jon Hunter <jonathanh@nvidia.com>
16796 S:      Supported
16797 F:      drivers/dma/tegra*
16798
16799 TEGRA I2C DRIVER
16800 M:      Laxman Dewangan <ldewangan@nvidia.com>
16801 R:      Dmitry Osipenko <digetx@gmail.com>
16802 S:      Supported
16803 F:      drivers/i2c/busses/i2c-tegra.c
16804
16805 TEGRA IOMMU DRIVERS
16806 M:      Thierry Reding <thierry.reding@gmail.com>
16807 L:      linux-tegra@vger.kernel.org
16808 S:      Supported
16809 F:      drivers/iommu/tegra*
16810
16811 TEGRA KBC DRIVER
16812 M:      Laxman Dewangan <ldewangan@nvidia.com>
16813 S:      Supported
16814 F:      drivers/input/keyboard/tegra-kbc.c
16815
16816 TEGRA NAND DRIVER
16817 M:      Stefan Agner <stefan@agner.ch>
16818 M:      Lucas Stach <dev@lynxeye.de>
16819 S:      Maintained
16820 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
16821 F:      drivers/mtd/nand/raw/tegra_nand.c
16822
16823 TEGRA PWM DRIVER
16824 M:      Thierry Reding <thierry.reding@gmail.com>
16825 S:      Supported
16826 F:      drivers/pwm/pwm-tegra.c
16827
16828 TEGRA SERIAL DRIVER
16829 M:      Laxman Dewangan <ldewangan@nvidia.com>
16830 S:      Supported
16831 F:      drivers/tty/serial/serial-tegra.c
16832
16833 TEGRA SPI DRIVER
16834 M:      Laxman Dewangan <ldewangan@nvidia.com>
16835 S:      Supported
16836 F:      drivers/spi/spi-tegra*
16837
16838 TEGRA VIDEO DRIVER
16839 M:      Thierry Reding <thierry.reding@gmail.com>
16840 M:      Jonathan Hunter <jonathanh@nvidia.com>
16841 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
16842 L:      linux-media@vger.kernel.org
16843 L:      linux-tegra@vger.kernel.org
16844 S:      Maintained
16845 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
16846 F:      drivers/staging/media/tegra-video/
16847
16848 TEGRA XUSB PADCTL DRIVER
16849 M:      JC Kuo <jckuo@nvidia.com>
16850 S:      Supported
16851 F:      drivers/phy/tegra/xusb*
16852
16853 TEHUTI ETHERNET DRIVER
16854 M:      Andy Gospodarek <andy@greyhouse.net>
16855 L:      netdev@vger.kernel.org
16856 S:      Supported
16857 F:      drivers/net/ethernet/tehuti/*
16858
16859 TELECOM CLOCK DRIVER FOR MCPL0010
16860 M:      Mark Gross <mark.gross@intel.com>
16861 S:      Supported
16862 F:      drivers/char/tlclk.c
16863
16864 TEMPO SEMICONDUCTOR DRIVERS
16865 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
16866 S:      Maintained
16867 F:      Documentation/devicetree/bindings/sound/tscs*.txt
16868 F:      sound/soc/codecs/tscs*.c
16869 F:      sound/soc/codecs/tscs*.h
16870
16871 TENSILICA XTENSA PORT (xtensa)
16872 M:      Chris Zankel <chris@zankel.net>
16873 M:      Max Filippov <jcmvbkbc@gmail.com>
16874 L:      linux-xtensa@linux-xtensa.org
16875 S:      Maintained
16876 T:      git git://github.com/czankel/xtensa-linux.git
16877 F:      arch/xtensa/
16878 F:      drivers/irqchip/irq-xtensa-*
16879
16880 TEXAS INSTRUMENTS ASoC DRIVERS
16881 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
16882 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16883 S:      Maintained
16884 F:      sound/soc/ti/
16885
16886 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
16887 M:      Ricardo Ribalda <ribalda@kernel.org>
16888 L:      linux-iio@vger.kernel.org
16889 S:      Supported
16890 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
16891 F:      drivers/iio/dac/ti-dac7612.c
16892
16893 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
16894 M:      Nishanth Menon <nm@ti.com>
16895 M:      Tero Kristo <t-kristo@ti.com>
16896 M:      Santosh Shilimkar <ssantosh@kernel.org>
16897 L:      linux-arm-kernel@lists.infradead.org
16898 S:      Maintained
16899 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
16900 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
16901 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
16902 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
16903 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
16904 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
16905 F:      drivers/clk/keystone/sci-clk.c
16906 F:      drivers/firmware/ti_sci*
16907 F:      drivers/irqchip/irq-ti-sci-inta.c
16908 F:      drivers/irqchip/irq-ti-sci-intr.c
16909 F:      drivers/reset/reset-ti-sci.c
16910 F:      drivers/soc/ti/ti_sci_inta_msi.c
16911 F:      drivers/soc/ti/ti_sci_pm_domains.c
16912 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
16913 F:      include/linux/soc/ti/ti_sci_inta_msi.h
16914 F:      include/linux/soc/ti/ti_sci_protocol.h
16915
16916 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
16917 M:      Hans Verkuil <hverkuil@xs4all.nl>
16918 L:      linux-media@vger.kernel.org
16919 S:      Maintained
16920 W:      https://linuxtv.org
16921 T:      git git://linuxtv.org/media_tree.git
16922 F:      drivers/media/radio/radio-raremono.c
16923
16924 THERMAL
16925 M:      Zhang Rui <rui.zhang@intel.com>
16926 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
16927 R:      Amit Kucheria <amit.kucheria@verdurent.com>
16928 L:      linux-pm@vger.kernel.org
16929 S:      Supported
16930 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
16932 F:      Documentation/devicetree/bindings/thermal/
16933 F:      drivers/thermal/
16934 F:      include/linux/cpu_cooling.h
16935 F:      include/linux/thermal.h
16936 F:      include/uapi/linux/thermal.h
16937
16938 THERMAL DRIVER FOR AMLOGIC SOCS
16939 M:      Guillaume La Roque <glaroque@baylibre.com>
16940 L:      linux-pm@vger.kernel.org
16941 L:      linux-amlogic@lists.infradead.org
16942 S:      Supported
16943 W:      http://linux-meson.com/
16944 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
16945 F:      drivers/thermal/amlogic_thermal.c
16946
16947 THERMAL/CPU_COOLING
16948 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
16949 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
16950 M:      Viresh Kumar <viresh.kumar@linaro.org>
16951 M:      Javi Merino <javi.merino@kernel.org>
16952 L:      linux-pm@vger.kernel.org
16953 S:      Supported
16954 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
16955 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
16956 F:      drivers/thermal/cpufreq_cooling.c
16957 F:      drivers/thermal/cpuidle_cooling.c
16958 F:      include/linux/cpu_cooling.h
16959
16960 THINKPAD ACPI EXTRAS DRIVER
16961 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
16962 L:      ibm-acpi-devel@lists.sourceforge.net
16963 L:      platform-driver-x86@vger.kernel.org
16964 S:      Maintained
16965 W:      http://ibm-acpi.sourceforge.net
16966 W:      http://thinkwiki.org/wiki/Ibm-acpi
16967 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
16968 F:      drivers/platform/x86/thinkpad_acpi.c
16969
16970 THUNDERBOLT DRIVER
16971 M:      Andreas Noever <andreas.noever@gmail.com>
16972 M:      Michael Jamet <michael.jamet@intel.com>
16973 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16974 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16975 L:      linux-usb@vger.kernel.org
16976 S:      Maintained
16977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
16978 F:      Documentation/admin-guide/thunderbolt.rst
16979 F:      drivers/thunderbolt/
16980 F:      include/linux/thunderbolt.h
16981
16982 THUNDERBOLT NETWORK DRIVER
16983 M:      Michael Jamet <michael.jamet@intel.com>
16984 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16985 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16986 L:      netdev@vger.kernel.org
16987 S:      Maintained
16988 F:      drivers/net/thunderbolt.c
16989
16990 THUNDERX GPIO DRIVER
16991 M:      Robert Richter <rrichter@marvell.com>
16992 S:      Maintained
16993 F:      drivers/gpio/gpio-thunderx.c
16994
16995 TI AM437X VPFE DRIVER
16996 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16997 L:      linux-media@vger.kernel.org
16998 S:      Maintained
16999 W:      https://linuxtv.org
17000 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17001 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17002 F:      drivers/media/platform/am437x/
17003
17004 TI BANDGAP AND THERMAL DRIVER
17005 M:      Eduardo Valentin <edubezval@gmail.com>
17006 M:      Keerthy <j-keerthy@ti.com>
17007 L:      linux-pm@vger.kernel.org
17008 L:      linux-omap@vger.kernel.org
17009 S:      Maintained
17010 F:      drivers/thermal/ti-soc-thermal/
17011
17012 TI BQ27XXX POWER SUPPLY DRIVER
17013 R:      Andrew F. Davis <afd@ti.com>
17014 F:      drivers/power/supply/bq27xxx_battery.c
17015 F:      drivers/power/supply/bq27xxx_battery_i2c.c
17016 F:      include/linux/power/bq27xxx_battery.h
17017
17018 TI CDCE706 CLOCK DRIVER
17019 M:      Max Filippov <jcmvbkbc@gmail.com>
17020 S:      Maintained
17021 F:      drivers/clk/clk-cdce706.c
17022
17023 TI CLOCK DRIVER
17024 M:      Tero Kristo <t-kristo@ti.com>
17025 L:      linux-omap@vger.kernel.org
17026 S:      Maintained
17027 F:      drivers/clk/ti/
17028 F:      include/linux/clk/ti.h
17029
17030 TI DAVINCI MACHINE SUPPORT
17031 M:      Sekhar Nori <nsekhar@ti.com>
17032 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
17033 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17034 S:      Supported
17035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
17036 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
17037 F:      arch/arm/boot/dts/da850*
17038 F:      arch/arm/mach-davinci/
17039 F:      drivers/i2c/busses/i2c-davinci.c
17040
17041 TI DAVINCI SERIES CLOCK DRIVER
17042 M:      David Lechner <david@lechnology.com>
17043 R:      Sekhar Nori <nsekhar@ti.com>
17044 S:      Maintained
17045 F:      Documentation/devicetree/bindings/clock/ti/davinci/
17046 F:      drivers/clk/davinci/
17047
17048 TI DAVINCI SERIES GPIO DRIVER
17049 M:      Keerthy <j-keerthy@ti.com>
17050 L:      linux-gpio@vger.kernel.org
17051 S:      Maintained
17052 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
17053 F:      drivers/gpio/gpio-davinci.c
17054
17055 TI DAVINCI SERIES MEDIA DRIVER
17056 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17057 L:      linux-media@vger.kernel.org
17058 S:      Maintained
17059 W:      https://linuxtv.org
17060 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17061 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17062 F:      drivers/media/platform/davinci/
17063 F:      include/media/davinci/
17064
17065 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
17066 R:      David Lechner <david@lechnology.com>
17067 L:      linux-iio@vger.kernel.org
17068 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
17069 F:      drivers/counter/ti-eqep.c
17070
17071 TI ETHERNET SWITCH DRIVER (CPSW)
17072 R:      Grygorii Strashko <grygorii.strashko@ti.com>
17073 L:      linux-omap@vger.kernel.org
17074 L:      netdev@vger.kernel.org
17075 S:      Maintained
17076 F:      drivers/net/ethernet/ti/cpsw*
17077 F:      drivers/net/ethernet/ti/davinci*
17078
17079 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
17080 M:      Alex Dubov <oakad@yahoo.com>
17081 S:      Maintained
17082 W:      http://tifmxx.berlios.de/
17083 F:      drivers/memstick/host/tifm_ms.c
17084 F:      drivers/misc/tifm*
17085 F:      drivers/mmc/host/tifm_sd.c
17086 F:      include/linux/tifm.h
17087
17088 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
17089 M:      Santosh Shilimkar <ssantosh@kernel.org>
17090 L:      linux-kernel@vger.kernel.org
17091 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17092 S:      Maintained
17093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
17094 F:      drivers/soc/ti/*
17095
17096 TI LM49xxx FAMILY ASoC CODEC DRIVERS
17097 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
17098 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
17099 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17100 S:      Maintained
17101 F:      sound/soc/codecs/isabelle*
17102 F:      sound/soc/codecs/lm49453*
17103
17104 TI LP855x BACKLIGHT DRIVER
17105 M:      Milo Kim <milo.kim@ti.com>
17106 S:      Maintained
17107 F:      Documentation/driver-api/backlight/lp855x-driver.rst
17108 F:      drivers/video/backlight/lp855x_bl.c
17109 F:      include/linux/platform_data/lp855x.h
17110
17111 TI LP8727 CHARGER DRIVER
17112 M:      Milo Kim <milo.kim@ti.com>
17113 S:      Maintained
17114 F:      drivers/power/supply/lp8727_charger.c
17115 F:      include/linux/platform_data/lp8727.h
17116
17117 TI LP8788 MFD DRIVER
17118 M:      Milo Kim <milo.kim@ti.com>
17119 S:      Maintained
17120 F:      drivers/iio/adc/lp8788_adc.c
17121 F:      drivers/leds/leds-lp8788.c
17122 F:      drivers/mfd/lp8788*.c
17123 F:      drivers/power/supply/lp8788-charger.c
17124 F:      drivers/regulator/lp8788-*.c
17125 F:      include/linux/mfd/lp8788*.h
17126
17127 TI NETCP ETHERNET DRIVER
17128 M:      Wingman Kwok <w-kwok2@ti.com>
17129 M:      Murali Karicheri <m-karicheri2@ti.com>
17130 L:      netdev@vger.kernel.org
17131 S:      Maintained
17132 F:      drivers/net/ethernet/ti/netcp*
17133
17134 TI PCM3060 ASoC CODEC DRIVER
17135 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
17136 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17137 S:      Maintained
17138 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
17139 F:      sound/soc/codecs/pcm3060*
17140
17141 TI TAS571X FAMILY ASoC CODEC DRIVER
17142 M:      Kevin Cernekee <cernekee@chromium.org>
17143 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17144 S:      Odd Fixes
17145 F:      sound/soc/codecs/tas571x*
17146
17147 TI TCAN4X5X DEVICE DRIVER
17148 M:      Dan Murphy <dmurphy@ti.com>
17149 L:      linux-can@vger.kernel.org
17150 S:      Maintained
17151 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
17152 F:      drivers/net/can/m_can/tcan4x5x.c
17153
17154 TI TRF7970A NFC DRIVER
17155 M:      Mark Greer <mgreer@animalcreek.com>
17156 L:      linux-wireless@vger.kernel.org
17157 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
17158 S:      Supported
17159 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
17160 F:      drivers/nfc/trf7970a.c
17161
17162 TI TWL4030 SERIES SOC CODEC DRIVER
17163 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
17164 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17165 S:      Maintained
17166 F:      sound/soc/codecs/twl4030*
17167
17168 TI VPE/CAL DRIVERS
17169 M:      Benoit Parrot <bparrot@ti.com>
17170 L:      linux-media@vger.kernel.org
17171 S:      Maintained
17172 W:      http://linuxtv.org/
17173 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17174 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
17175 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
17176 F:      drivers/media/platform/ti-vpe/
17177
17178 TI WILINK WIRELESS DRIVERS
17179 L:      linux-wireless@vger.kernel.org
17180 S:      Orphan
17181 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
17182 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
17183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
17184 F:      drivers/net/wireless/ti/
17185 F:      include/linux/wl12xx.h
17186
17187 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
17188 M:      John Stultz <john.stultz@linaro.org>
17189 M:      Thomas Gleixner <tglx@linutronix.de>
17190 R:      Stephen Boyd <sboyd@kernel.org>
17191 L:      linux-kernel@vger.kernel.org
17192 S:      Supported
17193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
17194 F:      include/linux/clocksource.h
17195 F:      include/linux/time.h
17196 F:      include/linux/timex.h
17197 F:      include/uapi/linux/time.h
17198 F:      include/uapi/linux/timex.h
17199 F:      kernel/time/alarmtimer.c
17200 F:      kernel/time/clocksource.c
17201 F:      kernel/time/ntp.c
17202 F:      kernel/time/time*.c
17203 F:      tools/testing/selftests/timers/
17204
17205 TIPC NETWORK LAYER
17206 M:      Jon Maloy <jmaloy@redhat.com>
17207 M:      Ying Xue <ying.xue@windriver.com>
17208 L:      netdev@vger.kernel.org (core kernel code)
17209 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
17210 S:      Maintained
17211 W:      http://tipc.sourceforge.net/
17212 F:      include/uapi/linux/tipc*.h
17213 F:      net/tipc/
17214
17215 TLAN NETWORK DRIVER
17216 M:      Samuel Chessman <chessman@tux.org>
17217 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
17218 S:      Maintained
17219 W:      http://sourceforge.net/projects/tlan/
17220 F:      Documentation/networking/device_drivers/ti/tlan.rst
17221 F:      drivers/net/ethernet/ti/tlan.*
17222
17223 TM6000 VIDEO4LINUX DRIVER
17224 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17225 L:      linux-media@vger.kernel.org
17226 S:      Odd fixes
17227 W:      https://linuxtv.org
17228 T:      git git://linuxtv.org/media_tree.git
17229 F:      Documentation/admin-guide/media/tm6000*
17230 F:      drivers/media/usb/tm6000/
17231
17232 TMIO/SDHI MMC DRIVER
17233 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17234 L:      linux-mmc@vger.kernel.org
17235 S:      Supported
17236 F:      drivers/mmc/host/renesas_sdhi*
17237 F:      drivers/mmc/host/tmio_mmc*
17238 F:      include/linux/mfd/tmio.h
17239
17240 TMP401 HARDWARE MONITOR DRIVER
17241 M:      Guenter Roeck <linux@roeck-us.net>
17242 L:      linux-hwmon@vger.kernel.org
17243 S:      Maintained
17244 F:      Documentation/hwmon/tmp401.rst
17245 F:      drivers/hwmon/tmp401.c
17246
17247 TMP513 HARDWARE MONITOR DRIVER
17248 M:      Eric Tremblay <etremblay@distech-controls.com>
17249 L:      linux-hwmon@vger.kernel.org
17250 S:      Maintained
17251 F:      Documentation/hwmon/tmp513.rst
17252 F:      drivers/hwmon/tmp513.c
17253
17254 TMPFS (SHMEM FILESYSTEM)
17255 M:      Hugh Dickins <hughd@google.com>
17256 L:      linux-mm@kvack.org
17257 S:      Maintained
17258 F:      include/linux/shmem_fs.h
17259 F:      mm/shmem.c
17260
17261 TOMOYO SECURITY MODULE
17262 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
17263 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
17264 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
17265 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
17266 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
17267 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
17268 S:      Maintained
17269 W:      https://tomoyo.osdn.jp/
17270 F:      security/tomoyo/
17271
17272 TOPSTAR LAPTOP EXTRAS DRIVER
17273 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17274 L:      platform-driver-x86@vger.kernel.org
17275 S:      Maintained
17276 F:      drivers/platform/x86/topstar-laptop.c
17277
17278 TORTURE-TEST MODULES
17279 M:      Davidlohr Bueso <dave@stgolabs.net>
17280 M:      "Paul E. McKenney" <paulmck@kernel.org>
17281 M:      Josh Triplett <josh@joshtriplett.org>
17282 L:      linux-kernel@vger.kernel.org
17283 S:      Supported
17284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17285 F:      Documentation/RCU/torture.txt
17286 F:      kernel/locking/locktorture.c
17287 F:      kernel/rcu/rcuperf.c
17288 F:      kernel/rcu/rcutorture.c
17289 F:      kernel/torture.c
17290
17291 TOSHIBA ACPI EXTRAS DRIVER
17292 M:      Azael Avalos <coproscefalo@gmail.com>
17293 L:      platform-driver-x86@vger.kernel.org
17294 S:      Maintained
17295 F:      drivers/platform/x86/toshiba_acpi.c
17296
17297 TOSHIBA BLUETOOTH DRIVER
17298 M:      Azael Avalos <coproscefalo@gmail.com>
17299 L:      platform-driver-x86@vger.kernel.org
17300 S:      Maintained
17301 F:      drivers/platform/x86/toshiba_bluetooth.c
17302
17303 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17304 M:      Azael Avalos <coproscefalo@gmail.com>
17305 L:      platform-driver-x86@vger.kernel.org
17306 S:      Maintained
17307 F:      drivers/platform/x86/toshiba_haps.c
17308
17309 TOSHIBA SMM DRIVER
17310 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
17311 S:      Maintained
17312 W:      http://www.buzzard.org.uk/toshiba/
17313 F:      drivers/char/toshiba.c
17314 F:      include/linux/toshiba.h
17315 F:      include/uapi/linux/toshiba.h
17316
17317 TOSHIBA TC358743 DRIVER
17318 M:      Mats Randgaard <matrandg@cisco.com>
17319 L:      linux-media@vger.kernel.org
17320 S:      Maintained
17321 F:      drivers/media/i2c/tc358743*
17322 F:      include/media/i2c/tc358743.h
17323
17324 TOSHIBA WMI HOTKEYS DRIVER
17325 M:      Azael Avalos <coproscefalo@gmail.com>
17326 L:      platform-driver-x86@vger.kernel.org
17327 S:      Maintained
17328 F:      drivers/platform/x86/toshiba-wmi.c
17329
17330 TPM DEVICE DRIVER
17331 M:      Peter Huewe <peterhuewe@gmx.de>
17332 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
17333 R:      Jason Gunthorpe <jgg@ziepe.ca>
17334 L:      linux-integrity@vger.kernel.org
17335 S:      Maintained
17336 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17337 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
17338 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
17339 F:      drivers/char/tpm/
17340
17341 TRACING
17342 M:      Steven Rostedt <rostedt@goodmis.org>
17343 M:      Ingo Molnar <mingo@redhat.com>
17344 S:      Maintained
17345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17346 F:      Documentation/trace/ftrace.rst
17347 F:      arch/*/*/*/ftrace.h
17348 F:      arch/*/kernel/ftrace.c
17349 F:      include/*/ftrace.h
17350 F:      include/linux/trace*.h
17351 F:      include/trace/
17352 F:      kernel/trace/
17353 F:      tools/testing/selftests/ftrace/
17354
17355 TRACING MMIO ACCESSES (MMIOTRACE)
17356 M:      Steven Rostedt <rostedt@goodmis.org>
17357 M:      Ingo Molnar <mingo@kernel.org>
17358 R:      Karol Herbst <karolherbst@gmail.com>
17359 R:      Pekka Paalanen <ppaalanen@gmail.com>
17360 L:      linux-kernel@vger.kernel.org
17361 L:      nouveau@lists.freedesktop.org
17362 S:      Maintained
17363 F:      arch/x86/mm/kmmio.c
17364 F:      arch/x86/mm/mmio-mod.c
17365 F:      arch/x86/mm/testmmiotrace.c
17366 F:      include/linux/mmiotrace.h
17367 F:      kernel/trace/trace_mmiotrace.c
17368
17369 TRIVIAL PATCHES
17370 M:      Jiri Kosina <trivial@kernel.org>
17371 S:      Maintained
17372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17373 K:      ^Subject:.*(?i)trivial
17374
17375 TTY LAYER
17376 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17377 M:      Jiri Slaby <jslaby@suse.com>
17378 S:      Supported
17379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17380 F:      Documentation/driver-api/serial/
17381 F:      drivers/tty/
17382 F:      drivers/tty/serial/serial_core.c
17383 F:      include/linux/serial.h
17384 F:      include/linux/serial_core.h
17385 F:      include/linux/tty.h
17386 F:      include/uapi/linux/serial.h
17387 F:      include/uapi/linux/serial_core.h
17388 F:      include/uapi/linux/tty.h
17389
17390 TUA9001 MEDIA DRIVER
17391 M:      Antti Palosaari <crope@iki.fi>
17392 L:      linux-media@vger.kernel.org
17393 S:      Maintained
17394 W:      https://linuxtv.org
17395 W:      http://palosaari.fi/linux/
17396 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17397 T:      git git://linuxtv.org/anttip/media_tree.git
17398 F:      drivers/media/tuners/tua9001*
17399
17400 TULIP NETWORK DRIVERS
17401 L:      netdev@vger.kernel.org
17402 L:      linux-parisc@vger.kernel.org
17403 S:      Orphan
17404 F:      drivers/net/ethernet/dec/tulip/
17405
17406 TUN/TAP driver
17407 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
17408 S:      Maintained
17409 W:      http://vtun.sourceforge.net/tun
17410 F:      Documentation/networking/tuntap.rst
17411 F:      arch/um/os-Linux/drivers/
17412
17413 TURBOCHANNEL SUBSYSTEM
17414 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
17415 M:      Ralf Baechle <ralf@linux-mips.org>
17416 L:      linux-mips@vger.kernel.org
17417 S:      Maintained
17418 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
17419 F:      drivers/tc/
17420 F:      include/linux/tc.h
17421
17422 TURBOSTAT UTILITY
17423 M:      "Len Brown" <lenb@kernel.org>
17424 L:      linux-pm@vger.kernel.org
17425 S:      Supported
17426 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17427 B:      https://bugzilla.kernel.org
17428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
17429 F:      tools/power/x86/turbostat/
17430
17431 TW5864 VIDEO4LINUX DRIVER
17432 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17433 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17434 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
17435 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17436 L:      linux-media@vger.kernel.org
17437 S:      Supported
17438 F:      drivers/media/pci/tw5864/
17439
17440 TW68 VIDEO4LINUX DRIVER
17441 M:      Hans Verkuil <hverkuil@xs4all.nl>
17442 L:      linux-media@vger.kernel.org
17443 S:      Odd Fixes
17444 W:      https://linuxtv.org
17445 T:      git git://linuxtv.org/media_tree.git
17446 F:      drivers/media/pci/tw68/
17447
17448 TW686X VIDEO4LINUX DRIVER
17449 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17450 L:      linux-media@vger.kernel.org
17451 S:      Maintained
17452 W:      http://linuxtv.org
17453 T:      git git://linuxtv.org/media_tree.git
17454 F:      drivers/media/pci/tw686x/
17455
17456 UACCE ACCELERATOR FRAMEWORK
17457 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
17458 M:      Zhou Wang <wangzhou1@hisilicon.com>
17459 L:      linux-accelerators@lists.ozlabs.org
17460 L:      linux-kernel@vger.kernel.org
17461 S:      Maintained
17462 F:      Documentation/ABI/testing/sysfs-driver-uacce
17463 F:      Documentation/misc-devices/uacce.rst
17464 F:      drivers/misc/uacce/
17465 F:      include/linux/uacce.h
17466 F:      include/uapi/misc/uacce/
17467
17468 UBI FILE SYSTEM (UBIFS)
17469 M:      Richard Weinberger <richard@nod.at>
17470 L:      linux-mtd@lists.infradead.org
17471 S:      Supported
17472 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
17473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17475 F:      Documentation/filesystems/ubifs.rst
17476 F:      fs/ubifs/
17477
17478 UCLINUX (M68KNOMMU AND COLDFIRE)
17479 M:      Greg Ungerer <gerg@linux-m68k.org>
17480 L:      linux-m68k@lists.linux-m68k.org
17481 L:      uclinux-dev@uclinux.org  (subscribers-only)
17482 S:      Maintained
17483 W:      http://www.linux-m68k.org/
17484 W:      http://www.uclinux.org/
17485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
17486 F:      arch/m68k/*/*_no.*
17487 F:      arch/m68k/68*/
17488 F:      arch/m68k/coldfire/
17489 F:      arch/m68k/include/asm/*_no.*
17490
17491 UDF FILESYSTEM
17492 M:      Jan Kara <jack@suse.com>
17493 S:      Maintained
17494 F:      Documentation/filesystems/udf.rst
17495 F:      fs/udf/
17496
17497 UDRAW TABLET
17498 M:      Bastien Nocera <hadess@hadess.net>
17499 L:      linux-input@vger.kernel.org
17500 S:      Maintained
17501 F:      drivers/hid/hid-udraw-ps3.c
17502
17503 UFS FILESYSTEM
17504 M:      Evgeniy Dushistov <dushistov@mail.ru>
17505 S:      Maintained
17506 F:      Documentation/admin-guide/ufs.rst
17507 F:      fs/ufs/
17508
17509 UHID USERSPACE HID IO DRIVER
17510 M:      David Herrmann <dh.herrmann@googlemail.com>
17511 L:      linux-input@vger.kernel.org
17512 S:      Maintained
17513 F:      drivers/hid/uhid.c
17514 F:      include/uapi/linux/uhid.h
17515
17516 ULPI BUS
17517 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17518 L:      linux-usb@vger.kernel.org
17519 S:      Maintained
17520 F:      drivers/usb/common/ulpi.c
17521 F:      include/linux/ulpi/
17522
17523 UNICODE SUBSYSTEM
17524 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
17525 L:      linux-fsdevel@vger.kernel.org
17526 S:      Supported
17527 F:      fs/unicode/
17528
17529 UNICORE32 ARCHITECTURE
17530 M:      Guan Xuetao <gxt@pku.edu.cn>
17531 S:      Maintained
17532 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
17533 T:      git git://github.com/gxt/linux.git
17534 F:      arch/unicore32/
17535
17536 UNIFDEF
17537 M:      Tony Finch <dot@dotat.at>
17538 S:      Maintained
17539 W:      http://dotat.at/prog/unifdef
17540 F:      scripts/unifdef.c
17541
17542 UNIFORM CDROM DRIVER
17543 M:      Jens Axboe <axboe@kernel.dk>
17544 S:      Maintained
17545 W:      http://www.kernel.dk
17546 F:      Documentation/cdrom/
17547 F:      drivers/cdrom/cdrom.c
17548 F:      include/linux/cdrom.h
17549 F:      include/uapi/linux/cdrom.h
17550
17551 UNISYS S-PAR DRIVERS
17552 M:      David Kershner <david.kershner@unisys.com>
17553 L:      sparmaintainer@unisys.com (Unisys internal)
17554 S:      Supported
17555 F:      drivers/staging/unisys/
17556 F:      drivers/visorbus/
17557 F:      include/linux/visorbus.h
17558
17559 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
17560 R:      Alim Akhtar <alim.akhtar@samsung.com>
17561 R:      Avri Altman <avri.altman@wdc.com>
17562 L:      linux-scsi@vger.kernel.org
17563 S:      Supported
17564 F:      Documentation/scsi/ufs.rst
17565 F:      drivers/scsi/ufs/
17566
17567 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
17568 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
17569 L:      linux-scsi@vger.kernel.org
17570 S:      Supported
17571 F:      drivers/scsi/ufs/*dwc*
17572
17573 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
17574 M:      Stanley Chu <stanley.chu@mediatek.com>
17575 L:      linux-scsi@vger.kernel.org
17576 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
17577 S:      Maintained
17578 F:      drivers/scsi/ufs/ufs-mediatek*
17579
17580 UNSORTED BLOCK IMAGES (UBI)
17581 M:      Richard Weinberger <richard@nod.at>
17582 L:      linux-mtd@lists.infradead.org
17583 S:      Supported
17584 W:      http://www.linux-mtd.infradead.org/
17585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17587 F:      drivers/mtd/ubi/
17588 F:      include/linux/mtd/ubi.h
17589 F:      include/uapi/mtd/ubi-user.h
17590
17591 USB "USBNET" DRIVER FRAMEWORK
17592 M:      Oliver Neukum <oneukum@suse.com>
17593 L:      netdev@vger.kernel.org
17594 S:      Maintained
17595 W:      http://www.linux-usb.org/usbnet
17596 F:      drivers/net/usb/usbnet.c
17597 F:      include/linux/usb/usbnet.h
17598
17599 USB ACM DRIVER
17600 M:      Oliver Neukum <oneukum@suse.com>
17601 L:      linux-usb@vger.kernel.org
17602 S:      Maintained
17603 F:      Documentation/usb/acm.rst
17604 F:      drivers/usb/class/cdc-acm.*
17605
17606 USB APPLE MFI FASTCHARGE DRIVER
17607 M:      Bastien Nocera <hadess@hadess.net>
17608 L:      linux-usb@vger.kernel.org
17609 S:      Maintained
17610 F:      drivers/usb/misc/apple-mfi-fastcharge.c
17611
17612 USB AR5523 WIRELESS DRIVER
17613 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
17614 L:      linux-wireless@vger.kernel.org
17615 S:      Maintained
17616 F:      drivers/net/wireless/ath/ar5523/
17617
17618 USB ATTACHED SCSI
17619 M:      Oliver Neukum <oneukum@suse.com>
17620 L:      linux-usb@vger.kernel.org
17621 L:      linux-scsi@vger.kernel.org
17622 S:      Maintained
17623 F:      drivers/usb/storage/uas.c
17624
17625 USB CDC ETHERNET DRIVER
17626 M:      Oliver Neukum <oliver@neukum.org>
17627 L:      linux-usb@vger.kernel.org
17628 S:      Maintained
17629 F:      drivers/net/usb/cdc_*.c
17630 F:      include/uapi/linux/usb/cdc.h
17631
17632 USB CHAOSKEY DRIVER
17633 M:      Keith Packard <keithp@keithp.com>
17634 L:      linux-usb@vger.kernel.org
17635 S:      Maintained
17636 F:      drivers/usb/misc/chaoskey.c
17637
17638 USB CYPRESS C67X00 DRIVER
17639 M:      Peter Korsgaard <jacmet@sunsite.dk>
17640 L:      linux-usb@vger.kernel.org
17641 S:      Maintained
17642 F:      drivers/usb/c67x00/
17643
17644 USB DAVICOM DM9601 DRIVER
17645 M:      Peter Korsgaard <jacmet@sunsite.dk>
17646 L:      netdev@vger.kernel.org
17647 S:      Maintained
17648 W:      http://www.linux-usb.org/usbnet
17649 F:      drivers/net/usb/dm9601.c
17650
17651 USB EHCI DRIVER
17652 M:      Alan Stern <stern@rowland.harvard.edu>
17653 L:      linux-usb@vger.kernel.org
17654 S:      Maintained
17655 F:      Documentation/usb/ehci.rst
17656 F:      drivers/usb/host/ehci*
17657
17658 USB GADGET/PERIPHERAL SUBSYSTEM
17659 M:      Felipe Balbi <balbi@kernel.org>
17660 L:      linux-usb@vger.kernel.org
17661 S:      Maintained
17662 W:      http://www.linux-usb.org/gadget
17663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17664 F:      drivers/usb/gadget/
17665 F:      include/linux/usb/gadget*
17666
17667 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
17668 M:      Jiri Kosina <jikos@kernel.org>
17669 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
17670 L:      linux-usb@vger.kernel.org
17671 S:      Maintained
17672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
17673 F:      Documentation/hid/hiddev.rst
17674 F:      drivers/hid/usbhid/
17675
17676 USB INTEL XHCI ROLE MUX DRIVER
17677 M:      Hans de Goede <hdegoede@redhat.com>
17678 L:      linux-usb@vger.kernel.org
17679 S:      Maintained
17680 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
17681
17682 USB IP DRIVER FOR HISILICON KIRIN
17683 M:      Yu Chen <chenyu56@huawei.com>
17684 M:      Binghui Wang <wangbinghui@hisilicon.com>
17685 L:      linux-usb@vger.kernel.org
17686 S:      Maintained
17687 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
17688 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
17689
17690 USB ISP116X DRIVER
17691 M:      Olav Kongas <ok@artecdesign.ee>
17692 L:      linux-usb@vger.kernel.org
17693 S:      Maintained
17694 F:      drivers/usb/host/isp116x*
17695 F:      include/linux/usb/isp116x.h
17696
17697 USB LAN78XX ETHERNET DRIVER
17698 M:      Woojung Huh <woojung.huh@microchip.com>
17699 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17700 L:      netdev@vger.kernel.org
17701 S:      Maintained
17702 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
17703 F:      drivers/net/usb/lan78xx.*
17704 F:      include/dt-bindings/net/microchip-lan78xx.h
17705
17706 USB MASS STORAGE DRIVER
17707 M:      Alan Stern <stern@rowland.harvard.edu>
17708 L:      linux-usb@vger.kernel.org
17709 L:      usb-storage@lists.one-eyed-alien.net
17710 S:      Maintained
17711 F:      drivers/usb/storage/
17712
17713 USB MIDI DRIVER
17714 M:      Clemens Ladisch <clemens@ladisch.de>
17715 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17716 S:      Maintained
17717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17718 F:      sound/usb/midi.*
17719
17720 USB NETWORKING DRIVERS
17721 L:      linux-usb@vger.kernel.org
17722 S:      Odd Fixes
17723 F:      drivers/net/usb/
17724
17725 USB OHCI DRIVER
17726 M:      Alan Stern <stern@rowland.harvard.edu>
17727 L:      linux-usb@vger.kernel.org
17728 S:      Maintained
17729 F:      Documentation/usb/ohci.rst
17730 F:      drivers/usb/host/ohci*
17731
17732 USB OTG FSM (Finite State Machine)
17733 M:      Peter Chen <Peter.Chen@nxp.com>
17734 L:      linux-usb@vger.kernel.org
17735 S:      Maintained
17736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
17737 F:      drivers/usb/common/usb-otg-fsm.c
17738
17739 USB OVER IP DRIVER
17740 M:      Valentina Manea <valentina.manea.m@gmail.com>
17741 M:      Shuah Khan <shuah@kernel.org>
17742 M:      Shuah Khan <skhan@linuxfoundation.org>
17743 L:      linux-usb@vger.kernel.org
17744 S:      Maintained
17745 F:      Documentation/usb/usbip_protocol.rst
17746 F:      drivers/usb/usbip/
17747 F:      tools/testing/selftests/drivers/usb/usbip/
17748 F:      tools/usb/usbip/
17749
17750 USB PEGASUS DRIVER
17751 M:      Petko Manolov <petkan@nucleusys.com>
17752 L:      linux-usb@vger.kernel.org
17753 L:      netdev@vger.kernel.org
17754 S:      Maintained
17755 W:      https://github.com/petkan/pegasus
17756 T:      git git://github.com/petkan/pegasus.git
17757 F:      drivers/net/usb/pegasus.*
17758
17759 USB PHY LAYER
17760 M:      Felipe Balbi <balbi@kernel.org>
17761 L:      linux-usb@vger.kernel.org
17762 S:      Maintained
17763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17764 F:      drivers/usb/phy/
17765
17766 USB PRINTER DRIVER (usblp)
17767 M:      Pete Zaitcev <zaitcev@redhat.com>
17768 L:      linux-usb@vger.kernel.org
17769 S:      Supported
17770 F:      drivers/usb/class/usblp.c
17771
17772 USB QMI WWAN NETWORK DRIVER
17773 M:      Bjørn Mork <bjorn@mork.no>
17774 L:      netdev@vger.kernel.org
17775 S:      Maintained
17776 F:      Documentation/ABI/testing/sysfs-class-net-qmi
17777 F:      drivers/net/usb/qmi_wwan.c
17778
17779 USB RTL8150 DRIVER
17780 M:      Petko Manolov <petkan@nucleusys.com>
17781 L:      linux-usb@vger.kernel.org
17782 L:      netdev@vger.kernel.org
17783 S:      Maintained
17784 W:      https://github.com/petkan/rtl8150
17785 T:      git git://github.com/petkan/rtl8150.git
17786 F:      drivers/net/usb/rtl8150.c
17787
17788 USB SERIAL SUBSYSTEM
17789 M:      Johan Hovold <johan@kernel.org>
17790 L:      linux-usb@vger.kernel.org
17791 S:      Maintained
17792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
17793 F:      Documentation/usb/usb-serial.rst
17794 F:      drivers/usb/serial/
17795 F:      include/linux/usb/serial.h
17796
17797 USB SMSC75XX ETHERNET DRIVER
17798 M:      Steve Glendinning <steve.glendinning@shawell.net>
17799 L:      netdev@vger.kernel.org
17800 S:      Maintained
17801 F:      drivers/net/usb/smsc75xx.*
17802
17803 USB SMSC95XX ETHERNET DRIVER
17804 M:      Steve Glendinning <steve.glendinning@shawell.net>
17805 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17806 L:      netdev@vger.kernel.org
17807 S:      Maintained
17808 F:      drivers/net/usb/smsc95xx.*
17809
17810 USB SUBSYSTEM
17811 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17812 L:      linux-usb@vger.kernel.org
17813 S:      Supported
17814 W:      http://www.linux-usb.org
17815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
17816 F:      Documentation/devicetree/bindings/usb/
17817 F:      Documentation/usb/
17818 F:      drivers/usb/
17819 F:      include/linux/usb.h
17820 F:      include/linux/usb/
17821
17822 USB TYPEC BUS FOR ALTERNATE MODES
17823 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17824 L:      linux-usb@vger.kernel.org
17825 S:      Maintained
17826 F:      Documentation/ABI/testing/sysfs-bus-typec
17827 F:      Documentation/driver-api/usb/typec_bus.rst
17828 F:      drivers/usb/typec/altmodes/
17829 F:      include/linux/usb/typec_altmode.h
17830
17831 USB TYPEC CLASS
17832 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17833 L:      linux-usb@vger.kernel.org
17834 S:      Maintained
17835 F:      Documentation/ABI/testing/sysfs-class-typec
17836 F:      Documentation/driver-api/usb/typec.rst
17837 F:      drivers/usb/typec/
17838 F:      include/linux/usb/typec.h
17839
17840 USB TYPEC INTEL PMC MUX DRIVER
17841 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17842 L:      linux-usb@vger.kernel.org
17843 S:      Maintained
17844 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
17845 F:      drivers/usb/typec/mux/intel_pmc_mux.c
17846
17847 USB TYPEC PI3USB30532 MUX DRIVER
17848 M:      Hans de Goede <hdegoede@redhat.com>
17849 L:      linux-usb@vger.kernel.org
17850 S:      Maintained
17851 F:      drivers/usb/typec/mux/pi3usb30532.c
17852
17853 USB TYPEC PORT CONTROLLER DRIVERS
17854 M:      Guenter Roeck <linux@roeck-us.net>
17855 L:      linux-usb@vger.kernel.org
17856 S:      Maintained
17857 F:      drivers/usb/typec/tcpm/
17858
17859 USB UHCI DRIVER
17860 M:      Alan Stern <stern@rowland.harvard.edu>
17861 L:      linux-usb@vger.kernel.org
17862 S:      Maintained
17863 F:      drivers/usb/host/uhci*
17864
17865 USB VIDEO CLASS
17866 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17867 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
17868 L:      linux-media@vger.kernel.org
17869 S:      Maintained
17870 W:      http://www.ideasonboard.org/uvc/
17871 T:      git git://linuxtv.org/media_tree.git
17872 F:      drivers/media/usb/uvc/
17873 F:      include/uapi/linux/uvcvideo.h
17874
17875 USB VISION DRIVER
17876 M:      Hans Verkuil <hverkuil@xs4all.nl>
17877 L:      linux-media@vger.kernel.org
17878 S:      Odd Fixes
17879 W:      https://linuxtv.org
17880 T:      git git://linuxtv.org/media_tree.git
17881 F:      drivers/staging/media/usbvision/
17882
17883 USB WEBCAM GADGET
17884 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17885 L:      linux-usb@vger.kernel.org
17886 S:      Maintained
17887 F:      drivers/usb/gadget/function/*uvc*
17888 F:      drivers/usb/gadget/legacy/webcam.c
17889 F:      include/uapi/linux/usb/g_uvc.h
17890
17891 USB WIRELESS RNDIS DRIVER (rndis_wlan)
17892 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
17893 L:      linux-wireless@vger.kernel.org
17894 S:      Maintained
17895 F:      drivers/net/wireless/rndis_wlan.c
17896
17897 USB XHCI DRIVER
17898 M:      Mathias Nyman <mathias.nyman@intel.com>
17899 L:      linux-usb@vger.kernel.org
17900 S:      Supported
17901 F:      drivers/usb/host/pci-quirks*
17902 F:      drivers/usb/host/xhci*
17903
17904 USB ZD1201 DRIVER
17905 L:      linux-wireless@vger.kernel.org
17906 S:      Orphan
17907 W:      http://linux-lc100020.sourceforge.net
17908 F:      drivers/net/wireless/zydas/zd1201.*
17909
17910 USB ZR364XX DRIVER
17911 M:      Antoine Jacquet <royale@zerezo.com>
17912 L:      linux-usb@vger.kernel.org
17913 L:      linux-media@vger.kernel.org
17914 S:      Maintained
17915 W:      http://royale.zerezo.com/zr364xx/
17916 T:      git git://linuxtv.org/media_tree.git
17917 F:      Documentation/admin-guide/media/zr364xx*
17918 F:      drivers/media/usb/zr364xx/
17919
17920 USER-MODE LINUX (UML)
17921 M:      Jeff Dike <jdike@addtoit.com>
17922 M:      Richard Weinberger <richard@nod.at>
17923 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
17924 L:      linux-um@lists.infradead.org
17925 S:      Maintained
17926 W:      http://user-mode-linux.sourceforge.net
17927 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
17928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
17929 F:      Documentation/virt/uml/
17930 F:      arch/um/
17931 F:      arch/x86/um/
17932 F:      fs/hostfs/
17933
17934 USERSPACE COPYIN/COPYOUT (UIOVEC)
17935 M:      Alexander Viro <viro@zeniv.linux.org.uk>
17936 S:      Maintained
17937 F:      include/linux/uio.h
17938 F:      lib/iov_iter.c
17939
17940 USERSPACE DMA BUFFER DRIVER
17941 M:      Gerd Hoffmann <kraxel@redhat.com>
17942 L:      dri-devel@lists.freedesktop.org
17943 S:      Maintained
17944 T:      git git://anongit.freedesktop.org/drm/drm-misc
17945 F:      drivers/dma-buf/udmabuf.c
17946 F:      include/uapi/linux/udmabuf.h
17947
17948 USERSPACE I/O (UIO)
17949 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17950 S:      Maintained
17951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17952 F:      Documentation/driver-api/uio-howto.rst
17953 F:      drivers/uio/
17954 F:      include/linux/uio_driver.h
17955
17956 UTIL-LINUX PACKAGE
17957 M:      Karel Zak <kzak@redhat.com>
17958 L:      util-linux@vger.kernel.org
17959 S:      Maintained
17960 W:      http://en.wikipedia.org/wiki/Util-linux
17961 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
17962
17963 UUID HELPERS
17964 M:      Christoph Hellwig <hch@lst.de>
17965 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17966 L:      linux-kernel@vger.kernel.org
17967 S:      Maintained
17968 T:      git git://git.infradead.org/users/hch/uuid.git
17969 F:      include/linux/uuid.h
17970 F:      include/uapi/linux/uuid.h
17971 F:      lib/test_uuid.c
17972 F:      lib/uuid.c
17973
17974 UVESAFB DRIVER
17975 M:      Michal Januszewski <spock@gentoo.org>
17976 L:      linux-fbdev@vger.kernel.org
17977 S:      Maintained
17978 W:      https://github.com/mjanusz/v86d
17979 F:      Documentation/fb/uvesafb.rst
17980 F:      drivers/video/fbdev/uvesafb.*
17981
17982 Ux500 CLOCK DRIVERS
17983 M:      Ulf Hansson <ulf.hansson@linaro.org>
17984 L:      linux-clk@vger.kernel.org
17985 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17986 S:      Maintained
17987 F:      drivers/clk/ux500/
17988
17989 VF610 NAND DRIVER
17990 M:      Stefan Agner <stefan@agner.ch>
17991 L:      linux-mtd@lists.infradead.org
17992 S:      Supported
17993 F:      drivers/mtd/nand/raw/vf610_nfc.c
17994
17995 VFAT/FAT/MSDOS FILESYSTEM
17996 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
17997 S:      Maintained
17998 F:      Documentation/filesystems/vfat.rst
17999 F:      fs/fat/
18000
18001 VFIO DRIVER
18002 M:      Alex Williamson <alex.williamson@redhat.com>
18003 R:      Cornelia Huck <cohuck@redhat.com>
18004 L:      kvm@vger.kernel.org
18005 S:      Maintained
18006 T:      git git://github.com/awilliam/linux-vfio.git
18007 F:      Documentation/driver-api/vfio.rst
18008 F:      drivers/vfio/
18009 F:      include/linux/vfio.h
18010 F:      include/uapi/linux/vfio.h
18011
18012 VFIO MEDIATED DEVICE DRIVERS
18013 M:      Kirti Wankhede <kwankhede@nvidia.com>
18014 L:      kvm@vger.kernel.org
18015 S:      Maintained
18016 F:      Documentation/driver-api/vfio-mediated-device.rst
18017 F:      drivers/vfio/mdev/
18018 F:      include/linux/mdev.h
18019 F:      samples/vfio-mdev/
18020
18021 VFIO PLATFORM DRIVER
18022 M:      Eric Auger <eric.auger@redhat.com>
18023 L:      kvm@vger.kernel.org
18024 S:      Maintained
18025 F:      drivers/vfio/platform/
18026
18027 VGA_SWITCHEROO
18028 R:      Lukas Wunner <lukas@wunner.de>
18029 S:      Maintained
18030 T:      git git://anongit.freedesktop.org/drm/drm-misc
18031 F:      Documentation/gpu/vga-switcheroo.rst
18032 F:      drivers/gpu/vga/vga_switcheroo.c
18033 F:      include/linux/vga_switcheroo.h
18034
18035 VIA RHINE NETWORK DRIVER
18036 S:      Orphan
18037 F:      drivers/net/ethernet/via/via-rhine.c
18038
18039 VIA SD/MMC CARD CONTROLLER DRIVER
18040 M:      Bruce Chang <brucechang@via.com.tw>
18041 M:      Harald Welte <HaraldWelte@viatech.com>
18042 S:      Maintained
18043 F:      drivers/mmc/host/via-sdmmc.c
18044
18045 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
18046 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
18047 L:      linux-fbdev@vger.kernel.org
18048 S:      Maintained
18049 F:      drivers/video/fbdev/via/
18050 F:      include/linux/via-core.h
18051 F:      include/linux/via-gpio.h
18052 F:      include/linux/via_i2c.h
18053
18054 VIA VELOCITY NETWORK DRIVER
18055 M:      Francois Romieu <romieu@fr.zoreil.com>
18056 L:      netdev@vger.kernel.org
18057 S:      Maintained
18058 F:      drivers/net/ethernet/via/via-velocity.*
18059
18060 VICODEC VIRTUAL CODEC DRIVER
18061 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
18062 L:      linux-media@vger.kernel.org
18063 S:      Maintained
18064 W:      https://linuxtv.org
18065 T:      git git://linuxtv.org/media_tree.git
18066 F:      drivers/media/test-drivers/vicodec/*
18067
18068 VIDEO I2C POLLING DRIVER
18069 M:      Matt Ranostay <matt.ranostay@konsulko.com>
18070 L:      linux-media@vger.kernel.org
18071 S:      Maintained
18072 F:      drivers/media/i2c/video-i2c.c
18073
18074 VIDEO MULTIPLEXER DRIVER
18075 M:      Philipp Zabel <p.zabel@pengutronix.de>
18076 L:      linux-media@vger.kernel.org
18077 S:      Maintained
18078 F:      drivers/media/platform/video-mux.c
18079
18080 VIDEOBUF2 FRAMEWORK
18081 M:      Pawel Osciak <pawel@osciak.com>
18082 M:      Marek Szyprowski <m.szyprowski@samsung.com>
18083 M:      Kyungmin Park <kyungmin.park@samsung.com>
18084 R:      Tomasz Figa <tfiga@chromium.org>
18085 L:      linux-media@vger.kernel.org
18086 S:      Maintained
18087 F:      drivers/media/common/videobuf2/*
18088 F:      include/media/videobuf2-*
18089
18090 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
18091 M:      Helen Koike <helen.koike@collabora.com>
18092 R:      Shuah Khan <skhan@linuxfoundation.org>
18093 L:      linux-media@vger.kernel.org
18094 S:      Maintained
18095 W:      https://linuxtv.org
18096 T:      git git://linuxtv.org/media_tree.git
18097 F:      drivers/media/test-drivers/vimc/*
18098
18099 VIRT LIB
18100 M:      Alex Williamson <alex.williamson@redhat.com>
18101 M:      Paolo Bonzini <pbonzini@redhat.com>
18102 L:      kvm@vger.kernel.org
18103 S:      Supported
18104 F:      virt/lib/
18105
18106 VIRTIO AND VHOST VSOCK DRIVER
18107 M:      Stefan Hajnoczi <stefanha@redhat.com>
18108 M:      Stefano Garzarella <sgarzare@redhat.com>
18109 L:      kvm@vger.kernel.org
18110 L:      virtualization@lists.linux-foundation.org
18111 L:      netdev@vger.kernel.org
18112 S:      Maintained
18113 F:      drivers/net/vsockmon.c
18114 F:      drivers/vhost/vsock.c
18115 F:      include/linux/virtio_vsock.h
18116 F:      include/uapi/linux/virtio_vsock.h
18117 F:      include/uapi/linux/vm_sockets_diag.h
18118 F:      include/uapi/linux/vsockmon.h
18119 F:      net/vmw_vsock/af_vsock_tap.c
18120 F:      net/vmw_vsock/diag.c
18121 F:      net/vmw_vsock/virtio_transport.c
18122 F:      net/vmw_vsock/virtio_transport_common.c
18123 F:      net/vmw_vsock/vsock_loopback.c
18124 F:      tools/testing/vsock/
18125
18126 VIRTIO BLOCK AND SCSI DRIVERS
18127 M:      "Michael S. Tsirkin" <mst@redhat.com>
18128 M:      Jason Wang <jasowang@redhat.com>
18129 R:      Paolo Bonzini <pbonzini@redhat.com>
18130 R:      Stefan Hajnoczi <stefanha@redhat.com>
18131 L:      virtualization@lists.linux-foundation.org
18132 S:      Maintained
18133 F:      drivers/block/virtio_blk.c
18134 F:      drivers/scsi/virtio_scsi.c
18135 F:      drivers/vhost/scsi.c
18136 F:      include/uapi/linux/virtio_blk.h
18137 F:      include/uapi/linux/virtio_scsi.h
18138
18139 VIRTIO CONSOLE DRIVER
18140 M:      Amit Shah <amit@kernel.org>
18141 L:      virtualization@lists.linux-foundation.org
18142 S:      Maintained
18143 F:      drivers/char/virtio_console.c
18144 F:      include/linux/virtio_console.h
18145 F:      include/uapi/linux/virtio_console.h
18146
18147 VIRTIO CORE AND NET DRIVERS
18148 M:      "Michael S. Tsirkin" <mst@redhat.com>
18149 M:      Jason Wang <jasowang@redhat.com>
18150 L:      virtualization@lists.linux-foundation.org
18151 S:      Maintained
18152 F:      Documentation/devicetree/bindings/virtio/
18153 F:      drivers/block/virtio_blk.c
18154 F:      drivers/crypto/virtio/
18155 F:      drivers/net/virtio_net.c
18156 F:      drivers/vdpa/
18157 F:      drivers/virtio/
18158 F:      include/linux/vdpa.h
18159 F:      include/linux/virtio*.h
18160 F:      include/uapi/linux/virtio_*.h
18161 F:      tools/virtio/
18162
18163 VIRTIO BALLOON
18164 M:      "Michael S. Tsirkin" <mst@redhat.com>
18165 M:      David Hildenbrand <david@redhat.com>
18166 L:      virtualization@lists.linux-foundation.org
18167 S:      Maintained
18168 F:      drivers/virtio/virtio_balloon.c
18169 F:      include/uapi/linux/virtio_balloon.h
18170 F:      include/linux/balloon_compaction.h
18171 F:      mm/balloon_compaction.c
18172
18173 VIRTIO CRYPTO DRIVER
18174 M:      Gonglei <arei.gonglei@huawei.com>
18175 L:      virtualization@lists.linux-foundation.org
18176 L:      linux-crypto@vger.kernel.org
18177 S:      Maintained
18178 F:      drivers/crypto/virtio/
18179 F:      include/uapi/linux/virtio_crypto.h
18180
18181 VIRTIO DRIVERS FOR S390
18182 M:      Cornelia Huck <cohuck@redhat.com>
18183 M:      Halil Pasic <pasic@linux.ibm.com>
18184 L:      linux-s390@vger.kernel.org
18185 L:      virtualization@lists.linux-foundation.org
18186 L:      kvm@vger.kernel.org
18187 S:      Supported
18188 F:      arch/s390/include/uapi/asm/virtio-ccw.h
18189 F:      drivers/s390/virtio/
18190
18191 VIRTIO FILE SYSTEM
18192 M:      Vivek Goyal <vgoyal@redhat.com>
18193 M:      Stefan Hajnoczi <stefanha@redhat.com>
18194 M:      Miklos Szeredi <miklos@szeredi.hu>
18195 L:      virtualization@lists.linux-foundation.org
18196 L:      linux-fsdevel@vger.kernel.org
18197 S:      Supported
18198 W:      https://virtio-fs.gitlab.io/
18199 F:      Documentation/filesystems/virtiofs.rst
18200 F:      fs/fuse/virtio_fs.c
18201 F:      include/uapi/linux/virtio_fs.h
18202
18203 VIRTIO GPU DRIVER
18204 M:      David Airlie <airlied@linux.ie>
18205 M:      Gerd Hoffmann <kraxel@redhat.com>
18206 L:      dri-devel@lists.freedesktop.org
18207 L:      virtualization@lists.linux-foundation.org
18208 S:      Maintained
18209 T:      git git://anongit.freedesktop.org/drm/drm-misc
18210 F:      drivers/gpu/drm/virtio/
18211 F:      include/uapi/linux/virtio_gpu.h
18212
18213 VIRTIO HOST (VHOST)
18214 M:      "Michael S. Tsirkin" <mst@redhat.com>
18215 M:      Jason Wang <jasowang@redhat.com>
18216 L:      kvm@vger.kernel.org
18217 L:      virtualization@lists.linux-foundation.org
18218 L:      netdev@vger.kernel.org
18219 S:      Maintained
18220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
18221 F:      drivers/vhost/
18222 F:      include/linux/vhost_iotlb.h
18223 F:      include/uapi/linux/vhost.h
18224
18225 VIRTIO INPUT DRIVER
18226 M:      Gerd Hoffmann <kraxel@redhat.com>
18227 S:      Maintained
18228 F:      drivers/virtio/virtio_input.c
18229 F:      include/uapi/linux/virtio_input.h
18230
18231 VIRTIO IOMMU DRIVER
18232 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
18233 L:      virtualization@lists.linux-foundation.org
18234 S:      Maintained
18235 F:      drivers/iommu/virtio-iommu.c
18236 F:      include/uapi/linux/virtio_iommu.h
18237
18238 VIRTIO MEM DRIVER
18239 M:      David Hildenbrand <david@redhat.com>
18240 L:      virtualization@lists.linux-foundation.org
18241 S:      Maintained
18242 F:      drivers/virtio/virtio_mem.c
18243 F:      include/uapi/linux/virtio_mem.h
18244
18245 VIRTUAL BOX GUEST DEVICE DRIVER
18246 M:      Hans de Goede <hdegoede@redhat.com>
18247 M:      Arnd Bergmann <arnd@arndb.de>
18248 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18249 S:      Maintained
18250 F:      drivers/virt/vboxguest/
18251 F:      include/linux/vbox_utils.h
18252 F:      include/uapi/linux/vbox*.h
18253
18254 VIRTUAL BOX SHARED FOLDER VFS DRIVER
18255 M:      Hans de Goede <hdegoede@redhat.com>
18256 L:      linux-fsdevel@vger.kernel.org
18257 S:      Maintained
18258 F:      fs/vboxsf/*
18259
18260 VIRTUAL SERIO DEVICE DRIVER
18261 M:      Stephen Chandler Paul <thatslyude@gmail.com>
18262 S:      Maintained
18263 F:      drivers/input/serio/userio.c
18264 F:      include/uapi/linux/userio.h
18265
18266 VIVID VIRTUAL VIDEO DRIVER
18267 M:      Hans Verkuil <hverkuil@xs4all.nl>
18268 L:      linux-media@vger.kernel.org
18269 S:      Maintained
18270 W:      https://linuxtv.org
18271 T:      git git://linuxtv.org/media_tree.git
18272 F:      drivers/media/test-drivers/vivid/*
18273
18274 VLYNQ BUS
18275 M:      Florian Fainelli <f.fainelli@gmail.com>
18276 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
18277 S:      Maintained
18278 F:      drivers/vlynq/vlynq.c
18279 F:      include/linux/vlynq.h
18280
18281 VME SUBSYSTEM
18282 M:      Martyn Welch <martyn@welchs.me.uk>
18283 M:      Manohar Vanga <manohar.vanga@gmail.com>
18284 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18285 L:      devel@driverdev.osuosl.org
18286 S:      Maintained
18287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18288 F:      Documentation/driver-api/vme.rst
18289 F:      drivers/staging/vme/
18290 F:      drivers/vme/
18291 F:      include/linux/vme*
18292
18293 VMWARE BALLOON DRIVER
18294 M:      Nadav Amit <namit@vmware.com>
18295 M:      "VMware, Inc." <pv-drivers@vmware.com>
18296 L:      linux-kernel@vger.kernel.org
18297 S:      Maintained
18298 F:      drivers/misc/vmw_balloon.c
18299
18300 VMWARE HYPERVISOR INTERFACE
18301 M:      Deep Shah <sdeep@vmware.com>
18302 M:      "VMware, Inc." <pv-drivers@vmware.com>
18303 L:      virtualization@lists.linux-foundation.org
18304 S:      Supported
18305 F:      arch/x86/include/asm/vmware.h
18306 F:      arch/x86/kernel/cpu/vmware.c
18307
18308 VMWARE PVRDMA DRIVER
18309 M:      Adit Ranadive <aditr@vmware.com>
18310 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18311 L:      linux-rdma@vger.kernel.org
18312 S:      Maintained
18313 F:      drivers/infiniband/hw/vmw_pvrdma/
18314
18315 VMware PVSCSI driver
18316 M:      Jim Gill <jgill@vmware.com>
18317 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18318 L:      linux-scsi@vger.kernel.org
18319 S:      Maintained
18320 F:      drivers/scsi/vmw_pvscsi.c
18321 F:      drivers/scsi/vmw_pvscsi.h
18322
18323 VMWARE VIRTUAL PTP CLOCK DRIVER
18324 M:      Vivek Thampi <vithampi@vmware.com>
18325 M:      "VMware, Inc." <pv-drivers@vmware.com>
18326 L:      netdev@vger.kernel.org
18327 S:      Supported
18328 F:      drivers/ptp/ptp_vmw.c
18329
18330 VMWARE VMMOUSE SUBDRIVER
18331 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
18332 M:      "VMware, Inc." <pv-drivers@vmware.com>
18333 L:      linux-input@vger.kernel.org
18334 S:      Maintained
18335 F:      drivers/input/mouse/vmmouse.c
18336 F:      drivers/input/mouse/vmmouse.h
18337
18338 VMWARE VMXNET3 ETHERNET DRIVER
18339 M:      Ronak Doshi <doshir@vmware.com>
18340 M:      "VMware, Inc." <pv-drivers@vmware.com>
18341 L:      netdev@vger.kernel.org
18342 S:      Maintained
18343 F:      drivers/net/vmxnet3/
18344
18345 VOCORE VOCORE2 BOARD
18346 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
18347 L:      linux-mips@vger.kernel.org
18348 S:      Maintained
18349 F:      arch/mips/boot/dts/ralink/vocore2.dts
18350
18351 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18352 M:      Liam Girdwood <lgirdwood@gmail.com>
18353 M:      Mark Brown <broonie@kernel.org>
18354 L:      linux-kernel@vger.kernel.org
18355 S:      Supported
18356 W:      http://www.slimlogic.co.uk/?p=48
18357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18358 F:      Documentation/devicetree/bindings/regulator/
18359 F:      Documentation/power/regulator/
18360 F:      drivers/regulator/
18361 F:      include/dt-bindings/regulator/
18362 F:      include/linux/regulator/
18363 K:      regulator_get_optional
18364
18365 VRF
18366 M:      David Ahern <dsahern@kernel.org>
18367 M:      Shrijeet Mukherjee <shrijeet@gmail.com>
18368 L:      netdev@vger.kernel.org
18369 S:      Maintained
18370 F:      Documentation/networking/vrf.rst
18371 F:      drivers/net/vrf.c
18372
18373 VSPRINTF
18374 M:      Petr Mladek <pmladek@suse.com>
18375 M:      Steven Rostedt <rostedt@goodmis.org>
18376 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
18377 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18378 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
18379 S:      Maintained
18380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
18381 F:      Documentation/core-api/printk-formats.rst
18382 F:      lib/test_printf.c
18383 F:      lib/vsprintf.c
18384
18385 VT1211 HARDWARE MONITOR DRIVER
18386 M:      Juerg Haefliger <juergh@gmail.com>
18387 L:      linux-hwmon@vger.kernel.org
18388 S:      Maintained
18389 F:      Documentation/hwmon/vt1211.rst
18390 F:      drivers/hwmon/vt1211.c
18391
18392 VT8231 HARDWARE MONITOR DRIVER
18393 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
18394 L:      linux-hwmon@vger.kernel.org
18395 S:      Maintained
18396 F:      drivers/hwmon/vt8231.c
18397
18398 VUB300 USB to SDIO/SD/MMC bridge chip
18399 L:      linux-mmc@vger.kernel.org
18400 S:      Orphan
18401 F:      drivers/mmc/host/vub300.c
18402
18403 W1 DALLAS'S 1-WIRE BUS
18404 M:      Evgeniy Polyakov <zbr@ioremap.net>
18405 S:      Maintained
18406 F:      Documentation/devicetree/bindings/w1/
18407 F:      Documentation/w1/
18408 F:      drivers/w1/
18409 F:      include/linux/w1.h
18410
18411 W83791D HARDWARE MONITORING DRIVER
18412 M:      Marc Hulsman <m.hulsman@tudelft.nl>
18413 L:      linux-hwmon@vger.kernel.org
18414 S:      Maintained
18415 F:      Documentation/hwmon/w83791d.rst
18416 F:      drivers/hwmon/w83791d.c
18417
18418 W83793 HARDWARE MONITORING DRIVER
18419 M:      Rudolf Marek <r.marek@assembler.cz>
18420 L:      linux-hwmon@vger.kernel.org
18421 S:      Maintained
18422 F:      Documentation/hwmon/w83793.rst
18423 F:      drivers/hwmon/w83793.c
18424
18425 W83795 HARDWARE MONITORING DRIVER
18426 M:      Jean Delvare <jdelvare@suse.com>
18427 L:      linux-hwmon@vger.kernel.org
18428 S:      Maintained
18429 F:      drivers/hwmon/w83795.c
18430
18431 W83L51xD SD/MMC CARD INTERFACE DRIVER
18432 M:      Pierre Ossman <pierre@ossman.eu>
18433 S:      Maintained
18434 F:      drivers/mmc/host/wbsd.*
18435
18436 WACOM PROTOCOL 4 SERIAL TABLETS
18437 M:      Julian Squires <julian@cipht.net>
18438 M:      Hans de Goede <hdegoede@redhat.com>
18439 L:      linux-input@vger.kernel.org
18440 S:      Maintained
18441 F:      drivers/input/tablet/wacom_serial4.c
18442
18443 WATCHDOG DEVICE DRIVERS
18444 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
18445 M:      Guenter Roeck <linux@roeck-us.net>
18446 L:      linux-watchdog@vger.kernel.org
18447 S:      Maintained
18448 W:      http://www.linux-watchdog.org/
18449 T:      git git://www.linux-watchdog.org/linux-watchdog.git
18450 F:      Documentation/devicetree/bindings/watchdog/
18451 F:      Documentation/watchdog/
18452 F:      drivers/watchdog/
18453 F:      include/linux/watchdog.h
18454 F:      include/uapi/linux/watchdog.h
18455
18456 WHISKEYCOVE PMIC GPIO DRIVER
18457 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
18458 L:      linux-gpio@vger.kernel.org
18459 S:      Maintained
18460 F:      drivers/gpio/gpio-wcove.c
18461
18462 WHWAVE RTC DRIVER
18463 M:      Dianlong Li <long17.cool@163.com>
18464 L:      linux-rtc@vger.kernel.org
18465 S:      Maintained
18466 F:      drivers/rtc/rtc-sd3078.c
18467
18468 WIIMOTE HID DRIVER
18469 M:      David Herrmann <dh.herrmann@googlemail.com>
18470 L:      linux-input@vger.kernel.org
18471 S:      Maintained
18472 F:      drivers/hid/hid-wiimote*
18473
18474 WILOCITY WIL6210 WIRELESS DRIVER
18475 M:      Maya Erez <merez@codeaurora.org>
18476 L:      linux-wireless@vger.kernel.org
18477 L:      wil6210@qti.qualcomm.com
18478 S:      Supported
18479 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
18480 F:      drivers/net/wireless/ath/wil6210/
18481
18482 WIMAX STACK
18483 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
18484 M:      linux-wimax@intel.com
18485 L:      wimax@linuxwimax.org (subscribers-only)
18486 S:      Supported
18487 W:      http://linuxwimax.org
18488 F:      Documentation/admin-guide/wimax/wimax.rst
18489 F:      include/linux/wimax/debug.h
18490 F:      include/net/wimax.h
18491 F:      include/uapi/linux/wimax.h
18492 F:      net/wimax/
18493
18494 WINBOND CIR DRIVER
18495 M:      David Härdeman <david@hardeman.nu>
18496 S:      Maintained
18497 F:      drivers/media/rc/winbond-cir.c
18498
18499 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
18500 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18501 L:      linux-watchdog@vger.kernel.org
18502 S:      Maintained
18503 F:      drivers/watchdog/ebc-c384_wdt.c
18504
18505 WINSYSTEMS WS16C48 GPIO DRIVER
18506 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18507 L:      linux-gpio@vger.kernel.org
18508 S:      Maintained
18509 F:      drivers/gpio/gpio-ws16c48.c
18510
18511 WIREGUARD SECURE NETWORK TUNNEL
18512 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18513 L:      wireguard@lists.zx2c4.com
18514 L:      netdev@vger.kernel.org
18515 S:      Maintained
18516 F:      drivers/net/wireguard/
18517 F:      tools/testing/selftests/wireguard/
18518
18519 WISTRON LAPTOP BUTTON DRIVER
18520 M:      Miloslav Trmac <mitr@volny.cz>
18521 S:      Maintained
18522 F:      drivers/input/misc/wistron_btns.c
18523
18524 WL3501 WIRELESS PCMCIA CARD DRIVER
18525 L:      linux-wireless@vger.kernel.org
18526 S:      Odd fixes
18527 F:      drivers/net/wireless/wl3501*
18528
18529 WOLFSON MICROELECTRONICS DRIVERS
18530 L:      patches@opensource.cirrus.com
18531 S:      Supported
18532 W:      https://github.com/CirrusLogic/linux-drivers/wiki
18533 T:      git https://github.com/CirrusLogic/linux-drivers.git
18534 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
18535 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
18536 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
18537 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
18538 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
18539 F:      Documentation/hwmon/wm83??.rst
18540 F:      arch/arm/mach-s3c64xx/mach-crag6410*
18541 F:      drivers/clk/clk-wm83*.c
18542 F:      drivers/extcon/extcon-arizona.c
18543 F:      drivers/gpio/gpio-*wm*.c
18544 F:      drivers/gpio/gpio-arizona.c
18545 F:      drivers/hwmon/wm83??-hwmon.c
18546 F:      drivers/input/misc/wm831x-on.c
18547 F:      drivers/input/touchscreen/wm831x-ts.c
18548 F:      drivers/input/touchscreen/wm97*.c
18549 F:      drivers/leds/leds-wm83*.c
18550 F:      drivers/mfd/arizona*
18551 F:      drivers/mfd/cs47l24*
18552 F:      drivers/mfd/wm*.c
18553 F:      drivers/power/supply/wm83*.c
18554 F:      drivers/regulator/arizona*
18555 F:      drivers/regulator/wm8*.c
18556 F:      drivers/rtc/rtc-wm83*.c
18557 F:      drivers/video/backlight/wm83*_bl.c
18558 F:      drivers/watchdog/wm83*_wdt.c
18559 F:      include/linux/mfd/arizona/
18560 F:      include/linux/mfd/wm831x/
18561 F:      include/linux/mfd/wm8350/
18562 F:      include/linux/mfd/wm8400*
18563 F:      include/linux/regulator/arizona*
18564 F:      include/linux/wm97xx.h
18565 F:      include/sound/wm????.h
18566 F:      sound/soc/codecs/arizona.?
18567 F:      sound/soc/codecs/cs47l24*
18568 F:      sound/soc/codecs/wm*
18569
18570 WORKQUEUE
18571 M:      Tejun Heo <tj@kernel.org>
18572 R:      Lai Jiangshan <jiangshanlai@gmail.com>
18573 S:      Maintained
18574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
18575 F:      Documentation/core-api/workqueue.rst
18576 F:      include/linux/workqueue.h
18577 F:      kernel/workqueue.c
18578
18579 X-POWERS AXP288 PMIC DRIVERS
18580 M:      Hans de Goede <hdegoede@redhat.com>
18581 S:      Maintained
18582 F:      drivers/acpi/pmic/intel_pmic_xpower.c
18583 N:      axp288
18584
18585 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
18586 M:      Chen-Yu Tsai <wens@csie.org>
18587 L:      linux-kernel@vger.kernel.org
18588 S:      Maintained
18589 N:      axp[128]
18590
18591 X.25 NETWORK LAYER
18592 M:      Andrew Hendry <andrew.hendry@gmail.com>
18593 L:      linux-x25@vger.kernel.org
18594 S:      Odd Fixes
18595 F:      Documentation/networking/x25*
18596 F:      include/net/x25*
18597 F:      net/x25/
18598
18599 X86 ARCHITECTURE (32-BIT AND 64-BIT)
18600 M:      Thomas Gleixner <tglx@linutronix.de>
18601 M:      Ingo Molnar <mingo@redhat.com>
18602 M:      Borislav Petkov <bp@alien8.de>
18603 M:      x86@kernel.org
18604 R:      "H. Peter Anvin" <hpa@zytor.com>
18605 L:      linux-kernel@vger.kernel.org
18606 S:      Maintained
18607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18608 F:      Documentation/devicetree/bindings/x86/
18609 F:      Documentation/x86/
18610 F:      arch/x86/
18611
18612 X86 ENTRY CODE
18613 M:      Andy Lutomirski <luto@kernel.org>
18614 L:      linux-kernel@vger.kernel.org
18615 S:      Maintained
18616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
18617 F:      arch/x86/entry/
18618
18619 X86 MCE INFRASTRUCTURE
18620 M:      Tony Luck <tony.luck@intel.com>
18621 M:      Borislav Petkov <bp@alien8.de>
18622 L:      linux-edac@vger.kernel.org
18623 S:      Maintained
18624 F:      arch/x86/kernel/cpu/mce/*
18625
18626 X86 MICROCODE UPDATE SUPPORT
18627 M:      Borislav Petkov <bp@alien8.de>
18628 S:      Maintained
18629 F:      arch/x86/kernel/cpu/microcode/*
18630
18631 X86 MM
18632 M:      Dave Hansen <dave.hansen@linux.intel.com>
18633 M:      Andy Lutomirski <luto@kernel.org>
18634 M:      Peter Zijlstra <peterz@infradead.org>
18635 L:      linux-kernel@vger.kernel.org
18636 S:      Maintained
18637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
18638 F:      arch/x86/mm/
18639
18640 X86 PLATFORM DRIVERS
18641 M:      Darren Hart <dvhart@infradead.org>
18642 M:      Andy Shevchenko <andy@infradead.org>
18643 L:      platform-driver-x86@vger.kernel.org
18644 S:      Odd Fixes
18645 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
18646 F:      drivers/platform/olpc/
18647 F:      drivers/platform/x86/
18648
18649 X86 PLATFORM DRIVERS - ARCH
18650 R:      Darren Hart <dvhart@infradead.org>
18651 R:      Andy Shevchenko <andy@infradead.org>
18652 L:      platform-driver-x86@vger.kernel.org
18653 L:      x86@kernel.org
18654 S:      Maintained
18655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18656 F:      arch/x86/platform
18657
18658 X86 VDSO
18659 M:      Andy Lutomirski <luto@kernel.org>
18660 L:      linux-kernel@vger.kernel.org
18661 S:      Maintained
18662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
18663 F:      arch/x86/entry/vdso/
18664
18665 XARRAY
18666 M:      Matthew Wilcox <willy@infradead.org>
18667 L:      linux-fsdevel@vger.kernel.org
18668 S:      Supported
18669 F:      Documentation/core-api/xarray.rst
18670 F:      include/linux/idr.h
18671 F:      include/linux/xarray.h
18672 F:      lib/idr.c
18673 F:      lib/xarray.c
18674 F:      tools/testing/radix-tree
18675
18676 XBOX DVD IR REMOTE
18677 M:      Benjamin Valentin <benpicco@googlemail.com>
18678 S:      Maintained
18679 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
18680 F:      drivers/media/rc/xbox_remote.c
18681
18682 XC2028/3028 TUNER DRIVER
18683 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18684 L:      linux-media@vger.kernel.org
18685 S:      Maintained
18686 W:      https://linuxtv.org
18687 T:      git git://linuxtv.org/media_tree.git
18688 F:      drivers/media/tuners/tuner-xc2028.*
18689
18690 XDP (eXpress Data Path)
18691 M:      Alexei Starovoitov <ast@kernel.org>
18692 M:      Daniel Borkmann <daniel@iogearbox.net>
18693 M:      David S. Miller <davem@davemloft.net>
18694 M:      Jakub Kicinski <kuba@kernel.org>
18695 M:      Jesper Dangaard Brouer <hawk@kernel.org>
18696 M:      John Fastabend <john.fastabend@gmail.com>
18697 L:      netdev@vger.kernel.org
18698 L:      bpf@vger.kernel.org
18699 S:      Supported
18700 F:      include/net/xdp.h
18701 F:      include/trace/events/xdp.h
18702 F:      kernel/bpf/cpumap.c
18703 F:      kernel/bpf/devmap.c
18704 F:      net/core/xdp.c
18705 N:      xdp
18706 K:      xdp
18707
18708 XDP SOCKETS (AF_XDP)
18709 M:      Björn Töpel <bjorn.topel@intel.com>
18710 M:      Magnus Karlsson <magnus.karlsson@intel.com>
18711 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
18712 L:      netdev@vger.kernel.org
18713 L:      bpf@vger.kernel.org
18714 S:      Maintained
18715 F:      include/net/xdp_sock*
18716 F:      include/net/xsk_buff_pool.h
18717 F:      include/uapi/linux/if_xdp.h
18718 F:      net/xdp/
18719 F:      samples/bpf/xdpsock*
18720 F:      tools/lib/bpf/xsk*
18721
18722 XEN BLOCK SUBSYSTEM
18723 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18724 M:      Roger Pau Monné <roger.pau@citrix.com>
18725 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18726 S:      Supported
18727 F:      drivers/block/xen*
18728 F:      drivers/block/xen-blkback/*
18729
18730 XEN HYPERVISOR ARM
18731 M:      Stefano Stabellini <sstabellini@kernel.org>
18732 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18733 S:      Maintained
18734 F:      arch/arm/include/asm/xen/
18735 F:      arch/arm/xen/
18736
18737 XEN HYPERVISOR ARM64
18738 M:      Stefano Stabellini <sstabellini@kernel.org>
18739 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18740 S:      Maintained
18741 F:      arch/arm64/include/asm/xen/
18742 F:      arch/arm64/xen/
18743
18744 XEN HYPERVISOR INTERFACE
18745 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
18746 M:      Juergen Gross <jgross@suse.com>
18747 R:      Stefano Stabellini <sstabellini@kernel.org>
18748 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18749 S:      Supported
18750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
18751 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
18752 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
18753 F:      arch/x86/include/asm/pvclock-abi.h
18754 F:      arch/x86/include/asm/xen/
18755 F:      arch/x86/platform/pvh/
18756 F:      arch/x86/xen/
18757 F:      drivers/*/xen-*front.c
18758 F:      drivers/xen/
18759 F:      include/uapi/xen/
18760 F:      include/xen/
18761
18762 XEN NETWORK BACKEND DRIVER
18763 M:      Wei Liu <wei.liu@kernel.org>
18764 M:      Paul Durrant <paul@xen.org>
18765 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18766 L:      netdev@vger.kernel.org
18767 S:      Supported
18768 F:      drivers/net/xen-netback/*
18769
18770 XEN PCI SUBSYSTEM
18771 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18772 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18773 S:      Supported
18774 F:      arch/x86/pci/*xen*
18775 F:      drivers/pci/*xen*
18776
18777 XEN PVSCSI DRIVERS
18778 M:      Juergen Gross <jgross@suse.com>
18779 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18780 L:      linux-scsi@vger.kernel.org
18781 S:      Supported
18782 F:      drivers/scsi/xen-scsifront.c
18783 F:      drivers/xen/xen-scsiback.c
18784 F:      include/xen/interface/io/vscsiif.h
18785
18786 XEN SOUND FRONTEND DRIVER
18787 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
18788 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18789 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18790 S:      Supported
18791 F:      sound/xen/*
18792
18793 XEN SWIOTLB SUBSYSTEM
18794 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18795 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18796 L:      iommu@lists.linux-foundation.org
18797 S:      Supported
18798 F:      arch/x86/xen/*swiotlb*
18799 F:      drivers/xen/*swiotlb*
18800
18801 XFS FILESYSTEM
18802 M:      Darrick J. Wong <darrick.wong@oracle.com>
18803 M:      linux-xfs@vger.kernel.org
18804 L:      linux-xfs@vger.kernel.org
18805 S:      Supported
18806 W:      http://xfs.org/
18807 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
18808 F:      Documentation/ABI/testing/sysfs-fs-xfs
18809 F:      Documentation/admin-guide/xfs.rst
18810 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
18811 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
18812 F:      fs/xfs/
18813 F:      include/uapi/linux/dqblk_xfs.h
18814 F:      include/uapi/linux/fsmap.h
18815
18816 XILINX AXI ETHERNET DRIVER
18817 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
18818 S:      Maintained
18819 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
18820
18821 XILINX CAN DRIVER
18822 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
18823 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
18824 L:      linux-can@vger.kernel.org
18825 S:      Maintained
18826 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
18827 F:      drivers/net/can/xilinx_can.c
18828
18829 XILINX SD-FEC IP CORES
18830 M:      Derek Kiernan <derek.kiernan@xilinx.com>
18831 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
18832 S:      Maintained
18833 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
18834 F:      Documentation/misc-devices/xilinx_sdfec.rst
18835 F:      drivers/misc/Kconfig
18836 F:      drivers/misc/Makefile
18837 F:      drivers/misc/xilinx_sdfec.c
18838 F:      include/uapi/misc/xilinx_sdfec.h
18839
18840 XILINX UARTLITE SERIAL DRIVER
18841 M:      Peter Korsgaard <jacmet@sunsite.dk>
18842 L:      linux-serial@vger.kernel.org
18843 S:      Maintained
18844 F:      drivers/tty/serial/uartlite.c
18845
18846 XILINX VIDEO IP CORES
18847 M:      Hyun Kwon <hyun.kwon@xilinx.com>
18848 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18849 L:      linux-media@vger.kernel.org
18850 S:      Supported
18851 T:      git git://linuxtv.org/media_tree.git
18852 F:      Documentation/devicetree/bindings/media/xilinx/
18853 F:      drivers/media/platform/xilinx/
18854 F:      include/uapi/linux/xilinx-v4l2-controls.h
18855
18856 XILLYBUS DRIVER
18857 M:      Eli Billauer <eli.billauer@gmail.com>
18858 L:      linux-kernel@vger.kernel.org
18859 S:      Supported
18860 F:      drivers/char/xillybus/
18861
18862 XLP9XX I2C DRIVER
18863 M:      George Cherian <gcherian@marvell.com>
18864 L:      linux-i2c@vger.kernel.org
18865 S:      Supported
18866 W:      http://www.marvell.com
18867 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
18868 F:      drivers/i2c/busses/i2c-xlp9xx.c
18869
18870 XRA1403 GPIO EXPANDER
18871 M:      Nandor Han <nandor.han@ge.com>
18872 M:      Semi Malinen <semi.malinen@ge.com>
18873 L:      linux-gpio@vger.kernel.org
18874 S:      Maintained
18875 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
18876 F:      drivers/gpio/gpio-xra1403.c
18877
18878 XTENSA XTFPGA PLATFORM SUPPORT
18879 M:      Max Filippov <jcmvbkbc@gmail.com>
18880 L:      linux-xtensa@linux-xtensa.org
18881 S:      Maintained
18882 F:      drivers/spi/spi-xtensa-xtfpga.c
18883 F:      sound/soc/xtensa/xtfpga-i2s.c
18884
18885 YAM DRIVER FOR AX.25
18886 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
18887 L:      linux-hams@vger.kernel.org
18888 S:      Maintained
18889 F:      drivers/net/hamradio/yam*
18890 F:      include/linux/yam.h
18891
18892 YAMA SECURITY MODULE
18893 M:      Kees Cook <keescook@chromium.org>
18894 S:      Supported
18895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
18896 F:      Documentation/admin-guide/LSM/Yama.rst
18897 F:      security/yama/
18898
18899 YEALINK PHONE DRIVER
18900 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
18901 L:      usbb2k-api-dev@nongnu.org
18902 S:      Maintained
18903 F:      Documentation/input/devices/yealink.rst
18904 F:      drivers/input/misc/yealink.*
18905
18906 Z8530 DRIVER FOR AX.25
18907 M:      Joerg Reuter <jreuter@yaina.de>
18908 L:      linux-hams@vger.kernel.org
18909 S:      Maintained
18910 W:      http://yaina.de/jreuter/
18911 W:      http://www.qsl.net/dl1bke/
18912 F:      Documentation/networking/z8530drv.rst
18913 F:      drivers/net/hamradio/*scc.c
18914 F:      drivers/net/hamradio/z8530.h
18915
18916 ZBUD COMPRESSED PAGE ALLOCATOR
18917 M:      Seth Jennings <sjenning@redhat.com>
18918 M:      Dan Streetman <ddstreet@ieee.org>
18919 L:      linux-mm@kvack.org
18920 S:      Maintained
18921 F:      include/linux/zbud.h
18922 F:      mm/zbud.c
18923
18924 ZD1211RW WIRELESS DRIVER
18925 M:      Daniel Drake <dsd@gentoo.org>
18926 M:      Ulrich Kunitz <kune@deine-taler.de>
18927 L:      linux-wireless@vger.kernel.org
18928 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
18929 S:      Maintained
18930 W:      http://zd1211.ath.cx/wiki/DriverRewrite
18931 F:      drivers/net/wireless/zydas/zd1211rw/
18932
18933 ZD1301 MEDIA DRIVER
18934 M:      Antti Palosaari <crope@iki.fi>
18935 L:      linux-media@vger.kernel.org
18936 S:      Maintained
18937 W:      https://linuxtv.org/
18938 W:      http://palosaari.fi/linux/
18939 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18940 F:      drivers/media/usb/dvb-usb-v2/zd1301*
18941
18942 ZD1301_DEMOD MEDIA DRIVER
18943 M:      Antti Palosaari <crope@iki.fi>
18944 L:      linux-media@vger.kernel.org
18945 S:      Maintained
18946 W:      https://linuxtv.org/
18947 W:      http://palosaari.fi/linux/
18948 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18949 F:      drivers/media/dvb-frontends/zd1301_demod*
18950
18951 ZHAOXIN PROCESSOR SUPPORT
18952 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
18953 L:      linux-kernel@vger.kernel.org
18954 S:      Maintained
18955 F:      arch/x86/kernel/cpu/zhaoxin.c
18956
18957 ZONEFS FILESYSTEM
18958 M:      Damien Le Moal <damien.lemoal@wdc.com>
18959 M:      Naohiro Aota <naohiro.aota@wdc.com>
18960 R:      Johannes Thumshirn <jth@kernel.org>
18961 L:      linux-fsdevel@vger.kernel.org
18962 S:      Maintained
18963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
18964 F:      Documentation/filesystems/zonefs.rst
18965 F:      fs/zonefs/
18966
18967 ZPOOL COMPRESSED PAGE STORAGE API
18968 M:      Dan Streetman <ddstreet@ieee.org>
18969 L:      linux-mm@kvack.org
18970 S:      Maintained
18971 F:      include/linux/zpool.h
18972 F:      mm/zpool.c
18973
18974 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
18975 M:      Minchan Kim <minchan@kernel.org>
18976 M:      Nitin Gupta <ngupta@vflare.org>
18977 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18978 L:      linux-kernel@vger.kernel.org
18979 S:      Maintained
18980 F:      Documentation/admin-guide/blockdev/zram.rst
18981 F:      drivers/block/zram/
18982
18983 ZS DECSTATION Z85C30 SERIAL DRIVER
18984 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
18985 S:      Maintained
18986 F:      drivers/tty/serial/zs.*
18987
18988 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
18989 M:      Minchan Kim <minchan@kernel.org>
18990 M:      Nitin Gupta <ngupta@vflare.org>
18991 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18992 L:      linux-mm@kvack.org
18993 S:      Maintained
18994 F:      Documentation/vm/zsmalloc.rst
18995 F:      include/linux/zsmalloc.h
18996 F:      mm/zsmalloc.c
18997
18998 ZSWAP COMPRESSED SWAP CACHING
18999 M:      Seth Jennings <sjenning@redhat.com>
19000 M:      Dan Streetman <ddstreet@ieee.org>
19001 M:      Vitaly Wool <vitaly.wool@konsulko.com>
19002 L:      linux-mm@kvack.org
19003 S:      Maintained
19004 F:      mm/zswap.c
19005
19006 THE REST
19007 M:      Linus Torvalds <torvalds@linux-foundation.org>
19008 L:      linux-kernel@vger.kernel.org
19009 S:      Buried alive in reporters
19010 Q:      http://patchwork.kernel.org/project/LKML/list/
19011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
19012 F:      *
19013 F:      */